From 03feb03f6818813eddd63c6509b44ebe917cc39a Mon Sep 17 00:00:00 2001 From: Alexander Shiarella Date: Mon, 2 Sep 2024 17:59:11 +0100 Subject: [PATCH 01/12] Routing for metrics pages --- src/modules/metrics/metrics-routes.tsx | 41 +++++++++++++++++++ .../metrics/routes/regions/region-id.tsx | 5 +++ .../metrics/routes/regions/regions-index.tsx | 5 +++ src/router.tsx | 2 + 4 files changed, 53 insertions(+) create mode 100644 src/modules/metrics/metrics-routes.tsx create mode 100644 src/modules/metrics/routes/regions/region-id.tsx create mode 100644 src/modules/metrics/routes/regions/regions-index.tsx diff --git a/src/modules/metrics/metrics-routes.tsx b/src/modules/metrics/metrics-routes.tsx new file mode 100644 index 0000000..0743d5e --- /dev/null +++ b/src/modules/metrics/metrics-routes.tsx @@ -0,0 +1,41 @@ +import { redirect, RouteObject } from 'react-router'; + +export const metricsRoute: RouteObject = { + path: '/metrics', + children: [ + { + index: true, + loader: () => redirect('./regions/afg/development'), + }, + { + path: 'regions', + children: [ + { + index: true, + handle: { + pathBasedScroll: true, + }, + lazy: () => import('./routes/regions/regions-index'), + }, + { + path: ':regionId', + children: [ + { + index: true, + lazy: () => import('./routes/regions/region-id'), + }, + { + path: ':metricId', + children: [ + { + index: true, + lazy: () => import('./routes/regions/region-id'), + }, + ], + }, + ], + }, + ], + }, + ], +}; diff --git a/src/modules/metrics/routes/regions/region-id.tsx b/src/modules/metrics/routes/regions/region-id.tsx new file mode 100644 index 0000000..073b225 --- /dev/null +++ b/src/modules/metrics/routes/regions/region-id.tsx @@ -0,0 +1,5 @@ +export const Component = () => { + return
Country Metrics – Region ID Page
; +}; + +Component.displayName = 'SingleRegionMetricsPage'; diff --git a/src/modules/metrics/routes/regions/regions-index.tsx b/src/modules/metrics/routes/regions/regions-index.tsx new file mode 100644 index 0000000..42c1b51 --- /dev/null +++ b/src/modules/metrics/routes/regions/regions-index.tsx @@ -0,0 +1,5 @@ +export const Component = () => { + return
Country Metrics – Regions Index Page
; +}; + +Component.displayName = 'RegionMetricsIndexPage'; diff --git a/src/router.tsx b/src/router.tsx index e9a24cd..419eff2 100644 --- a/src/router.tsx +++ b/src/router.tsx @@ -2,6 +2,7 @@ import { redirect } from 'react-router'; import { createBrowserRouter } from 'react-router-dom'; import { downloadsRoute } from './modules/downloads/downloads-routes'; +import { metricsRoute } from './modules/metrics/metrics-routes'; import { AboutPage } from './pages/AboutPage'; import { DataSourcesPage } from './pages/DataSourcesPage'; import { GuidePage } from './pages/GuidePage'; @@ -46,6 +47,7 @@ export const router = createBrowserRouter([ element: , }, downloadsRoute, + metricsRoute, ], }, ]); From 66714dd95bd61e8b00f95961c68a46835f79c943 Mon Sep 17 00:00:00 2001 From: Alexander Shiarella Date: Mon, 2 Sep 2024 18:42:37 +0100 Subject: [PATCH 02/12] Add all countries index page --- package-lock.json | 2 +- package.json | 2 +- .../components/region-search/RegionSearch.tsx | 45 ++++++++++++ .../region-search/RegionSearchNavigation.tsx | 43 ++++++++++++ src/modules/metrics/data/fetch-regions.ts | 19 +++++ src/modules/metrics/metrics-routes.tsx | 6 +- .../routes/{regions => }/region-id.tsx | 0 src/modules/metrics/routes/regions-index.tsx | 69 +++++++++++++++++++ .../metrics/routes/regions/regions-index.tsx | 5 -- 9 files changed, 181 insertions(+), 10 deletions(-) create mode 100644 src/modules/metrics/components/region-search/RegionSearch.tsx create mode 100644 src/modules/metrics/components/region-search/RegionSearchNavigation.tsx create mode 100644 src/modules/metrics/data/fetch-regions.ts rename src/modules/metrics/routes/{regions => }/region-id.tsx (100%) create mode 100644 src/modules/metrics/routes/regions-index.tsx delete mode 100644 src/modules/metrics/routes/regions/regions-index.tsx diff --git a/package-lock.json b/package-lock.json index 4f5203d..dd2f98f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -100,7 +100,7 @@ "vite-tsconfig-paths": "^4.0.7" }, "engines": { - "node": ">=18.0.0 <19.0.0" + "node": ">=18.0.0 <21.7.2" } }, "node_modules/@aashutoshrathi/word-wrap": { diff --git a/package.json b/package.json index e189ea7..62e1f6f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "engines": { - "node": ">=18.0.0 <19.0.0" + "node": ">=18.0.0 <21.7.2" }, "dependencies": { "@emotion/react": "^11.10.6", diff --git a/src/modules/metrics/components/region-search/RegionSearch.tsx b/src/modules/metrics/components/region-search/RegionSearch.tsx new file mode 100644 index 0000000..8a0280b --- /dev/null +++ b/src/modules/metrics/components/region-search/RegionSearch.tsx @@ -0,0 +1,45 @@ +import { Autocomplete, InputAdornment, TextField } from '@mui/material'; +import { BoundarySummary } from '@nismod/irv-autopkg-client'; +import { ReactElement } from 'react'; + +export const RegionSearch = ({ + regions, + selectedRegion, + onSelectedRegion, + title, + icon, +}: { + regions: BoundarySummary[]; + selectedRegion: BoundarySummary; + onSelectedRegion: (x: BoundarySummary) => void; + title: string; + icon?: ReactElement; +}) => { + return ( + + sx={{ minWidth: '200px', width: '400px', maxWidth: '100%' }} + value={selectedRegion} + onChange={(e, v) => onSelectedRegion(v)} + options={regions} + getOptionLabel={(o) => o.name_long} + renderInput={(params) => ( + {icon} + ) : ( + params.InputProps.endAdornment + ), + }} + /> + )} + disablePortal + autoHighlight + clearOnEscape + /> + ); +}; diff --git a/src/modules/metrics/components/region-search/RegionSearchNavigation.tsx b/src/modules/metrics/components/region-search/RegionSearchNavigation.tsx new file mode 100644 index 0000000..4b8652e --- /dev/null +++ b/src/modules/metrics/components/region-search/RegionSearchNavigation.tsx @@ -0,0 +1,43 @@ +import { BoundarySummary } from '@nismod/irv-autopkg-client'; +import { useCallback } from 'react'; +import { useNavigate } from 'react-router-dom'; + +import { RegionSearch } from './RegionSearch'; + +export function RegionSearchNavigation({ + regions, + title, + metricId, + selectedRegionSummary = null, +}: { + regions: BoundarySummary[]; + title: string; + metricId: string; + selectedRegionSummary?: BoundarySummary; +}) { + const navigate = useNavigate(); + + const handleRegionSelected = useCallback( + (reg: BoundarySummary) => { + if (reg != null) { + setTimeout(() => { + navigate( + `/metrics/regions/${reg.name}/${metricId}`, + { preventScrollReset: true }, // don't scroll to top on navigate + ); + }, 100); + } + }, + [metricId, navigate], + ); + + return ( + + ); +} diff --git a/src/modules/metrics/data/fetch-regions.ts b/src/modules/metrics/data/fetch-regions.ts new file mode 100644 index 0000000..b0f43af --- /dev/null +++ b/src/modules/metrics/data/fetch-regions.ts @@ -0,0 +1,19 @@ +import { autopkgClient, cancelOnAbort } from '@/api-client'; +import { makeQueryAndPrefetch } from '@/query-client'; + +export const [useAllRegions, fetchAllRegions] = makeQueryAndPrefetch( + () => 'AllRegions', + () => + ({ signal }) => + cancelOnAbort(autopkgClient.boundaries.getAllBoundarySummariesV1BoundariesGet(), signal), +); + +export const [useRegionById, fetchRegionById] = makeQueryAndPrefetch( + ({ regionId }: { regionId: string }) => ['RegionById', regionId], + ({ regionId }) => + ({ signal }) => + cancelOnAbort( + autopkgClient.boundaries.getBoundaryByNameV1BoundariesNameGet({ name: regionId }), + signal, + ), +); diff --git a/src/modules/metrics/metrics-routes.tsx b/src/modules/metrics/metrics-routes.tsx index 0743d5e..2a286b7 100644 --- a/src/modules/metrics/metrics-routes.tsx +++ b/src/modules/metrics/metrics-routes.tsx @@ -15,21 +15,21 @@ export const metricsRoute: RouteObject = { handle: { pathBasedScroll: true, }, - lazy: () => import('./routes/regions/regions-index'), + lazy: () => import('./routes/regions-index'), }, { path: ':regionId', children: [ { index: true, - lazy: () => import('./routes/regions/region-id'), + lazy: () => import('./routes/region-id'), }, { path: ':metricId', children: [ { index: true, - lazy: () => import('./routes/regions/region-id'), + lazy: () => import('./routes/region-id'), }, ], }, diff --git a/src/modules/metrics/routes/regions/region-id.tsx b/src/modules/metrics/routes/region-id.tsx similarity index 100% rename from src/modules/metrics/routes/regions/region-id.tsx rename to src/modules/metrics/routes/region-id.tsx diff --git a/src/modules/metrics/routes/regions-index.tsx b/src/modules/metrics/routes/regions-index.tsx new file mode 100644 index 0000000..7dfcc6e --- /dev/null +++ b/src/modules/metrics/routes/regions-index.tsx @@ -0,0 +1,69 @@ +import { + Box, + Container, + List, + ListItemButton, + ListItemText, + Stack, + Typography, +} from '@mui/material'; +import { + LoaderFunctionArgs, + Link as RouterLink, + useLoaderData, + useLocation, +} from 'react-router-dom'; + +import { AppLink } from '@/lib/nav'; +import { LoaderData } from '@/lib/react/react-router'; + +import { fetchAllRegions } from '@/modules/metrics/data/fetch-regions'; + +import { RegionSearchNavigation } from '../components/region-search/RegionSearchNavigation'; + +export const loader = async ({ request: { signal } }: LoaderFunctionArgs) => ({ + regions: await fetchAllRegions({}, signal), +}); +loader.displayName = 'allRegionsLoader'; + +type AllRegionsLoaderData = LoaderData; + +export const Component = () => { + const { regions } = useLoaderData() as AllRegionsLoaderData; + const { pathname } = useLocation(); + + return ( + + + ← Back + All countries + + + Search + + + + + + Browse + + {regions.map((reg) => ( +
  • + + + +
  • + ))} +
    +
    +
    +
    +
    + ); +}; + +Component.displayName = 'RegionMetricsIndexPage'; diff --git a/src/modules/metrics/routes/regions/regions-index.tsx b/src/modules/metrics/routes/regions/regions-index.tsx deleted file mode 100644 index 42c1b51..0000000 --- a/src/modules/metrics/routes/regions/regions-index.tsx +++ /dev/null @@ -1,5 +0,0 @@ -export const Component = () => { - return
    Country Metrics – Regions Index Page
    ; -}; - -Component.displayName = 'RegionMetricsIndexPage'; From 1aff6c4761e7fb913a4d1ffd9490648a55c20465 Mon Sep 17 00:00:00 2001 From: Alexander Shiarella Date: Mon, 23 Sep 2024 12:16:12 +0100 Subject: [PATCH 03/12] Add dashboard components --- package-lock.json | 375 ++++++++++++++++++ package.json | 1 + .../components/dashboard/Dashboard.tsx | 99 +++++ .../components/dashboard/DashboardCharts.tsx | 244 ++++++++++++ .../dashboard/chart/CountriesBarChart.tsx | 127 ++++++ .../dashboard/chart/RegionsLineChart.tsx | 151 +++++++ .../dashboard/chart/useDimensions.ts | 27 ++ .../components/dashboard/map/.DS_Store | Bin 0 -> 6148 bytes .../components/dashboard/map/MapLabel.tsx | 21 + .../components/dashboard/map/MapLegend.tsx | 86 ++++ .../components/dashboard/map/RegionMap.tsx | 249 ++++++++++++ .../metrics/components/lib/chart/Chart.css | 52 +++ .../metrics/components/lib/chart/Chart.tsx | 33 ++ .../metrics/components/lib/chart/Line.tsx | 27 ++ .../components/lib/chart/axis/Axis.tsx | 35 ++ .../lib/chart/axis/AxisHorizontal.tsx | 35 ++ .../lib/chart/axis/AxisImplProps.ts | 10 + .../lib/chart/axis/AxisVertical.tsx | 35 ++ .../components/lib/chart/types/ChartLayout.ts | 12 + .../components/lib/chart/types/Dimension.ts | 6 + .../metrics/components/lib/chart/utils.ts | 58 +++ src/modules/metrics/data/gdl-datasets.ts | 24 ++ src/modules/metrics/routes/region-id.tsx | 223 ++++++++++- src/modules/metrics/routes/regions-index.tsx | 3 +- 24 files changed, 1930 insertions(+), 3 deletions(-) create mode 100644 src/modules/metrics/components/dashboard/Dashboard.tsx create mode 100644 src/modules/metrics/components/dashboard/DashboardCharts.tsx create mode 100644 src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx create mode 100644 src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx create mode 100644 src/modules/metrics/components/dashboard/chart/useDimensions.ts create mode 100644 src/modules/metrics/components/dashboard/map/.DS_Store create mode 100644 src/modules/metrics/components/dashboard/map/MapLabel.tsx create mode 100644 src/modules/metrics/components/dashboard/map/MapLegend.tsx create mode 100644 src/modules/metrics/components/dashboard/map/RegionMap.tsx create mode 100644 src/modules/metrics/components/lib/chart/Chart.css create mode 100644 src/modules/metrics/components/lib/chart/Chart.tsx create mode 100644 src/modules/metrics/components/lib/chart/Line.tsx create mode 100644 src/modules/metrics/components/lib/chart/axis/Axis.tsx create mode 100644 src/modules/metrics/components/lib/chart/axis/AxisHorizontal.tsx create mode 100644 src/modules/metrics/components/lib/chart/axis/AxisImplProps.ts create mode 100644 src/modules/metrics/components/lib/chart/axis/AxisVertical.tsx create mode 100644 src/modules/metrics/components/lib/chart/types/ChartLayout.ts create mode 100644 src/modules/metrics/components/lib/chart/types/Dimension.ts create mode 100644 src/modules/metrics/components/lib/chart/utils.ts create mode 100644 src/modules/metrics/data/gdl-datasets.ts diff --git a/package-lock.json b/package-lock.json index dd2f98f..f8221a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,6 +24,7 @@ "@turf/bbox": "^6.5.0", "@turf/bbox-polygon": "^6.5.0", "@turf/buffer": "^6.5.0", + "d3": "^7.9.0", "d3-array": "^3.2.2", "d3-color": "^3.1.0", "d3-ease": "^3.0.1", @@ -15722,6 +15723,47 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/d3-array": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", @@ -15733,6 +15775,43 @@ "node": ">=12" } }, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", + "dependencies": { + "d3-path": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/d3-color": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", @@ -15741,6 +15820,18 @@ "node": ">=12" } }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", + "dependencies": { + "d3-array": "^3.2.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/d3-delaunay": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz", @@ -15760,6 +15851,19 @@ "node": ">=12" } }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/d3-dsv": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", @@ -15789,6 +15893,18 @@ "node": ">=12" } }, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", + "dependencies": { + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/d3-force": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", @@ -15881,6 +15997,15 @@ "node": ">=12" } }, + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, "node_modules/d3-quadtree": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", @@ -15889,6 +16014,15 @@ "node": ">=12" } }, + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, "node_modules/d3-scale": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", @@ -15916,6 +16050,15 @@ "node": ">=12" } }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, "node_modules/d3-shape": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", @@ -15957,6 +16100,87 @@ "node": ">=12" } }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/d3/node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", + "dependencies": { + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", @@ -40897,6 +41121,68 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, + "d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "requires": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "requires": { + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, "d3-array": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", @@ -40905,11 +41191,44 @@ "internmap": "1 - 2" } }, + "d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==" + }, + "d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "requires": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + } + }, + "d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "requires": { + "d3-path": "1 - 3" + } + }, "d3-color": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==" }, + "d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "requires": { + "d3-array": "^3.2.0" + } + }, "d3-delaunay": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz", @@ -40923,6 +41242,15 @@ "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==" }, + "d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "requires": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + } + }, "d3-dsv": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", @@ -40938,6 +41266,14 @@ "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==" }, + "d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "requires": { + "d3-dsv": "1 - 3" + } + }, "d3-force": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", @@ -41001,11 +41337,21 @@ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==" }, + "d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==" + }, "d3-quadtree": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==" }, + "d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==" + }, "d3-scale": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", @@ -41027,6 +41373,11 @@ "d3-interpolate": "1 - 3" } }, + "d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==" + }, "d3-shape": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", @@ -41056,6 +41407,30 @@ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==" }, + "d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "requires": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + } + }, + "d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "requires": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + } + }, "damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", diff --git a/package.json b/package.json index 62e1f6f..2d4f2e5 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "@turf/bbox": "^6.5.0", "@turf/bbox-polygon": "^6.5.0", "@turf/buffer": "^6.5.0", + "d3": "^7.9.0", "d3-array": "^3.2.2", "d3-color": "^3.1.0", "d3-ease": "^3.0.1", diff --git a/src/modules/metrics/components/dashboard/Dashboard.tsx b/src/modules/metrics/components/dashboard/Dashboard.tsx new file mode 100644 index 0000000..4a2917d --- /dev/null +++ b/src/modules/metrics/components/dashboard/Dashboard.tsx @@ -0,0 +1,99 @@ +import { Boundary } from '@nismod/irv-autopkg-client'; +import * as d3 from 'd3'; +import { FC } from 'react'; + +import { GDL_YEAR_RANGE } from '../../data/gdl-datasets'; +import DashboardCharts from './DashboardCharts'; + +const YEAR_RANGE = GDL_YEAR_RANGE; + +const compileDataPerYear = (dataPerRegion) => { + const dataByYear = []; + + for (var i = YEAR_RANGE[0]; i <= YEAR_RANGE[1]; i++) { + const year = i; + const index = dataByYear.push({ year: year }); + dataPerRegion.forEach((d) => { + const gdlCode = d.GDLCODE; + const yearRecord = dataByYear[index - 1]; + yearRecord[gdlCode] = d[year]; + }); + } + + const dataPerYearTidy = []; + dataPerRegion.forEach((d) => { + for (var i = YEAR_RANGE[0]; i <= YEAR_RANGE[1]; i++) { + dataPerYearTidy.push({ + year: i, + value: d[i], + country: d.Country, + continent: d.Continent, + iso: d.ISO_Code, + level: d.Level, + gdlCode: d.GDLCODE, + region: d.Region, + }); + } + }); + + return dataPerYearTidy; +}; + +type DashboardProps = { + region: Boundary; + chartData: any; + geojson: any; + metricLabel: string; + scaleAcrossCountries: boolean; + scaleAcrossYears: boolean; + selectedYear: number; + updateSelectedYear: (year: any) => void; +}; + +const Dashboard: FC = ({ + region, + chartData, + geojson, + metricLabel, + scaleAcrossCountries, + scaleAcrossYears, + selectedYear, + updateSelectedYear, +}) => { + const regionId = region.name; + const selectedIsoCode = regionId.toUpperCase(); + const selectedCountryData = chartData.filter((d) => d.ISO_Code === selectedIsoCode); + + const countryDataPerYear = compileDataPerYear(selectedCountryData); + const allDataPerYear = compileDataPerYear(chartData); + + // Assumes data is already filtered by country + const dataFiltered = countryDataPerYear.filter((d) => d.value !== null); + + // group the data - one line per group + const dataByYearGrouped = d3.group(dataFiltered, (d) => d.gdlCode); + const dataByYearGroupedList = []; + + dataByYearGrouped.forEach((value, key) => { + dataByYearGroupedList.push({ regionKey: key, indexData: value }); + }); + + return ( + + ); +}; + +export default Dashboard; diff --git a/src/modules/metrics/components/dashboard/DashboardCharts.tsx b/src/modules/metrics/components/dashboard/DashboardCharts.tsx new file mode 100644 index 0000000..b711a8f --- /dev/null +++ b/src/modules/metrics/components/dashboard/DashboardCharts.tsx @@ -0,0 +1,244 @@ +import MapIcon from '@mui/icons-material/Map'; +import { Box, IconButton, Stack, Typography } from '@mui/material'; +import { Boundary } from '@nismod/irv-autopkg-client'; +import * as d3 from 'd3'; +import { FC, useEffect, useState } from 'react'; + +import { useIsMobile } from '@/use-is-mobile'; + +import CountriesBarChart from './chart/CountriesBarChart'; +import RegionsLineChart from './chart/RegionsLineChart'; +import RegionMap from './map/RegionMap'; + +const getDefaultRegionKey = (dataByYearGroupedList) => { + const dataLength = dataByYearGroupedList.length; + if (dataLength < 1) { + return null; + } + + if (dataLength === 1) { + return dataByYearGroupedList[0].regionKey; + } + + const maybeTotal = dataByYearGroupedList.find((d) => d.regionKey.endsWith('t')); + + if (maybeTotal) { + return maybeTotal.regionKey; + } + + return null; +}; + +const compileTimelineDomainY = (scaleAcrossCountries, allDataPerYear, dataFiltered, yAccessor) => { + if (scaleAcrossCountries) { + return d3.extent(allDataPerYear, yAccessor); + } + return d3.extent(dataFiltered, yAccessor); +}; + +const compileDomainY = ( + scaleAcrossCountries, + scaleAcrossYears, + allDataPerYear, + dataFiltered, + yAccessor, + selectedYear, +) => { + if (scaleAcrossYears) { + return compileTimelineDomainY(scaleAcrossCountries, allDataPerYear, dataFiltered, yAccessor); + } + + if (scaleAcrossCountries) { + return d3.extent( + allDataPerYear.filter((d) => d.year === selectedYear && d.value !== null), + yAccessor, + ); + } + + return d3.extent( + dataFiltered.filter((d) => d.year === selectedYear), + yAccessor, + ); +}; + +type DashboardChartsProps = { + country: Boundary; + geojson: any; + selectedCountryData: any; + dataFiltered: any[]; + dataByYearGroupedList: any[]; + allData: any; + allDataPerYear: any[]; + scaleAcrossYears: boolean; + scaleAcrossCountries: boolean; + metricLabel: string; + selectedYear: number; + updateSelectedYear: (year: any) => void; +}; + +const DashboardCharts: FC = ({ + country, + geojson, + selectedCountryData, + dataFiltered, + dataByYearGroupedList, + allData, + allDataPerYear, + scaleAcrossYears, + scaleAcrossCountries, + metricLabel, + selectedYear, + updateSelectedYear, +}) => { + const [highlightRegion, setHighlightRegion] = useState(null); + + const isMobile = useIsMobile(); + + const yAccessor = (d) => d.value; + const timelineDomainY = compileDomainY( + scaleAcrossCountries, + true, + allDataPerYear, + dataFiltered, + yAccessor, + selectedYear, + ); + const domainY = compileDomainY( + scaleAcrossCountries, + scaleAcrossYears, + allDataPerYear, + dataFiltered, + yAccessor, + selectedYear, + ); + + const resetHighlightRegion = (dataByYearGroupedList) => { + setHighlightRegion(getDefaultRegionKey(dataByYearGroupedList)); + }; + + useEffect(() => { + resetHighlightRegion(dataByYearGroupedList); + }, [dataByYearGroupedList]); + + const updateHighlightRegion = (regionId) => { + if (!regionId) { + resetHighlightRegion(dataByYearGroupedList); + } else { + setHighlightRegion(regionId); + } + }; + + const colorInterpolator = d3.interpolateRdYlGn; + const colorScale = d3.scaleSequential().domain(domainY).interpolator(colorInterpolator); + + const xBoundsOnly = country.envelope.coordinates[0].map((d) => d[0]); + const averageXBounds = xBoundsOnly.reduce((a, b) => a + b) / xBoundsOnly.length; + + const yBoundsOnly = country.envelope.coordinates[0].map((d) => d[1]); + const averageYBounds = yBoundsOnly.reduce((a, b) => a + b) / yBoundsOnly.length; + + return ( + ({ + backgroundColor: 'white', + width: '100%', + padding: '25px', + pb: '100px', + })} + > + + + + {!selectedCountryData.length ? ( + + No data available. + + ) : ( + <> + )} + + {country.name_long} + + + window.open( + `https://global.infrastructureresilience.org/view/vulnerability?y=${averageYBounds}&x=${averageXBounds}&z=3§ions=%7B%22hazards%22%3A%7B%7D%2C%22vulnerability%22%3A%7B%22human%22%3A%7B%22human-development%22%3Atrue%7D%7D%7D`, + '_blank', + ) + } + > + + + + + + + {selectedCountryData.length ? ( + + d.year} + yAccessor={(d) => d.value} + label={metricLabel} + dataFiltered={dataFiltered} + dataByYearGroupedList={dataByYearGroupedList} + highlightRegion={highlightRegion} + setHighlightRegion={updateHighlightRegion} + selectedYear={selectedYear} + updateSelectedYear={updateSelectedYear} + domainY={timelineDomainY} + /> + + ) : ( + // Needed for MUI otherwise "0" + <> + )} + + + {selectedCountryData.length ? ( + + ) : ( + // Needed for MUI otherwise "0" + <> + )} + + + ); +}; + +export default DashboardCharts; diff --git a/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx b/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx new file mode 100644 index 0000000..6027e3a --- /dev/null +++ b/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx @@ -0,0 +1,127 @@ +import { Box } from '@mui/material'; +import * as d3 from 'd3'; +import { FC } from 'react'; + +import Axis from '@/modules/metrics/components/lib/chart/axis/Axis'; +import Chart from '@/modules/metrics/components/lib/chart/Chart'; +import { useChartDimensions } from '@/modules/metrics/components/lib/chart/utils'; + +import Dimension from '../../lib/chart/types/Dimension'; + +type CountriesBarChartProps = { + label: string; + highlightRegion: any; + setHighlightRegion: (regionId: any) => void; + selectedYear: number; + allData: any; + countryId: string; + domainY: any; + colorScale: any; +}; + +const CountriesBarChart: FC = ({ + label, + highlightRegion, + setHighlightRegion, + selectedYear, + allData, + countryId, + domainY, + colorScale, +}) => { + const [ref, dimensions] = useChartDimensions(null); + + const regionalDataOnly = allData + .filter((d) => d.ISO_Code === countryId.toUpperCase()) + .filter((d) => d[selectedYear]) + .sort((a, b) => a[selectedYear] - b[selectedYear]); + + const chartData = regionalDataOnly; + + const xScale = d3 + .scaleBand() + .domain(chartData.map((d) => d.GDLCODE)) + .range([0, dimensions.boundedWidth]) + .padding(0.1); + + const yScale = d3 + .scaleLinear() + .domain([domainY[0] - 0.01, domainY[1]]) + .range([dimensions.boundedHeight, 0]) + .nice(); + + const allShapes = chartData.map((d, i) => { + const x = xScale(d.GDLCODE); + + if (x === undefined) { + return null; + } + + const maybeBarHeight = dimensions.boundedHeight - yScale(d[selectedYear]) - 0.5; // don't overlap axis + const barHeight = maybeBarHeight > 0 ? maybeBarHeight : 0; // ensure non-negative + + return ( + + setHighlightRegion(d.GDLCODE)} + onMouseLeave={() => setHighlightRegion(null)} + rx={1} + /> + + {d.Region.split('(')[0].trim()} + + + ); + }); + + return ( + 20 ? '900px' : '750px', + backgroundColor: 'white', + }} + > + <> + + + + + {allShapes} + + + + + ); +}; + +export default CountriesBarChart; diff --git a/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx b/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx new file mode 100644 index 0000000..6f54cec --- /dev/null +++ b/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx @@ -0,0 +1,151 @@ +import { Box } from '@mui/material'; +import * as d3 from 'd3'; + +import Axis from '@/modules/metrics/components/lib/chart/axis/Axis'; +import Chart from '@/modules/metrics/components/lib/chart/Chart'; +import Line from '@/modules/metrics/components/lib/chart/Line'; +import { useChartDimensions } from '@/modules/metrics/components/lib/chart/utils'; + +import Dimension from '../../lib/chart/types/Dimension'; + +const formatYear = d3.format('.0f'); + +const findHighlightPoint = (dataByYearGroupedList, regionKey, selectedYear, xScale, yScale) => { + const dataRecord = dataByYearGroupedList.find((d) => d.regionKey === regionKey); + if (!dataRecord || !dataRecord.indexData) return null; + + const dataForYear = dataRecord.indexData.find((d) => d.year === selectedYear); + if (!dataForYear) return null; + + return { + x: xScale(selectedYear), + y: yScale(dataForYear.value), + }; +}; + +const RegionsLineChart = ({ + xAccessor, + yAccessor, + label, + dataFiltered, + dataByYearGroupedList, + highlightRegion, + setHighlightRegion, + selectedYear, + updateSelectedYear, + domainY, +}) => { + const [ref, dimensions] = useChartDimensions(null); + + const xScale = d3 + .scaleLinear() + .domain(d3.extent(dataFiltered, xAccessor)) + .range([0, dimensions.boundedWidth]); + + const yScale = d3.scaleLinear().domain(domainY).range([dimensions.boundedHeight, 0]).nice(); + + const xAccessorScaled = (d) => xScale(xAccessor(d)); + const yAccessorScaled = (d) => yScale(yAccessor(d)); + + const highlightPoint = findHighlightPoint( + dataByYearGroupedList, + highlightRegion, + selectedYear, + xScale, + yScale, + ); + + const resetHighlight = () => { + setHighlightRegion(null); + }; + + const xExtent = d3.extent(dataFiltered, xAccessor); + + const yearList = []; + for (var i = xExtent[0]; i <= xExtent[1]; i++) { + yearList.push(i); + } + + const points = dataFiltered.map((d) => [xAccessorScaled(d), yAccessorScaled(d), d.gdlCode]); + const yearPoints = yearList.map((d) => [xScale(d), d]); + + const onPointerMove = (event) => { + // Find nearest data point based on coordinates of click event + const [pointerX, pointerY] = d3.pointer(event); + const nearestIndex = d3.leastIndex(points, ([x, y]) => Math.hypot(x - pointerX, y - pointerY)); + const regionKey = points[nearestIndex][2]; + + setHighlightRegion(regionKey); + }; + + const onPointerLeave = () => { + resetHighlight(); + }; + + const onPointerClick = (event) => { + // Find nearest year based on x value of click event + const [pointerX] = d3.pointer(event); + const nearestIndex = d3.leastIndex(yearPoints, ([x, year]) => Math.abs(pointerX - x)); + const year = yearPoints[nearestIndex][1]; + + updateSelectedYear(year); + }; + + return ( + + + + + + + + {dataByYearGroupedList.map((d) => ( + + ))} + + {highlightPoint && highlightPoint.x && ( + + )} + + + {selectedYear} + + + + + + + ); +}; + +export default RegionsLineChart; diff --git a/src/modules/metrics/components/dashboard/chart/useDimensions.ts b/src/modules/metrics/components/dashboard/chart/useDimensions.ts new file mode 100644 index 0000000..8f731a2 --- /dev/null +++ b/src/modules/metrics/components/dashboard/chart/useDimensions.ts @@ -0,0 +1,27 @@ +import { useCallback, useEffect, useLayoutEffect, useState } from 'react'; + +export const useDimensions = (targetRef: any) => { + const getDimensions = useCallback(() => { + return { + width: targetRef.current ? targetRef.current.offsetWidth : 0, + height: targetRef.current ? targetRef.current.offsetHeight : 0, + }; + }, [targetRef]); + + const [dimensions, setDimensions] = useState(getDimensions); + + const handleResize = useCallback(() => { + setDimensions(getDimensions()); + }, [getDimensions]); + + useEffect(() => { + window.addEventListener('resize', handleResize); + return () => window.removeEventListener('resize', handleResize); + }, [handleResize]); + + useLayoutEffect(() => { + handleResize(); + }, [handleResize]); + + return dimensions; +}; diff --git a/src/modules/metrics/components/dashboard/map/.DS_Store b/src/modules/metrics/components/dashboard/map/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..16c747118ab5176670886fb34c603a1417b06412 GIT binary patch literal 6148 zcmeHKOKQVF43!!~0^N9-<=t{g2-A3}`XO`)6e1k#() z=#BAPSeA(B?(_5_(u&9iZYbXt=4R*SGkeO60^zvhB7^i_$B+Jfm{l()jJuXj&S1Vh z^7}4sU8XTh1*iZOpaN8Y3j9(5>%Fkeb08xXpaN9ju7G_X3f!tBGS^&_#3j(0sDygrfd*++Vz0v<5O#0V*(6 zU=`ce`u_p`!~8!baYqHHz`s&JoBeUW!z*QPoxPm(+5&%tTg?@2hP6`=yd49*9b;qd ec*nm7hJ9eJk%`7>a;(5S#)D{uqJYZbTv literal 0 HcmV?d00001 diff --git a/src/modules/metrics/components/dashboard/map/MapLabel.tsx b/src/modules/metrics/components/dashboard/map/MapLabel.tsx new file mode 100644 index 0000000..26837a5 --- /dev/null +++ b/src/modules/metrics/components/dashboard/map/MapLabel.tsx @@ -0,0 +1,21 @@ +import { Box } from '@mui/system'; +import { FC } from 'react'; + +export const MapLabel: FC<{ + top?: number; + right?: number; + left?: number; + highlightData: any; + selectedYear: number; +}> = ({ top = 0, right = 0, left = 0, highlightData, selectedYear = 2021 }) => { + return highlightData ? ( + + {highlightData.Region.split('(')[0].trim()}: {highlightData[selectedYear]} + + ) : null; +}; diff --git a/src/modules/metrics/components/dashboard/map/MapLegend.tsx b/src/modules/metrics/components/dashboard/map/MapLegend.tsx new file mode 100644 index 0000000..be40e42 --- /dev/null +++ b/src/modules/metrics/components/dashboard/map/MapLegend.tsx @@ -0,0 +1,86 @@ +import { Box, Stack } from '@mui/system'; +import * as d3 from 'd3'; +import { FC } from 'react'; + +export const MapLegend: FC<{ + top?: number; + right?: number; + bottom?: number; + left?: number; + colorScale: any; + domainY: any; + label: string; +}> = ({ top = 0, right = 0, bottom = 0, left = 0, colorScale, domainY, label }) => { + if (!colorScale || !domainY || !label) { + return <>; + } + const colorString1 = colorScale(domainY[0]); + const colorString2 = colorScale((domainY[0] + domainY[1]) / 2); + const colorString3 = colorScale(domainY[1]); + const colorObject = d3.color(colorString1); + const colorObject2 = d3.color(colorString2); + const colorObject3 = d3.color(colorString3); + + if (!colorObject) { + return <>; + } + // const rgbColor = [colorObject.r, colorObject.g, colorObject.b, 200]; + const aValue = 200 / 255; + + return ( + + + {label} + + + + + + + + + + + + + + + + + {domainY[0]} + + + + {domainY[1]} + + + + + + ); +}; diff --git a/src/modules/metrics/components/dashboard/map/RegionMap.tsx b/src/modules/metrics/components/dashboard/map/RegionMap.tsx new file mode 100644 index 0000000..399e4e7 --- /dev/null +++ b/src/modules/metrics/components/dashboard/map/RegionMap.tsx @@ -0,0 +1,249 @@ +import type { Color } from '@deck.gl/core'; +import { ZoomOutMap } from '@mui/icons-material'; +import { Box, BoxProps } from '@mui/material'; +import { Polygon } from '@nismod/irv-autopkg-client'; +import * as d3 from 'd3'; +import { GeoJsonLayer, MapViewState } from 'deck.gl/typed'; +import type { Feature } from 'geojson'; +import { Suspense, useCallback, useEffect, useMemo, useState } from 'react'; +import { Map } from 'react-map-gl/maplibre'; +import { useResizeDetector } from 'react-resize-detector'; + +import { extendBbox, geoJsonToAppBoundingBox } from '@/lib/bounding-box'; +import { DeckGLOverlay } from '@/lib/map/DeckGLOverlay'; +import { MapHud } from '@/lib/map/hud/MapHud'; +import { MapHudButton } from '@/lib/map/hud/MapHudButton'; +import { MapHudRegion } from '@/lib/map/hud/MapHudRegion'; +import { getBoundingBoxViewState } from '@/lib/map/MapBoundsFitter'; + +import { useBasemapStyle } from '@/map/use-basemap-style'; + +// import hdiGeoJson from './geojson/gdl_v6.3_large_visvaligram_weighted_0.02.json'; +import { MapLabel } from './MapLabel'; +import { MapLegend } from './MapLegend'; + +function compareViewStateWithInitial(viewState: any, initialViewState: any) { + for (const key of Object.keys(initialViewState)) { + if (viewState[key] !== initialViewState[key]) return true; + } + return false; +} + +function useViewState(initialViewStateFn: () => MapViewState) { + const [sanitizedInitialViewState, setSanitizedInitialViewState] = useState(initialViewStateFn); + const [viewState, setViewState] = useState(sanitizedInitialViewState); + const [saveSanitized, setSaveSanitized] = useState(null); + + /** + * If the `initialViewState` needs to be normalized by DeckGL at initialization, + * it will be changed but only the second `onViewStateChange` will contain the sanitized value + * That's why the `saveSanitized` state changes upon viewState change as follows: null -> true -> false + */ + const handleViewState = useCallback( + (newViewState: MapViewState) => { + if (saveSanitized == null) { + setSaveSanitized(true); + } else if (saveSanitized === true) { + setSanitizedInitialViewState(newViewState); + setSaveSanitized(false); + } + + setViewState(newViewState); + }, + [saveSanitized], + ); + + return { + viewState, + setViewState: handleViewState, + initialViewState: sanitizedInitialViewState, + setInitialViewState: setSanitizedInitialViewState, + }; +} + +export default function RegionMap({ + countryEnvelope, + // countryId, + width: responsiveWidth, + height: responsiveHeight, + selectedCountryData, + highlightRegion, + setHighlightRegion, + selectedYear, + domainY, + geojson, + label, +}: { + countryEnvelope: Polygon; + countryId: String; + width: BoxProps['width']; + height: BoxProps['height']; + selectedCountryData: any; // TODO + highlightRegion: String; // TODO? + setHighlightRegion: any; // TODO? + selectedYear: number; + domainY: any; // TODO + geojson: any; //TODO + label: string; +}) { + const { width, height, ref: containerRef } = useResizeDetector(); + + return ( + + {width != null && ( + + + + )} + + ); +} + +function RegionMapViewer({ + width, + height, + regionEnvelope, + // regionId, + selectedCountryData, + highlightRegion, + setHighlightRegion, + selectedYear, + domainY, + geojson, + label, +}) { + // const filteredGeoJson = useMemo( + // () => hdiGeoJson['features'].filter((d) => d.properties.iso_code === regionId.toUpperCase()), + + // [regionId], + // ); + + const filteredGeoJson = geojson; + + const calculateBoundedState = useCallback(() => { + const boundingBox = geoJsonToAppBoundingBox(regionEnvelope); + const enlarged = extendBbox(boundingBox, 10); + + return getBoundingBoxViewState(enlarged, width, height); + }, [regionEnvelope, width, height]); + + const { viewState, setViewState, initialViewState, setInitialViewState } = useViewState(() => { + return calculateBoundedState(); + }); + + // If the region changes, update the view state + useEffect(() => { + const boundingBoxViewState = calculateBoundedState(); + setViewState(boundingBoxViewState); + setInitialViewState(boundingBoxViewState); + }, [calculateBoundedState, regionEnvelope, setInitialViewState, setViewState]); + + const viewStateChanged = + viewState == null || initialViewState == null + ? false + : compareViewStateWithInitial(viewState, initialViewState); + + const backgroundKey = 'light'; + const { mapStyle } = useBasemapStyle(backgroundKey, true); + + const colorScale = useMemo( + () => d3.scaleSequential().domain(domainY).interpolator(d3.interpolateRdYlGn), + [domainY], + ); + + const getLineWidth = useCallback( + (geoJsonEntry) => { + const gdlCode = geoJsonEntry.properties.gdlcode; + return gdlCode === highlightRegion ? 2 : 0; + }, + [highlightRegion], + ); + + const getColor = useCallback( + (geoJsonEntry: Feature): Color => { + const NOT_FOUND_COLOR = [255, 255, 255, 100]; + const gdlCode = geoJsonEntry.properties.gdlcode; + + const maybeRegionData = selectedCountryData.find((d) => d.GDLCODE === gdlCode); + if (!maybeRegionData) return NOT_FOUND_COLOR; + + const maybeRegionValue = maybeRegionData[selectedYear]; + if (!maybeRegionValue) return NOT_FOUND_COLOR; + + const colorString = colorScale(maybeRegionValue); + const colorObject = d3.color(colorString); + + return [colorObject.r, colorObject.g, colorObject.b, 200]; + }, + [selectedCountryData, selectedYear, colorScale], + ); + + const highlightData = selectedCountryData.find((d) => d.GDLCODE === highlightRegion); + + return ( + setViewState(viewState)} mapStyle={mapStyle}> + 'test', + getLineColor: [0, 0, 0, 255], + getLineWidth: (d) => getLineWidth(d), + lineWidthUnits: 'pixels', + filled: true, + onHover: (e) => { + const eventObject = e.object; + if (!eventObject || !eventObject.properties || !eventObject.properties.gdlcode) { + setHighlightRegion(null); + } else { + setHighlightRegion(eventObject.properties.gdlcode); + } + }, + getFillColor: (d) => getColor(d), + pickable: true, + updateTriggers: { + getLineWidth: [getLineWidth], + getFillColor: [getColor], + }, + }), + ]} + /> + + + + setViewState({ ...viewState, ...initialViewState })} + > + + + + + + + + + + ); +} diff --git a/src/modules/metrics/components/lib/chart/Chart.css b/src/modules/metrics/components/lib/chart/Chart.css new file mode 100644 index 0000000..335e820 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/Chart.css @@ -0,0 +1,52 @@ +.Chart { + overflow: visible; +} + +.Chart text { + fill: #898989; +} + +.Chart text.highlight { + fill: black; +} + +.Line { + mix-blend-mode: 'multiply'; +} + +.Line--type-line { + fill: none; + stroke: #808080; + opacity: 0.2; + stroke-width: 1px; + stroke-linecap: round; +} + +.Line--type-line.highlight { + opacity: 1; + stroke: black; + stroke-width: 1.5px; +} + +.Axis__line { + stroke: #c6c6c6; +} + +.Axis__label { + text-anchor: middle; + font-size: 0.9em; + letter-spacing: 0.01em; +} + +.Axis__tick { + font-size: 0.8em; + transition: all 0.3s ease-out; +} + +.AxisHorizontal .Axis__tick { + text-anchor: middle; +} + +.AxisVertical .Axis__tick { + text-anchor: end; +} diff --git a/src/modules/metrics/components/lib/chart/Chart.tsx b/src/modules/metrics/components/lib/chart/Chart.tsx new file mode 100644 index 0000000..66a2553 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/Chart.tsx @@ -0,0 +1,33 @@ +import { createContext, FC, ReactNode, useContext } from 'react'; + +import './Chart.css'; + +import ChartLayout from './types/ChartLayout'; + +const defaultChartContext = { + height: 0, + width: 0, + marginTop: 0, + marginRight: 0, + marginBottom: 0, + marginLeft: 0, + boundedWidth: 0, + boundedHeight: 0, +}; +const ChartContext = createContext(defaultChartContext); +export const useDimensionsContext = () => useContext(ChartContext); + +type ChartProps = { + dimensions: ChartLayout; + children?: ReactNode; +}; + +const Chart: FC = ({ dimensions, children }) => ( + + + {children} + + +); + +export default Chart; diff --git a/src/modules/metrics/components/lib/chart/Line.tsx b/src/modules/metrics/components/lib/chart/Line.tsx new file mode 100644 index 0000000..ab88780 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/Line.tsx @@ -0,0 +1,27 @@ +import * as d3 from 'd3'; +import { FC } from 'react'; + +type LineProps = { + data: any; + xAccessor: any; + yAccessor: any; + isHighlighted: boolean; + interpolation?: (value: number) => number; // D3 function +}; + +const Line: FC = ({ + data, + xAccessor, + yAccessor, + isHighlighted, + interpolation = d3.curveMonotoneX, + ...props +}) => { + const type = 'line'; + const lineGenerator = d3[type]().x(xAccessor).y(yAccessor).curve(interpolation); + + const className = isHighlighted ? `Line Line--type-${type} highlight` : `Line Line--type-${type}`; + return ; +}; + +export default Line; diff --git a/src/modules/metrics/components/lib/chart/axis/Axis.tsx b/src/modules/metrics/components/lib/chart/axis/Axis.tsx new file mode 100644 index 0000000..ffcc23c --- /dev/null +++ b/src/modules/metrics/components/lib/chart/axis/Axis.tsx @@ -0,0 +1,35 @@ +import * as d3 from 'd3'; +import { FC } from 'react'; + +import { useDimensionsContext } from '../Chart'; +import Dimension from '../types/Dimension'; +import AxisHorizontal from './AxisHorizontal'; +import AxisVertical from './AxisVertical'; + +const defaultTickFormatter = d3.format(','); + +const axisByDimension = (dimension: Dimension) => { + if (dimension === Dimension.X) { + return AxisHorizontal; + } + + return AxisVertical; +}; + +type AxisProps = { + scale: any; // D3 function + label?: string; + formatTick?: any; // D3 function + dimension: Dimension; +}; + +const Axis: FC = ({ dimension, formatTick = defaultTickFormatter, ...props }) => { + const dimensions = useDimensionsContext(); + + const Component = axisByDimension(dimension); + if (!Component) return null; + + return ; +}; + +export default Axis; diff --git a/src/modules/metrics/components/lib/chart/axis/AxisHorizontal.tsx b/src/modules/metrics/components/lib/chart/axis/AxisHorizontal.tsx new file mode 100644 index 0000000..e7840d4 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/axis/AxisHorizontal.tsx @@ -0,0 +1,35 @@ +import { FC } from 'react'; + +import AxisImplProps from './AxisImplProps'; + +const AxisHorizontal: FC = ({ dimensions, label, scale, formatTick, ...props }) => { + const numberOfTicks = + dimensions.boundedWidth < 600 ? dimensions.boundedWidth / 100 : dimensions.boundedWidth / 250; + + const ticks = scale.ticks(numberOfTicks); + + return ( + + + + {ticks.map((tick, i) => ( + + {formatTick(tick)} + + + ))} + + {label && ( + + {label} + + )} + + ); +}; + +export default AxisHorizontal; diff --git a/src/modules/metrics/components/lib/chart/axis/AxisImplProps.ts b/src/modules/metrics/components/lib/chart/axis/AxisImplProps.ts new file mode 100644 index 0000000..044e973 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/axis/AxisImplProps.ts @@ -0,0 +1,10 @@ +import ChartLayout from '../types/ChartLayout'; + +type AxisImplProps = { + dimensions: ChartLayout; + scale: any; // D3 function type + label?: string; + formatTick?: any; // D3 function type +}; + +export default AxisImplProps; diff --git a/src/modules/metrics/components/lib/chart/axis/AxisVertical.tsx b/src/modules/metrics/components/lib/chart/axis/AxisVertical.tsx new file mode 100644 index 0000000..8b39368 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/axis/AxisVertical.tsx @@ -0,0 +1,35 @@ +import { FC } from 'react'; + +import AxisImplProps from './AxisImplProps'; + +const AxisVertical: FC = ({ dimensions, label, scale, formatTick, ...props }) => { + const numberOfTicks = dimensions.boundedHeight / 70; + + const ticks = scale.ticks(numberOfTicks); + + return ( + + + + {ticks.map((tick, i) => ( + + {formatTick(tick)} + + + ))} + + {label && ( + + {label} + + )} + + ); +}; + +export default AxisVertical; diff --git a/src/modules/metrics/components/lib/chart/types/ChartLayout.ts b/src/modules/metrics/components/lib/chart/types/ChartLayout.ts new file mode 100644 index 0000000..e31fd7d --- /dev/null +++ b/src/modules/metrics/components/lib/chart/types/ChartLayout.ts @@ -0,0 +1,12 @@ +type ChartLayout = { + height: number; + width: number; + marginTop: number; + marginRight: number; + marginBottom: number; + marginLeft: number; + boundedWidth: number; + boundedHeight: number; +}; + +export default ChartLayout; diff --git a/src/modules/metrics/components/lib/chart/types/Dimension.ts b/src/modules/metrics/components/lib/chart/types/Dimension.ts new file mode 100644 index 0000000..0afafdc --- /dev/null +++ b/src/modules/metrics/components/lib/chart/types/Dimension.ts @@ -0,0 +1,6 @@ +enum Dimension { + X, + Y, +} + +export default Dimension; diff --git a/src/modules/metrics/components/lib/chart/utils.ts b/src/modules/metrics/components/lib/chart/utils.ts new file mode 100644 index 0000000..df721a2 --- /dev/null +++ b/src/modules/metrics/components/lib/chart/utils.ts @@ -0,0 +1,58 @@ +import { useEffect, useRef, useState } from 'react'; + +export const combineChartDimensions = (dimensions) => { + let parsedDimensions = { + marginTop: 40, + marginRight: 30, + marginBottom: 40, + marginLeft: 75, + ...dimensions, + }; + + return { + ...parsedDimensions, + boundedHeight: Math.max( + parsedDimensions.height - parsedDimensions.marginTop - parsedDimensions.marginBottom, + 0, + ), + boundedWidth: Math.max( + parsedDimensions.width - parsedDimensions.marginLeft - parsedDimensions.marginRight, + 0, + ), + }; +}; + +export const useChartDimensions = (passedSettings) => { + const ref = useRef(); + const dimensions = combineChartDimensions(passedSettings); + + const [width, changeWidth] = useState(0); + const [height, changeHeight] = useState(0); + + useEffect(() => { + if (dimensions.width && dimensions.height) return; + + const element = ref.current; + const resizeObserver = new ResizeObserver((entries) => { + if (!Array.isArray(entries)) return; + if (!entries.length) return; + + const entry = entries[0]; + + if (width !== entry.contentRect.width) changeWidth(entry.contentRect.width); + if (height !== entry.contentRect.height) changeHeight(entry.contentRect.height); + }); + + resizeObserver.observe(element); + + return () => resizeObserver.unobserve(element); + }, [passedSettings, height, width, dimensions]); + + const newSettings = combineChartDimensions({ + ...dimensions, + width: dimensions.width || width, + height: dimensions.height || height, + }); + + return [ref, newSettings]; +}; diff --git a/src/modules/metrics/data/gdl-datasets.ts b/src/modules/metrics/data/gdl-datasets.ts new file mode 100644 index 0000000..adf6d8f --- /dev/null +++ b/src/modules/metrics/data/gdl-datasets.ts @@ -0,0 +1,24 @@ +export const gdlDatasets = [ + { + value: 'development', + label: 'Human Development Index', + url: 'https://gist.githubusercontent.com/shiarella/d7cf2c2b328c89720c213bd18cf7bace/raw/1c62f7f977d344bceb26ab89e7213af303ed9ccb/gdl-development.json', + }, + { + value: 'healthcare', + label: 'Healthcare Index', + url: 'https://gist.githubusercontent.com/shiarella/5a3a7073d7b017e6c027e7113092de39/raw/dbc8c9943d0f01ccd0a2fdd2442e4577ad2c809b/gdl-health.json', + }, + { + value: 'education', + label: 'Educational Index', + url: 'https://gist.githubusercontent.com/shiarella/4453d462208a121ad7bae6411660fb3a/raw/ba250c00a98c75099adccfd8e51bc2cda8d61ce4/gdl-education.json', + }, + { + value: 'Income', + label: 'Income Index', + url: 'https://gist.githubusercontent.com/shiarella/b8b529540923e23c53252dcfd73da0d1/raw/48e1c6d105b6578c542ad665ef0de1c8dc9b3395/gdl-income.json', + }, +]; + +export const GDL_YEAR_RANGE = [1990, 2021]; diff --git a/src/modules/metrics/routes/region-id.tsx b/src/modules/metrics/routes/region-id.tsx index 073b225..59a8b64 100644 --- a/src/modules/metrics/routes/region-id.tsx +++ b/src/modules/metrics/routes/region-id.tsx @@ -1,5 +1,226 @@ +import { Box, Checkbox, FormControlLabel, Stack, Typography } from '@mui/material'; +import { Boundary, BoundarySummary } from '@nismod/irv-autopkg-client'; +import { useCallback, useEffect, useState } from 'react'; +import { defer, LoaderFunctionArgs, useLoaderData, useNavigate } from 'react-router-dom'; + +import { ParamDropdown } from '@/lib/controls/ParamDropdown'; +import { AppLink } from '@/lib/nav'; + +import Dashboard from '@/modules/metrics/components/dashboard/Dashboard'; +import { RegionSearchNavigation } from '@/modules/metrics/components/region-search/RegionSearchNavigation'; +import { fetchAllRegions, fetchRegionById } from '@/modules/metrics/data/fetch-regions'; +import { GDL_YEAR_RANGE, gdlDatasets } from '@/modules/metrics/data/gdl-datasets'; +import { useIsMobile } from '@/use-is-mobile'; + +export const loader = async ({ + request: { signal }, + params: { regionId, metricId }, +}: LoaderFunctionArgs) => { + return defer({ + regionId: regionId, + region: await fetchRegionById({ regionId }, signal), + regions: await fetchAllRegions({}, signal), + metricId: metricId, + }); +}; +loader.displayName = 'regionMetricsLoader'; +type RegionMetricsLoaderData = { + regionId: string; + region: Boundary; + regions: BoundarySummary[]; + metricId: string; +}; + +type HasData = { + data: any; +}; + export const Component = () => { - return
    Country Metrics – Region ID Page
    ; + const { regionId, region, regions, metricId } = useLoaderData() as RegionMetricsLoaderData; + + const navigate = useNavigate(); + const isMobile = useIsMobile(); + + const [chartData, setChartData] = useState(null); + const [geojson, setGeoJson] = useState(); + const [scaleAcrossYears, setScaleAcrossYears] = useState(false); + const [scaleAcrossCountries, setScaleAcrossCountries] = useState(false); + const [selectedYear, setSelectedYear] = useState(2010); + + const updateSelectedYear = (year) => { + setSelectedYear(year); + }; + + const maybeMetricSelection = gdlDatasets.find((option) => option.value === metricId); + const metricSelection = maybeMetricSelection ? maybeMetricSelection : gdlDatasets[0]; + const selectedMetricId = metricSelection.value; + + const selectedIsoCode = regionId.toUpperCase(); + const selectedCountryData = chartData?.filter((d) => d.ISO_Code === selectedIsoCode); + const yearOptions = new Set(); + + if (chartData) { + for (var i: number = GDL_YEAR_RANGE[0]; i <= GDL_YEAR_RANGE[1]; i++) { + const index = i; + selectedCountryData.forEach((d) => { + const maybeYearData = d[index]; + // falsy ok if 0 + if (maybeYearData !== undefined && maybeYearData !== null) { + yearOptions.add(index); + } + }); + } + } + + if (yearOptions.size > 0 && !yearOptions.has(selectedYear)) { + updateSelectedYear([...yearOptions].sort((a, b) => a - b)[0]); + } + + const handleMetricSelection = useCallback( + (selection: String) => { + const maybeMetricMatch = gdlDatasets.find((option) => option.value === selection); + const selectionId = maybeMetricMatch ? maybeMetricMatch.value : gdlDatasets[0].value; + if (selection != null) { + setTimeout(() => { + navigate( + `/metrics/regions/${region.name}/${selectionId}`, + { preventScrollReset: true }, // don't scroll to top on navigate + ); + }, 100); + } + }, + [navigate, region.name], + ); + + useEffect(() => { + fetch(metricSelection.url) + .then((d) => d.json()) + .then((d) => setChartData(d)); + }, [metricSelection.url]); + + const geojsonUrl = `https://gri-country-api.vercel.app/api/${regionId}/geojson/subnational`; + useEffect(() => { + fetch(geojsonUrl) + .then((d) => d.json()) + .then((d) => setGeoJson(d)); + }, [geojsonUrl]); + + const boundarySummary = regions.find( + (regionBoundarySummary) => regionBoundarySummary.name === region.name, + ); + + return ( + + + + + + + + Or browse all countries + + + + + + + handleMetricSelection(selection)} + value={selectedMetricId} + options={gdlDatasets} + /> + + + + + updateSelectedYear(selection)} + value={selectedYear} + options={[...yearOptions]} + /> + + + setScaleAcrossYears(checked)} + /> + } + /> + + setScaleAcrossCountries(checked)} + /> + } + /> + + + + + + + {chartData && geojson && geojson.data ? ( + + ) : ( +
    Loading data...
    + )} +
    +
    +
    + ); }; Component.displayName = 'SingleRegionMetricsPage'; diff --git a/src/modules/metrics/routes/regions-index.tsx b/src/modules/metrics/routes/regions-index.tsx index 7dfcc6e..59b08a6 100644 --- a/src/modules/metrics/routes/regions-index.tsx +++ b/src/modules/metrics/routes/regions-index.tsx @@ -17,10 +17,9 @@ import { import { AppLink } from '@/lib/nav'; import { LoaderData } from '@/lib/react/react-router'; +import { RegionSearchNavigation } from '@/modules/metrics/components/region-search/RegionSearchNavigation'; import { fetchAllRegions } from '@/modules/metrics/data/fetch-regions'; -import { RegionSearchNavigation } from '../components/region-search/RegionSearchNavigation'; - export const loader = async ({ request: { signal } }: LoaderFunctionArgs) => ({ regions: await fetchAllRegions({}, signal), }); From d32bf3a146769f1eaf81a6854f37943c4bee3752 Mon Sep 17 00:00:00 2001 From: Alexander Shiarella Date: Mon, 23 Sep 2024 12:44:52 +0100 Subject: [PATCH 04/12] Move gdl data from gists to public folder --- public/gdl-data/development.json | 78882 ++++++++++++++++++++ public/gdl-data/education.json | 78962 +++++++++++++++++++++ public/gdl-data/healthcare.json | 78882 ++++++++++++++++++++ public/gdl-data/income.json | 78962 +++++++++++++++++++++ src/modules/metrics/data/gdl-datasets.ts | 8 +- src/modules/metrics/routes/region-id.tsx | 1 + 6 files changed, 315693 insertions(+), 4 deletions(-) create mode 100644 public/gdl-data/development.json create mode 100644 public/gdl-data/education.json create mode 100644 public/gdl-data/healthcare.json create mode 100644 public/gdl-data/income.json diff --git a/public/gdl-data/development.json b/public/gdl-data/development.json new file mode 100644 index 0000000..ba04fc7 --- /dev/null +++ b/public/gdl-data/development.json @@ -0,0 +1,78882 @@ +[ + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "National", + "GDLCODE": "AFGt", + "Region": "Total", + "1990": 0.273, + "1991": 0.279, + "1992": 0.287, + "1993": 0.297, + "1994": 0.292, + "1995": 0.31, + "1996": 0.319, + "1997": 0.323, + "1998": 0.324, + "1999": 0.332, + "2000": 0.335, + "2001": 0.337, + "2002": 0.362, + "2003": 0.376, + "2004": 0.392, + "2005": 0.4, + "2006": 0.409, + "2007": 0.424, + "2008": 0.43, + "2009": 0.44, + "2010": 0.448, + "2011": 0.456, + "2012": 0.466, + "2013": 0.474, + "2014": 0.479, + "2015": 0.478, + "2016": 0.481, + "2017": 0.482, + "2018": 0.483, + "2019": 0.488, + "2020": 0.483, + "2021": 0.478 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr101", + "Region": "Central (Kabul Wardak Kapisa Logar Parwan Panjsher)", + "1990": 0.332, + "1991": 0.339, + "1992": 0.349, + "1993": 0.361, + "1994": 0.355, + "1995": 0.376, + "1996": 0.386, + "1997": 0.391, + "1998": 0.392, + "1999": 0.402, + "2000": 0.406, + "2001": 0.409, + "2002": 0.437, + "2003": 0.453, + "2004": 0.472, + "2005": 0.481, + "2006": 0.492, + "2007": 0.509, + "2008": 0.517, + "2009": 0.529, + "2010": 0.539, + "2011": 0.542, + "2012": 0.548, + "2013": 0.552, + "2014": 0.553, + "2015": 0.548, + "2016": 0.551, + "2017": 0.553, + "2018": 0.555, + "2019": 0.561, + "2020": 0.556, + "2021": 0.55 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr102", + "Region": "Central Highlands (Bamyan Daikundi)", + "1990": 0.281, + "1991": 0.288, + "1992": 0.297, + "1993": 0.308, + "1994": 0.302, + "1995": 0.322, + "1996": 0.332, + "1997": 0.336, + "1998": 0.337, + "1999": 0.347, + "2000": 0.35, + "2001": 0.352, + "2002": 0.379, + "2003": 0.394, + "2004": 0.412, + "2005": 0.421, + "2006": 0.43, + "2007": 0.446, + "2008": 0.452, + "2009": 0.463, + "2010": 0.472, + "2011": 0.475, + "2012": 0.48, + "2013": 0.483, + "2014": 0.483, + "2015": 0.477, + "2016": 0.479, + "2017": 0.479, + "2018": 0.48, + "2019": 0.484, + "2020": 0.479, + "2021": 0.472 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr103", + "Region": "East (Nangarhar Kunar Laghman Nooristan)", + "1990": 0.287, + "1991": 0.293, + "1992": 0.301, + "1993": 0.311, + "1994": 0.304, + "1995": 0.323, + "1996": 0.332, + "1997": 0.336, + "1998": 0.336, + "1999": 0.345, + "2000": 0.348, + "2001": 0.35, + "2002": 0.376, + "2003": 0.39, + "2004": 0.407, + "2005": 0.415, + "2006": 0.424, + "2007": 0.44, + "2008": 0.446, + "2009": 0.457, + "2010": 0.466, + "2011": 0.466, + "2012": 0.468, + "2013": 0.469, + "2014": 0.466, + "2015": 0.459, + "2016": 0.461, + "2017": 0.463, + "2018": 0.464, + "2019": 0.469, + "2020": 0.464, + "2021": 0.459 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr104", + "Region": "North (Samangan Sar-e-Pul Balkh Jawzjan Faryab)", + "1990": 0.259, + "1991": 0.265, + "1992": 0.274, + "1993": 0.284, + "1994": 0.278, + "1995": 0.297, + "1996": 0.305, + "1997": 0.31, + "1998": 0.31, + "1999": 0.319, + "2000": 0.322, + "2001": 0.324, + "2002": 0.349, + "2003": 0.362, + "2004": 0.379, + "2005": 0.386, + "2006": 0.395, + "2007": 0.41, + "2008": 0.416, + "2009": 0.425, + "2010": 0.433, + "2011": 0.449, + "2012": 0.466, + "2013": 0.48, + "2014": 0.492, + "2015": 0.497, + "2016": 0.5, + "2017": 0.501, + "2018": 0.502, + "2019": 0.507, + "2020": 0.502, + "2021": 0.497 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr105", + "Region": "North East (Baghlan Takhar Badakhshan Kunduz)", + "1990": 0.266, + "1991": 0.272, + "1992": 0.281, + "1993": 0.291, + "1994": 0.285, + "1995": 0.304, + "1996": 0.312, + "1997": 0.317, + "1998": 0.318, + "1999": 0.326, + "2000": 0.329, + "2001": 0.332, + "2002": 0.356, + "2003": 0.369, + "2004": 0.386, + "2005": 0.394, + "2006": 0.403, + "2007": 0.417, + "2008": 0.423, + "2009": 0.433, + "2010": 0.441, + "2011": 0.444, + "2012": 0.448, + "2013": 0.451, + "2014": 0.451, + "2015": 0.445, + "2016": 0.448, + "2017": 0.449, + "2018": 0.449, + "2019": 0.454, + "2020": 0.449, + "2021": 0.444 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr106", + "Region": "South (Uruzgan Helmand Zabul Nimroz Kandahar)", + "1990": 0.213, + "1991": 0.218, + "1992": 0.224, + "1993": 0.231, + "1994": 0.226, + "1995": 0.24, + "1996": 0.246, + "1997": 0.249, + "1998": 0.25, + "1999": 0.256, + "2000": 0.258, + "2001": 0.26, + "2002": 0.279, + "2003": 0.289, + "2004": 0.301, + "2005": 0.307, + "2006": 0.314, + "2007": 0.326, + "2008": 0.33, + "2009": 0.338, + "2010": 0.345, + "2011": 0.361, + "2012": 0.378, + "2013": 0.392, + "2014": 0.402, + "2015": 0.407, + "2016": 0.409, + "2017": 0.411, + "2018": 0.411, + "2019": 0.416, + "2020": 0.412, + "2021": 0.407 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr107", + "Region": "South East (Ghazni Paktya Paktika Khost)", + "1990": 0.274, + "1991": 0.28, + "1992": 0.288, + "1993": 0.299, + "1994": 0.294, + "1995": 0.312, + "1996": 0.321, + "1997": 0.325, + "1998": 0.326, + "1999": 0.335, + "2000": 0.338, + "2001": 0.34, + "2002": 0.365, + "2003": 0.378, + "2004": 0.394, + "2005": 0.402, + "2006": 0.411, + "2007": 0.426, + "2008": 0.433, + "2009": 0.443, + "2010": 0.451, + "2011": 0.459, + "2012": 0.468, + "2013": 0.475, + "2014": 0.479, + "2015": 0.478, + "2016": 0.48, + "2017": 0.481, + "2018": 0.482, + "2019": 0.487, + "2020": 0.481, + "2021": 0.476 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr108", + "Region": "West (Ghor Herat Badghis Farah)", + "1990": 0.252, + "1991": 0.259, + "1992": 0.267, + "1993": 0.277, + "1994": 0.272, + "1995": 0.29, + "1996": 0.298, + "1997": 0.302, + "1998": 0.303, + "1999": 0.312, + "2000": 0.315, + "2001": 0.317, + "2002": 0.341, + "2003": 0.353, + "2004": 0.37, + "2005": 0.377, + "2006": 0.386, + "2007": 0.4, + "2008": 0.405, + "2009": 0.415, + "2010": 0.423, + "2011": 0.43, + "2012": 0.439, + "2013": 0.446, + "2014": 0.45, + "2015": 0.448, + "2016": 0.451, + "2017": 0.452, + "2018": 0.452, + "2019": 0.457, + "2020": 0.452, + "2021": 0.447 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "National", + "GDLCODE": "ALBt", + "Region": "Total", + "1990": 0.647, + "1991": 0.629, + "1992": 0.614, + "1993": 0.617, + "1994": 0.624, + "1995": 0.634, + "1996": 0.645, + "1997": 0.642, + "1998": 0.657, + "1999": 0.669, + "2000": 0.677, + "2001": 0.684, + "2002": 0.689, + "2003": 0.696, + "2004": 0.7, + "2005": 0.711, + "2006": 0.718, + "2007": 0.73, + "2008": 0.736, + "2009": 0.741, + "2010": 0.754, + "2011": 0.766, + "2012": 0.778, + "2013": 0.785, + "2014": 0.792, + "2015": 0.795, + "2016": 0.798, + "2017": 0.802, + "2018": 0.806, + "2019": 0.81, + "2020": 0.794, + "2021": 0.796 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr201", + "Region": " Berat", + "1990": 0.647, + "1991": 0.63, + "1992": 0.615, + "1993": 0.618, + "1994": 0.624, + "1995": 0.635, + "1996": 0.645, + "1997": 0.643, + "1998": 0.658, + "1999": 0.669, + "2000": 0.677, + "2001": 0.685, + "2002": 0.689, + "2003": 0.696, + "2004": 0.701, + "2005": 0.712, + "2006": 0.719, + "2007": 0.73, + "2008": 0.737, + "2009": 0.742, + "2010": 0.753, + "2011": 0.764, + "2012": 0.774, + "2013": 0.779, + "2014": 0.784, + "2015": 0.786, + "2016": 0.786, + "2017": 0.789, + "2018": 0.793, + "2019": 0.797, + "2020": 0.781, + "2021": 0.783 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr202", + "Region": " Diber", + "1990": 0.632, + "1991": 0.615, + "1992": 0.6, + "1993": 0.603, + "1994": 0.61, + "1995": 0.619, + "1996": 0.63, + "1997": 0.628, + "1998": 0.642, + "1999": 0.654, + "2000": 0.661, + "2001": 0.669, + "2002": 0.673, + "2003": 0.68, + "2004": 0.685, + "2005": 0.695, + "2006": 0.695, + "2007": 0.7, + "2008": 0.699, + "2009": 0.697, + "2010": 0.71, + "2011": 0.722, + "2012": 0.734, + "2013": 0.742, + "2014": 0.749, + "2015": 0.753, + "2016": 0.756, + "2017": 0.761, + "2018": 0.765, + "2019": 0.769, + "2020": 0.754, + "2021": 0.756 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr203", + "Region": " Durres", + "1990": 0.64, + "1991": 0.623, + "1992": 0.608, + "1993": 0.611, + "1994": 0.618, + "1995": 0.628, + "1996": 0.638, + "1997": 0.636, + "1998": 0.651, + "1999": 0.662, + "2000": 0.67, + "2001": 0.678, + "2002": 0.682, + "2003": 0.69, + "2004": 0.694, + "2005": 0.704, + "2006": 0.711, + "2007": 0.722, + "2008": 0.728, + "2009": 0.732, + "2010": 0.747, + "2011": 0.762, + "2012": 0.775, + "2013": 0.785, + "2014": 0.794, + "2015": 0.799, + "2016": 0.803, + "2017": 0.809, + "2018": 0.813, + "2019": 0.818, + "2020": 0.801, + "2021": 0.803 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr204", + "Region": " Elbasan", + "1990": 0.64, + "1991": 0.623, + "1992": 0.607, + "1993": 0.611, + "1994": 0.617, + "1995": 0.627, + "1996": 0.638, + "1997": 0.635, + "1998": 0.65, + "1999": 0.662, + "2000": 0.67, + "2001": 0.677, + "2002": 0.682, + "2003": 0.689, + "2004": 0.693, + "2005": 0.704, + "2006": 0.707, + "2007": 0.713, + "2008": 0.715, + "2009": 0.715, + "2010": 0.73, + "2011": 0.744, + "2012": 0.757, + "2013": 0.767, + "2014": 0.776, + "2015": 0.781, + "2016": 0.785, + "2017": 0.791, + "2018": 0.794, + "2019": 0.799, + "2020": 0.783, + "2021": 0.785 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr205", + "Region": " Fier", + "1990": 0.636, + "1991": 0.618, + "1992": 0.603, + "1993": 0.607, + "1994": 0.613, + "1995": 0.623, + "1996": 0.634, + "1997": 0.631, + "1998": 0.646, + "1999": 0.658, + "2000": 0.666, + "2001": 0.674, + "2002": 0.678, + "2003": 0.685, + "2004": 0.69, + "2005": 0.7, + "2006": 0.706, + "2007": 0.717, + "2008": 0.722, + "2009": 0.726, + "2010": 0.737, + "2011": 0.748, + "2012": 0.758, + "2013": 0.763, + "2014": 0.769, + "2015": 0.77, + "2016": 0.771, + "2017": 0.774, + "2018": 0.778, + "2019": 0.782, + "2020": 0.767, + "2021": 0.769 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr206", + "Region": " Gjirokaster", + "1990": 0.665, + "1991": 0.648, + "1992": 0.631, + "1993": 0.634, + "1994": 0.64, + "1995": 0.651, + "1996": 0.661, + "1997": 0.659, + "1998": 0.674, + "1999": 0.685, + "2000": 0.693, + "2001": 0.701, + "2002": 0.705, + "2003": 0.713, + "2004": 0.717, + "2005": 0.728, + "2006": 0.731, + "2007": 0.738, + "2008": 0.739, + "2009": 0.74, + "2010": 0.753, + "2011": 0.766, + "2012": 0.777, + "2013": 0.785, + "2014": 0.792, + "2015": 0.795, + "2016": 0.798, + "2017": 0.802, + "2018": 0.806, + "2019": 0.811, + "2020": 0.795, + "2021": 0.797 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr207", + "Region": " Korce", + "1990": 0.644, + "1991": 0.627, + "1992": 0.611, + "1993": 0.614, + "1994": 0.621, + "1995": 0.631, + "1996": 0.641, + "1997": 0.639, + "1998": 0.654, + "1999": 0.665, + "2000": 0.673, + "2001": 0.681, + "2002": 0.685, + "2003": 0.692, + "2004": 0.697, + "2005": 0.707, + "2006": 0.714, + "2007": 0.726, + "2008": 0.732, + "2009": 0.737, + "2010": 0.75, + "2011": 0.762, + "2012": 0.773, + "2013": 0.781, + "2014": 0.788, + "2015": 0.791, + "2016": 0.793, + "2017": 0.798, + "2018": 0.801, + "2019": 0.806, + "2020": 0.79, + "2021": 0.792 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr208", + "Region": " Kukes", + "1990": 0.623, + "1991": 0.606, + "1992": 0.592, + "1993": 0.595, + "1994": 0.601, + "1995": 0.611, + "1996": 0.621, + "1997": 0.619, + "1998": 0.634, + "1999": 0.645, + "2000": 0.652, + "2001": 0.66, + "2002": 0.664, + "2003": 0.671, + "2004": 0.675, + "2005": 0.685, + "2006": 0.693, + "2007": 0.705, + "2008": 0.711, + "2009": 0.717, + "2010": 0.727, + "2011": 0.737, + "2012": 0.745, + "2013": 0.75, + "2014": 0.754, + "2015": 0.755, + "2016": 0.756, + "2017": 0.758, + "2018": 0.762, + "2019": 0.766, + "2020": 0.752, + "2021": 0.754 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr209", + "Region": " Lezhe", + "1990": 0.619, + "1991": 0.602, + "1992": 0.587, + "1993": 0.59, + "1994": 0.597, + "1995": 0.607, + "1996": 0.617, + "1997": 0.614, + "1998": 0.629, + "1999": 0.64, + "2000": 0.648, + "2001": 0.655, + "2002": 0.659, + "2003": 0.666, + "2004": 0.671, + "2005": 0.681, + "2006": 0.69, + "2007": 0.702, + "2008": 0.71, + "2009": 0.717, + "2010": 0.729, + "2011": 0.742, + "2012": 0.753, + "2013": 0.76, + "2014": 0.767, + "2015": 0.77, + "2016": 0.772, + "2017": 0.776, + "2018": 0.78, + "2019": 0.784, + "2020": 0.769, + "2021": 0.771 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr210", + "Region": " Shkoder", + "1990": 0.648, + "1991": 0.63, + "1992": 0.615, + "1993": 0.618, + "1994": 0.625, + "1995": 0.635, + "1996": 0.645, + "1997": 0.643, + "1998": 0.658, + "1999": 0.669, + "2000": 0.677, + "2001": 0.685, + "2002": 0.689, + "2003": 0.696, + "2004": 0.701, + "2005": 0.712, + "2006": 0.716, + "2007": 0.725, + "2008": 0.729, + "2009": 0.731, + "2010": 0.744, + "2011": 0.756, + "2012": 0.767, + "2013": 0.775, + "2014": 0.782, + "2015": 0.785, + "2016": 0.787, + "2017": 0.791, + "2018": 0.795, + "2019": 0.799, + "2020": 0.783, + "2021": 0.785 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr211", + "Region": " Tirana", + "1990": 0.672, + "1991": 0.654, + "1992": 0.638, + "1993": 0.642, + "1994": 0.648, + "1995": 0.659, + "1996": 0.67, + "1997": 0.667, + "1998": 0.683, + "1999": 0.694, + "2000": 0.703, + "2001": 0.711, + "2002": 0.715, + "2003": 0.723, + "2004": 0.727, + "2005": 0.738, + "2006": 0.748, + "2007": 0.763, + "2008": 0.772, + "2009": 0.78, + "2010": 0.792, + "2011": 0.803, + "2012": 0.812, + "2013": 0.818, + "2014": 0.823, + "2015": 0.824, + "2016": 0.825, + "2017": 0.828, + "2018": 0.832, + "2019": 0.837, + "2020": 0.82, + "2021": 0.822 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr212", + "Region": " Vlore", + "1990": 0.658, + "1991": 0.641, + "1992": 0.625, + "1993": 0.629, + "1994": 0.635, + "1995": 0.645, + "1996": 0.656, + "1997": 0.654, + "1998": 0.669, + "1999": 0.681, + "2000": 0.689, + "2001": 0.697, + "2002": 0.701, + "2003": 0.708, + "2004": 0.713, + "2005": 0.724, + "2006": 0.729, + "2007": 0.738, + "2008": 0.742, + "2009": 0.745, + "2010": 0.759, + "2011": 0.772, + "2012": 0.784, + "2013": 0.792, + "2014": 0.799, + "2015": 0.802, + "2016": 0.805, + "2017": 0.81, + "2018": 0.814, + "2019": 0.818, + "2020": 0.802, + "2021": 0.804 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "National", + "GDLCODE": "DZAt", + "Region": "Total", + "1990": 0.591, + "1991": 0.594, + "1992": 0.599, + "1993": 0.601, + "1994": 0.602, + "1995": 0.606, + "1996": 0.617, + "1997": 0.624, + "1998": 0.633, + "1999": 0.641, + "2000": 0.649, + "2001": 0.655, + "2002": 0.664, + "2003": 0.67, + "2004": 0.678, + "2005": 0.685, + "2006": 0.69, + "2007": 0.697, + "2008": 0.705, + "2009": 0.714, + "2010": 0.721, + "2011": 0.727, + "2012": 0.729, + "2013": 0.731, + "2014": 0.735, + "2015": 0.74, + "2016": 0.743, + "2017": 0.744, + "2018": 0.745, + "2019": 0.748, + "2020": 0.736, + "2021": 0.745 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr104", + "Region": "Hauts Plateaux Centre (Djelfa, Laghouat, MSila)", + "1990": 0.562, + "1991": 0.565, + "1992": 0.569, + "1993": 0.57, + "1994": 0.571, + "1995": 0.574, + "1996": 0.585, + "1997": 0.592, + "1998": 0.6, + "1999": 0.608, + "2000": 0.615, + "2001": 0.621, + "2002": 0.629, + "2003": 0.636, + "2004": 0.644, + "2005": 0.65, + "2006": 0.656, + "2007": 0.662, + "2008": 0.671, + "2009": 0.68, + "2010": 0.687, + "2011": 0.693, + "2012": 0.695, + "2013": 0.697, + "2014": 0.703, + "2015": 0.709, + "2016": 0.714, + "2017": 0.716, + "2018": 0.72, + "2019": 0.724, + "2020": 0.712, + "2021": 0.722 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr105", + "Region": "Hauts Plateaux Est (Setif, Batna, Khenchela, Bordj Bou Arreridj, Oum El Bouaghi, Tebessa)", + "1990": 0.587, + "1991": 0.589, + "1992": 0.594, + "1993": 0.596, + "1994": 0.596, + "1995": 0.6, + "1996": 0.611, + "1997": 0.618, + "1998": 0.626, + "1999": 0.635, + "2000": 0.642, + "2001": 0.648, + "2002": 0.657, + "2003": 0.664, + "2004": 0.673, + "2005": 0.68, + "2006": 0.686, + "2007": 0.694, + "2008": 0.702, + "2009": 0.712, + "2010": 0.72, + "2011": 0.726, + "2012": 0.729, + "2013": 0.732, + "2014": 0.734, + "2015": 0.737, + "2016": 0.738, + "2017": 0.737, + "2018": 0.737, + "2019": 0.737, + "2020": 0.725, + "2021": 0.735 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr106", + "Region": "Hauts Plateaux Ouest (Tiaret, Saida, Tissemsilt, Naama, El Bayadh)", + "1990": 0.573, + "1991": 0.575, + "1992": 0.58, + "1993": 0.582, + "1994": 0.582, + "1995": 0.586, + "1996": 0.597, + "1997": 0.604, + "1998": 0.612, + "1999": 0.62, + "2000": 0.627, + "2001": 0.634, + "2002": 0.642, + "2003": 0.649, + "2004": 0.656, + "2005": 0.663, + "2006": 0.668, + "2007": 0.675, + "2008": 0.683, + "2009": 0.692, + "2010": 0.7, + "2011": 0.706, + "2012": 0.707, + "2013": 0.71, + "2014": 0.715, + "2015": 0.72, + "2016": 0.724, + "2017": 0.726, + "2018": 0.728, + "2019": 0.732, + "2020": 0.72, + "2021": 0.729 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr101", + "Region": "Nord Centre (Alger, Blida, Boumerdes, Tipaza, Bouira, Medea, Tizi-Ouzou, Bejaia, Chlef, Ain Defla)", + "1990": 0.615, + "1991": 0.618, + "1992": 0.623, + "1993": 0.625, + "1994": 0.627, + "1995": 0.631, + "1996": 0.642, + "1997": 0.65, + "1998": 0.659, + "1999": 0.668, + "2000": 0.675, + "2001": 0.682, + "2002": 0.691, + "2003": 0.696, + "2004": 0.703, + "2005": 0.708, + "2006": 0.712, + "2007": 0.717, + "2008": 0.724, + "2009": 0.732, + "2010": 0.738, + "2011": 0.742, + "2012": 0.743, + "2013": 0.744, + "2014": 0.75, + "2015": 0.756, + "2016": 0.76, + "2017": 0.762, + "2018": 0.765, + "2019": 0.769, + "2020": 0.757, + "2021": 0.767 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr102", + "Region": "Nord Est (Annaba, Constantine, Skikda, Jijel, Mila, Souk Ahras, El Tarf, Guelma)", + "1990": 0.594, + "1991": 0.597, + "1992": 0.602, + "1993": 0.604, + "1994": 0.605, + "1995": 0.609, + "1996": 0.621, + "1997": 0.628, + "1998": 0.637, + "1999": 0.645, + "2000": 0.653, + "2001": 0.659, + "2002": 0.668, + "2003": 0.676, + "2004": 0.685, + "2005": 0.693, + "2006": 0.7, + "2007": 0.708, + "2008": 0.717, + "2009": 0.727, + "2010": 0.736, + "2011": 0.743, + "2012": 0.746, + "2013": 0.75, + "2014": 0.75, + "2015": 0.751, + "2016": 0.75, + "2017": 0.747, + "2018": 0.745, + "2019": 0.744, + "2020": 0.731, + "2021": 0.741 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr103", + "Region": "Nord Ouest (Oran, Tlemcen, Mostaganem, Ain Temouchent, Relizane, Sidi Bel Abbes, Mascara)", + "1990": 0.572, + "1991": 0.575, + "1992": 0.58, + "1993": 0.581, + "1994": 0.582, + "1995": 0.586, + "1996": 0.597, + "1997": 0.604, + "1998": 0.612, + "1999": 0.621, + "2000": 0.628, + "2001": 0.634, + "2002": 0.642, + "2003": 0.65, + "2004": 0.658, + "2005": 0.666, + "2006": 0.672, + "2007": 0.679, + "2008": 0.688, + "2009": 0.698, + "2010": 0.706, + "2011": 0.712, + "2012": 0.715, + "2013": 0.718, + "2014": 0.723, + "2015": 0.728, + "2016": 0.732, + "2017": 0.734, + "2018": 0.736, + "2019": 0.739, + "2020": 0.727, + "2021": 0.737 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr107", + "Region": "Sud (Bechar, Tindouf, Adrar, Ghardaia, Biskra, El Oued, Ouargla, Tamanrasset,Illizi)", + "1990": 0.584, + "1991": 0.586, + "1992": 0.591, + "1993": 0.593, + "1994": 0.594, + "1995": 0.598, + "1996": 0.609, + "1997": 0.616, + "1998": 0.624, + "1999": 0.633, + "2000": 0.64, + "2001": 0.647, + "2002": 0.655, + "2003": 0.662, + "2004": 0.669, + "2005": 0.676, + "2006": 0.681, + "2007": 0.687, + "2008": 0.695, + "2009": 0.704, + "2010": 0.711, + "2011": 0.717, + "2012": 0.718, + "2013": 0.721, + "2014": 0.725, + "2015": 0.73, + "2016": 0.734, + "2017": 0.735, + "2018": 0.737, + "2019": 0.74, + "2020": 0.727, + "2021": 0.737 + }, + { + "Country": "Andorra", + "Continent": "Europe", + "ISO_Code": "AND", + "Level": "National", + "GDLCODE": "ANDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.818, + "2001": 0.825, + "2002": 0.832, + "2003": 0.841, + "2004": 0.833, + "2005": 0.833, + "2006": 0.848, + "2007": 0.847, + "2008": 0.85, + "2009": 0.848, + "2010": 0.848, + "2011": 0.849, + "2012": 0.869, + "2013": 0.864, + "2014": 0.871, + "2015": 0.867, + "2016": 0.871, + "2017": 0.868, + "2018": 0.872, + "2019": 0.873, + "2020": 0.848, + "2021": 0.858 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "National", + "GDLCODE": "AGOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.364, + "2000": 0.375, + "2001": 0.386, + "2002": 0.403, + "2003": 0.42, + "2004": 0.433, + "2005": 0.447, + "2006": 0.459, + "2007": 0.475, + "2008": 0.486, + "2009": 0.5, + "2010": 0.51, + "2011": 0.526, + "2012": 0.541, + "2013": 0.552, + "2014": 0.563, + "2015": 0.582, + "2016": 0.596, + "2017": 0.597, + "2018": 0.595, + "2019": 0.595, + "2020": 0.59, + "2021": 0.586 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr218", + "Region": " Bengo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.311, + "2000": 0.321, + "2001": 0.331, + "2002": 0.346, + "2003": 0.362, + "2004": 0.374, + "2005": 0.387, + "2006": 0.398, + "2007": 0.413, + "2008": 0.423, + "2009": 0.436, + "2010": 0.445, + "2011": 0.461, + "2012": 0.487, + "2013": 0.51, + "2014": 0.534, + "2015": 0.563, + "2016": 0.589, + "2017": 0.59, + "2018": 0.588, + "2019": 0.587, + "2020": 0.582, + "2021": 0.579 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr209", + "Region": " Benguela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.372, + "2000": 0.383, + "2001": 0.394, + "2002": 0.41, + "2003": 0.427, + "2004": 0.44, + "2005": 0.454, + "2006": 0.466, + "2007": 0.482, + "2008": 0.493, + "2009": 0.507, + "2010": 0.517, + "2011": 0.533, + "2012": 0.535, + "2013": 0.534, + "2014": 0.534, + "2015": 0.539, + "2016": 0.539, + "2017": 0.54, + "2018": 0.538, + "2019": 0.538, + "2020": 0.533, + "2021": 0.529 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr211", + "Region": " Bie", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.294, + "2000": 0.305, + "2001": 0.316, + "2002": 0.331, + "2003": 0.347, + "2004": 0.358, + "2005": 0.372, + "2006": 0.383, + "2007": 0.398, + "2008": 0.409, + "2009": 0.422, + "2010": 0.431, + "2011": 0.447, + "2012": 0.461, + "2013": 0.473, + "2014": 0.485, + "2015": 0.499, + "2016": 0.511, + "2017": 0.511, + "2018": 0.51, + "2019": 0.509, + "2020": 0.504, + "2021": 0.501 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr201", + "Region": " Cabinda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.401, + "2000": 0.413, + "2001": 0.425, + "2002": 0.442, + "2003": 0.461, + "2004": 0.474, + "2005": 0.489, + "2006": 0.502, + "2007": 0.519, + "2008": 0.532, + "2009": 0.547, + "2010": 0.558, + "2011": 0.575, + "2012": 0.598, + "2013": 0.618, + "2014": 0.638, + "2015": 0.667, + "2016": 0.692, + "2017": 0.693, + "2018": 0.692, + "2019": 0.691, + "2020": 0.685, + "2021": 0.681 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr216", + "Region": " Cunene", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.308, + "2000": 0.318, + "2001": 0.328, + "2002": 0.343, + "2003": 0.359, + "2004": 0.37, + "2005": 0.383, + "2006": 0.394, + "2007": 0.409, + "2008": 0.42, + "2009": 0.433, + "2010": 0.442, + "2011": 0.456, + "2012": 0.473, + "2013": 0.486, + "2014": 0.499, + "2015": 0.516, + "2016": 0.529, + "2017": 0.53, + "2018": 0.528, + "2019": 0.527, + "2020": 0.522, + "2021": 0.519 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr210", + "Region": " Huambo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.317, + "2000": 0.327, + "2001": 0.338, + "2002": 0.353, + "2003": 0.37, + "2004": 0.382, + "2005": 0.395, + "2006": 0.407, + "2007": 0.422, + "2008": 0.433, + "2009": 0.446, + "2010": 0.456, + "2011": 0.472, + "2012": 0.487, + "2013": 0.5, + "2014": 0.513, + "2015": 0.531, + "2016": 0.545, + "2017": 0.545, + "2018": 0.544, + "2019": 0.543, + "2020": 0.539, + "2021": 0.535 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr215", + "Region": " Huila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.35, + "2000": 0.361, + "2001": 0.372, + "2002": 0.388, + "2003": 0.405, + "2004": 0.417, + "2005": 0.431, + "2006": 0.442, + "2007": 0.458, + "2008": 0.469, + "2009": 0.483, + "2010": 0.492, + "2011": 0.508, + "2012": 0.513, + "2013": 0.515, + "2014": 0.517, + "2015": 0.524, + "2016": 0.526, + "2017": 0.526, + "2018": 0.525, + "2019": 0.524, + "2020": 0.52, + "2021": 0.516 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr213", + "Region": " Kuando Kubango", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.257, + "2000": 0.267, + "2001": 0.277, + "2002": 0.292, + "2003": 0.306, + "2004": 0.317, + "2005": 0.329, + "2006": 0.339, + "2007": 0.353, + "2008": 0.363, + "2009": 0.375, + "2010": 0.384, + "2011": 0.399, + "2012": 0.423, + "2013": 0.445, + "2014": 0.467, + "2015": 0.493, + "2016": 0.517, + "2017": 0.518, + "2018": 0.516, + "2019": 0.515, + "2020": 0.511, + "2021": 0.507 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr205", + "Region": " Kuanza Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.301, + "2000": 0.312, + "2001": 0.322, + "2002": 0.338, + "2003": 0.353, + "2004": 0.365, + "2005": 0.379, + "2006": 0.39, + "2007": 0.405, + "2008": 0.416, + "2009": 0.429, + "2010": 0.438, + "2011": 0.454, + "2012": 0.474, + "2013": 0.492, + "2014": 0.51, + "2015": 0.532, + "2016": 0.552, + "2017": 0.553, + "2018": 0.551, + "2019": 0.55, + "2020": 0.546, + "2021": 0.542 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr206", + "Region": " Kuanza Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.274, + "2000": 0.283, + "2001": 0.293, + "2002": 0.306, + "2003": 0.32, + "2004": 0.331, + "2005": 0.343, + "2006": 0.352, + "2007": 0.366, + "2008": 0.375, + "2009": 0.387, + "2010": 0.395, + "2011": 0.408, + "2012": 0.419, + "2013": 0.428, + "2014": 0.437, + "2015": 0.45, + "2016": 0.459, + "2017": 0.46, + "2018": 0.459, + "2019": 0.458, + "2020": 0.454, + "2021": 0.451 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr204", + "Region": " Luanda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.46, + "2000": 0.472, + "2001": 0.485, + "2002": 0.503, + "2003": 0.523, + "2004": 0.537, + "2005": 0.553, + "2006": 0.567, + "2007": 0.585, + "2008": 0.598, + "2009": 0.614, + "2010": 0.625, + "2011": 0.643, + "2012": 0.657, + "2013": 0.666, + "2014": 0.677, + "2015": 0.697, + "2016": 0.713, + "2017": 0.714, + "2018": 0.713, + "2019": 0.712, + "2020": 0.707, + "2021": 0.702 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr208", + "Region": " Lunda Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.286, + "2000": 0.297, + "2001": 0.308, + "2002": 0.323, + "2003": 0.338, + "2004": 0.35, + "2005": 0.363, + "2006": 0.374, + "2007": 0.389, + "2008": 0.399, + "2009": 0.412, + "2010": 0.421, + "2011": 0.437, + "2012": 0.457, + "2013": 0.474, + "2014": 0.491, + "2015": 0.512, + "2016": 0.532, + "2017": 0.532, + "2018": 0.531, + "2019": 0.53, + "2020": 0.525, + "2021": 0.521 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr217", + "Region": " Lunda Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.29, + "2000": 0.301, + "2001": 0.313, + "2002": 0.33, + "2003": 0.346, + "2004": 0.358, + "2005": 0.372, + "2006": 0.384, + "2007": 0.4, + "2008": 0.411, + "2009": 0.425, + "2010": 0.435, + "2011": 0.452, + "2012": 0.481, + "2013": 0.507, + "2014": 0.533, + "2015": 0.564, + "2016": 0.592, + "2017": 0.593, + "2018": 0.591, + "2019": 0.59, + "2020": 0.585, + "2021": 0.581 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr207", + "Region": " Malange", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.322, + "2000": 0.334, + "2001": 0.346, + "2002": 0.362, + "2003": 0.379, + "2004": 0.391, + "2005": 0.405, + "2006": 0.417, + "2007": 0.434, + "2008": 0.445, + "2009": 0.459, + "2010": 0.469, + "2011": 0.486, + "2012": 0.505, + "2013": 0.522, + "2014": 0.539, + "2015": 0.559, + "2016": 0.578, + "2017": 0.578, + "2018": 0.577, + "2019": 0.576, + "2020": 0.571, + "2021": 0.567 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr212", + "Region": " Moxico", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.306, + "2000": 0.317, + "2001": 0.327, + "2002": 0.343, + "2003": 0.358, + "2004": 0.369, + "2005": 0.382, + "2006": 0.393, + "2007": 0.408, + "2008": 0.419, + "2009": 0.432, + "2010": 0.441, + "2011": 0.456, + "2012": 0.469, + "2013": 0.479, + "2014": 0.489, + "2015": 0.503, + "2016": 0.514, + "2017": 0.515, + "2018": 0.513, + "2019": 0.512, + "2020": 0.508, + "2021": 0.504 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr214", + "Region": " Namibe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.386, + "2000": 0.398, + "2001": 0.41, + "2002": 0.427, + "2003": 0.445, + "2004": 0.459, + "2005": 0.474, + "2006": 0.486, + "2007": 0.503, + "2008": 0.515, + "2009": 0.53, + "2010": 0.541, + "2011": 0.558, + "2012": 0.566, + "2013": 0.571, + "2014": 0.576, + "2015": 0.587, + "2016": 0.593, + "2017": 0.594, + "2018": 0.592, + "2019": 0.592, + "2020": 0.587, + "2021": 0.582 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr203", + "Region": " Uige", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.348, + "2000": 0.359, + "2001": 0.37, + "2002": 0.386, + "2003": 0.403, + "2004": 0.416, + "2005": 0.43, + "2006": 0.441, + "2007": 0.457, + "2008": 0.468, + "2009": 0.482, + "2010": 0.492, + "2011": 0.508, + "2012": 0.518, + "2013": 0.525, + "2014": 0.533, + "2015": 0.545, + "2016": 0.552, + "2017": 0.552, + "2018": 0.551, + "2019": 0.55, + "2020": 0.545, + "2021": 0.541 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr202", + "Region": " Zaire", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.336, + "2000": 0.347, + "2001": 0.359, + "2002": 0.375, + "2003": 0.391, + "2004": 0.404, + "2005": 0.418, + "2006": 0.429, + "2007": 0.445, + "2008": 0.456, + "2009": 0.47, + "2010": 0.48, + "2011": 0.496, + "2012": 0.522, + "2013": 0.545, + "2014": 0.568, + "2015": 0.598, + "2016": 0.626, + "2017": 0.627, + "2018": 0.626, + "2019": 0.625, + "2020": 0.62, + "2021": 0.615 + }, + { + "Country": "Antigua and Barbuda", + "Continent": "America", + "ISO_Code": "ATG", + "Level": "National", + "GDLCODE": "ATGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": 0.802, + "2008": 0.801, + "2009": 0.795, + "2010": 0.79, + "2011": 0.783, + "2012": 0.787, + "2013": 0.787, + "2014": 0.789, + "2015": 0.791, + "2016": 0.794, + "2017": 0.795, + "2018": 0.798, + "2019": 0.8, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "National", + "GDLCODE": "ARGt", + "Region": "Total", + "1990": 0.723, + "1991": 0.73, + "1992": 0.735, + "1993": 0.739, + "1994": 0.744, + "1995": 0.745, + "1996": 0.751, + "1997": 0.756, + "1998": 0.762, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.793, + "2004": 0.798, + "2005": 0.802, + "2006": 0.814, + "2007": 0.817, + "2008": 0.825, + "2009": 0.827, + "2010": 0.834, + "2011": 0.841, + "2012": 0.843, + "2013": 0.845, + "2014": 0.846, + "2015": 0.848, + "2016": 0.847, + "2017": 0.851, + "2018": 0.85, + "2019": 0.852, + "2020": 0.84, + "2021": 0.842 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr104", + "Region": "Cuyo", + "1990": 0.727, + "1991": 0.734, + "1992": 0.738, + "1993": 0.743, + "1994": 0.748, + "1995": 0.749, + "1996": 0.754, + "1997": 0.76, + "1998": 0.766, + "1999": 0.776, + "2000": 0.783, + "2001": 0.788, + "2002": 0.788, + "2003": 0.796, + "2004": 0.801, + "2005": 0.805, + "2006": 0.817, + "2007": 0.821, + "2008": 0.828, + "2009": 0.831, + "2010": 0.837, + "2011": 0.845, + "2012": 0.846, + "2013": 0.847, + "2014": 0.848, + "2015": 0.85, + "2016": 0.848, + "2017": 0.852, + "2018": 0.85, + "2019": 0.852, + "2020": 0.839, + "2021": 0.841 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr101", + "Region": "Gran Buenos Aires", + "1990": 0.725, + "1991": 0.732, + "1992": 0.737, + "1993": 0.741, + "1994": 0.746, + "1995": 0.747, + "1996": 0.753, + "1997": 0.758, + "1998": 0.764, + "1999": 0.775, + "2000": 0.781, + "2001": 0.786, + "2002": 0.786, + "2003": 0.794, + "2004": 0.8, + "2005": 0.804, + "2006": 0.816, + "2007": 0.819, + "2008": 0.827, + "2009": 0.829, + "2010": 0.836, + "2011": 0.844, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.85, + "2016": 0.849, + "2017": 0.853, + "2018": 0.852, + "2019": 0.854, + "2020": 0.842, + "2021": 0.844 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr103", + "Region": "NEA", + "1990": 0.702, + "1991": 0.709, + "1992": 0.714, + "1993": 0.718, + "1994": 0.723, + "1995": 0.724, + "1996": 0.729, + "1997": 0.734, + "1998": 0.74, + "1999": 0.751, + "2000": 0.757, + "2001": 0.762, + "2002": 0.762, + "2003": 0.77, + "2004": 0.775, + "2005": 0.779, + "2006": 0.79, + "2007": 0.794, + "2008": 0.801, + "2009": 0.803, + "2010": 0.81, + "2011": 0.818, + "2012": 0.82, + "2013": 0.823, + "2014": 0.826, + "2015": 0.829, + "2016": 0.829, + "2017": 0.834, + "2018": 0.835, + "2019": 0.838, + "2020": 0.827, + "2021": 0.829 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr102", + "Region": "NOA", + "1990": 0.716, + "1991": 0.723, + "1992": 0.728, + "1993": 0.732, + "1994": 0.738, + "1995": 0.738, + "1996": 0.744, + "1997": 0.749, + "1998": 0.755, + "1999": 0.766, + "2000": 0.772, + "2001": 0.777, + "2002": 0.777, + "2003": 0.785, + "2004": 0.79, + "2005": 0.794, + "2006": 0.806, + "2007": 0.81, + "2008": 0.817, + "2009": 0.819, + "2010": 0.826, + "2011": 0.834, + "2012": 0.836, + "2013": 0.84, + "2014": 0.842, + "2015": 0.846, + "2016": 0.846, + "2017": 0.851, + "2018": 0.852, + "2019": 0.854, + "2020": 0.843, + "2021": 0.845 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr105", + "Region": "Pampeana", + "1990": 0.727, + "1991": 0.734, + "1992": 0.738, + "1993": 0.743, + "1994": 0.748, + "1995": 0.749, + "1996": 0.755, + "1997": 0.76, + "1998": 0.766, + "1999": 0.776, + "2000": 0.783, + "2001": 0.788, + "2002": 0.789, + "2003": 0.796, + "2004": 0.802, + "2005": 0.805, + "2006": 0.818, + "2007": 0.821, + "2008": 0.829, + "2009": 0.831, + "2010": 0.838, + "2011": 0.845, + "2012": 0.846, + "2013": 0.847, + "2014": 0.848, + "2015": 0.85, + "2016": 0.848, + "2017": 0.851, + "2018": 0.85, + "2019": 0.852, + "2020": 0.839, + "2021": 0.841 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr106", + "Region": "Patagonia", + "1990": 0.729, + "1991": 0.736, + "1992": 0.741, + "1993": 0.745, + "1994": 0.75, + "1995": 0.751, + "1996": 0.757, + "1997": 0.762, + "1998": 0.768, + "1999": 0.779, + "2000": 0.785, + "2001": 0.79, + "2002": 0.791, + "2003": 0.799, + "2004": 0.804, + "2005": 0.808, + "2006": 0.82, + "2007": 0.824, + "2008": 0.831, + "2009": 0.834, + "2010": 0.84, + "2011": 0.848, + "2012": 0.849, + "2013": 0.85, + "2014": 0.851, + "2015": 0.852, + "2016": 0.85, + "2017": 0.854, + "2018": 0.852, + "2019": 0.854, + "2020": 0.841, + "2021": 0.843 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "National", + "GDLCODE": "ARMt", + "Region": "Total", + "1990": 0.656, + "1991": 0.649, + "1992": 0.618, + "1993": 0.616, + "1994": 0.62, + "1995": 0.627, + "1996": 0.632, + "1997": 0.641, + "1998": 0.654, + "1999": 0.657, + "2000": 0.662, + "2001": 0.666, + "2002": 0.676, + "2003": 0.686, + "2004": 0.694, + "2005": 0.707, + "2006": 0.721, + "2007": 0.738, + "2008": 0.742, + "2009": 0.741, + "2010": 0.746, + "2011": 0.75, + "2012": 0.755, + "2013": 0.76, + "2014": 0.764, + "2015": 0.766, + "2016": 0.765, + "2017": 0.768, + "2018": 0.771, + "2019": 0.778, + "2020": 0.757, + "2021": 0.759 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr101", + "Region": "Aragatsotn", + "1990": 0.611, + "1991": 0.604, + "1992": 0.572, + "1993": 0.571, + "1994": 0.574, + "1995": 0.582, + "1996": 0.587, + "1997": 0.596, + "1998": 0.607, + "1999": 0.611, + "2000": 0.615, + "2001": 0.62, + "2002": 0.629, + "2003": 0.64, + "2004": 0.647, + "2005": 0.66, + "2006": 0.674, + "2007": 0.69, + "2008": 0.693, + "2009": 0.692, + "2010": 0.697, + "2011": 0.706, + "2012": 0.718, + "2013": 0.728, + "2014": 0.737, + "2015": 0.745, + "2016": 0.748, + "2017": 0.752, + "2018": 0.755, + "2019": 0.761, + "2020": 0.741, + "2021": 0.743 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr102", + "Region": "Ararat", + "1990": 0.631, + "1991": 0.624, + "1992": 0.593, + "1993": 0.592, + "1994": 0.595, + "1995": 0.602, + "1996": 0.608, + "1997": 0.617, + "1998": 0.629, + "1999": 0.632, + "2000": 0.636, + "2001": 0.64, + "2002": 0.649, + "2003": 0.659, + "2004": 0.666, + "2005": 0.678, + "2006": 0.691, + "2007": 0.707, + "2008": 0.71, + "2009": 0.709, + "2010": 0.713, + "2011": 0.719, + "2012": 0.726, + "2013": 0.733, + "2014": 0.738, + "2015": 0.743, + "2016": 0.743, + "2017": 0.746, + "2018": 0.749, + "2019": 0.755, + "2020": 0.736, + "2021": 0.738 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr103", + "Region": "Armavir", + "1990": 0.626, + "1991": 0.618, + "1992": 0.588, + "1993": 0.586, + "1994": 0.59, + "1995": 0.597, + "1996": 0.602, + "1997": 0.611, + "1998": 0.623, + "1999": 0.626, + "2000": 0.631, + "2001": 0.636, + "2002": 0.645, + "2003": 0.656, + "2004": 0.664, + "2005": 0.678, + "2006": 0.692, + "2007": 0.709, + "2008": 0.713, + "2009": 0.712, + "2010": 0.718, + "2011": 0.721, + "2012": 0.726, + "2013": 0.73, + "2014": 0.733, + "2015": 0.735, + "2016": 0.733, + "2017": 0.737, + "2018": 0.74, + "2019": 0.746, + "2020": 0.726, + "2021": 0.728 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr104", + "Region": "Gegharkunik", + "1990": 0.62, + "1991": 0.612, + "1992": 0.581, + "1993": 0.58, + "1994": 0.583, + "1995": 0.59, + "1996": 0.595, + "1997": 0.604, + "1998": 0.616, + "1999": 0.62, + "2000": 0.624, + "2001": 0.63, + "2002": 0.641, + "2003": 0.653, + "2004": 0.662, + "2005": 0.677, + "2006": 0.692, + "2007": 0.71, + "2008": 0.715, + "2009": 0.715, + "2010": 0.722, + "2011": 0.723, + "2012": 0.727, + "2013": 0.729, + "2014": 0.731, + "2015": 0.731, + "2016": 0.727, + "2017": 0.731, + "2018": 0.734, + "2019": 0.74, + "2020": 0.721, + "2021": 0.723 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr106", + "Region": "Kotayk", + "1990": 0.662, + "1991": 0.655, + "1992": 0.624, + "1993": 0.623, + "1994": 0.626, + "1995": 0.633, + "1996": 0.638, + "1997": 0.648, + "1998": 0.66, + "1999": 0.664, + "2000": 0.668, + "2001": 0.672, + "2002": 0.68, + "2003": 0.69, + "2004": 0.697, + "2005": 0.709, + "2006": 0.723, + "2007": 0.739, + "2008": 0.741, + "2009": 0.74, + "2010": 0.745, + "2011": 0.75, + "2012": 0.756, + "2013": 0.762, + "2014": 0.767, + "2015": 0.771, + "2016": 0.771, + "2017": 0.774, + "2018": 0.777, + "2019": 0.784, + "2020": 0.763, + "2021": 0.765 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr105", + "Region": "Lori", + "1990": 0.634, + "1991": 0.627, + "1992": 0.596, + "1993": 0.594, + "1994": 0.598, + "1995": 0.605, + "1996": 0.61, + "1997": 0.619, + "1998": 0.631, + "1999": 0.635, + "2000": 0.639, + "2001": 0.646, + "2002": 0.656, + "2003": 0.669, + "2004": 0.678, + "2005": 0.693, + "2006": 0.708, + "2007": 0.727, + "2008": 0.732, + "2009": 0.733, + "2010": 0.74, + "2011": 0.741, + "2012": 0.744, + "2013": 0.746, + "2014": 0.747, + "2015": 0.748, + "2016": 0.744, + "2017": 0.747, + "2018": 0.75, + "2019": 0.757, + "2020": 0.737, + "2021": 0.739 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr107", + "Region": "Shirak", + "1990": 0.662, + "1991": 0.654, + "1992": 0.622, + "1993": 0.621, + "1994": 0.625, + "1995": 0.632, + "1996": 0.637, + "1997": 0.647, + "1998": 0.659, + "1999": 0.663, + "2000": 0.667, + "2001": 0.67, + "2002": 0.677, + "2003": 0.686, + "2004": 0.691, + "2005": 0.703, + "2006": 0.715, + "2007": 0.73, + "2008": 0.732, + "2009": 0.729, + "2010": 0.732, + "2011": 0.738, + "2012": 0.745, + "2013": 0.751, + "2014": 0.757, + "2015": 0.761, + "2016": 0.761, + "2017": 0.765, + "2018": 0.768, + "2019": 0.774, + "2020": 0.754, + "2021": 0.756 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr108", + "Region": "Syunik", + "1990": 0.668, + "1991": 0.661, + "1992": 0.63, + "1993": 0.629, + "1994": 0.632, + "1995": 0.639, + "1996": 0.644, + "1997": 0.654, + "1998": 0.666, + "1999": 0.67, + "2000": 0.674, + "2001": 0.677, + "2002": 0.685, + "2003": 0.694, + "2004": 0.699, + "2005": 0.711, + "2006": 0.724, + "2007": 0.739, + "2008": 0.741, + "2009": 0.739, + "2010": 0.742, + "2011": 0.746, + "2012": 0.751, + "2013": 0.755, + "2014": 0.758, + "2015": 0.76, + "2016": 0.758, + "2017": 0.762, + "2018": 0.765, + "2019": 0.771, + "2020": 0.751, + "2021": 0.753 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr110", + "Region": "Tavush", + "1990": 0.63, + "1991": 0.623, + "1992": 0.592, + "1993": 0.59, + "1994": 0.594, + "1995": 0.601, + "1996": 0.606, + "1997": 0.615, + "1998": 0.627, + "1999": 0.631, + "2000": 0.635, + "2001": 0.64, + "2002": 0.65, + "2003": 0.661, + "2004": 0.669, + "2005": 0.683, + "2006": 0.698, + "2007": 0.715, + "2008": 0.719, + "2009": 0.718, + "2010": 0.724, + "2011": 0.729, + "2012": 0.737, + "2013": 0.743, + "2014": 0.748, + "2015": 0.752, + "2016": 0.752, + "2017": 0.756, + "2018": 0.759, + "2019": 0.765, + "2020": 0.745, + "2021": 0.747 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr109", + "Region": "Vayots Dzor", + "1990": 0.644, + "1991": 0.637, + "1992": 0.606, + "1993": 0.605, + "1994": 0.609, + "1995": 0.615, + "1996": 0.621, + "1997": 0.63, + "1998": 0.642, + "1999": 0.645, + "2000": 0.65, + "2001": 0.654, + "2002": 0.663, + "2003": 0.673, + "2004": 0.68, + "2005": 0.693, + "2006": 0.706, + "2007": 0.722, + "2008": 0.725, + "2009": 0.724, + "2010": 0.729, + "2011": 0.735, + "2012": 0.742, + "2013": 0.749, + "2014": 0.755, + "2015": 0.76, + "2016": 0.76, + "2017": 0.764, + "2018": 0.767, + "2019": 0.773, + "2020": 0.753, + "2021": 0.755 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr111", + "Region": "Yerevan", + "1990": 0.692, + "1991": 0.684, + "1992": 0.653, + "1993": 0.652, + "1994": 0.656, + "1995": 0.663, + "1996": 0.668, + "1997": 0.678, + "1998": 0.69, + "1999": 0.694, + "2000": 0.699, + "2001": 0.702, + "2002": 0.711, + "2003": 0.722, + "2004": 0.728, + "2005": 0.742, + "2006": 0.756, + "2007": 0.772, + "2008": 0.775, + "2009": 0.774, + "2010": 0.779, + "2011": 0.783, + "2012": 0.789, + "2013": 0.794, + "2014": 0.798, + "2015": 0.801, + "2016": 0.799, + "2017": 0.803, + "2018": 0.806, + "2019": 0.813, + "2020": 0.791, + "2021": 0.794 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "National", + "GDLCODE": "AUSt", + "Region": "Total", + "1990": 0.865, + "1991": 0.867, + "1992": 0.869, + "1993": 0.873, + "1994": 0.873, + "1995": 0.882, + "1996": 0.884, + "1997": 0.887, + "1998": 0.891, + "1999": 0.894, + "2000": 0.896, + "2001": 0.9, + "2002": 0.902, + "2003": 0.906, + "2004": 0.908, + "2005": 0.911, + "2006": 0.914, + "2007": 0.915, + "2008": 0.919, + "2009": 0.921, + "2010": 0.923, + "2011": 0.926, + "2012": 0.93, + "2013": 0.929, + "2014": 0.931, + "2015": 0.933, + "2016": 0.935, + "2017": 0.937, + "2018": 0.941, + "2019": 0.941, + "2020": 0.947, + "2021": 0.951 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr108", + "Region": "Australian Capital Territory", + "1990": 0.892, + "1991": 0.899, + "1992": 0.905, + "1993": 0.908, + "1994": 0.907, + "1995": 0.909, + "1996": 0.908, + "1997": 0.912, + "1998": 0.915, + "1999": 0.92, + "2000": 0.921, + "2001": 0.927, + "2002": 0.928, + "2003": 0.935, + "2004": 0.937, + "2005": 0.938, + "2006": 0.941, + "2007": 0.941, + "2008": 0.947, + "2009": 0.949, + "2010": 0.955, + "2011": 0.957, + "2012": 0.962, + "2013": 0.961, + "2014": 0.962, + "2015": 0.964, + "2016": 0.967, + "2017": 0.97, + "2018": 0.974, + "2019": 0.973, + "2020": 0.978, + "2021": 0.98 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr101", + "Region": "New South Wales", + "1990": 0.869, + "1991": 0.873, + "1992": 0.874, + "1993": 0.878, + "1994": 0.878, + "1995": 0.885, + "1996": 0.888, + "1997": 0.892, + "1998": 0.895, + "1999": 0.898, + "2000": 0.9, + "2001": 0.904, + "2002": 0.904, + "2003": 0.909, + "2004": 0.911, + "2005": 0.913, + "2006": 0.916, + "2007": 0.916, + "2008": 0.921, + "2009": 0.921, + "2010": 0.924, + "2011": 0.926, + "2012": 0.929, + "2013": 0.928, + "2014": 0.93, + "2015": 0.933, + "2016": 0.937, + "2017": 0.939, + "2018": 0.943, + "2019": 0.942, + "2020": 0.949, + "2021": 0.952 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr107", + "Region": "Northern Territory", + "1990": 0.826, + "1991": 0.832, + "1992": 0.834, + "1993": 0.841, + "1994": 0.837, + "1995": 0.851, + "1996": 0.853, + "1997": 0.856, + "1998": 0.86, + "1999": 0.864, + "2000": 0.869, + "2001": 0.873, + "2002": 0.878, + "2003": 0.884, + "2004": 0.885, + "2005": 0.885, + "2006": 0.889, + "2007": 0.891, + "2008": 0.898, + "2009": 0.905, + "2010": 0.908, + "2011": 0.908, + "2012": 0.913, + "2013": 0.916, + "2014": 0.919, + "2015": 0.923, + "2016": 0.925, + "2017": 0.927, + "2018": 0.931, + "2019": 0.93, + "2020": 0.937, + "2021": 0.94 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr103", + "Region": "Queensland", + "1990": 0.855, + "1991": 0.856, + "1992": 0.858, + "1993": 0.865, + "1994": 0.865, + "1995": 0.875, + "1996": 0.876, + "1997": 0.88, + "1998": 0.883, + "1999": 0.886, + "2000": 0.888, + "2001": 0.891, + "2002": 0.895, + "2003": 0.897, + "2004": 0.901, + "2005": 0.905, + "2006": 0.911, + "2007": 0.913, + "2008": 0.916, + "2009": 0.92, + "2010": 0.919, + "2011": 0.92, + "2012": 0.925, + "2013": 0.922, + "2014": 0.924, + "2015": 0.926, + "2016": 0.929, + "2017": 0.931, + "2018": 0.935, + "2019": 0.934, + "2020": 0.941, + "2021": 0.944 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr104", + "Region": "South Australia", + "1990": 0.856, + "1991": 0.857, + "1992": 0.861, + "1993": 0.862, + "1994": 0.863, + "1995": 0.875, + "1996": 0.877, + "1997": 0.879, + "1998": 0.885, + "1999": 0.885, + "2000": 0.887, + "2001": 0.89, + "2002": 0.893, + "2003": 0.898, + "2004": 0.899, + "2005": 0.902, + "2006": 0.904, + "2007": 0.905, + "2008": 0.91, + "2009": 0.91, + "2010": 0.913, + "2011": 0.916, + "2012": 0.918, + "2013": 0.918, + "2014": 0.919, + "2015": 0.922, + "2016": 0.924, + "2017": 0.926, + "2018": 0.93, + "2019": 0.93, + "2020": 0.936, + "2021": 0.939 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr106", + "Region": "Tasmania", + "1990": 0.835, + "1991": 0.836, + "1992": 0.84, + "1993": 0.844, + "1994": 0.843, + "1995": 0.858, + "1996": 0.861, + "1997": 0.865, + "1998": 0.867, + "1999": 0.87, + "2000": 0.87, + "2001": 0.873, + "2002": 0.876, + "2003": 0.88, + "2004": 0.885, + "2005": 0.887, + "2006": 0.889, + "2007": 0.891, + "2008": 0.893, + "2009": 0.893, + "2010": 0.897, + "2011": 0.898, + "2012": 0.9, + "2013": 0.899, + "2014": 0.901, + "2015": 0.903, + "2016": 0.906, + "2017": 0.908, + "2018": 0.912, + "2019": 0.911, + "2020": 0.917, + "2021": 0.921 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr102", + "Region": "Victoria", + "1990": 0.87, + "1991": 0.869, + "1992": 0.871, + "1993": 0.876, + "1994": 0.876, + "1995": 0.884, + "1996": 0.885, + "1997": 0.889, + "1998": 0.893, + "1999": 0.897, + "2000": 0.899, + "2001": 0.903, + "2002": 0.905, + "2003": 0.909, + "2004": 0.911, + "2005": 0.914, + "2006": 0.914, + "2007": 0.915, + "2008": 0.919, + "2009": 0.919, + "2010": 0.922, + "2011": 0.924, + "2012": 0.927, + "2013": 0.926, + "2014": 0.927, + "2015": 0.93, + "2016": 0.933, + "2017": 0.935, + "2018": 0.939, + "2019": 0.939, + "2020": 0.945, + "2021": 0.948 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr105", + "Region": "Western Australia", + "1990": 0.869, + "1991": 0.87, + "1992": 0.873, + "1993": 0.875, + "1994": 0.876, + "1995": 0.886, + "1996": 0.889, + "1997": 0.891, + "1998": 0.895, + "1999": 0.897, + "2000": 0.899, + "2001": 0.905, + "2002": 0.907, + "2003": 0.913, + "2004": 0.915, + "2005": 0.918, + "2006": 0.924, + "2007": 0.928, + "2008": 0.934, + "2009": 0.938, + "2010": 0.941, + "2011": 0.948, + "2012": 0.953, + "2013": 0.95, + "2014": 0.954, + "2015": 0.952, + "2016": 0.951, + "2017": 0.953, + "2018": 0.957, + "2019": 0.957, + "2020": 0.963, + "2021": 0.967 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "National", + "GDLCODE": "AUTt", + "Region": "Total", + "1990": 0.825, + "1991": 0.829, + "1992": 0.835, + "1993": 0.84, + "1994": 0.845, + "1995": 0.849, + "1996": 0.853, + "1997": 0.857, + "1998": 0.863, + "1999": 0.866, + "2000": 0.871, + "2001": 0.876, + "2002": 0.879, + "2003": 0.881, + "2004": 0.886, + "2005": 0.889, + "2006": 0.893, + "2007": 0.896, + "2008": 0.898, + "2009": 0.898, + "2010": 0.902, + "2011": 0.905, + "2012": 0.906, + "2013": 0.905, + "2014": 0.909, + "2015": 0.91, + "2016": 0.915, + "2017": 0.916, + "2018": 0.917, + "2019": 0.919, + "2020": 0.913, + "2021": 0.916 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr101", + "Region": "Burgenland", + "1990": 0.783, + "1991": 0.782, + "1992": 0.79, + "1993": 0.797, + "1994": 0.8, + "1995": 0.803, + "1996": 0.805, + "1997": 0.811, + "1998": 0.816, + "1999": 0.821, + "2000": 0.826, + "2001": 0.83, + "2002": 0.835, + "2003": 0.838, + "2004": 0.844, + "2005": 0.844, + "2006": 0.849, + "2007": 0.85, + "2008": 0.852, + "2009": 0.858, + "2010": 0.861, + "2011": 0.863, + "2012": 0.862, + "2013": 0.864, + "2014": 0.869, + "2015": 0.873, + "2016": 0.875, + "2017": 0.879, + "2018": 0.88, + "2019": 0.883, + "2020": 0.877, + "2021": 0.88 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr104", + "Region": "Karnten", + "1990": 0.81, + "1991": 0.814, + "1992": 0.821, + "1993": 0.825, + "1994": 0.832, + "1995": 0.836, + "1996": 0.84, + "1997": 0.843, + "1998": 0.851, + "1999": 0.852, + "2000": 0.857, + "2001": 0.863, + "2002": 0.867, + "2003": 0.87, + "2004": 0.874, + "2005": 0.876, + "2006": 0.88, + "2007": 0.885, + "2008": 0.885, + "2009": 0.884, + "2010": 0.888, + "2011": 0.891, + "2012": 0.891, + "2013": 0.891, + "2014": 0.896, + "2015": 0.894, + "2016": 0.899, + "2017": 0.901, + "2018": 0.902, + "2019": 0.904, + "2020": 0.898, + "2021": 0.901 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr102", + "Region": "Niederosterreich", + "1990": 0.79, + "1991": 0.794, + "1992": 0.8, + "1993": 0.804, + "1994": 0.808, + "1995": 0.812, + "1996": 0.816, + "1997": 0.82, + "1998": 0.825, + "1999": 0.829, + "2000": 0.833, + "2001": 0.838, + "2002": 0.841, + "2003": 0.842, + "2004": 0.848, + "2005": 0.852, + "2006": 0.855, + "2007": 0.858, + "2008": 0.86, + "2009": 0.861, + "2010": 0.866, + "2011": 0.867, + "2012": 0.866, + "2013": 0.867, + "2014": 0.873, + "2015": 0.875, + "2016": 0.879, + "2017": 0.883, + "2018": 0.884, + "2019": 0.884, + "2020": 0.879, + "2021": 0.881 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr106", + "Region": "Oberosterreich", + "1990": 0.814, + "1991": 0.818, + "1992": 0.825, + "1993": 0.827, + "1994": 0.831, + "1995": 0.835, + "1996": 0.839, + "1997": 0.844, + "1998": 0.85, + "1999": 0.853, + "2000": 0.86, + "2001": 0.864, + "2002": 0.866, + "2003": 0.869, + "2004": 0.873, + "2005": 0.877, + "2006": 0.882, + "2007": 0.884, + "2008": 0.888, + "2009": 0.886, + "2010": 0.891, + "2011": 0.894, + "2012": 0.896, + "2013": 0.894, + "2014": 0.9, + "2015": 0.899, + "2016": 0.906, + "2017": 0.905, + "2018": 0.907, + "2019": 0.911, + "2020": 0.905, + "2021": 0.907 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr107", + "Region": "Salzburg", + "1990": 0.84, + "1991": 0.847, + "1992": 0.854, + "1993": 0.856, + "1994": 0.862, + "1995": 0.866, + "1996": 0.87, + "1997": 0.873, + "1998": 0.88, + "1999": 0.883, + "2000": 0.886, + "2001": 0.89, + "2002": 0.893, + "2003": 0.896, + "2004": 0.903, + "2005": 0.904, + "2006": 0.912, + "2007": 0.916, + "2008": 0.918, + "2009": 0.916, + "2010": 0.922, + "2011": 0.924, + "2012": 0.927, + "2013": 0.925, + "2014": 0.928, + "2015": 0.93, + "2016": 0.935, + "2017": 0.933, + "2018": 0.937, + "2019": 0.937, + "2020": 0.931, + "2021": 0.934 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr105", + "Region": "Steiermark", + "1990": 0.818, + "1991": 0.822, + "1992": 0.828, + "1993": 0.833, + "1994": 0.838, + "1995": 0.842, + "1996": 0.846, + "1997": 0.849, + "1998": 0.856, + "1999": 0.86, + "2000": 0.864, + "2001": 0.87, + "2002": 0.872, + "2003": 0.876, + "2004": 0.881, + "2005": 0.885, + "2006": 0.888, + "2007": 0.893, + "2008": 0.892, + "2009": 0.892, + "2010": 0.897, + "2011": 0.901, + "2012": 0.904, + "2013": 0.902, + "2014": 0.905, + "2015": 0.904, + "2016": 0.911, + "2017": 0.911, + "2018": 0.914, + "2019": 0.916, + "2020": 0.911, + "2021": 0.913 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr108", + "Region": "Tirol", + "1990": 0.833, + "1991": 0.84, + "1992": 0.846, + "1993": 0.85, + "1994": 0.854, + "1995": 0.859, + "1996": 0.863, + "1997": 0.867, + "1998": 0.872, + "1999": 0.877, + "2000": 0.881, + "2001": 0.885, + "2002": 0.891, + "2003": 0.894, + "2004": 0.897, + "2005": 0.9, + "2006": 0.905, + "2007": 0.908, + "2008": 0.908, + "2009": 0.908, + "2010": 0.912, + "2011": 0.916, + "2012": 0.918, + "2013": 0.917, + "2014": 0.921, + "2015": 0.921, + "2016": 0.926, + "2017": 0.93, + "2018": 0.931, + "2019": 0.931, + "2020": 0.925, + "2021": 0.928 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr109", + "Region": "Vorarlberg", + "1990": 0.813, + "1991": 0.818, + "1992": 0.824, + "1993": 0.829, + "1994": 0.834, + "1995": 0.838, + "1996": 0.842, + "1997": 0.847, + "1998": 0.85, + "1999": 0.853, + "2000": 0.86, + "2001": 0.861, + "2002": 0.867, + "2003": 0.866, + "2004": 0.872, + "2005": 0.876, + "2006": 0.878, + "2007": 0.883, + "2008": 0.884, + "2009": 0.884, + "2010": 0.888, + "2011": 0.892, + "2012": 0.893, + "2013": 0.893, + "2014": 0.899, + "2015": 0.9, + "2016": 0.901, + "2017": 0.902, + "2018": 0.906, + "2019": 0.907, + "2020": 0.901, + "2021": 0.904 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr103", + "Region": "Wien", + "1990": 0.867, + "1991": 0.871, + "1992": 0.875, + "1993": 0.881, + "1994": 0.887, + "1995": 0.891, + "1996": 0.895, + "1997": 0.902, + "1998": 0.907, + "1999": 0.91, + "2000": 0.915, + "2001": 0.918, + "2002": 0.92, + "2003": 0.92, + "2004": 0.926, + "2005": 0.927, + "2006": 0.931, + "2007": 0.931, + "2008": 0.933, + "2009": 0.931, + "2010": 0.934, + "2011": 0.935, + "2012": 0.935, + "2013": 0.936, + "2014": 0.939, + "2015": 0.939, + "2016": 0.943, + "2017": 0.943, + "2018": 0.943, + "2019": 0.946, + "2020": 0.94, + "2021": 0.942 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "National", + "GDLCODE": "AZEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.59, + "1996": 0.59, + "1997": 0.594, + "1998": 0.604, + "1999": 0.615, + "2000": 0.622, + "2001": 0.632, + "2002": 0.642, + "2003": 0.651, + "2004": 0.659, + "2005": 0.672, + "2006": 0.692, + "2007": 0.706, + "2008": 0.716, + "2009": 0.722, + "2010": 0.727, + "2011": 0.729, + "2012": 0.734, + "2013": 0.741, + "2014": 0.745, + "2015": 0.748, + "2016": 0.75, + "2017": 0.753, + "2018": 0.757, + "2019": 0.761, + "2020": 0.73, + "2021": 0.745 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr102", + "Region": "Absheron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.628, + "1996": 0.628, + "1997": 0.632, + "1998": 0.643, + "1999": 0.654, + "2000": 0.662, + "2001": 0.672, + "2002": 0.682, + "2003": 0.692, + "2004": 0.7, + "2005": 0.713, + "2006": 0.734, + "2007": 0.748, + "2008": 0.759, + "2009": 0.765, + "2010": 0.771, + "2011": 0.773, + "2012": 0.778, + "2013": 0.785, + "2014": 0.789, + "2015": 0.793, + "2016": 0.794, + "2017": 0.798, + "2018": 0.802, + "2019": 0.807, + "2020": 0.773, + "2021": 0.789 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr107", + "Region": "Aran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.549, + "1996": 0.549, + "1997": 0.553, + "1998": 0.563, + "1999": 0.573, + "2000": 0.58, + "2001": 0.589, + "2002": 0.599, + "2003": 0.608, + "2004": 0.615, + "2005": 0.628, + "2006": 0.647, + "2007": 0.661, + "2008": 0.67, + "2009": 0.676, + "2010": 0.681, + "2011": 0.683, + "2012": 0.687, + "2013": 0.694, + "2014": 0.698, + "2015": 0.701, + "2016": 0.703, + "2017": 0.706, + "2018": 0.709, + "2019": 0.713, + "2020": 0.683, + "2021": 0.698 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr101", + "Region": "Baku", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.65, + "1996": 0.649, + "1997": 0.654, + "1998": 0.665, + "1999": 0.676, + "2000": 0.684, + "2001": 0.694, + "2002": 0.705, + "2003": 0.715, + "2004": 0.723, + "2005": 0.737, + "2006": 0.758, + "2007": 0.772, + "2008": 0.783, + "2009": 0.789, + "2010": 0.795, + "2011": 0.797, + "2012": 0.802, + "2013": 0.809, + "2014": 0.814, + "2015": 0.817, + "2016": 0.819, + "2017": 0.823, + "2018": 0.827, + "2019": 0.832, + "2020": 0.798, + "2021": 0.814 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr109", + "Region": "Dakhlik Shirvan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.562, + "1996": 0.561, + "1997": 0.565, + "1998": 0.575, + "1999": 0.586, + "2000": 0.593, + "2001": 0.602, + "2002": 0.612, + "2003": 0.621, + "2004": 0.629, + "2005": 0.641, + "2006": 0.661, + "2007": 0.675, + "2008": 0.684, + "2009": 0.691, + "2010": 0.696, + "2011": 0.698, + "2012": 0.702, + "2013": 0.708, + "2014": 0.713, + "2015": 0.716, + "2016": 0.717, + "2017": 0.72, + "2018": 0.724, + "2019": 0.728, + "2020": 0.698, + "2021": 0.712 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr103", + "Region": "Ganja Gazakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.558, + "1996": 0.558, + "1997": 0.562, + "1998": 0.572, + "1999": 0.582, + "2000": 0.59, + "2001": 0.599, + "2002": 0.608, + "2003": 0.617, + "2004": 0.625, + "2005": 0.638, + "2006": 0.657, + "2007": 0.671, + "2008": 0.681, + "2009": 0.687, + "2010": 0.692, + "2011": 0.694, + "2012": 0.698, + "2013": 0.705, + "2014": 0.709, + "2015": 0.712, + "2016": 0.714, + "2017": 0.717, + "2018": 0.721, + "2019": 0.725, + "2020": 0.694, + "2021": 0.709 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr106", + "Region": "Guba Khachmaz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.571, + "1996": 0.571, + "1997": 0.575, + "1998": 0.585, + "1999": 0.595, + "2000": 0.603, + "2001": 0.612, + "2002": 0.622, + "2003": 0.631, + "2004": 0.639, + "2005": 0.651, + "2006": 0.671, + "2007": 0.685, + "2008": 0.695, + "2009": 0.701, + "2010": 0.706, + "2011": 0.708, + "2012": 0.713, + "2013": 0.719, + "2014": 0.724, + "2015": 0.726, + "2016": 0.728, + "2017": 0.731, + "2018": 0.735, + "2019": 0.739, + "2020": 0.708, + "2021": 0.723 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr105", + "Region": "Lankaran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.554, + "1996": 0.554, + "1997": 0.558, + "1998": 0.568, + "1999": 0.578, + "2000": 0.585, + "2001": 0.595, + "2002": 0.604, + "2003": 0.613, + "2004": 0.621, + "2005": 0.633, + "2006": 0.653, + "2007": 0.667, + "2008": 0.676, + "2009": 0.682, + "2010": 0.687, + "2011": 0.689, + "2012": 0.694, + "2013": 0.7, + "2014": 0.704, + "2015": 0.707, + "2016": 0.709, + "2017": 0.712, + "2018": 0.715, + "2019": 0.719, + "2020": 0.689, + "2021": 0.704 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr104", + "Region": "Shaki Zaqatala", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.593, + "1996": 0.593, + "1997": 0.597, + "1998": 0.607, + "1999": 0.618, + "2000": 0.626, + "2001": 0.636, + "2002": 0.646, + "2003": 0.655, + "2004": 0.663, + "2005": 0.676, + "2006": 0.697, + "2007": 0.711, + "2008": 0.721, + "2009": 0.728, + "2010": 0.733, + "2011": 0.735, + "2012": 0.74, + "2013": 0.746, + "2014": 0.751, + "2015": 0.754, + "2016": 0.755, + "2017": 0.759, + "2018": 0.762, + "2019": 0.767, + "2020": 0.736, + "2021": 0.751 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr108", + "Region": "Yukhari Karabakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.543, + "1996": 0.542, + "1997": 0.546, + "1998": 0.556, + "1999": 0.567, + "2000": 0.574, + "2001": 0.583, + "2002": 0.592, + "2003": 0.601, + "2004": 0.609, + "2005": 0.621, + "2006": 0.64, + "2007": 0.654, + "2008": 0.663, + "2009": 0.67, + "2010": 0.675, + "2011": 0.676, + "2012": 0.681, + "2013": 0.687, + "2014": 0.692, + "2015": 0.695, + "2016": 0.696, + "2017": 0.699, + "2018": 0.703, + "2019": 0.707, + "2020": 0.677, + "2021": 0.691 + }, + { + "Country": "Bahamas", + "Continent": "America", + "ISO_Code": "BHS", + "Level": "National", + "GDLCODE": "BHSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.799, + "2001": 0.801, + "2002": 0.804, + "2003": 0.805, + "2004": 0.807, + "2005": 0.811, + "2006": 0.813, + "2007": 0.812, + "2008": 0.812, + "2009": 0.81, + "2010": 0.812, + "2011": 0.812, + "2012": 0.815, + "2013": 0.816, + "2014": 0.82, + "2015": 0.82, + "2016": 0.823, + "2017": 0.825, + "2018": 0.827, + "2019": 0.816, + "2020": 0.815, + "2021": 0.812 + }, + { + "Country": "Bahrain", + "Continent": "Asia/Pacific", + "ISO_Code": "BHR", + "Level": "National", + "GDLCODE": "BHRt", + "Region": "Total", + "1990": 0.742, + "1991": 0.743, + "1992": 0.749, + "1993": 0.761, + "1994": 0.764, + "1995": 0.772, + "1996": 0.778, + "1997": 0.78, + "1998": 0.785, + "1999": 0.789, + "2000": 0.798, + "2001": 0.804, + "2002": 0.804, + "2003": 0.806, + "2004": 0.804, + "2005": 0.803, + "2006": 0.804, + "2007": 0.807, + "2008": 0.808, + "2009": 0.806, + "2010": 0.808, + "2011": 0.809, + "2012": 0.817, + "2013": 0.824, + "2014": 0.83, + "2015": 0.858, + "2016": 0.865, + "2017": 0.869, + "2018": 0.879, + "2019": 0.882, + "2020": 0.877, + "2021": 0.875 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "National", + "GDLCODE": "BGDt", + "Region": "Total", + "1990": 0.397, + "1991": 0.394, + "1992": 0.413, + "1993": 0.42, + "1994": 0.427, + "1995": 0.436, + "1996": 0.441, + "1997": 0.453, + "1998": 0.467, + "1999": 0.481, + "2000": 0.485, + "2001": 0.492, + "2002": 0.499, + "2003": 0.505, + "2004": 0.511, + "2005": 0.518, + "2006": 0.524, + "2007": 0.527, + "2008": 0.53, + "2009": 0.541, + "2010": 0.553, + "2011": 0.561, + "2012": 0.572, + "2013": 0.574, + "2014": 0.583, + "2015": 0.602, + "2016": 0.612, + "2017": 0.622, + "2018": 0.635, + "2019": 0.644, + "2020": 0.655, + "2021": 0.661 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr214", + "Region": " Bagerhat, Khulna, Satkhira", + "1990": 0.401, + "1991": 0.399, + "1992": 0.417, + "1993": 0.424, + "1994": 0.432, + "1995": 0.44, + "1996": 0.445, + "1997": 0.459, + "1998": 0.474, + "1999": 0.488, + "2000": 0.493, + "2001": 0.501, + "2002": 0.509, + "2003": 0.516, + "2004": 0.524, + "2005": 0.531, + "2006": 0.537, + "2007": 0.541, + "2008": 0.544, + "2009": 0.556, + "2010": 0.569, + "2011": 0.577, + "2012": 0.586, + "2013": 0.586, + "2014": 0.592, + "2015": 0.612, + "2016": 0.624, + "2017": 0.636, + "2018": 0.651, + "2019": 0.661, + "2020": 0.672, + "2021": 0.678 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr204", + "Region": " Bandarban, Cox s Bazar", + "1990": 0.37, + "1991": 0.368, + "1992": 0.386, + "1993": 0.392, + "1994": 0.399, + "1995": 0.407, + "1996": 0.412, + "1997": 0.42, + "1998": 0.43, + "1999": 0.439, + "2000": 0.439, + "2001": 0.442, + "2002": 0.444, + "2003": 0.446, + "2004": 0.448, + "2005": 0.454, + "2006": 0.459, + "2007": 0.462, + "2008": 0.464, + "2009": 0.475, + "2010": 0.485, + "2011": 0.492, + "2012": 0.501, + "2013": 0.503, + "2014": 0.51, + "2015": 0.529, + "2016": 0.542, + "2017": 0.556, + "2018": 0.572, + "2019": 0.584, + "2020": 0.592, + "2021": 0.598 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr202", + "Region": " Barguna, Bhola, Patuakhali", + "1990": 0.433, + "1991": 0.43, + "1992": 0.451, + "1993": 0.458, + "1994": 0.466, + "1995": 0.476, + "1996": 0.481, + "1997": 0.49, + "1998": 0.5, + "1999": 0.509, + "2000": 0.509, + "2001": 0.511, + "2002": 0.513, + "2003": 0.513, + "2004": 0.515, + "2005": 0.519, + "2006": 0.522, + "2007": 0.522, + "2008": 0.523, + "2009": 0.531, + "2010": 0.54, + "2011": 0.545, + "2012": 0.553, + "2013": 0.552, + "2014": 0.557, + "2015": 0.575, + "2016": 0.584, + "2017": 0.594, + "2018": 0.607, + "2019": 0.615, + "2020": 0.625, + "2021": 0.63 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr201", + "Region": " Barisal, Jhalokati, Pirojpur", + "1990": 0.417, + "1991": 0.415, + "1992": 0.434, + "1993": 0.441, + "1994": 0.449, + "1995": 0.458, + "1996": 0.463, + "1997": 0.477, + "1998": 0.492, + "1999": 0.507, + "2000": 0.512, + "2001": 0.52, + "2002": 0.528, + "2003": 0.534, + "2004": 0.542, + "2005": 0.547, + "2006": 0.551, + "2007": 0.553, + "2008": 0.554, + "2009": 0.564, + "2010": 0.574, + "2011": 0.58, + "2012": 0.603, + "2013": 0.617, + "2014": 0.637, + "2015": 0.648, + "2016": 0.648, + "2017": 0.648, + "2018": 0.651, + "2019": 0.65, + "2020": 0.661, + "2021": 0.667 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr219", + "Region": " Bogra, Gaibandha, Jaypurhat", + "1990": 0.373, + "1991": 0.371, + "1992": 0.389, + "1993": 0.395, + "1994": 0.403, + "1995": 0.411, + "1996": 0.415, + "1997": 0.43, + "1998": 0.446, + "1999": 0.461, + "2000": 0.467, + "2001": 0.476, + "2002": 0.485, + "2003": 0.493, + "2004": 0.502, + "2005": 0.508, + "2006": 0.513, + "2007": 0.515, + "2008": 0.516, + "2009": 0.527, + "2010": 0.537, + "2011": 0.544, + "2012": 0.56, + "2013": 0.569, + "2014": 0.583, + "2015": 0.601, + "2016": 0.61, + "2017": 0.62, + "2018": 0.632, + "2019": 0.64, + "2020": 0.65, + "2021": 0.656 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr207", + "Region": " Brahmanbaria, Chandpur, Comilla", + "1990": 0.392, + "1991": 0.39, + "1992": 0.409, + "1993": 0.415, + "1994": 0.423, + "1995": 0.432, + "1996": 0.436, + "1997": 0.449, + "1998": 0.465, + "1999": 0.479, + "2000": 0.484, + "2001": 0.491, + "2002": 0.499, + "2003": 0.506, + "2004": 0.513, + "2005": 0.521, + "2006": 0.529, + "2007": 0.533, + "2008": 0.537, + "2009": 0.55, + "2010": 0.563, + "2011": 0.572, + "2012": 0.585, + "2013": 0.589, + "2014": 0.601, + "2015": 0.618, + "2016": 0.626, + "2017": 0.634, + "2018": 0.645, + "2019": 0.652, + "2020": 0.663, + "2021": 0.668 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr203", + "Region": " Chittagong", + "1990": 0.442, + "1991": 0.439, + "1992": 0.46, + "1993": 0.467, + "1994": 0.476, + "1995": 0.485, + "1996": 0.491, + "1997": 0.5, + "1998": 0.511, + "1999": 0.522, + "2000": 0.521, + "2001": 0.524, + "2002": 0.527, + "2003": 0.528, + "2004": 0.53, + "2005": 0.54, + "2006": 0.549, + "2007": 0.555, + "2008": 0.562, + "2009": 0.576, + "2010": 0.592, + "2011": 0.603, + "2012": 0.61, + "2013": 0.608, + "2014": 0.614, + "2015": 0.632, + "2016": 0.64, + "2017": 0.649, + "2018": 0.66, + "2019": 0.667, + "2020": 0.679, + "2021": 0.685 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr216", + "Region": " Chuadanga, Jhenaidah, Kushtia, Meherpur", + "1990": 0.407, + "1991": 0.406, + "1992": 0.424, + "1993": 0.431, + "1994": 0.439, + "1995": 0.447, + "1996": 0.452, + "1997": 0.464, + "1998": 0.477, + "1999": 0.49, + "2000": 0.493, + "2001": 0.499, + "2002": 0.505, + "2003": 0.51, + "2004": 0.516, + "2005": 0.524, + "2006": 0.532, + "2007": 0.536, + "2008": 0.541, + "2009": 0.554, + "2010": 0.567, + "2011": 0.577, + "2012": 0.581, + "2013": 0.577, + "2014": 0.579, + "2015": 0.601, + "2016": 0.614, + "2017": 0.628, + "2018": 0.644, + "2019": 0.657, + "2020": 0.667, + "2021": 0.673 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr208", + "Region": " Dhaka", + "1990": 0.523, + "1991": 0.521, + "1992": 0.544, + "1993": 0.553, + "1994": 0.562, + "1995": 0.573, + "1996": 0.579, + "1997": 0.589, + "1998": 0.601, + "1999": 0.612, + "2000": 0.611, + "2001": 0.614, + "2002": 0.616, + "2003": 0.617, + "2004": 0.619, + "2005": 0.627, + "2006": 0.633, + "2007": 0.637, + "2008": 0.642, + "2009": 0.654, + "2010": 0.668, + "2011": 0.677, + "2012": 0.675, + "2013": 0.662, + "2014": 0.659, + "2015": 0.682, + "2016": 0.692, + "2017": 0.703, + "2018": 0.716, + "2019": 0.725, + "2020": 0.739, + "2021": 0.745 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr220", + "Region": " Dinajpur, Nilphamari, Panchagarh, Thakurgaon", + "1990": 0.379, + "1991": 0.377, + "1992": 0.394, + "1993": 0.401, + "1994": 0.408, + "1995": 0.416, + "1996": 0.421, + "1997": 0.436, + "1998": 0.453, + "1999": 0.469, + "2000": 0.477, + "2001": 0.487, + "2002": 0.497, + "2003": 0.506, + "2004": 0.516, + "2005": 0.519, + "2006": 0.522, + "2007": 0.522, + "2008": 0.522, + "2009": 0.53, + "2010": 0.539, + "2011": 0.544, + "2012": 0.561, + "2013": 0.57, + "2014": 0.584, + "2015": 0.602, + "2016": 0.612, + "2017": 0.622, + "2018": 0.634, + "2019": 0.643, + "2020": 0.653, + "2021": 0.658 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr212", + "Region": " Faridpur, Manikganj, Rajbari", + "1990": 0.394, + "1991": 0.392, + "1992": 0.41, + "1993": 0.417, + "1994": 0.425, + "1995": 0.433, + "1996": 0.438, + "1997": 0.455, + "1998": 0.473, + "1999": 0.492, + "2000": 0.5, + "2001": 0.512, + "2002": 0.523, + "2003": 0.534, + "2004": 0.546, + "2005": 0.543, + "2006": 0.54, + "2007": 0.534, + "2008": 0.527, + "2009": 0.53, + "2010": 0.533, + "2011": 0.533, + "2012": 0.548, + "2013": 0.555, + "2014": 0.568, + "2015": 0.587, + "2016": 0.599, + "2017": 0.612, + "2018": 0.628, + "2019": 0.639, + "2020": 0.649, + "2021": 0.654 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr206", + "Region": " Feni, Lakshmipur, Noakhali", + "1990": 0.4, + "1991": 0.397, + "1992": 0.416, + "1993": 0.423, + "1994": 0.431, + "1995": 0.439, + "1996": 0.444, + "1997": 0.454, + "1998": 0.466, + "1999": 0.476, + "2000": 0.478, + "2001": 0.482, + "2002": 0.485, + "2003": 0.488, + "2004": 0.492, + "2005": 0.499, + "2006": 0.504, + "2007": 0.507, + "2008": 0.51, + "2009": 0.521, + "2010": 0.533, + "2011": 0.541, + "2012": 0.552, + "2013": 0.556, + "2014": 0.565, + "2015": 0.587, + "2016": 0.599, + "2017": 0.613, + "2018": 0.628, + "2019": 0.64, + "2020": 0.651, + "2021": 0.656 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr209", + "Region": " Gazipur, Narayanganj, Narsingdi", + "1990": 0.394, + "1991": 0.392, + "1992": 0.411, + "1993": 0.417, + "1994": 0.425, + "1995": 0.433, + "1996": 0.438, + "1997": 0.451, + "1998": 0.466, + "1999": 0.48, + "2000": 0.484, + "2001": 0.492, + "2002": 0.499, + "2003": 0.506, + "2004": 0.513, + "2005": 0.523, + "2006": 0.531, + "2007": 0.537, + "2008": 0.542, + "2009": 0.556, + "2010": 0.57, + "2011": 0.58, + "2012": 0.596, + "2013": 0.602, + "2014": 0.616, + "2015": 0.631, + "2016": 0.635, + "2017": 0.64, + "2018": 0.647, + "2019": 0.651, + "2020": 0.662, + "2021": 0.668 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr213", + "Region": " Gopalganj, Madaripur, Munshiganj, Shariatpur", + "1990": 0.393, + "1991": 0.391, + "1992": 0.409, + "1993": 0.416, + "1994": 0.423, + "1995": 0.432, + "1996": 0.436, + "1997": 0.452, + "1998": 0.47, + "1999": 0.486, + "2000": 0.494, + "2001": 0.504, + "2002": 0.514, + "2003": 0.524, + "2004": 0.534, + "2005": 0.539, + "2006": 0.543, + "2007": 0.545, + "2008": 0.546, + "2009": 0.556, + "2010": 0.566, + "2011": 0.573, + "2012": 0.587, + "2013": 0.593, + "2014": 0.605, + "2015": 0.619, + "2016": 0.625, + "2017": 0.631, + "2018": 0.64, + "2019": 0.644, + "2020": 0.654, + "2021": 0.659 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr223", + "Region": " Habiganj, Sunamganj", + "1990": 0.31, + "1991": 0.308, + "1992": 0.323, + "1993": 0.329, + "1994": 0.335, + "1995": 0.342, + "1996": 0.346, + "1997": 0.358, + "1998": 0.372, + "1999": 0.386, + "2000": 0.391, + "2001": 0.399, + "2002": 0.407, + "2003": 0.414, + "2004": 0.423, + "2005": 0.434, + "2006": 0.445, + "2007": 0.454, + "2008": 0.462, + "2009": 0.477, + "2010": 0.493, + "2011": 0.505, + "2012": 0.509, + "2013": 0.506, + "2014": 0.508, + "2015": 0.527, + "2016": 0.542, + "2017": 0.556, + "2018": 0.573, + "2019": 0.586, + "2020": 0.594, + "2021": 0.6 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr210", + "Region": " Jamalpur, Sherpur, Tangail", + "1990": 0.368, + "1991": 0.366, + "1992": 0.384, + "1993": 0.39, + "1994": 0.397, + "1995": 0.405, + "1996": 0.41, + "1997": 0.421, + "1998": 0.435, + "1999": 0.447, + "2000": 0.451, + "2001": 0.457, + "2002": 0.463, + "2003": 0.469, + "2004": 0.475, + "2005": 0.483, + "2006": 0.49, + "2007": 0.493, + "2008": 0.496, + "2009": 0.508, + "2010": 0.52, + "2011": 0.528, + "2012": 0.537, + "2013": 0.539, + "2014": 0.546, + "2015": 0.566, + "2016": 0.581, + "2017": 0.595, + "2018": 0.612, + "2019": 0.625, + "2020": 0.635, + "2021": 0.64 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr215", + "Region": " Jessore, Magura, Narail", + "1990": 0.438, + "1991": 0.436, + "1992": 0.456, + "1993": 0.463, + "1994": 0.471, + "1995": 0.48, + "1996": 0.486, + "1997": 0.498, + "1998": 0.513, + "1999": 0.527, + "2000": 0.532, + "2001": 0.539, + "2002": 0.546, + "2003": 0.552, + "2004": 0.559, + "2005": 0.56, + "2006": 0.561, + "2007": 0.56, + "2008": 0.558, + "2009": 0.565, + "2010": 0.572, + "2011": 0.576, + "2012": 0.585, + "2013": 0.585, + "2014": 0.592, + "2015": 0.614, + "2016": 0.628, + "2017": 0.643, + "2018": 0.66, + "2019": 0.673, + "2020": 0.685, + "2021": 0.691 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr205", + "Region": " Khagrachhari, Rangamati (Chattagram)", + "1990": 0.377, + "1991": 0.375, + "1992": 0.393, + "1993": 0.399, + "1994": 0.407, + "1995": 0.415, + "1996": 0.42, + "1997": 0.435, + "1998": 0.452, + "1999": 0.468, + "2000": 0.476, + "2001": 0.486, + "2002": 0.496, + "2003": 0.505, + "2004": 0.515, + "2005": 0.52, + "2006": 0.523, + "2007": 0.524, + "2008": 0.525, + "2009": 0.534, + "2010": 0.543, + "2011": 0.549, + "2012": 0.557, + "2013": 0.556, + "2014": 0.561, + "2015": 0.575, + "2016": 0.582, + "2017": 0.588, + "2018": 0.597, + "2019": 0.602, + "2020": 0.612, + "2021": 0.617 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr211", + "Region": " Kishoreganj, Mymensingh, Netrakona", + "1990": 0.353, + "1991": 0.351, + "1992": 0.368, + "1993": 0.374, + "1994": 0.381, + "1995": 0.389, + "1996": 0.393, + "1997": 0.404, + "1998": 0.416, + "1999": 0.428, + "2000": 0.431, + "2001": 0.437, + "2002": 0.442, + "2003": 0.447, + "2004": 0.453, + "2005": 0.459, + "2006": 0.464, + "2007": 0.467, + "2008": 0.469, + "2009": 0.48, + "2010": 0.49, + "2011": 0.497, + "2012": 0.512, + "2013": 0.521, + "2014": 0.534, + "2015": 0.553, + "2016": 0.566, + "2017": 0.579, + "2018": 0.594, + "2019": 0.605, + "2020": 0.615, + "2021": 0.62 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr221", + "Region": " Kurigram, Lalmonirhat, Rangpur", + "1990": 0.351, + "1991": 0.349, + "1992": 0.366, + "1993": 0.372, + "1994": 0.378, + "1995": 0.386, + "1996": 0.391, + "1997": 0.404, + "1998": 0.419, + "1999": 0.433, + "2000": 0.439, + "2001": 0.447, + "2002": 0.455, + "2003": 0.463, + "2004": 0.471, + "2005": 0.48, + "2006": 0.488, + "2007": 0.494, + "2008": 0.499, + "2009": 0.512, + "2010": 0.526, + "2011": 0.536, + "2012": 0.548, + "2013": 0.552, + "2014": 0.562, + "2015": 0.578, + "2016": 0.588, + "2017": 0.597, + "2018": 0.609, + "2019": 0.617, + "2020": 0.626, + "2021": 0.632 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr222", + "Region": " Maulvibazar, Sylhet", + "1990": 0.379, + "1991": 0.377, + "1992": 0.395, + "1993": 0.401, + "1994": 0.409, + "1995": 0.417, + "1996": 0.422, + "1997": 0.434, + "1998": 0.449, + "1999": 0.463, + "2000": 0.468, + "2001": 0.476, + "2002": 0.484, + "2003": 0.491, + "2004": 0.498, + "2005": 0.506, + "2006": 0.514, + "2007": 0.518, + "2008": 0.522, + "2009": 0.535, + "2010": 0.548, + "2011": 0.557, + "2012": 0.563, + "2013": 0.561, + "2014": 0.566, + "2015": 0.587, + "2016": 0.601, + "2017": 0.615, + "2018": 0.631, + "2019": 0.643, + "2020": 0.654, + "2021": 0.659 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr217", + "Region": " Naogaon, Nawabganj, Rajshahi", + "1990": 0.405, + "1991": 0.403, + "1992": 0.422, + "1993": 0.429, + "1994": 0.437, + "1995": 0.445, + "1996": 0.45, + "1997": 0.462, + "1998": 0.476, + "1999": 0.489, + "2000": 0.492, + "2001": 0.499, + "2002": 0.505, + "2003": 0.51, + "2004": 0.517, + "2005": 0.521, + "2006": 0.525, + "2007": 0.526, + "2008": 0.527, + "2009": 0.537, + "2010": 0.547, + "2011": 0.553, + "2012": 0.555, + "2013": 0.549, + "2014": 0.549, + "2015": 0.576, + "2016": 0.595, + "2017": 0.615, + "2018": 0.637, + "2019": 0.654, + "2020": 0.665, + "2021": 0.671 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr218", + "Region": " Natore, Pabna, Sirajganj", + "1990": 0.354, + "1991": 0.352, + "1992": 0.369, + "1993": 0.375, + "1994": 0.382, + "1995": 0.39, + "1996": 0.394, + "1997": 0.411, + "1998": 0.43, + "1999": 0.448, + "2000": 0.457, + "2001": 0.469, + "2002": 0.481, + "2003": 0.492, + "2004": 0.504, + "2005": 0.509, + "2006": 0.513, + "2007": 0.514, + "2008": 0.515, + "2009": 0.524, + "2010": 0.534, + "2011": 0.54, + "2012": 0.555, + "2013": 0.563, + "2014": 0.576, + "2015": 0.592, + "2016": 0.6, + "2017": 0.608, + "2018": 0.618, + "2019": 0.624, + "2020": 0.634, + "2021": 0.639 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "National", + "GDLCODE": "BRBt", + "Region": "Total", + "1990": 0.725, + "1991": 0.727, + "1992": 0.727, + "1993": 0.731, + "1994": 0.736, + "1995": 0.739, + "1996": 0.744, + "1997": 0.747, + "1998": 0.748, + "1999": 0.75, + "2000": 0.756, + "2001": 0.756, + "2002": 0.76, + "2003": 0.765, + "2004": 0.77, + "2005": 0.776, + "2006": 0.781, + "2007": 0.786, + "2008": 0.789, + "2009": 0.791, + "2010": 0.788, + "2011": 0.784, + "2012": 0.787, + "2013": 0.787, + "2014": 0.789, + "2015": 0.791, + "2016": 0.794, + "2017": 0.796, + "2018": 0.797, + "2019": 0.799, + "2020": 0.788, + "2021": 0.79 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr102", + "Region": "Christ Church and St. Philip", + "1990": 0.732, + "1991": 0.733, + "1992": 0.733, + "1993": 0.737, + "1994": 0.742, + "1995": 0.746, + "1996": 0.75, + "1997": 0.754, + "1998": 0.754, + "1999": 0.757, + "2000": 0.762, + "2001": 0.762, + "2002": 0.766, + "2003": 0.771, + "2004": 0.776, + "2005": 0.782, + "2006": 0.787, + "2007": 0.793, + "2008": 0.796, + "2009": 0.798, + "2010": 0.794, + "2011": 0.791, + "2012": 0.794, + "2013": 0.794, + "2014": 0.795, + "2015": 0.798, + "2016": 0.801, + "2017": 0.802, + "2018": 0.804, + "2019": 0.805, + "2020": 0.795, + "2021": 0.796 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr101", + "Region": "St Michael", + "1990": 0.718, + "1991": 0.72, + "1992": 0.72, + "1993": 0.724, + "1994": 0.728, + "1995": 0.732, + "1996": 0.737, + "1997": 0.74, + "1998": 0.741, + "1999": 0.743, + "2000": 0.749, + "2001": 0.749, + "2002": 0.753, + "2003": 0.758, + "2004": 0.762, + "2005": 0.768, + "2006": 0.773, + "2007": 0.779, + "2008": 0.782, + "2009": 0.784, + "2010": 0.78, + "2011": 0.777, + "2012": 0.779, + "2013": 0.78, + "2014": 0.781, + "2015": 0.784, + "2016": 0.787, + "2017": 0.788, + "2018": 0.789, + "2019": 0.791, + "2020": 0.781, + "2021": 0.782 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr103", + "Region": "St. James, St. George, and St. Thomas", + "1990": 0.737, + "1991": 0.739, + "1992": 0.738, + "1993": 0.743, + "1994": 0.747, + "1995": 0.751, + "1996": 0.756, + "1997": 0.759, + "1998": 0.76, + "1999": 0.762, + "2000": 0.768, + "2001": 0.768, + "2002": 0.772, + "2003": 0.777, + "2004": 0.782, + "2005": 0.788, + "2006": 0.793, + "2007": 0.799, + "2008": 0.802, + "2009": 0.804, + "2010": 0.8, + "2011": 0.797, + "2012": 0.8, + "2013": 0.8, + "2014": 0.801, + "2015": 0.804, + "2016": 0.807, + "2017": 0.809, + "2018": 0.81, + "2019": 0.811, + "2020": 0.801, + "2021": 0.802 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr104", + "Region": "St. Lucy, St. Peter, St. Andrew, St. Joseph, and St. John", + "1990": 0.718, + "1991": 0.719, + "1992": 0.719, + "1993": 0.723, + "1994": 0.728, + "1995": 0.732, + "1996": 0.736, + "1997": 0.74, + "1998": 0.74, + "1999": 0.743, + "2000": 0.748, + "2001": 0.748, + "2002": 0.752, + "2003": 0.757, + "2004": 0.762, + "2005": 0.768, + "2006": 0.773, + "2007": 0.778, + "2008": 0.782, + "2009": 0.783, + "2010": 0.78, + "2011": 0.776, + "2012": 0.779, + "2013": 0.779, + "2014": 0.781, + "2015": 0.783, + "2016": 0.786, + "2017": 0.788, + "2018": 0.789, + "2019": 0.791, + "2020": 0.78, + "2021": 0.782 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "National", + "GDLCODE": "BLRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.679, + "1996": 0.686, + "1997": 0.692, + "1998": 0.697, + "1999": 0.701, + "2000": 0.712, + "2001": 0.716, + "2002": 0.721, + "2003": 0.73, + "2004": 0.742, + "2005": 0.75, + "2006": 0.762, + "2007": 0.773, + "2008": 0.783, + "2009": 0.785, + "2010": 0.79, + "2011": 0.797, + "2012": 0.806, + "2013": 0.808, + "2014": 0.812, + "2015": 0.812, + "2016": 0.813, + "2017": 0.817, + "2018": 0.818, + "2019": 0.817, + "2020": 0.807, + "2021": 0.808 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr101", + "Region": "Brest region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.672, + "1996": 0.678, + "1997": 0.684, + "1998": 0.689, + "1999": 0.693, + "2000": 0.704, + "2001": 0.708, + "2002": 0.713, + "2003": 0.722, + "2004": 0.734, + "2005": 0.742, + "2006": 0.753, + "2007": 0.763, + "2008": 0.772, + "2009": 0.773, + "2010": 0.778, + "2011": 0.784, + "2012": 0.791, + "2013": 0.794, + "2014": 0.799, + "2015": 0.799, + "2016": 0.801, + "2017": 0.806, + "2018": 0.809, + "2019": 0.809, + "2020": 0.798, + "2021": 0.8 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr103", + "Region": "Gomel region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.674, + "1996": 0.681, + "1997": 0.687, + "1998": 0.692, + "1999": 0.696, + "2000": 0.706, + "2001": 0.711, + "2002": 0.715, + "2003": 0.725, + "2004": 0.737, + "2005": 0.745, + "2006": 0.757, + "2007": 0.768, + "2008": 0.778, + "2009": 0.781, + "2010": 0.786, + "2011": 0.793, + "2012": 0.802, + "2013": 0.804, + "2014": 0.809, + "2015": 0.809, + "2016": 0.811, + "2017": 0.816, + "2018": 0.818, + "2019": 0.817, + "2020": 0.807, + "2021": 0.808 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr104", + "Region": "Grodno region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.674, + "1996": 0.681, + "1997": 0.687, + "1998": 0.692, + "1999": 0.696, + "2000": 0.707, + "2001": 0.711, + "2002": 0.716, + "2003": 0.725, + "2004": 0.737, + "2005": 0.745, + "2006": 0.758, + "2007": 0.77, + "2008": 0.78, + "2009": 0.783, + "2010": 0.789, + "2011": 0.797, + "2012": 0.806, + "2013": 0.807, + "2014": 0.811, + "2015": 0.81, + "2016": 0.811, + "2017": 0.815, + "2018": 0.816, + "2019": 0.814, + "2020": 0.804, + "2021": 0.805 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr105", + "Region": "Minsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.693, + "1996": 0.699, + "1997": 0.706, + "1998": 0.711, + "1999": 0.715, + "2000": 0.726, + "2001": 0.73, + "2002": 0.735, + "2003": 0.744, + "2004": 0.756, + "2005": 0.765, + "2006": 0.776, + "2007": 0.788, + "2008": 0.798, + "2009": 0.8, + "2010": 0.806, + "2011": 0.812, + "2012": 0.821, + "2013": 0.822, + "2014": 0.826, + "2015": 0.825, + "2016": 0.825, + "2017": 0.828, + "2018": 0.829, + "2019": 0.828, + "2020": 0.817, + "2021": 0.818 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr106", + "Region": "Mogilev region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.672, + "1996": 0.678, + "1997": 0.685, + "1998": 0.69, + "1999": 0.694, + "2000": 0.704, + "2001": 0.709, + "2002": 0.713, + "2003": 0.723, + "2004": 0.734, + "2005": 0.743, + "2006": 0.753, + "2007": 0.763, + "2008": 0.771, + "2009": 0.773, + "2010": 0.776, + "2011": 0.782, + "2012": 0.789, + "2013": 0.791, + "2014": 0.797, + "2015": 0.797, + "2016": 0.799, + "2017": 0.803, + "2018": 0.806, + "2019": 0.806, + "2020": 0.796, + "2021": 0.797 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr102", + "Region": "Vitebsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.668, + "1996": 0.675, + "1997": 0.681, + "1998": 0.686, + "1999": 0.69, + "2000": 0.7, + "2001": 0.705, + "2002": 0.709, + "2003": 0.719, + "2004": 0.73, + "2005": 0.739, + "2006": 0.751, + "2007": 0.763, + "2008": 0.774, + "2009": 0.777, + "2010": 0.784, + "2011": 0.792, + "2012": 0.801, + "2013": 0.802, + "2014": 0.806, + "2015": 0.805, + "2016": 0.806, + "2017": 0.809, + "2018": 0.81, + "2019": 0.809, + "2020": 0.798, + "2021": 0.799 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "National", + "GDLCODE": "BELt", + "Region": "Total", + "1990": 0.816, + "1991": 0.819, + "1992": 0.835, + "1993": 0.85, + "1994": 0.858, + "1995": 0.865, + "1996": 0.871, + "1997": 0.876, + "1998": 0.878, + "1999": 0.882, + "2000": 0.887, + "2001": 0.89, + "2002": 0.892, + "2003": 0.895, + "2004": 0.9, + "2005": 0.902, + "2006": 0.905, + "2007": 0.908, + "2008": 0.908, + "2009": 0.91, + "2010": 0.912, + "2011": 0.914, + "2012": 0.915, + "2013": 0.916, + "2014": 0.921, + "2015": 0.924, + "2016": 0.927, + "2017": 0.931, + "2018": 0.933, + "2019": 0.936, + "2020": 0.928, + "2021": 0.937 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr101", + "Region": "Bruxelles - Brussel", + "1990": 0.874, + "1991": 0.876, + "1992": 0.893, + "1993": 0.905, + "1994": 0.906, + "1995": 0.907, + "1996": 0.912, + "1997": 0.913, + "1998": 0.915, + "1999": 0.916, + "2000": 0.919, + "2001": 0.919, + "2002": 0.921, + "2003": 0.923, + "2004": 0.928, + "2005": 0.93, + "2006": 0.93, + "2007": 0.933, + "2008": 0.931, + "2009": 0.935, + "2010": 0.936, + "2011": 0.94, + "2012": 0.937, + "2013": 0.938, + "2014": 0.942, + "2015": 0.945, + "2016": 0.948, + "2017": 0.95, + "2018": 0.953, + "2019": 0.953, + "2020": 0.947, + "2021": 0.953 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr102", + "Region": "Prov. Antwerpen", + "1990": 0.83, + "1991": 0.835, + "1992": 0.851, + "1993": 0.864, + "1994": 0.875, + "1995": 0.881, + "1996": 0.888, + "1997": 0.892, + "1998": 0.894, + "1999": 0.897, + "2000": 0.899, + "2001": 0.904, + "2002": 0.905, + "2003": 0.907, + "2004": 0.912, + "2005": 0.915, + "2006": 0.917, + "2007": 0.92, + "2008": 0.922, + "2009": 0.922, + "2010": 0.925, + "2011": 0.927, + "2012": 0.927, + "2013": 0.929, + "2014": 0.935, + "2015": 0.938, + "2016": 0.939, + "2017": 0.943, + "2018": 0.946, + "2019": 0.95, + "2020": 0.942, + "2021": 0.95 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr107", + "Region": "Prov. Brabant Wallon", + "1990": 0.799, + "1991": 0.803, + "1992": 0.819, + "1993": 0.832, + "1994": 0.841, + "1995": 0.847, + "1996": 0.851, + "1997": 0.857, + "1998": 0.858, + "1999": 0.864, + "2000": 0.869, + "2001": 0.876, + "2002": 0.881, + "2003": 0.882, + "2004": 0.888, + "2005": 0.895, + "2006": 0.898, + "2007": 0.902, + "2008": 0.903, + "2009": 0.907, + "2010": 0.913, + "2011": 0.914, + "2012": 0.913, + "2013": 0.921, + "2014": 0.925, + "2015": 0.931, + "2016": 0.933, + "2017": 0.936, + "2018": 0.949, + "2019": 0.951, + "2020": 0.943, + "2021": 0.951 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr108", + "Region": "Prov. Hainaut", + "1990": 0.775, + "1991": 0.778, + "1992": 0.792, + "1993": 0.806, + "1994": 0.813, + "1995": 0.821, + "1996": 0.826, + "1997": 0.829, + "1998": 0.832, + "1999": 0.836, + "2000": 0.84, + "2001": 0.845, + "2002": 0.847, + "2003": 0.853, + "2004": 0.854, + "2005": 0.858, + "2006": 0.862, + "2007": 0.865, + "2008": 0.868, + "2009": 0.867, + "2010": 0.871, + "2011": 0.872, + "2012": 0.874, + "2013": 0.875, + "2014": 0.879, + "2015": 0.88, + "2016": 0.883, + "2017": 0.888, + "2018": 0.889, + "2019": 0.893, + "2020": 0.884, + "2021": 0.893 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr109", + "Region": "Prov. Liege", + "1990": 0.774, + "1991": 0.779, + "1992": 0.793, + "1993": 0.807, + "1994": 0.815, + "1995": 0.822, + "1996": 0.828, + "1997": 0.832, + "1998": 0.835, + "1999": 0.838, + "2000": 0.843, + "2001": 0.849, + "2002": 0.852, + "2003": 0.857, + "2004": 0.859, + "2005": 0.864, + "2006": 0.869, + "2007": 0.871, + "2008": 0.872, + "2009": 0.874, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.882, + "2014": 0.889, + "2015": 0.891, + "2016": 0.894, + "2017": 0.895, + "2018": 0.901, + "2019": 0.908, + "2020": 0.899, + "2021": 0.908 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr103", + "Region": "Prov. Limburg", + "1990": 0.805, + "1991": 0.807, + "1992": 0.823, + "1993": 0.838, + "1994": 0.846, + "1995": 0.853, + "1996": 0.861, + "1997": 0.865, + "1998": 0.867, + "1999": 0.87, + "2000": 0.874, + "2001": 0.883, + "2002": 0.883, + "2003": 0.884, + "2004": 0.893, + "2005": 0.891, + "2006": 0.897, + "2007": 0.901, + "2008": 0.902, + "2009": 0.901, + "2010": 0.903, + "2011": 0.905, + "2012": 0.907, + "2013": 0.909, + "2014": 0.915, + "2015": 0.917, + "2016": 0.921, + "2017": 0.926, + "2018": 0.927, + "2019": 0.93, + "2020": 0.922, + "2021": 0.93 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr110", + "Region": "Prov. Luxembourg", + "1990": 0.781, + "1991": 0.783, + "1992": 0.8, + "1993": 0.81, + "1994": 0.819, + "1995": 0.827, + "1996": 0.832, + "1997": 0.835, + "1998": 0.838, + "1999": 0.842, + "2000": 0.85, + "2001": 0.851, + "2002": 0.857, + "2003": 0.858, + "2004": 0.86, + "2005": 0.864, + "2006": 0.872, + "2007": 0.872, + "2008": 0.871, + "2009": 0.874, + "2010": 0.875, + "2011": 0.877, + "2012": 0.88, + "2013": 0.877, + "2014": 0.892, + "2015": 0.894, + "2016": 0.892, + "2017": 0.896, + "2018": 0.902, + "2019": 0.904, + "2020": 0.896, + "2021": 0.904 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr111", + "Region": "Prov. Namur", + "1990": 0.781, + "1991": 0.781, + "1992": 0.803, + "1993": 0.813, + "1994": 0.821, + "1995": 0.826, + "1996": 0.836, + "1997": 0.839, + "1998": 0.843, + "1999": 0.846, + "2000": 0.85, + "2001": 0.856, + "2002": 0.858, + "2003": 0.864, + "2004": 0.865, + "2005": 0.872, + "2006": 0.878, + "2007": 0.882, + "2008": 0.88, + "2009": 0.884, + "2010": 0.886, + "2011": 0.887, + "2012": 0.887, + "2013": 0.886, + "2014": 0.892, + "2015": 0.895, + "2016": 0.897, + "2017": 0.902, + "2018": 0.903, + "2019": 0.905, + "2020": 0.897, + "2021": 0.905 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr104", + "Region": "Prov. Oost-Vlaanderen", + "1990": 0.826, + "1991": 0.83, + "1992": 0.846, + "1993": 0.856, + "1994": 0.862, + "1995": 0.864, + "1996": 0.868, + "1997": 0.871, + "1998": 0.875, + "1999": 0.877, + "2000": 0.881, + "2001": 0.882, + "2002": 0.887, + "2003": 0.889, + "2004": 0.894, + "2005": 0.897, + "2006": 0.899, + "2007": 0.902, + "2008": 0.904, + "2009": 0.907, + "2010": 0.91, + "2011": 0.911, + "2012": 0.912, + "2013": 0.916, + "2014": 0.92, + "2015": 0.922, + "2016": 0.928, + "2017": 0.932, + "2018": 0.934, + "2019": 0.936, + "2020": 0.928, + "2021": 0.936 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr105", + "Region": "Prov. Vlaams-Brabant", + "1990": 0.817, + "1991": 0.821, + "1992": 0.837, + "1993": 0.852, + "1994": 0.858, + "1995": 0.867, + "1996": 0.873, + "1997": 0.877, + "1998": 0.88, + "1999": 0.882, + "2000": 0.888, + "2001": 0.897, + "2002": 0.898, + "2003": 0.903, + "2004": 0.907, + "2005": 0.912, + "2006": 0.919, + "2007": 0.922, + "2008": 0.922, + "2009": 0.928, + "2010": 0.928, + "2011": 0.929, + "2012": 0.932, + "2013": 0.935, + "2014": 0.939, + "2015": 0.942, + "2016": 0.947, + "2017": 0.951, + "2018": 0.944, + "2019": 0.949, + "2020": 0.941, + "2021": 0.949 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr106", + "Region": "Prov. West-Vlaanderen", + "1990": 0.806, + "1991": 0.811, + "1992": 0.825, + "1993": 0.838, + "1994": 0.846, + "1995": 0.854, + "1996": 0.858, + "1997": 0.865, + "1998": 0.867, + "1999": 0.871, + "2000": 0.876, + "2001": 0.883, + "2002": 0.885, + "2003": 0.889, + "2004": 0.892, + "2005": 0.898, + "2006": 0.904, + "2007": 0.906, + "2008": 0.907, + "2009": 0.908, + "2010": 0.911, + "2011": 0.915, + "2012": 0.916, + "2013": 0.917, + "2014": 0.922, + "2015": 0.924, + "2016": 0.931, + "2017": 0.932, + "2018": 0.934, + "2019": 0.94, + "2020": 0.932, + "2021": 0.94 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "National", + "GDLCODE": "BLZt", + "Region": "Total", + "1990": 0.593, + "1991": 0.6, + "1992": 0.608, + "1993": 0.614, + "1994": 0.618, + "1995": 0.62, + "1996": 0.623, + "1997": 0.625, + "1998": 0.626, + "1999": 0.633, + "2000": 0.64, + "2001": 0.643, + "2002": 0.652, + "2003": 0.66, + "2004": 0.667, + "2005": 0.664, + "2006": 0.68, + "2007": 0.685, + "2008": 0.693, + "2009": 0.701, + "2010": 0.707, + "2011": 0.709, + "2012": 0.713, + "2013": 0.712, + "2014": 0.709, + "2015": 0.708, + "2016": 0.712, + "2017": 0.707, + "2018": 0.706, + "2019": 0.705, + "2020": 0.69, + "2021": 0.683 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr102", + "Region": "Belize", + "1990": 0.621, + "1991": 0.628, + "1992": 0.636, + "1993": 0.643, + "1994": 0.647, + "1995": 0.649, + "1996": 0.652, + "1997": 0.654, + "1998": 0.655, + "1999": 0.663, + "2000": 0.67, + "2001": 0.673, + "2002": 0.682, + "2003": 0.691, + "2004": 0.698, + "2005": 0.696, + "2006": 0.712, + "2007": 0.718, + "2008": 0.726, + "2009": 0.734, + "2010": 0.74, + "2011": 0.741, + "2012": 0.745, + "2013": 0.743, + "2014": 0.74, + "2015": 0.74, + "2016": 0.743, + "2017": 0.738, + "2018": 0.737, + "2019": 0.736, + "2020": 0.72, + "2021": 0.713 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr103", + "Region": "Cayo", + "1990": 0.581, + "1991": 0.588, + "1992": 0.595, + "1993": 0.601, + "1994": 0.605, + "1995": 0.607, + "1996": 0.61, + "1997": 0.612, + "1998": 0.612, + "1999": 0.619, + "2000": 0.626, + "2001": 0.629, + "2002": 0.638, + "2003": 0.646, + "2004": 0.653, + "2005": 0.65, + "2006": 0.664, + "2007": 0.658, + "2008": 0.654, + "2009": 0.649, + "2010": 0.642, + "2011": 0.631, + "2012": 0.635, + "2013": 0.633, + "2014": 0.631, + "2015": 0.631, + "2016": 0.635, + "2017": 0.631, + "2018": 0.63, + "2019": 0.629, + "2020": 0.615, + "2021": 0.61 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr101", + "Region": "Corozal, Orange Walk", + "1990": 0.575, + "1991": 0.582, + "1992": 0.589, + "1993": 0.595, + "1994": 0.599, + "1995": 0.601, + "1996": 0.604, + "1997": 0.606, + "1998": 0.607, + "1999": 0.613, + "2000": 0.62, + "2001": 0.624, + "2002": 0.632, + "2003": 0.64, + "2004": 0.647, + "2005": 0.644, + "2006": 0.659, + "2007": 0.663, + "2008": 0.67, + "2009": 0.676, + "2010": 0.681, + "2011": 0.681, + "2012": 0.685, + "2013": 0.683, + "2014": 0.68, + "2015": 0.68, + "2016": 0.684, + "2017": 0.679, + "2018": 0.678, + "2019": 0.677, + "2020": 0.662, + "2021": 0.656 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr104", + "Region": "Stann Creek, Toledo", + "1990": 0.555, + "1991": 0.562, + "1992": 0.569, + "1993": 0.575, + "1994": 0.579, + "1995": 0.581, + "1996": 0.583, + "1997": 0.585, + "1998": 0.586, + "1999": 0.592, + "2000": 0.599, + "2001": 0.602, + "2002": 0.61, + "2003": 0.619, + "2004": 0.625, + "2005": 0.622, + "2006": 0.637, + "2007": 0.652, + "2008": 0.671, + "2009": 0.689, + "2010": 0.706, + "2011": 0.72, + "2012": 0.724, + "2013": 0.722, + "2014": 0.719, + "2015": 0.719, + "2016": 0.723, + "2017": 0.718, + "2018": 0.717, + "2019": 0.716, + "2020": 0.701, + "2021": 0.694 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "National", + "GDLCODE": "BENt", + "Region": "Total", + "1990": 0.359, + "1991": 0.364, + "1992": 0.369, + "1993": 0.375, + "1994": 0.38, + "1995": 0.386, + "1996": 0.391, + "1997": 0.397, + "1998": 0.402, + "1999": 0.409, + "2000": 0.416, + "2001": 0.428, + "2002": 0.436, + "2003": 0.443, + "2004": 0.45, + "2005": 0.457, + "2006": 0.464, + "2007": 0.472, + "2008": 0.48, + "2009": 0.486, + "2010": 0.492, + "2011": 0.499, + "2012": 0.509, + "2013": 0.52, + "2014": 0.524, + "2015": 0.529, + "2016": 0.53, + "2017": 0.53, + "2018": 0.53, + "2019": 0.53, + "2020": 0.524, + "2021": 0.525 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr101", + "Region": "Atacora (incl Donga)", + "1990": 0.315, + "1991": 0.319, + "1992": 0.323, + "1993": 0.329, + "1994": 0.332, + "1995": 0.337, + "1996": 0.341, + "1997": 0.342, + "1998": 0.342, + "1999": 0.344, + "2000": 0.346, + "2001": 0.353, + "2002": 0.363, + "2003": 0.372, + "2004": 0.381, + "2005": 0.389, + "2006": 0.397, + "2007": 0.406, + "2008": 0.413, + "2009": 0.419, + "2010": 0.425, + "2011": 0.432, + "2012": 0.445, + "2013": 0.459, + "2014": 0.467, + "2015": 0.475, + "2016": 0.48, + "2017": 0.483, + "2018": 0.487, + "2019": 0.487, + "2020": 0.481, + "2021": 0.481 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr102", + "Region": "Atlantique (incl Littoral (Cotonou))", + "1990": 0.445, + "1991": 0.452, + "1992": 0.458, + "1993": 0.467, + "1994": 0.473, + "1995": 0.48, + "1996": 0.487, + "1997": 0.495, + "1998": 0.502, + "1999": 0.51, + "2000": 0.519, + "2001": 0.534, + "2002": 0.538, + "2003": 0.541, + "2004": 0.543, + "2005": 0.545, + "2006": 0.549, + "2007": 0.556, + "2008": 0.562, + "2009": 0.567, + "2010": 0.572, + "2011": 0.579, + "2012": 0.591, + "2013": 0.604, + "2014": 0.611, + "2015": 0.617, + "2016": 0.62, + "2017": 0.622, + "2018": 0.625, + "2019": 0.626, + "2020": 0.62, + "2021": 0.62 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr103", + "Region": "Borgou (incl Alibori)", + "1990": 0.305, + "1991": 0.309, + "1992": 0.313, + "1993": 0.319, + "1994": 0.322, + "1995": 0.327, + "1996": 0.331, + "1997": 0.342, + "1998": 0.351, + "1999": 0.361, + "2000": 0.37, + "2001": 0.383, + "2002": 0.385, + "2003": 0.386, + "2004": 0.387, + "2005": 0.388, + "2006": 0.389, + "2007": 0.397, + "2008": 0.404, + "2009": 0.409, + "2010": 0.415, + "2011": 0.421, + "2012": 0.43, + "2013": 0.439, + "2014": 0.442, + "2015": 0.445, + "2016": 0.445, + "2017": 0.443, + "2018": 0.442, + "2019": 0.443, + "2020": 0.437, + "2021": 0.438 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr104", + "Region": "Mono (incl Couffo)", + "1990": 0.345, + "1991": 0.35, + "1992": 0.354, + "1993": 0.36, + "1994": 0.364, + "1995": 0.369, + "1996": 0.374, + "1997": 0.381, + "1998": 0.386, + "1999": 0.393, + "2000": 0.4, + "2001": 0.413, + "2002": 0.425, + "2003": 0.434, + "2004": 0.444, + "2005": 0.454, + "2006": 0.464, + "2007": 0.47, + "2008": 0.475, + "2009": 0.479, + "2010": 0.483, + "2011": 0.488, + "2012": 0.499, + "2013": 0.512, + "2014": 0.517, + "2015": 0.524, + "2016": 0.526, + "2017": 0.527, + "2018": 0.529, + "2019": 0.529, + "2020": 0.523, + "2021": 0.524 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr105", + "Region": "Queme (incl Plateau)", + "1990": 0.37, + "1991": 0.375, + "1992": 0.379, + "1993": 0.386, + "1994": 0.39, + "1995": 0.396, + "1996": 0.401, + "1997": 0.407, + "1998": 0.412, + "1999": 0.419, + "2000": 0.426, + "2001": 0.439, + "2002": 0.448, + "2003": 0.456, + "2004": 0.463, + "2005": 0.47, + "2006": 0.478, + "2007": 0.486, + "2008": 0.494, + "2009": 0.5, + "2010": 0.507, + "2011": 0.514, + "2012": 0.526, + "2013": 0.539, + "2014": 0.545, + "2015": 0.552, + "2016": 0.555, + "2017": 0.557, + "2018": 0.559, + "2019": 0.559, + "2020": 0.552, + "2021": 0.553 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr106", + "Region": "Zou (incl Collines)", + "1990": 0.34, + "1991": 0.345, + "1992": 0.349, + "1993": 0.355, + "1994": 0.359, + "1995": 0.365, + "1996": 0.37, + "1997": 0.373, + "1998": 0.374, + "1999": 0.378, + "2000": 0.382, + "2001": 0.39, + "2002": 0.404, + "2003": 0.416, + "2004": 0.428, + "2005": 0.44, + "2006": 0.452, + "2007": 0.457, + "2008": 0.462, + "2009": 0.465, + "2010": 0.469, + "2011": 0.472, + "2012": 0.487, + "2013": 0.503, + "2014": 0.513, + "2015": 0.523, + "2016": 0.53, + "2017": 0.535, + "2018": 0.541, + "2019": 0.541, + "2020": 0.534, + "2021": 0.535 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "National", + "GDLCODE": "BTNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.581, + "2011": 0.591, + "2012": 0.598, + "2013": 0.606, + "2014": 0.617, + "2015": 0.627, + "2016": 0.638, + "2017": 0.647, + "2018": 0.658, + "2019": 0.671, + "2020": 0.668, + "2021": 0.666 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr101", + "Region": "Bumthang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.587, + "2011": 0.598, + "2012": 0.605, + "2013": 0.613, + "2014": 0.623, + "2015": 0.634, + "2016": 0.644, + "2017": 0.653, + "2018": 0.664, + "2019": 0.677, + "2020": 0.674, + "2021": 0.672 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr102", + "Region": "Chukha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.601, + "2011": 0.61, + "2012": 0.617, + "2013": 0.627, + "2014": 0.64, + "2015": 0.652, + "2016": 0.665, + "2017": 0.676, + "2018": 0.689, + "2019": 0.705, + "2020": 0.701, + "2021": 0.7 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr103", + "Region": "Dagana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.543, + "2011": 0.553, + "2012": 0.56, + "2013": 0.566, + "2014": 0.575, + "2015": 0.584, + "2016": 0.592, + "2017": 0.6, + "2018": 0.608, + "2019": 0.619, + "2020": 0.615, + "2021": 0.614 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr104", + "Region": "Gasa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.475, + "2011": 0.484, + "2012": 0.49, + "2013": 0.496, + "2014": 0.505, + "2015": 0.513, + "2016": 0.522, + "2017": 0.53, + "2018": 0.538, + "2019": 0.549, + "2020": 0.546, + "2021": 0.545 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr105", + "Region": "Haa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.625, + "2011": 0.636, + "2012": 0.644, + "2013": 0.652, + "2014": 0.662, + "2015": 0.673, + "2016": 0.684, + "2017": 0.694, + "2018": 0.705, + "2019": 0.718, + "2020": 0.715, + "2021": 0.713 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr106", + "Region": "Lhuntse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.547, + "2011": 0.558, + "2012": 0.566, + "2013": 0.57, + "2014": 0.577, + "2015": 0.585, + "2016": 0.592, + "2017": 0.598, + "2018": 0.605, + "2019": 0.613, + "2020": 0.61, + "2021": 0.609 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr107", + "Region": "Mongar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.54, + "2011": 0.55, + "2012": 0.557, + "2013": 0.563, + "2014": 0.571, + "2015": 0.58, + "2016": 0.588, + "2017": 0.595, + "2018": 0.603, + "2019": 0.613, + "2020": 0.61, + "2021": 0.609 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr108", + "Region": "Paro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.64, + "2011": 0.651, + "2012": 0.658, + "2013": 0.667, + "2014": 0.679, + "2015": 0.691, + "2016": 0.703, + "2017": 0.714, + "2018": 0.726, + "2019": 0.741, + "2020": 0.738, + "2021": 0.736 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr109", + "Region": "Pemagatshel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.55, + "2011": 0.561, + "2012": 0.569, + "2013": 0.573, + "2014": 0.58, + "2015": 0.588, + "2016": 0.595, + "2017": 0.602, + "2018": 0.608, + "2019": 0.617, + "2020": 0.614, + "2021": 0.612 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr110", + "Region": "Punakha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.581, + "2011": 0.591, + "2012": 0.598, + "2013": 0.606, + "2014": 0.617, + "2015": 0.627, + "2016": 0.638, + "2017": 0.647, + "2018": 0.658, + "2019": 0.671, + "2020": 0.667, + "2021": 0.666 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr111", + "Region": "Samdrup jongkhar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.55, + "2011": 0.56, + "2012": 0.567, + "2013": 0.573, + "2014": 0.582, + "2015": 0.59, + "2016": 0.599, + "2017": 0.607, + "2018": 0.615, + "2019": 0.625, + "2020": 0.622, + "2021": 0.621 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr112", + "Region": "Samtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.554, + "2011": 0.564, + "2012": 0.571, + "2013": 0.577, + "2014": 0.586, + "2015": 0.596, + "2016": 0.605, + "2017": 0.613, + "2018": 0.622, + "2019": 0.633, + "2020": 0.63, + "2021": 0.629 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr113", + "Region": "Sarpang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.607, + "2011": 0.617, + "2012": 0.624, + "2013": 0.633, + "2014": 0.644, + "2015": 0.655, + "2016": 0.666, + "2017": 0.677, + "2018": 0.688, + "2019": 0.702, + "2020": 0.699, + "2021": 0.697 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr114", + "Region": "Thimphu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.699, + "2011": 0.708, + "2012": 0.715, + "2013": 0.73, + "2014": 0.747, + "2015": 0.765, + "2016": 0.781, + "2017": 0.797, + "2018": 0.816, + "2019": 0.837, + "2020": 0.834, + "2021": 0.832 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr115", + "Region": "Trashigang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.521, + "2011": 0.531, + "2012": 0.538, + "2013": 0.543, + "2014": 0.55, + "2015": 0.557, + "2016": 0.565, + "2017": 0.571, + "2018": 0.578, + "2019": 0.587, + "2020": 0.584, + "2021": 0.582 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr116", + "Region": "Trashiyangtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.528, + "2011": 0.538, + "2012": 0.545, + "2013": 0.55, + "2014": 0.558, + "2015": 0.566, + "2016": 0.574, + "2017": 0.581, + "2018": 0.589, + "2019": 0.599, + "2020": 0.596, + "2021": 0.594 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr117", + "Region": "Trongsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.548, + "2011": 0.558, + "2012": 0.565, + "2013": 0.572, + "2014": 0.581, + "2015": 0.591, + "2016": 0.6, + "2017": 0.608, + "2018": 0.617, + "2019": 0.629, + "2020": 0.626, + "2021": 0.624 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr118", + "Region": "Tsirang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.562, + "2011": 0.573, + "2012": 0.58, + "2013": 0.586, + "2014": 0.595, + "2015": 0.605, + "2016": 0.614, + "2017": 0.622, + "2018": 0.631, + "2019": 0.643, + "2020": 0.639, + "2021": 0.638 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr119", + "Region": "Wangdi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.541, + "2011": 0.551, + "2012": 0.559, + "2013": 0.564, + "2014": 0.573, + "2015": 0.581, + "2016": 0.59, + "2017": 0.597, + "2018": 0.606, + "2019": 0.616, + "2020": 0.613, + "2021": 0.612 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr120", + "Region": "Zhemgang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.542, + "2011": 0.552, + "2012": 0.56, + "2013": 0.565, + "2014": 0.573, + "2015": 0.581, + "2016": 0.589, + "2017": 0.596, + "2018": 0.604, + "2019": 0.613, + "2020": 0.61, + "2021": 0.609 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "National", + "GDLCODE": "BOLt", + "Region": "Total", + "1990": 0.55, + "1991": 0.56, + "1992": 0.568, + "1993": 0.578, + "1994": 0.587, + "1995": 0.598, + "1996": 0.609, + "1997": 0.62, + "1998": 0.632, + "1999": 0.631, + "2000": 0.632, + "2001": 0.632, + "2002": 0.63, + "2003": 0.627, + "2004": 0.626, + "2005": 0.635, + "2006": 0.638, + "2007": 0.645, + "2008": 0.652, + "2009": 0.658, + "2010": 0.662, + "2011": 0.668, + "2012": 0.674, + "2013": 0.682, + "2014": 0.684, + "2015": 0.69, + "2016": 0.701, + "2017": 0.708, + "2018": 0.714, + "2019": 0.717, + "2020": 0.694, + "2021": 0.692 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr108", + "Region": "Beni", + "1990": 0.544, + "1991": 0.554, + "1992": 0.562, + "1993": 0.571, + "1994": 0.58, + "1995": 0.591, + "1996": 0.601, + "1997": 0.613, + "1998": 0.624, + "1999": 0.629, + "2000": 0.634, + "2001": 0.639, + "2002": 0.643, + "2003": 0.645, + "2004": 0.64, + "2005": 0.647, + "2006": 0.647, + "2007": 0.652, + "2008": 0.657, + "2009": 0.662, + "2010": 0.667, + "2011": 0.674, + "2012": 0.679, + "2013": 0.688, + "2014": 0.69, + "2015": 0.696, + "2016": 0.708, + "2017": 0.715, + "2018": 0.721, + "2019": 0.724, + "2020": 0.701, + "2021": 0.699 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr101", + "Region": "Chuquisaca", + "1990": 0.5, + "1991": 0.509, + "1992": 0.516, + "1993": 0.525, + "1994": 0.534, + "1995": 0.544, + "1996": 0.554, + "1997": 0.565, + "1998": 0.576, + "1999": 0.581, + "2000": 0.586, + "2001": 0.591, + "2002": 0.596, + "2003": 0.598, + "2004": 0.598, + "2005": 0.609, + "2006": 0.613, + "2007": 0.622, + "2008": 0.629, + "2009": 0.634, + "2010": 0.638, + "2011": 0.644, + "2012": 0.649, + "2013": 0.657, + "2014": 0.657, + "2015": 0.662, + "2016": 0.673, + "2017": 0.681, + "2018": 0.686, + "2019": 0.688, + "2020": 0.666, + "2021": 0.665 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr103", + "Region": "Cochabamba", + "1990": 0.557, + "1991": 0.567, + "1992": 0.575, + "1993": 0.585, + "1994": 0.594, + "1995": 0.605, + "1996": 0.616, + "1997": 0.628, + "1998": 0.64, + "1999": 0.639, + "2000": 0.639, + "2001": 0.639, + "2002": 0.637, + "2003": 0.634, + "2004": 0.629, + "2005": 0.636, + "2006": 0.635, + "2007": 0.64, + "2008": 0.643, + "2009": 0.649, + "2010": 0.653, + "2011": 0.659, + "2012": 0.664, + "2013": 0.673, + "2014": 0.674, + "2015": 0.68, + "2016": 0.691, + "2017": 0.698, + "2018": 0.703, + "2019": 0.706, + "2020": 0.684, + "2021": 0.682 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr102", + "Region": "La Paz", + "1990": 0.553, + "1991": 0.563, + "1992": 0.571, + "1993": 0.581, + "1994": 0.59, + "1995": 0.601, + "1996": 0.612, + "1997": 0.624, + "1998": 0.635, + "1999": 0.63, + "2000": 0.625, + "2001": 0.62, + "2002": 0.612, + "2003": 0.603, + "2004": 0.607, + "2005": 0.622, + "2006": 0.63, + "2007": 0.641, + "2008": 0.652, + "2009": 0.658, + "2010": 0.663, + "2011": 0.669, + "2012": 0.674, + "2013": 0.683, + "2014": 0.685, + "2015": 0.69, + "2016": 0.702, + "2017": 0.709, + "2018": 0.715, + "2019": 0.718, + "2020": 0.695, + "2021": 0.693 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr104", + "Region": "Oruro", + "1990": 0.575, + "1991": 0.585, + "1992": 0.593, + "1993": 0.603, + "1994": 0.613, + "1995": 0.624, + "1996": 0.636, + "1997": 0.648, + "1998": 0.66, + "1999": 0.66, + "2000": 0.661, + "2001": 0.661, + "2002": 0.66, + "2003": 0.658, + "2004": 0.651, + "2005": 0.657, + "2006": 0.655, + "2007": 0.658, + "2008": 0.66, + "2009": 0.666, + "2010": 0.67, + "2011": 0.677, + "2012": 0.682, + "2013": 0.691, + "2014": 0.692, + "2015": 0.698, + "2016": 0.71, + "2017": 0.717, + "2018": 0.723, + "2019": 0.726, + "2020": 0.703, + "2021": 0.701 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr109", + "Region": "Pando", + "1990": 0.508, + "1991": 0.517, + "1992": 0.524, + "1993": 0.533, + "1994": 0.541, + "1995": 0.551, + "1996": 0.561, + "1997": 0.571, + "1998": 0.581, + "1999": 0.593, + "2000": 0.605, + "2001": 0.618, + "2002": 0.628, + "2003": 0.637, + "2004": 0.637, + "2005": 0.649, + "2006": 0.654, + "2007": 0.664, + "2008": 0.673, + "2009": 0.679, + "2010": 0.684, + "2011": 0.691, + "2012": 0.696, + "2013": 0.706, + "2014": 0.708, + "2015": 0.714, + "2016": 0.726, + "2017": 0.733, + "2018": 0.739, + "2019": 0.743, + "2020": 0.719, + "2021": 0.717 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr105", + "Region": "Potosi", + "1990": 0.475, + "1991": 0.484, + "1992": 0.491, + "1993": 0.5, + "1994": 0.508, + "1995": 0.518, + "1996": 0.528, + "1997": 0.539, + "1998": 0.55, + "1999": 0.549, + "2000": 0.55, + "2001": 0.55, + "2002": 0.548, + "2003": 0.546, + "2004": 0.546, + "2005": 0.556, + "2006": 0.56, + "2007": 0.567, + "2008": 0.574, + "2009": 0.578, + "2010": 0.582, + "2011": 0.587, + "2012": 0.592, + "2013": 0.599, + "2014": 0.6, + "2015": 0.605, + "2016": 0.615, + "2017": 0.621, + "2018": 0.626, + "2019": 0.628, + "2020": 0.608, + "2021": 0.606 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr107", + "Region": "Santa Cruz", + "1990": 0.588, + "1991": 0.598, + "1992": 0.606, + "1993": 0.616, + "1994": 0.626, + "1995": 0.637, + "1996": 0.648, + "1997": 0.66, + "1998": 0.672, + "1999": 0.673, + "2000": 0.674, + "2001": 0.675, + "2002": 0.675, + "2003": 0.673, + "2004": 0.672, + "2005": 0.683, + "2006": 0.688, + "2007": 0.697, + "2008": 0.705, + "2009": 0.712, + "2010": 0.717, + "2011": 0.723, + "2012": 0.73, + "2013": 0.739, + "2014": 0.741, + "2015": 0.747, + "2016": 0.759, + "2017": 0.767, + "2018": 0.773, + "2019": 0.777, + "2020": 0.753, + "2021": 0.751 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr106", + "Region": "Tarija", + "1990": 0.562, + "1991": 0.572, + "1992": 0.579, + "1993": 0.589, + "1994": 0.599, + "1995": 0.61, + "1996": 0.62, + "1997": 0.632, + "1998": 0.644, + "1999": 0.647, + "2000": 0.652, + "2001": 0.657, + "2002": 0.659, + "2003": 0.661, + "2004": 0.657, + "2005": 0.664, + "2006": 0.665, + "2007": 0.67, + "2008": 0.674, + "2009": 0.68, + "2010": 0.685, + "2011": 0.691, + "2012": 0.696, + "2013": 0.705, + "2014": 0.706, + "2015": 0.712, + "2016": 0.724, + "2017": 0.731, + "2018": 0.737, + "2019": 0.74, + "2020": 0.717, + "2021": 0.715 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "National", + "GDLCODE": "BIHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.667, + "2001": 0.672, + "2002": 0.675, + "2003": 0.683, + "2004": 0.69, + "2005": 0.691, + "2006": 0.699, + "2007": 0.707, + "2008": 0.718, + "2009": 0.721, + "2010": 0.725, + "2011": 0.732, + "2012": 0.745, + "2013": 0.751, + "2014": 0.756, + "2015": 0.761, + "2016": 0.77, + "2017": 0.772, + "2018": 0.776, + "2019": 0.783, + "2020": 0.781, + "2021": 0.78 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr103", + "Region": "Central Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.684, + "2001": 0.69, + "2002": 0.692, + "2003": 0.701, + "2004": 0.708, + "2005": 0.709, + "2006": 0.717, + "2007": 0.721, + "2008": 0.729, + "2009": 0.728, + "2010": 0.729, + "2011": 0.733, + "2012": 0.746, + "2013": 0.752, + "2014": 0.758, + "2015": 0.763, + "2016": 0.772, + "2017": 0.774, + "2018": 0.778, + "2019": 0.785, + "2020": 0.783, + "2021": 0.782 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr102", + "Region": "Northern Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.661, + "2001": 0.667, + "2002": 0.669, + "2003": 0.678, + "2004": 0.684, + "2005": 0.686, + "2006": 0.694, + "2007": 0.701, + "2008": 0.713, + "2009": 0.715, + "2010": 0.719, + "2011": 0.726, + "2012": 0.739, + "2013": 0.744, + "2014": 0.749, + "2015": 0.754, + "2016": 0.763, + "2017": 0.765, + "2018": 0.769, + "2019": 0.776, + "2020": 0.774, + "2021": 0.773 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr105", + "Region": "Republica Srpska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.657, + "2001": 0.662, + "2002": 0.665, + "2003": 0.674, + "2004": 0.68, + "2005": 0.681, + "2006": 0.689, + "2007": 0.699, + "2008": 0.711, + "2009": 0.715, + "2010": 0.721, + "2011": 0.73, + "2012": 0.742, + "2013": 0.748, + "2014": 0.753, + "2015": 0.758, + "2016": 0.767, + "2017": 0.769, + "2018": 0.773, + "2019": 0.78, + "2020": 0.778, + "2021": 0.777 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr101", + "Region": "Western Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.66, + "2001": 0.665, + "2002": 0.668, + "2003": 0.677, + "2004": 0.683, + "2005": 0.684, + "2006": 0.692, + "2007": 0.7, + "2008": 0.711, + "2009": 0.714, + "2010": 0.718, + "2011": 0.725, + "2012": 0.738, + "2013": 0.744, + "2014": 0.75, + "2015": 0.755, + "2016": 0.764, + "2017": 0.766, + "2018": 0.77, + "2019": 0.777, + "2020": 0.775, + "2021": 0.774 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr104", + "Region": "Western herzegovina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.665, + "2001": 0.671, + "2002": 0.673, + "2003": 0.682, + "2004": 0.688, + "2005": 0.69, + "2006": 0.698, + "2007": 0.71, + "2008": 0.726, + "2009": 0.733, + "2010": 0.742, + "2011": 0.753, + "2012": 0.766, + "2013": 0.773, + "2014": 0.778, + "2015": 0.783, + "2016": 0.793, + "2017": 0.795, + "2018": 0.799, + "2019": 0.806, + "2020": 0.804, + "2021": 0.803 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "National", + "GDLCODE": "BWAt", + "Region": "Total", + "1990": 0.586, + "1991": 0.588, + "1992": 0.586, + "1993": 0.588, + "1994": 0.578, + "1995": 0.583, + "1996": 0.583, + "1997": 0.586, + "1998": 0.586, + "1999": 0.587, + "2000": 0.585, + "2001": 0.586, + "2002": 0.583, + "2003": 0.59, + "2004": 0.595, + "2005": 0.604, + "2006": 0.618, + "2007": 0.632, + "2008": 0.642, + "2009": 0.647, + "2010": 0.66, + "2011": 0.669, + "2012": 0.674, + "2013": 0.687, + "2014": 0.696, + "2015": 0.702, + "2016": 0.713, + "2017": 0.722, + "2018": 0.716, + "2019": 0.717, + "2020": 0.713, + "2021": 0.693 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr101", + "Region": "Central", + "1990": 0.561, + "1991": 0.562, + "1992": 0.56, + "1993": 0.561, + "1994": 0.552, + "1995": 0.557, + "1996": 0.557, + "1997": 0.559, + "1998": 0.559, + "1999": 0.56, + "2000": 0.558, + "2001": 0.559, + "2002": 0.557, + "2003": 0.564, + "2004": 0.569, + "2005": 0.579, + "2006": 0.592, + "2007": 0.606, + "2008": 0.616, + "2009": 0.622, + "2010": 0.634, + "2011": 0.643, + "2012": 0.65, + "2013": 0.665, + "2014": 0.674, + "2015": 0.679, + "2016": 0.691, + "2017": 0.699, + "2018": 0.693, + "2019": 0.694, + "2020": 0.69, + "2021": 0.671 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr110", + "Region": "Chobe", + "1990": 0.517, + "1991": 0.522, + "1992": 0.524, + "1993": 0.528, + "1994": 0.522, + "1995": 0.526, + "1996": 0.527, + "1997": 0.53, + "1998": 0.53, + "1999": 0.53, + "2000": 0.53, + "2001": 0.6, + "2002": 0.595, + "2003": 0.599, + "2004": 0.602, + "2005": 0.609, + "2006": 0.619, + "2007": 0.631, + "2008": 0.639, + "2009": 0.642, + "2010": 0.652, + "2011": 0.658, + "2012": 0.656, + "2013": 0.661, + "2014": 0.67, + "2015": 0.676, + "2016": 0.687, + "2017": 0.696, + "2018": 0.69, + "2019": 0.691, + "2020": 0.687, + "2021": 0.668 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr102", + "Region": "Ghanzi", + "1990": 0.581, + "1991": 0.583, + "1992": 0.582, + "1993": 0.584, + "1994": 0.576, + "1995": 0.581, + "1996": 0.581, + "1997": 0.583, + "1998": 0.583, + "1999": 0.584, + "2000": 0.583, + "2001": 0.529, + "2002": 0.527, + "2003": 0.533, + "2004": 0.538, + "2005": 0.546, + "2006": 0.559, + "2007": 0.572, + "2008": 0.581, + "2009": 0.585, + "2010": 0.597, + "2011": 0.605, + "2012": 0.618, + "2013": 0.637, + "2014": 0.646, + "2015": 0.652, + "2016": 0.663, + "2017": 0.671, + "2018": 0.665, + "2019": 0.666, + "2020": 0.663, + "2021": 0.644 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr103", + "Region": "Kgalagadi", + "1990": 0.565, + "1991": 0.567, + "1992": 0.565, + "1993": 0.566, + "1994": 0.557, + "1995": 0.562, + "1996": 0.562, + "1997": 0.564, + "1998": 0.563, + "1999": 0.564, + "2000": 0.562, + "2001": 0.527, + "2002": 0.526, + "2003": 0.534, + "2004": 0.541, + "2005": 0.552, + "2006": 0.566, + "2007": 0.582, + "2008": 0.593, + "2009": 0.6, + "2010": 0.613, + "2011": 0.623, + "2012": 0.636, + "2013": 0.654, + "2014": 0.663, + "2015": 0.669, + "2016": 0.68, + "2017": 0.688, + "2018": 0.683, + "2019": 0.684, + "2020": 0.68, + "2021": 0.661 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr104", + "Region": "Kgatleng", + "1990": 0.609, + "1991": 0.61, + "1992": 0.609, + "1993": 0.61, + "1994": 0.6, + "1995": 0.606, + "1996": 0.606, + "1997": 0.609, + "1998": 0.609, + "1999": 0.61, + "2000": 0.609, + "2001": 0.607, + "2002": 0.603, + "2003": 0.609, + "2004": 0.614, + "2005": 0.623, + "2006": 0.636, + "2007": 0.649, + "2008": 0.659, + "2009": 0.663, + "2010": 0.675, + "2011": 0.683, + "2012": 0.689, + "2013": 0.701, + "2014": 0.71, + "2015": 0.717, + "2016": 0.728, + "2017": 0.737, + "2018": 0.731, + "2019": 0.732, + "2020": 0.728, + "2021": 0.708 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr105", + "Region": "Kweneng", + "1990": 0.572, + "1991": 0.574, + "1992": 0.572, + "1993": 0.574, + "1994": 0.564, + "1995": 0.569, + "1996": 0.569, + "1997": 0.572, + "1998": 0.572, + "1999": 0.573, + "2000": 0.571, + "2001": 0.569, + "2002": 0.568, + "2003": 0.576, + "2004": 0.582, + "2005": 0.593, + "2006": 0.607, + "2007": 0.623, + "2008": 0.634, + "2009": 0.64, + "2010": 0.654, + "2011": 0.664, + "2012": 0.665, + "2013": 0.673, + "2014": 0.682, + "2015": 0.688, + "2016": 0.699, + "2017": 0.707, + "2018": 0.701, + "2019": 0.702, + "2020": 0.699, + "2021": 0.679 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr106", + "Region": "North-East", + "1990": 0.637, + "1991": 0.64, + "1992": 0.638, + "1993": 0.64, + "1994": 0.631, + "1995": 0.636, + "1996": 0.637, + "1997": 0.64, + "1998": 0.64, + "1999": 0.641, + "2000": 0.64, + "2001": 0.63, + "2002": 0.626, + "2003": 0.631, + "2004": 0.635, + "2005": 0.643, + "2006": 0.655, + "2007": 0.669, + "2008": 0.678, + "2009": 0.681, + "2010": 0.693, + "2011": 0.7, + "2012": 0.699, + "2013": 0.704, + "2014": 0.713, + "2015": 0.72, + "2016": 0.732, + "2017": 0.74, + "2018": 0.734, + "2019": 0.735, + "2020": 0.731, + "2021": 0.711 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr107", + "Region": "North-West, Ngamiland", + "1990": 0.549, + "1991": 0.55, + "1992": 0.548, + "1993": 0.549, + "1994": 0.54, + "1995": 0.545, + "1996": 0.545, + "1997": 0.547, + "1998": 0.547, + "1999": 0.547, + "2000": 0.546, + "2001": 0.528, + "2002": 0.526, + "2003": 0.533, + "2004": 0.539, + "2005": 0.549, + "2006": 0.563, + "2007": 0.577, + "2008": 0.588, + "2009": 0.593, + "2010": 0.606, + "2011": 0.615, + "2012": 0.63, + "2013": 0.651, + "2014": 0.66, + "2015": 0.666, + "2016": 0.677, + "2017": 0.685, + "2018": 0.68, + "2019": 0.681, + "2020": 0.677, + "2021": 0.658 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr108", + "Region": "South-East", + "1990": 0.658, + "1991": 0.661, + "1992": 0.659, + "1993": 0.662, + "1994": 0.652, + "1995": 0.658, + "1996": 0.658, + "1997": 0.661, + "1998": 0.661, + "1999": 0.662, + "2000": 0.661, + "2001": 0.67, + "2002": 0.665, + "2003": 0.67, + "2004": 0.674, + "2005": 0.682, + "2006": 0.695, + "2007": 0.708, + "2008": 0.718, + "2009": 0.721, + "2010": 0.733, + "2011": 0.74, + "2012": 0.748, + "2013": 0.762, + "2014": 0.772, + "2015": 0.779, + "2016": 0.792, + "2017": 0.801, + "2018": 0.795, + "2019": 0.797, + "2020": 0.792, + "2021": 0.77 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr109", + "Region": "Southern", + "1990": 0.543, + "1991": 0.544, + "1992": 0.542, + "1993": 0.543, + "1994": 0.534, + "1995": 0.538, + "1996": 0.538, + "1997": 0.541, + "1998": 0.541, + "1999": 0.542, + "2000": 0.54, + "2001": 0.559, + "2002": 0.556, + "2003": 0.563, + "2004": 0.568, + "2005": 0.577, + "2006": 0.59, + "2007": 0.604, + "2008": 0.614, + "2009": 0.619, + "2010": 0.631, + "2011": 0.639, + "2012": 0.651, + "2013": 0.67, + "2014": 0.679, + "2015": 0.685, + "2016": 0.697, + "2017": 0.705, + "2018": 0.699, + "2019": 0.7, + "2020": 0.696, + "2021": 0.677 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "National", + "GDLCODE": "BRAt", + "Region": "Total", + "1990": 0.61, + "1991": 0.616, + "1992": 0.622, + "1993": 0.63, + "1994": 0.638, + "1995": 0.646, + "1996": 0.653, + "1997": 0.66, + "1998": 0.666, + "1999": 0.671, + "2000": 0.679, + "2001": 0.686, + "2002": 0.692, + "2003": 0.688, + "2004": 0.692, + "2005": 0.698, + "2006": 0.7, + "2007": 0.704, + "2008": 0.715, + "2009": 0.717, + "2010": 0.723, + "2011": 0.728, + "2012": 0.732, + "2013": 0.75, + "2014": 0.754, + "2015": 0.753, + "2016": 0.755, + "2017": 0.759, + "2018": 0.764, + "2019": 0.766, + "2020": 0.758, + "2021": 0.754 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr102", + "Region": "Acre", + "1990": 0.552, + "1991": 0.557, + "1992": 0.562, + "1993": 0.569, + "1994": 0.576, + "1995": 0.584, + "1996": 0.59, + "1997": 0.597, + "1998": 0.601, + "1999": 0.606, + "2000": 0.613, + "2001": 0.622, + "2002": 0.631, + "2003": 0.629, + "2004": 0.636, + "2005": 0.643, + "2006": 0.648, + "2007": 0.654, + "2008": 0.667, + "2009": 0.671, + "2010": 0.679, + "2011": 0.684, + "2012": 0.688, + "2013": 0.706, + "2014": 0.709, + "2015": 0.708, + "2016": 0.71, + "2017": 0.713, + "2018": 0.718, + "2019": 0.72, + "2020": 0.712, + "2021": 0.709 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr114", + "Region": "Alagoas", + "1990": 0.53, + "1991": 0.536, + "1992": 0.54, + "1993": 0.547, + "1994": 0.554, + "1995": 0.561, + "1996": 0.567, + "1997": 0.573, + "1998": 0.578, + "1999": 0.582, + "2000": 0.59, + "2001": 0.601, + "2002": 0.613, + "2003": 0.613, + "2004": 0.623, + "2005": 0.633, + "2006": 0.64, + "2007": 0.649, + "2008": 0.665, + "2009": 0.672, + "2010": 0.683, + "2011": 0.687, + "2012": 0.691, + "2013": 0.709, + "2014": 0.713, + "2015": 0.712, + "2016": 0.713, + "2017": 0.717, + "2018": 0.721, + "2019": 0.723, + "2020": 0.715, + "2021": 0.712 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr106", + "Region": "Amapa", + "1990": 0.617, + "1991": 0.623, + "1992": 0.629, + "1993": 0.636, + "1994": 0.644, + "1995": 0.653, + "1996": 0.66, + "1997": 0.667, + "1998": 0.673, + "1999": 0.678, + "2000": 0.686, + "2001": 0.691, + "2002": 0.695, + "2003": 0.689, + "2004": 0.692, + "2005": 0.695, + "2006": 0.695, + "2007": 0.697, + "2008": 0.706, + "2009": 0.706, + "2010": 0.71, + "2011": 0.715, + "2012": 0.719, + "2013": 0.737, + "2014": 0.741, + "2015": 0.74, + "2016": 0.742, + "2017": 0.746, + "2018": 0.751, + "2019": 0.753, + "2020": 0.745, + "2021": 0.741 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr103", + "Region": "Amazonas", + "1990": 0.571, + "1991": 0.577, + "1992": 0.582, + "1993": 0.589, + "1994": 0.597, + "1995": 0.605, + "1996": 0.611, + "1997": 0.618, + "1998": 0.623, + "1999": 0.628, + "2000": 0.636, + "2001": 0.645, + "2002": 0.653, + "2003": 0.651, + "2004": 0.658, + "2005": 0.665, + "2006": 0.67, + "2007": 0.676, + "2008": 0.688, + "2009": 0.692, + "2010": 0.7, + "2011": 0.705, + "2012": 0.709, + "2013": 0.727, + "2014": 0.731, + "2015": 0.73, + "2016": 0.731, + "2017": 0.735, + "2018": 0.74, + "2019": 0.742, + "2020": 0.734, + "2021": 0.73 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr116", + "Region": "Bahia", + "1990": 0.568, + "1991": 0.574, + "1992": 0.579, + "1993": 0.586, + "1994": 0.593, + "1995": 0.601, + "1996": 0.607, + "1997": 0.614, + "1998": 0.618, + "1999": 0.623, + "2000": 0.631, + "2001": 0.64, + "2002": 0.649, + "2003": 0.647, + "2004": 0.654, + "2005": 0.661, + "2006": 0.666, + "2007": 0.672, + "2008": 0.685, + "2009": 0.69, + "2010": 0.698, + "2011": 0.703, + "2012": 0.707, + "2013": 0.725, + "2014": 0.729, + "2015": 0.728, + "2016": 0.729, + "2017": 0.733, + "2018": 0.738, + "2019": 0.74, + "2020": 0.732, + "2021": 0.728 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr110", + "Region": "Ceara", + "1990": 0.562, + "1991": 0.568, + "1992": 0.573, + "1993": 0.58, + "1994": 0.587, + "1995": 0.595, + "1996": 0.601, + "1997": 0.607, + "1998": 0.612, + "1999": 0.617, + "2000": 0.624, + "2001": 0.634, + "2002": 0.643, + "2003": 0.641, + "2004": 0.649, + "2005": 0.657, + "2006": 0.662, + "2007": 0.669, + "2008": 0.683, + "2009": 0.687, + "2010": 0.696, + "2011": 0.701, + "2012": 0.705, + "2013": 0.723, + "2014": 0.727, + "2015": 0.726, + "2016": 0.727, + "2017": 0.731, + "2018": 0.736, + "2019": 0.738, + "2020": 0.73, + "2021": 0.726 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr127", + "Region": "Distrito Federal", + "1990": 0.685, + "1991": 0.692, + "1992": 0.699, + "1993": 0.707, + "1994": 0.716, + "1995": 0.726, + "1996": 0.734, + "1997": 0.742, + "1998": 0.748, + "1999": 0.755, + "2000": 0.764, + "2001": 0.768, + "2002": 0.772, + "2003": 0.765, + "2004": 0.767, + "2005": 0.769, + "2006": 0.769, + "2007": 0.771, + "2008": 0.779, + "2009": 0.778, + "2010": 0.781, + "2011": 0.787, + "2012": 0.792, + "2013": 0.811, + "2014": 0.815, + "2015": 0.814, + "2016": 0.816, + "2017": 0.821, + "2018": 0.826, + "2019": 0.829, + "2020": 0.82, + "2021": 0.816 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr118", + "Region": "Espirito Santo", + "1990": 0.618, + "1991": 0.625, + "1992": 0.63, + "1993": 0.638, + "1994": 0.646, + "1995": 0.655, + "1996": 0.662, + "1997": 0.669, + "1998": 0.675, + "1999": 0.68, + "2000": 0.688, + "2001": 0.694, + "2002": 0.7, + "2003": 0.695, + "2004": 0.699, + "2005": 0.704, + "2006": 0.705, + "2007": 0.708, + "2008": 0.719, + "2009": 0.72, + "2010": 0.725, + "2011": 0.73, + "2012": 0.734, + "2013": 0.753, + "2014": 0.757, + "2015": 0.755, + "2016": 0.757, + "2017": 0.761, + "2018": 0.767, + "2019": 0.769, + "2020": 0.761, + "2021": 0.757 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr126", + "Region": "Goias", + "1990": 0.62, + "1991": 0.626, + "1992": 0.632, + "1993": 0.64, + "1994": 0.648, + "1995": 0.656, + "1996": 0.663, + "1997": 0.67, + "1998": 0.676, + "1999": 0.681, + "2000": 0.69, + "2001": 0.696, + "2002": 0.702, + "2003": 0.697, + "2004": 0.701, + "2005": 0.706, + "2006": 0.708, + "2007": 0.712, + "2008": 0.723, + "2009": 0.724, + "2010": 0.729, + "2011": 0.734, + "2012": 0.739, + "2013": 0.757, + "2014": 0.761, + "2015": 0.76, + "2016": 0.762, + "2017": 0.766, + "2018": 0.771, + "2019": 0.773, + "2020": 0.765, + "2021": 0.761 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr108", + "Region": "Maranhao", + "1990": 0.531, + "1991": 0.536, + "1992": 0.541, + "1993": 0.547, + "1994": 0.554, + "1995": 0.561, + "1996": 0.567, + "1997": 0.573, + "1998": 0.578, + "1999": 0.582, + "2000": 0.589, + "2001": 0.599, + "2002": 0.61, + "2003": 0.609, + "2004": 0.617, + "2005": 0.626, + "2006": 0.632, + "2007": 0.64, + "2008": 0.654, + "2009": 0.66, + "2010": 0.669, + "2011": 0.674, + "2012": 0.678, + "2013": 0.696, + "2014": 0.699, + "2015": 0.698, + "2016": 0.699, + "2017": 0.703, + "2018": 0.708, + "2019": 0.709, + "2020": 0.702, + "2021": 0.698 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr125", + "Region": "Mato Grosso", + "1990": 0.594, + "1991": 0.6, + "1992": 0.606, + "1993": 0.613, + "1994": 0.621, + "1995": 0.629, + "1996": 0.636, + "1997": 0.643, + "1998": 0.648, + "1999": 0.653, + "2000": 0.661, + "2001": 0.67, + "2002": 0.678, + "2003": 0.675, + "2004": 0.681, + "2005": 0.688, + "2006": 0.691, + "2007": 0.697, + "2008": 0.709, + "2009": 0.712, + "2010": 0.72, + "2011": 0.725, + "2012": 0.729, + "2013": 0.747, + "2014": 0.751, + "2015": 0.75, + "2016": 0.752, + "2017": 0.756, + "2018": 0.761, + "2019": 0.763, + "2020": 0.755, + "2021": 0.751 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr124", + "Region": "Mato Grosso do Sul", + "1990": 0.609, + "1991": 0.615, + "1992": 0.62, + "1993": 0.628, + "1994": 0.636, + "1995": 0.644, + "1996": 0.651, + "1997": 0.659, + "1998": 0.664, + "1999": 0.669, + "2000": 0.678, + "2001": 0.685, + "2002": 0.692, + "2003": 0.688, + "2004": 0.693, + "2005": 0.698, + "2006": 0.701, + "2007": 0.705, + "2008": 0.717, + "2009": 0.719, + "2010": 0.725, + "2011": 0.73, + "2012": 0.734, + "2013": 0.753, + "2014": 0.757, + "2015": 0.756, + "2016": 0.758, + "2017": 0.762, + "2018": 0.767, + "2019": 0.769, + "2020": 0.761, + "2021": 0.757 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr117", + "Region": "Minas Gerais", + "1990": 0.616, + "1991": 0.623, + "1992": 0.628, + "1993": 0.636, + "1994": 0.644, + "1995": 0.652, + "1996": 0.659, + "1997": 0.667, + "1998": 0.672, + "1999": 0.677, + "2000": 0.686, + "2001": 0.692, + "2002": 0.698, + "2003": 0.692, + "2004": 0.696, + "2005": 0.701, + "2006": 0.703, + "2007": 0.706, + "2008": 0.717, + "2009": 0.718, + "2010": 0.723, + "2011": 0.728, + "2012": 0.732, + "2013": 0.751, + "2014": 0.755, + "2015": 0.753, + "2016": 0.755, + "2017": 0.759, + "2018": 0.764, + "2019": 0.767, + "2020": 0.758, + "2021": 0.754 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr105", + "Region": "Para", + "1990": 0.559, + "1991": 0.565, + "1992": 0.57, + "1993": 0.577, + "1994": 0.584, + "1995": 0.592, + "1996": 0.598, + "1997": 0.605, + "1998": 0.61, + "1999": 0.615, + "2000": 0.622, + "2001": 0.63, + "2002": 0.639, + "2003": 0.636, + "2004": 0.642, + "2005": 0.649, + "2006": 0.653, + "2007": 0.659, + "2008": 0.672, + "2009": 0.675, + "2010": 0.683, + "2011": 0.687, + "2012": 0.691, + "2013": 0.709, + "2014": 0.713, + "2015": 0.712, + "2016": 0.713, + "2017": 0.717, + "2018": 0.722, + "2019": 0.724, + "2020": 0.716, + "2021": 0.712 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr112", + "Region": "Paraiba", + "1990": 0.558, + "1991": 0.563, + "1992": 0.568, + "1993": 0.575, + "1994": 0.582, + "1995": 0.59, + "1996": 0.596, + "1997": 0.602, + "1998": 0.607, + "1999": 0.612, + "2000": 0.619, + "2001": 0.63, + "2002": 0.64, + "2003": 0.639, + "2004": 0.647, + "2005": 0.656, + "2006": 0.662, + "2007": 0.669, + "2008": 0.684, + "2009": 0.689, + "2010": 0.699, + "2011": 0.703, + "2012": 0.707, + "2013": 0.726, + "2014": 0.73, + "2015": 0.728, + "2016": 0.73, + "2017": 0.734, + "2018": 0.739, + "2019": 0.74, + "2020": 0.732, + "2021": 0.729 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr121", + "Region": "Parana", + "1990": 0.625, + "1991": 0.631, + "1992": 0.637, + "1993": 0.645, + "1994": 0.653, + "1995": 0.661, + "1996": 0.668, + "1997": 0.676, + "1998": 0.681, + "1999": 0.687, + "2000": 0.695, + "2001": 0.701, + "2002": 0.707, + "2003": 0.702, + "2004": 0.706, + "2005": 0.71, + "2006": 0.712, + "2007": 0.715, + "2008": 0.725, + "2009": 0.726, + "2010": 0.731, + "2011": 0.736, + "2012": 0.741, + "2013": 0.759, + "2014": 0.763, + "2015": 0.762, + "2016": 0.764, + "2017": 0.768, + "2018": 0.773, + "2019": 0.776, + "2020": 0.767, + "2021": 0.763 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr113", + "Region": "Pernambuco", + "1990": 0.564, + "1991": 0.57, + "1992": 0.575, + "1993": 0.582, + "1994": 0.59, + "1995": 0.598, + "1996": 0.604, + "1997": 0.611, + "1998": 0.615, + "1999": 0.62, + "2000": 0.628, + "2001": 0.637, + "2002": 0.647, + "2003": 0.645, + "2004": 0.653, + "2005": 0.661, + "2006": 0.666, + "2007": 0.672, + "2008": 0.686, + "2009": 0.691, + "2010": 0.699, + "2011": 0.704, + "2012": 0.708, + "2013": 0.727, + "2014": 0.73, + "2015": 0.729, + "2016": 0.731, + "2017": 0.735, + "2018": 0.739, + "2019": 0.741, + "2020": 0.733, + "2021": 0.73 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr109", + "Region": "Piaui", + "1990": 0.549, + "1991": 0.554, + "1992": 0.559, + "1993": 0.566, + "1994": 0.573, + "1995": 0.581, + "1996": 0.586, + "1997": 0.593, + "1998": 0.597, + "1999": 0.602, + "2000": 0.609, + "2001": 0.618, + "2002": 0.628, + "2003": 0.626, + "2004": 0.633, + "2005": 0.641, + "2006": 0.646, + "2007": 0.652, + "2008": 0.665, + "2009": 0.67, + "2010": 0.679, + "2011": 0.683, + "2012": 0.687, + "2013": 0.705, + "2014": 0.709, + "2015": 0.707, + "2016": 0.709, + "2017": 0.712, + "2018": 0.717, + "2019": 0.719, + "2020": 0.711, + "2021": 0.707 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr119", + "Region": "Rio de Janeiro", + "1990": 0.648, + "1991": 0.655, + "1992": 0.661, + "1993": 0.669, + "1994": 0.678, + "1995": 0.687, + "1996": 0.694, + "1997": 0.702, + "1998": 0.708, + "1999": 0.714, + "2000": 0.723, + "2001": 0.728, + "2002": 0.732, + "2003": 0.726, + "2004": 0.729, + "2005": 0.733, + "2006": 0.734, + "2007": 0.736, + "2008": 0.746, + "2009": 0.746, + "2010": 0.75, + "2011": 0.755, + "2012": 0.76, + "2013": 0.778, + "2014": 0.782, + "2015": 0.782, + "2016": 0.784, + "2017": 0.788, + "2018": 0.793, + "2019": 0.796, + "2020": 0.787, + "2021": 0.783 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr111", + "Region": "Rio Grande do Norte", + "1990": 0.576, + "1991": 0.581, + "1992": 0.587, + "1993": 0.594, + "1994": 0.601, + "1995": 0.609, + "1996": 0.616, + "1997": 0.622, + "1998": 0.627, + "1999": 0.632, + "2000": 0.64, + "2001": 0.65, + "2002": 0.659, + "2003": 0.657, + "2004": 0.665, + "2005": 0.673, + "2006": 0.678, + "2007": 0.685, + "2008": 0.699, + "2009": 0.704, + "2010": 0.713, + "2011": 0.717, + "2012": 0.721, + "2013": 0.74, + "2014": 0.744, + "2015": 0.743, + "2016": 0.745, + "2017": 0.748, + "2018": 0.753, + "2019": 0.755, + "2020": 0.747, + "2021": 0.743 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr123", + "Region": "Rio Grande do Sul", + "1990": 0.641, + "1991": 0.648, + "1992": 0.654, + "1993": 0.662, + "1994": 0.67, + "1995": 0.679, + "1996": 0.686, + "1997": 0.694, + "1998": 0.7, + "1999": 0.706, + "2000": 0.714, + "2001": 0.719, + "2002": 0.723, + "2003": 0.717, + "2004": 0.719, + "2005": 0.722, + "2006": 0.723, + "2007": 0.724, + "2008": 0.734, + "2009": 0.733, + "2010": 0.737, + "2011": 0.742, + "2012": 0.746, + "2013": 0.765, + "2014": 0.769, + "2015": 0.768, + "2016": 0.77, + "2017": 0.774, + "2018": 0.779, + "2019": 0.781, + "2020": 0.773, + "2021": 0.769 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr101", + "Region": "Rondonia", + "1990": 0.554, + "1991": 0.559, + "1992": 0.564, + "1993": 0.571, + "1994": 0.579, + "1995": 0.586, + "1996": 0.592, + "1997": 0.599, + "1998": 0.604, + "1999": 0.609, + "2000": 0.616, + "2001": 0.627, + "2002": 0.637, + "2003": 0.637, + "2004": 0.645, + "2005": 0.654, + "2006": 0.66, + "2007": 0.668, + "2008": 0.682, + "2009": 0.688, + "2010": 0.697, + "2011": 0.702, + "2012": 0.706, + "2013": 0.724, + "2014": 0.728, + "2015": 0.727, + "2016": 0.728, + "2017": 0.732, + "2018": 0.737, + "2019": 0.739, + "2020": 0.731, + "2021": 0.727 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr104", + "Region": "Roraima", + "1990": 0.595, + "1991": 0.601, + "1992": 0.607, + "1993": 0.614, + "1994": 0.622, + "1995": 0.63, + "1996": 0.637, + "1997": 0.644, + "1998": 0.649, + "1999": 0.654, + "2000": 0.662, + "2001": 0.671, + "2002": 0.679, + "2003": 0.676, + "2004": 0.683, + "2005": 0.69, + "2006": 0.694, + "2007": 0.7, + "2008": 0.713, + "2009": 0.716, + "2010": 0.724, + "2011": 0.729, + "2012": 0.733, + "2013": 0.752, + "2014": 0.756, + "2015": 0.755, + "2016": 0.757, + "2017": 0.761, + "2018": 0.766, + "2019": 0.768, + "2020": 0.76, + "2021": 0.756 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr122", + "Region": "Santa Catarina", + "1990": 0.642, + "1991": 0.649, + "1992": 0.655, + "1993": 0.663, + "1994": 0.671, + "1995": 0.68, + "1996": 0.687, + "1997": 0.695, + "1998": 0.701, + "1999": 0.707, + "2000": 0.715, + "2001": 0.72, + "2002": 0.724, + "2003": 0.717, + "2004": 0.72, + "2005": 0.723, + "2006": 0.723, + "2007": 0.724, + "2008": 0.733, + "2009": 0.733, + "2010": 0.736, + "2011": 0.741, + "2012": 0.746, + "2013": 0.764, + "2014": 0.768, + "2015": 0.767, + "2016": 0.769, + "2017": 0.774, + "2018": 0.779, + "2019": 0.781, + "2020": 0.773, + "2021": 0.769 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr120", + "Region": "Sao Paulo", + "1990": 0.65, + "1991": 0.656, + "1992": 0.662, + "1993": 0.671, + "1994": 0.679, + "1995": 0.688, + "1996": 0.695, + "1997": 0.703, + "1998": 0.709, + "1999": 0.715, + "2000": 0.724, + "2001": 0.729, + "2002": 0.733, + "2003": 0.726, + "2004": 0.729, + "2005": 0.732, + "2006": 0.733, + "2007": 0.735, + "2008": 0.744, + "2009": 0.743, + "2010": 0.747, + "2011": 0.752, + "2012": 0.757, + "2013": 0.775, + "2014": 0.779, + "2015": 0.779, + "2016": 0.781, + "2017": 0.785, + "2018": 0.79, + "2019": 0.793, + "2020": 0.784, + "2021": 0.78 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr115", + "Region": "Sergipe", + "1990": 0.576, + "1991": 0.582, + "1992": 0.587, + "1993": 0.594, + "1994": 0.601, + "1995": 0.609, + "1996": 0.616, + "1997": 0.622, + "1998": 0.627, + "1999": 0.632, + "2000": 0.64, + "2001": 0.649, + "2002": 0.658, + "2003": 0.656, + "2004": 0.663, + "2005": 0.671, + "2006": 0.676, + "2007": 0.682, + "2008": 0.696, + "2009": 0.7, + "2010": 0.709, + "2011": 0.714, + "2012": 0.717, + "2013": 0.736, + "2014": 0.74, + "2015": 0.739, + "2016": 0.741, + "2017": 0.744, + "2018": 0.749, + "2019": 0.751, + "2020": 0.743, + "2021": 0.739 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr107", + "Region": "Tocantins", + "1990": 0.558, + "1991": 0.564, + "1992": 0.569, + "1993": 0.576, + "1994": 0.583, + "1995": 0.591, + "1996": 0.597, + "1997": 0.603, + "1998": 0.608, + "1999": 0.613, + "2000": 0.62, + "2001": 0.632, + "2002": 0.643, + "2003": 0.644, + "2004": 0.653, + "2005": 0.663, + "2006": 0.67, + "2007": 0.679, + "2008": 0.695, + "2009": 0.701, + "2010": 0.712, + "2011": 0.717, + "2012": 0.721, + "2013": 0.739, + "2014": 0.743, + "2015": 0.742, + "2016": 0.744, + "2017": 0.748, + "2018": 0.753, + "2019": 0.755, + "2020": 0.746, + "2021": 0.743 + }, + { + "Country": "Brunei Darussalam", + "Continent": "Asia/Pacific", + "ISO_Code": "BRN", + "Level": "National", + "GDLCODE": "BRNt", + "Region": "Total", + "1990": 0.77, + "1991": 0.775, + "1992": 0.781, + "1993": 0.786, + "1994": 0.79, + "1995": 0.795, + "1996": 0.798, + "1997": 0.799, + "1998": 0.801, + "1999": 0.807, + "2000": 0.808, + "2001": 0.809, + "2002": 0.813, + "2003": 0.818, + "2004": 0.822, + "2005": 0.825, + "2006": 0.828, + "2007": 0.827, + "2008": 0.826, + "2009": 0.828, + "2010": 0.828, + "2011": 0.832, + "2012": 0.838, + "2013": 0.838, + "2014": 0.837, + "2015": 0.836, + "2016": 0.835, + "2017": 0.834, + "2018": 0.83, + "2019": 0.83, + "2020": 0.83, + "2021": 0.829 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "National", + "GDLCODE": "BGRt", + "Region": "Total", + "1990": 0.684, + "1991": 0.684, + "1992": 0.686, + "1993": 0.689, + "1994": 0.691, + "1995": 0.7, + "1996": 0.711, + "1997": 0.706, + "1998": 0.716, + "1999": 0.72, + "2000": 0.725, + "2001": 0.734, + "2002": 0.74, + "2003": 0.749, + "2004": 0.756, + "2005": 0.762, + "2006": 0.767, + "2007": 0.774, + "2008": 0.782, + "2009": 0.785, + "2010": 0.79, + "2011": 0.794, + "2012": 0.798, + "2013": 0.805, + "2014": 0.807, + "2015": 0.809, + "2016": 0.809, + "2017": 0.808, + "2018": 0.809, + "2019": 0.81, + "2020": 0.802, + "2021": 0.795 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr102", + "Region": "Severen tsentralen", + "1990": 0.669, + "1991": 0.667, + "1992": 0.669, + "1993": 0.671, + "1994": 0.674, + "1995": 0.682, + "1996": 0.692, + "1997": 0.687, + "1998": 0.699, + "1999": 0.701, + "2000": 0.706, + "2001": 0.718, + "2002": 0.724, + "2003": 0.736, + "2004": 0.743, + "2005": 0.748, + "2006": 0.749, + "2007": 0.756, + "2008": 0.763, + "2009": 0.762, + "2010": 0.764, + "2011": 0.771, + "2012": 0.777, + "2013": 0.784, + "2014": 0.788, + "2015": 0.788, + "2016": 0.787, + "2017": 0.782, + "2018": 0.781, + "2019": 0.781, + "2020": 0.773, + "2021": 0.766 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr103", + "Region": "Severoiztochen", + "1990": 0.673, + "1991": 0.673, + "1992": 0.677, + "1993": 0.679, + "1994": 0.681, + "1995": 0.69, + "1996": 0.699, + "1997": 0.694, + "1998": 0.704, + "1999": 0.709, + "2000": 0.714, + "2001": 0.716, + "2002": 0.725, + "2003": 0.736, + "2004": 0.746, + "2005": 0.751, + "2006": 0.754, + "2007": 0.762, + "2008": 0.768, + "2009": 0.77, + "2010": 0.773, + "2011": 0.78, + "2012": 0.784, + "2013": 0.792, + "2014": 0.795, + "2015": 0.792, + "2016": 0.791, + "2017": 0.788, + "2018": 0.786, + "2019": 0.784, + "2020": 0.777, + "2021": 0.77 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr101", + "Region": "Severozapaden", + "1990": 0.652, + "1991": 0.652, + "1992": 0.656, + "1993": 0.659, + "1994": 0.662, + "1995": 0.671, + "1996": 0.681, + "1997": 0.676, + "1998": 0.684, + "1999": 0.69, + "2000": 0.694, + "2001": 0.7, + "2002": 0.704, + "2003": 0.715, + "2004": 0.717, + "2005": 0.719, + "2006": 0.722, + "2007": 0.725, + "2008": 0.733, + "2009": 0.733, + "2010": 0.735, + "2011": 0.741, + "2012": 0.742, + "2013": 0.749, + "2014": 0.751, + "2015": 0.753, + "2016": 0.75, + "2017": 0.752, + "2018": 0.756, + "2019": 0.753, + "2020": 0.746, + "2021": 0.739 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr104", + "Region": "Yugoiztochen", + "1990": 0.66, + "1991": 0.66, + "1992": 0.662, + "1993": 0.664, + "1994": 0.667, + "1995": 0.676, + "1996": 0.685, + "1997": 0.681, + "1998": 0.692, + "1999": 0.695, + "2000": 0.701, + "2001": 0.702, + "2002": 0.706, + "2003": 0.722, + "2004": 0.728, + "2005": 0.736, + "2006": 0.735, + "2007": 0.737, + "2008": 0.745, + "2009": 0.748, + "2010": 0.752, + "2011": 0.758, + "2012": 0.764, + "2013": 0.772, + "2014": 0.774, + "2015": 0.774, + "2016": 0.778, + "2017": 0.776, + "2018": 0.771, + "2019": 0.767, + "2020": 0.759, + "2021": 0.753 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr105", + "Region": "Yugozapaden", + "1990": 0.718, + "1991": 0.718, + "1992": 0.72, + "1993": 0.723, + "1994": 0.726, + "1995": 0.735, + "1996": 0.746, + "1997": 0.741, + "1998": 0.749, + "1999": 0.754, + "2000": 0.76, + "2001": 0.77, + "2002": 0.779, + "2003": 0.797, + "2004": 0.805, + "2005": 0.81, + "2006": 0.819, + "2007": 0.83, + "2008": 0.838, + "2009": 0.841, + "2010": 0.849, + "2011": 0.85, + "2012": 0.852, + "2013": 0.858, + "2014": 0.861, + "2015": 0.865, + "2016": 0.866, + "2017": 0.865, + "2018": 0.867, + "2019": 0.872, + "2020": 0.863, + "2021": 0.856 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr106", + "Region": "Yuzhen tsentralen", + "1990": 0.653, + "1991": 0.653, + "1992": 0.655, + "1993": 0.657, + "1994": 0.66, + "1995": 0.668, + "1996": 0.678, + "1997": 0.673, + "1998": 0.683, + "1999": 0.686, + "2000": 0.691, + "2001": 0.7, + "2002": 0.704, + "2003": 0.722, + "2004": 0.732, + "2005": 0.736, + "2006": 0.741, + "2007": 0.745, + "2008": 0.752, + "2009": 0.757, + "2010": 0.761, + "2011": 0.764, + "2012": 0.77, + "2013": 0.776, + "2014": 0.776, + "2015": 0.778, + "2016": 0.78, + "2017": 0.78, + "2018": 0.78, + "2019": 0.782, + "2020": 0.774, + "2021": 0.768 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "National", + "GDLCODE": "BFAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.296, + "2001": 0.299, + "2002": 0.303, + "2003": 0.31, + "2004": 0.32, + "2005": 0.331, + "2006": 0.339, + "2007": 0.334, + "2008": 0.349, + "2009": 0.36, + "2010": 0.372, + "2011": 0.384, + "2012": 0.395, + "2013": 0.402, + "2014": 0.408, + "2015": 0.418, + "2016": 0.427, + "2017": 0.438, + "2018": 0.449, + "2019": 0.452, + "2020": 0.449, + "2021": 0.449 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr101", + "Region": "Boucle de Mouhoun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.247, + "2001": 0.256, + "2002": 0.264, + "2003": 0.274, + "2004": 0.285, + "2005": 0.297, + "2006": 0.307, + "2007": 0.308, + "2008": 0.323, + "2009": 0.334, + "2010": 0.346, + "2011": 0.357, + "2012": 0.367, + "2013": 0.374, + "2014": 0.378, + "2015": 0.388, + "2016": 0.396, + "2017": 0.405, + "2018": 0.415, + "2019": 0.417, + "2020": 0.414, + "2021": 0.415 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr102", + "Region": "Cascades", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.285, + "2001": 0.297, + "2002": 0.308, + "2003": 0.321, + "2004": 0.33, + "2005": 0.341, + "2006": 0.349, + "2007": 0.344, + "2008": 0.359, + "2009": 0.369, + "2010": 0.381, + "2011": 0.393, + "2012": 0.403, + "2013": 0.411, + "2014": 0.417, + "2015": 0.427, + "2016": 0.436, + "2017": 0.447, + "2018": 0.458, + "2019": 0.46, + "2020": 0.457, + "2021": 0.457 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr103", + "Region": "Centre (incl Ouagadougou)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.495, + "2001": 0.498, + "2002": 0.502, + "2003": 0.51, + "2004": 0.514, + "2005": 0.521, + "2006": 0.525, + "2007": 0.493, + "2008": 0.509, + "2009": 0.519, + "2010": 0.53, + "2011": 0.548, + "2012": 0.563, + "2013": 0.575, + "2014": 0.584, + "2015": 0.6, + "2016": 0.615, + "2017": 0.63, + "2018": 0.647, + "2019": 0.654, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr104", + "Region": "Centre-Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.302, + "2001": 0.301, + "2002": 0.302, + "2003": 0.305, + "2004": 0.313, + "2005": 0.324, + "2006": 0.331, + "2007": 0.331, + "2008": 0.345, + "2009": 0.354, + "2010": 0.366, + "2011": 0.377, + "2012": 0.387, + "2013": 0.394, + "2014": 0.399, + "2015": 0.408, + "2016": 0.416, + "2017": 0.426, + "2018": 0.436, + "2019": 0.438, + "2020": 0.435, + "2021": 0.435 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr105", + "Region": "Centre-Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.259, + "2001": 0.257, + "2002": 0.256, + "2003": 0.257, + "2004": 0.269, + "2005": 0.282, + "2006": 0.292, + "2007": 0.296, + "2008": 0.312, + "2009": 0.324, + "2010": 0.337, + "2011": 0.347, + "2012": 0.356, + "2013": 0.363, + "2014": 0.367, + "2015": 0.376, + "2016": 0.384, + "2017": 0.392, + "2018": 0.402, + "2019": 0.404, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr106", + "Region": "Centre-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.289, + "2001": 0.287, + "2002": 0.285, + "2003": 0.286, + "2004": 0.301, + "2005": 0.316, + "2006": 0.328, + "2007": 0.331, + "2008": 0.348, + "2009": 0.362, + "2010": 0.377, + "2011": 0.389, + "2012": 0.399, + "2013": 0.407, + "2014": 0.412, + "2015": 0.422, + "2016": 0.431, + "2017": 0.441, + "2018": 0.452, + "2019": 0.455, + "2020": 0.451, + "2021": 0.451 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr107", + "Region": "Centre-Sud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.264, + "2001": 0.273, + "2002": 0.283, + "2003": 0.295, + "2004": 0.309, + "2005": 0.324, + "2006": 0.336, + "2007": 0.34, + "2008": 0.356, + "2009": 0.368, + "2010": 0.381, + "2011": 0.393, + "2012": 0.404, + "2013": 0.411, + "2014": 0.416, + "2015": 0.425, + "2016": 0.434, + "2017": 0.444, + "2018": 0.455, + "2019": 0.456, + "2020": 0.453, + "2021": 0.453 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr108", + "Region": "Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.195, + "2001": 0.2, + "2002": 0.205, + "2003": 0.212, + "2004": 0.226, + "2005": 0.241, + "2006": 0.252, + "2007": 0.257, + "2008": 0.272, + "2009": 0.282, + "2010": 0.294, + "2011": 0.303, + "2012": 0.311, + "2013": 0.317, + "2014": 0.321, + "2015": 0.328, + "2016": 0.335, + "2017": 0.343, + "2018": 0.351, + "2019": 0.353, + "2020": 0.35, + "2021": 0.35 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr109", + "Region": "Hauts Bassins", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.343, + "2001": 0.339, + "2002": 0.335, + "2003": 0.334, + "2004": 0.347, + "2005": 0.36, + "2006": 0.371, + "2007": 0.364, + "2008": 0.381, + "2009": 0.395, + "2010": 0.409, + "2011": 0.423, + "2012": 0.435, + "2013": 0.443, + "2014": 0.449, + "2015": 0.461, + "2016": 0.472, + "2017": 0.483, + "2018": 0.496, + "2019": 0.5, + "2020": 0.496, + "2021": 0.496 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr110", + "Region": "Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.254, + "2001": 0.255, + "2002": 0.256, + "2003": 0.259, + "2004": 0.276, + "2005": 0.293, + "2006": 0.307, + "2007": 0.314, + "2008": 0.333, + "2009": 0.348, + "2010": 0.363, + "2011": 0.375, + "2012": 0.385, + "2013": 0.392, + "2014": 0.396, + "2015": 0.406, + "2016": 0.414, + "2017": 0.424, + "2018": 0.434, + "2019": 0.436, + "2020": 0.432, + "2021": 0.432 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr111", + "Region": "Plateau Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.237, + "2001": 0.25, + "2002": 0.262, + "2003": 0.276, + "2004": 0.29, + "2005": 0.305, + "2006": 0.318, + "2007": 0.324, + "2008": 0.341, + "2009": 0.353, + "2010": 0.367, + "2011": 0.378, + "2012": 0.388, + "2013": 0.395, + "2014": 0.4, + "2015": 0.409, + "2016": 0.417, + "2017": 0.427, + "2018": 0.437, + "2019": 0.439, + "2020": 0.435, + "2021": 0.436 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr112", + "Region": "Sahel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.183, + "2001": 0.192, + "2002": 0.201, + "2003": 0.211, + "2004": 0.215, + "2005": 0.22, + "2006": 0.223, + "2007": 0.221, + "2008": 0.229, + "2009": 0.233, + "2010": 0.239, + "2011": 0.246, + "2012": 0.253, + "2013": 0.258, + "2014": 0.261, + "2015": 0.267, + "2016": 0.273, + "2017": 0.279, + "2018": 0.286, + "2019": 0.287, + "2020": 0.285, + "2021": 0.286 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr113", + "Region": "Sud-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.251, + "2001": 0.253, + "2002": 0.255, + "2003": 0.259, + "2004": 0.266, + "2005": 0.275, + "2006": 0.281, + "2007": 0.279, + "2008": 0.29, + "2009": 0.298, + "2010": 0.306, + "2011": 0.316, + "2012": 0.325, + "2013": 0.331, + "2014": 0.336, + "2015": 0.344, + "2016": 0.351, + "2017": 0.36, + "2018": 0.369, + "2019": 0.371, + "2020": 0.368, + "2021": 0.369 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "National", + "GDLCODE": "BDIt", + "Region": "Total", + "1990": 0.29, + "1991": 0.292, + "1992": 0.289, + "1993": 0.26, + "1994": 0.29, + "1995": 0.286, + "1996": 0.283, + "1997": 0.287, + "1998": 0.294, + "1999": 0.296, + "2000": 0.297, + "2001": 0.299, + "2002": 0.311, + "2003": 0.319, + "2004": 0.33, + "2005": 0.338, + "2006": 0.36, + "2007": 0.372, + "2008": 0.386, + "2009": 0.395, + "2010": 0.405, + "2011": 0.41, + "2012": 0.416, + "2013": 0.421, + "2014": 0.426, + "2015": 0.428, + "2016": 0.43, + "2017": 0.428, + "2018": 0.428, + "2019": 0.431, + "2020": 0.426, + "2021": 0.426 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr103", + "Region": "East (Cankuzo, Rutana, Ruyigi )", + "1990": 0.274, + "1991": 0.277, + "1992": 0.273, + "1993": 0.246, + "1994": 0.274, + "1995": 0.27, + "1996": 0.267, + "1997": 0.271, + "1998": 0.277, + "1999": 0.28, + "2000": 0.28, + "2001": 0.282, + "2002": 0.293, + "2003": 0.301, + "2004": 0.311, + "2005": 0.319, + "2006": 0.341, + "2007": 0.354, + "2008": 0.369, + "2009": 0.38, + "2010": 0.39, + "2011": 0.395, + "2012": 0.401, + "2013": 0.406, + "2014": 0.41, + "2015": 0.411, + "2016": 0.413, + "2017": 0.411, + "2018": 0.411, + "2019": 0.414, + "2020": 0.409, + "2021": 0.409 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr105", + "Region": "Middle (Gitega, Karuzi, Muramvya, Mwaro)", + "1990": 0.295, + "1991": 0.298, + "1992": 0.294, + "1993": 0.265, + "1994": 0.295, + "1995": 0.292, + "1996": 0.289, + "1997": 0.293, + "1998": 0.3, + "1999": 0.302, + "2000": 0.303, + "2001": 0.305, + "2002": 0.317, + "2003": 0.325, + "2004": 0.336, + "2005": 0.344, + "2006": 0.364, + "2007": 0.374, + "2008": 0.386, + "2009": 0.393, + "2010": 0.4, + "2011": 0.406, + "2012": 0.414, + "2013": 0.421, + "2014": 0.427, + "2015": 0.429, + "2016": 0.432, + "2017": 0.431, + "2018": 0.431, + "2019": 0.434, + "2020": 0.429, + "2021": 0.429 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr101", + "Region": "North (Kayanza, Kirundo, Muyinga, Ngozi)", + "1990": 0.273, + "1991": 0.275, + "1992": 0.272, + "1993": 0.244, + "1994": 0.273, + "1995": 0.27, + "1996": 0.267, + "1997": 0.271, + "1998": 0.278, + "1999": 0.28, + "2000": 0.281, + "2001": 0.283, + "2002": 0.294, + "2003": 0.301, + "2004": 0.312, + "2005": 0.319, + "2006": 0.338, + "2007": 0.348, + "2008": 0.358, + "2009": 0.365, + "2010": 0.372, + "2011": 0.375, + "2012": 0.379, + "2013": 0.382, + "2014": 0.385, + "2015": 0.384, + "2016": 0.384, + "2017": 0.38, + "2018": 0.38, + "2019": 0.382, + "2020": 0.378, + "2021": 0.378 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr102", + "Region": "South (Bururi, Makamba)", + "1990": 0.298, + "1991": 0.301, + "1992": 0.297, + "1993": 0.269, + "1994": 0.297, + "1995": 0.294, + "1996": 0.29, + "1997": 0.294, + "1998": 0.3, + "1999": 0.302, + "2000": 0.303, + "2001": 0.304, + "2002": 0.317, + "2003": 0.325, + "2004": 0.337, + "2005": 0.345, + "2006": 0.373, + "2007": 0.39, + "2008": 0.408, + "2009": 0.423, + "2010": 0.438, + "2011": 0.443, + "2012": 0.45, + "2013": 0.456, + "2014": 0.461, + "2015": 0.462, + "2016": 0.464, + "2017": 0.462, + "2018": 0.461, + "2019": 0.464, + "2020": 0.46, + "2021": 0.459 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr104", + "Region": "West (Bubanza, Buja Rural, Cibitoke, Mairie de Bujumbura)", + "1990": 0.31, + "1991": 0.313, + "1992": 0.309, + "1993": 0.279, + "1994": 0.31, + "1995": 0.307, + "1996": 0.304, + "1997": 0.308, + "1998": 0.315, + "1999": 0.318, + "2000": 0.318, + "2001": 0.321, + "2002": 0.333, + "2003": 0.342, + "2004": 0.354, + "2005": 0.362, + "2006": 0.387, + "2007": 0.4, + "2008": 0.415, + "2009": 0.426, + "2010": 0.436, + "2011": 0.443, + "2012": 0.45, + "2013": 0.458, + "2014": 0.464, + "2015": 0.469, + "2016": 0.474, + "2017": 0.475, + "2018": 0.476, + "2019": 0.48, + "2020": 0.475, + "2021": 0.475 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "National", + "GDLCODE": "KHMt", + "Region": "Total", + "1990": 0.378, + "1991": 0.383, + "1992": 0.387, + "1993": 0.39, + "1994": 0.392, + "1995": 0.397, + "1996": 0.4, + "1997": 0.404, + "1998": 0.407, + "1999": 0.416, + "2000": 0.425, + "2001": 0.441, + "2002": 0.461, + "2003": 0.475, + "2004": 0.488, + "2005": 0.499, + "2006": 0.51, + "2007": 0.521, + "2008": 0.528, + "2009": 0.534, + "2010": 0.54, + "2011": 0.548, + "2012": 0.555, + "2013": 0.562, + "2014": 0.569, + "2015": 0.574, + "2016": 0.581, + "2017": 0.586, + "2018": 0.591, + "2019": 0.598, + "2020": 0.596, + "2021": 0.593 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr101", + "Region": "Banteay Mean Chey", + "1990": 0.363, + "1991": 0.368, + "1992": 0.372, + "1993": 0.374, + "1994": 0.376, + "1995": 0.382, + "1996": 0.384, + "1997": 0.388, + "1998": 0.391, + "1999": 0.4, + "2000": 0.408, + "2001": 0.421, + "2002": 0.438, + "2003": 0.449, + "2004": 0.459, + "2005": 0.467, + "2006": 0.48, + "2007": 0.493, + "2008": 0.501, + "2009": 0.508, + "2010": 0.516, + "2011": 0.531, + "2012": 0.546, + "2013": 0.561, + "2014": 0.575, + "2015": 0.58, + "2016": 0.587, + "2017": 0.592, + "2018": 0.596, + "2019": 0.603, + "2020": 0.601, + "2021": 0.598 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr113", + "Region": "Bat Dambang-Krong Pailin", + "1990": 0.387, + "1991": 0.391, + "1992": 0.396, + "1993": 0.398, + "1994": 0.4, + "1995": 0.406, + "1996": 0.409, + "1997": 0.413, + "1998": 0.416, + "1999": 0.425, + "2000": 0.434, + "2001": 0.448, + "2002": 0.465, + "2003": 0.477, + "2004": 0.487, + "2005": 0.496, + "2006": 0.51, + "2007": 0.524, + "2008": 0.534, + "2009": 0.542, + "2010": 0.55, + "2011": 0.562, + "2012": 0.572, + "2013": 0.584, + "2014": 0.594, + "2015": 0.599, + "2016": 0.606, + "2017": 0.612, + "2018": 0.617, + "2019": 0.624, + "2020": 0.622, + "2021": 0.619 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr102", + "Region": "Kampong Cham (incl Tboung Khmum)", + "1990": 0.363, + "1991": 0.367, + "1992": 0.372, + "1993": 0.374, + "1994": 0.376, + "1995": 0.381, + "1996": 0.384, + "1997": 0.388, + "1998": 0.391, + "1999": 0.399, + "2000": 0.407, + "2001": 0.423, + "2002": 0.442, + "2003": 0.456, + "2004": 0.467, + "2005": 0.478, + "2006": 0.489, + "2007": 0.499, + "2008": 0.506, + "2009": 0.51, + "2010": 0.516, + "2011": 0.524, + "2012": 0.531, + "2013": 0.538, + "2014": 0.545, + "2015": 0.55, + "2016": 0.556, + "2017": 0.562, + "2018": 0.566, + "2019": 0.573, + "2020": 0.57, + "2021": 0.568 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr103", + "Region": "Kampong Chhnang", + "1990": 0.343, + "1991": 0.347, + "1992": 0.351, + "1993": 0.353, + "1994": 0.355, + "1995": 0.36, + "1996": 0.362, + "1997": 0.366, + "1998": 0.369, + "1999": 0.377, + "2000": 0.385, + "2001": 0.408, + "2002": 0.435, + "2003": 0.456, + "2004": 0.476, + "2005": 0.494, + "2006": 0.498, + "2007": 0.501, + "2008": 0.501, + "2009": 0.499, + "2010": 0.497, + "2011": 0.511, + "2012": 0.524, + "2013": 0.538, + "2014": 0.551, + "2015": 0.556, + "2016": 0.563, + "2017": 0.568, + "2018": 0.573, + "2019": 0.58, + "2020": 0.578, + "2021": 0.575 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr104", + "Region": "Kampong Spueu", + "1990": 0.357, + "1991": 0.361, + "1992": 0.365, + "1993": 0.367, + "1994": 0.369, + "1995": 0.375, + "1996": 0.377, + "1997": 0.381, + "1998": 0.384, + "1999": 0.392, + "2000": 0.401, + "2001": 0.417, + "2002": 0.438, + "2003": 0.451, + "2004": 0.463, + "2005": 0.474, + "2006": 0.489, + "2007": 0.503, + "2008": 0.514, + "2009": 0.523, + "2010": 0.532, + "2011": 0.54, + "2012": 0.547, + "2013": 0.554, + "2014": 0.56, + "2015": 0.566, + "2016": 0.573, + "2017": 0.578, + "2018": 0.583, + "2019": 0.59, + "2020": 0.588, + "2021": 0.585 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr105", + "Region": "Kampong Thum", + "1990": 0.359, + "1991": 0.364, + "1992": 0.368, + "1993": 0.37, + "1994": 0.372, + "1995": 0.377, + "1996": 0.38, + "1997": 0.384, + "1998": 0.387, + "1999": 0.396, + "2000": 0.404, + "2001": 0.423, + "2002": 0.446, + "2003": 0.462, + "2004": 0.477, + "2005": 0.491, + "2006": 0.497, + "2007": 0.503, + "2008": 0.505, + "2009": 0.506, + "2010": 0.507, + "2011": 0.514, + "2012": 0.521, + "2013": 0.528, + "2014": 0.535, + "2015": 0.54, + "2016": 0.546, + "2017": 0.551, + "2018": 0.555, + "2019": 0.562, + "2020": 0.56, + "2021": 0.557 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr114", + "Region": "Kampot-Krong Kaeb-Krong Preah Sihanouk", + "1990": 0.378, + "1991": 0.383, + "1992": 0.387, + "1993": 0.389, + "1994": 0.391, + "1995": 0.397, + "1996": 0.4, + "1997": 0.404, + "1998": 0.407, + "1999": 0.416, + "2000": 0.425, + "2001": 0.442, + "2002": 0.463, + "2003": 0.479, + "2004": 0.493, + "2005": 0.505, + "2006": 0.514, + "2007": 0.523, + "2008": 0.528, + "2009": 0.531, + "2010": 0.534, + "2011": 0.545, + "2012": 0.554, + "2013": 0.564, + "2014": 0.572, + "2015": 0.578, + "2016": 0.585, + "2017": 0.59, + "2018": 0.595, + "2019": 0.602, + "2020": 0.6, + "2021": 0.597 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr106", + "Region": "Kandal", + "1990": 0.382, + "1991": 0.387, + "1992": 0.391, + "1993": 0.393, + "1994": 0.395, + "1995": 0.401, + "1996": 0.404, + "1997": 0.408, + "1998": 0.411, + "1999": 0.42, + "2000": 0.428, + "2001": 0.448, + "2002": 0.472, + "2003": 0.49, + "2004": 0.506, + "2005": 0.52, + "2006": 0.53, + "2007": 0.54, + "2008": 0.545, + "2009": 0.549, + "2010": 0.553, + "2011": 0.56, + "2012": 0.566, + "2013": 0.573, + "2014": 0.578, + "2015": 0.583, + "2016": 0.59, + "2017": 0.596, + "2018": 0.601, + "2019": 0.608, + "2020": 0.606, + "2021": 0.603 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr107", + "Region": "Kaoh Kong", + "1990": 0.367, + "1991": 0.372, + "1992": 0.376, + "1993": 0.378, + "1994": 0.38, + "1995": 0.385, + "1996": 0.388, + "1997": 0.392, + "1998": 0.395, + "1999": 0.404, + "2000": 0.412, + "2001": 0.425, + "2002": 0.443, + "2003": 0.454, + "2004": 0.464, + "2005": 0.473, + "2006": 0.489, + "2007": 0.504, + "2008": 0.515, + "2009": 0.524, + "2010": 0.533, + "2011": 0.549, + "2012": 0.565, + "2013": 0.58, + "2014": 0.595, + "2015": 0.601, + "2016": 0.608, + "2017": 0.613, + "2018": 0.618, + "2019": 0.625, + "2020": 0.623, + "2021": 0.62 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr116", + "Region": "Mondol Kiri-Rotanak Kiri", + "1990": 0.271, + "1991": 0.275, + "1992": 0.278, + "1993": 0.28, + "1994": 0.281, + "1995": 0.285, + "1996": 0.287, + "1997": 0.29, + "1998": 0.293, + "1999": 0.299, + "2000": 0.305, + "2001": 0.318, + "2002": 0.333, + "2003": 0.344, + "2004": 0.353, + "2005": 0.362, + "2006": 0.386, + "2007": 0.408, + "2008": 0.426, + "2009": 0.442, + "2010": 0.458, + "2011": 0.469, + "2012": 0.479, + "2013": 0.49, + "2014": 0.5, + "2015": 0.504, + "2016": 0.51, + "2017": 0.515, + "2018": 0.519, + "2019": 0.526, + "2020": 0.524, + "2021": 0.521 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr108", + "Region": "Phnom Penh", + "1990": 0.539, + "1991": 0.545, + "1992": 0.551, + "1993": 0.554, + "1994": 0.557, + "1995": 0.564, + "1996": 0.567, + "1997": 0.573, + "1998": 0.577, + "1999": 0.588, + "2000": 0.599, + "2001": 0.609, + "2002": 0.624, + "2003": 0.632, + "2004": 0.637, + "2005": 0.641, + "2006": 0.66, + "2007": 0.678, + "2008": 0.692, + "2009": 0.705, + "2010": 0.717, + "2011": 0.714, + "2012": 0.709, + "2013": 0.705, + "2014": 0.7, + "2015": 0.706, + "2016": 0.714, + "2017": 0.721, + "2018": 0.727, + "2019": 0.735, + "2020": 0.733, + "2021": 0.729 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr110", + "Region": "Pousat", + "1990": 0.337, + "1991": 0.341, + "1992": 0.345, + "1993": 0.347, + "1994": 0.349, + "1995": 0.354, + "1996": 0.357, + "1997": 0.361, + "1998": 0.364, + "1999": 0.371, + "2000": 0.379, + "2001": 0.4, + "2002": 0.425, + "2003": 0.445, + "2004": 0.463, + "2005": 0.48, + "2006": 0.492, + "2007": 0.503, + "2008": 0.511, + "2009": 0.517, + "2010": 0.523, + "2011": 0.528, + "2012": 0.531, + "2013": 0.536, + "2014": 0.539, + "2015": 0.544, + "2016": 0.55, + "2017": 0.556, + "2018": 0.56, + "2019": 0.567, + "2020": 0.565, + "2021": 0.562 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr115", + "Region": "Preah Vihear-Stueng Traeng-Kracheh", + "1990": 0.355, + "1991": 0.36, + "1992": 0.364, + "1993": 0.366, + "1994": 0.368, + "1995": 0.373, + "1996": 0.376, + "1997": 0.38, + "1998": 0.383, + "1999": 0.391, + "2000": 0.4, + "2001": 0.412, + "2002": 0.428, + "2003": 0.438, + "2004": 0.447, + "2005": 0.454, + "2006": 0.463, + "2007": 0.471, + "2008": 0.475, + "2009": 0.478, + "2010": 0.481, + "2011": 0.486, + "2012": 0.49, + "2013": 0.495, + "2014": 0.498, + "2015": 0.503, + "2016": 0.509, + "2017": 0.514, + "2018": 0.518, + "2019": 0.525, + "2020": 0.522, + "2021": 0.52 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr109", + "Region": "Prey Veaeng", + "1990": 0.358, + "1991": 0.362, + "1992": 0.366, + "1993": 0.369, + "1994": 0.371, + "1995": 0.376, + "1996": 0.378, + "1997": 0.382, + "1998": 0.386, + "1999": 0.394, + "2000": 0.402, + "2001": 0.418, + "2002": 0.438, + "2003": 0.452, + "2004": 0.464, + "2005": 0.475, + "2006": 0.486, + "2007": 0.497, + "2008": 0.504, + "2009": 0.51, + "2010": 0.515, + "2011": 0.524, + "2012": 0.532, + "2013": 0.54, + "2014": 0.547, + "2015": 0.552, + "2016": 0.559, + "2017": 0.564, + "2018": 0.569, + "2019": 0.575, + "2020": 0.573, + "2021": 0.571 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr117", + "Region": "Siem Reab-Otdar Mean Chey", + "1990": 0.336, + "1991": 0.34, + "1992": 0.344, + "1993": 0.346, + "1994": 0.348, + "1995": 0.353, + "1996": 0.356, + "1997": 0.359, + "1998": 0.362, + "1999": 0.37, + "2000": 0.378, + "2001": 0.396, + "2002": 0.418, + "2003": 0.435, + "2004": 0.45, + "2005": 0.464, + "2006": 0.478, + "2007": 0.491, + "2008": 0.501, + "2009": 0.508, + "2010": 0.517, + "2011": 0.521, + "2012": 0.524, + "2013": 0.528, + "2014": 0.53, + "2015": 0.535, + "2016": 0.541, + "2017": 0.546, + "2018": 0.55, + "2019": 0.557, + "2020": 0.555, + "2021": 0.552 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr111", + "Region": "Svay Rieng", + "1990": 0.371, + "1991": 0.375, + "1992": 0.38, + "1993": 0.382, + "1994": 0.384, + "1995": 0.389, + "1996": 0.392, + "1997": 0.396, + "1998": 0.4, + "1999": 0.408, + "2000": 0.417, + "2001": 0.434, + "2002": 0.455, + "2003": 0.47, + "2004": 0.484, + "2005": 0.496, + "2006": 0.502, + "2007": 0.508, + "2008": 0.509, + "2009": 0.509, + "2010": 0.51, + "2011": 0.524, + "2012": 0.538, + "2013": 0.552, + "2014": 0.565, + "2015": 0.57, + "2016": 0.577, + "2017": 0.582, + "2018": 0.587, + "2019": 0.594, + "2020": 0.592, + "2021": 0.589 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr112", + "Region": "Takaev", + "1990": 0.386, + "1991": 0.391, + "1992": 0.395, + "1993": 0.398, + "1994": 0.399, + "1995": 0.405, + "1996": 0.408, + "1997": 0.412, + "1998": 0.416, + "1999": 0.425, + "2000": 0.433, + "2001": 0.451, + "2002": 0.473, + "2003": 0.489, + "2004": 0.503, + "2005": 0.516, + "2006": 0.52, + "2007": 0.525, + "2008": 0.525, + "2009": 0.523, + "2010": 0.523, + "2011": 0.542, + "2012": 0.56, + "2013": 0.579, + "2014": 0.597, + "2015": 0.602, + "2016": 0.61, + "2017": 0.615, + "2018": 0.62, + "2019": 0.627, + "2020": 0.625, + "2021": 0.622 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "National", + "GDLCODE": "CMRt", + "Region": "Total", + "1990": 0.452, + "1991": 0.449, + "1992": 0.446, + "1993": 0.439, + "1994": 0.436, + "1995": 0.435, + "1996": 0.434, + "1997": 0.435, + "1998": 0.436, + "1999": 0.437, + "2000": 0.442, + "2001": 0.46, + "2002": 0.461, + "2003": 0.468, + "2004": 0.474, + "2005": 0.475, + "2006": 0.477, + "2007": 0.489, + "2008": 0.497, + "2009": 0.506, + "2010": 0.513, + "2011": 0.521, + "2012": 0.533, + "2013": 0.542, + "2014": 0.551, + "2015": 0.56, + "2016": 0.564, + "2017": 0.571, + "2018": 0.577, + "2019": 0.583, + "2020": 0.578, + "2021": 0.576 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr101", + "Region": "Adamaoua", + "1990": 0.391, + "1991": 0.388, + "1992": 0.384, + "1993": 0.378, + "1994": 0.374, + "1995": 0.373, + "1996": 0.371, + "1997": 0.37, + "1998": 0.37, + "1999": 0.375, + "2000": 0.384, + "2001": 0.405, + "2002": 0.409, + "2003": 0.42, + "2004": 0.428, + "2005": 0.429, + "2006": 0.431, + "2007": 0.441, + "2008": 0.449, + "2009": 0.457, + "2010": 0.464, + "2011": 0.472, + "2012": 0.478, + "2013": 0.483, + "2014": 0.487, + "2015": 0.491, + "2016": 0.49, + "2017": 0.492, + "2018": 0.494, + "2019": 0.5, + "2020": 0.496, + "2021": 0.494 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr102", + "Region": "Centre (incl Yaounde)", + "1990": 0.508, + "1991": 0.505, + "1992": 0.502, + "1993": 0.495, + "1994": 0.492, + "1995": 0.491, + "1996": 0.49, + "1997": 0.491, + "1998": 0.492, + "1999": 0.496, + "2000": 0.504, + "2001": 0.524, + "2002": 0.528, + "2003": 0.538, + "2004": 0.546, + "2005": 0.55, + "2006": 0.554, + "2007": 0.568, + "2008": 0.579, + "2009": 0.591, + "2010": 0.6, + "2011": 0.611, + "2012": 0.622, + "2013": 0.629, + "2014": 0.637, + "2015": 0.645, + "2016": 0.646, + "2017": 0.651, + "2018": 0.656, + "2019": 0.662, + "2020": 0.657, + "2021": 0.655 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr103", + "Region": "Est", + "1990": 0.426, + "1991": 0.422, + "1992": 0.419, + "1993": 0.413, + "1994": 0.41, + "1995": 0.408, + "1996": 0.407, + "1997": 0.407, + "1998": 0.408, + "1999": 0.41, + "2000": 0.416, + "2001": 0.434, + "2002": 0.435, + "2003": 0.443, + "2004": 0.449, + "2005": 0.453, + "2006": 0.457, + "2007": 0.471, + "2008": 0.482, + "2009": 0.492, + "2010": 0.501, + "2011": 0.512, + "2012": 0.518, + "2013": 0.523, + "2014": 0.527, + "2015": 0.531, + "2016": 0.53, + "2017": 0.532, + "2018": 0.533, + "2019": 0.539, + "2020": 0.534, + "2021": 0.533 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr104", + "Region": "Extreme Nord", + "1990": 0.3, + "1991": 0.296, + "1992": 0.294, + "1993": 0.288, + "1994": 0.286, + "1995": 0.284, + "1996": 0.283, + "1997": 0.282, + "1998": 0.282, + "1999": 0.29, + "2000": 0.301, + "2001": 0.323, + "2002": 0.329, + "2003": 0.341, + "2004": 0.35, + "2005": 0.349, + "2006": 0.349, + "2007": 0.358, + "2008": 0.364, + "2009": 0.369, + "2010": 0.374, + "2011": 0.379, + "2012": 0.394, + "2013": 0.407, + "2014": 0.42, + "2015": 0.433, + "2016": 0.441, + "2017": 0.452, + "2018": 0.462, + "2019": 0.468, + "2020": 0.464, + "2021": 0.462 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr105", + "Region": "Littoral (incl Douala)", + "1990": 0.554, + "1991": 0.55, + "1992": 0.547, + "1993": 0.54, + "1994": 0.538, + "1995": 0.537, + "1996": 0.536, + "1997": 0.537, + "1998": 0.538, + "1999": 0.539, + "2000": 0.545, + "2001": 0.564, + "2002": 0.564, + "2003": 0.572, + "2004": 0.578, + "2005": 0.579, + "2006": 0.58, + "2007": 0.592, + "2008": 0.6, + "2009": 0.609, + "2010": 0.616, + "2011": 0.625, + "2012": 0.639, + "2013": 0.65, + "2014": 0.661, + "2015": 0.672, + "2016": 0.677, + "2017": 0.686, + "2018": 0.694, + "2019": 0.701, + "2020": 0.696, + "2021": 0.693 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr106", + "Region": "Nord", + "1990": 0.345, + "1991": 0.342, + "1992": 0.339, + "1993": 0.333, + "1994": 0.329, + "1995": 0.328, + "1996": 0.326, + "1997": 0.326, + "1998": 0.326, + "1999": 0.326, + "2000": 0.33, + "2001": 0.345, + "2002": 0.345, + "2003": 0.35, + "2004": 0.354, + "2005": 0.357, + "2006": 0.36, + "2007": 0.372, + "2008": 0.381, + "2009": 0.391, + "2010": 0.398, + "2011": 0.407, + "2012": 0.417, + "2013": 0.425, + "2014": 0.432, + "2015": 0.44, + "2016": 0.443, + "2017": 0.449, + "2018": 0.455, + "2019": 0.46, + "2020": 0.456, + "2021": 0.455 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr107", + "Region": "Nord Ouest", + "1990": 0.494, + "1991": 0.49, + "1992": 0.487, + "1993": 0.48, + "1994": 0.477, + "1995": 0.475, + "1996": 0.474, + "1997": 0.475, + "1998": 0.476, + "1999": 0.474, + "2000": 0.476, + "2001": 0.492, + "2002": 0.49, + "2003": 0.494, + "2004": 0.497, + "2005": 0.5, + "2006": 0.504, + "2007": 0.518, + "2008": 0.528, + "2009": 0.539, + "2010": 0.548, + "2011": 0.559, + "2012": 0.562, + "2013": 0.563, + "2014": 0.563, + "2015": 0.563, + "2016": 0.557, + "2017": 0.554, + "2018": 0.549, + "2019": 0.555, + "2020": 0.551, + "2021": 0.549 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr108", + "Region": "Ouest", + "1990": 0.516, + "1991": 0.512, + "1992": 0.508, + "1993": 0.501, + "1994": 0.497, + "1995": 0.495, + "1996": 0.494, + "1997": 0.494, + "1998": 0.495, + "1999": 0.49, + "2000": 0.49, + "2001": 0.504, + "2002": 0.499, + "2003": 0.5, + "2004": 0.5, + "2005": 0.503, + "2006": 0.506, + "2007": 0.521, + "2008": 0.531, + "2009": 0.542, + "2010": 0.551, + "2011": 0.562, + "2012": 0.573, + "2013": 0.582, + "2014": 0.591, + "2015": 0.6, + "2016": 0.603, + "2017": 0.61, + "2018": 0.616, + "2019": 0.623, + "2020": 0.618, + "2021": 0.616 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr109", + "Region": "Sud", + "1990": 0.479, + "1991": 0.475, + "1992": 0.472, + "1993": 0.465, + "1994": 0.462, + "1995": 0.46, + "1996": 0.459, + "1997": 0.46, + "1998": 0.461, + "1999": 0.463, + "2000": 0.469, + "2001": 0.487, + "2002": 0.489, + "2003": 0.497, + "2004": 0.503, + "2005": 0.507, + "2006": 0.511, + "2007": 0.525, + "2008": 0.535, + "2009": 0.546, + "2010": 0.555, + "2011": 0.566, + "2012": 0.577, + "2013": 0.585, + "2014": 0.594, + "2015": 0.603, + "2016": 0.606, + "2017": 0.612, + "2018": 0.617, + "2019": 0.623, + "2020": 0.619, + "2021": 0.617 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr110", + "Region": "Sud Ouest", + "1990": 0.507, + "1991": 0.504, + "1992": 0.501, + "1993": 0.495, + "1994": 0.492, + "1995": 0.491, + "1996": 0.491, + "1997": 0.492, + "1998": 0.493, + "1999": 0.493, + "2000": 0.496, + "2001": 0.511, + "2002": 0.509, + "2003": 0.514, + "2004": 0.518, + "2005": 0.518, + "2006": 0.519, + "2007": 0.53, + "2008": 0.537, + "2009": 0.545, + "2010": 0.551, + "2011": 0.559, + "2012": 0.578, + "2013": 0.594, + "2014": 0.61, + "2015": 0.627, + "2016": 0.637, + "2017": 0.651, + "2018": 0.663, + "2019": 0.67, + "2020": 0.665, + "2021": 0.663 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "National", + "GDLCODE": "CANt", + "Region": "Total", + "1990": 0.86, + "1991": 0.864, + "1992": 0.868, + "1993": 0.866, + "1994": 0.872, + "1995": 0.876, + "1996": 0.879, + "1997": 0.88, + "1998": 0.879, + "1999": 0.884, + "2000": 0.89, + "2001": 0.892, + "2002": 0.894, + "2003": 0.897, + "2004": 0.901, + "2005": 0.903, + "2006": 0.907, + "2007": 0.908, + "2008": 0.91, + "2009": 0.909, + "2010": 0.911, + "2011": 0.915, + "2012": 0.921, + "2013": 0.923, + "2014": 0.925, + "2015": 0.926, + "2016": 0.928, + "2017": 0.931, + "2018": 0.933, + "2019": 0.937, + "2020": 0.931, + "2021": 0.936 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr109", + "Region": "Alberta", + "1990": 0.878, + "1991": 0.882, + "1992": 0.885, + "1993": 0.884, + "1994": 0.891, + "1995": 0.893, + "1996": 0.898, + "1997": 0.899, + "1998": 0.895, + "1999": 0.9, + "2000": 0.91, + "2001": 0.911, + "2002": 0.91, + "2003": 0.916, + "2004": 0.922, + "2005": 0.928, + "2006": 0.932, + "2007": 0.931, + "2008": 0.935, + "2009": 0.929, + "2010": 0.933, + "2011": 0.939, + "2012": 0.944, + "2013": 0.948, + "2014": 0.949, + "2015": 0.944, + "2016": 0.946, + "2017": 0.949, + "2018": 0.951, + "2019": 0.955, + "2020": 0.95, + "2021": 0.955 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr110", + "Region": "British Columbia", + "1990": 0.872, + "1991": 0.877, + "1992": 0.882, + "1993": 0.881, + "1994": 0.886, + "1995": 0.889, + "1996": 0.892, + "1997": 0.892, + "1998": 0.89, + "1999": 0.894, + "2000": 0.9, + "2001": 0.9, + "2002": 0.901, + "2003": 0.904, + "2004": 0.909, + "2005": 0.911, + "2006": 0.916, + "2007": 0.917, + "2008": 0.918, + "2009": 0.917, + "2010": 0.919, + "2011": 0.923, + "2012": 0.928, + "2013": 0.93, + "2014": 0.932, + "2015": 0.934, + "2016": 0.936, + "2017": 0.939, + "2018": 0.941, + "2019": 0.945, + "2020": 0.939, + "2021": 0.944 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr107", + "Region": "Manitoba", + "1990": 0.84, + "1991": 0.844, + "1992": 0.849, + "1993": 0.845, + "1994": 0.851, + "1995": 0.854, + "1996": 0.859, + "1997": 0.858, + "1998": 0.858, + "1999": 0.86, + "2000": 0.864, + "2001": 0.867, + "2002": 0.869, + "2003": 0.87, + "2004": 0.874, + "2005": 0.877, + "2006": 0.882, + "2007": 0.883, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.89, + "2012": 0.897, + "2013": 0.9, + "2014": 0.9, + "2015": 0.901, + "2016": 0.903, + "2017": 0.906, + "2018": 0.907, + "2019": 0.911, + "2020": 0.906, + "2021": 0.911 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr104", + "Region": "New Brunswick", + "1990": 0.823, + "1991": 0.828, + "1992": 0.833, + "1993": 0.833, + "1994": 0.838, + "1995": 0.844, + "1996": 0.848, + "1997": 0.846, + "1998": 0.846, + "1999": 0.852, + "2000": 0.858, + "2001": 0.86, + "2002": 0.862, + "2003": 0.866, + "2004": 0.87, + "2005": 0.873, + "2006": 0.877, + "2007": 0.878, + "2008": 0.878, + "2009": 0.881, + "2010": 0.884, + "2011": 0.887, + "2012": 0.892, + "2013": 0.893, + "2014": 0.893, + "2015": 0.894, + "2016": 0.896, + "2017": 0.899, + "2018": 0.9, + "2019": 0.904, + "2020": 0.899, + "2021": 0.904 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr101", + "Region": "Newfoundland and Labrador", + "1990": 0.801, + "1991": 0.807, + "1992": 0.81, + "1993": 0.809, + "1994": 0.816, + "1995": 0.821, + "1996": 0.823, + "1997": 0.822, + "1998": 0.823, + "1999": 0.83, + "2000": 0.84, + "2001": 0.842, + "2002": 0.851, + "2003": 0.856, + "2004": 0.86, + "2005": 0.865, + "2006": 0.872, + "2007": 0.879, + "2008": 0.884, + "2009": 0.877, + "2010": 0.884, + "2011": 0.892, + "2012": 0.893, + "2013": 0.896, + "2014": 0.895, + "2015": 0.89, + "2016": 0.892, + "2017": 0.895, + "2018": 0.896, + "2019": 0.9, + "2020": 0.895, + "2021": 0.9 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr103", + "Region": "Nova Scotia", + "1990": 0.836, + "1991": 0.842, + "1992": 0.846, + "1993": 0.843, + "1994": 0.849, + "1995": 0.852, + "1996": 0.855, + "1997": 0.855, + "1998": 0.856, + "1999": 0.862, + "2000": 0.868, + "2001": 0.871, + "2002": 0.872, + "2003": 0.876, + "2004": 0.878, + "2005": 0.88, + "2006": 0.883, + "2007": 0.883, + "2008": 0.885, + "2009": 0.887, + "2010": 0.888, + "2011": 0.89, + "2012": 0.895, + "2013": 0.897, + "2014": 0.897, + "2015": 0.899, + "2016": 0.901, + "2017": 0.904, + "2018": 0.906, + "2019": 0.91, + "2020": 0.904, + "2021": 0.909 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr106", + "Region": "Ontario", + "1990": 0.871, + "1991": 0.876, + "1992": 0.879, + "1993": 0.877, + "1994": 0.882, + "1995": 0.886, + "1996": 0.89, + "1997": 0.89, + "1998": 0.89, + "1999": 0.895, + "2000": 0.9, + "2001": 0.901, + "2002": 0.903, + "2003": 0.905, + "2004": 0.908, + "2005": 0.91, + "2006": 0.913, + "2007": 0.914, + "2008": 0.914, + "2009": 0.915, + "2010": 0.916, + "2011": 0.92, + "2012": 0.926, + "2013": 0.928, + "2014": 0.93, + "2015": 0.933, + "2016": 0.935, + "2017": 0.938, + "2018": 0.94, + "2019": 0.944, + "2020": 0.938, + "2021": 0.943 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr102", + "Region": "Prince Edward Island, Yukon Territory, Northwest Territories, Nunavut", + "1990": 0.846, + "1991": 0.85, + "1992": 0.855, + "1993": 0.853, + "1994": 0.857, + "1995": 0.86, + "1996": 0.867, + "1997": 0.866, + "1998": 0.865, + "1999": 0.869, + "2000": 0.876, + "2001": 0.881, + "2002": 0.883, + "2003": 0.887, + "2004": 0.894, + "2005": 0.894, + "2006": 0.899, + "2007": 0.899, + "2008": 0.901, + "2009": 0.9, + "2010": 0.905, + "2011": 0.907, + "2012": 0.911, + "2013": 0.913, + "2014": 0.917, + "2015": 0.92, + "2016": 0.922, + "2017": 0.925, + "2018": 0.927, + "2019": 0.931, + "2020": 0.925, + "2021": 0.93 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr105", + "Region": "Quebec", + "1990": 0.845, + "1991": 0.85, + "1992": 0.854, + "1993": 0.852, + "1994": 0.857, + "1995": 0.861, + "1996": 0.864, + "1997": 0.864, + "1998": 0.864, + "1999": 0.87, + "2000": 0.875, + "2001": 0.878, + "2002": 0.88, + "2003": 0.883, + "2004": 0.887, + "2005": 0.888, + "2006": 0.892, + "2007": 0.893, + "2008": 0.894, + "2009": 0.896, + "2010": 0.897, + "2011": 0.9, + "2012": 0.906, + "2013": 0.909, + "2014": 0.91, + "2015": 0.912, + "2016": 0.914, + "2017": 0.917, + "2018": 0.919, + "2019": 0.923, + "2020": 0.918, + "2021": 0.923 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr108", + "Region": "Saskatchewan", + "1990": 0.84, + "1991": 0.845, + "1992": 0.849, + "1993": 0.848, + "1994": 0.853, + "1995": 0.858, + "1996": 0.864, + "1997": 0.862, + "1998": 0.861, + "1999": 0.864, + "2000": 0.871, + "2001": 0.871, + "2002": 0.873, + "2003": 0.877, + "2004": 0.883, + "2005": 0.887, + "2006": 0.89, + "2007": 0.893, + "2008": 0.904, + "2009": 0.9, + "2010": 0.901, + "2011": 0.91, + "2012": 0.917, + "2013": 0.92, + "2014": 0.92, + "2015": 0.917, + "2016": 0.919, + "2017": 0.922, + "2018": 0.924, + "2019": 0.928, + "2020": 0.922, + "2021": 0.927 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "National", + "GDLCODE": "CPVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.569, + "2001": 0.576, + "2002": 0.587, + "2003": 0.593, + "2004": 0.597, + "2005": 0.606, + "2006": 0.62, + "2007": 0.629, + "2008": 0.635, + "2009": 0.639, + "2010": 0.644, + "2011": 0.653, + "2012": 0.656, + "2013": 0.666, + "2014": 0.667, + "2015": 0.663, + "2016": 0.67, + "2017": 0.675, + "2018": 0.673, + "2019": 0.676, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr105", + "Region": "Fogo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.575, + "2001": 0.582, + "2002": 0.592, + "2003": 0.598, + "2004": 0.603, + "2005": 0.612, + "2006": 0.625, + "2007": 0.635, + "2008": 0.641, + "2009": 0.645, + "2010": 0.65, + "2011": 0.66, + "2012": 0.663, + "2013": 0.672, + "2014": 0.673, + "2015": 0.669, + "2016": 0.676, + "2017": 0.682, + "2018": 0.679, + "2019": 0.682, + "2020": 0.668, + "2021": 0.668 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr101", + "Region": "S.Antao", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.553, + "2001": 0.56, + "2002": 0.57, + "2003": 0.576, + "2004": 0.58, + "2005": 0.589, + "2006": 0.602, + "2007": 0.611, + "2008": 0.617, + "2009": 0.621, + "2010": 0.626, + "2011": 0.635, + "2012": 0.638, + "2013": 0.647, + "2014": 0.648, + "2015": 0.644, + "2016": 0.651, + "2017": 0.656, + "2018": 0.653, + "2019": 0.657, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr102", + "Region": "S.Vicente", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.591, + "2001": 0.598, + "2002": 0.609, + "2003": 0.615, + "2004": 0.62, + "2005": 0.629, + "2006": 0.643, + "2007": 0.653, + "2008": 0.659, + "2009": 0.663, + "2010": 0.668, + "2011": 0.678, + "2012": 0.681, + "2013": 0.691, + "2014": 0.692, + "2015": 0.688, + "2016": 0.695, + "2017": 0.7, + "2018": 0.698, + "2019": 0.701, + "2020": 0.686, + "2021": 0.686 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr104", + "Region": "Santiago- Praia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.6, + "2001": 0.608, + "2002": 0.619, + "2003": 0.625, + "2004": 0.63, + "2005": 0.639, + "2006": 0.653, + "2007": 0.663, + "2008": 0.669, + "2009": 0.673, + "2010": 0.679, + "2011": 0.689, + "2012": 0.692, + "2013": 0.702, + "2014": 0.703, + "2015": 0.699, + "2016": 0.706, + "2017": 0.712, + "2018": 0.709, + "2019": 0.712, + "2020": 0.698, + "2021": 0.698 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr103", + "Region": "Santiago-Interior", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.52, + "2001": 0.527, + "2002": 0.536, + "2003": 0.542, + "2004": 0.546, + "2005": 0.554, + "2006": 0.566, + "2007": 0.575, + "2008": 0.581, + "2009": 0.584, + "2010": 0.589, + "2011": 0.598, + "2012": 0.6, + "2013": 0.609, + "2014": 0.61, + "2015": 0.607, + "2016": 0.613, + "2017": 0.618, + "2018": 0.615, + "2019": 0.619, + "2020": 0.605, + "2021": 0.605 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "National", + "GDLCODE": "CAFt", + "Region": "Total", + "1990": 0.338, + "1991": 0.333, + "1992": 0.319, + "1993": 0.319, + "1994": 0.321, + "1995": 0.323, + "1996": 0.319, + "1997": 0.322, + "1998": 0.325, + "1999": 0.329, + "2000": 0.329, + "2001": 0.332, + "2002": 0.333, + "2003": 0.333, + "2004": 0.337, + "2005": 0.342, + "2006": 0.345, + "2007": 0.351, + "2008": 0.358, + "2009": 0.364, + "2010": 0.372, + "2011": 0.381, + "2012": 0.388, + "2013": 0.368, + "2014": 0.37, + "2015": 0.384, + "2016": 0.391, + "2017": 0.398, + "2018": 0.405, + "2019": 0.411, + "2020": 0.407, + "2021": 0.404 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr106", + "Region": "Bangui", + "1990": 0.452, + "1991": 0.446, + "1992": 0.43, + "1993": 0.431, + "1994": 0.433, + "1995": 0.436, + "1996": 0.433, + "1997": 0.437, + "1998": 0.441, + "1999": 0.446, + "2000": 0.448, + "2001": 0.451, + "2002": 0.454, + "2003": 0.455, + "2004": 0.461, + "2005": 0.468, + "2006": 0.472, + "2007": 0.479, + "2008": 0.485, + "2009": 0.492, + "2010": 0.5, + "2011": 0.512, + "2012": 0.521, + "2013": 0.5, + "2014": 0.503, + "2015": 0.522, + "2016": 0.53, + "2017": 0.539, + "2018": 0.548, + "2019": 0.555, + "2020": 0.55, + "2021": 0.546 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr101", + "Region": "RS I (Ombella Mpoko, Lobaye, Kemo, Nana Grebizi, Ouaka)", + "1990": 0.33, + "1991": 0.325, + "1992": 0.311, + "1993": 0.311, + "1994": 0.312, + "1995": 0.316, + "1996": 0.313, + "1997": 0.317, + "1998": 0.321, + "1999": 0.325, + "2000": 0.327, + "2001": 0.33, + "2002": 0.333, + "2003": 0.334, + "2004": 0.338, + "2005": 0.344, + "2006": 0.348, + "2007": 0.353, + "2008": 0.358, + "2009": 0.362, + "2010": 0.369, + "2011": 0.378, + "2012": 0.385, + "2013": 0.365, + "2014": 0.367, + "2015": 0.382, + "2016": 0.389, + "2017": 0.396, + "2018": 0.403, + "2019": 0.409, + "2020": 0.405, + "2021": 0.401 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr102", + "Region": "RS II (Mambera Kadei, Nana Mambere, Sangha Mbaere)", + "1990": 0.289, + "1991": 0.284, + "1992": 0.273, + "1993": 0.273, + "1994": 0.274, + "1995": 0.278, + "1996": 0.277, + "1997": 0.281, + "1998": 0.285, + "1999": 0.29, + "2000": 0.292, + "2001": 0.296, + "2002": 0.299, + "2003": 0.301, + "2004": 0.306, + "2005": 0.311, + "2006": 0.316, + "2007": 0.32, + "2008": 0.325, + "2009": 0.329, + "2010": 0.335, + "2011": 0.345, + "2012": 0.354, + "2013": 0.338, + "2014": 0.341, + "2015": 0.357, + "2016": 0.365, + "2017": 0.374, + "2018": 0.383, + "2019": 0.39, + "2020": 0.386, + "2021": 0.383 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr103", + "Region": "RS III (Ouham Pende, Ouham)", + "1990": 0.284, + "1991": 0.279, + "1992": 0.266, + "1993": 0.266, + "1994": 0.268, + "1995": 0.272, + "1996": 0.27, + "1997": 0.274, + "1998": 0.278, + "1999": 0.282, + "2000": 0.285, + "2001": 0.288, + "2002": 0.291, + "2003": 0.292, + "2004": 0.296, + "2005": 0.302, + "2006": 0.306, + "2007": 0.312, + "2008": 0.319, + "2009": 0.325, + "2010": 0.332, + "2011": 0.341, + "2012": 0.347, + "2013": 0.328, + "2014": 0.33, + "2015": 0.343, + "2016": 0.349, + "2017": 0.356, + "2018": 0.363, + "2019": 0.368, + "2020": 0.364, + "2021": 0.361 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr104", + "Region": "RS IV (Haute-Kotto, Baminigui Bangoran, Vakaga)", + "1990": 0.329, + "1991": 0.323, + "1992": 0.309, + "1993": 0.309, + "1994": 0.311, + "1995": 0.312, + "1996": 0.308, + "1997": 0.31, + "1998": 0.311, + "1999": 0.314, + "2000": 0.313, + "2001": 0.314, + "2002": 0.315, + "2003": 0.314, + "2004": 0.316, + "2005": 0.319, + "2006": 0.321, + "2007": 0.327, + "2008": 0.334, + "2009": 0.34, + "2010": 0.348, + "2011": 0.358, + "2012": 0.366, + "2013": 0.347, + "2014": 0.35, + "2015": 0.365, + "2016": 0.373, + "2017": 0.38, + "2018": 0.388, + "2019": 0.395, + "2020": 0.391, + "2021": 0.387 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr105", + "Region": "RS V (Basse Kotto, Mbornou, Houte Mbormou)", + "1990": 0.298, + "1991": 0.293, + "1992": 0.28, + "1993": 0.28, + "1994": 0.282, + "1995": 0.282, + "1996": 0.278, + "1997": 0.279, + "1998": 0.279, + "1999": 0.281, + "2000": 0.281, + "2001": 0.281, + "2002": 0.281, + "2003": 0.279, + "2004": 0.281, + "2005": 0.284, + "2006": 0.285, + "2007": 0.293, + "2008": 0.301, + "2009": 0.309, + "2010": 0.318, + "2011": 0.325, + "2012": 0.331, + "2013": 0.312, + "2014": 0.313, + "2015": 0.325, + "2016": 0.331, + "2017": 0.336, + "2018": 0.342, + "2019": 0.347, + "2020": 0.343, + "2021": 0.34 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "National", + "GDLCODE": "TCDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.291, + "2001": 0.301, + "2002": 0.307, + "2003": 0.307, + "2004": 0.325, + "2005": 0.327, + "2006": 0.327, + "2007": 0.337, + "2008": 0.341, + "2009": 0.355, + "2010": 0.362, + "2011": 0.372, + "2012": 0.381, + "2013": 0.386, + "2014": 0.393, + "2015": 0.389, + "2016": 0.391, + "2017": 0.393, + "2018": 0.398, + "2019": 0.403, + "2020": 0.397, + "2021": 0.394 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr101", + "Region": "Zone 1 (N'Djamena)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.419, + "2001": 0.436, + "2002": 0.448, + "2003": 0.452, + "2004": 0.481, + "2005": 0.477, + "2006": 0.473, + "2007": 0.48, + "2008": 0.481, + "2009": 0.492, + "2010": 0.497, + "2011": 0.51, + "2012": 0.52, + "2013": 0.527, + "2014": 0.536, + "2015": 0.533, + "2016": 0.534, + "2017": 0.535, + "2018": 0.539, + "2019": 0.544, + "2020": 0.536, + "2021": 0.532 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr102", + "Region": "Zone 2 (Borkou, Ennedi, Tibesti, Kanem, Barh El Gazal, Lac)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.204, + "2001": 0.214, + "2002": 0.22, + "2003": 0.222, + "2004": 0.238, + "2005": 0.242, + "2006": 0.246, + "2007": 0.257, + "2008": 0.263, + "2009": 0.276, + "2010": 0.283, + "2011": 0.288, + "2012": 0.29, + "2013": 0.289, + "2014": 0.289, + "2015": 0.28, + "2016": 0.277, + "2017": 0.275, + "2018": 0.275, + "2019": 0.275, + "2020": 0.27, + "2021": 0.268 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr103", + "Region": "Zone 3 (Guera, Batha, Salamat)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.217, + "2001": 0.228, + "2002": 0.236, + "2003": 0.238, + "2004": 0.255, + "2005": 0.259, + "2006": 0.261, + "2007": 0.272, + "2008": 0.277, + "2009": 0.291, + "2010": 0.299, + "2011": 0.309, + "2012": 0.317, + "2013": 0.323, + "2014": 0.33, + "2015": 0.327, + "2016": 0.33, + "2017": 0.332, + "2018": 0.337, + "2019": 0.342, + "2020": 0.337, + "2021": 0.334 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr104", + "Region": "Zone 4 (Ouaddai, Assongha, Sila, Biltine - Wadi Fira)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.186, + "2001": 0.192, + "2002": 0.197, + "2003": 0.197, + "2004": 0.21, + "2005": 0.221, + "2006": 0.23, + "2007": 0.245, + "2008": 0.256, + "2009": 0.273, + "2010": 0.285, + "2011": 0.289, + "2012": 0.292, + "2013": 0.291, + "2014": 0.293, + "2015": 0.285, + "2016": 0.287, + "2017": 0.289, + "2018": 0.294, + "2019": 0.298, + "2020": 0.293, + "2021": 0.291 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr105", + "Region": "Zone 5 (Chari-Baguimi, Dababa, Baguirmi, Hadjer Lamis)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.218, + "2001": 0.216, + "2002": 0.211, + "2003": 0.202, + "2004": 0.205, + "2005": 0.212, + "2006": 0.219, + "2007": 0.231, + "2008": 0.238, + "2009": 0.252, + "2010": 0.261, + "2011": 0.271, + "2012": 0.28, + "2013": 0.286, + "2014": 0.294, + "2015": 0.293, + "2016": 0.291, + "2017": 0.289, + "2018": 0.29, + "2019": 0.291, + "2020": 0.287, + "2021": 0.284 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr106", + "Region": "Zone 6 (Mayo-Kebbi Est and Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.334, + "2001": 0.348, + "2002": 0.357, + "2003": 0.359, + "2004": 0.383, + "2005": 0.376, + "2006": 0.369, + "2007": 0.373, + "2008": 0.371, + "2009": 0.379, + "2010": 0.379, + "2011": 0.395, + "2012": 0.409, + "2013": 0.418, + "2014": 0.431, + "2015": 0.431, + "2016": 0.438, + "2017": 0.445, + "2018": 0.457, + "2019": 0.469, + "2020": 0.462, + "2021": 0.458 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr107", + "Region": "Zone 7 (Logone Occidental & Oriental, Monts de Lam, Tandjile Est & Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.316, + "2001": 0.327, + "2002": 0.334, + "2003": 0.334, + "2004": 0.355, + "2005": 0.354, + "2006": 0.351, + "2007": 0.359, + "2008": 0.36, + "2009": 0.372, + "2010": 0.376, + "2011": 0.388, + "2012": 0.398, + "2013": 0.404, + "2014": 0.413, + "2015": 0.411, + "2016": 0.412, + "2017": 0.413, + "2018": 0.418, + "2019": 0.423, + "2020": 0.416, + "2021": 0.413 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr108", + "Region": "Zone 8 (Mandoul, Moyen-Chari, Bahr Koh, Lac Iro)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.31, + "2001": 0.319, + "2002": 0.325, + "2003": 0.324, + "2004": 0.343, + "2005": 0.347, + "2006": 0.35, + "2007": 0.362, + "2008": 0.368, + "2009": 0.384, + "2010": 0.393, + "2011": 0.403, + "2012": 0.412, + "2013": 0.416, + "2014": 0.423, + "2015": 0.419, + "2016": 0.423, + "2017": 0.427, + "2018": 0.435, + "2019": 0.443, + "2020": 0.436, + "2021": 0.432 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "National", + "GDLCODE": "CHLt", + "Region": "Total", + "1990": 0.706, + "1991": 0.715, + "1992": 0.723, + "1993": 0.716, + "1994": 0.722, + "1995": 0.728, + "1996": 0.735, + "1997": 0.744, + "1998": 0.749, + "1999": 0.755, + "2000": 0.763, + "2001": 0.768, + "2002": 0.775, + "2003": 0.779, + "2004": 0.787, + "2005": 0.795, + "2006": 0.796, + "2007": 0.801, + "2008": 0.813, + "2009": 0.811, + "2010": 0.813, + "2011": 0.817, + "2012": 0.824, + "2013": 0.836, + "2014": 0.841, + "2015": 0.846, + "2016": 0.85, + "2017": 0.853, + "2018": 0.856, + "2019": 0.861, + "2020": 0.852, + "2021": 0.855 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr111", + "Region": "Aisen", + "1990": 0.669, + "1991": 0.677, + "1992": 0.685, + "1993": 0.679, + "1994": 0.684, + "1995": 0.69, + "1996": 0.697, + "1997": 0.705, + "1998": 0.71, + "1999": 0.716, + "2000": 0.724, + "2001": 0.728, + "2002": 0.734, + "2003": 0.738, + "2004": 0.746, + "2005": 0.753, + "2006": 0.755, + "2007": 0.759, + "2008": 0.77, + "2009": 0.769, + "2010": 0.771, + "2011": 0.775, + "2012": 0.781, + "2013": 0.793, + "2014": 0.797, + "2015": 0.802, + "2016": 0.806, + "2017": 0.809, + "2018": 0.812, + "2019": 0.816, + "2020": 0.808, + "2021": 0.811 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr102", + "Region": "Antofagasta", + "1990": 0.729, + "1991": 0.737, + "1992": 0.746, + "1993": 0.739, + "1994": 0.745, + "1995": 0.751, + "1996": 0.758, + "1997": 0.767, + "1998": 0.772, + "1999": 0.779, + "2000": 0.788, + "2001": 0.792, + "2002": 0.799, + "2003": 0.803, + "2004": 0.812, + "2005": 0.82, + "2006": 0.821, + "2007": 0.826, + "2008": 0.838, + "2009": 0.837, + "2010": 0.839, + "2011": 0.843, + "2012": 0.85, + "2013": 0.863, + "2014": 0.866, + "2015": 0.87, + "2016": 0.874, + "2017": 0.877, + "2018": 0.879, + "2019": 0.882, + "2020": 0.873, + "2021": 0.876 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr109", + "Region": "Arbucania", + "1990": 0.651, + "1991": 0.659, + "1992": 0.667, + "1993": 0.661, + "1994": 0.666, + "1995": 0.672, + "1996": 0.679, + "1997": 0.687, + "1998": 0.691, + "1999": 0.697, + "2000": 0.705, + "2001": 0.709, + "2002": 0.715, + "2003": 0.719, + "2004": 0.726, + "2005": 0.734, + "2006": 0.735, + "2007": 0.739, + "2008": 0.75, + "2009": 0.749, + "2010": 0.751, + "2011": 0.755, + "2012": 0.761, + "2013": 0.773, + "2014": 0.777, + "2015": 0.781, + "2016": 0.785, + "2017": 0.788, + "2018": 0.791, + "2019": 0.795, + "2020": 0.787, + "2021": 0.79 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr103", + "Region": "Atacama", + "1990": 0.709, + "1991": 0.718, + "1992": 0.726, + "1993": 0.719, + "1994": 0.725, + "1995": 0.732, + "1996": 0.739, + "1997": 0.747, + "1998": 0.752, + "1999": 0.758, + "2000": 0.767, + "2001": 0.771, + "2002": 0.778, + "2003": 0.782, + "2004": 0.79, + "2005": 0.798, + "2006": 0.799, + "2007": 0.804, + "2008": 0.816, + "2009": 0.815, + "2010": 0.817, + "2011": 0.82, + "2012": 0.827, + "2013": 0.84, + "2014": 0.844, + "2015": 0.849, + "2016": 0.854, + "2017": 0.856, + "2018": 0.86, + "2019": 0.864, + "2020": 0.856, + "2021": 0.859 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr108", + "Region": "Bio Bio", + "1990": 0.685, + "1991": 0.693, + "1992": 0.701, + "1993": 0.694, + "1994": 0.7, + "1995": 0.706, + "1996": 0.713, + "1997": 0.721, + "1998": 0.726, + "1999": 0.732, + "2000": 0.74, + "2001": 0.744, + "2002": 0.751, + "2003": 0.755, + "2004": 0.763, + "2005": 0.771, + "2006": 0.772, + "2007": 0.777, + "2008": 0.788, + "2009": 0.787, + "2010": 0.788, + "2011": 0.792, + "2012": 0.799, + "2013": 0.811, + "2014": 0.815, + "2015": 0.82, + "2016": 0.824, + "2017": 0.827, + "2018": 0.83, + "2019": 0.835, + "2020": 0.826, + "2021": 0.829 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr104", + "Region": "Coquimbo", + "1990": 0.688, + "1991": 0.696, + "1992": 0.704, + "1993": 0.698, + "1994": 0.703, + "1995": 0.71, + "1996": 0.716, + "1997": 0.725, + "1998": 0.73, + "1999": 0.736, + "2000": 0.744, + "2001": 0.748, + "2002": 0.755, + "2003": 0.759, + "2004": 0.767, + "2005": 0.774, + "2006": 0.776, + "2007": 0.781, + "2008": 0.792, + "2009": 0.791, + "2010": 0.793, + "2011": 0.796, + "2012": 0.803, + "2013": 0.815, + "2014": 0.82, + "2015": 0.824, + "2016": 0.829, + "2017": 0.831, + "2018": 0.834, + "2019": 0.839, + "2020": 0.831, + "2021": 0.834 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr110", + "Region": "Los Lagos (incl Los Rios)", + "1990": 0.659, + "1991": 0.667, + "1992": 0.674, + "1993": 0.668, + "1994": 0.674, + "1995": 0.68, + "1996": 0.686, + "1997": 0.695, + "1998": 0.699, + "1999": 0.705, + "2000": 0.713, + "2001": 0.717, + "2002": 0.723, + "2003": 0.727, + "2004": 0.735, + "2005": 0.742, + "2006": 0.743, + "2007": 0.748, + "2008": 0.759, + "2009": 0.758, + "2010": 0.759, + "2011": 0.763, + "2012": 0.769, + "2013": 0.781, + "2014": 0.785, + "2015": 0.79, + "2016": 0.794, + "2017": 0.797, + "2018": 0.8, + "2019": 0.804, + "2020": 0.796, + "2021": 0.799 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr112", + "Region": "Magallanes and La Antartica Chilena", + "1990": 0.717, + "1991": 0.725, + "1992": 0.733, + "1993": 0.727, + "1994": 0.733, + "1995": 0.739, + "1996": 0.746, + "1997": 0.755, + "1998": 0.76, + "1999": 0.766, + "2000": 0.775, + "2001": 0.779, + "2002": 0.786, + "2003": 0.79, + "2004": 0.798, + "2005": 0.806, + "2006": 0.808, + "2007": 0.812, + "2008": 0.824, + "2009": 0.823, + "2010": 0.825, + "2011": 0.829, + "2012": 0.836, + "2013": 0.848, + "2014": 0.853, + "2015": 0.858, + "2016": 0.862, + "2017": 0.865, + "2018": 0.868, + "2019": 0.873, + "2020": 0.864, + "2021": 0.867 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr107", + "Region": "Maule", + "1990": 0.655, + "1991": 0.663, + "1992": 0.67, + "1993": 0.664, + "1994": 0.67, + "1995": 0.676, + "1996": 0.682, + "1997": 0.69, + "1998": 0.695, + "1999": 0.701, + "2000": 0.708, + "2001": 0.712, + "2002": 0.719, + "2003": 0.723, + "2004": 0.73, + "2005": 0.737, + "2006": 0.739, + "2007": 0.743, + "2008": 0.754, + "2009": 0.753, + "2010": 0.755, + "2011": 0.758, + "2012": 0.765, + "2013": 0.776, + "2014": 0.781, + "2015": 0.785, + "2016": 0.789, + "2017": 0.792, + "2018": 0.795, + "2019": 0.799, + "2020": 0.791, + "2021": 0.794 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr106", + "Region": "OHiggins", + "1990": 0.68, + "1991": 0.688, + "1992": 0.696, + "1993": 0.69, + "1994": 0.696, + "1995": 0.702, + "1996": 0.708, + "1997": 0.717, + "1998": 0.722, + "1999": 0.728, + "2000": 0.736, + "2001": 0.74, + "2002": 0.746, + "2003": 0.75, + "2004": 0.758, + "2005": 0.766, + "2006": 0.767, + "2007": 0.772, + "2008": 0.783, + "2009": 0.782, + "2010": 0.783, + "2011": 0.787, + "2012": 0.794, + "2013": 0.806, + "2014": 0.81, + "2015": 0.815, + "2016": 0.819, + "2017": 0.822, + "2018": 0.825, + "2019": 0.829, + "2020": 0.821, + "2021": 0.824 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr113", + "Region": "Region Metropolitana", + "1990": 0.733, + "1991": 0.742, + "1992": 0.75, + "1993": 0.743, + "1994": 0.749, + "1995": 0.756, + "1996": 0.763, + "1997": 0.772, + "1998": 0.777, + "1999": 0.783, + "2000": 0.792, + "2001": 0.796, + "2002": 0.804, + "2003": 0.808, + "2004": 0.816, + "2005": 0.824, + "2006": 0.826, + "2007": 0.831, + "2008": 0.843, + "2009": 0.842, + "2010": 0.843, + "2011": 0.847, + "2012": 0.854, + "2013": 0.867, + "2014": 0.872, + "2015": 0.877, + "2016": 0.881, + "2017": 0.884, + "2018": 0.888, + "2019": 0.891, + "2020": 0.883, + "2021": 0.886 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr101", + "Region": "Tarapaca (incl Arica and Parinacota)", + "1990": 0.732, + "1991": 0.74, + "1992": 0.749, + "1993": 0.742, + "1994": 0.748, + "1995": 0.754, + "1996": 0.762, + "1997": 0.771, + "1998": 0.776, + "1999": 0.782, + "2000": 0.791, + "2001": 0.795, + "2002": 0.802, + "2003": 0.807, + "2004": 0.815, + "2005": 0.823, + "2006": 0.824, + "2007": 0.829, + "2008": 0.842, + "2009": 0.84, + "2010": 0.842, + "2011": 0.846, + "2012": 0.853, + "2013": 0.866, + "2014": 0.871, + "2015": 0.876, + "2016": 0.88, + "2017": 0.883, + "2018": 0.885, + "2019": 0.888, + "2020": 0.879, + "2021": 0.882 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr105", + "Region": "Valparaiso (former Aconcagua)", + "1990": 0.719, + "1991": 0.728, + "1992": 0.736, + "1993": 0.729, + "1994": 0.735, + "1995": 0.742, + "1996": 0.749, + "1997": 0.758, + "1998": 0.763, + "1999": 0.769, + "2000": 0.778, + "2001": 0.782, + "2002": 0.789, + "2003": 0.793, + "2004": 0.801, + "2005": 0.809, + "2006": 0.81, + "2007": 0.815, + "2008": 0.827, + "2009": 0.826, + "2010": 0.828, + "2011": 0.832, + "2012": 0.839, + "2013": 0.852, + "2014": 0.856, + "2015": 0.861, + "2016": 0.865, + "2017": 0.868, + "2018": 0.872, + "2019": 0.876, + "2020": 0.868, + "2021": 0.871 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "National", + "GDLCODE": "CHNt", + "Region": "Total", + "1990": 0.484, + "1991": 0.492, + "1992": 0.504, + "1993": 0.515, + "1994": 0.525, + "1995": 0.535, + "1996": 0.545, + "1997": 0.554, + "1998": 0.564, + "1999": 0.573, + "2000": 0.584, + "2001": 0.593, + "2002": 0.604, + "2003": 0.615, + "2004": 0.626, + "2005": 0.638, + "2006": 0.65, + "2007": 0.663, + "2008": 0.672, + "2009": 0.682, + "2010": 0.691, + "2011": 0.7, + "2012": 0.709, + "2013": 0.717, + "2014": 0.725, + "2015": 0.733, + "2016": 0.74, + "2017": 0.747, + "2018": 0.755, + "2019": 0.762, + "2020": 0.764, + "2021": 0.768 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr112", + "Region": "Anhui", + "1990": 0.444, + "1991": 0.451, + "1992": 0.463, + "1993": 0.474, + "1994": 0.483, + "1995": 0.498, + "1996": 0.508, + "1997": 0.517, + "1998": 0.527, + "1999": 0.534, + "2000": 0.542, + "2001": 0.552, + "2002": 0.561, + "2003": 0.575, + "2004": 0.589, + "2005": 0.59, + "2006": 0.605, + "2007": 0.611, + "2008": 0.625, + "2009": 0.639, + "2010": 0.653, + "2011": 0.668, + "2012": 0.683, + "2013": 0.689, + "2014": 0.704, + "2015": 0.71, + "2016": 0.712, + "2017": 0.717, + "2018": 0.734, + "2019": 0.739, + "2020": 0.74, + "2021": 0.744 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr101", + "Region": "Beijing", + "1990": 0.614, + "1991": 0.624, + "1992": 0.638, + "1993": 0.651, + "1994": 0.659, + "1995": 0.668, + "1996": 0.677, + "1997": 0.69, + "1998": 0.705, + "1999": 0.721, + "2000": 0.731, + "2001": 0.74, + "2002": 0.75, + "2003": 0.761, + "2004": 0.772, + "2005": 0.792, + "2006": 0.803, + "2007": 0.815, + "2008": 0.815, + "2009": 0.825, + "2010": 0.829, + "2011": 0.833, + "2012": 0.846, + "2013": 0.855, + "2014": 0.86, + "2015": 0.871, + "2016": 0.881, + "2017": 0.887, + "2018": 0.895, + "2019": 0.901, + "2020": 0.903, + "2021": 0.907 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr122", + "Region": "Chongqing", + "1990": 0.464, + "1991": 0.471, + "1992": 0.483, + "1993": 0.493, + "1994": 0.505, + "1995": 0.518, + "1996": 0.527, + "1997": 0.537, + "1998": 0.545, + "1999": 0.555, + "2000": 0.564, + "2001": 0.575, + "2002": 0.588, + "2003": 0.594, + "2004": 0.599, + "2005": 0.617, + "2006": 0.627, + "2007": 0.641, + "2008": 0.652, + "2009": 0.664, + "2010": 0.68, + "2011": 0.698, + "2012": 0.701, + "2013": 0.708, + "2014": 0.726, + "2015": 0.732, + "2016": 0.745, + "2017": 0.752, + "2018": 0.76, + "2019": 0.769, + "2020": 0.77, + "2021": 0.774 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr113", + "Region": "Fujian", + "1990": 0.485, + "1991": 0.493, + "1992": 0.505, + "1993": 0.517, + "1994": 0.532, + "1995": 0.542, + "1996": 0.552, + "1997": 0.562, + "1998": 0.574, + "1999": 0.584, + "2000": 0.595, + "2001": 0.605, + "2002": 0.616, + "2003": 0.622, + "2004": 0.628, + "2005": 0.643, + "2006": 0.654, + "2007": 0.664, + "2008": 0.672, + "2009": 0.695, + "2010": 0.706, + "2011": 0.715, + "2012": 0.715, + "2013": 0.723, + "2014": 0.736, + "2015": 0.744, + "2016": 0.748, + "2017": 0.764, + "2018": 0.769, + "2019": 0.769, + "2020": 0.77, + "2021": 0.775 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr128", + "Region": "Gansu", + "1990": 0.416, + "1991": 0.423, + "1992": 0.434, + "1993": 0.444, + "1994": 0.448, + "1995": 0.455, + "1996": 0.47, + "1997": 0.476, + "1998": 0.487, + "1999": 0.501, + "2000": 0.509, + "2001": 0.518, + "2002": 0.527, + "2003": 0.541, + "2004": 0.555, + "2005": 0.559, + "2006": 0.565, + "2007": 0.582, + "2008": 0.591, + "2009": 0.601, + "2010": 0.618, + "2011": 0.635, + "2012": 0.645, + "2013": 0.652, + "2014": 0.66, + "2015": 0.666, + "2016": 0.672, + "2017": 0.679, + "2018": 0.682, + "2019": 0.687, + "2020": 0.689, + "2021": 0.693 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr119", + "Region": "Guangdong", + "1990": 0.539, + "1991": 0.546, + "1992": 0.559, + "1993": 0.569, + "1994": 0.576, + "1995": 0.585, + "1996": 0.592, + "1997": 0.6, + "1998": 0.609, + "1999": 0.616, + "2000": 0.626, + "2001": 0.635, + "2002": 0.645, + "2003": 0.654, + "2004": 0.66, + "2005": 0.683, + "2006": 0.691, + "2007": 0.705, + "2008": 0.713, + "2009": 0.72, + "2010": 0.727, + "2011": 0.734, + "2012": 0.739, + "2013": 0.741, + "2014": 0.752, + "2015": 0.763, + "2016": 0.775, + "2017": 0.782, + "2018": 0.786, + "2019": 0.793, + "2020": 0.794, + "2021": 0.799 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr120", + "Region": "Guangxi", + "1990": 0.452, + "1991": 0.459, + "1992": 0.472, + "1993": 0.483, + "1994": 0.495, + "1995": 0.504, + "1996": 0.512, + "1997": 0.518, + "1998": 0.529, + "1999": 0.536, + "2000": 0.545, + "2001": 0.557, + "2002": 0.569, + "2003": 0.58, + "2004": 0.593, + "2005": 0.599, + "2006": 0.616, + "2007": 0.626, + "2008": 0.631, + "2009": 0.642, + "2010": 0.654, + "2011": 0.667, + "2012": 0.668, + "2013": 0.678, + "2014": 0.691, + "2015": 0.695, + "2016": 0.705, + "2017": 0.708, + "2018": 0.716, + "2019": 0.729, + "2020": 0.73, + "2021": 0.734 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr124", + "Region": "Guizhou", + "1990": 0.382, + "1991": 0.389, + "1992": 0.401, + "1993": 0.41, + "1994": 0.417, + "1995": 0.425, + "1996": 0.432, + "1997": 0.44, + "1998": 0.447, + "1999": 0.464, + "2000": 0.474, + "2001": 0.485, + "2002": 0.497, + "2003": 0.508, + "2004": 0.518, + "2005": 0.523, + "2006": 0.536, + "2007": 0.555, + "2008": 0.572, + "2009": 0.581, + "2010": 0.593, + "2011": 0.607, + "2012": 0.619, + "2013": 0.639, + "2014": 0.652, + "2015": 0.652, + "2016": 0.66, + "2017": 0.676, + "2018": 0.683, + "2019": 0.685, + "2020": 0.686, + "2021": 0.69 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr121", + "Region": "Hainan", + "1990": 0.505, + "1991": 0.513, + "1992": 0.526, + "1993": 0.537, + "1994": 0.543, + "1995": 0.545, + "1996": 0.549, + "1997": 0.554, + "1998": 0.564, + "1999": 0.572, + "2000": 0.583, + "2001": 0.593, + "2002": 0.605, + "2003": 0.616, + "2004": 0.627, + "2005": 0.632, + "2006": 0.64, + "2007": 0.652, + "2008": 0.66, + "2009": 0.669, + "2010": 0.681, + "2011": 0.692, + "2012": 0.706, + "2013": 0.713, + "2014": 0.72, + "2015": 0.728, + "2016": 0.735, + "2017": 0.747, + "2018": 0.763, + "2019": 0.763, + "2020": 0.764, + "2021": 0.769 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr103", + "Region": "Hebei", + "1990": 0.489, + "1991": 0.497, + "1992": 0.509, + "1993": 0.52, + "1994": 0.529, + "1995": 0.54, + "1996": 0.551, + "1997": 0.561, + "1998": 0.57, + "1999": 0.577, + "2000": 0.587, + "2001": 0.597, + "2002": 0.606, + "2003": 0.618, + "2004": 0.63, + "2005": 0.64, + "2006": 0.645, + "2007": 0.653, + "2008": 0.664, + "2009": 0.672, + "2010": 0.677, + "2011": 0.683, + "2012": 0.689, + "2013": 0.697, + "2014": 0.703, + "2015": 0.711, + "2016": 0.717, + "2017": 0.723, + "2018": 0.73, + "2019": 0.738, + "2020": 0.74, + "2021": 0.744 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr108", + "Region": "Heilongjiang", + "1990": 0.494, + "1991": 0.504, + "1992": 0.517, + "1993": 0.53, + "1994": 0.541, + "1995": 0.551, + "1996": 0.563, + "1997": 0.573, + "1998": 0.582, + "1999": 0.587, + "2000": 0.599, + "2001": 0.607, + "2002": 0.615, + "2003": 0.624, + "2004": 0.632, + "2005": 0.648, + "2006": 0.655, + "2007": 0.665, + "2008": 0.672, + "2009": 0.676, + "2010": 0.683, + "2011": 0.692, + "2012": 0.701, + "2013": 0.712, + "2014": 0.715, + "2015": 0.716, + "2016": 0.721, + "2017": 0.723, + "2018": 0.732, + "2019": 0.737, + "2020": 0.739, + "2021": 0.743 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr116", + "Region": "Henan", + "1990": 0.462, + "1991": 0.47, + "1992": 0.482, + "1993": 0.493, + "1994": 0.504, + "1995": 0.518, + "1996": 0.53, + "1997": 0.538, + "1998": 0.547, + "1999": 0.549, + "2000": 0.564, + "2001": 0.577, + "2002": 0.59, + "2003": 0.6, + "2004": 0.611, + "2005": 0.624, + "2006": 0.633, + "2007": 0.646, + "2008": 0.658, + "2009": 0.665, + "2010": 0.673, + "2011": 0.68, + "2012": 0.685, + "2013": 0.693, + "2014": 0.708, + "2015": 0.709, + "2016": 0.716, + "2017": 0.723, + "2018": 0.733, + "2019": 0.742, + "2020": 0.744, + "2021": 0.748 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr117", + "Region": "Hubei", + "1990": 0.469, + "1991": 0.478, + "1992": 0.491, + "1993": 0.502, + "1994": 0.51, + "1995": 0.52, + "1996": 0.531, + "1997": 0.541, + "1998": 0.552, + "1999": 0.558, + "2000": 0.566, + "2001": 0.573, + "2002": 0.578, + "2003": 0.595, + "2004": 0.612, + "2005": 0.621, + "2006": 0.64, + "2007": 0.655, + "2008": 0.666, + "2009": 0.676, + "2010": 0.688, + "2011": 0.701, + "2012": 0.712, + "2013": 0.722, + "2014": 0.726, + "2015": 0.738, + "2016": 0.745, + "2017": 0.752, + "2018": 0.765, + "2019": 0.769, + "2020": 0.771, + "2021": 0.775 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr118", + "Region": "Hunan", + "1990": 0.457, + "1991": 0.465, + "1992": 0.478, + "1993": 0.49, + "1994": 0.501, + "1995": 0.513, + "1996": 0.524, + "1997": 0.534, + "1998": 0.543, + "1999": 0.554, + "2000": 0.566, + "2001": 0.576, + "2002": 0.586, + "2003": 0.596, + "2004": 0.608, + "2005": 0.619, + "2006": 0.63, + "2007": 0.647, + "2008": 0.657, + "2009": 0.666, + "2010": 0.675, + "2011": 0.684, + "2012": 0.689, + "2013": 0.701, + "2014": 0.712, + "2015": 0.726, + "2016": 0.735, + "2017": 0.74, + "2018": 0.745, + "2019": 0.756, + "2020": 0.757, + "2021": 0.762 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr105", + "Region": "Inner Mongolia", + "1990": 0.469, + "1991": 0.477, + "1992": 0.49, + "1993": 0.502, + "1994": 0.511, + "1995": 0.52, + "1996": 0.531, + "1997": 0.541, + "1998": 0.552, + "1999": 0.559, + "2000": 0.57, + "2001": 0.581, + "2002": 0.593, + "2003": 0.609, + "2004": 0.623, + "2005": 0.643, + "2006": 0.649, + "2007": 0.664, + "2008": 0.673, + "2009": 0.685, + "2010": 0.697, + "2011": 0.708, + "2012": 0.715, + "2013": 0.714, + "2014": 0.721, + "2015": 0.736, + "2016": 0.752, + "2017": 0.752, + "2018": 0.762, + "2019": 0.771, + "2020": 0.773, + "2021": 0.777 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr110", + "Region": "Jiangsu", + "1990": 0.513, + "1991": 0.521, + "1992": 0.534, + "1993": 0.545, + "1994": 0.555, + "1995": 0.565, + "1996": 0.574, + "1997": 0.582, + "1998": 0.592, + "1999": 0.606, + "2000": 0.614, + "2001": 0.621, + "2002": 0.63, + "2003": 0.641, + "2004": 0.651, + "2005": 0.678, + "2006": 0.688, + "2007": 0.7, + "2008": 0.708, + "2009": 0.718, + "2010": 0.729, + "2011": 0.74, + "2012": 0.749, + "2013": 0.759, + "2014": 0.766, + "2015": 0.776, + "2016": 0.785, + "2017": 0.789, + "2018": 0.792, + "2019": 0.804, + "2020": 0.805, + "2021": 0.81 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr114", + "Region": "Jiangxi", + "1990": 0.443, + "1991": 0.451, + "1992": 0.463, + "1993": 0.474, + "1994": 0.484, + "1995": 0.493, + "1996": 0.505, + "1997": 0.514, + "1998": 0.523, + "1999": 0.533, + "2000": 0.542, + "2001": 0.551, + "2002": 0.561, + "2003": 0.576, + "2004": 0.592, + "2005": 0.597, + "2006": 0.61, + "2007": 0.634, + "2008": 0.643, + "2009": 0.658, + "2010": 0.667, + "2011": 0.675, + "2012": 0.685, + "2013": 0.7, + "2014": 0.7, + "2015": 0.706, + "2016": 0.711, + "2017": 0.714, + "2018": 0.728, + "2019": 0.741, + "2020": 0.743, + "2021": 0.747 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr107", + "Region": "Jilin", + "1990": 0.498, + "1991": 0.508, + "1992": 0.521, + "1993": 0.534, + "1994": 0.544, + "1995": 0.553, + "1996": 0.565, + "1997": 0.573, + "1998": 0.584, + "1999": 0.597, + "2000": 0.604, + "2001": 0.611, + "2002": 0.618, + "2003": 0.623, + "2004": 0.632, + "2005": 0.639, + "2006": 0.65, + "2007": 0.664, + "2008": 0.675, + "2009": 0.684, + "2010": 0.69, + "2011": 0.697, + "2012": 0.708, + "2013": 0.717, + "2014": 0.724, + "2015": 0.727, + "2016": 0.736, + "2017": 0.738, + "2018": 0.741, + "2019": 0.745, + "2020": 0.747, + "2021": 0.751 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr106", + "Region": "Liaoning", + "1990": 0.541, + "1991": 0.549, + "1992": 0.563, + "1993": 0.574, + "1994": 0.579, + "1995": 0.583, + "1996": 0.592, + "1997": 0.601, + "1998": 0.612, + "1999": 0.624, + "2000": 0.632, + "2001": 0.638, + "2002": 0.645, + "2003": 0.655, + "2004": 0.663, + "2005": 0.676, + "2006": 0.686, + "2007": 0.696, + "2008": 0.706, + "2009": 0.715, + "2010": 0.716, + "2011": 0.722, + "2012": 0.739, + "2013": 0.748, + "2014": 0.75, + "2015": 0.751, + "2016": 0.759, + "2017": 0.761, + "2018": 0.769, + "2019": 0.774, + "2020": 0.775, + "2021": 0.78 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr130", + "Region": "Ningxia", + "1990": 0.446, + "1991": 0.453, + "1992": 0.466, + "1993": 0.476, + "1994": 0.485, + "1995": 0.495, + "1996": 0.504, + "1997": 0.512, + "1998": 0.522, + "1999": 0.532, + "2000": 0.544, + "2001": 0.557, + "2002": 0.569, + "2003": 0.582, + "2004": 0.593, + "2005": 0.597, + "2006": 0.61, + "2007": 0.627, + "2008": 0.646, + "2009": 0.656, + "2010": 0.663, + "2011": 0.67, + "2012": 0.676, + "2013": 0.689, + "2014": 0.692, + "2015": 0.705, + "2016": 0.719, + "2017": 0.725, + "2018": 0.72, + "2019": 0.729, + "2020": 0.73, + "2021": 0.734 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr129", + "Region": "Qinghai", + "1990": 0.391, + "1991": 0.398, + "1992": 0.41, + "1993": 0.42, + "1994": 0.427, + "1995": 0.434, + "1996": 0.44, + "1997": 0.447, + "1998": 0.457, + "1999": 0.496, + "2000": 0.505, + "2001": 0.515, + "2002": 0.525, + "2003": 0.538, + "2004": 0.55, + "2005": 0.562, + "2006": 0.575, + "2007": 0.589, + "2008": 0.601, + "2009": 0.611, + "2010": 0.62, + "2011": 0.629, + "2012": 0.63, + "2013": 0.645, + "2014": 0.655, + "2015": 0.646, + "2016": 0.663, + "2017": 0.671, + "2018": 0.687, + "2019": 0.69, + "2020": 0.691, + "2021": 0.695 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr127", + "Region": "Shaanxi", + "1990": 0.453, + "1991": 0.461, + "1992": 0.473, + "1993": 0.484, + "1994": 0.49, + "1995": 0.499, + "1996": 0.509, + "1997": 0.518, + "1998": 0.528, + "1999": 0.539, + "2000": 0.548, + "2001": 0.557, + "2002": 0.567, + "2003": 0.586, + "2004": 0.606, + "2005": 0.62, + "2006": 0.635, + "2007": 0.648, + "2008": 0.663, + "2009": 0.673, + "2010": 0.684, + "2011": 0.694, + "2012": 0.708, + "2013": 0.718, + "2014": 0.724, + "2015": 0.738, + "2016": 0.737, + "2017": 0.743, + "2018": 0.757, + "2019": 0.762, + "2020": 0.763, + "2021": 0.768 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr115", + "Region": "Shandong", + "1990": 0.484, + "1991": 0.492, + "1992": 0.504, + "1993": 0.515, + "1994": 0.528, + "1995": 0.539, + "1996": 0.549, + "1997": 0.558, + "1998": 0.567, + "1999": 0.58, + "2000": 0.597, + "2001": 0.613, + "2002": 0.629, + "2003": 0.632, + "2004": 0.639, + "2005": 0.65, + "2006": 0.667, + "2007": 0.678, + "2008": 0.686, + "2009": 0.693, + "2010": 0.699, + "2011": 0.706, + "2012": 0.714, + "2013": 0.723, + "2014": 0.733, + "2015": 0.741, + "2016": 0.747, + "2017": 0.751, + "2018": 0.754, + "2019": 0.759, + "2020": 0.76, + "2021": 0.765 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr109", + "Region": "Shanghai", + "1990": 0.622, + "1991": 0.632, + "1992": 0.646, + "1993": 0.658, + "1994": 0.666, + "1995": 0.676, + "1996": 0.686, + "1997": 0.696, + "1998": 0.707, + "1999": 0.723, + "2000": 0.732, + "2001": 0.737, + "2002": 0.743, + "2003": 0.757, + "2004": 0.769, + "2005": 0.782, + "2006": 0.796, + "2007": 0.802, + "2008": 0.807, + "2009": 0.814, + "2010": 0.81, + "2011": 0.807, + "2012": 0.815, + "2013": 0.817, + "2014": 0.833, + "2015": 0.842, + "2016": 0.854, + "2017": 0.867, + "2018": 0.871, + "2019": 0.874, + "2020": 0.875, + "2021": 0.88 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr104", + "Region": "Shanxi", + "1990": 0.478, + "1991": 0.486, + "1992": 0.499, + "1993": 0.51, + "1994": 0.515, + "1995": 0.528, + "1996": 0.539, + "1997": 0.549, + "1998": 0.56, + "1999": 0.571, + "2000": 0.58, + "2001": 0.589, + "2002": 0.6, + "2003": 0.613, + "2004": 0.625, + "2005": 0.642, + "2006": 0.655, + "2007": 0.668, + "2008": 0.678, + "2009": 0.681, + "2010": 0.689, + "2011": 0.697, + "2012": 0.707, + "2013": 0.708, + "2014": 0.712, + "2015": 0.721, + "2016": 0.727, + "2017": 0.741, + "2018": 0.747, + "2019": 0.753, + "2020": 0.754, + "2021": 0.758 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr123", + "Region": "Sichuan", + "1990": 0.44, + "1991": 0.449, + "1992": 0.462, + "1993": 0.473, + "1994": 0.482, + "1995": 0.496, + "1996": 0.507, + "1997": 0.518, + "1998": 0.528, + "1999": 0.531, + "2000": 0.542, + "2001": 0.553, + "2002": 0.564, + "2003": 0.573, + "2004": 0.583, + "2005": 0.581, + "2006": 0.599, + "2007": 0.615, + "2008": 0.626, + "2009": 0.639, + "2010": 0.651, + "2011": 0.664, + "2012": 0.679, + "2013": 0.683, + "2014": 0.69, + "2015": 0.696, + "2016": 0.7, + "2017": 0.712, + "2018": 0.725, + "2019": 0.735, + "2020": 0.736, + "2021": 0.74 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr102", + "Region": "Tianjin", + "1990": 0.559, + "1991": 0.567, + "1992": 0.58, + "1993": 0.592, + "1994": 0.602, + "1995": 0.612, + "1996": 0.623, + "1997": 0.632, + "1998": 0.642, + "1999": 0.665, + "2000": 0.673, + "2001": 0.682, + "2002": 0.691, + "2003": 0.706, + "2004": 0.719, + "2005": 0.734, + "2006": 0.743, + "2007": 0.751, + "2008": 0.761, + "2009": 0.771, + "2010": 0.776, + "2011": 0.782, + "2012": 0.789, + "2013": 0.793, + "2014": 0.8, + "2015": 0.803, + "2016": 0.815, + "2017": 0.826, + "2018": 0.833, + "2019": 0.838, + "2020": 0.84, + "2021": 0.844 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr126", + "Region": "Tibet", + "1990": 0.323, + "1991": 0.329, + "1992": 0.339, + "1993": 0.348, + "1994": 0.353, + "1995": 0.36, + "1996": 0.367, + "1997": 0.377, + "1998": 0.389, + "1999": 0.382, + "2000": 0.406, + "2001": 0.431, + "2002": 0.454, + "2003": 0.461, + "2004": 0.468, + "2005": 0.453, + "2006": 0.475, + "2007": 0.499, + "2008": 0.507, + "2009": 0.508, + "2010": 0.526, + "2011": 0.545, + "2012": 0.538, + "2013": 0.517, + "2014": 0.52, + "2015": 0.567, + "2016": 0.565, + "2017": 0.588, + "2018": 0.601, + "2019": 0.609, + "2020": 0.61, + "2021": 0.614 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr131", + "Region": "Xinjiang", + "1990": 0.47, + "1991": 0.479, + "1992": 0.492, + "1993": 0.504, + "1994": 0.514, + "1995": 0.523, + "1996": 0.529, + "1997": 0.541, + "1998": 0.55, + "1999": 0.569, + "2000": 0.581, + "2001": 0.59, + "2002": 0.598, + "2003": 0.608, + "2004": 0.616, + "2005": 0.625, + "2006": 0.634, + "2007": 0.646, + "2008": 0.655, + "2009": 0.661, + "2010": 0.674, + "2011": 0.685, + "2012": 0.689, + "2013": 0.694, + "2014": 0.708, + "2015": 0.707, + "2016": 0.711, + "2017": 0.728, + "2018": 0.734, + "2019": 0.732, + "2020": 0.734, + "2021": 0.738 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr125", + "Region": "Yunnan", + "1990": 0.414, + "1991": 0.421, + "1992": 0.432, + "1993": 0.442, + "1994": 0.448, + "1995": 0.456, + "1996": 0.468, + "1997": 0.475, + "1998": 0.484, + "1999": 0.489, + "2000": 0.495, + "2001": 0.501, + "2002": 0.508, + "2003": 0.524, + "2004": 0.541, + "2005": 0.541, + "2006": 0.556, + "2007": 0.569, + "2008": 0.579, + "2009": 0.586, + "2010": 0.6, + "2011": 0.616, + "2012": 0.629, + "2013": 0.636, + "2014": 0.643, + "2015": 0.655, + "2016": 0.661, + "2017": 0.67, + "2018": 0.682, + "2019": 0.692, + "2020": 0.693, + "2021": 0.697 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr111", + "Region": "Zhejiang", + "1990": 0.516, + "1991": 0.524, + "1992": 0.537, + "1993": 0.548, + "1994": 0.56, + "1995": 0.572, + "1996": 0.582, + "1997": 0.59, + "1998": 0.601, + "1999": 0.611, + "2000": 0.622, + "2001": 0.631, + "2002": 0.644, + "2003": 0.657, + "2004": 0.667, + "2005": 0.672, + "2006": 0.69, + "2007": 0.699, + "2008": 0.707, + "2009": 0.717, + "2010": 0.725, + "2011": 0.733, + "2012": 0.749, + "2013": 0.757, + "2014": 0.757, + "2015": 0.761, + "2016": 0.773, + "2017": 0.778, + "2018": 0.787, + "2019": 0.795, + "2020": 0.796, + "2021": 0.801 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "National", + "GDLCODE": "COLt", + "Region": "Total", + "1990": 0.61, + "1991": 0.619, + "1992": 0.628, + "1993": 0.635, + "1994": 0.64, + "1995": 0.645, + "1996": 0.653, + "1997": 0.66, + "1998": 0.665, + "1999": 0.663, + "2000": 0.666, + "2001": 0.667, + "2002": 0.67, + "2003": 0.677, + "2004": 0.683, + "2005": 0.696, + "2006": 0.698, + "2007": 0.71, + "2008": 0.716, + "2009": 0.722, + "2010": 0.726, + "2011": 0.733, + "2012": 0.734, + "2013": 0.746, + "2014": 0.75, + "2015": 0.754, + "2016": 0.759, + "2017": 0.761, + "2018": 0.763, + "2019": 0.768, + "2020": 0.756, + "2021": 0.752 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr129", + "Region": "Amazonas", + "1990": 0.669, + "1991": 0.678, + "1992": 0.688, + "1993": 0.695, + "1994": 0.701, + "1995": 0.706, + "1996": 0.71, + "1997": 0.712, + "1998": 0.714, + "1999": 0.707, + "2000": 0.706, + "2001": 0.704, + "2002": 0.704, + "2003": 0.707, + "2004": 0.711, + "2005": 0.721, + "2006": 0.703, + "2007": 0.696, + "2008": 0.683, + "2009": 0.669, + "2010": 0.654, + "2011": 0.665, + "2012": 0.672, + "2013": 0.687, + "2014": 0.696, + "2015": 0.704, + "2016": 0.709, + "2017": 0.711, + "2018": 0.713, + "2019": 0.717, + "2020": 0.706, + "2021": 0.702 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr101", + "Region": "Antioquia (incl Medellin)", + "1990": 0.608, + "1991": 0.617, + "1992": 0.626, + "1993": 0.632, + "1994": 0.638, + "1995": 0.642, + "1996": 0.652, + "1997": 0.661, + "1998": 0.668, + "1999": 0.667, + "2000": 0.672, + "2001": 0.673, + "2002": 0.675, + "2003": 0.681, + "2004": 0.688, + "2005": 0.7, + "2006": 0.702, + "2007": 0.715, + "2008": 0.722, + "2009": 0.729, + "2010": 0.734, + "2011": 0.74, + "2012": 0.741, + "2013": 0.752, + "2014": 0.756, + "2015": 0.759, + "2016": 0.764, + "2017": 0.766, + "2018": 0.768, + "2019": 0.772, + "2020": 0.761, + "2021": 0.757 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr125", + "Region": "Arauca", + "1990": 0.649, + "1991": 0.657, + "1992": 0.667, + "1993": 0.674, + "1994": 0.68, + "1995": 0.684, + "1996": 0.688, + "1997": 0.691, + "1998": 0.693, + "1999": 0.687, + "2000": 0.685, + "2001": 0.684, + "2002": 0.684, + "2003": 0.687, + "2004": 0.691, + "2005": 0.7, + "2006": 0.7, + "2007": 0.711, + "2008": 0.717, + "2009": 0.721, + "2010": 0.725, + "2011": 0.726, + "2012": 0.723, + "2013": 0.729, + "2014": 0.729, + "2015": 0.728, + "2016": 0.733, + "2017": 0.735, + "2018": 0.737, + "2019": 0.741, + "2020": 0.73, + "2021": 0.725 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr102", + "Region": "Atlantico (incl Barranquilla)", + "1990": 0.637, + "1991": 0.646, + "1992": 0.656, + "1993": 0.662, + "1994": 0.668, + "1995": 0.673, + "1996": 0.679, + "1997": 0.685, + "1998": 0.689, + "1999": 0.685, + "2000": 0.686, + "2001": 0.689, + "2002": 0.693, + "2003": 0.701, + "2004": 0.709, + "2005": 0.723, + "2006": 0.721, + "2007": 0.73, + "2008": 0.733, + "2009": 0.735, + "2010": 0.736, + "2011": 0.744, + "2012": 0.747, + "2013": 0.761, + "2014": 0.767, + "2015": 0.773, + "2016": 0.778, + "2017": 0.78, + "2018": 0.782, + "2019": 0.787, + "2020": 0.776, + "2021": 0.771 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr103", + "Region": "Bogota D.C.", + "1990": 0.683, + "1991": 0.692, + "1992": 0.702, + "1993": 0.709, + "1994": 0.715, + "1995": 0.72, + "1996": 0.724, + "1997": 0.727, + "1998": 0.729, + "1999": 0.723, + "2000": 0.721, + "2001": 0.723, + "2002": 0.726, + "2003": 0.732, + "2004": 0.74, + "2005": 0.753, + "2006": 0.753, + "2007": 0.765, + "2008": 0.771, + "2009": 0.776, + "2010": 0.78, + "2011": 0.785, + "2012": 0.784, + "2013": 0.794, + "2014": 0.797, + "2015": 0.799, + "2016": 0.805, + "2017": 0.807, + "2018": 0.809, + "2019": 0.814, + "2020": 0.802, + "2021": 0.797 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr104", + "Region": "Bolivar (Sur and Norte)", + "1990": 0.609, + "1991": 0.617, + "1992": 0.627, + "1993": 0.633, + "1994": 0.639, + "1995": 0.644, + "1996": 0.653, + "1997": 0.66, + "1998": 0.667, + "1999": 0.666, + "2000": 0.669, + "2001": 0.668, + "2002": 0.669, + "2003": 0.673, + "2004": 0.678, + "2005": 0.688, + "2006": 0.688, + "2007": 0.697, + "2008": 0.702, + "2009": 0.705, + "2010": 0.707, + "2011": 0.715, + "2012": 0.718, + "2013": 0.731, + "2014": 0.737, + "2015": 0.743, + "2016": 0.748, + "2017": 0.75, + "2018": 0.752, + "2019": 0.756, + "2020": 0.745, + "2021": 0.741 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr105", + "Region": "Boyaca", + "1990": 0.565, + "1991": 0.574, + "1992": 0.584, + "1993": 0.589, + "1994": 0.595, + "1995": 0.599, + "1996": 0.609, + "1997": 0.617, + "1998": 0.624, + "1999": 0.623, + "2000": 0.627, + "2001": 0.628, + "2002": 0.631, + "2003": 0.636, + "2004": 0.643, + "2005": 0.654, + "2006": 0.663, + "2007": 0.681, + "2008": 0.694, + "2009": 0.706, + "2010": 0.716, + "2011": 0.723, + "2012": 0.725, + "2013": 0.738, + "2014": 0.743, + "2015": 0.748, + "2016": 0.753, + "2017": 0.755, + "2018": 0.756, + "2019": 0.76, + "2020": 0.749, + "2021": 0.745 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr106", + "Region": "Caldas", + "1990": 0.614, + "1991": 0.622, + "1992": 0.632, + "1993": 0.639, + "1994": 0.644, + "1995": 0.649, + "1996": 0.66, + "1997": 0.67, + "1998": 0.678, + "1999": 0.679, + "2000": 0.685, + "2001": 0.685, + "2002": 0.686, + "2003": 0.692, + "2004": 0.697, + "2005": 0.709, + "2006": 0.71, + "2007": 0.721, + "2008": 0.727, + "2009": 0.732, + "2010": 0.736, + "2011": 0.743, + "2012": 0.744, + "2013": 0.756, + "2014": 0.761, + "2015": 0.766, + "2016": 0.771, + "2017": 0.773, + "2018": 0.775, + "2019": 0.779, + "2020": 0.768, + "2021": 0.763 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr107", + "Region": "Caqueta", + "1990": 0.572, + "1991": 0.58, + "1992": 0.589, + "1993": 0.595, + "1994": 0.601, + "1995": 0.605, + "1996": 0.609, + "1997": 0.612, + "1998": 0.613, + "1999": 0.608, + "2000": 0.606, + "2001": 0.605, + "2002": 0.605, + "2003": 0.608, + "2004": 0.612, + "2005": 0.62, + "2006": 0.631, + "2007": 0.651, + "2008": 0.665, + "2009": 0.679, + "2010": 0.691, + "2011": 0.695, + "2012": 0.694, + "2013": 0.703, + "2014": 0.704, + "2015": 0.706, + "2016": 0.71, + "2017": 0.712, + "2018": 0.714, + "2019": 0.718, + "2020": 0.707, + "2021": 0.703 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr126", + "Region": "Casanare", + "1990": 0.679, + "1991": 0.688, + "1992": 0.698, + "1993": 0.705, + "1994": 0.711, + "1995": 0.716, + "1996": 0.721, + "1997": 0.724, + "1998": 0.725, + "1999": 0.719, + "2000": 0.717, + "2001": 0.716, + "2002": 0.716, + "2003": 0.719, + "2004": 0.723, + "2005": 0.733, + "2006": 0.725, + "2007": 0.727, + "2008": 0.725, + "2009": 0.721, + "2010": 0.716, + "2011": 0.721, + "2012": 0.721, + "2013": 0.731, + "2014": 0.734, + "2015": 0.737, + "2016": 0.742, + "2017": 0.744, + "2018": 0.746, + "2019": 0.75, + "2020": 0.739, + "2021": 0.735 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr108", + "Region": "Cauca", + "1990": 0.563, + "1991": 0.571, + "1992": 0.58, + "1993": 0.586, + "1994": 0.591, + "1995": 0.596, + "1996": 0.6, + "1997": 0.604, + "1998": 0.606, + "1999": 0.602, + "2000": 0.601, + "2001": 0.603, + "2002": 0.606, + "2003": 0.613, + "2004": 0.619, + "2005": 0.631, + "2006": 0.64, + "2007": 0.658, + "2008": 0.671, + "2009": 0.683, + "2010": 0.694, + "2011": 0.698, + "2012": 0.696, + "2013": 0.705, + "2014": 0.706, + "2015": 0.708, + "2016": 0.712, + "2017": 0.714, + "2018": 0.716, + "2019": 0.72, + "2020": 0.709, + "2021": 0.705 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr109", + "Region": "Cesar", + "1990": 0.559, + "1991": 0.567, + "1992": 0.576, + "1993": 0.582, + "1994": 0.587, + "1995": 0.591, + "1996": 0.608, + "1997": 0.623, + "1998": 0.637, + "1999": 0.644, + "2000": 0.655, + "2001": 0.649, + "2002": 0.645, + "2003": 0.644, + "2004": 0.644, + "2005": 0.649, + "2006": 0.654, + "2007": 0.669, + "2008": 0.678, + "2009": 0.686, + "2010": 0.693, + "2011": 0.699, + "2012": 0.7, + "2013": 0.71, + "2014": 0.714, + "2015": 0.718, + "2016": 0.722, + "2017": 0.724, + "2018": 0.726, + "2019": 0.73, + "2020": 0.719, + "2021": 0.715 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr112", + "Region": "Choco", + "1990": 0.569, + "1991": 0.577, + "1992": 0.587, + "1993": 0.593, + "1994": 0.598, + "1995": 0.603, + "1996": 0.61, + "1997": 0.615, + "1998": 0.62, + "1999": 0.617, + "2000": 0.618, + "2001": 0.621, + "2002": 0.624, + "2003": 0.631, + "2004": 0.639, + "2005": 0.651, + "2006": 0.649, + "2007": 0.656, + "2008": 0.658, + "2009": 0.66, + "2010": 0.66, + "2011": 0.666, + "2012": 0.667, + "2013": 0.677, + "2014": 0.681, + "2015": 0.685, + "2016": 0.689, + "2017": 0.691, + "2018": 0.693, + "2019": 0.696, + "2020": 0.686, + "2021": 0.682 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr110", + "Region": "Cordoba", + "1990": 0.556, + "1991": 0.564, + "1992": 0.574, + "1993": 0.58, + "1994": 0.586, + "1995": 0.59, + "1996": 0.601, + "1997": 0.611, + "1998": 0.62, + "1999": 0.621, + "2000": 0.627, + "2001": 0.628, + "2002": 0.63, + "2003": 0.635, + "2004": 0.641, + "2005": 0.652, + "2006": 0.652, + "2007": 0.66, + "2008": 0.663, + "2009": 0.666, + "2010": 0.667, + "2011": 0.676, + "2012": 0.679, + "2013": 0.692, + "2014": 0.699, + "2015": 0.705, + "2016": 0.709, + "2017": 0.711, + "2018": 0.713, + "2019": 0.717, + "2020": 0.706, + "2021": 0.702 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr111", + "Region": "Cundinamarca", + "1990": 0.568, + "1991": 0.577, + "1992": 0.586, + "1993": 0.592, + "1994": 0.597, + "1995": 0.602, + "1996": 0.61, + "1997": 0.616, + "1998": 0.622, + "1999": 0.62, + "2000": 0.623, + "2001": 0.629, + "2002": 0.638, + "2003": 0.649, + "2004": 0.661, + "2005": 0.678, + "2006": 0.683, + "2007": 0.698, + "2008": 0.707, + "2009": 0.716, + "2010": 0.723, + "2011": 0.731, + "2012": 0.735, + "2013": 0.748, + "2014": 0.755, + "2015": 0.761, + "2016": 0.766, + "2017": 0.768, + "2018": 0.77, + "2019": 0.774, + "2020": 0.763, + "2021": 0.759 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr130", + "Region": "Guainja", + "1990": 0.631, + "1991": 0.64, + "1992": 0.649, + "1993": 0.656, + "1994": 0.662, + "1995": 0.666, + "1996": 0.67, + "1997": 0.673, + "1998": 0.675, + "1999": 0.668, + "2000": 0.667, + "2001": 0.665, + "2002": 0.665, + "2003": 0.668, + "2004": 0.672, + "2005": 0.682, + "2006": 0.675, + "2007": 0.679, + "2008": 0.677, + "2009": 0.675, + "2010": 0.671, + "2011": 0.67, + "2012": 0.663, + "2013": 0.666, + "2014": 0.663, + "2015": 0.659, + "2016": 0.663, + "2017": 0.665, + "2018": 0.666, + "2019": 0.67, + "2020": 0.659, + "2021": 0.656 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr114", + "Region": "Guajira", + "1990": 0.566, + "1991": 0.574, + "1992": 0.584, + "1993": 0.59, + "1994": 0.596, + "1995": 0.6, + "1996": 0.606, + "1997": 0.61, + "1998": 0.613, + "1999": 0.609, + "2000": 0.608, + "2001": 0.612, + "2002": 0.617, + "2003": 0.625, + "2004": 0.634, + "2005": 0.647, + "2006": 0.646, + "2007": 0.655, + "2008": 0.659, + "2009": 0.662, + "2010": 0.663, + "2011": 0.668, + "2012": 0.669, + "2013": 0.678, + "2014": 0.681, + "2015": 0.684, + "2016": 0.688, + "2017": 0.69, + "2018": 0.692, + "2019": 0.696, + "2020": 0.685, + "2021": 0.681 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr131", + "Region": "Guaviare", + "1990": 0.613, + "1991": 0.621, + "1992": 0.631, + "1993": 0.637, + "1994": 0.643, + "1995": 0.647, + "1996": 0.651, + "1997": 0.654, + "1998": 0.656, + "1999": 0.65, + "2000": 0.648, + "2001": 0.647, + "2002": 0.647, + "2003": 0.65, + "2004": 0.654, + "2005": 0.663, + "2006": 0.667, + "2007": 0.68, + "2008": 0.688, + "2009": 0.696, + "2010": 0.702, + "2011": 0.711, + "2012": 0.715, + "2013": 0.729, + "2014": 0.736, + "2015": 0.743, + "2016": 0.748, + "2017": 0.75, + "2018": 0.752, + "2019": 0.756, + "2020": 0.744, + "2021": 0.74 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr113", + "Region": "Huila", + "1990": 0.599, + "1991": 0.608, + "1992": 0.617, + "1993": 0.624, + "1994": 0.629, + "1995": 0.633, + "1996": 0.641, + "1997": 0.648, + "1998": 0.653, + "1999": 0.651, + "2000": 0.653, + "2001": 0.65, + "2002": 0.649, + "2003": 0.651, + "2004": 0.654, + "2005": 0.662, + "2006": 0.664, + "2007": 0.676, + "2008": 0.682, + "2009": 0.688, + "2010": 0.692, + "2011": 0.697, + "2012": 0.698, + "2013": 0.708, + "2014": 0.711, + "2015": 0.714, + "2016": 0.719, + "2017": 0.72, + "2018": 0.722, + "2019": 0.726, + "2020": 0.716, + "2021": 0.711 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr115", + "Region": "Magdalena", + "1990": 0.58, + "1991": 0.588, + "1992": 0.598, + "1993": 0.604, + "1994": 0.609, + "1995": 0.613, + "1996": 0.625, + "1997": 0.634, + "1998": 0.643, + "1999": 0.644, + "2000": 0.65, + "2001": 0.647, + "2002": 0.647, + "2003": 0.649, + "2004": 0.653, + "2005": 0.661, + "2006": 0.665, + "2007": 0.677, + "2008": 0.685, + "2009": 0.692, + "2010": 0.697, + "2011": 0.702, + "2012": 0.701, + "2013": 0.71, + "2014": 0.712, + "2015": 0.714, + "2016": 0.719, + "2017": 0.721, + "2018": 0.723, + "2019": 0.726, + "2020": 0.716, + "2021": 0.711 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr116", + "Region": "Meta", + "1990": 0.654, + "1991": 0.663, + "1992": 0.673, + "1993": 0.679, + "1994": 0.685, + "1995": 0.69, + "1996": 0.7, + "1997": 0.708, + "1998": 0.715, + "1999": 0.715, + "2000": 0.719, + "2001": 0.707, + "2002": 0.696, + "2003": 0.688, + "2004": 0.681, + "2005": 0.679, + "2006": 0.682, + "2007": 0.694, + "2008": 0.701, + "2009": 0.707, + "2010": 0.712, + "2011": 0.723, + "2012": 0.73, + "2013": 0.746, + "2014": 0.756, + "2015": 0.765, + "2016": 0.77, + "2017": 0.772, + "2018": 0.774, + "2019": 0.778, + "2020": 0.767, + "2021": 0.762 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr117", + "Region": "Narino", + "1990": 0.519, + "1991": 0.527, + "1992": 0.536, + "1993": 0.541, + "1994": 0.546, + "1995": 0.55, + "1996": 0.565, + "1997": 0.578, + "1998": 0.59, + "1999": 0.595, + "2000": 0.604, + "2001": 0.612, + "2002": 0.621, + "2003": 0.633, + "2004": 0.646, + "2005": 0.664, + "2006": 0.665, + "2007": 0.675, + "2008": 0.68, + "2009": 0.685, + "2010": 0.687, + "2011": 0.693, + "2012": 0.693, + "2013": 0.704, + "2014": 0.707, + "2015": 0.711, + "2016": 0.715, + "2017": 0.717, + "2018": 0.719, + "2019": 0.722, + "2020": 0.712, + "2021": 0.707 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr118", + "Region": "Norte de Santander", + "1990": 0.611, + "1991": 0.62, + "1992": 0.629, + "1993": 0.636, + "1994": 0.641, + "1995": 0.646, + "1996": 0.652, + "1997": 0.657, + "1998": 0.66, + "1999": 0.656, + "2000": 0.656, + "2001": 0.655, + "2002": 0.654, + "2003": 0.657, + "2004": 0.661, + "2005": 0.67, + "2006": 0.673, + "2007": 0.685, + "2008": 0.691, + "2009": 0.698, + "2010": 0.703, + "2011": 0.71, + "2012": 0.713, + "2013": 0.726, + "2014": 0.732, + "2015": 0.737, + "2016": 0.742, + "2017": 0.744, + "2018": 0.746, + "2019": 0.75, + "2020": 0.739, + "2021": 0.734 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr127", + "Region": "Putumayo", + "1990": 0.66, + "1991": 0.668, + "1992": 0.678, + "1993": 0.685, + "1994": 0.691, + "1995": 0.695, + "1996": 0.699, + "1997": 0.702, + "1998": 0.704, + "1999": 0.697, + "2000": 0.696, + "2001": 0.694, + "2002": 0.694, + "2003": 0.697, + "2004": 0.701, + "2005": 0.711, + "2006": 0.698, + "2007": 0.697, + "2008": 0.69, + "2009": 0.683, + "2010": 0.674, + "2011": 0.681, + "2012": 0.684, + "2013": 0.696, + "2014": 0.701, + "2015": 0.706, + "2016": 0.71, + "2017": 0.712, + "2018": 0.714, + "2019": 0.718, + "2020": 0.707, + "2021": 0.703 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr119", + "Region": "Quindio", + "1990": 0.648, + "1991": 0.657, + "1992": 0.667, + "1993": 0.674, + "1994": 0.68, + "1995": 0.684, + "1996": 0.689, + "1997": 0.692, + "1998": 0.694, + "1999": 0.687, + "2000": 0.686, + "2001": 0.689, + "2002": 0.693, + "2003": 0.7, + "2004": 0.709, + "2005": 0.723, + "2006": 0.72, + "2007": 0.727, + "2008": 0.729, + "2009": 0.73, + "2010": 0.729, + "2011": 0.739, + "2012": 0.743, + "2013": 0.757, + "2014": 0.764, + "2015": 0.771, + "2016": 0.776, + "2017": 0.778, + "2018": 0.781, + "2019": 0.785, + "2020": 0.773, + "2021": 0.769 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr120", + "Region": "Risaralda", + "1990": 0.638, + "1991": 0.646, + "1992": 0.657, + "1993": 0.663, + "1994": 0.669, + "1995": 0.673, + "1996": 0.684, + "1997": 0.694, + "1998": 0.702, + "1999": 0.702, + "2000": 0.707, + "2001": 0.701, + "2002": 0.697, + "2003": 0.696, + "2004": 0.695, + "2005": 0.7, + "2006": 0.701, + "2007": 0.711, + "2008": 0.717, + "2009": 0.722, + "2010": 0.724, + "2011": 0.73, + "2012": 0.731, + "2013": 0.742, + "2014": 0.745, + "2015": 0.749, + "2016": 0.754, + "2017": 0.756, + "2018": 0.758, + "2019": 0.762, + "2020": 0.751, + "2021": 0.746 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr128", + "Region": "San Andres", + "1990": 0.69, + "1991": 0.699, + "1992": 0.709, + "1993": 0.716, + "1994": 0.722, + "1995": 0.727, + "1996": 0.731, + "1997": 0.733, + "1998": 0.735, + "1999": 0.728, + "2000": 0.727, + "2001": 0.725, + "2002": 0.725, + "2003": 0.728, + "2004": 0.732, + "2005": 0.742, + "2006": 0.74, + "2007": 0.751, + "2008": 0.756, + "2009": 0.759, + "2010": 0.761, + "2011": 0.765, + "2012": 0.764, + "2013": 0.772, + "2014": 0.774, + "2015": 0.775, + "2016": 0.78, + "2017": 0.782, + "2018": 0.785, + "2019": 0.789, + "2020": 0.778, + "2021": 0.774 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr121", + "Region": "Santander", + "1990": 0.587, + "1991": 0.596, + "1992": 0.605, + "1993": 0.611, + "1994": 0.617, + "1995": 0.621, + "1996": 0.631, + "1997": 0.639, + "1998": 0.646, + "1999": 0.645, + "2000": 0.649, + "2001": 0.653, + "2002": 0.658, + "2003": 0.666, + "2004": 0.675, + "2005": 0.689, + "2006": 0.69, + "2007": 0.7, + "2008": 0.706, + "2009": 0.71, + "2010": 0.713, + "2011": 0.725, + "2012": 0.731, + "2013": 0.747, + "2014": 0.756, + "2015": 0.765, + "2016": 0.77, + "2017": 0.772, + "2018": 0.774, + "2019": 0.778, + "2020": 0.767, + "2021": 0.762 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr122", + "Region": "Sucre", + "1990": 0.534, + "1991": 0.542, + "1992": 0.552, + "1993": 0.558, + "1994": 0.563, + "1995": 0.567, + "1996": 0.588, + "1997": 0.608, + "1998": 0.626, + "1999": 0.636, + "2000": 0.65, + "2001": 0.652, + "2002": 0.655, + "2003": 0.661, + "2004": 0.668, + "2005": 0.68, + "2006": 0.677, + "2007": 0.682, + "2008": 0.683, + "2009": 0.683, + "2010": 0.681, + "2011": 0.692, + "2012": 0.698, + "2013": 0.714, + "2014": 0.723, + "2015": 0.732, + "2016": 0.736, + "2017": 0.738, + "2018": 0.74, + "2019": 0.744, + "2020": 0.733, + "2021": 0.729 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr123", + "Region": "Tolima", + "1990": 0.572, + "1991": 0.58, + "1992": 0.589, + "1993": 0.595, + "1994": 0.601, + "1995": 0.605, + "1996": 0.611, + "1997": 0.616, + "1998": 0.619, + "1999": 0.615, + "2000": 0.615, + "2001": 0.62, + "2002": 0.626, + "2003": 0.635, + "2004": 0.645, + "2005": 0.661, + "2006": 0.665, + "2007": 0.679, + "2008": 0.687, + "2009": 0.695, + "2010": 0.701, + "2011": 0.709, + "2012": 0.711, + "2013": 0.724, + "2014": 0.729, + "2015": 0.735, + "2016": 0.739, + "2017": 0.741, + "2018": 0.743, + "2019": 0.747, + "2020": 0.736, + "2021": 0.732 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr124", + "Region": "Valle (incl Cali)", + "1990": 0.635, + "1991": 0.643, + "1992": 0.653, + "1993": 0.66, + "1994": 0.666, + "1995": 0.67, + "1996": 0.676, + "1997": 0.681, + "1998": 0.684, + "1999": 0.679, + "2000": 0.68, + "2001": 0.681, + "2002": 0.684, + "2003": 0.691, + "2004": 0.698, + "2005": 0.71, + "2006": 0.711, + "2007": 0.723, + "2008": 0.73, + "2009": 0.735, + "2010": 0.739, + "2011": 0.748, + "2012": 0.751, + "2013": 0.765, + "2014": 0.772, + "2015": 0.778, + "2016": 0.783, + "2017": 0.785, + "2018": 0.787, + "2019": 0.792, + "2020": 0.78, + "2021": 0.776 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr132", + "Region": "Vaupis", + "1990": 0.646, + "1991": 0.655, + "1992": 0.665, + "1993": 0.671, + "1994": 0.677, + "1995": 0.682, + "1996": 0.686, + "1997": 0.689, + "1998": 0.69, + "1999": 0.684, + "2000": 0.682, + "2001": 0.681, + "2002": 0.681, + "2003": 0.684, + "2004": 0.688, + "2005": 0.697, + "2006": 0.689, + "2007": 0.691, + "2008": 0.688, + "2009": 0.684, + "2010": 0.678, + "2011": 0.669, + "2012": 0.656, + "2013": 0.651, + "2014": 0.64, + "2015": 0.628, + "2016": 0.633, + "2017": 0.634, + "2018": 0.636, + "2019": 0.639, + "2020": 0.629, + "2021": 0.625 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr133", + "Region": "Vichada", + "1990": 0.631, + "1991": 0.639, + "1992": 0.649, + "1993": 0.655, + "1994": 0.661, + "1995": 0.666, + "1996": 0.67, + "1997": 0.673, + "1998": 0.674, + "1999": 0.668, + "2000": 0.666, + "2001": 0.665, + "2002": 0.665, + "2003": 0.668, + "2004": 0.672, + "2005": 0.681, + "2006": 0.673, + "2007": 0.676, + "2008": 0.673, + "2009": 0.669, + "2010": 0.664, + "2011": 0.68, + "2012": 0.692, + "2013": 0.713, + "2014": 0.727, + "2015": 0.741, + "2016": 0.746, + "2017": 0.748, + "2018": 0.751, + "2019": 0.754, + "2020": 0.744, + "2021": 0.739 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "National", + "GDLCODE": "COMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.464, + "2001": 0.47, + "2002": 0.474, + "2003": 0.479, + "2004": 0.482, + "2005": 0.488, + "2006": 0.494, + "2007": 0.5, + "2008": 0.507, + "2009": 0.513, + "2010": 0.52, + "2011": 0.527, + "2012": 0.533, + "2013": 0.539, + "2014": 0.54, + "2015": 0.544, + "2016": 0.548, + "2017": 0.553, + "2018": 0.557, + "2019": 0.56, + "2020": 0.562, + "2021": 0.558 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr103", + "Region": "Anjouan (Ndzouani)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.439, + "2001": 0.446, + "2002": 0.451, + "2003": 0.457, + "2004": 0.46, + "2005": 0.467, + "2006": 0.474, + "2007": 0.479, + "2008": 0.487, + "2009": 0.494, + "2010": 0.501, + "2011": 0.509, + "2012": 0.515, + "2013": 0.521, + "2014": 0.522, + "2015": 0.525, + "2016": 0.53, + "2017": 0.534, + "2018": 0.538, + "2019": 0.542, + "2020": 0.543, + "2021": 0.54 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr101", + "Region": "Grande Comore (Ngazidja)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.485, + "2001": 0.491, + "2002": 0.494, + "2003": 0.499, + "2004": 0.502, + "2005": 0.507, + "2006": 0.513, + "2007": 0.518, + "2008": 0.525, + "2009": 0.531, + "2010": 0.537, + "2011": 0.544, + "2012": 0.55, + "2013": 0.555, + "2014": 0.557, + "2015": 0.56, + "2016": 0.565, + "2017": 0.57, + "2018": 0.574, + "2019": 0.578, + "2020": 0.579, + "2021": 0.576 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr102", + "Region": "Moheli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.446, + "2001": 0.453, + "2002": 0.458, + "2003": 0.464, + "2004": 0.469, + "2005": 0.476, + "2006": 0.484, + "2007": 0.49, + "2008": 0.499, + "2009": 0.507, + "2010": 0.515, + "2011": 0.523, + "2012": 0.531, + "2013": 0.536, + "2014": 0.538, + "2015": 0.541, + "2016": 0.546, + "2017": 0.55, + "2018": 0.554, + "2019": 0.558, + "2020": 0.559, + "2021": 0.556 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "National", + "GDLCODE": "COGt", + "Region": "Total", + "1990": 0.522, + "1991": 0.519, + "1992": 0.518, + "1993": 0.512, + "1994": 0.507, + "1995": 0.497, + "1996": 0.496, + "1997": 0.466, + "1998": 0.489, + "1999": 0.49, + "2000": 0.491, + "2001": 0.497, + "2002": 0.5, + "2003": 0.5, + "2004": 0.505, + "2005": 0.519, + "2006": 0.532, + "2007": 0.533, + "2008": 0.541, + "2009": 0.554, + "2010": 0.561, + "2011": 0.564, + "2012": 0.575, + "2013": 0.58, + "2014": 0.589, + "2015": 0.59, + "2016": 0.586, + "2017": 0.58, + "2018": 0.578, + "2019": 0.57, + "2020": 0.574, + "2021": 0.571 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr204", + "Region": " Bouenza", + "1990": 0.473, + "1991": 0.47, + "1992": 0.469, + "1993": 0.462, + "1994": 0.457, + "1995": 0.447, + "1996": 0.446, + "1997": 0.418, + "1998": 0.44, + "1999": 0.44, + "2000": 0.441, + "2001": 0.447, + "2002": 0.449, + "2003": 0.45, + "2004": 0.454, + "2005": 0.467, + "2006": 0.479, + "2007": 0.478, + "2008": 0.484, + "2009": 0.495, + "2010": 0.501, + "2011": 0.502, + "2012": 0.509, + "2013": 0.51, + "2014": 0.515, + "2015": 0.513, + "2016": 0.508, + "2017": 0.503, + "2018": 0.501, + "2019": 0.493, + "2020": 0.497, + "2021": 0.495 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr211", + "Region": " Brazzaville", + "1990": 0.579, + "1991": 0.576, + "1992": 0.575, + "1993": 0.568, + "1994": 0.564, + "1995": 0.553, + "1996": 0.552, + "1997": 0.519, + "1998": 0.545, + "1999": 0.546, + "2000": 0.548, + "2001": 0.554, + "2002": 0.558, + "2003": 0.558, + "2004": 0.564, + "2005": 0.579, + "2006": 0.59, + "2007": 0.588, + "2008": 0.593, + "2009": 0.604, + "2010": 0.608, + "2011": 0.609, + "2012": 0.621, + "2013": 0.629, + "2014": 0.639, + "2015": 0.642, + "2016": 0.637, + "2017": 0.632, + "2018": 0.63, + "2019": 0.621, + "2020": 0.626, + "2021": 0.623 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr207", + "Region": " Cuvette", + "1990": 0.485, + "1991": 0.482, + "1992": 0.481, + "1993": 0.474, + "1994": 0.469, + "1995": 0.459, + "1996": 0.457, + "1997": 0.429, + "1998": 0.452, + "1999": 0.451, + "2000": 0.451, + "2001": 0.457, + "2002": 0.46, + "2003": 0.46, + "2004": 0.465, + "2005": 0.478, + "2006": 0.493, + "2007": 0.496, + "2008": 0.506, + "2009": 0.521, + "2010": 0.53, + "2011": 0.534, + "2012": 0.546, + "2013": 0.552, + "2014": 0.561, + "2015": 0.562, + "2016": 0.557, + "2017": 0.551, + "2018": 0.549, + "2019": 0.541, + "2020": 0.545, + "2021": 0.542 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr208", + "Region": " Cuvette Ouest", + "1990": 0.484, + "1991": 0.48, + "1992": 0.479, + "1993": 0.473, + "1994": 0.468, + "1995": 0.457, + "1996": 0.456, + "1997": 0.428, + "1998": 0.45, + "1999": 0.45, + "2000": 0.45, + "2001": 0.456, + "2002": 0.459, + "2003": 0.459, + "2004": 0.464, + "2005": 0.477, + "2006": 0.487, + "2007": 0.485, + "2008": 0.49, + "2009": 0.5, + "2010": 0.505, + "2011": 0.505, + "2012": 0.506, + "2013": 0.503, + "2014": 0.502, + "2015": 0.494, + "2016": 0.49, + "2017": 0.484, + "2018": 0.481, + "2019": 0.473, + "2020": 0.477, + "2021": 0.475 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr201", + "Region": " Kouilou", + "1990": 0.45, + "1991": 0.447, + "1992": 0.446, + "1993": 0.439, + "1994": 0.435, + "1995": 0.425, + "1996": 0.424, + "1997": 0.398, + "1998": 0.419, + "1999": 0.418, + "2000": 0.419, + "2001": 0.424, + "2002": 0.427, + "2003": 0.427, + "2004": 0.431, + "2005": 0.443, + "2006": 0.453, + "2007": 0.452, + "2008": 0.457, + "2009": 0.466, + "2010": 0.47, + "2011": 0.47, + "2012": 0.477, + "2013": 0.479, + "2014": 0.484, + "2015": 0.481, + "2016": 0.477, + "2017": 0.471, + "2018": 0.469, + "2019": 0.461, + "2020": 0.465, + "2021": 0.463 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr203", + "Region": " Lekoumou", + "1990": 0.45, + "1991": 0.447, + "1992": 0.446, + "1993": 0.439, + "1994": 0.435, + "1995": 0.425, + "1996": 0.424, + "1997": 0.397, + "1998": 0.418, + "1999": 0.418, + "2000": 0.419, + "2001": 0.424, + "2002": 0.427, + "2003": 0.427, + "2004": 0.432, + "2005": 0.444, + "2006": 0.457, + "2007": 0.458, + "2008": 0.466, + "2009": 0.478, + "2010": 0.485, + "2011": 0.487, + "2012": 0.491, + "2013": 0.489, + "2014": 0.49, + "2015": 0.484, + "2016": 0.479, + "2017": 0.474, + "2018": 0.472, + "2019": 0.464, + "2020": 0.468, + "2021": 0.465 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr210", + "Region": " Likouala", + "1990": 0.506, + "1991": 0.502, + "1992": 0.501, + "1993": 0.495, + "1994": 0.49, + "1995": 0.48, + "1996": 0.479, + "1997": 0.45, + "1998": 0.473, + "1999": 0.473, + "2000": 0.474, + "2001": 0.48, + "2002": 0.483, + "2003": 0.483, + "2004": 0.488, + "2005": 0.501, + "2006": 0.509, + "2007": 0.503, + "2008": 0.505, + "2009": 0.512, + "2010": 0.512, + "2011": 0.509, + "2012": 0.513, + "2013": 0.512, + "2014": 0.514, + "2015": 0.508, + "2016": 0.504, + "2017": 0.498, + "2018": 0.495, + "2019": 0.487, + "2020": 0.491, + "2021": 0.489 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr202", + "Region": " Niari", + "1990": 0.496, + "1991": 0.493, + "1992": 0.492, + "1993": 0.486, + "1994": 0.481, + "1995": 0.47, + "1996": 0.469, + "1997": 0.442, + "1998": 0.464, + "1999": 0.463, + "2000": 0.463, + "2001": 0.469, + "2002": 0.472, + "2003": 0.472, + "2004": 0.476, + "2005": 0.49, + "2006": 0.503, + "2007": 0.504, + "2008": 0.512, + "2009": 0.525, + "2010": 0.532, + "2011": 0.535, + "2012": 0.543, + "2013": 0.545, + "2014": 0.551, + "2015": 0.549, + "2016": 0.545, + "2017": 0.539, + "2018": 0.537, + "2019": 0.529, + "2020": 0.533, + "2021": 0.53 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr206", + "Region": " Plateaux", + "1990": 0.462, + "1991": 0.459, + "1992": 0.458, + "1993": 0.451, + "1994": 0.446, + "1995": 0.436, + "1996": 0.435, + "1997": 0.408, + "1998": 0.429, + "1999": 0.429, + "2000": 0.43, + "2001": 0.435, + "2002": 0.438, + "2003": 0.438, + "2004": 0.442, + "2005": 0.455, + "2006": 0.467, + "2007": 0.466, + "2008": 0.472, + "2009": 0.483, + "2010": 0.489, + "2011": 0.49, + "2012": 0.504, + "2013": 0.511, + "2014": 0.522, + "2015": 0.525, + "2016": 0.521, + "2017": 0.515, + "2018": 0.513, + "2019": 0.505, + "2020": 0.508, + "2021": 0.506 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr212", + "Region": " Pointe Noire", + "1990": 0.563, + "1991": 0.56, + "1992": 0.559, + "1993": 0.553, + "1994": 0.548, + "1995": 0.538, + "1996": 0.537, + "1997": 0.505, + "1998": 0.53, + "1999": 0.531, + "2000": 0.532, + "2001": 0.539, + "2002": 0.542, + "2003": 0.543, + "2004": 0.548, + "2005": 0.563, + "2006": 0.575, + "2007": 0.575, + "2008": 0.582, + "2009": 0.594, + "2010": 0.601, + "2011": 0.603, + "2012": 0.615, + "2013": 0.622, + "2014": 0.631, + "2015": 0.633, + "2016": 0.628, + "2017": 0.623, + "2018": 0.621, + "2019": 0.612, + "2020": 0.617, + "2021": 0.614 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr205", + "Region": " Pool", + "1990": 0.465, + "1991": 0.461, + "1992": 0.46, + "1993": 0.454, + "1994": 0.449, + "1995": 0.439, + "1996": 0.438, + "1997": 0.411, + "1998": 0.432, + "1999": 0.432, + "2000": 0.432, + "2001": 0.437, + "2002": 0.44, + "2003": 0.44, + "2004": 0.444, + "2005": 0.457, + "2006": 0.469, + "2007": 0.469, + "2008": 0.475, + "2009": 0.487, + "2010": 0.493, + "2011": 0.494, + "2012": 0.492, + "2013": 0.484, + "2014": 0.479, + "2015": 0.467, + "2016": 0.463, + "2017": 0.457, + "2018": 0.455, + "2019": 0.447, + "2020": 0.451, + "2021": 0.448 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr209", + "Region": " Sangha", + "1990": 0.439, + "1991": 0.436, + "1992": 0.435, + "1993": 0.429, + "1994": 0.425, + "1995": 0.416, + "1996": 0.415, + "1997": 0.387, + "1998": 0.409, + "1999": 0.41, + "2000": 0.411, + "2001": 0.416, + "2002": 0.419, + "2003": 0.419, + "2004": 0.424, + "2005": 0.436, + "2006": 0.451, + "2007": 0.454, + "2008": 0.464, + "2009": 0.479, + "2010": 0.487, + "2011": 0.492, + "2012": 0.498, + "2013": 0.499, + "2014": 0.503, + "2015": 0.5, + "2016": 0.496, + "2017": 0.491, + "2018": 0.489, + "2019": 0.481, + "2020": 0.485, + "2021": 0.482 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "National", + "GDLCODE": "CODt", + "Region": "Total", + "1990": 0.386, + "1991": 0.384, + "1992": 0.38, + "1993": 0.375, + "1994": 0.371, + "1995": 0.373, + "1996": 0.372, + "1997": 0.374, + "1998": 0.371, + "1999": 0.368, + "2000": 0.376, + "2001": 0.374, + "2002": 0.378, + "2003": 0.384, + "2004": 0.39, + "2005": 0.395, + "2006": 0.401, + "2007": 0.406, + "2008": 0.416, + "2009": 0.421, + "2010": 0.429, + "2011": 0.438, + "2012": 0.44, + "2013": 0.446, + "2014": 0.455, + "2015": 0.463, + "2016": 0.472, + "2017": 0.475, + "2018": 0.48, + "2019": 0.482, + "2020": 0.479, + "2021": 0.479 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr103", + "Region": "Bandundu", + "1990": 0.369, + "1991": 0.366, + "1992": 0.362, + "1993": 0.357, + "1994": 0.352, + "1995": 0.354, + "1996": 0.354, + "1997": 0.355, + "1998": 0.352, + "1999": 0.348, + "2000": 0.356, + "2001": 0.354, + "2002": 0.357, + "2003": 0.363, + "2004": 0.369, + "2005": 0.374, + "2006": 0.38, + "2007": 0.385, + "2008": 0.399, + "2009": 0.409, + "2010": 0.422, + "2011": 0.434, + "2012": 0.44, + "2013": 0.45, + "2014": 0.454, + "2015": 0.456, + "2016": 0.459, + "2017": 0.457, + "2018": 0.457, + "2019": 0.459, + "2020": 0.456, + "2021": 0.455 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr102", + "Region": "Bas-Congo", + "1990": 0.374, + "1991": 0.372, + "1992": 0.368, + "1993": 0.364, + "1994": 0.36, + "1995": 0.362, + "1996": 0.361, + "1997": 0.363, + "1998": 0.36, + "1999": 0.357, + "2000": 0.365, + "2001": 0.363, + "2002": 0.367, + "2003": 0.373, + "2004": 0.379, + "2005": 0.384, + "2006": 0.39, + "2007": 0.395, + "2008": 0.411, + "2009": 0.423, + "2010": 0.439, + "2011": 0.443, + "2012": 0.44, + "2013": 0.442, + "2014": 0.452, + "2015": 0.46, + "2016": 0.47, + "2017": 0.474, + "2018": 0.48, + "2019": 0.482, + "2020": 0.479, + "2021": 0.479 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr104", + "Region": "Equateur", + "1990": 0.358, + "1991": 0.356, + "1992": 0.352, + "1993": 0.347, + "1994": 0.342, + "1995": 0.343, + "1996": 0.343, + "1997": 0.345, + "1998": 0.342, + "1999": 0.338, + "2000": 0.345, + "2001": 0.343, + "2002": 0.347, + "2003": 0.353, + "2004": 0.358, + "2005": 0.363, + "2006": 0.369, + "2007": 0.374, + "2008": 0.383, + "2009": 0.389, + "2010": 0.397, + "2011": 0.406, + "2012": 0.408, + "2013": 0.415, + "2014": 0.425, + "2015": 0.434, + "2016": 0.444, + "2017": 0.448, + "2018": 0.455, + "2019": 0.457, + "2020": 0.454, + "2021": 0.454 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr111", + "Region": "Kasai Occidental", + "1990": 0.359, + "1991": 0.357, + "1992": 0.353, + "1993": 0.348, + "1994": 0.343, + "1995": 0.345, + "1996": 0.345, + "1997": 0.346, + "1998": 0.343, + "1999": 0.339, + "2000": 0.346, + "2001": 0.344, + "2002": 0.348, + "2003": 0.354, + "2004": 0.36, + "2005": 0.364, + "2006": 0.37, + "2007": 0.375, + "2008": 0.385, + "2009": 0.391, + "2010": 0.4, + "2011": 0.407, + "2012": 0.409, + "2013": 0.414, + "2014": 0.414, + "2015": 0.413, + "2016": 0.412, + "2017": 0.406, + "2018": 0.403, + "2019": 0.404, + "2020": 0.402, + "2021": 0.401 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr110", + "Region": "Kasai Oriental", + "1990": 0.397, + "1991": 0.395, + "1992": 0.39, + "1993": 0.386, + "1994": 0.382, + "1995": 0.384, + "1996": 0.383, + "1997": 0.385, + "1998": 0.382, + "1999": 0.379, + "2000": 0.387, + "2001": 0.385, + "2002": 0.389, + "2003": 0.396, + "2004": 0.402, + "2005": 0.407, + "2006": 0.413, + "2007": 0.418, + "2008": 0.424, + "2009": 0.425, + "2010": 0.429, + "2011": 0.434, + "2012": 0.433, + "2013": 0.436, + "2014": 0.441, + "2015": 0.444, + "2016": 0.449, + "2017": 0.447, + "2018": 0.448, + "2019": 0.45, + "2020": 0.447, + "2021": 0.447 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr109", + "Region": "Katanga", + "1990": 0.401, + "1991": 0.398, + "1992": 0.395, + "1993": 0.39, + "1994": 0.386, + "1995": 0.388, + "1996": 0.388, + "1997": 0.389, + "1998": 0.387, + "1999": 0.384, + "2000": 0.392, + "2001": 0.39, + "2002": 0.394, + "2003": 0.4, + "2004": 0.407, + "2005": 0.412, + "2006": 0.418, + "2007": 0.423, + "2008": 0.418, + "2009": 0.409, + "2010": 0.402, + "2011": 0.419, + "2012": 0.43, + "2013": 0.444, + "2014": 0.451, + "2015": 0.456, + "2016": 0.462, + "2017": 0.463, + "2018": 0.466, + "2019": 0.468, + "2020": 0.465, + "2021": 0.464 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr101", + "Region": "Kinshasa", + "1990": 0.506, + "1991": 0.504, + "1992": 0.5, + "1993": 0.496, + "1994": 0.492, + "1995": 0.495, + "1996": 0.495, + "1997": 0.498, + "1998": 0.495, + "1999": 0.492, + "2000": 0.503, + "2001": 0.502, + "2002": 0.507, + "2003": 0.514, + "2004": 0.522, + "2005": 0.528, + "2006": 0.535, + "2007": 0.541, + "2008": 0.561, + "2009": 0.575, + "2010": 0.593, + "2011": 0.595, + "2012": 0.589, + "2013": 0.588, + "2014": 0.59, + "2015": 0.589, + "2016": 0.589, + "2017": 0.583, + "2018": 0.58, + "2019": 0.583, + "2020": 0.579, + "2021": 0.578 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr108", + "Region": "Maniema", + "1990": 0.368, + "1991": 0.366, + "1992": 0.362, + "1993": 0.358, + "1994": 0.354, + "1995": 0.355, + "1996": 0.355, + "1997": 0.356, + "1998": 0.353, + "1999": 0.35, + "2000": 0.358, + "2001": 0.356, + "2002": 0.36, + "2003": 0.366, + "2004": 0.372, + "2005": 0.377, + "2006": 0.383, + "2007": 0.388, + "2008": 0.394, + "2009": 0.397, + "2010": 0.402, + "2011": 0.418, + "2012": 0.428, + "2013": 0.441, + "2014": 0.441, + "2015": 0.44, + "2016": 0.439, + "2017": 0.433, + "2018": 0.429, + "2019": 0.431, + "2020": 0.428, + "2021": 0.428 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr106", + "Region": "Nord-Kivu", + "1990": 0.352, + "1991": 0.35, + "1992": 0.346, + "1993": 0.341, + "1994": 0.337, + "1995": 0.339, + "1996": 0.339, + "1997": 0.34, + "1998": 0.337, + "1999": 0.334, + "2000": 0.341, + "2001": 0.339, + "2002": 0.343, + "2003": 0.348, + "2004": 0.353, + "2005": 0.358, + "2006": 0.363, + "2007": 0.368, + "2008": 0.384, + "2009": 0.395, + "2010": 0.408, + "2011": 0.424, + "2012": 0.433, + "2013": 0.446, + "2014": 0.46, + "2015": 0.472, + "2016": 0.486, + "2017": 0.493, + "2018": 0.503, + "2019": 0.505, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr105", + "Region": "Orientale", + "1990": 0.335, + "1991": 0.333, + "1992": 0.329, + "1993": 0.325, + "1994": 0.321, + "1995": 0.322, + "1996": 0.322, + "1997": 0.323, + "1998": 0.32, + "1999": 0.317, + "2000": 0.324, + "2001": 0.322, + "2002": 0.326, + "2003": 0.331, + "2004": 0.336, + "2005": 0.341, + "2006": 0.346, + "2007": 0.351, + "2008": 0.369, + "2009": 0.383, + "2010": 0.4, + "2011": 0.41, + "2012": 0.413, + "2013": 0.42, + "2014": 0.432, + "2015": 0.442, + "2016": 0.453, + "2017": 0.459, + "2018": 0.467, + "2019": 0.469, + "2020": 0.466, + "2021": 0.466 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr107", + "Region": "Sud-Kivu", + "1990": 0.369, + "1991": 0.367, + "1992": 0.363, + "1993": 0.359, + "1994": 0.355, + "1995": 0.357, + "1996": 0.356, + "1997": 0.358, + "1998": 0.355, + "1999": 0.353, + "2000": 0.36, + "2001": 0.359, + "2002": 0.363, + "2003": 0.368, + "2004": 0.374, + "2005": 0.379, + "2006": 0.385, + "2007": 0.39, + "2008": 0.398, + "2009": 0.402, + "2010": 0.409, + "2011": 0.409, + "2012": 0.404, + "2013": 0.402, + "2014": 0.423, + "2015": 0.441, + "2016": 0.461, + "2017": 0.475, + "2018": 0.491, + "2019": 0.494, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "National", + "GDLCODE": "CRIt", + "Region": "Total", + "1990": 0.66, + "1991": 0.663, + "1992": 0.674, + "1993": 0.682, + "1994": 0.685, + "1995": 0.691, + "1996": 0.693, + "1997": 0.7, + "1998": 0.705, + "1999": 0.708, + "2000": 0.71, + "2001": 0.715, + "2002": 0.722, + "2003": 0.727, + "2004": 0.732, + "2005": 0.74, + "2006": 0.747, + "2007": 0.756, + "2008": 0.765, + "2009": 0.769, + "2010": 0.772, + "2011": 0.782, + "2012": 0.786, + "2013": 0.792, + "2014": 0.796, + "2015": 0.798, + "2016": 0.803, + "2017": 0.807, + "2018": 0.811, + "2019": 0.819, + "2020": 0.816, + "2021": 0.809 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr102", + "Region": "Alajuela", + "1990": 0.661, + "1991": 0.664, + "1992": 0.675, + "1993": 0.683, + "1994": 0.686, + "1995": 0.691, + "1996": 0.693, + "1997": 0.7, + "1998": 0.706, + "1999": 0.709, + "2000": 0.711, + "2001": 0.716, + "2002": 0.722, + "2003": 0.728, + "2004": 0.733, + "2005": 0.741, + "2006": 0.748, + "2007": 0.757, + "2008": 0.766, + "2009": 0.769, + "2010": 0.773, + "2011": 0.782, + "2012": 0.786, + "2013": 0.79, + "2014": 0.794, + "2015": 0.794, + "2016": 0.798, + "2017": 0.802, + "2018": 0.805, + "2019": 0.813, + "2020": 0.81, + "2021": 0.803 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr103", + "Region": "Cartago", + "1990": 0.668, + "1991": 0.672, + "1992": 0.682, + "1993": 0.69, + "1994": 0.694, + "1995": 0.699, + "1996": 0.701, + "1997": 0.708, + "1998": 0.714, + "1999": 0.717, + "2000": 0.719, + "2001": 0.724, + "2002": 0.73, + "2003": 0.736, + "2004": 0.741, + "2005": 0.749, + "2006": 0.756, + "2007": 0.765, + "2008": 0.774, + "2009": 0.778, + "2010": 0.782, + "2011": 0.792, + "2012": 0.794, + "2013": 0.798, + "2014": 0.8, + "2015": 0.8, + "2016": 0.803, + "2017": 0.806, + "2018": 0.808, + "2019": 0.816, + "2020": 0.813, + "2021": 0.806 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr105", + "Region": "Guanacaste", + "1990": 0.641, + "1991": 0.645, + "1992": 0.655, + "1993": 0.662, + "1994": 0.666, + "1995": 0.671, + "1996": 0.673, + "1997": 0.68, + "1998": 0.685, + "1999": 0.688, + "2000": 0.69, + "2001": 0.695, + "2002": 0.701, + "2003": 0.707, + "2004": 0.711, + "2005": 0.719, + "2006": 0.726, + "2007": 0.735, + "2008": 0.744, + "2009": 0.747, + "2010": 0.751, + "2011": 0.76, + "2012": 0.765, + "2013": 0.772, + "2014": 0.777, + "2015": 0.779, + "2016": 0.785, + "2017": 0.79, + "2018": 0.795, + "2019": 0.802, + "2020": 0.8, + "2021": 0.793 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr104", + "Region": "Heredia", + "1990": 0.686, + "1991": 0.689, + "1992": 0.701, + "1993": 0.709, + "1994": 0.712, + "1995": 0.718, + "1996": 0.72, + "1997": 0.727, + "1998": 0.733, + "1999": 0.736, + "2000": 0.738, + "2001": 0.743, + "2002": 0.75, + "2003": 0.756, + "2004": 0.761, + "2005": 0.769, + "2006": 0.776, + "2007": 0.786, + "2008": 0.795, + "2009": 0.799, + "2010": 0.803, + "2011": 0.812, + "2012": 0.816, + "2013": 0.822, + "2014": 0.825, + "2015": 0.826, + "2016": 0.831, + "2017": 0.835, + "2018": 0.839, + "2019": 0.846, + "2020": 0.843, + "2021": 0.836 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr107", + "Region": "Limon", + "1990": 0.625, + "1991": 0.628, + "1992": 0.638, + "1993": 0.645, + "1994": 0.649, + "1995": 0.654, + "1996": 0.656, + "1997": 0.662, + "1998": 0.668, + "1999": 0.67, + "2000": 0.672, + "2001": 0.677, + "2002": 0.683, + "2003": 0.688, + "2004": 0.693, + "2005": 0.701, + "2006": 0.707, + "2007": 0.716, + "2008": 0.724, + "2009": 0.728, + "2010": 0.732, + "2011": 0.741, + "2012": 0.745, + "2013": 0.751, + "2014": 0.754, + "2015": 0.756, + "2016": 0.761, + "2017": 0.765, + "2018": 0.769, + "2019": 0.777, + "2020": 0.774, + "2021": 0.767 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr106", + "Region": "Puntarenas", + "1990": 0.629, + "1991": 0.632, + "1992": 0.642, + "1993": 0.65, + "1994": 0.653, + "1995": 0.658, + "1996": 0.66, + "1997": 0.667, + "1998": 0.672, + "1999": 0.675, + "2000": 0.677, + "2001": 0.681, + "2002": 0.688, + "2003": 0.693, + "2004": 0.698, + "2005": 0.705, + "2006": 0.712, + "2007": 0.721, + "2008": 0.729, + "2009": 0.733, + "2010": 0.737, + "2011": 0.746, + "2012": 0.752, + "2013": 0.76, + "2014": 0.766, + "2015": 0.769, + "2016": 0.776, + "2017": 0.782, + "2018": 0.788, + "2019": 0.796, + "2020": 0.793, + "2021": 0.786 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr101", + "Region": "San Jose", + "1990": 0.673, + "1991": 0.676, + "1992": 0.687, + "1993": 0.695, + "1994": 0.699, + "1995": 0.704, + "1996": 0.706, + "1997": 0.713, + "1998": 0.719, + "1999": 0.722, + "2000": 0.724, + "2001": 0.729, + "2002": 0.736, + "2003": 0.741, + "2004": 0.746, + "2005": 0.754, + "2006": 0.761, + "2007": 0.77, + "2008": 0.78, + "2009": 0.783, + "2010": 0.787, + "2011": 0.796, + "2012": 0.801, + "2013": 0.807, + "2014": 0.812, + "2015": 0.814, + "2016": 0.819, + "2017": 0.824, + "2018": 0.829, + "2019": 0.836, + "2020": 0.833, + "2021": 0.826 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "National", + "GDLCODE": "CIVt", + "Region": "Total", + "1990": 0.427, + "1991": 0.428, + "1992": 0.43, + "1993": 0.433, + "1994": 0.436, + "1995": 0.442, + "1996": 0.448, + "1997": 0.456, + "1998": 0.461, + "1999": 0.459, + "2000": 0.457, + "2001": 0.456, + "2002": 0.454, + "2003": 0.453, + "2004": 0.455, + "2005": 0.456, + "2006": 0.458, + "2007": 0.461, + "2008": 0.464, + "2009": 0.469, + "2010": 0.473, + "2011": 0.472, + "2012": 0.477, + "2013": 0.483, + "2014": 0.502, + "2015": 0.513, + "2016": 0.524, + "2017": 0.534, + "2018": 0.542, + "2019": 0.55, + "2020": 0.551, + "2021": 0.55 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr101", + "Region": "Centre", + "1990": 0.419, + "1991": 0.42, + "1992": 0.422, + "1993": 0.424, + "1994": 0.427, + "1995": 0.433, + "1996": 0.439, + "1997": 0.448, + "1998": 0.453, + "1999": 0.452, + "2000": 0.456, + "2001": 0.459, + "2002": 0.462, + "2003": 0.465, + "2004": 0.47, + "2005": 0.474, + "2006": 0.468, + "2007": 0.463, + "2008": 0.459, + "2009": 0.455, + "2010": 0.452, + "2011": 0.443, + "2012": 0.451, + "2013": 0.459, + "2014": 0.482, + "2015": 0.495, + "2016": 0.51, + "2017": 0.521, + "2018": 0.528, + "2019": 0.536, + "2020": 0.537, + "2021": 0.537 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr102", + "Region": "Centre Est", + "1990": 0.394, + "1991": 0.395, + "1992": 0.398, + "1993": 0.4, + "1994": 0.403, + "1995": 0.404, + "1996": 0.405, + "1997": 0.408, + "1998": 0.408, + "1999": 0.402, + "2000": 0.406, + "2001": 0.41, + "2002": 0.413, + "2003": 0.417, + "2004": 0.422, + "2005": 0.427, + "2006": 0.435, + "2007": 0.442, + "2008": 0.451, + "2009": 0.46, + "2010": 0.469, + "2011": 0.472, + "2012": 0.476, + "2013": 0.48, + "2014": 0.499, + "2015": 0.509, + "2016": 0.52, + "2017": 0.53, + "2018": 0.538, + "2019": 0.546, + "2020": 0.546, + "2021": 0.546 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr103", + "Region": "Centre Nord", + "1990": 0.428, + "1991": 0.429, + "1992": 0.432, + "1993": 0.434, + "1994": 0.437, + "1995": 0.441, + "1996": 0.445, + "1997": 0.452, + "1998": 0.455, + "1999": 0.451, + "2000": 0.445, + "2001": 0.44, + "2002": 0.434, + "2003": 0.429, + "2004": 0.426, + "2005": 0.423, + "2006": 0.433, + "2007": 0.444, + "2008": 0.455, + "2009": 0.467, + "2010": 0.479, + "2011": 0.485, + "2012": 0.488, + "2013": 0.49, + "2014": 0.506, + "2015": 0.513, + "2016": 0.52, + "2017": 0.53, + "2018": 0.538, + "2019": 0.546, + "2020": 0.547, + "2021": 0.546 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr104", + "Region": "Centre Ouest", + "1990": 0.383, + "1991": 0.383, + "1992": 0.385, + "1993": 0.387, + "1994": 0.39, + "1995": 0.402, + "1996": 0.414, + "1997": 0.428, + "1998": 0.439, + "1999": 0.443, + "2000": 0.438, + "2001": 0.434, + "2002": 0.429, + "2003": 0.424, + "2004": 0.422, + "2005": 0.42, + "2006": 0.429, + "2007": 0.438, + "2008": 0.447, + "2009": 0.458, + "2010": 0.468, + "2011": 0.472, + "2012": 0.471, + "2013": 0.47, + "2014": 0.483, + "2015": 0.486, + "2016": 0.49, + "2017": 0.5, + "2018": 0.507, + "2019": 0.515, + "2020": 0.516, + "2021": 0.515 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr105", + "Region": "Nord", + "1990": 0.331, + "1991": 0.332, + "1992": 0.333, + "1993": 0.335, + "1994": 0.338, + "1995": 0.359, + "1996": 0.381, + "1997": 0.404, + "1998": 0.424, + "1999": 0.438, + "2000": 0.416, + "2001": 0.394, + "2002": 0.372, + "2003": 0.351, + "2004": 0.33, + "2005": 0.309, + "2006": 0.319, + "2007": 0.328, + "2008": 0.337, + "2009": 0.346, + "2010": 0.354, + "2011": 0.357, + "2012": 0.379, + "2013": 0.399, + "2014": 0.431, + "2015": 0.453, + "2016": 0.477, + "2017": 0.487, + "2018": 0.495, + "2019": 0.503, + "2020": 0.503, + "2021": 0.503 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr106", + "Region": "Nord Est", + "1990": 0.38, + "1991": 0.381, + "1992": 0.383, + "1993": 0.385, + "1994": 0.388, + "1995": 0.38, + "1996": 0.373, + "1997": 0.367, + "1998": 0.358, + "1999": 0.344, + "2000": 0.342, + "2001": 0.341, + "2002": 0.339, + "2003": 0.338, + "2004": 0.339, + "2005": 0.34, + "2006": 0.352, + "2007": 0.363, + "2008": 0.375, + "2009": 0.388, + "2010": 0.4, + "2011": 0.407, + "2012": 0.416, + "2013": 0.424, + "2014": 0.446, + "2015": 0.459, + "2016": 0.473, + "2017": 0.483, + "2018": 0.49, + "2019": 0.498, + "2020": 0.498, + "2021": 0.498 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr107", + "Region": "Nord Ouest", + "1990": 0.343, + "1991": 0.344, + "1992": 0.346, + "1993": 0.348, + "1994": 0.351, + "1995": 0.338, + "1996": 0.324, + "1997": 0.311, + "1998": 0.295, + "1999": 0.273, + "2000": 0.283, + "2001": 0.293, + "2002": 0.302, + "2003": 0.31, + "2004": 0.32, + "2005": 0.33, + "2006": 0.335, + "2007": 0.34, + "2008": 0.346, + "2009": 0.351, + "2010": 0.357, + "2011": 0.357, + "2012": 0.374, + "2013": 0.391, + "2014": 0.418, + "2015": 0.437, + "2016": 0.457, + "2017": 0.467, + "2018": 0.473, + "2019": 0.481, + "2020": 0.482, + "2021": 0.482 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr108", + "Region": "Ouest", + "1990": 0.386, + "1991": 0.387, + "1992": 0.389, + "1993": 0.391, + "1994": 0.394, + "1995": 0.397, + "1996": 0.401, + "1997": 0.407, + "1998": 0.409, + "1999": 0.406, + "2000": 0.401, + "2001": 0.397, + "2002": 0.392, + "2003": 0.388, + "2004": 0.385, + "2005": 0.383, + "2006": 0.389, + "2007": 0.395, + "2008": 0.401, + "2009": 0.408, + "2010": 0.415, + "2011": 0.416, + "2012": 0.42, + "2013": 0.424, + "2014": 0.441, + "2015": 0.45, + "2016": 0.46, + "2017": 0.469, + "2018": 0.476, + "2019": 0.484, + "2020": 0.484, + "2021": 0.484 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr110", + "Region": "Sud Ouest", + "1990": 0.366, + "1991": 0.367, + "1992": 0.369, + "1993": 0.371, + "1994": 0.374, + "1995": 0.387, + "1996": 0.4, + "1997": 0.415, + "1998": 0.426, + "1999": 0.431, + "2000": 0.422, + "2001": 0.414, + "2002": 0.405, + "2003": 0.398, + "2004": 0.393, + "2005": 0.388, + "2006": 0.395, + "2007": 0.403, + "2008": 0.411, + "2009": 0.421, + "2010": 0.43, + "2011": 0.434, + "2012": 0.44, + "2013": 0.446, + "2014": 0.465, + "2015": 0.474, + "2016": 0.483, + "2017": 0.493, + "2018": 0.5, + "2019": 0.508, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr109", + "Region": "Sud, Abidjan", + "1990": 0.5, + "1991": 0.502, + "1992": 0.505, + "1993": 0.508, + "1994": 0.512, + "1995": 0.521, + "1996": 0.532, + "1997": 0.544, + "1998": 0.553, + "1999": 0.552, + "2000": 0.546, + "2001": 0.54, + "2002": 0.534, + "2003": 0.529, + "2004": 0.527, + "2005": 0.525, + "2006": 0.528, + "2007": 0.532, + "2008": 0.536, + "2009": 0.541, + "2010": 0.547, + "2011": 0.546, + "2012": 0.548, + "2013": 0.55, + "2014": 0.567, + "2015": 0.576, + "2016": 0.585, + "2017": 0.596, + "2018": 0.604, + "2019": 0.613, + "2020": 0.613, + "2021": 0.612 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "National", + "GDLCODE": "HRVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.712, + "1996": 0.724, + "1997": 0.732, + "1998": 0.742, + "1999": 0.749, + "2000": 0.759, + "2001": 0.769, + "2002": 0.777, + "2003": 0.783, + "2004": 0.796, + "2005": 0.802, + "2006": 0.811, + "2007": 0.815, + "2008": 0.817, + "2009": 0.816, + "2010": 0.821, + "2011": 0.826, + "2012": 0.83, + "2013": 0.838, + "2014": 0.841, + "2015": 0.843, + "2016": 0.848, + "2017": 0.852, + "2018": 0.856, + "2019": 0.861, + "2020": 0.855, + "2021": 0.858 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr101", + "Region": "City of Zagreb", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.76, + "1996": 0.773, + "1997": 0.782, + "1998": 0.791, + "1999": 0.8, + "2000": 0.81, + "2001": 0.82, + "2002": 0.828, + "2003": 0.836, + "2004": 0.849, + "2005": 0.857, + "2006": 0.867, + "2007": 0.87, + "2008": 0.873, + "2009": 0.871, + "2010": 0.88, + "2011": 0.884, + "2012": 0.888, + "2013": 0.896, + "2014": 0.899, + "2015": 0.9, + "2016": 0.906, + "2017": 0.91, + "2018": 0.915, + "2019": 0.92, + "2020": 0.913, + "2021": 0.916 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr107", + "Region": "County of Bjelovar-Bilogora", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.679, + "1996": 0.69, + "1997": 0.698, + "1998": 0.707, + "1999": 0.714, + "2000": 0.723, + "2001": 0.733, + "2002": 0.742, + "2003": 0.746, + "2004": 0.756, + "2005": 0.759, + "2006": 0.772, + "2007": 0.771, + "2008": 0.778, + "2009": 0.778, + "2010": 0.779, + "2011": 0.784, + "2012": 0.786, + "2013": 0.794, + "2014": 0.799, + "2015": 0.8, + "2016": 0.805, + "2017": 0.81, + "2018": 0.814, + "2019": 0.818, + "2020": 0.812, + "2021": 0.815 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr110", + "Region": "County of Brod-Posavina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.673, + "1996": 0.684, + "1997": 0.692, + "1998": 0.701, + "1999": 0.708, + "2000": 0.717, + "2001": 0.73, + "2002": 0.738, + "2003": 0.742, + "2004": 0.754, + "2005": 0.755, + "2006": 0.765, + "2007": 0.768, + "2008": 0.772, + "2009": 0.769, + "2010": 0.773, + "2011": 0.779, + "2012": 0.782, + "2013": 0.791, + "2014": 0.792, + "2015": 0.793, + "2016": 0.799, + "2017": 0.803, + "2018": 0.807, + "2019": 0.812, + "2020": 0.805, + "2021": 0.808 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr121", + "Region": "County of Dubrovnik-Neretva", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.714, + "1996": 0.726, + "1997": 0.734, + "1998": 0.743, + "1999": 0.751, + "2000": 0.76, + "2001": 0.771, + "2002": 0.778, + "2003": 0.786, + "2004": 0.802, + "2005": 0.809, + "2006": 0.818, + "2007": 0.826, + "2008": 0.825, + "2009": 0.824, + "2010": 0.828, + "2011": 0.832, + "2012": 0.836, + "2013": 0.845, + "2014": 0.85, + "2015": 0.851, + "2016": 0.857, + "2017": 0.861, + "2018": 0.865, + "2019": 0.87, + "2020": 0.863, + "2021": 0.866 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr120", + "Region": "County of Istria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.729, + "1996": 0.741, + "1997": 0.75, + "1998": 0.759, + "1999": 0.767, + "2000": 0.777, + "2001": 0.789, + "2002": 0.798, + "2003": 0.804, + "2004": 0.817, + "2005": 0.821, + "2006": 0.83, + "2007": 0.833, + "2008": 0.833, + "2009": 0.833, + "2010": 0.838, + "2011": 0.843, + "2012": 0.846, + "2013": 0.855, + "2014": 0.858, + "2015": 0.86, + "2016": 0.865, + "2017": 0.869, + "2018": 0.874, + "2019": 0.879, + "2020": 0.872, + "2021": 0.875 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr113", + "Region": "County of Karlovac", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.69, + "1996": 0.701, + "1997": 0.709, + "1998": 0.718, + "1999": 0.726, + "2000": 0.735, + "2001": 0.749, + "2002": 0.758, + "2003": 0.759, + "2004": 0.768, + "2005": 0.774, + "2006": 0.785, + "2007": 0.79, + "2008": 0.791, + "2009": 0.787, + "2010": 0.792, + "2011": 0.799, + "2012": 0.802, + "2013": 0.811, + "2014": 0.813, + "2015": 0.815, + "2016": 0.82, + "2017": 0.824, + "2018": 0.829, + "2019": 0.833, + "2020": 0.827, + "2021": 0.83 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr105", + "Region": "County of Koprivnica-Krizevc", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.7, + "1996": 0.711, + "1997": 0.719, + "1998": 0.729, + "1999": 0.736, + "2000": 0.745, + "2001": 0.753, + "2002": 0.761, + "2003": 0.764, + "2004": 0.772, + "2005": 0.776, + "2006": 0.789, + "2007": 0.79, + "2008": 0.788, + "2009": 0.791, + "2010": 0.793, + "2011": 0.799, + "2012": 0.802, + "2013": 0.809, + "2014": 0.811, + "2015": 0.812, + "2016": 0.817, + "2017": 0.821, + "2018": 0.826, + "2019": 0.83, + "2020": 0.824, + "2021": 0.827 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr103", + "Region": "County of Krapina-Zagorje", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.683, + "1996": 0.695, + "1997": 0.703, + "1998": 0.712, + "1999": 0.719, + "2000": 0.728, + "2001": 0.74, + "2002": 0.746, + "2003": 0.75, + "2004": 0.759, + "2005": 0.767, + "2006": 0.774, + "2007": 0.779, + "2008": 0.778, + "2009": 0.774, + "2010": 0.776, + "2011": 0.782, + "2012": 0.786, + "2013": 0.795, + "2014": 0.8, + "2015": 0.801, + "2016": 0.806, + "2017": 0.811, + "2018": 0.815, + "2019": 0.819, + "2020": 0.813, + "2021": 0.816 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr116", + "Region": "County of Lika-Senj", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.685, + "1996": 0.697, + "1997": 0.705, + "1998": 0.714, + "1999": 0.721, + "2000": 0.73, + "2001": 0.735, + "2002": 0.749, + "2003": 0.763, + "2004": 0.785, + "2005": 0.775, + "2006": 0.783, + "2007": 0.781, + "2008": 0.788, + "2009": 0.785, + "2010": 0.788, + "2011": 0.792, + "2012": 0.794, + "2013": 0.803, + "2014": 0.806, + "2015": 0.808, + "2016": 0.813, + "2017": 0.817, + "2018": 0.821, + "2019": 0.826, + "2020": 0.819, + "2021": 0.822 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr106", + "Region": "County of Medimurje", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.691, + "1996": 0.703, + "1997": 0.711, + "1998": 0.72, + "1999": 0.727, + "2000": 0.736, + "2001": 0.747, + "2002": 0.757, + "2003": 0.76, + "2004": 0.77, + "2005": 0.776, + "2006": 0.787, + "2007": 0.789, + "2008": 0.794, + "2009": 0.793, + "2010": 0.796, + "2011": 0.802, + "2012": 0.806, + "2013": 0.815, + "2014": 0.819, + "2015": 0.821, + "2016": 0.826, + "2017": 0.83, + "2018": 0.834, + "2019": 0.839, + "2020": 0.832, + "2021": 0.836 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr111", + "Region": "County of Osijek-Baranja", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.693, + "1996": 0.704, + "1997": 0.712, + "1998": 0.721, + "1999": 0.729, + "2000": 0.738, + "2001": 0.747, + "2002": 0.757, + "2003": 0.761, + "2004": 0.774, + "2005": 0.78, + "2006": 0.79, + "2007": 0.797, + "2008": 0.799, + "2009": 0.797, + "2010": 0.8, + "2011": 0.806, + "2012": 0.808, + "2013": 0.817, + "2014": 0.82, + "2015": 0.821, + "2016": 0.827, + "2017": 0.831, + "2018": 0.835, + "2019": 0.84, + "2020": 0.833, + "2021": 0.836 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr109", + "Region": "County of Pozega-Slavonia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.677, + "1996": 0.689, + "1997": 0.697, + "1998": 0.706, + "1999": 0.713, + "2000": 0.722, + "2001": 0.731, + "2002": 0.738, + "2003": 0.746, + "2004": 0.756, + "2005": 0.76, + "2006": 0.767, + "2007": 0.769, + "2008": 0.771, + "2009": 0.768, + "2010": 0.774, + "2011": 0.778, + "2012": 0.78, + "2013": 0.788, + "2014": 0.789, + "2015": 0.79, + "2016": 0.796, + "2017": 0.8, + "2018": 0.804, + "2019": 0.808, + "2020": 0.802, + "2021": 0.805 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr115", + "Region": "County of Primorje-Gorski Kotar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.737, + "1996": 0.749, + "1997": 0.757, + "1998": 0.767, + "1999": 0.775, + "2000": 0.785, + "2001": 0.791, + "2002": 0.798, + "2003": 0.806, + "2004": 0.817, + "2005": 0.825, + "2006": 0.835, + "2007": 0.837, + "2008": 0.842, + "2009": 0.839, + "2010": 0.845, + "2011": 0.851, + "2012": 0.857, + "2013": 0.865, + "2014": 0.867, + "2015": 0.869, + "2016": 0.874, + "2017": 0.879, + "2018": 0.883, + "2019": 0.888, + "2020": 0.881, + "2021": 0.884 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr118", + "Region": "County of Sibenik-Knin", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.686, + "1996": 0.697, + "1997": 0.705, + "1998": 0.714, + "1999": 0.722, + "2000": 0.731, + "2001": 0.739, + "2002": 0.748, + "2003": 0.757, + "2004": 0.771, + "2005": 0.779, + "2006": 0.784, + "2007": 0.792, + "2008": 0.791, + "2009": 0.786, + "2010": 0.794, + "2011": 0.8, + "2012": 0.804, + "2013": 0.813, + "2014": 0.817, + "2015": 0.818, + "2016": 0.823, + "2017": 0.828, + "2018": 0.832, + "2019": 0.837, + "2020": 0.83, + "2021": 0.833 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr114", + "Region": "County of Sisak-Moslavina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.694, + "1996": 0.706, + "1997": 0.714, + "1998": 0.723, + "1999": 0.73, + "2000": 0.739, + "2001": 0.743, + "2002": 0.748, + "2003": 0.752, + "2004": 0.762, + "2005": 0.768, + "2006": 0.781, + "2007": 0.778, + "2008": 0.784, + "2009": 0.785, + "2010": 0.791, + "2011": 0.798, + "2012": 0.801, + "2013": 0.807, + "2014": 0.807, + "2015": 0.809, + "2016": 0.814, + "2017": 0.818, + "2018": 0.822, + "2019": 0.827, + "2020": 0.821, + "2021": 0.824 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr119", + "Region": "County of Split-Dalmatia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.706, + "1996": 0.718, + "1997": 0.726, + "1998": 0.735, + "1999": 0.743, + "2000": 0.752, + "2001": 0.764, + "2002": 0.771, + "2003": 0.778, + "2004": 0.792, + "2005": 0.796, + "2006": 0.807, + "2007": 0.813, + "2008": 0.813, + "2009": 0.81, + "2010": 0.815, + "2011": 0.819, + "2012": 0.822, + "2013": 0.83, + "2014": 0.833, + "2015": 0.835, + "2016": 0.84, + "2017": 0.844, + "2018": 0.849, + "2019": 0.853, + "2020": 0.847, + "2021": 0.85 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr104", + "Region": "County of Varazdin", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.702, + "1996": 0.714, + "1997": 0.722, + "1998": 0.732, + "1999": 0.739, + "2000": 0.748, + "2001": 0.759, + "2002": 0.769, + "2003": 0.773, + "2004": 0.781, + "2005": 0.785, + "2006": 0.795, + "2007": 0.798, + "2008": 0.802, + "2009": 0.801, + "2010": 0.803, + "2011": 0.808, + "2012": 0.812, + "2013": 0.821, + "2014": 0.825, + "2015": 0.826, + "2016": 0.832, + "2017": 0.836, + "2018": 0.84, + "2019": 0.845, + "2020": 0.838, + "2021": 0.841 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr108", + "Region": "County of Virovitica-Podravina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.674, + "1996": 0.685, + "1997": 0.693, + "1998": 0.702, + "1999": 0.709, + "2000": 0.718, + "2001": 0.729, + "2002": 0.736, + "2003": 0.741, + "2004": 0.75, + "2005": 0.753, + "2006": 0.765, + "2007": 0.768, + "2008": 0.768, + "2009": 0.764, + "2010": 0.767, + "2011": 0.773, + "2012": 0.776, + "2013": 0.783, + "2014": 0.782, + "2015": 0.784, + "2016": 0.789, + "2017": 0.793, + "2018": 0.797, + "2019": 0.802, + "2020": 0.795, + "2021": 0.798 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr112", + "Region": "County of Vukovar-Srijem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.669, + "1996": 0.68, + "1997": 0.688, + "1998": 0.697, + "1999": 0.704, + "2000": 0.713, + "2001": 0.725, + "2002": 0.734, + "2003": 0.74, + "2004": 0.75, + "2005": 0.756, + "2006": 0.769, + "2007": 0.77, + "2008": 0.774, + "2009": 0.771, + "2010": 0.774, + "2011": 0.779, + "2012": 0.781, + "2013": 0.79, + "2014": 0.792, + "2015": 0.793, + "2016": 0.798, + "2017": 0.803, + "2018": 0.807, + "2019": 0.811, + "2020": 0.805, + "2021": 0.808 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr117", + "Region": "County of Zadar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.692, + "1996": 0.704, + "1997": 0.712, + "1998": 0.721, + "1999": 0.728, + "2000": 0.738, + "2001": 0.751, + "2002": 0.76, + "2003": 0.77, + "2004": 0.781, + "2005": 0.787, + "2006": 0.794, + "2007": 0.801, + "2008": 0.804, + "2009": 0.8, + "2010": 0.804, + "2011": 0.808, + "2012": 0.811, + "2013": 0.82, + "2014": 0.823, + "2015": 0.825, + "2016": 0.83, + "2017": 0.834, + "2018": 0.838, + "2019": 0.843, + "2020": 0.836, + "2021": 0.84 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr102", + "Region": "County of Zagreb", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.697, + "1996": 0.709, + "1997": 0.717, + "1998": 0.726, + "1999": 0.734, + "2000": 0.743, + "2001": 0.748, + "2002": 0.762, + "2003": 0.766, + "2004": 0.778, + "2005": 0.786, + "2006": 0.792, + "2007": 0.798, + "2008": 0.799, + "2009": 0.799, + "2010": 0.801, + "2011": 0.807, + "2012": 0.81, + "2013": 0.819, + "2014": 0.823, + "2015": 0.824, + "2016": 0.83, + "2017": 0.834, + "2018": 0.838, + "2019": 0.843, + "2020": 0.836, + "2021": 0.84 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "National", + "GDLCODE": "CUBt", + "Region": "Total", + "1990": 0.68, + "1991": 0.674, + "1992": 0.668, + "1993": 0.659, + "1994": 0.656, + "1995": 0.659, + "1996": 0.67, + "1997": 0.674, + "1998": 0.678, + "1999": 0.685, + "2000": 0.693, + "2001": 0.7, + "2002": 0.706, + "2003": 0.714, + "2004": 0.728, + "2005": 0.741, + "2006": 0.761, + "2007": 0.775, + "2008": 0.784, + "2009": 0.784, + "2010": 0.78, + "2011": 0.777, + "2012": 0.773, + "2013": 0.769, + "2014": 0.771, + "2015": 0.773, + "2016": 0.774, + "2017": 0.779, + "2018": 0.783, + "2019": 0.788, + "2020": 0.781, + "2021": 0.764 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr103", + "Region": "C. Habana", + "1990": 0.698, + "1991": 0.713, + "1992": 0.706, + "1993": 0.697, + "1994": 0.694, + "1995": 0.697, + "1996": 0.708, + "1997": 0.712, + "1998": 0.717, + "1999": 0.725, + "2000": 0.733, + "2001": 0.739, + "2002": 0.746, + "2003": 0.754, + "2004": 0.769, + "2005": 0.782, + "2006": 0.804, + "2007": 0.815, + "2008": 0.819, + "2009": 0.822, + "2010": 0.823, + "2011": 0.82, + "2012": 0.816, + "2013": 0.813, + "2014": 0.816, + "2015": 0.819, + "2016": 0.821, + "2017": 0.827, + "2018": 0.833, + "2019": 0.838, + "2020": 0.831, + "2021": 0.813 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr109", + "Region": "Camaguey", + "1990": 0.688, + "1991": 0.668, + "1992": 0.661, + "1993": 0.652, + "1994": 0.649, + "1995": 0.652, + "1996": 0.663, + "1997": 0.667, + "1998": 0.671, + "1999": 0.679, + "2000": 0.686, + "2001": 0.693, + "2002": 0.699, + "2003": 0.707, + "2004": 0.721, + "2005": 0.734, + "2006": 0.755, + "2007": 0.769, + "2008": 0.777, + "2009": 0.778, + "2010": 0.773, + "2011": 0.771, + "2012": 0.764, + "2013": 0.758, + "2014": 0.758, + "2015": 0.758, + "2016": 0.757, + "2017": 0.76, + "2018": 0.762, + "2019": 0.764, + "2020": 0.757, + "2021": 0.74 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr108", + "Region": "Ciego de Avila", + "1990": 0.673, + "1991": 0.667, + "1992": 0.66, + "1993": 0.651, + "1994": 0.649, + "1995": 0.651, + "1996": 0.662, + "1997": 0.666, + "1998": 0.67, + "1999": 0.677, + "2000": 0.685, + "2001": 0.692, + "2002": 0.697, + "2003": 0.705, + "2004": 0.72, + "2005": 0.732, + "2006": 0.753, + "2007": 0.766, + "2008": 0.775, + "2009": 0.775, + "2010": 0.771, + "2011": 0.768, + "2012": 0.765, + "2013": 0.763, + "2014": 0.765, + "2015": 0.768, + "2016": 0.771, + "2017": 0.777, + "2018": 0.782, + "2019": 0.788, + "2020": 0.781, + "2021": 0.764 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr106", + "Region": "Cienfuegos", + "1990": 0.668, + "1991": 0.665, + "1992": 0.659, + "1993": 0.65, + "1994": 0.648, + "1995": 0.65, + "1996": 0.661, + "1997": 0.665, + "1998": 0.669, + "1999": 0.676, + "2000": 0.684, + "2001": 0.69, + "2002": 0.696, + "2003": 0.704, + "2004": 0.718, + "2005": 0.731, + "2006": 0.751, + "2007": 0.765, + "2008": 0.773, + "2009": 0.774, + "2010": 0.769, + "2011": 0.767, + "2012": 0.763, + "2013": 0.761, + "2014": 0.764, + "2015": 0.767, + "2016": 0.77, + "2017": 0.776, + "2018": 0.782, + "2019": 0.787, + "2020": 0.781, + "2021": 0.763 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr112", + "Region": "Granma", + "1990": 0.663, + "1991": 0.641, + "1992": 0.635, + "1993": 0.626, + "1994": 0.623, + "1995": 0.626, + "1996": 0.637, + "1997": 0.64, + "1998": 0.644, + "1999": 0.651, + "2000": 0.659, + "2001": 0.665, + "2002": 0.671, + "2003": 0.679, + "2004": 0.692, + "2005": 0.705, + "2006": 0.725, + "2007": 0.738, + "2008": 0.746, + "2009": 0.747, + "2010": 0.743, + "2011": 0.74, + "2012": 0.737, + "2013": 0.735, + "2014": 0.738, + "2015": 0.741, + "2016": 0.744, + "2017": 0.749, + "2018": 0.755, + "2019": 0.76, + "2020": 0.753, + "2021": 0.737 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr114", + "Region": "Guantanamo", + "1990": 0.688, + "1991": 0.676, + "1992": 0.669, + "1993": 0.66, + "1994": 0.658, + "1995": 0.66, + "1996": 0.671, + "1997": 0.675, + "1998": 0.679, + "1999": 0.687, + "2000": 0.695, + "2001": 0.701, + "2002": 0.707, + "2003": 0.715, + "2004": 0.73, + "2005": 0.743, + "2006": 0.763, + "2007": 0.777, + "2008": 0.785, + "2009": 0.787, + "2010": 0.782, + "2011": 0.78, + "2012": 0.775, + "2013": 0.772, + "2014": 0.774, + "2015": 0.776, + "2016": 0.778, + "2017": 0.783, + "2018": 0.787, + "2019": 0.792, + "2020": 0.785, + "2021": 0.768 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr111", + "Region": "Holguin", + "1990": 0.674, + "1991": 0.654, + "1992": 0.647, + "1993": 0.638, + "1994": 0.636, + "1995": 0.638, + "1996": 0.649, + "1997": 0.653, + "1998": 0.657, + "1999": 0.664, + "2000": 0.672, + "2001": 0.678, + "2002": 0.684, + "2003": 0.692, + "2004": 0.706, + "2005": 0.718, + "2006": 0.739, + "2007": 0.752, + "2008": 0.76, + "2009": 0.761, + "2010": 0.757, + "2011": 0.754, + "2012": 0.75, + "2013": 0.747, + "2014": 0.749, + "2015": 0.751, + "2016": 0.752, + "2017": 0.757, + "2018": 0.761, + "2019": 0.766, + "2020": 0.759, + "2021": 0.742 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr115", + "Region": "Isla", + "1990": 0.65, + "1991": 0.662, + "1992": 0.656, + "1993": 0.648, + "1994": 0.645, + "1995": 0.648, + "1996": 0.659, + "1997": 0.662, + "1998": 0.666, + "1999": 0.673, + "2000": 0.681, + "2001": 0.687, + "2002": 0.693, + "2003": 0.701, + "2004": 0.715, + "2005": 0.727, + "2006": 0.747, + "2007": 0.76, + "2008": 0.769, + "2009": 0.769, + "2010": 0.765, + "2011": 0.762, + "2012": 0.765, + "2013": 0.768, + "2014": 0.777, + "2015": 0.785, + "2016": 0.794, + "2017": 0.805, + "2018": 0.816, + "2019": 0.827, + "2020": 0.82, + "2021": 0.802 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr110", + "Region": "Las Tunas", + "1990": 0.666, + "1991": 0.644, + "1992": 0.637, + "1993": 0.628, + "1994": 0.626, + "1995": 0.628, + "1996": 0.639, + "1997": 0.643, + "1998": 0.647, + "1999": 0.654, + "2000": 0.662, + "2001": 0.668, + "2002": 0.674, + "2003": 0.681, + "2004": 0.695, + "2005": 0.708, + "2006": 0.728, + "2007": 0.741, + "2008": 0.749, + "2009": 0.75, + "2010": 0.745, + "2011": 0.743, + "2012": 0.739, + "2013": 0.737, + "2014": 0.739, + "2015": 0.742, + "2016": 0.744, + "2017": 0.749, + "2018": 0.754, + "2019": 0.759, + "2020": 0.753, + "2021": 0.736 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr104", + "Region": "Matanzas", + "1990": 0.685, + "1991": 0.689, + "1992": 0.683, + "1993": 0.674, + "1994": 0.671, + "1995": 0.674, + "1996": 0.685, + "1997": 0.689, + "1998": 0.693, + "1999": 0.701, + "2000": 0.709, + "2001": 0.715, + "2002": 0.721, + "2003": 0.73, + "2004": 0.744, + "2005": 0.757, + "2006": 0.778, + "2007": 0.792, + "2008": 0.801, + "2009": 0.801, + "2010": 0.796, + "2011": 0.794, + "2012": 0.788, + "2013": 0.783, + "2014": 0.783, + "2015": 0.784, + "2016": 0.784, + "2017": 0.787, + "2018": 0.79, + "2019": 0.793, + "2020": 0.786, + "2021": 0.769 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr101", + "Region": "Pinar del Rio", + "1990": 0.685, + "1991": 0.683, + "1992": 0.677, + "1993": 0.668, + "1994": 0.665, + "1995": 0.668, + "1996": 0.679, + "1997": 0.683, + "1998": 0.687, + "1999": 0.695, + "2000": 0.702, + "2001": 0.709, + "2002": 0.715, + "2003": 0.723, + "2004": 0.738, + "2005": 0.751, + "2006": 0.771, + "2007": 0.785, + "2008": 0.794, + "2009": 0.795, + "2010": 0.79, + "2011": 0.787, + "2012": 0.78, + "2013": 0.775, + "2014": 0.774, + "2015": 0.774, + "2016": 0.773, + "2017": 0.775, + "2018": 0.777, + "2019": 0.78, + "2020": 0.773, + "2021": 0.756 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr102", + "Region": "Prov. Habana", + "1990": 0.668, + "1991": 0.676, + "1992": 0.669, + "1993": 0.661, + "1994": 0.658, + "1995": 0.66, + "1996": 0.672, + "1997": 0.675, + "1998": 0.679, + "1999": 0.687, + "2000": 0.695, + "2001": 0.701, + "2002": 0.707, + "2003": 0.715, + "2004": 0.729, + "2005": 0.742, + "2006": 0.762, + "2007": 0.776, + "2008": 0.784, + "2009": 0.785, + "2010": 0.78, + "2011": 0.778, + "2012": 0.775, + "2013": 0.773, + "2014": 0.776, + "2015": 0.779, + "2016": 0.783, + "2017": 0.789, + "2018": 0.795, + "2019": 0.801, + "2020": 0.794, + "2021": 0.777 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr107", + "Region": "S.Spiritus", + "1990": 0.653, + "1991": 0.643, + "1992": 0.637, + "1993": 0.628, + "1994": 0.626, + "1995": 0.628, + "1996": 0.639, + "1997": 0.642, + "1998": 0.646, + "1999": 0.653, + "2000": 0.661, + "2001": 0.667, + "2002": 0.673, + "2003": 0.68, + "2004": 0.694, + "2005": 0.707, + "2006": 0.726, + "2007": 0.739, + "2008": 0.747, + "2009": 0.748, + "2010": 0.744, + "2011": 0.742, + "2012": 0.739, + "2013": 0.739, + "2014": 0.743, + "2015": 0.747, + "2016": 0.751, + "2017": 0.758, + "2018": 0.764, + "2019": 0.771, + "2020": 0.765, + "2021": 0.748 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr113", + "Region": "Santiago de Cuba", + "1990": 0.688, + "1991": 0.673, + "1992": 0.666, + "1993": 0.657, + "1994": 0.655, + "1995": 0.657, + "1996": 0.668, + "1997": 0.672, + "1998": 0.676, + "1999": 0.684, + "2000": 0.692, + "2001": 0.698, + "2002": 0.704, + "2003": 0.712, + "2004": 0.727, + "2005": 0.74, + "2006": 0.76, + "2007": 0.774, + "2008": 0.782, + "2009": 0.783, + "2010": 0.779, + "2011": 0.776, + "2012": 0.772, + "2013": 0.768, + "2014": 0.77, + "2015": 0.772, + "2016": 0.774, + "2017": 0.779, + "2018": 0.783, + "2019": 0.788, + "2020": 0.781, + "2021": 0.763 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr105", + "Region": "Villa Clara", + "1990": 0.674, + "1991": 0.668, + "1992": 0.661, + "1993": 0.652, + "1994": 0.65, + "1995": 0.652, + "1996": 0.663, + "1997": 0.667, + "1998": 0.671, + "1999": 0.678, + "2000": 0.686, + "2001": 0.693, + "2002": 0.698, + "2003": 0.706, + "2004": 0.721, + "2005": 0.733, + "2006": 0.754, + "2007": 0.767, + "2008": 0.776, + "2009": 0.776, + "2010": 0.772, + "2011": 0.77, + "2012": 0.764, + "2013": 0.759, + "2014": 0.76, + "2015": 0.761, + "2016": 0.762, + "2017": 0.765, + "2018": 0.769, + "2019": 0.772, + "2020": 0.765, + "2021": 0.748 + }, + { + "Country": "Cyprus", + "Continent": "Europe", + "ISO_Code": "CYP", + "Level": "National", + "GDLCODE": "CYPt", + "Region": "Total", + "1990": 0.716, + "1991": 0.719, + "1992": 0.726, + "1993": 0.765, + "1994": 0.77, + "1995": 0.776, + "1996": 0.781, + "1997": 0.785, + "1998": 0.794, + "1999": 0.794, + "2000": 0.797, + "2001": 0.804, + "2002": 0.816, + "2003": 0.825, + "2004": 0.83, + "2005": 0.834, + "2006": 0.841, + "2007": 0.848, + "2008": 0.857, + "2009": 0.862, + "2010": 0.857, + "2011": 0.861, + "2012": 0.86, + "2013": 0.861, + "2014": 0.865, + "2015": 0.871, + "2016": 0.877, + "2017": 0.887, + "2018": 0.892, + "2019": 0.897, + "2020": 0.894, + "2021": 0.896 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "National", + "GDLCODE": "CZEt", + "Region": "Total", + "1990": 0.742, + "1991": 0.742, + "1992": 0.743, + "1993": 0.751, + "1994": 0.762, + "1995": 0.77, + "1996": 0.782, + "1997": 0.787, + "1998": 0.792, + "1999": 0.796, + "2000": 0.808, + "2001": 0.818, + "2002": 0.825, + "2003": 0.831, + "2004": 0.836, + "2005": 0.844, + "2006": 0.852, + "2007": 0.859, + "2008": 0.863, + "2009": 0.865, + "2010": 0.87, + "2011": 0.872, + "2012": 0.874, + "2013": 0.881, + "2014": 0.887, + "2015": 0.891, + "2016": 0.895, + "2017": 0.897, + "2018": 0.894, + "2019": 0.897, + "2020": 0.892, + "2021": 0.889 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr106", + "Region": "Jihovychod", + "1990": 0.748, + "1991": 0.747, + "1992": 0.749, + "1993": 0.755, + "1994": 0.766, + "1995": 0.777, + "1996": 0.787, + "1997": 0.792, + "1998": 0.797, + "1999": 0.801, + "2000": 0.812, + "2001": 0.825, + "2002": 0.83, + "2003": 0.838, + "2004": 0.842, + "2005": 0.847, + "2006": 0.857, + "2007": 0.865, + "2008": 0.871, + "2009": 0.873, + "2010": 0.878, + "2011": 0.882, + "2012": 0.883, + "2013": 0.893, + "2014": 0.897, + "2015": 0.901, + "2016": 0.905, + "2017": 0.906, + "2018": 0.903, + "2019": 0.906, + "2020": 0.901, + "2021": 0.898 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr103", + "Region": "Jihozapad", + "1990": 0.736, + "1991": 0.735, + "1992": 0.737, + "1993": 0.746, + "1994": 0.755, + "1995": 0.763, + "1996": 0.776, + "1997": 0.78, + "1998": 0.786, + "1999": 0.789, + "2000": 0.802, + "2001": 0.811, + "2002": 0.818, + "2003": 0.823, + "2004": 0.829, + "2005": 0.836, + "2006": 0.844, + "2007": 0.851, + "2008": 0.85, + "2009": 0.855, + "2010": 0.859, + "2011": 0.861, + "2012": 0.863, + "2013": 0.87, + "2014": 0.875, + "2015": 0.876, + "2016": 0.881, + "2017": 0.884, + "2018": 0.879, + "2019": 0.882, + "2020": 0.878, + "2021": 0.875 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr108", + "Region": "Moravskoslezsko", + "1990": 0.719, + "1991": 0.718, + "1992": 0.72, + "1993": 0.728, + "1994": 0.738, + "1995": 0.745, + "1996": 0.757, + "1997": 0.762, + "1998": 0.767, + "1999": 0.772, + "2000": 0.782, + "2001": 0.792, + "2002": 0.798, + "2003": 0.804, + "2004": 0.81, + "2005": 0.821, + "2006": 0.829, + "2007": 0.836, + "2008": 0.838, + "2009": 0.841, + "2010": 0.845, + "2011": 0.848, + "2012": 0.852, + "2013": 0.856, + "2014": 0.861, + "2015": 0.865, + "2016": 0.868, + "2017": 0.87, + "2018": 0.867, + "2019": 0.866, + "2020": 0.862, + "2021": 0.859 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr101", + "Region": "Praha", + "1990": 0.823, + "1991": 0.822, + "1992": 0.824, + "1993": 0.832, + "1994": 0.844, + "1995": 0.852, + "1996": 0.866, + "1997": 0.872, + "1998": 0.877, + "1999": 0.883, + "2000": 0.895, + "2001": 0.907, + "2002": 0.915, + "2003": 0.921, + "2004": 0.928, + "2005": 0.935, + "2006": 0.941, + "2007": 0.944, + "2008": 0.947, + "2009": 0.947, + "2010": 0.952, + "2011": 0.954, + "2012": 0.954, + "2013": 0.958, + "2014": 0.961, + "2015": 0.961, + "2016": 0.964, + "2017": 0.967, + "2018": 0.968, + "2019": 0.969, + "2020": 0.965, + "2021": 0.96 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr105", + "Region": "Severovychod", + "1990": 0.729, + "1991": 0.728, + "1992": 0.73, + "1993": 0.739, + "1994": 0.749, + "1995": 0.759, + "1996": 0.771, + "1997": 0.775, + "1998": 0.779, + "1999": 0.783, + "2000": 0.795, + "2001": 0.804, + "2002": 0.807, + "2003": 0.814, + "2004": 0.816, + "2005": 0.826, + "2006": 0.832, + "2007": 0.837, + "2008": 0.842, + "2009": 0.844, + "2010": 0.848, + "2011": 0.85, + "2012": 0.85, + "2013": 0.858, + "2014": 0.865, + "2015": 0.868, + "2016": 0.872, + "2017": 0.876, + "2018": 0.872, + "2019": 0.875, + "2020": 0.87, + "2021": 0.867 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr104", + "Region": "Severozapad", + "1990": 0.706, + "1991": 0.705, + "1992": 0.708, + "1993": 0.715, + "1994": 0.724, + "1995": 0.734, + "1996": 0.744, + "1997": 0.75, + "1998": 0.753, + "1999": 0.759, + "2000": 0.77, + "2001": 0.776, + "2002": 0.782, + "2003": 0.788, + "2004": 0.792, + "2005": 0.8, + "2006": 0.807, + "2007": 0.812, + "2008": 0.814, + "2009": 0.818, + "2010": 0.82, + "2011": 0.823, + "2012": 0.825, + "2013": 0.829, + "2014": 0.834, + "2015": 0.837, + "2016": 0.838, + "2017": 0.839, + "2018": 0.834, + "2019": 0.84, + "2020": 0.835, + "2021": 0.833 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr102", + "Region": "Stredni Cechy", + "1990": 0.707, + "1991": 0.706, + "1992": 0.709, + "1993": 0.715, + "1994": 0.724, + "1995": 0.734, + "1996": 0.744, + "1997": 0.749, + "1998": 0.755, + "1999": 0.757, + "2000": 0.769, + "2001": 0.778, + "2002": 0.788, + "2003": 0.791, + "2004": 0.796, + "2005": 0.802, + "2006": 0.813, + "2007": 0.818, + "2008": 0.823, + "2009": 0.823, + "2010": 0.827, + "2011": 0.831, + "2012": 0.833, + "2013": 0.838, + "2014": 0.846, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.85, + "2019": 0.854, + "2020": 0.849, + "2021": 0.847 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr107", + "Region": "Stredni Morava", + "1990": 0.727, + "1991": 0.726, + "1992": 0.728, + "1993": 0.736, + "1994": 0.746, + "1995": 0.754, + "1996": 0.765, + "1997": 0.769, + "1998": 0.774, + "1999": 0.78, + "2000": 0.79, + "2001": 0.801, + "2002": 0.806, + "2003": 0.813, + "2004": 0.818, + "2005": 0.824, + "2006": 0.833, + "2007": 0.838, + "2008": 0.844, + "2009": 0.845, + "2010": 0.849, + "2011": 0.853, + "2012": 0.855, + "2013": 0.86, + "2014": 0.869, + "2015": 0.873, + "2016": 0.876, + "2017": 0.88, + "2018": 0.878, + "2019": 0.881, + "2020": 0.877, + "2021": 0.874 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "National", + "GDLCODE": "DNKt", + "Region": "Total", + "1990": 0.834, + "1991": 0.838, + "1992": 0.841, + "1993": 0.844, + "1994": 0.851, + "1995": 0.854, + "1996": 0.862, + "1997": 0.869, + "1998": 0.876, + "1999": 0.886, + "2000": 0.889, + "2001": 0.895, + "2002": 0.896, + "2003": 0.901, + "2004": 0.906, + "2005": 0.911, + "2006": 0.91, + "2007": 0.911, + "2008": 0.915, + "2009": 0.909, + "2010": 0.913, + "2011": 0.926, + "2012": 0.931, + "2013": 0.933, + "2014": 0.932, + "2015": 0.936, + "2016": 0.943, + "2017": 0.944, + "2018": 0.942, + "2019": 0.946, + "2020": 0.947, + "2021": 0.948 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr101", + "Region": "Hovedstaden", + "1990": 0.848, + "1991": 0.852, + "1992": 0.855, + "1993": 0.858, + "1994": 0.865, + "1995": 0.869, + "1996": 0.876, + "1997": 0.883, + "1998": 0.89, + "1999": 0.901, + "2000": 0.903, + "2001": 0.91, + "2002": 0.909, + "2003": 0.915, + "2004": 0.921, + "2005": 0.927, + "2006": 0.925, + "2007": 0.925, + "2008": 0.929, + "2009": 0.923, + "2010": 0.928, + "2011": 0.945, + "2012": 0.95, + "2013": 0.953, + "2014": 0.953, + "2015": 0.956, + "2016": 0.964, + "2017": 0.964, + "2018": 0.964, + "2019": 0.967, + "2020": 0.968, + "2021": 0.967 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr104", + "Region": "Midtjylland", + "1990": 0.835, + "1991": 0.839, + "1992": 0.842, + "1993": 0.845, + "1994": 0.852, + "1995": 0.856, + "1996": 0.863, + "1997": 0.87, + "1998": 0.877, + "1999": 0.888, + "2000": 0.89, + "2001": 0.897, + "2002": 0.898, + "2003": 0.902, + "2004": 0.906, + "2005": 0.911, + "2006": 0.911, + "2007": 0.912, + "2008": 0.917, + "2009": 0.912, + "2010": 0.914, + "2011": 0.924, + "2012": 0.926, + "2013": 0.929, + "2014": 0.927, + "2015": 0.931, + "2016": 0.942, + "2017": 0.941, + "2018": 0.938, + "2019": 0.944, + "2020": 0.945, + "2021": 0.946 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr105", + "Region": "Nordjylland", + "1990": 0.821, + "1991": 0.825, + "1992": 0.827, + "1993": 0.83, + "1994": 0.837, + "1995": 0.841, + "1996": 0.849, + "1997": 0.856, + "1998": 0.862, + "1999": 0.873, + "2000": 0.875, + "2001": 0.881, + "2002": 0.883, + "2003": 0.888, + "2004": 0.891, + "2005": 0.896, + "2006": 0.896, + "2007": 0.897, + "2008": 0.901, + "2009": 0.899, + "2010": 0.901, + "2011": 0.915, + "2012": 0.919, + "2013": 0.918, + "2014": 0.918, + "2015": 0.922, + "2016": 0.928, + "2017": 0.931, + "2018": 0.928, + "2019": 0.93, + "2020": 0.931, + "2021": 0.932 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr102", + "Region": "Sjaelland", + "1990": 0.81, + "1991": 0.814, + "1992": 0.816, + "1993": 0.819, + "1994": 0.826, + "1995": 0.83, + "1996": 0.837, + "1997": 0.844, + "1998": 0.851, + "1999": 0.861, + "2000": 0.863, + "2001": 0.87, + "2002": 0.871, + "2003": 0.876, + "2004": 0.881, + "2005": 0.885, + "2006": 0.885, + "2007": 0.884, + "2008": 0.886, + "2009": 0.88, + "2010": 0.883, + "2011": 0.898, + "2012": 0.904, + "2013": 0.906, + "2014": 0.904, + "2015": 0.91, + "2016": 0.914, + "2017": 0.915, + "2018": 0.914, + "2019": 0.917, + "2020": 0.917, + "2021": 0.918 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr103", + "Region": "Syddanmark", + "1990": 0.827, + "1991": 0.831, + "1992": 0.833, + "1993": 0.836, + "1994": 0.843, + "1995": 0.847, + "1996": 0.855, + "1997": 0.862, + "1998": 0.868, + "1999": 0.879, + "2000": 0.881, + "2001": 0.888, + "2002": 0.888, + "2003": 0.893, + "2004": 0.898, + "2005": 0.902, + "2006": 0.902, + "2007": 0.903, + "2008": 0.907, + "2009": 0.899, + "2010": 0.904, + "2011": 0.918, + "2012": 0.922, + "2013": 0.925, + "2014": 0.923, + "2015": 0.928, + "2016": 0.934, + "2017": 0.935, + "2018": 0.932, + "2019": 0.936, + "2020": 0.936, + "2021": 0.937 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "National", + "GDLCODE": "DJIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.351, + "1996": 0.35, + "1997": 0.353, + "1998": 0.355, + "1999": 0.36, + "2000": 0.361, + "2001": 0.371, + "2002": 0.378, + "2003": 0.388, + "2004": 0.396, + "2005": 0.405, + "2006": 0.416, + "2007": 0.426, + "2008": 0.434, + "2009": 0.445, + "2010": 0.458, + "2011": 0.47, + "2012": 0.478, + "2013": 0.483, + "2014": 0.488, + "2015": 0.493, + "2016": 0.496, + "2017": 0.499, + "2018": 0.506, + "2019": 0.512, + "2020": 0.51, + "2021": 0.509 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr101", + "Region": "Djibouti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.358, + "1996": 0.356, + "1997": 0.36, + "1998": 0.362, + "1999": 0.367, + "2000": 0.368, + "2001": 0.378, + "2002": 0.385, + "2003": 0.396, + "2004": 0.404, + "2005": 0.413, + "2006": 0.423, + "2007": 0.433, + "2008": 0.442, + "2009": 0.452, + "2010": 0.465, + "2011": 0.477, + "2012": 0.485, + "2013": 0.49, + "2014": 0.495, + "2015": 0.5, + "2016": 0.503, + "2017": 0.507, + "2018": 0.514, + "2019": 0.519, + "2020": 0.517, + "2021": 0.517 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr102", + "Region": "Other Districts", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.31, + "1996": 0.308, + "1997": 0.312, + "1998": 0.313, + "1999": 0.316, + "2000": 0.317, + "2001": 0.327, + "2002": 0.333, + "2003": 0.343, + "2004": 0.351, + "2005": 0.36, + "2006": 0.37, + "2007": 0.38, + "2008": 0.389, + "2009": 0.4, + "2010": 0.413, + "2011": 0.426, + "2012": 0.433, + "2013": 0.438, + "2014": 0.443, + "2015": 0.448, + "2016": 0.451, + "2017": 0.454, + "2018": 0.462, + "2019": 0.467, + "2020": 0.465, + "2021": 0.465 + }, + { + "Country": "Dominica", + "Continent": "America", + "ISO_Code": "DMA", + "Level": "National", + "GDLCODE": "DMAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.695, + "2001": 0.694, + "2002": 0.695, + "2003": 0.695, + "2004": 0.7, + "2005": 0.701, + "2006": 0.708, + "2007": 0.707, + "2008": 0.717, + "2009": 0.713, + "2010": 0.711, + "2011": 0.702, + "2012": 0.706, + "2013": 0.699, + "2014": 0.705, + "2015": 0.7, + "2016": 0.709, + "2017": 0.692, + "2018": 0.726, + "2019": 0.729, + "2020": 0.722, + "2021": 0.72 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "National", + "GDLCODE": "DOMt", + "Region": "Total", + "1990": 0.577, + "1991": 0.583, + "1992": 0.593, + "1993": 0.6, + "1994": 0.607, + "1995": 0.613, + "1996": 0.62, + "1997": 0.627, + "1998": 0.633, + "1999": 0.64, + "2000": 0.646, + "2001": 0.651, + "2002": 0.657, + "2003": 0.659, + "2004": 0.663, + "2005": 0.674, + "2006": 0.683, + "2007": 0.692, + "2008": 0.697, + "2009": 0.701, + "2010": 0.708, + "2011": 0.713, + "2012": 0.718, + "2013": 0.722, + "2014": 0.728, + "2015": 0.736, + "2016": 0.755, + "2017": 0.757, + "2018": 0.764, + "2019": 0.771, + "2020": 0.764, + "2021": 0.767 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr101", + "Region": "Region 0 (Distrito Nacional, Santo Domingo, Monte Plata)", + "1990": 0.623, + "1991": 0.63, + "1992": 0.641, + "1993": 0.648, + "1994": 0.655, + "1995": 0.662, + "1996": 0.669, + "1997": 0.674, + "1998": 0.676, + "1999": 0.679, + "2000": 0.68, + "2001": 0.679, + "2002": 0.678, + "2003": 0.68, + "2004": 0.683, + "2005": 0.693, + "2006": 0.701, + "2007": 0.708, + "2008": 0.714, + "2009": 0.718, + "2010": 0.725, + "2011": 0.731, + "2012": 0.736, + "2013": 0.741, + "2014": 0.746, + "2015": 0.753, + "2016": 0.773, + "2017": 0.774, + "2018": 0.78, + "2019": 0.787, + "2020": 0.779, + "2021": 0.783 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr102", + "Region": "Region I (Peravia, San Cristobal, San Jose de Ocoa, Azua)", + "1990": 0.569, + "1991": 0.575, + "1992": 0.585, + "1993": 0.592, + "1994": 0.598, + "1995": 0.605, + "1996": 0.611, + "1997": 0.617, + "1998": 0.621, + "1999": 0.626, + "2000": 0.629, + "2001": 0.632, + "2002": 0.635, + "2003": 0.637, + "2004": 0.64, + "2005": 0.651, + "2006": 0.66, + "2007": 0.668, + "2008": 0.678, + "2009": 0.685, + "2010": 0.696, + "2011": 0.705, + "2012": 0.715, + "2013": 0.723, + "2014": 0.728, + "2015": 0.736, + "2016": 0.754, + "2017": 0.755, + "2018": 0.761, + "2019": 0.768, + "2020": 0.76, + "2021": 0.764 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr103", + "Region": "Region II (Espaillat, Puerto Plata, Santiago)", + "1990": 0.58, + "1991": 0.586, + "1992": 0.596, + "1993": 0.603, + "1994": 0.609, + "1995": 0.616, + "1996": 0.623, + "1997": 0.629, + "1998": 0.634, + "1999": 0.64, + "2000": 0.646, + "2001": 0.65, + "2002": 0.657, + "2003": 0.663, + "2004": 0.669, + "2005": 0.684, + "2006": 0.697, + "2007": 0.708, + "2008": 0.713, + "2009": 0.715, + "2010": 0.721, + "2011": 0.725, + "2012": 0.73, + "2013": 0.733, + "2014": 0.736, + "2015": 0.741, + "2016": 0.757, + "2017": 0.756, + "2018": 0.761, + "2019": 0.765, + "2020": 0.757, + "2021": 0.761 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr104", + "Region": "Region III (Duarte, Maria Trinidad Sanchez, Salcedo, Samana)", + "1990": 0.543, + "1991": 0.548, + "1992": 0.558, + "1993": 0.565, + "1994": 0.571, + "1995": 0.577, + "1996": 0.583, + "1997": 0.594, + "1998": 0.603, + "1999": 0.613, + "2000": 0.623, + "2001": 0.632, + "2002": 0.642, + "2003": 0.644, + "2004": 0.647, + "2005": 0.658, + "2006": 0.667, + "2007": 0.675, + "2008": 0.684, + "2009": 0.69, + "2010": 0.7, + "2011": 0.708, + "2012": 0.717, + "2013": 0.724, + "2014": 0.729, + "2015": 0.736, + "2016": 0.754, + "2017": 0.755, + "2018": 0.761, + "2019": 0.767, + "2020": 0.76, + "2021": 0.764 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr105", + "Region": "Region IV (Independencia, Bahoruco, Barahona, Pedernales)", + "1990": 0.534, + "1991": 0.54, + "1992": 0.549, + "1993": 0.556, + "1994": 0.562, + "1995": 0.568, + "1996": 0.574, + "1997": 0.583, + "1998": 0.591, + "1999": 0.6, + "2000": 0.61, + "2001": 0.621, + "2002": 0.635, + "2003": 0.634, + "2004": 0.635, + "2005": 0.644, + "2006": 0.652, + "2007": 0.659, + "2008": 0.663, + "2009": 0.665, + "2010": 0.672, + "2011": 0.676, + "2012": 0.681, + "2013": 0.684, + "2014": 0.695, + "2015": 0.707, + "2016": 0.729, + "2017": 0.736, + "2018": 0.748, + "2019": 0.76, + "2020": 0.752, + "2021": 0.756 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr106", + "Region": "Region V (El Seibo, La Altagracia, La Romana, San Pedro de Macoris, Hato Mayor)", + "1990": 0.545, + "1991": 0.55, + "1992": 0.56, + "1993": 0.567, + "1994": 0.573, + "1995": 0.579, + "1996": 0.585, + "1997": 0.593, + "1998": 0.599, + "1999": 0.606, + "2000": 0.611, + "2001": 0.614, + "2002": 0.617, + "2003": 0.622, + "2004": 0.628, + "2005": 0.641, + "2006": 0.653, + "2007": 0.662, + "2008": 0.671, + "2009": 0.676, + "2010": 0.686, + "2011": 0.693, + "2012": 0.7, + "2013": 0.706, + "2014": 0.712, + "2015": 0.72, + "2016": 0.739, + "2017": 0.741, + "2018": 0.748, + "2019": 0.756, + "2020": 0.748, + "2021": 0.752 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr107", + "Region": "Region VI (San Juan, Elias Pina)", + "1990": 0.474, + "1991": 0.479, + "1992": 0.487, + "1993": 0.494, + "1994": 0.499, + "1995": 0.504, + "1996": 0.51, + "1997": 0.522, + "1998": 0.534, + "1999": 0.547, + "2000": 0.56, + "2001": 0.573, + "2002": 0.589, + "2003": 0.595, + "2004": 0.601, + "2005": 0.615, + "2006": 0.628, + "2007": 0.639, + "2008": 0.646, + "2009": 0.65, + "2010": 0.658, + "2011": 0.664, + "2012": 0.67, + "2013": 0.675, + "2014": 0.683, + "2015": 0.694, + "2016": 0.714, + "2017": 0.719, + "2018": 0.729, + "2019": 0.739, + "2020": 0.731, + "2021": 0.735 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr108", + "Region": "Region VII (Dajabon, Monte Cristi, Santiago Rodriguez, Valverde)", + "1990": 0.546, + "1991": 0.552, + "1992": 0.562, + "1993": 0.569, + "1994": 0.575, + "1995": 0.581, + "1996": 0.587, + "1997": 0.597, + "1998": 0.605, + "1999": 0.613, + "2000": 0.622, + "2001": 0.63, + "2002": 0.639, + "2003": 0.64, + "2004": 0.642, + "2005": 0.653, + "2006": 0.661, + "2007": 0.669, + "2008": 0.669, + "2009": 0.668, + "2010": 0.671, + "2011": 0.671, + "2012": 0.672, + "2013": 0.671, + "2014": 0.682, + "2015": 0.694, + "2016": 0.716, + "2017": 0.723, + "2018": 0.734, + "2019": 0.746, + "2020": 0.739, + "2021": 0.743 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr109", + "Region": "Region VIII (La Vega, Monsenor Nouel, Sanchez Ramirez)", + "1990": 0.557, + "1991": 0.563, + "1992": 0.572, + "1993": 0.58, + "1994": 0.585, + "1995": 0.592, + "1996": 0.598, + "1997": 0.606, + "1998": 0.611, + "1999": 0.617, + "2000": 0.623, + "2001": 0.628, + "2002": 0.633, + "2003": 0.639, + "2004": 0.646, + "2005": 0.661, + "2006": 0.674, + "2007": 0.686, + "2008": 0.691, + "2009": 0.695, + "2010": 0.701, + "2011": 0.706, + "2012": 0.712, + "2013": 0.716, + "2014": 0.722, + "2015": 0.731, + "2016": 0.751, + "2017": 0.754, + "2018": 0.762, + "2019": 0.77, + "2020": 0.763, + "2021": 0.767 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "National", + "GDLCODE": "ECUt", + "Region": "Total", + "1990": 0.651, + "1991": 0.652, + "1992": 0.658, + "1993": 0.662, + "1994": 0.667, + "1995": 0.671, + "1996": 0.674, + "1997": 0.679, + "1998": 0.684, + "1999": 0.683, + "2000": 0.687, + "2001": 0.693, + "2002": 0.698, + "2003": 0.703, + "2004": 0.71, + "2005": 0.715, + "2006": 0.72, + "2007": 0.723, + "2008": 0.729, + "2009": 0.731, + "2010": 0.736, + "2011": 0.743, + "2012": 0.751, + "2013": 0.755, + "2014": 0.76, + "2015": 0.765, + "2016": 0.762, + "2017": 0.762, + "2018": 0.762, + "2019": 0.76, + "2020": 0.731, + "2021": 0.74 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr101", + "Region": "Coste", + "1990": 0.645, + "1991": 0.647, + "1992": 0.652, + "1993": 0.656, + "1994": 0.661, + "1995": 0.665, + "1996": 0.669, + "1997": 0.674, + "1998": 0.678, + "1999": 0.677, + "2000": 0.681, + "2001": 0.687, + "2002": 0.692, + "2003": 0.697, + "2004": 0.703, + "2005": 0.709, + "2006": 0.714, + "2007": 0.717, + "2008": 0.723, + "2009": 0.727, + "2010": 0.733, + "2011": 0.741, + "2012": 0.748, + "2013": 0.753, + "2014": 0.757, + "2015": 0.763, + "2016": 0.76, + "2017": 0.76, + "2018": 0.759, + "2019": 0.757, + "2020": 0.729, + "2021": 0.738 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr103", + "Region": "Oriente", + "1990": 0.63, + "1991": 0.632, + "1992": 0.637, + "1993": 0.641, + "1994": 0.646, + "1995": 0.65, + "1996": 0.653, + "1997": 0.658, + "1998": 0.662, + "1999": 0.662, + "2000": 0.665, + "2001": 0.671, + "2002": 0.676, + "2003": 0.681, + "2004": 0.687, + "2005": 0.693, + "2006": 0.697, + "2007": 0.7, + "2008": 0.703, + "2009": 0.702, + "2010": 0.704, + "2011": 0.708, + "2012": 0.715, + "2013": 0.719, + "2014": 0.723, + "2015": 0.728, + "2016": 0.725, + "2017": 0.726, + "2018": 0.725, + "2019": 0.723, + "2020": 0.696, + "2021": 0.704 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr102", + "Region": "Sierra", + "1990": 0.665, + "1991": 0.667, + "1992": 0.672, + "1993": 0.676, + "1994": 0.682, + "1995": 0.686, + "1996": 0.689, + "1997": 0.695, + "1998": 0.699, + "1999": 0.699, + "2000": 0.702, + "2001": 0.708, + "2002": 0.714, + "2003": 0.718, + "2004": 0.725, + "2005": 0.731, + "2006": 0.736, + "2007": 0.739, + "2008": 0.744, + "2009": 0.745, + "2010": 0.75, + "2011": 0.756, + "2012": 0.764, + "2013": 0.768, + "2014": 0.773, + "2015": 0.778, + "2016": 0.775, + "2017": 0.776, + "2018": 0.775, + "2019": 0.773, + "2020": 0.744, + "2021": 0.753 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "National", + "GDLCODE": "EGYt", + "Region": "Total", + "1990": 0.572, + "1991": 0.578, + "1992": 0.585, + "1993": 0.591, + "1994": 0.598, + "1995": 0.605, + "1996": 0.613, + "1997": 0.619, + "1998": 0.624, + "1999": 0.629, + "2000": 0.633, + "2001": 0.637, + "2002": 0.639, + "2003": 0.637, + "2004": 0.64, + "2005": 0.643, + "2006": 0.647, + "2007": 0.655, + "2008": 0.663, + "2009": 0.668, + "2010": 0.675, + "2011": 0.679, + "2012": 0.688, + "2013": 0.694, + "2014": 0.699, + "2015": 0.706, + "2016": 0.713, + "2017": 0.721, + "2018": 0.729, + "2019": 0.735, + "2020": 0.734, + "2021": 0.731 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr102", + "Region": "Alexandria", + "1990": 0.63, + "1991": 0.638, + "1992": 0.645, + "1993": 0.652, + "1994": 0.659, + "1995": 0.667, + "1996": 0.677, + "1997": 0.682, + "1998": 0.688, + "1999": 0.692, + "2000": 0.697, + "2001": 0.697, + "2002": 0.695, + "2003": 0.69, + "2004": 0.69, + "2005": 0.69, + "2006": 0.693, + "2007": 0.699, + "2008": 0.704, + "2009": 0.711, + "2010": 0.718, + "2011": 0.723, + "2012": 0.733, + "2013": 0.739, + "2014": 0.745, + "2015": 0.752, + "2016": 0.761, + "2017": 0.769, + "2018": 0.777, + "2019": 0.784, + "2020": 0.783, + "2021": 0.78 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr118", + "Region": "Assuit", + "1990": 0.493, + "1991": 0.498, + "1992": 0.504, + "1993": 0.509, + "1994": 0.515, + "1995": 0.522, + "1996": 0.53, + "1997": 0.537, + "1998": 0.543, + "1999": 0.549, + "2000": 0.554, + "2001": 0.563, + "2002": 0.571, + "2003": 0.575, + "2004": 0.583, + "2005": 0.592, + "2006": 0.596, + "2007": 0.601, + "2008": 0.607, + "2009": 0.614, + "2010": 0.621, + "2011": 0.625, + "2012": 0.635, + "2013": 0.641, + "2014": 0.647, + "2015": 0.653, + "2016": 0.66, + "2017": 0.667, + "2018": 0.674, + "2019": 0.68, + "2020": 0.679, + "2021": 0.676 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr121", + "Region": "Aswan", + "1990": 0.559, + "1991": 0.565, + "1992": 0.571, + "1993": 0.578, + "1994": 0.584, + "1995": 0.591, + "1996": 0.6, + "1997": 0.607, + "1998": 0.614, + "1999": 0.62, + "2000": 0.625, + "2001": 0.629, + "2002": 0.631, + "2003": 0.63, + "2004": 0.633, + "2005": 0.636, + "2006": 0.642, + "2007": 0.65, + "2008": 0.659, + "2009": 0.664, + "2010": 0.67, + "2011": 0.674, + "2012": 0.682, + "2013": 0.687, + "2014": 0.692, + "2015": 0.698, + "2016": 0.706, + "2017": 0.714, + "2018": 0.722, + "2019": 0.728, + "2020": 0.727, + "2021": 0.724 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr112", + "Region": "Behera", + "1990": 0.541, + "1991": 0.547, + "1992": 0.553, + "1993": 0.559, + "1994": 0.565, + "1995": 0.573, + "1996": 0.578, + "1997": 0.582, + "1998": 0.585, + "1999": 0.588, + "2000": 0.591, + "2001": 0.603, + "2002": 0.612, + "2003": 0.618, + "2004": 0.628, + "2005": 0.638, + "2006": 0.636, + "2007": 0.636, + "2008": 0.636, + "2009": 0.644, + "2010": 0.653, + "2011": 0.66, + "2012": 0.671, + "2013": 0.68, + "2014": 0.687, + "2015": 0.694, + "2016": 0.701, + "2017": 0.709, + "2018": 0.716, + "2019": 0.722, + "2020": 0.721, + "2021": 0.718 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr115", + "Region": "Beni Suef", + "1990": 0.463, + "1991": 0.469, + "1992": 0.474, + "1993": 0.479, + "1994": 0.485, + "1995": 0.491, + "1996": 0.502, + "1997": 0.512, + "1998": 0.52, + "1999": 0.529, + "2000": 0.538, + "2001": 0.548, + "2002": 0.556, + "2003": 0.562, + "2004": 0.571, + "2005": 0.58, + "2006": 0.585, + "2007": 0.592, + "2008": 0.598, + "2009": 0.609, + "2010": 0.621, + "2011": 0.631, + "2012": 0.645, + "2013": 0.656, + "2014": 0.666, + "2015": 0.673, + "2016": 0.68, + "2017": 0.687, + "2018": 0.695, + "2019": 0.7, + "2020": 0.7, + "2021": 0.697 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr101", + "Region": "Cairo", + "1990": 0.676, + "1991": 0.684, + "1992": 0.691, + "1993": 0.699, + "1994": 0.707, + "1995": 0.716, + "1996": 0.722, + "1997": 0.725, + "1998": 0.727, + "1999": 0.728, + "2000": 0.73, + "2001": 0.728, + "2002": 0.723, + "2003": 0.716, + "2004": 0.713, + "2005": 0.71, + "2006": 0.705, + "2007": 0.703, + "2008": 0.7, + "2009": 0.708, + "2010": 0.715, + "2011": 0.721, + "2012": 0.731, + "2013": 0.738, + "2014": 0.745, + "2015": 0.752, + "2016": 0.76, + "2017": 0.769, + "2018": 0.777, + "2019": 0.783, + "2020": 0.782, + "2021": 0.779 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr106", + "Region": "Dakahlia", + "1990": 0.612, + "1991": 0.619, + "1992": 0.626, + "1993": 0.632, + "1994": 0.639, + "1995": 0.647, + "1996": 0.651, + "1997": 0.652, + "1998": 0.652, + "1999": 0.652, + "2000": 0.652, + "2001": 0.653, + "2002": 0.652, + "2003": 0.647, + "2004": 0.647, + "2005": 0.648, + "2006": 0.656, + "2007": 0.668, + "2008": 0.679, + "2009": 0.685, + "2010": 0.691, + "2011": 0.696, + "2012": 0.705, + "2013": 0.711, + "2014": 0.716, + "2015": 0.722, + "2016": 0.73, + "2017": 0.738, + "2018": 0.746, + "2019": 0.752, + "2020": 0.751, + "2021": 0.748 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr105", + "Region": "Damietta", + "1990": 0.614, + "1991": 0.621, + "1992": 0.627, + "1993": 0.634, + "1994": 0.641, + "1995": 0.649, + "1996": 0.65, + "1997": 0.648, + "1998": 0.646, + "1999": 0.644, + "2000": 0.641, + "2001": 0.649, + "2002": 0.654, + "2003": 0.656, + "2004": 0.662, + "2005": 0.669, + "2006": 0.674, + "2007": 0.681, + "2008": 0.689, + "2009": 0.695, + "2010": 0.701, + "2011": 0.705, + "2012": 0.713, + "2013": 0.719, + "2014": 0.724, + "2015": 0.73, + "2016": 0.738, + "2017": 0.746, + "2018": 0.754, + "2019": 0.76, + "2020": 0.76, + "2021": 0.757 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr116", + "Region": "Fayoum", + "1990": 0.48, + "1991": 0.486, + "1992": 0.491, + "1993": 0.496, + "1994": 0.502, + "1995": 0.508, + "1996": 0.52, + "1997": 0.53, + "1998": 0.54, + "1999": 0.549, + "2000": 0.558, + "2001": 0.562, + "2002": 0.563, + "2003": 0.562, + "2004": 0.564, + "2005": 0.568, + "2006": 0.574, + "2007": 0.583, + "2008": 0.592, + "2009": 0.605, + "2010": 0.619, + "2011": 0.63, + "2012": 0.646, + "2013": 0.659, + "2014": 0.672, + "2015": 0.678, + "2016": 0.685, + "2017": 0.693, + "2018": 0.7, + "2019": 0.705, + "2020": 0.705, + "2021": 0.702 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr122", + "Region": "Frontier governorates (Red Sea, New Valley, Matroh, North Sainai, South Sainai)", + "1990": 0.611, + "1991": 0.619, + "1992": 0.625, + "1993": 0.632, + "1994": 0.64, + "1995": 0.648, + "1996": 0.65, + "1997": 0.65, + "1998": 0.65, + "1999": 0.649, + "2000": 0.648, + "2001": 0.648, + "2002": 0.647, + "2003": 0.642, + "2004": 0.641, + "2005": 0.641, + "2006": 0.643, + "2007": 0.648, + "2008": 0.654, + "2009": 0.662, + "2010": 0.671, + "2011": 0.678, + "2012": 0.689, + "2013": 0.697, + "2014": 0.705, + "2015": 0.712, + "2016": 0.72, + "2017": 0.727, + "2018": 0.735, + "2019": 0.741, + "2020": 0.741, + "2021": 0.738 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr110", + "Region": "Gharbia", + "1990": 0.586, + "1991": 0.593, + "1992": 0.599, + "1993": 0.606, + "1994": 0.612, + "1995": 0.62, + "1996": 0.63, + "1997": 0.637, + "1998": 0.644, + "1999": 0.651, + "2000": 0.657, + "2001": 0.666, + "2002": 0.672, + "2003": 0.675, + "2004": 0.683, + "2005": 0.69, + "2006": 0.692, + "2007": 0.697, + "2008": 0.702, + "2009": 0.704, + "2010": 0.705, + "2011": 0.705, + "2012": 0.709, + "2013": 0.71, + "2014": 0.71, + "2015": 0.717, + "2016": 0.725, + "2017": 0.733, + "2018": 0.74, + "2019": 0.747, + "2020": 0.746, + "2021": 0.743 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr114", + "Region": "Giza", + "1990": 0.573, + "1991": 0.579, + "1992": 0.586, + "1993": 0.592, + "1994": 0.599, + "1995": 0.607, + "1996": 0.621, + "1997": 0.633, + "1998": 0.644, + "1999": 0.654, + "2000": 0.665, + "2001": 0.664, + "2002": 0.66, + "2003": 0.654, + "2004": 0.652, + "2005": 0.651, + "2006": 0.66, + "2007": 0.672, + "2008": 0.684, + "2009": 0.687, + "2010": 0.69, + "2011": 0.691, + "2012": 0.697, + "2013": 0.699, + "2014": 0.701, + "2015": 0.708, + "2016": 0.715, + "2017": 0.723, + "2018": 0.731, + "2019": 0.737, + "2020": 0.736, + "2021": 0.733 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr113", + "Region": "Ismailia", + "1990": 0.654, + "1991": 0.661, + "1992": 0.668, + "1993": 0.676, + "1994": 0.683, + "1995": 0.692, + "1996": 0.693, + "1997": 0.691, + "1998": 0.688, + "1999": 0.685, + "2000": 0.682, + "2001": 0.683, + "2002": 0.681, + "2003": 0.676, + "2004": 0.676, + "2005": 0.676, + "2006": 0.67, + "2007": 0.666, + "2008": 0.663, + "2009": 0.671, + "2010": 0.68, + "2011": 0.686, + "2012": 0.697, + "2013": 0.705, + "2014": 0.712, + "2015": 0.719, + "2016": 0.727, + "2017": 0.735, + "2018": 0.742, + "2019": 0.749, + "2020": 0.748, + "2021": 0.745 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr109", + "Region": "Kafr El-Sheikh", + "1990": 0.555, + "1991": 0.561, + "1992": 0.567, + "1993": 0.573, + "1994": 0.579, + "1995": 0.587, + "1996": 0.596, + "1997": 0.603, + "1998": 0.61, + "1999": 0.616, + "2000": 0.622, + "2001": 0.627, + "2002": 0.63, + "2003": 0.63, + "2004": 0.634, + "2005": 0.639, + "2006": 0.643, + "2007": 0.65, + "2008": 0.657, + "2009": 0.664, + "2010": 0.672, + "2011": 0.679, + "2012": 0.689, + "2013": 0.697, + "2014": 0.704, + "2015": 0.71, + "2016": 0.718, + "2017": 0.726, + "2018": 0.733, + "2019": 0.739, + "2020": 0.739, + "2021": 0.735 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr108", + "Region": "Kalyubia", + "1990": 0.587, + "1991": 0.594, + "1992": 0.6, + "1993": 0.607, + "1994": 0.614, + "1995": 0.622, + "1996": 0.63, + "1997": 0.635, + "1998": 0.639, + "1999": 0.644, + "2000": 0.648, + "2001": 0.649, + "2002": 0.649, + "2003": 0.645, + "2004": 0.645, + "2005": 0.646, + "2006": 0.66, + "2007": 0.677, + "2008": 0.693, + "2009": 0.695, + "2010": 0.697, + "2011": 0.697, + "2012": 0.701, + "2013": 0.702, + "2014": 0.703, + "2015": 0.709, + "2016": 0.717, + "2017": 0.725, + "2018": 0.732, + "2019": 0.738, + "2020": 0.738, + "2021": 0.735 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr111", + "Region": "Menoufia", + "1990": 0.588, + "1991": 0.594, + "1992": 0.601, + "1993": 0.607, + "1994": 0.614, + "1995": 0.622, + "1996": 0.629, + "1997": 0.634, + "1998": 0.638, + "1999": 0.642, + "2000": 0.645, + "2001": 0.652, + "2002": 0.656, + "2003": 0.656, + "2004": 0.661, + "2005": 0.666, + "2006": 0.667, + "2007": 0.67, + "2008": 0.673, + "2009": 0.68, + "2010": 0.689, + "2011": 0.694, + "2012": 0.705, + "2013": 0.712, + "2014": 0.719, + "2015": 0.726, + "2016": 0.734, + "2017": 0.741, + "2018": 0.749, + "2019": 0.755, + "2020": 0.755, + "2021": 0.752 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr117", + "Region": "Menya", + "1990": 0.456, + "1991": 0.462, + "1992": 0.467, + "1993": 0.472, + "1994": 0.478, + "1995": 0.484, + "1996": 0.499, + "1997": 0.513, + "1998": 0.526, + "1999": 0.539, + "2000": 0.551, + "2001": 0.555, + "2002": 0.557, + "2003": 0.555, + "2004": 0.558, + "2005": 0.561, + "2006": 0.571, + "2007": 0.582, + "2008": 0.594, + "2009": 0.605, + "2010": 0.616, + "2011": 0.626, + "2012": 0.64, + "2013": 0.651, + "2014": 0.661, + "2015": 0.667, + "2016": 0.674, + "2017": 0.681, + "2018": 0.688, + "2019": 0.694, + "2020": 0.693, + "2021": 0.69 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr103", + "Region": "Port Said", + "1990": 0.682, + "1991": 0.69, + "1992": 0.697, + "1993": 0.705, + "1994": 0.713, + "1995": 0.722, + "1996": 0.73, + "1997": 0.736, + "1998": 0.741, + "1999": 0.745, + "2000": 0.749, + "2001": 0.744, + "2002": 0.737, + "2003": 0.726, + "2004": 0.721, + "2005": 0.716, + "2006": 0.718, + "2007": 0.724, + "2008": 0.729, + "2009": 0.735, + "2010": 0.741, + "2011": 0.744, + "2012": 0.752, + "2013": 0.757, + "2014": 0.762, + "2015": 0.769, + "2016": 0.778, + "2017": 0.786, + "2018": 0.794, + "2019": 0.801, + "2020": 0.8, + "2021": 0.797 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr120", + "Region": "Qena", + "1990": 0.488, + "1991": 0.493, + "1992": 0.499, + "1993": 0.504, + "1994": 0.509, + "1995": 0.516, + "1996": 0.527, + "1997": 0.537, + "1998": 0.546, + "1999": 0.555, + "2000": 0.564, + "2001": 0.575, + "2002": 0.584, + "2003": 0.589, + "2004": 0.598, + "2005": 0.608, + "2006": 0.615, + "2007": 0.625, + "2008": 0.634, + "2009": 0.641, + "2010": 0.649, + "2011": 0.654, + "2012": 0.664, + "2013": 0.671, + "2014": 0.678, + "2015": 0.684, + "2016": 0.692, + "2017": 0.699, + "2018": 0.706, + "2019": 0.712, + "2020": 0.711, + "2021": 0.708 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr107", + "Region": "Sharkia", + "1990": 0.571, + "1991": 0.578, + "1992": 0.584, + "1993": 0.59, + "1994": 0.597, + "1995": 0.604, + "1996": 0.609, + "1997": 0.611, + "1998": 0.612, + "1999": 0.613, + "2000": 0.614, + "2001": 0.623, + "2002": 0.629, + "2003": 0.632, + "2004": 0.639, + "2005": 0.647, + "2006": 0.649, + "2007": 0.653, + "2008": 0.657, + "2009": 0.664, + "2010": 0.671, + "2011": 0.676, + "2012": 0.686, + "2013": 0.692, + "2014": 0.698, + "2015": 0.705, + "2016": 0.712, + "2017": 0.72, + "2018": 0.727, + "2019": 0.733, + "2020": 0.733, + "2021": 0.73 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr119", + "Region": "Souhag", + "1990": 0.504, + "1991": 0.51, + "1992": 0.516, + "1993": 0.521, + "1994": 0.527, + "1995": 0.534, + "1996": 0.541, + "1997": 0.547, + "1998": 0.553, + "1999": 0.558, + "2000": 0.563, + "2001": 0.567, + "2002": 0.568, + "2003": 0.567, + "2004": 0.569, + "2005": 0.572, + "2006": 0.586, + "2007": 0.601, + "2008": 0.616, + "2009": 0.622, + "2010": 0.629, + "2011": 0.634, + "2012": 0.644, + "2013": 0.65, + "2014": 0.656, + "2015": 0.662, + "2016": 0.669, + "2017": 0.676, + "2018": 0.683, + "2019": 0.689, + "2020": 0.688, + "2021": 0.685 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr104", + "Region": "Suez", + "1990": 0.657, + "1991": 0.665, + "1992": 0.672, + "1993": 0.679, + "1994": 0.687, + "1995": 0.696, + "1996": 0.7, + "1997": 0.702, + "1998": 0.703, + "1999": 0.704, + "2000": 0.705, + "2001": 0.706, + "2002": 0.705, + "2003": 0.701, + "2004": 0.701, + "2005": 0.701, + "2006": 0.703, + "2007": 0.707, + "2008": 0.711, + "2009": 0.717, + "2010": 0.724, + "2011": 0.729, + "2012": 0.738, + "2013": 0.744, + "2014": 0.749, + "2015": 0.756, + "2016": 0.764, + "2017": 0.773, + "2018": 0.781, + "2019": 0.787, + "2020": 0.787, + "2021": 0.783 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "National", + "GDLCODE": "SLVt", + "Region": "Total", + "1990": 0.525, + "1991": 0.536, + "1992": 0.548, + "1993": 0.558, + "1994": 0.568, + "1995": 0.578, + "1996": 0.587, + "1997": 0.597, + "1998": 0.605, + "1999": 0.609, + "2000": 0.617, + "2001": 0.619, + "2002": 0.626, + "2003": 0.631, + "2004": 0.636, + "2005": 0.641, + "2006": 0.646, + "2007": 0.651, + "2008": 0.653, + "2009": 0.653, + "2010": 0.659, + "2011": 0.661, + "2012": 0.664, + "2013": 0.667, + "2014": 0.666, + "2015": 0.668, + "2016": 0.671, + "2017": 0.674, + "2018": 0.68, + "2019": 0.683, + "2020": 0.672, + "2021": 0.675 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr102", + "Region": "Central I", + "1990": 0.562, + "1991": 0.574, + "1992": 0.587, + "1993": 0.597, + "1994": 0.608, + "1995": 0.618, + "1996": 0.627, + "1997": 0.638, + "1998": 0.647, + "1999": 0.652, + "2000": 0.659, + "2001": 0.662, + "2002": 0.67, + "2003": 0.675, + "2004": 0.68, + "2005": 0.686, + "2006": 0.691, + "2007": 0.696, + "2008": 0.698, + "2009": 0.697, + "2010": 0.702, + "2011": 0.702, + "2012": 0.705, + "2013": 0.705, + "2014": 0.702, + "2015": 0.705, + "2016": 0.708, + "2017": 0.711, + "2018": 0.717, + "2019": 0.72, + "2020": 0.709, + "2021": 0.712 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr103", + "Region": "Central II", + "1990": 0.493, + "1991": 0.504, + "1992": 0.515, + "1993": 0.525, + "1994": 0.534, + "1995": 0.544, + "1996": 0.552, + "1997": 0.561, + "1998": 0.569, + "1999": 0.572, + "2000": 0.579, + "2001": 0.581, + "2002": 0.588, + "2003": 0.592, + "2004": 0.597, + "2005": 0.602, + "2006": 0.607, + "2007": 0.612, + "2008": 0.616, + "2009": 0.618, + "2010": 0.627, + "2011": 0.631, + "2012": 0.637, + "2013": 0.638, + "2014": 0.635, + "2015": 0.637, + "2016": 0.64, + "2017": 0.642, + "2018": 0.648, + "2019": 0.65, + "2020": 0.639, + "2021": 0.643 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr101", + "Region": "Occidental", + "1990": 0.493, + "1991": 0.504, + "1992": 0.515, + "1993": 0.524, + "1994": 0.534, + "1995": 0.543, + "1996": 0.551, + "1997": 0.561, + "1998": 0.569, + "1999": 0.572, + "2000": 0.579, + "2001": 0.581, + "2002": 0.588, + "2003": 0.592, + "2004": 0.597, + "2005": 0.602, + "2006": 0.607, + "2007": 0.612, + "2008": 0.614, + "2009": 0.615, + "2010": 0.622, + "2011": 0.625, + "2012": 0.629, + "2013": 0.634, + "2014": 0.637, + "2015": 0.639, + "2016": 0.642, + "2017": 0.645, + "2018": 0.65, + "2019": 0.653, + "2020": 0.642, + "2021": 0.645 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr104", + "Region": "Oriental", + "1990": 0.501, + "1991": 0.512, + "1992": 0.523, + "1993": 0.533, + "1994": 0.542, + "1995": 0.552, + "1996": 0.56, + "1997": 0.569, + "1998": 0.578, + "1999": 0.581, + "2000": 0.588, + "2001": 0.59, + "2002": 0.597, + "2003": 0.601, + "2004": 0.606, + "2005": 0.612, + "2006": 0.616, + "2007": 0.621, + "2008": 0.621, + "2009": 0.62, + "2010": 0.624, + "2011": 0.625, + "2012": 0.627, + "2013": 0.628, + "2014": 0.626, + "2015": 0.628, + "2016": 0.631, + "2017": 0.633, + "2018": 0.638, + "2019": 0.641, + "2020": 0.63, + "2021": 0.633 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "National", + "GDLCODE": "GNQt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.512, + "2001": 0.522, + "2002": 0.534, + "2003": 0.537, + "2004": 0.545, + "2005": 0.556, + "2006": 0.569, + "2007": 0.578, + "2008": 0.582, + "2009": 0.586, + "2010": 0.579, + "2011": 0.585, + "2012": 0.592, + "2013": 0.594, + "2014": 0.598, + "2015": 0.603, + "2016": 0.603, + "2017": 0.601, + "2018": 0.601, + "2019": 0.605, + "2020": 0.599, + "2021": 0.596 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr101", + "Region": "Annobon, Bioko", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.619, + "2001": 0.63, + "2002": 0.644, + "2003": 0.647, + "2004": 0.657, + "2005": 0.669, + "2006": 0.685, + "2007": 0.695, + "2008": 0.7, + "2009": 0.705, + "2010": 0.697, + "2011": 0.704, + "2012": 0.712, + "2013": 0.715, + "2014": 0.719, + "2015": 0.726, + "2016": 0.726, + "2017": 0.724, + "2018": 0.724, + "2019": 0.73, + "2020": 0.722, + "2021": 0.719 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr102", + "Region": "Centro Sur", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.438, + "2001": 0.446, + "2002": 0.457, + "2003": 0.459, + "2004": 0.466, + "2005": 0.476, + "2006": 0.488, + "2007": 0.495, + "2008": 0.499, + "2009": 0.502, + "2010": 0.496, + "2011": 0.501, + "2012": 0.507, + "2013": 0.509, + "2014": 0.512, + "2015": 0.516, + "2016": 0.516, + "2017": 0.514, + "2018": 0.514, + "2019": 0.517, + "2020": 0.512, + "2021": 0.509 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr103", + "Region": "Kie Ntem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.458, + "2001": 0.467, + "2002": 0.478, + "2003": 0.481, + "2004": 0.488, + "2005": 0.498, + "2006": 0.51, + "2007": 0.518, + "2008": 0.522, + "2009": 0.526, + "2010": 0.519, + "2011": 0.524, + "2012": 0.531, + "2013": 0.533, + "2014": 0.536, + "2015": 0.541, + "2016": 0.541, + "2017": 0.538, + "2018": 0.538, + "2019": 0.542, + "2020": 0.536, + "2021": 0.533 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr104", + "Region": "Litoral", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.546, + "2001": 0.556, + "2002": 0.569, + "2003": 0.572, + "2004": 0.58, + "2005": 0.592, + "2006": 0.606, + "2007": 0.615, + "2008": 0.619, + "2009": 0.623, + "2010": 0.616, + "2011": 0.622, + "2012": 0.629, + "2013": 0.632, + "2014": 0.635, + "2015": 0.641, + "2016": 0.642, + "2017": 0.639, + "2018": 0.639, + "2019": 0.644, + "2020": 0.637, + "2021": 0.634 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr105", + "Region": "Wele Nzas", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.42, + "2001": 0.428, + "2002": 0.438, + "2003": 0.441, + "2004": 0.447, + "2005": 0.457, + "2006": 0.468, + "2007": 0.475, + "2008": 0.479, + "2009": 0.482, + "2010": 0.476, + "2011": 0.481, + "2012": 0.487, + "2013": 0.489, + "2014": 0.491, + "2015": 0.496, + "2016": 0.496, + "2017": 0.494, + "2018": 0.494, + "2019": 0.497, + "2020": 0.492, + "2021": 0.489 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "National", + "GDLCODE": "ERIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.449, + "2006": 0.453, + "2007": 0.457, + "2008": 0.448, + "2009": 0.457, + "2010": 0.463, + "2011": 0.481, + "2012": 0.486, + "2013": 0.483, + "2014": 0.502, + "2015": 0.483, + "2016": 0.488, + "2017": 0.484, + "2018": 0.493, + "2019": 0.495, + "2020": 0.494, + "2021": 0.492 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr104", + "Region": "Anseba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.417, + "2006": 0.42, + "2007": 0.423, + "2008": 0.412, + "2009": 0.421, + "2010": 0.426, + "2011": 0.443, + "2012": 0.448, + "2013": 0.445, + "2014": 0.464, + "2015": 0.443, + "2016": 0.448, + "2017": 0.443, + "2018": 0.452, + "2019": 0.454, + "2020": 0.452, + "2021": 0.451 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr106", + "Region": "Debub (Southern)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.431, + "2006": 0.435, + "2007": 0.438, + "2008": 0.428, + "2009": 0.437, + "2010": 0.443, + "2011": 0.46, + "2012": 0.465, + "2013": 0.462, + "2014": 0.481, + "2015": 0.461, + "2016": 0.466, + "2017": 0.461, + "2018": 0.47, + "2019": 0.473, + "2020": 0.471, + "2021": 0.47 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr101", + "Region": "Debubawi Keyih Bahri (Southern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.443, + "2006": 0.448, + "2007": 0.453, + "2008": 0.445, + "2009": 0.455, + "2010": 0.461, + "2011": 0.477, + "2012": 0.482, + "2013": 0.479, + "2014": 0.498, + "2015": 0.481, + "2016": 0.487, + "2017": 0.483, + "2018": 0.492, + "2019": 0.494, + "2020": 0.492, + "2021": 0.491 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr105", + "Region": "Gash Barka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.343, + "2006": 0.345, + "2007": 0.347, + "2008": 0.338, + "2009": 0.345, + "2010": 0.35, + "2011": 0.364, + "2012": 0.368, + "2013": 0.365, + "2014": 0.382, + "2015": 0.364, + "2016": 0.368, + "2017": 0.364, + "2018": 0.371, + "2019": 0.373, + "2020": 0.372, + "2021": 0.371 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr102", + "Region": "Maekel (Central including Asmara)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.61, + "2006": 0.618, + "2007": 0.624, + "2008": 0.615, + "2009": 0.627, + "2010": 0.635, + "2011": 0.656, + "2012": 0.662, + "2013": 0.659, + "2014": 0.683, + "2015": 0.662, + "2016": 0.669, + "2017": 0.664, + "2018": 0.675, + "2019": 0.678, + "2020": 0.676, + "2021": 0.674 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr103", + "Region": "Semenawi Keyih Bahri (Northern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.369, + "2006": 0.372, + "2007": 0.375, + "2008": 0.365, + "2009": 0.373, + "2010": 0.378, + "2011": 0.393, + "2012": 0.398, + "2013": 0.395, + "2014": 0.412, + "2015": 0.394, + "2016": 0.399, + "2017": 0.394, + "2018": 0.402, + "2019": 0.404, + "2020": 0.402, + "2021": 0.401 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "National", + "GDLCODE": "ESTt", + "Region": "Total", + "1990": 0.732, + "1991": 0.729, + "1992": 0.719, + "1993": 0.71, + "1994": 0.712, + "1995": 0.725, + "1996": 0.742, + "1997": 0.757, + "1998": 0.764, + "1999": 0.773, + "2000": 0.787, + "2001": 0.797, + "2002": 0.807, + "2003": 0.816, + "2004": 0.826, + "2005": 0.839, + "2006": 0.847, + "2007": 0.853, + "2008": 0.856, + "2009": 0.856, + "2010": 0.861, + "2011": 0.871, + "2012": 0.874, + "2013": 0.88, + "2014": 0.879, + "2015": 0.882, + "2016": 0.885, + "2017": 0.887, + "2018": 0.891, + "2019": 0.896, + "2020": 0.892, + "2021": 0.89 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr103", + "Region": "Kesk-Eesti", + "1990": 0.693, + "1991": 0.69, + "1992": 0.681, + "1993": 0.672, + "1994": 0.673, + "1995": 0.686, + "1996": 0.702, + "1997": 0.715, + "1998": 0.721, + "1999": 0.728, + "2000": 0.738, + "2001": 0.751, + "2002": 0.765, + "2003": 0.77, + "2004": 0.776, + "2005": 0.786, + "2006": 0.794, + "2007": 0.797, + "2008": 0.8, + "2009": 0.8, + "2010": 0.813, + "2011": 0.817, + "2012": 0.821, + "2013": 0.821, + "2014": 0.818, + "2015": 0.821, + "2016": 0.824, + "2017": 0.826, + "2018": 0.83, + "2019": 0.834, + "2020": 0.831, + "2021": 0.829 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr104", + "Region": "Kirde-Eesti", + "1990": 0.699, + "1991": 0.695, + "1992": 0.686, + "1993": 0.677, + "1994": 0.678, + "1995": 0.692, + "1996": 0.707, + "1997": 0.719, + "1998": 0.752, + "1999": 0.762, + "2000": 0.778, + "2001": 0.787, + "2002": 0.8, + "2003": 0.805, + "2004": 0.809, + "2005": 0.815, + "2006": 0.824, + "2007": 0.834, + "2008": 0.839, + "2009": 0.826, + "2010": 0.839, + "2011": 0.844, + "2012": 0.843, + "2013": 0.853, + "2014": 0.846, + "2015": 0.844, + "2016": 0.843, + "2017": 0.845, + "2018": 0.849, + "2019": 0.853, + "2020": 0.85, + "2021": 0.848 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr102", + "Region": "Laane-Eesti", + "1990": 0.705, + "1991": 0.701, + "1992": 0.692, + "1993": 0.683, + "1994": 0.684, + "1995": 0.697, + "1996": 0.714, + "1997": 0.728, + "1998": 0.735, + "1999": 0.74, + "2000": 0.754, + "2001": 0.767, + "2002": 0.778, + "2003": 0.786, + "2004": 0.792, + "2005": 0.801, + "2006": 0.803, + "2007": 0.816, + "2008": 0.817, + "2009": 0.81, + "2010": 0.821, + "2011": 0.828, + "2012": 0.826, + "2013": 0.827, + "2014": 0.831, + "2015": 0.841, + "2016": 0.841, + "2017": 0.844, + "2018": 0.848, + "2019": 0.852, + "2020": 0.849, + "2021": 0.847 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr105", + "Region": "Louna-Eesti", + "1990": 0.71, + "1991": 0.707, + "1992": 0.697, + "1993": 0.688, + "1994": 0.69, + "1995": 0.703, + "1996": 0.72, + "1997": 0.733, + "1998": 0.74, + "1999": 0.748, + "2000": 0.758, + "2001": 0.766, + "2002": 0.774, + "2003": 0.789, + "2004": 0.8, + "2005": 0.81, + "2006": 0.82, + "2007": 0.826, + "2008": 0.831, + "2009": 0.83, + "2010": 0.833, + "2011": 0.843, + "2012": 0.846, + "2013": 0.851, + "2014": 0.849, + "2015": 0.854, + "2016": 0.859, + "2017": 0.861, + "2018": 0.865, + "2019": 0.87, + "2020": 0.866, + "2021": 0.864 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr101", + "Region": "Pohja-Eesti", + "1990": 0.77, + "1991": 0.766, + "1992": 0.757, + "1993": 0.747, + "1994": 0.749, + "1995": 0.763, + "1996": 0.78, + "1997": 0.797, + "1998": 0.805, + "1999": 0.817, + "2000": 0.833, + "2001": 0.842, + "2002": 0.851, + "2003": 0.859, + "2004": 0.869, + "2005": 0.883, + "2006": 0.891, + "2007": 0.897, + "2008": 0.9, + "2009": 0.901, + "2010": 0.904, + "2011": 0.914, + "2012": 0.919, + "2013": 0.925, + "2014": 0.922, + "2015": 0.923, + "2016": 0.926, + "2017": 0.929, + "2018": 0.933, + "2019": 0.937, + "2020": 0.934, + "2021": 0.932 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "National", + "GDLCODE": "SWZt", + "Region": "Total", + "1990": 0.545, + "1991": 0.543, + "1992": 0.54, + "1993": 0.532, + "1994": 0.523, + "1995": 0.518, + "1996": 0.509, + "1997": 0.5, + "1998": 0.49, + "1999": 0.482, + "2000": 0.471, + "2001": 0.463, + "2002": 0.451, + "2003": 0.446, + "2004": 0.444, + "2005": 0.446, + "2006": 0.462, + "2007": 0.471, + "2008": 0.479, + "2009": 0.486, + "2010": 0.503, + "2011": 0.517, + "2012": 0.531, + "2013": 0.546, + "2014": 0.559, + "2015": 0.575, + "2016": 0.586, + "2017": 0.596, + "2018": 0.607, + "2019": 0.615, + "2020": 0.61, + "2021": 0.597 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr101", + "Region": "Hhohho", + "1990": 0.559, + "1991": 0.557, + "1992": 0.554, + "1993": 0.546, + "1994": 0.537, + "1995": 0.532, + "1996": 0.523, + "1997": 0.513, + "1998": 0.503, + "1999": 0.495, + "2000": 0.483, + "2001": 0.476, + "2002": 0.464, + "2003": 0.46, + "2004": 0.459, + "2005": 0.461, + "2006": 0.478, + "2007": 0.488, + "2008": 0.495, + "2009": 0.502, + "2010": 0.519, + "2011": 0.537, + "2012": 0.555, + "2013": 0.573, + "2014": 0.59, + "2015": 0.606, + "2016": 0.618, + "2017": 0.628, + "2018": 0.639, + "2019": 0.648, + "2020": 0.642, + "2021": 0.629 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr104", + "Region": "Lubombo", + "1990": 0.53, + "1991": 0.528, + "1992": 0.525, + "1993": 0.518, + "1994": 0.509, + "1995": 0.504, + "1996": 0.496, + "1997": 0.487, + "1998": 0.477, + "1999": 0.47, + "2000": 0.459, + "2001": 0.45, + "2002": 0.437, + "2003": 0.431, + "2004": 0.428, + "2005": 0.429, + "2006": 0.442, + "2007": 0.451, + "2008": 0.458, + "2009": 0.465, + "2010": 0.481, + "2011": 0.499, + "2012": 0.516, + "2013": 0.533, + "2014": 0.549, + "2015": 0.564, + "2016": 0.575, + "2017": 0.585, + "2018": 0.596, + "2019": 0.603, + "2020": 0.598, + "2021": 0.585 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr102", + "Region": "Manzini", + "1990": 0.555, + "1991": 0.553, + "1992": 0.549, + "1993": 0.542, + "1994": 0.532, + "1995": 0.527, + "1996": 0.518, + "1997": 0.508, + "1998": 0.497, + "1999": 0.489, + "2000": 0.478, + "2001": 0.471, + "2002": 0.459, + "2003": 0.454, + "2004": 0.453, + "2005": 0.455, + "2006": 0.472, + "2007": 0.481, + "2008": 0.489, + "2009": 0.495, + "2010": 0.512, + "2011": 0.525, + "2012": 0.537, + "2013": 0.549, + "2014": 0.56, + "2015": 0.576, + "2016": 0.588, + "2017": 0.597, + "2018": 0.609, + "2019": 0.617, + "2020": 0.611, + "2021": 0.598 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr103", + "Region": "Shiselweni", + "1990": 0.52, + "1991": 0.519, + "1992": 0.515, + "1993": 0.508, + "1994": 0.499, + "1995": 0.495, + "1996": 0.487, + "1997": 0.478, + "1998": 0.468, + "1999": 0.461, + "2000": 0.45, + "2001": 0.443, + "2002": 0.432, + "2003": 0.427, + "2004": 0.426, + "2005": 0.429, + "2006": 0.444, + "2007": 0.453, + "2008": 0.46, + "2009": 0.466, + "2010": 0.482, + "2011": 0.494, + "2012": 0.505, + "2013": 0.517, + "2014": 0.526, + "2015": 0.542, + "2016": 0.552, + "2017": 0.562, + "2018": 0.573, + "2019": 0.58, + "2020": 0.575, + "2021": 0.562 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "National", + "GDLCODE": "ETHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.287, + "2001": 0.301, + "2002": 0.309, + "2003": 0.313, + "2004": 0.327, + "2005": 0.346, + "2006": 0.363, + "2007": 0.38, + "2008": 0.395, + "2009": 0.402, + "2010": 0.412, + "2011": 0.422, + "2012": 0.43, + "2013": 0.441, + "2014": 0.45, + "2015": 0.46, + "2016": 0.47, + "2017": 0.48, + "2018": 0.489, + "2019": 0.498, + "2020": 0.498, + "2021": 0.498 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr110", + "Region": "Addis", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.51, + "2001": 0.527, + "2002": 0.535, + "2003": 0.541, + "2004": 0.558, + "2005": 0.582, + "2006": 0.595, + "2007": 0.61, + "2008": 0.619, + "2009": 0.621, + "2010": 0.624, + "2011": 0.628, + "2012": 0.641, + "2013": 0.655, + "2014": 0.668, + "2015": 0.683, + "2016": 0.697, + "2017": 0.712, + "2018": 0.727, + "2019": 0.741, + "2020": 0.741, + "2021": 0.741 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr102", + "Region": "Affar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.23, + "2001": 0.238, + "2002": 0.241, + "2003": 0.242, + "2004": 0.25, + "2005": 0.262, + "2006": 0.289, + "2007": 0.316, + "2008": 0.339, + "2009": 0.356, + "2010": 0.373, + "2011": 0.39, + "2012": 0.394, + "2013": 0.4, + "2014": 0.404, + "2015": 0.41, + "2016": 0.415, + "2017": 0.424, + "2018": 0.431, + "2019": 0.439, + "2020": 0.439, + "2021": 0.44 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr103", + "Region": "Amhara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.258, + "2001": 0.273, + "2002": 0.281, + "2003": 0.286, + "2004": 0.299, + "2005": 0.318, + "2006": 0.336, + "2007": 0.354, + "2008": 0.37, + "2009": 0.379, + "2010": 0.39, + "2011": 0.402, + "2012": 0.41, + "2013": 0.421, + "2014": 0.43, + "2015": 0.44, + "2016": 0.45, + "2017": 0.459, + "2018": 0.468, + "2019": 0.476, + "2020": 0.476, + "2021": 0.477 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr106", + "Region": "Ben-Gumz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.29, + "2001": 0.299, + "2002": 0.301, + "2003": 0.301, + "2004": 0.31, + "2005": 0.325, + "2006": 0.341, + "2007": 0.357, + "2008": 0.371, + "2009": 0.378, + "2010": 0.386, + "2011": 0.395, + "2012": 0.407, + "2013": 0.421, + "2014": 0.434, + "2015": 0.447, + "2016": 0.461, + "2017": 0.47, + "2018": 0.479, + "2019": 0.488, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr111", + "Region": "Dire Dawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.404, + "2001": 0.414, + "2002": 0.418, + "2003": 0.419, + "2004": 0.43, + "2005": 0.447, + "2006": 0.465, + "2007": 0.484, + "2008": 0.501, + "2009": 0.51, + "2010": 0.52, + "2011": 0.531, + "2012": 0.534, + "2013": 0.539, + "2014": 0.542, + "2015": 0.547, + "2016": 0.551, + "2017": 0.562, + "2018": 0.574, + "2019": 0.585, + "2020": 0.584, + "2021": 0.585 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr108", + "Region": "Gambela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.349, + "2001": 0.353, + "2002": 0.35, + "2003": 0.344, + "2004": 0.347, + "2005": 0.357, + "2006": 0.378, + "2007": 0.4, + "2008": 0.42, + "2009": 0.433, + "2010": 0.447, + "2011": 0.462, + "2012": 0.477, + "2013": 0.495, + "2014": 0.512, + "2015": 0.529, + "2016": 0.546, + "2017": 0.558, + "2018": 0.57, + "2019": 0.581, + "2020": 0.581, + "2021": 0.581 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr109", + "Region": "Harari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.384, + "2001": 0.402, + "2002": 0.412, + "2003": 0.419, + "2004": 0.437, + "2005": 0.46, + "2006": 0.475, + "2007": 0.492, + "2008": 0.505, + "2009": 0.51, + "2010": 0.518, + "2011": 0.526, + "2012": 0.533, + "2013": 0.542, + "2014": 0.55, + "2015": 0.559, + "2016": 0.568, + "2017": 0.58, + "2018": 0.592, + "2019": 0.603, + "2020": 0.603, + "2021": 0.603 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr104", + "Region": "Oromiya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.28, + "2001": 0.297, + "2002": 0.307, + "2003": 0.313, + "2004": 0.329, + "2005": 0.351, + "2006": 0.364, + "2007": 0.379, + "2008": 0.391, + "2009": 0.396, + "2010": 0.403, + "2011": 0.41, + "2012": 0.418, + "2013": 0.427, + "2014": 0.436, + "2015": 0.445, + "2016": 0.454, + "2017": 0.464, + "2018": 0.473, + "2019": 0.482, + "2020": 0.482, + "2021": 0.482 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr107", + "Region": "SNNP", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.293, + "2001": 0.304, + "2002": 0.308, + "2003": 0.31, + "2004": 0.321, + "2005": 0.337, + "2006": 0.355, + "2007": 0.374, + "2008": 0.392, + "2009": 0.402, + "2010": 0.413, + "2011": 0.425, + "2012": 0.433, + "2013": 0.444, + "2014": 0.453, + "2015": 0.463, + "2016": 0.473, + "2017": 0.483, + "2018": 0.492, + "2019": 0.501, + "2020": 0.501, + "2021": 0.502 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr105", + "Region": "Somali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.217, + "2001": 0.226, + "2002": 0.23, + "2003": 0.232, + "2004": 0.24, + "2005": 0.253, + "2006": 0.285, + "2007": 0.315, + "2008": 0.341, + "2009": 0.36, + "2010": 0.378, + "2011": 0.396, + "2012": 0.399, + "2013": 0.405, + "2014": 0.409, + "2015": 0.415, + "2016": 0.42, + "2017": 0.428, + "2018": 0.436, + "2019": 0.444, + "2020": 0.444, + "2021": 0.444 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr101", + "Region": "Tigray", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.293, + "2001": 0.309, + "2002": 0.318, + "2003": 0.324, + "2004": 0.339, + "2005": 0.36, + "2006": 0.377, + "2007": 0.394, + "2008": 0.41, + "2009": 0.417, + "2010": 0.427, + "2011": 0.437, + "2012": 0.447, + "2013": 0.459, + "2014": 0.47, + "2015": 0.482, + "2016": 0.493, + "2017": 0.503, + "2018": 0.512, + "2019": 0.522, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "National", + "GDLCODE": "FJIt", + "Region": "Total", + "1990": 0.642, + "1991": 0.647, + "1992": 0.651, + "1993": 0.654, + "1994": 0.66, + "1995": 0.666, + "1996": 0.669, + "1997": 0.67, + "1998": 0.672, + "1999": 0.679, + "2000": 0.681, + "2001": 0.686, + "2002": 0.687, + "2003": 0.692, + "2004": 0.704, + "2005": 0.702, + "2006": 0.705, + "2007": 0.706, + "2008": 0.709, + "2009": 0.711, + "2010": 0.714, + "2011": 0.719, + "2012": 0.721, + "2013": 0.726, + "2014": 0.729, + "2015": 0.729, + "2016": 0.735, + "2017": 0.741, + "2018": 0.745, + "2019": 0.746, + "2020": 0.737, + "2021": 0.73 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr108", + "Region": "Ba", + "1990": 0.645, + "1991": 0.649, + "1992": 0.653, + "1993": 0.657, + "1994": 0.663, + "1995": 0.669, + "1996": 0.672, + "1997": 0.673, + "1998": 0.676, + "1999": 0.682, + "2000": 0.683, + "2001": 0.689, + "2002": 0.69, + "2003": 0.695, + "2004": 0.706, + "2005": 0.705, + "2006": 0.708, + "2007": 0.709, + "2008": 0.712, + "2009": 0.715, + "2010": 0.718, + "2011": 0.723, + "2012": 0.725, + "2013": 0.73, + "2014": 0.733, + "2015": 0.734, + "2016": 0.74, + "2017": 0.746, + "2018": 0.75, + "2019": 0.751, + "2020": 0.743, + "2021": 0.736 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr106", + "Region": "Cakaudrove, Bua", + "1990": 0.594, + "1991": 0.598, + "1992": 0.601, + "1993": 0.605, + "1994": 0.61, + "1995": 0.616, + "1996": 0.618, + "1997": 0.619, + "1998": 0.622, + "1999": 0.628, + "2000": 0.63, + "2001": 0.635, + "2002": 0.636, + "2003": 0.641, + "2004": 0.652, + "2005": 0.65, + "2006": 0.652, + "2007": 0.653, + "2008": 0.657, + "2009": 0.66, + "2010": 0.664, + "2011": 0.669, + "2012": 0.672, + "2013": 0.677, + "2014": 0.681, + "2015": 0.682, + "2016": 0.688, + "2017": 0.694, + "2018": 0.699, + "2019": 0.701, + "2020": 0.693, + "2021": 0.687 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr105", + "Region": "Kadavu, Lau, Lomaiviti, Rotuma", + "1990": 0.594, + "1991": 0.598, + "1992": 0.601, + "1993": 0.604, + "1994": 0.609, + "1995": 0.615, + "1996": 0.618, + "1997": 0.619, + "1998": 0.621, + "1999": 0.628, + "2000": 0.629, + "2001": 0.635, + "2002": 0.635, + "2003": 0.641, + "2004": 0.651, + "2005": 0.649, + "2006": 0.652, + "2007": 0.653, + "2008": 0.656, + "2009": 0.659, + "2010": 0.662, + "2011": 0.667, + "2012": 0.669, + "2013": 0.674, + "2014": 0.678, + "2015": 0.679, + "2016": 0.684, + "2017": 0.69, + "2018": 0.695, + "2019": 0.696, + "2020": 0.687, + "2021": 0.681 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr107", + "Region": "Macuata", + "1990": 0.628, + "1991": 0.632, + "1992": 0.636, + "1993": 0.639, + "1994": 0.644, + "1995": 0.65, + "1996": 0.653, + "1997": 0.654, + "1998": 0.657, + "1999": 0.663, + "2000": 0.665, + "2001": 0.67, + "2002": 0.671, + "2003": 0.676, + "2004": 0.687, + "2005": 0.685, + "2006": 0.688, + "2007": 0.69, + "2008": 0.693, + "2009": 0.696, + "2010": 0.699, + "2011": 0.704, + "2012": 0.707, + "2013": 0.712, + "2014": 0.715, + "2015": 0.716, + "2016": 0.722, + "2017": 0.729, + "2018": 0.733, + "2019": 0.735, + "2020": 0.727, + "2021": 0.721 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr109", + "Region": "Nadroga or Navosa", + "1990": 0.622, + "1991": 0.626, + "1992": 0.63, + "1993": 0.633, + "1994": 0.639, + "1995": 0.645, + "1996": 0.648, + "1997": 0.649, + "1998": 0.651, + "1999": 0.658, + "2000": 0.659, + "2001": 0.665, + "2002": 0.666, + "2003": 0.671, + "2004": 0.682, + "2005": 0.68, + "2006": 0.683, + "2007": 0.685, + "2008": 0.686, + "2009": 0.688, + "2010": 0.691, + "2011": 0.694, + "2012": 0.696, + "2013": 0.7, + "2014": 0.702, + "2015": 0.702, + "2016": 0.706, + "2017": 0.711, + "2018": 0.715, + "2019": 0.715, + "2020": 0.706, + "2021": 0.699 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr101", + "Region": "Naitasiri", + "1990": 0.665, + "1991": 0.67, + "1992": 0.674, + "1993": 0.677, + "1994": 0.683, + "1995": 0.689, + "1996": 0.692, + "1997": 0.693, + "1998": 0.696, + "1999": 0.703, + "2000": 0.705, + "2001": 0.71, + "2002": 0.711, + "2003": 0.717, + "2004": 0.728, + "2005": 0.726, + "2006": 0.73, + "2007": 0.731, + "2008": 0.733, + "2009": 0.735, + "2010": 0.737, + "2011": 0.741, + "2012": 0.743, + "2013": 0.747, + "2014": 0.749, + "2015": 0.749, + "2016": 0.753, + "2017": 0.759, + "2018": 0.762, + "2019": 0.763, + "2020": 0.753, + "2021": 0.745 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr110", + "Region": "Ra", + "1990": 0.596, + "1991": 0.6, + "1992": 0.604, + "1993": 0.607, + "1994": 0.612, + "1995": 0.618, + "1996": 0.621, + "1997": 0.621, + "1998": 0.624, + "1999": 0.631, + "2000": 0.632, + "2001": 0.637, + "2002": 0.638, + "2003": 0.643, + "2004": 0.654, + "2005": 0.652, + "2006": 0.655, + "2007": 0.656, + "2008": 0.658, + "2009": 0.661, + "2010": 0.663, + "2011": 0.667, + "2012": 0.67, + "2013": 0.674, + "2014": 0.677, + "2015": 0.677, + "2016": 0.682, + "2017": 0.688, + "2018": 0.692, + "2019": 0.692, + "2020": 0.684, + "2021": 0.677 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr102", + "Region": "Rewa", + "1990": 0.681, + "1991": 0.685, + "1992": 0.689, + "1993": 0.693, + "1994": 0.699, + "1995": 0.705, + "1996": 0.708, + "1997": 0.709, + "1998": 0.712, + "1999": 0.719, + "2000": 0.721, + "2001": 0.726, + "2002": 0.727, + "2003": 0.733, + "2004": 0.745, + "2005": 0.743, + "2006": 0.746, + "2007": 0.747, + "2008": 0.747, + "2009": 0.747, + "2010": 0.748, + "2011": 0.749, + "2012": 0.749, + "2013": 0.751, + "2014": 0.751, + "2015": 0.749, + "2016": 0.751, + "2017": 0.755, + "2018": 0.756, + "2019": 0.754, + "2020": 0.743, + "2021": 0.733 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr103", + "Region": "Serua, Namosi", + "1990": 0.631, + "1991": 0.635, + "1992": 0.64, + "1993": 0.643, + "1994": 0.649, + "1995": 0.655, + "1996": 0.658, + "1997": 0.659, + "1998": 0.661, + "1999": 0.668, + "2000": 0.669, + "2001": 0.675, + "2002": 0.676, + "2003": 0.681, + "2004": 0.692, + "2005": 0.691, + "2006": 0.694, + "2007": 0.695, + "2008": 0.697, + "2009": 0.698, + "2010": 0.7, + "2011": 0.703, + "2012": 0.705, + "2013": 0.708, + "2014": 0.71, + "2015": 0.71, + "2016": 0.714, + "2017": 0.719, + "2018": 0.722, + "2019": 0.722, + "2020": 0.712, + "2021": 0.705 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr104", + "Region": "Tailevu", + "1990": 0.645, + "1991": 0.649, + "1992": 0.653, + "1993": 0.657, + "1994": 0.662, + "1995": 0.669, + "1996": 0.672, + "1997": 0.672, + "1998": 0.675, + "1999": 0.682, + "2000": 0.683, + "2001": 0.689, + "2002": 0.69, + "2003": 0.695, + "2004": 0.707, + "2005": 0.705, + "2006": 0.708, + "2007": 0.709, + "2008": 0.711, + "2009": 0.713, + "2010": 0.715, + "2011": 0.718, + "2012": 0.719, + "2013": 0.723, + "2014": 0.725, + "2015": 0.725, + "2016": 0.729, + "2017": 0.734, + "2018": 0.738, + "2019": 0.738, + "2020": 0.728, + "2021": 0.72 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "National", + "GDLCODE": "FINt", + "Region": "Total", + "1990": 0.814, + "1991": 0.818, + "1992": 0.825, + "1993": 0.829, + "1994": 0.841, + "1995": 0.847, + "1996": 0.854, + "1997": 0.863, + "1998": 0.873, + "1999": 0.881, + "2000": 0.891, + "2001": 0.9, + "2002": 0.904, + "2003": 0.907, + "2004": 0.902, + "2005": 0.905, + "2006": 0.909, + "2007": 0.911, + "2008": 0.912, + "2009": 0.907, + "2010": 0.911, + "2011": 0.915, + "2012": 0.915, + "2013": 0.926, + "2014": 0.927, + "2015": 0.93, + "2016": 0.931, + "2017": 0.934, + "2018": 0.936, + "2019": 0.939, + "2020": 0.938, + "2021": 0.94 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr105", + "Region": "Aland", + "1990": 0.816, + "1991": 0.813, + "1992": 0.817, + "1993": 0.828, + "1994": 0.832, + "1995": 0.838, + "1996": 0.841, + "1997": 0.858, + "1998": 0.875, + "1999": 0.867, + "2000": 0.885, + "2001": 0.905, + "2002": 0.912, + "2003": 0.913, + "2004": 0.898, + "2005": 0.895, + "2006": 0.907, + "2007": 0.908, + "2008": 0.901, + "2009": 0.903, + "2010": 0.909, + "2011": 0.902, + "2012": 0.897, + "2013": 0.931, + "2014": 0.93, + "2015": 0.924, + "2016": 0.916, + "2017": 0.933, + "2018": 0.93, + "2019": 0.931, + "2020": 0.93, + "2021": 0.932 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr103", + "Region": "Etela-Suomi", + "1990": 0.812, + "1991": 0.815, + "1992": 0.822, + "1993": 0.827, + "1994": 0.837, + "1995": 0.842, + "1996": 0.851, + "1997": 0.86, + "1998": 0.87, + "1999": 0.876, + "2000": 0.886, + "2001": 0.894, + "2002": 0.901, + "2003": 0.904, + "2004": 0.897, + "2005": 0.895, + "2006": 0.9, + "2007": 0.901, + "2008": 0.903, + "2009": 0.895, + "2010": 0.898, + "2011": 0.904, + "2012": 0.904, + "2013": 0.914, + "2014": 0.917, + "2015": 0.921, + "2016": 0.921, + "2017": 0.924, + "2018": 0.927, + "2019": 0.929, + "2020": 0.928, + "2021": 0.931 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr102", + "Region": "Helsinki-Uusimaa", + "1990": 0.833, + "1991": 0.837, + "1992": 0.846, + "1993": 0.851, + "1994": 0.863, + "1995": 0.87, + "1996": 0.876, + "1997": 0.886, + "1998": 0.895, + "1999": 0.904, + "2000": 0.913, + "2001": 0.923, + "2002": 0.926, + "2003": 0.931, + "2004": 0.921, + "2005": 0.922, + "2006": 0.927, + "2007": 0.93, + "2008": 0.932, + "2009": 0.928, + "2010": 0.93, + "2011": 0.934, + "2012": 0.932, + "2013": 0.948, + "2014": 0.948, + "2015": 0.951, + "2016": 0.952, + "2017": 0.955, + "2018": 0.957, + "2019": 0.959, + "2020": 0.958, + "2021": 0.96 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr101", + "Region": "Lansi-Suomi", + "1990": 0.813, + "1991": 0.817, + "1992": 0.823, + "1993": 0.826, + "1994": 0.839, + "1995": 0.845, + "1996": 0.852, + "1997": 0.861, + "1998": 0.872, + "1999": 0.878, + "2000": 0.889, + "2001": 0.896, + "2002": 0.898, + "2003": 0.903, + "2004": 0.901, + "2005": 0.902, + "2006": 0.905, + "2007": 0.908, + "2008": 0.909, + "2009": 0.904, + "2010": 0.909, + "2011": 0.911, + "2012": 0.912, + "2013": 0.92, + "2014": 0.92, + "2015": 0.924, + "2016": 0.925, + "2017": 0.927, + "2018": 0.93, + "2019": 0.932, + "2020": 0.931, + "2021": 0.934 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr104", + "Region": "Pohjois-ja Ita-Suomi", + "1990": 0.804, + "1991": 0.808, + "1992": 0.814, + "1993": 0.818, + "1994": 0.829, + "1995": 0.836, + "1996": 0.844, + "1997": 0.852, + "1998": 0.86, + "1999": 0.87, + "2000": 0.88, + "2001": 0.884, + "2002": 0.89, + "2003": 0.894, + "2004": 0.891, + "2005": 0.893, + "2006": 0.896, + "2007": 0.897, + "2008": 0.897, + "2009": 0.893, + "2010": 0.897, + "2011": 0.902, + "2012": 0.902, + "2013": 0.909, + "2014": 0.912, + "2015": 0.914, + "2016": 0.916, + "2017": 0.919, + "2018": 0.921, + "2019": 0.923, + "2020": 0.922, + "2021": 0.925 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "National", + "GDLCODE": "FRAt", + "Region": "Total", + "1990": 0.791, + "1991": 0.799, + "1992": 0.806, + "1993": 0.809, + "1994": 0.823, + "1995": 0.828, + "1996": 0.833, + "1997": 0.838, + "1998": 0.842, + "1999": 0.84, + "2000": 0.844, + "2001": 0.847, + "2002": 0.848, + "2003": 0.851, + "2004": 0.858, + "2005": 0.866, + "2006": 0.87, + "2007": 0.873, + "2008": 0.873, + "2009": 0.872, + "2010": 0.877, + "2011": 0.881, + "2012": 0.882, + "2013": 0.887, + "2014": 0.892, + "2015": 0.892, + "2016": 0.895, + "2017": 0.898, + "2018": 0.901, + "2019": 0.905, + "2020": 0.898, + "2021": 0.903 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr110", + "Region": "Alsace", + "1990": 0.781, + "1991": 0.791, + "1992": 0.798, + "1993": 0.801, + "1994": 0.816, + "1995": 0.821, + "1996": 0.826, + "1997": 0.831, + "1998": 0.836, + "1999": 0.834, + "2000": 0.839, + "2001": 0.842, + "2002": 0.843, + "2003": 0.849, + "2004": 0.856, + "2005": 0.863, + "2006": 0.865, + "2007": 0.868, + "2008": 0.872, + "2009": 0.868, + "2010": 0.873, + "2011": 0.877, + "2012": 0.876, + "2013": 0.879, + "2014": 0.885, + "2015": 0.887, + "2016": 0.893, + "2017": 0.894, + "2018": 0.895, + "2019": 0.901, + "2020": 0.895, + "2021": 0.899 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr115", + "Region": "Aquitaine", + "1990": 0.786, + "1991": 0.794, + "1992": 0.801, + "1993": 0.804, + "1994": 0.818, + "1995": 0.823, + "1996": 0.828, + "1997": 0.831, + "1998": 0.836, + "1999": 0.834, + "2000": 0.84, + "2001": 0.841, + "2002": 0.841, + "2003": 0.846, + "2004": 0.852, + "2005": 0.859, + "2006": 0.863, + "2007": 0.867, + "2008": 0.867, + "2009": 0.867, + "2010": 0.872, + "2011": 0.875, + "2012": 0.874, + "2013": 0.88, + "2014": 0.887, + "2015": 0.888, + "2016": 0.89, + "2017": 0.891, + "2018": 0.898, + "2019": 0.902, + "2020": 0.895, + "2021": 0.9 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr119", + "Region": "Auvergne", + "1990": 0.779, + "1991": 0.787, + "1992": 0.793, + "1993": 0.798, + "1994": 0.81, + "1995": 0.816, + "1996": 0.82, + "1997": 0.826, + "1998": 0.828, + "1999": 0.827, + "2000": 0.832, + "2001": 0.835, + "2002": 0.837, + "2003": 0.841, + "2004": 0.846, + "2005": 0.852, + "2006": 0.857, + "2007": 0.859, + "2008": 0.861, + "2009": 0.859, + "2010": 0.861, + "2011": 0.865, + "2012": 0.866, + "2013": 0.871, + "2014": 0.876, + "2015": 0.874, + "2016": 0.876, + "2017": 0.875, + "2018": 0.881, + "2019": 0.885, + "2020": 0.878, + "2021": 0.883 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr106", + "Region": "Basse-Normandie", + "1990": 0.772, + "1991": 0.78, + "1992": 0.788, + "1993": 0.79, + "1994": 0.805, + "1995": 0.809, + "1996": 0.815, + "1997": 0.817, + "1998": 0.822, + "1999": 0.821, + "2000": 0.826, + "2001": 0.829, + "2002": 0.832, + "2003": 0.831, + "2004": 0.837, + "2005": 0.846, + "2006": 0.851, + "2007": 0.852, + "2008": 0.855, + "2009": 0.852, + "2010": 0.856, + "2011": 0.859, + "2012": 0.858, + "2013": 0.864, + "2014": 0.864, + "2015": 0.867, + "2016": 0.869, + "2017": 0.87, + "2018": 0.874, + "2019": 0.875, + "2020": 0.869, + "2021": 0.873 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr107", + "Region": "Bourgogne", + "1990": 0.776, + "1991": 0.783, + "1992": 0.79, + "1993": 0.791, + "1994": 0.806, + "1995": 0.811, + "1996": 0.815, + "1997": 0.82, + "1998": 0.824, + "1999": 0.82, + "2000": 0.826, + "2001": 0.83, + "2002": 0.831, + "2003": 0.834, + "2004": 0.842, + "2005": 0.845, + "2006": 0.848, + "2007": 0.852, + "2008": 0.852, + "2009": 0.853, + "2010": 0.855, + "2011": 0.857, + "2012": 0.862, + "2013": 0.866, + "2014": 0.869, + "2015": 0.868, + "2016": 0.871, + "2017": 0.874, + "2018": 0.878, + "2019": 0.881, + "2020": 0.874, + "2021": 0.879 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr113", + "Region": "Bretagne", + "1990": 0.782, + "1991": 0.79, + "1992": 0.799, + "1993": 0.801, + "1994": 0.816, + "1995": 0.82, + "1996": 0.825, + "1997": 0.829, + "1998": 0.835, + "1999": 0.832, + "2000": 0.838, + "2001": 0.842, + "2002": 0.843, + "2003": 0.846, + "2004": 0.852, + "2005": 0.864, + "2006": 0.868, + "2007": 0.869, + "2008": 0.867, + "2009": 0.864, + "2010": 0.867, + "2011": 0.872, + "2012": 0.874, + "2013": 0.88, + "2014": 0.885, + "2015": 0.884, + "2016": 0.886, + "2017": 0.89, + "2018": 0.893, + "2019": 0.896, + "2020": 0.889, + "2021": 0.894 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr105", + "Region": "Centre", + "1990": 0.777, + "1991": 0.785, + "1992": 0.792, + "1993": 0.795, + "1994": 0.808, + "1995": 0.812, + "1996": 0.818, + "1997": 0.822, + "1998": 0.826, + "1999": 0.823, + "2000": 0.828, + "2001": 0.829, + "2002": 0.831, + "2003": 0.835, + "2004": 0.843, + "2005": 0.847, + "2006": 0.852, + "2007": 0.854, + "2008": 0.852, + "2009": 0.852, + "2010": 0.856, + "2011": 0.863, + "2012": 0.864, + "2013": 0.866, + "2014": 0.869, + "2015": 0.87, + "2016": 0.873, + "2017": 0.876, + "2018": 0.879, + "2019": 0.881, + "2020": 0.874, + "2021": 0.878 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr102", + "Region": "Champagne-Ardenne", + "1990": 0.775, + "1991": 0.783, + "1992": 0.789, + "1993": 0.792, + "1994": 0.807, + "1995": 0.811, + "1996": 0.816, + "1997": 0.82, + "1998": 0.825, + "1999": 0.821, + "2000": 0.827, + "2001": 0.829, + "2002": 0.83, + "2003": 0.834, + "2004": 0.842, + "2005": 0.849, + "2006": 0.852, + "2007": 0.854, + "2008": 0.852, + "2009": 0.847, + "2010": 0.854, + "2011": 0.859, + "2012": 0.858, + "2013": 0.863, + "2014": 0.864, + "2015": 0.866, + "2016": 0.865, + "2017": 0.87, + "2018": 0.872, + "2019": 0.874, + "2020": 0.867, + "2021": 0.871 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr122", + "Region": "Corse", + "1990": 0.741, + "1991": 0.748, + "1992": 0.751, + "1993": 0.755, + "1994": 0.767, + "1995": 0.774, + "1996": 0.783, + "1997": 0.787, + "1998": 0.791, + "1999": 0.791, + "2000": 0.793, + "2001": 0.804, + "2002": 0.802, + "2003": 0.797, + "2004": 0.806, + "2005": 0.813, + "2006": 0.833, + "2007": 0.827, + "2008": 0.823, + "2009": 0.824, + "2010": 0.832, + "2011": 0.836, + "2012": 0.845, + "2013": 0.846, + "2014": 0.853, + "2015": 0.853, + "2016": 0.864, + "2017": 0.862, + "2018": 0.858, + "2019": 0.861, + "2020": 0.855, + "2021": 0.859 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr111", + "Region": "Franche-Comte", + "1990": 0.777, + "1991": 0.785, + "1992": 0.793, + "1993": 0.795, + "1994": 0.808, + "1995": 0.814, + "1996": 0.818, + "1997": 0.823, + "1998": 0.828, + "1999": 0.824, + "2000": 0.83, + "2001": 0.835, + "2002": 0.836, + "2003": 0.839, + "2004": 0.843, + "2005": 0.848, + "2006": 0.853, + "2007": 0.856, + "2008": 0.857, + "2009": 0.853, + "2010": 0.856, + "2011": 0.859, + "2012": 0.86, + "2013": 0.867, + "2014": 0.871, + "2015": 0.868, + "2016": 0.874, + "2017": 0.876, + "2018": 0.875, + "2019": 0.878, + "2020": 0.871, + "2021": 0.875 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr127", + "Region": "French Guyana", + "1990": 0.726, + "1991": 0.732, + "1992": 0.738, + "1993": 0.741, + "1994": 0.752, + "1995": 0.756, + "1996": 0.76, + "1997": 0.763, + "1998": 0.766, + "1999": 0.764, + "2000": 0.768, + "2001": 0.77, + "2002": 0.769, + "2003": 0.772, + "2004": 0.775, + "2005": 0.781, + "2006": 0.786, + "2007": 0.784, + "2008": 0.784, + "2009": 0.786, + "2010": 0.788, + "2011": 0.789, + "2012": 0.794, + "2013": 0.8, + "2014": 0.795, + "2015": 0.792, + "2016": 0.79, + "2017": 0.787, + "2018": 0.79, + "2019": 0.796, + "2020": 0.79, + "2021": 0.794 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr125", + "Region": "Guadeloupe", + "1990": 0.771, + "1991": 0.778, + "1992": 0.784, + "1993": 0.787, + "1994": 0.798, + "1995": 0.803, + "1996": 0.807, + "1997": 0.81, + "1998": 0.813, + "1999": 0.811, + "2000": 0.815, + "2001": 0.816, + "2002": 0.816, + "2003": 0.819, + "2004": 0.82, + "2005": 0.828, + "2006": 0.83, + "2007": 0.831, + "2008": 0.832, + "2009": 0.83, + "2010": 0.833, + "2011": 0.834, + "2012": 0.835, + "2013": 0.832, + "2014": 0.834, + "2015": 0.838, + "2016": 0.843, + "2017": 0.848, + "2018": 0.855, + "2019": 0.856, + "2020": 0.849, + "2021": 0.854 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr104", + "Region": "Haute-Normandie", + "1990": 0.774, + "1991": 0.782, + "1992": 0.787, + "1993": 0.791, + "1994": 0.806, + "1995": 0.809, + "1996": 0.813, + "1997": 0.818, + "1998": 0.823, + "1999": 0.822, + "2000": 0.826, + "2001": 0.83, + "2002": 0.831, + "2003": 0.833, + "2004": 0.839, + "2005": 0.846, + "2006": 0.847, + "2007": 0.852, + "2008": 0.849, + "2009": 0.846, + "2010": 0.853, + "2011": 0.858, + "2012": 0.861, + "2013": 0.864, + "2014": 0.866, + "2015": 0.869, + "2016": 0.872, + "2017": 0.874, + "2018": 0.878, + "2019": 0.882, + "2020": 0.876, + "2021": 0.88 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr101", + "Region": "Ile de France", + "1990": 0.825, + "1991": 0.832, + "1992": 0.84, + "1993": 0.844, + "1994": 0.858, + "1995": 0.864, + "1996": 0.869, + "1997": 0.876, + "1998": 0.88, + "1999": 0.878, + "2000": 0.883, + "2001": 0.886, + "2002": 0.888, + "2003": 0.889, + "2004": 0.899, + "2005": 0.908, + "2006": 0.911, + "2007": 0.915, + "2008": 0.918, + "2009": 0.916, + "2010": 0.921, + "2011": 0.924, + "2012": 0.927, + "2013": 0.93, + "2014": 0.937, + "2015": 0.938, + "2016": 0.941, + "2017": 0.943, + "2018": 0.947, + "2019": 0.95, + "2020": 0.946, + "2021": 0.949 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr120", + "Region": "Languedoc-Roussillon", + "1990": 0.779, + "1991": 0.786, + "1992": 0.794, + "1993": 0.797, + "1994": 0.81, + "1995": 0.816, + "1996": 0.819, + "1997": 0.824, + "1998": 0.827, + "1999": 0.824, + "2000": 0.829, + "2001": 0.832, + "2002": 0.833, + "2003": 0.841, + "2004": 0.845, + "2005": 0.851, + "2006": 0.855, + "2007": 0.859, + "2008": 0.86, + "2009": 0.857, + "2010": 0.86, + "2011": 0.863, + "2012": 0.864, + "2013": 0.869, + "2014": 0.875, + "2015": 0.876, + "2016": 0.878, + "2017": 0.882, + "2018": 0.882, + "2019": 0.889, + "2020": 0.882, + "2021": 0.886 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr117", + "Region": "Limousin", + "1990": 0.776, + "1991": 0.783, + "1992": 0.791, + "1993": 0.795, + "1994": 0.808, + "1995": 0.812, + "1996": 0.815, + "1997": 0.821, + "1998": 0.824, + "1999": 0.824, + "2000": 0.828, + "2001": 0.83, + "2002": 0.83, + "2003": 0.835, + "2004": 0.843, + "2005": 0.85, + "2006": 0.853, + "2007": 0.854, + "2008": 0.853, + "2009": 0.854, + "2010": 0.853, + "2011": 0.857, + "2012": 0.863, + "2013": 0.865, + "2014": 0.874, + "2015": 0.869, + "2016": 0.873, + "2017": 0.879, + "2018": 0.878, + "2019": 0.876, + "2020": 0.869, + "2021": 0.873 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr109", + "Region": "Lorraine", + "1990": 0.773, + "1991": 0.781, + "1992": 0.787, + "1993": 0.791, + "1994": 0.804, + "1995": 0.809, + "1996": 0.813, + "1997": 0.819, + "1998": 0.822, + "1999": 0.822, + "2000": 0.824, + "2001": 0.829, + "2002": 0.828, + "2003": 0.829, + "2004": 0.835, + "2005": 0.844, + "2006": 0.847, + "2007": 0.85, + "2008": 0.848, + "2009": 0.848, + "2010": 0.851, + "2011": 0.855, + "2012": 0.856, + "2013": 0.862, + "2014": 0.869, + "2015": 0.869, + "2016": 0.872, + "2017": 0.874, + "2018": 0.872, + "2019": 0.876, + "2020": 0.87, + "2021": 0.874 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr126", + "Region": "Martinique", + "1990": 0.775, + "1991": 0.781, + "1992": 0.787, + "1993": 0.79, + "1994": 0.802, + "1995": 0.807, + "1996": 0.81, + "1997": 0.813, + "1998": 0.817, + "1999": 0.814, + "2000": 0.818, + "2001": 0.819, + "2002": 0.823, + "2003": 0.825, + "2004": 0.831, + "2005": 0.839, + "2006": 0.841, + "2007": 0.84, + "2008": 0.842, + "2009": 0.843, + "2010": 0.845, + "2011": 0.851, + "2012": 0.852, + "2013": 0.852, + "2014": 0.85, + "2015": 0.859, + "2016": 0.858, + "2017": 0.861, + "2018": 0.855, + "2019": 0.851, + "2020": 0.845, + "2021": 0.849 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr129", + "Region": "Mayotte", + "1990": 0.691, + "1991": 0.697, + "1992": 0.702, + "1993": 0.705, + "1994": 0.715, + "1995": 0.72, + "1996": 0.724, + "1997": 0.727, + "1998": 0.731, + "1999": 0.73, + "2000": 0.734, + "2001": 0.736, + "2002": 0.736, + "2003": 0.739, + "2004": 0.74, + "2005": 0.75, + "2006": 0.755, + "2007": 0.756, + "2008": 0.762, + "2009": 0.759, + "2010": 0.763, + "2011": 0.764, + "2012": 0.766, + "2013": 0.77, + "2014": 0.774, + "2015": 0.772, + "2016": 0.775, + "2017": 0.776, + "2018": 0.775, + "2019": 0.783, + "2020": 0.777, + "2021": 0.781 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr116", + "Region": "Midi-Pyrenees", + "1990": 0.794, + "1991": 0.804, + "1992": 0.81, + "1993": 0.814, + "1994": 0.827, + "1995": 0.833, + "1996": 0.838, + "1997": 0.841, + "1998": 0.844, + "1999": 0.843, + "2000": 0.848, + "2001": 0.853, + "2002": 0.852, + "2003": 0.854, + "2004": 0.862, + "2005": 0.87, + "2006": 0.878, + "2007": 0.877, + "2008": 0.878, + "2009": 0.88, + "2010": 0.882, + "2011": 0.887, + "2012": 0.888, + "2013": 0.896, + "2014": 0.899, + "2015": 0.899, + "2016": 0.9, + "2017": 0.902, + "2018": 0.908, + "2019": 0.912, + "2020": 0.905, + "2021": 0.909 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr108", + "Region": "Nord", + "1990": 0.762, + "1991": 0.769, + "1992": 0.776, + "1993": 0.779, + "1994": 0.793, + "1995": 0.798, + "1996": 0.802, + "1997": 0.807, + "1998": 0.81, + "1999": 0.809, + "2000": 0.813, + "2001": 0.818, + "2002": 0.818, + "2003": 0.824, + "2004": 0.831, + "2005": 0.837, + "2006": 0.841, + "2007": 0.845, + "2008": 0.845, + "2009": 0.845, + "2010": 0.85, + "2011": 0.853, + "2012": 0.853, + "2013": 0.859, + "2014": 0.864, + "2015": 0.865, + "2016": 0.868, + "2017": 0.872, + "2018": 0.877, + "2019": 0.882, + "2020": 0.876, + "2021": 0.88 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr112", + "Region": "Pays de la Loire", + "1990": 0.785, + "1991": 0.794, + "1992": 0.801, + "1993": 0.805, + "1994": 0.818, + "1995": 0.822, + "1996": 0.827, + "1997": 0.831, + "1998": 0.836, + "1999": 0.834, + "2000": 0.838, + "2001": 0.842, + "2002": 0.843, + "2003": 0.846, + "2004": 0.853, + "2005": 0.86, + "2006": 0.864, + "2007": 0.866, + "2008": 0.866, + "2009": 0.867, + "2010": 0.871, + "2011": 0.876, + "2012": 0.875, + "2013": 0.88, + "2014": 0.885, + "2015": 0.885, + "2016": 0.888, + "2017": 0.89, + "2018": 0.894, + "2019": 0.897, + "2020": 0.891, + "2021": 0.895 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr103", + "Region": "Picardie", + "1990": 0.757, + "1991": 0.764, + "1992": 0.772, + "1993": 0.775, + "1994": 0.789, + "1995": 0.793, + "1996": 0.798, + "1997": 0.801, + "1998": 0.807, + "1999": 0.804, + "2000": 0.809, + "2001": 0.81, + "2002": 0.812, + "2003": 0.815, + "2004": 0.822, + "2005": 0.831, + "2006": 0.833, + "2007": 0.833, + "2008": 0.834, + "2009": 0.833, + "2010": 0.836, + "2011": 0.838, + "2012": 0.838, + "2013": 0.844, + "2014": 0.847, + "2015": 0.85, + "2016": 0.851, + "2017": 0.854, + "2018": 0.859, + "2019": 0.86, + "2020": 0.854, + "2021": 0.858 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr114", + "Region": "Poitou-Charentes", + "1990": 0.782, + "1991": 0.789, + "1992": 0.795, + "1993": 0.8, + "1994": 0.812, + "1995": 0.817, + "1996": 0.821, + "1997": 0.826, + "1998": 0.829, + "1999": 0.827, + "2000": 0.833, + "2001": 0.835, + "2002": 0.836, + "2003": 0.838, + "2004": 0.844, + "2005": 0.851, + "2006": 0.855, + "2007": 0.856, + "2008": 0.856, + "2009": 0.853, + "2010": 0.859, + "2011": 0.862, + "2012": 0.865, + "2013": 0.866, + "2014": 0.874, + "2015": 0.874, + "2016": 0.875, + "2017": 0.88, + "2018": 0.883, + "2019": 0.885, + "2020": 0.878, + "2021": 0.883 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr121", + "Region": "Provence-Alpes-Cote dAzur", + "1990": 0.788, + "1991": 0.795, + "1992": 0.802, + "1993": 0.806, + "1994": 0.819, + "1995": 0.825, + "1996": 0.83, + "1997": 0.835, + "1998": 0.839, + "1999": 0.837, + "2000": 0.842, + "2001": 0.845, + "2002": 0.845, + "2003": 0.85, + "2004": 0.857, + "2005": 0.864, + "2006": 0.867, + "2007": 0.869, + "2008": 0.87, + "2009": 0.869, + "2010": 0.875, + "2011": 0.88, + "2012": 0.882, + "2013": 0.886, + "2014": 0.891, + "2015": 0.891, + "2016": 0.894, + "2017": 0.897, + "2018": 0.898, + "2019": 0.901, + "2020": 0.894, + "2021": 0.899 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr128", + "Region": "Reunion", + "1990": 0.745, + "1991": 0.752, + "1992": 0.757, + "1993": 0.76, + "1994": 0.771, + "1995": 0.776, + "1996": 0.78, + "1997": 0.783, + "1998": 0.786, + "1999": 0.784, + "2000": 0.792, + "2001": 0.796, + "2002": 0.794, + "2003": 0.798, + "2004": 0.805, + "2005": 0.806, + "2006": 0.81, + "2007": 0.818, + "2008": 0.818, + "2009": 0.817, + "2010": 0.819, + "2011": 0.825, + "2012": 0.829, + "2013": 0.833, + "2014": 0.835, + "2015": 0.836, + "2016": 0.838, + "2017": 0.843, + "2018": 0.843, + "2019": 0.846, + "2020": 0.84, + "2021": 0.844 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr118", + "Region": "Rhone-Alpes", + "1990": 0.797, + "1991": 0.805, + "1992": 0.813, + "1993": 0.816, + "1994": 0.83, + "1995": 0.836, + "1996": 0.84, + "1997": 0.846, + "1998": 0.849, + "1999": 0.848, + "2000": 0.853, + "2001": 0.856, + "2002": 0.857, + "2003": 0.859, + "2004": 0.865, + "2005": 0.871, + "2006": 0.878, + "2007": 0.881, + "2008": 0.881, + "2009": 0.879, + "2010": 0.883, + "2011": 0.888, + "2012": 0.89, + "2013": 0.895, + "2014": 0.901, + "2015": 0.902, + "2016": 0.906, + "2017": 0.909, + "2018": 0.913, + "2019": 0.916, + "2020": 0.909, + "2021": 0.914 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "National", + "GDLCODE": "GABt", + "Region": "Total", + "1990": 0.61, + "1991": 0.615, + "1992": 0.615, + "1993": 0.619, + "1994": 0.623, + "1995": 0.627, + "1996": 0.63, + "1997": 0.634, + "1998": 0.64, + "1999": 0.636, + "2000": 0.635, + "2001": 0.641, + "2002": 0.644, + "2003": 0.648, + "2004": 0.647, + "2005": 0.652, + "2006": 0.651, + "2007": 0.655, + "2008": 0.655, + "2009": 0.66, + "2010": 0.664, + "2011": 0.668, + "2012": 0.679, + "2013": 0.685, + "2014": 0.694, + "2015": 0.699, + "2016": 0.702, + "2017": 0.706, + "2018": 0.706, + "2019": 0.709, + "2020": 0.71, + "2021": 0.706 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr101", + "Region": "Estuaire", + "1990": 0.569, + "1991": 0.573, + "1992": 0.573, + "1993": 0.577, + "1994": 0.58, + "1995": 0.583, + "1996": 0.586, + "1997": 0.59, + "1998": 0.595, + "1999": 0.591, + "2000": 0.59, + "2001": 0.598, + "2002": 0.604, + "2003": 0.611, + "2004": 0.613, + "2005": 0.62, + "2006": 0.622, + "2007": 0.628, + "2008": 0.631, + "2009": 0.639, + "2010": 0.646, + "2011": 0.652, + "2012": 0.665, + "2013": 0.671, + "2014": 0.68, + "2015": 0.685, + "2016": 0.688, + "2017": 0.692, + "2018": 0.692, + "2019": 0.695, + "2020": 0.695, + "2021": 0.692 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr102", + "Region": "Haut Ogooue", + "1990": 0.62, + "1991": 0.625, + "1992": 0.625, + "1993": 0.629, + "1994": 0.633, + "1995": 0.636, + "1996": 0.639, + "1997": 0.643, + "1998": 0.648, + "1999": 0.644, + "2000": 0.643, + "2001": 0.646, + "2002": 0.648, + "2003": 0.649, + "2004": 0.647, + "2005": 0.65, + "2006": 0.647, + "2007": 0.648, + "2008": 0.646, + "2009": 0.649, + "2010": 0.651, + "2011": 0.652, + "2012": 0.66, + "2013": 0.666, + "2014": 0.675, + "2015": 0.679, + "2016": 0.683, + "2017": 0.686, + "2018": 0.687, + "2019": 0.689, + "2020": 0.69, + "2021": 0.686 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr110", + "Region": "Libreville-Port Gentil", + "1990": 0.646, + "1991": 0.652, + "1992": 0.653, + "1993": 0.658, + "1994": 0.663, + "1995": 0.667, + "1996": 0.67, + "1997": 0.675, + "1998": 0.681, + "1999": 0.678, + "2000": 0.678, + "2001": 0.683, + "2002": 0.686, + "2003": 0.688, + "2004": 0.687, + "2005": 0.692, + "2006": 0.69, + "2007": 0.693, + "2008": 0.693, + "2009": 0.697, + "2010": 0.7, + "2011": 0.704, + "2012": 0.714, + "2013": 0.721, + "2014": 0.73, + "2015": 0.736, + "2016": 0.74, + "2017": 0.743, + "2018": 0.744, + "2019": 0.747, + "2020": 0.748, + "2021": 0.744 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr103", + "Region": "Moyen Ogooue", + "1990": 0.591, + "1991": 0.596, + "1992": 0.596, + "1993": 0.6, + "1994": 0.604, + "1995": 0.607, + "1996": 0.609, + "1997": 0.613, + "1998": 0.618, + "1999": 0.615, + "2000": 0.613, + "2001": 0.617, + "2002": 0.619, + "2003": 0.621, + "2004": 0.619, + "2005": 0.622, + "2006": 0.619, + "2007": 0.621, + "2008": 0.62, + "2009": 0.623, + "2010": 0.626, + "2011": 0.628, + "2012": 0.636, + "2013": 0.641, + "2014": 0.649, + "2015": 0.653, + "2016": 0.657, + "2017": 0.66, + "2018": 0.66, + "2019": 0.662, + "2020": 0.663, + "2021": 0.66 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr104", + "Region": "Ngounie", + "1990": 0.55, + "1991": 0.554, + "1992": 0.553, + "1993": 0.556, + "1994": 0.559, + "1995": 0.561, + "1996": 0.563, + "1997": 0.566, + "1998": 0.571, + "1999": 0.566, + "2000": 0.564, + "2001": 0.569, + "2002": 0.573, + "2003": 0.575, + "2004": 0.575, + "2005": 0.579, + "2006": 0.578, + "2007": 0.581, + "2008": 0.581, + "2009": 0.585, + "2010": 0.589, + "2011": 0.592, + "2012": 0.6, + "2013": 0.605, + "2014": 0.613, + "2015": 0.617, + "2016": 0.62, + "2017": 0.623, + "2018": 0.623, + "2019": 0.625, + "2020": 0.626, + "2021": 0.622 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr105", + "Region": "Nyanga", + "1990": 0.548, + "1991": 0.552, + "1992": 0.551, + "1993": 0.554, + "1994": 0.557, + "1995": 0.56, + "1996": 0.562, + "1997": 0.565, + "1998": 0.569, + "1999": 0.566, + "2000": 0.563, + "2001": 0.57, + "2002": 0.575, + "2003": 0.579, + "2004": 0.58, + "2005": 0.586, + "2006": 0.586, + "2007": 0.59, + "2008": 0.592, + "2009": 0.598, + "2010": 0.603, + "2011": 0.607, + "2012": 0.618, + "2013": 0.623, + "2014": 0.631, + "2015": 0.634, + "2016": 0.638, + "2017": 0.641, + "2018": 0.641, + "2019": 0.643, + "2020": 0.644, + "2021": 0.64 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr106", + "Region": "Ogooue Ivindo", + "1990": 0.555, + "1991": 0.56, + "1992": 0.559, + "1993": 0.563, + "1994": 0.566, + "1995": 0.569, + "1996": 0.571, + "1997": 0.575, + "1998": 0.579, + "1999": 0.576, + "2000": 0.574, + "2001": 0.576, + "2002": 0.576, + "2003": 0.576, + "2004": 0.573, + "2005": 0.574, + "2006": 0.57, + "2007": 0.57, + "2008": 0.568, + "2009": 0.569, + "2010": 0.57, + "2011": 0.57, + "2012": 0.576, + "2013": 0.581, + "2014": 0.589, + "2015": 0.592, + "2016": 0.596, + "2017": 0.598, + "2018": 0.599, + "2019": 0.6, + "2020": 0.601, + "2021": 0.598 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr107", + "Region": "Ogooue Lolo", + "1990": 0.569, + "1991": 0.572, + "1992": 0.572, + "1993": 0.575, + "1994": 0.578, + "1995": 0.58, + "1996": 0.582, + "1997": 0.586, + "1998": 0.59, + "1999": 0.586, + "2000": 0.584, + "2001": 0.588, + "2002": 0.591, + "2003": 0.593, + "2004": 0.592, + "2005": 0.595, + "2006": 0.593, + "2007": 0.596, + "2008": 0.595, + "2009": 0.599, + "2010": 0.602, + "2011": 0.604, + "2012": 0.612, + "2013": 0.617, + "2014": 0.625, + "2015": 0.628, + "2016": 0.632, + "2017": 0.635, + "2018": 0.635, + "2019": 0.637, + "2020": 0.638, + "2021": 0.634 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr108", + "Region": "Ogooue Maritime", + "1990": 0.587, + "1991": 0.591, + "1992": 0.591, + "1993": 0.595, + "1994": 0.599, + "1995": 0.602, + "1996": 0.605, + "1997": 0.608, + "1998": 0.614, + "1999": 0.61, + "2000": 0.609, + "2001": 0.612, + "2002": 0.614, + "2003": 0.616, + "2004": 0.613, + "2005": 0.617, + "2006": 0.614, + "2007": 0.615, + "2008": 0.614, + "2009": 0.618, + "2010": 0.62, + "2011": 0.622, + "2012": 0.63, + "2013": 0.635, + "2014": 0.643, + "2015": 0.647, + "2016": 0.651, + "2017": 0.654, + "2018": 0.654, + "2019": 0.656, + "2020": 0.657, + "2021": 0.653 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr109", + "Region": "Woleu Ntem", + "1990": 0.543, + "1991": 0.547, + "1992": 0.547, + "1993": 0.55, + "1994": 0.554, + "1995": 0.556, + "1996": 0.559, + "1997": 0.562, + "1998": 0.567, + "1999": 0.563, + "2000": 0.562, + "2001": 0.569, + "2002": 0.574, + "2003": 0.579, + "2004": 0.58, + "2005": 0.587, + "2006": 0.588, + "2007": 0.592, + "2008": 0.594, + "2009": 0.601, + "2010": 0.606, + "2011": 0.611, + "2012": 0.622, + "2013": 0.628, + "2014": 0.636, + "2015": 0.64, + "2016": 0.644, + "2017": 0.647, + "2018": 0.647, + "2019": 0.649, + "2020": 0.65, + "2021": 0.647 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "National", + "GDLCODE": "GMBt", + "Region": "Total", + "1990": 0.343, + "1991": 0.35, + "1992": 0.357, + "1993": 0.363, + "1994": 0.369, + "1995": 0.376, + "1996": 0.382, + "1997": 0.385, + "1998": 0.392, + "1999": 0.398, + "2000": 0.404, + "2001": 0.41, + "2002": 0.412, + "2003": 0.419, + "2004": 0.428, + "2005": 0.431, + "2006": 0.436, + "2007": 0.442, + "2008": 0.45, + "2009": 0.455, + "2010": 0.46, + "2011": 0.46, + "2012": 0.467, + "2013": 0.471, + "2014": 0.473, + "2015": 0.478, + "2016": 0.484, + "2017": 0.489, + "2018": 0.495, + "2019": 0.503, + "2020": 0.501, + "2021": 0.5 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr101", + "Region": "Banjul", + "1990": 0.458, + "1991": 0.466, + "1992": 0.476, + "1993": 0.484, + "1994": 0.493, + "1995": 0.501, + "1996": 0.51, + "1997": 0.514, + "1998": 0.522, + "1999": 0.531, + "2000": 0.539, + "2001": 0.534, + "2002": 0.525, + "2003": 0.522, + "2004": 0.522, + "2005": 0.515, + "2006": 0.511, + "2007": 0.519, + "2008": 0.53, + "2009": 0.537, + "2010": 0.543, + "2011": 0.546, + "2012": 0.556, + "2013": 0.561, + "2014": 0.556, + "2015": 0.555, + "2016": 0.555, + "2017": 0.553, + "2018": 0.554, + "2019": 0.556, + "2020": 0.547, + "2021": 0.546 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr108", + "Region": "Basse", + "1990": 0.291, + "1991": 0.297, + "1992": 0.303, + "1993": 0.308, + "1994": 0.314, + "1995": 0.319, + "1996": 0.325, + "1997": 0.327, + "1998": 0.333, + "1999": 0.338, + "2000": 0.343, + "2001": 0.341, + "2002": 0.336, + "2003": 0.335, + "2004": 0.336, + "2005": 0.332, + "2006": 0.33, + "2007": 0.334, + "2008": 0.341, + "2009": 0.345, + "2010": 0.347, + "2011": 0.347, + "2012": 0.352, + "2013": 0.354, + "2014": 0.366, + "2015": 0.38, + "2016": 0.393, + "2017": 0.405, + "2018": 0.418, + "2019": 0.427, + "2020": 0.426, + "2021": 0.426 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr103", + "Region": "Brikama", + "1990": 0.352, + "1991": 0.359, + "1992": 0.366, + "1993": 0.372, + "1994": 0.379, + "1995": 0.385, + "1996": 0.392, + "1997": 0.395, + "1998": 0.401, + "1999": 0.408, + "2000": 0.414, + "2001": 0.422, + "2002": 0.427, + "2003": 0.435, + "2004": 0.448, + "2005": 0.453, + "2006": 0.46, + "2007": 0.467, + "2008": 0.477, + "2009": 0.483, + "2010": 0.489, + "2011": 0.491, + "2012": 0.499, + "2013": 0.505, + "2014": 0.504, + "2015": 0.506, + "2016": 0.509, + "2017": 0.511, + "2018": 0.515, + "2019": 0.528, + "2020": 0.53, + "2021": 0.53 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr107", + "Region": "Janjabureh", + "1990": 0.27, + "1991": 0.276, + "1992": 0.281, + "1993": 0.286, + "1994": 0.291, + "1995": 0.296, + "1996": 0.302, + "1997": 0.304, + "1998": 0.309, + "1999": 0.314, + "2000": 0.319, + "2001": 0.338, + "2002": 0.352, + "2003": 0.368, + "2004": 0.386, + "2005": 0.395, + "2006": 0.406, + "2007": 0.409, + "2008": 0.414, + "2009": 0.415, + "2010": 0.415, + "2011": 0.409, + "2012": 0.41, + "2013": 0.406, + "2014": 0.406, + "2015": 0.407, + "2016": 0.409, + "2017": 0.409, + "2018": 0.41, + "2019": 0.406, + "2020": 0.391, + "2021": 0.39 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr102", + "Region": "Kanifing", + "1990": 0.425, + "1991": 0.433, + "1992": 0.442, + "1993": 0.45, + "1994": 0.458, + "1995": 0.465, + "1996": 0.474, + "1997": 0.478, + "1998": 0.486, + "1999": 0.494, + "2000": 0.501, + "2001": 0.503, + "2002": 0.503, + "2003": 0.507, + "2004": 0.515, + "2005": 0.515, + "2006": 0.518, + "2007": 0.523, + "2008": 0.531, + "2009": 0.535, + "2010": 0.539, + "2011": 0.539, + "2012": 0.545, + "2013": 0.548, + "2014": 0.546, + "2015": 0.549, + "2016": 0.551, + "2017": 0.553, + "2018": 0.557, + "2019": 0.561, + "2020": 0.554, + "2021": 0.553 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr105", + "Region": "Kerewan", + "1990": 0.292, + "1991": 0.298, + "1992": 0.303, + "1993": 0.309, + "1994": 0.314, + "1995": 0.319, + "1996": 0.325, + "1997": 0.327, + "1998": 0.333, + "1999": 0.338, + "2000": 0.343, + "2001": 0.346, + "2002": 0.346, + "2003": 0.349, + "2004": 0.356, + "2005": 0.357, + "2006": 0.359, + "2007": 0.368, + "2008": 0.38, + "2009": 0.389, + "2010": 0.396, + "2011": 0.4, + "2012": 0.41, + "2013": 0.417, + "2014": 0.42, + "2015": 0.425, + "2016": 0.431, + "2017": 0.435, + "2018": 0.441, + "2019": 0.451, + "2020": 0.451, + "2021": 0.45 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr106", + "Region": "Kuntaur", + "1990": 0.273, + "1991": 0.278, + "1992": 0.284, + "1993": 0.289, + "1994": 0.294, + "1995": 0.298, + "1996": 0.304, + "1997": 0.306, + "1998": 0.311, + "1999": 0.316, + "2000": 0.321, + "2001": 0.318, + "2002": 0.313, + "2003": 0.311, + "2004": 0.312, + "2005": 0.307, + "2006": 0.304, + "2007": 0.31, + "2008": 0.317, + "2009": 0.322, + "2010": 0.326, + "2011": 0.327, + "2012": 0.332, + "2013": 0.336, + "2014": 0.346, + "2015": 0.357, + "2016": 0.366, + "2017": 0.374, + "2018": 0.383, + "2019": 0.371, + "2020": 0.342, + "2021": 0.342 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr104", + "Region": "Mansakonko", + "1990": 0.304, + "1991": 0.31, + "1992": 0.316, + "1993": 0.322, + "1994": 0.327, + "1995": 0.333, + "1996": 0.339, + "1997": 0.341, + "1998": 0.347, + "1999": 0.352, + "2000": 0.358, + "2001": 0.372, + "2002": 0.383, + "2003": 0.396, + "2004": 0.411, + "2005": 0.419, + "2006": 0.428, + "2007": 0.43, + "2008": 0.436, + "2009": 0.438, + "2010": 0.439, + "2011": 0.435, + "2012": 0.438, + "2013": 0.438, + "2014": 0.435, + "2015": 0.436, + "2016": 0.437, + "2017": 0.438, + "2018": 0.44, + "2019": 0.447, + "2020": 0.444, + "2021": 0.443 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "National", + "GDLCODE": "GEOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.702, + "2001": 0.706, + "2002": 0.714, + "2003": 0.723, + "2004": 0.729, + "2005": 0.738, + "2006": 0.742, + "2007": 0.753, + "2008": 0.748, + "2009": 0.753, + "2010": 0.759, + "2011": 0.766, + "2012": 0.773, + "2013": 0.777, + "2014": 0.784, + "2015": 0.79, + "2016": 0.794, + "2017": 0.8, + "2018": 0.804, + "2019": 0.81, + "2020": 0.802, + "2021": 0.802 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr102", + "Region": "Ajaria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.701, + "2001": 0.705, + "2002": 0.713, + "2003": 0.722, + "2004": 0.728, + "2005": 0.737, + "2006": 0.741, + "2007": 0.752, + "2008": 0.748, + "2009": 0.754, + "2010": 0.76, + "2011": 0.767, + "2012": 0.774, + "2013": 0.779, + "2014": 0.787, + "2015": 0.793, + "2016": 0.798, + "2017": 0.804, + "2018": 0.808, + "2019": 0.814, + "2020": 0.806, + "2021": 0.806 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr103", + "Region": "Guria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.697, + "2001": 0.701, + "2002": 0.709, + "2003": 0.718, + "2004": 0.724, + "2005": 0.734, + "2006": 0.735, + "2007": 0.743, + "2008": 0.736, + "2009": 0.738, + "2010": 0.741, + "2011": 0.745, + "2012": 0.749, + "2013": 0.751, + "2014": 0.755, + "2015": 0.757, + "2016": 0.758, + "2017": 0.761, + "2018": 0.762, + "2019": 0.767, + "2020": 0.76, + "2021": 0.759 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr104", + "Region": "Imereti Racha-Lochkhumi Kvemo Svaneti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.686, + "2001": 0.691, + "2002": 0.698, + "2003": 0.708, + "2004": 0.713, + "2005": 0.722, + "2006": 0.727, + "2007": 0.739, + "2008": 0.736, + "2009": 0.742, + "2010": 0.749, + "2011": 0.757, + "2012": 0.765, + "2013": 0.771, + "2014": 0.779, + "2015": 0.785, + "2016": 0.791, + "2017": 0.798, + "2018": 0.802, + "2019": 0.808, + "2020": 0.8, + "2021": 0.8 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr105", + "Region": "Kakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.679, + "2001": 0.683, + "2002": 0.69, + "2003": 0.7, + "2004": 0.705, + "2005": 0.714, + "2006": 0.717, + "2007": 0.726, + "2008": 0.72, + "2009": 0.724, + "2010": 0.728, + "2011": 0.733, + "2012": 0.738, + "2013": 0.741, + "2014": 0.747, + "2015": 0.75, + "2016": 0.753, + "2017": 0.757, + "2018": 0.759, + "2019": 0.765, + "2020": 0.757, + "2021": 0.757 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr106", + "Region": "Kvemo Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.656, + "2001": 0.66, + "2002": 0.668, + "2003": 0.677, + "2004": 0.682, + "2005": 0.691, + "2006": 0.697, + "2007": 0.709, + "2008": 0.707, + "2009": 0.715, + "2010": 0.723, + "2011": 0.732, + "2012": 0.741, + "2013": 0.747, + "2014": 0.757, + "2015": 0.764, + "2016": 0.771, + "2017": 0.779, + "2018": 0.786, + "2019": 0.791, + "2020": 0.784, + "2021": 0.783 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr107", + "Region": "Mtskheta-Mtianeti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.669, + "2001": 0.673, + "2002": 0.68, + "2003": 0.69, + "2004": 0.695, + "2005": 0.704, + "2006": 0.706, + "2007": 0.715, + "2008": 0.709, + "2009": 0.713, + "2010": 0.717, + "2011": 0.722, + "2012": 0.727, + "2013": 0.73, + "2014": 0.735, + "2015": 0.739, + "2016": 0.742, + "2017": 0.746, + "2018": 0.748, + "2019": 0.753, + "2020": 0.746, + "2021": 0.745 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr108", + "Region": "Samegrelo-Zemo Svateni", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.679, + "2001": 0.684, + "2002": 0.691, + "2003": 0.701, + "2004": 0.706, + "2005": 0.716, + "2006": 0.719, + "2007": 0.729, + "2008": 0.723, + "2009": 0.727, + "2010": 0.732, + "2011": 0.738, + "2012": 0.744, + "2013": 0.747, + "2014": 0.753, + "2015": 0.757, + "2016": 0.76, + "2017": 0.765, + "2018": 0.768, + "2019": 0.773, + "2020": 0.765, + "2021": 0.765 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr109", + "Region": "Samtskhe-Javakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.663, + "2001": 0.667, + "2002": 0.675, + "2003": 0.684, + "2004": 0.689, + "2005": 0.698, + "2006": 0.703, + "2007": 0.715, + "2008": 0.711, + "2009": 0.718, + "2010": 0.725, + "2011": 0.732, + "2012": 0.74, + "2013": 0.746, + "2014": 0.754, + "2015": 0.76, + "2016": 0.765, + "2017": 0.772, + "2018": 0.777, + "2019": 0.783, + "2020": 0.775, + "2021": 0.775 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr110", + "Region": "Shida Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.667, + "2001": 0.671, + "2002": 0.678, + "2003": 0.688, + "2004": 0.693, + "2005": 0.702, + "2006": 0.707, + "2007": 0.719, + "2008": 0.716, + "2009": 0.722, + "2010": 0.729, + "2011": 0.737, + "2012": 0.744, + "2013": 0.75, + "2014": 0.758, + "2015": 0.764, + "2016": 0.77, + "2017": 0.777, + "2018": 0.782, + "2019": 0.787, + "2020": 0.779, + "2021": 0.779 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr111", + "Region": "Tbilisi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.779, + "2001": 0.783, + "2002": 0.791, + "2003": 0.801, + "2004": 0.807, + "2005": 0.817, + "2006": 0.816, + "2007": 0.823, + "2008": 0.813, + "2009": 0.814, + "2010": 0.815, + "2011": 0.818, + "2012": 0.82, + "2013": 0.821, + "2014": 0.824, + "2015": 0.825, + "2016": 0.825, + "2017": 0.827, + "2018": 0.826, + "2019": 0.832, + "2020": 0.824, + "2021": 0.824 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "National", + "GDLCODE": "DEUt", + "Region": "Total", + "1990": 0.829, + "1991": 0.835, + "1992": 0.842, + "1993": 0.852, + "1994": 0.858, + "1995": 0.863, + "1996": 0.868, + "1997": 0.874, + "1998": 0.879, + "1999": 0.884, + "2000": 0.889, + "2001": 0.896, + "2002": 0.901, + "2003": 0.905, + "2004": 0.914, + "2005": 0.914, + "2006": 0.917, + "2007": 0.921, + "2008": 0.923, + "2009": 0.923, + "2010": 0.926, + "2011": 0.931, + "2012": 0.933, + "2013": 0.934, + "2014": 0.937, + "2015": 0.938, + "2016": 0.941, + "2017": 0.944, + "2018": 0.945, + "2019": 0.948, + "2020": 0.944, + "2021": 0.942 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr101", + "Region": "Baden-Wurttemberg", + "1990": 0.841, + "1991": 0.847, + "1992": 0.855, + "1993": 0.864, + "1994": 0.87, + "1995": 0.876, + "1996": 0.88, + "1997": 0.886, + "1998": 0.892, + "1999": 0.897, + "2000": 0.902, + "2001": 0.91, + "2002": 0.914, + "2003": 0.919, + "2004": 0.927, + "2005": 0.928, + "2006": 0.932, + "2007": 0.936, + "2008": 0.937, + "2009": 0.936, + "2010": 0.941, + "2011": 0.946, + "2012": 0.948, + "2013": 0.95, + "2014": 0.953, + "2015": 0.953, + "2016": 0.956, + "2017": 0.958, + "2018": 0.959, + "2019": 0.961, + "2020": 0.957, + "2021": 0.956 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr102", + "Region": "Bayern", + "1990": 0.83, + "1991": 0.836, + "1992": 0.843, + "1993": 0.852, + "1994": 0.859, + "1995": 0.864, + "1996": 0.869, + "1997": 0.875, + "1998": 0.88, + "1999": 0.885, + "2000": 0.89, + "2001": 0.897, + "2002": 0.902, + "2003": 0.906, + "2004": 0.916, + "2005": 0.917, + "2006": 0.919, + "2007": 0.924, + "2008": 0.925, + "2009": 0.927, + "2010": 0.931, + "2011": 0.937, + "2012": 0.939, + "2013": 0.941, + "2014": 0.945, + "2015": 0.945, + "2016": 0.95, + "2017": 0.952, + "2018": 0.953, + "2019": 0.956, + "2020": 0.951, + "2021": 0.95 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr103", + "Region": "Berlin", + "1990": 0.836, + "1991": 0.843, + "1992": 0.85, + "1993": 0.859, + "1994": 0.866, + "1995": 0.871, + "1996": 0.876, + "1997": 0.882, + "1998": 0.887, + "1999": 0.892, + "2000": 0.897, + "2001": 0.902, + "2002": 0.906, + "2003": 0.911, + "2004": 0.919, + "2005": 0.92, + "2006": 0.923, + "2007": 0.928, + "2008": 0.928, + "2009": 0.931, + "2010": 0.934, + "2011": 0.937, + "2012": 0.939, + "2013": 0.938, + "2014": 0.943, + "2015": 0.944, + "2016": 0.954, + "2017": 0.957, + "2018": 0.958, + "2019": 0.965, + "2020": 0.96, + "2021": 0.959 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr104", + "Region": "Brandenburg", + "1990": 0.806, + "1991": 0.812, + "1992": 0.819, + "1993": 0.828, + "1994": 0.834, + "1995": 0.84, + "1996": 0.844, + "1997": 0.85, + "1998": 0.856, + "1999": 0.861, + "2000": 0.866, + "2001": 0.871, + "2002": 0.876, + "2003": 0.88, + "2004": 0.889, + "2005": 0.891, + "2006": 0.893, + "2007": 0.896, + "2008": 0.9, + "2009": 0.901, + "2010": 0.903, + "2011": 0.907, + "2012": 0.909, + "2013": 0.909, + "2014": 0.914, + "2015": 0.914, + "2016": 0.916, + "2017": 0.918, + "2018": 0.919, + "2019": 0.924, + "2020": 0.919, + "2021": 0.918 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr105", + "Region": "Bremen", + "1990": 0.844, + "1991": 0.851, + "1992": 0.858, + "1993": 0.868, + "1994": 0.874, + "1995": 0.879, + "1996": 0.884, + "1997": 0.89, + "1998": 0.895, + "1999": 0.9, + "2000": 0.905, + "2001": 0.914, + "2002": 0.918, + "2003": 0.924, + "2004": 0.932, + "2005": 0.932, + "2006": 0.938, + "2007": 0.939, + "2008": 0.94, + "2009": 0.936, + "2010": 0.943, + "2011": 0.947, + "2012": 0.949, + "2013": 0.947, + "2014": 0.95, + "2015": 0.949, + "2016": 0.955, + "2017": 0.955, + "2018": 0.954, + "2019": 0.96, + "2020": 0.955, + "2021": 0.954 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr106", + "Region": "Hamburg", + "1990": 0.867, + "1991": 0.874, + "1992": 0.881, + "1993": 0.891, + "1994": 0.897, + "1995": 0.903, + "1996": 0.908, + "1997": 0.914, + "1998": 0.919, + "1999": 0.923, + "2000": 0.927, + "2001": 0.934, + "2002": 0.937, + "2003": 0.944, + "2004": 0.949, + "2005": 0.95, + "2006": 0.953, + "2007": 0.954, + "2008": 0.957, + "2009": 0.959, + "2010": 0.962, + "2011": 0.963, + "2012": 0.964, + "2013": 0.965, + "2014": 0.97, + "2015": 0.97, + "2016": 0.974, + "2017": 0.973, + "2018": 0.975, + "2019": 0.976, + "2020": 0.974, + "2021": 0.972 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr107", + "Region": "Hessen", + "1990": 0.843, + "1991": 0.849, + "1992": 0.856, + "1993": 0.866, + "1994": 0.872, + "1995": 0.878, + "1996": 0.882, + "1997": 0.888, + "1998": 0.894, + "1999": 0.899, + "2000": 0.904, + "2001": 0.911, + "2002": 0.915, + "2003": 0.922, + "2004": 0.929, + "2005": 0.93, + "2006": 0.934, + "2007": 0.935, + "2008": 0.937, + "2009": 0.937, + "2010": 0.94, + "2011": 0.944, + "2012": 0.945, + "2013": 0.946, + "2014": 0.949, + "2015": 0.946, + "2016": 0.951, + "2017": 0.951, + "2018": 0.952, + "2019": 0.956, + "2020": 0.951, + "2021": 0.95 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr108", + "Region": "Mecklenburg-Vorpommern", + "1990": 0.801, + "1991": 0.807, + "1992": 0.814, + "1993": 0.823, + "1994": 0.829, + "1995": 0.834, + "1996": 0.839, + "1997": 0.844, + "1998": 0.85, + "1999": 0.855, + "2000": 0.859, + "2001": 0.867, + "2002": 0.872, + "2003": 0.877, + "2004": 0.886, + "2005": 0.885, + "2006": 0.887, + "2007": 0.891, + "2008": 0.894, + "2009": 0.896, + "2010": 0.898, + "2011": 0.903, + "2012": 0.905, + "2013": 0.905, + "2014": 0.909, + "2015": 0.91, + "2016": 0.912, + "2017": 0.918, + "2018": 0.916, + "2019": 0.921, + "2020": 0.917, + "2021": 0.916 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr109", + "Region": "Niedersachsen", + "1990": 0.815, + "1991": 0.822, + "1992": 0.829, + "1993": 0.838, + "1994": 0.844, + "1995": 0.849, + "1996": 0.854, + "1997": 0.86, + "1998": 0.865, + "1999": 0.87, + "2000": 0.875, + "2001": 0.881, + "2002": 0.885, + "2003": 0.889, + "2004": 0.898, + "2005": 0.898, + "2006": 0.902, + "2007": 0.905, + "2008": 0.906, + "2009": 0.906, + "2010": 0.911, + "2011": 0.916, + "2012": 0.919, + "2013": 0.918, + "2014": 0.924, + "2015": 0.924, + "2016": 0.928, + "2017": 0.93, + "2018": 0.931, + "2019": 0.935, + "2020": 0.931, + "2021": 0.93 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr110", + "Region": "Nordrhein-Westfalen", + "1990": 0.829, + "1991": 0.835, + "1992": 0.842, + "1993": 0.851, + "1994": 0.858, + "1995": 0.863, + "1996": 0.867, + "1997": 0.873, + "1998": 0.879, + "1999": 0.884, + "2000": 0.888, + "2001": 0.895, + "2002": 0.9, + "2003": 0.904, + "2004": 0.912, + "2005": 0.912, + "2006": 0.915, + "2007": 0.919, + "2008": 0.921, + "2009": 0.922, + "2010": 0.923, + "2011": 0.929, + "2012": 0.93, + "2013": 0.93, + "2014": 0.933, + "2015": 0.935, + "2016": 0.938, + "2017": 0.94, + "2018": 0.941, + "2019": 0.944, + "2020": 0.94, + "2021": 0.939 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr111", + "Region": "Rheinland-Pfalz", + "1990": 0.819, + "1991": 0.825, + "1992": 0.832, + "1993": 0.841, + "1994": 0.847, + "1995": 0.852, + "1996": 0.857, + "1997": 0.863, + "1998": 0.868, + "1999": 0.873, + "2000": 0.878, + "2001": 0.883, + "2002": 0.889, + "2003": 0.893, + "2004": 0.903, + "2005": 0.9, + "2006": 0.904, + "2007": 0.908, + "2008": 0.91, + "2009": 0.909, + "2010": 0.914, + "2011": 0.919, + "2012": 0.921, + "2013": 0.922, + "2014": 0.926, + "2015": 0.926, + "2016": 0.929, + "2017": 0.93, + "2018": 0.932, + "2019": 0.935, + "2020": 0.931, + "2021": 0.929 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr112", + "Region": "Saarland", + "1990": 0.817, + "1991": 0.824, + "1992": 0.831, + "1993": 0.84, + "1994": 0.846, + "1995": 0.851, + "1996": 0.856, + "1997": 0.861, + "1998": 0.867, + "1999": 0.872, + "2000": 0.877, + "2001": 0.883, + "2002": 0.887, + "2003": 0.888, + "2004": 0.9, + "2005": 0.902, + "2006": 0.904, + "2007": 0.907, + "2008": 0.911, + "2009": 0.91, + "2010": 0.915, + "2011": 0.92, + "2012": 0.923, + "2013": 0.92, + "2014": 0.923, + "2015": 0.924, + "2016": 0.932, + "2017": 0.934, + "2018": 0.933, + "2019": 0.937, + "2020": 0.932, + "2021": 0.931 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr113", + "Region": "Sachsen", + "1990": 0.818, + "1991": 0.824, + "1992": 0.831, + "1993": 0.84, + "1994": 0.847, + "1995": 0.852, + "1996": 0.857, + "1997": 0.863, + "1998": 0.868, + "1999": 0.873, + "2000": 0.878, + "2001": 0.885, + "2002": 0.892, + "2003": 0.897, + "2004": 0.907, + "2005": 0.907, + "2006": 0.912, + "2007": 0.914, + "2008": 0.916, + "2009": 0.915, + "2010": 0.917, + "2011": 0.922, + "2012": 0.923, + "2013": 0.924, + "2014": 0.927, + "2015": 0.928, + "2016": 0.933, + "2017": 0.936, + "2018": 0.935, + "2019": 0.939, + "2020": 0.934, + "2021": 0.933 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr114", + "Region": "Sachsen-Anhalt", + "1990": 0.799, + "1991": 0.805, + "1992": 0.812, + "1993": 0.821, + "1994": 0.827, + "1995": 0.832, + "1996": 0.837, + "1997": 0.842, + "1998": 0.848, + "1999": 0.853, + "2000": 0.857, + "2001": 0.863, + "2002": 0.871, + "2003": 0.877, + "2004": 0.885, + "2005": 0.884, + "2006": 0.887, + "2007": 0.891, + "2008": 0.892, + "2009": 0.893, + "2010": 0.897, + "2011": 0.901, + "2012": 0.905, + "2013": 0.905, + "2014": 0.909, + "2015": 0.908, + "2016": 0.911, + "2017": 0.91, + "2018": 0.912, + "2019": 0.917, + "2020": 0.913, + "2021": 0.911 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr115", + "Region": "Schleswig-Holstein", + "1990": 0.818, + "1991": 0.824, + "1992": 0.831, + "1993": 0.84, + "1994": 0.847, + "1995": 0.852, + "1996": 0.856, + "1997": 0.862, + "1998": 0.868, + "1999": 0.873, + "2000": 0.877, + "2001": 0.884, + "2002": 0.887, + "2003": 0.892, + "2004": 0.899, + "2005": 0.899, + "2006": 0.901, + "2007": 0.902, + "2008": 0.905, + "2009": 0.905, + "2010": 0.907, + "2011": 0.912, + "2012": 0.915, + "2013": 0.915, + "2014": 0.918, + "2015": 0.918, + "2016": 0.922, + "2017": 0.923, + "2018": 0.923, + "2019": 0.927, + "2020": 0.923, + "2021": 0.921 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr116", + "Region": "Thuringen", + "1990": 0.808, + "1991": 0.814, + "1992": 0.821, + "1993": 0.83, + "1994": 0.836, + "1995": 0.841, + "1996": 0.846, + "1997": 0.852, + "1998": 0.857, + "1999": 0.862, + "2000": 0.867, + "2001": 0.874, + "2002": 0.88, + "2003": 0.885, + "2004": 0.894, + "2005": 0.895, + "2006": 0.896, + "2007": 0.899, + "2008": 0.901, + "2009": 0.901, + "2010": 0.906, + "2011": 0.913, + "2012": 0.914, + "2013": 0.918, + "2014": 0.921, + "2015": 0.919, + "2016": 0.922, + "2017": 0.924, + "2018": 0.925, + "2019": 0.928, + "2020": 0.924, + "2021": 0.923 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "National", + "GDLCODE": "GHAt", + "Region": "Total", + "1990": 0.46, + "1991": 0.466, + "1992": 0.47, + "1993": 0.475, + "1994": 0.477, + "1995": 0.483, + "1996": 0.487, + "1997": 0.492, + "1998": 0.497, + "1999": 0.502, + "2000": 0.507, + "2001": 0.505, + "2002": 0.512, + "2003": 0.515, + "2004": 0.521, + "2005": 0.533, + "2006": 0.54, + "2007": 0.55, + "2008": 0.561, + "2009": 0.566, + "2010": 0.574, + "2011": 0.585, + "2012": 0.592, + "2013": 0.6, + "2014": 0.6, + "2015": 0.607, + "2016": 0.611, + "2017": 0.616, + "2018": 0.62, + "2019": 0.631, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr106", + "Region": "Ashanti", + "1990": 0.487, + "1991": 0.493, + "1992": 0.498, + "1993": 0.503, + "1994": 0.505, + "1995": 0.511, + "1996": 0.515, + "1997": 0.52, + "1998": 0.526, + "1999": 0.529, + "2000": 0.532, + "2001": 0.528, + "2002": 0.533, + "2003": 0.533, + "2004": 0.544, + "2005": 0.56, + "2006": 0.572, + "2007": 0.582, + "2008": 0.593, + "2009": 0.594, + "2010": 0.596, + "2011": 0.601, + "2012": 0.607, + "2013": 0.614, + "2014": 0.612, + "2015": 0.618, + "2016": 0.622, + "2017": 0.625, + "2018": 0.629, + "2019": 0.64, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr107", + "Region": "Brong Ahafo", + "1990": 0.425, + "1991": 0.43, + "1992": 0.435, + "1993": 0.439, + "1994": 0.441, + "1995": 0.446, + "1996": 0.45, + "1997": 0.454, + "1998": 0.459, + "1999": 0.472, + "2000": 0.485, + "2001": 0.49, + "2002": 0.506, + "2003": 0.516, + "2004": 0.511, + "2005": 0.511, + "2006": 0.506, + "2007": 0.525, + "2008": 0.546, + "2009": 0.544, + "2010": 0.545, + "2011": 0.55, + "2012": 0.565, + "2013": 0.582, + "2014": 0.589, + "2015": 0.599, + "2016": 0.607, + "2017": 0.615, + "2018": 0.62, + "2019": 0.63, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr102", + "Region": "Central", + "1990": 0.44, + "1991": 0.446, + "1992": 0.45, + "1993": 0.455, + "1994": 0.456, + "1995": 0.462, + "1996": 0.466, + "1997": 0.471, + "1998": 0.476, + "1999": 0.484, + "2000": 0.492, + "2001": 0.493, + "2002": 0.503, + "2003": 0.508, + "2004": 0.509, + "2005": 0.515, + "2006": 0.516, + "2007": 0.524, + "2008": 0.534, + "2009": 0.545, + "2010": 0.558, + "2011": 0.575, + "2012": 0.573, + "2013": 0.57, + "2014": 0.558, + "2015": 0.581, + "2016": 0.599, + "2017": 0.616, + "2018": 0.621, + "2019": 0.631, + "2020": 0.633, + "2021": 0.633 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr105", + "Region": "Eastern", + "1990": 0.485, + "1991": 0.491, + "1992": 0.496, + "1993": 0.501, + "1994": 0.503, + "1995": 0.509, + "1996": 0.513, + "1997": 0.518, + "1998": 0.524, + "1999": 0.526, + "2000": 0.529, + "2001": 0.524, + "2002": 0.528, + "2003": 0.528, + "2004": 0.534, + "2005": 0.547, + "2006": 0.554, + "2007": 0.559, + "2008": 0.565, + "2009": 0.573, + "2010": 0.583, + "2011": 0.596, + "2012": 0.599, + "2013": 0.602, + "2014": 0.597, + "2015": 0.61, + "2016": 0.621, + "2017": 0.632, + "2018": 0.637, + "2019": 0.647, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr103", + "Region": "Greater Accra", + "1990": 0.574, + "1991": 0.582, + "1992": 0.587, + "1993": 0.593, + "1994": 0.596, + "1995": 0.603, + "1996": 0.608, + "1997": 0.614, + "1998": 0.62, + "1999": 0.625, + "2000": 0.63, + "2001": 0.626, + "2002": 0.633, + "2003": 0.635, + "2004": 0.637, + "2005": 0.645, + "2006": 0.647, + "2007": 0.655, + "2008": 0.664, + "2009": 0.664, + "2010": 0.667, + "2011": 0.674, + "2012": 0.674, + "2013": 0.676, + "2014": 0.668, + "2015": 0.677, + "2016": 0.683, + "2017": 0.689, + "2018": 0.694, + "2019": 0.705, + "2020": 0.707, + "2021": 0.707 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr108", + "Region": "Northern", + "1990": 0.315, + "1991": 0.319, + "1992": 0.322, + "1993": 0.324, + "1994": 0.325, + "1995": 0.329, + "1996": 0.332, + "1997": 0.335, + "1998": 0.338, + "1999": 0.348, + "2000": 0.358, + "2001": 0.36, + "2002": 0.372, + "2003": 0.379, + "2004": 0.393, + "2005": 0.412, + "2006": 0.427, + "2007": 0.421, + "2008": 0.417, + "2009": 0.432, + "2010": 0.449, + "2011": 0.47, + "2012": 0.482, + "2013": 0.496, + "2014": 0.5, + "2015": 0.511, + "2016": 0.518, + "2017": 0.524, + "2018": 0.527, + "2019": 0.537, + "2020": 0.539, + "2021": 0.539 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr110", + "Region": "Upper East", + "1990": 0.346, + "1991": 0.35, + "1992": 0.353, + "1993": 0.356, + "1994": 0.358, + "1995": 0.362, + "1996": 0.365, + "1997": 0.368, + "1998": 0.372, + "1999": 0.379, + "2000": 0.386, + "2001": 0.385, + "2002": 0.393, + "2003": 0.396, + "2004": 0.412, + "2005": 0.432, + "2006": 0.446, + "2007": 0.46, + "2008": 0.476, + "2009": 0.474, + "2010": 0.474, + "2011": 0.478, + "2012": 0.496, + "2013": 0.514, + "2014": 0.523, + "2015": 0.535, + "2016": 0.543, + "2017": 0.551, + "2018": 0.554, + "2019": 0.564, + "2020": 0.566, + "2021": 0.566 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr109", + "Region": "Upper West", + "1990": 0.332, + "1991": 0.336, + "1992": 0.338, + "1993": 0.341, + "1994": 0.342, + "1995": 0.346, + "1996": 0.349, + "1997": 0.352, + "1998": 0.356, + "1999": 0.36, + "2000": 0.365, + "2001": 0.361, + "2002": 0.367, + "2003": 0.369, + "2004": 0.38, + "2005": 0.397, + "2006": 0.409, + "2007": 0.427, + "2008": 0.446, + "2009": 0.454, + "2010": 0.465, + "2011": 0.479, + "2012": 0.496, + "2013": 0.515, + "2014": 0.525, + "2015": 0.532, + "2016": 0.536, + "2017": 0.54, + "2018": 0.544, + "2019": 0.554, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr104", + "Region": "Volta", + "1990": 0.449, + "1991": 0.455, + "1992": 0.459, + "1993": 0.464, + "1994": 0.466, + "1995": 0.471, + "1996": 0.476, + "1997": 0.48, + "1998": 0.485, + "1999": 0.493, + "2000": 0.501, + "2001": 0.501, + "2002": 0.51, + "2003": 0.515, + "2004": 0.516, + "2005": 0.522, + "2006": 0.522, + "2007": 0.546, + "2008": 0.572, + "2009": 0.57, + "2010": 0.57, + "2011": 0.573, + "2012": 0.584, + "2013": 0.596, + "2014": 0.599, + "2015": 0.602, + "2016": 0.602, + "2017": 0.602, + "2018": 0.606, + "2019": 0.616, + "2020": 0.618, + "2021": 0.618 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr101", + "Region": "Western", + "1990": 0.463, + "1991": 0.469, + "1992": 0.473, + "1993": 0.478, + "1994": 0.48, + "1995": 0.486, + "1996": 0.49, + "1997": 0.495, + "1998": 0.5, + "1999": 0.507, + "2000": 0.515, + "2001": 0.515, + "2002": 0.525, + "2003": 0.53, + "2004": 0.545, + "2005": 0.566, + "2006": 0.582, + "2007": 0.585, + "2008": 0.59, + "2009": 0.59, + "2010": 0.591, + "2011": 0.596, + "2012": 0.609, + "2013": 0.623, + "2014": 0.628, + "2015": 0.63, + "2016": 0.63, + "2017": 0.631, + "2018": 0.636, + "2019": 0.646, + "2020": 0.648, + "2021": 0.648 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "National", + "GDLCODE": "GRCt", + "Region": "Total", + "1990": 0.759, + "1991": 0.769, + "1992": 0.769, + "1993": 0.769, + "1994": 0.774, + "1995": 0.777, + "1996": 0.782, + "1997": 0.789, + "1998": 0.799, + "1999": 0.801, + "2000": 0.81, + "2001": 0.82, + "2002": 0.83, + "2003": 0.835, + "2004": 0.843, + "2005": 0.855, + "2006": 0.863, + "2007": 0.858, + "2008": 0.863, + "2009": 0.866, + "2010": 0.869, + "2011": 0.865, + "2012": 0.866, + "2013": 0.871, + "2014": 0.879, + "2015": 0.88, + "2016": 0.877, + "2017": 0.88, + "2018": 0.886, + "2019": 0.889, + "2020": 0.886, + "2021": 0.887 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr105", + "Region": "Anatoliki Makedonia, Thraki", + "1990": 0.732, + "1991": 0.741, + "1992": 0.741, + "1993": 0.74, + "1994": 0.744, + "1995": 0.747, + "1996": 0.75, + "1997": 0.757, + "1998": 0.766, + "1999": 0.771, + "2000": 0.781, + "2001": 0.787, + "2002": 0.799, + "2003": 0.804, + "2004": 0.812, + "2005": 0.823, + "2006": 0.827, + "2007": 0.824, + "2008": 0.831, + "2009": 0.835, + "2010": 0.836, + "2011": 0.832, + "2012": 0.833, + "2013": 0.833, + "2014": 0.842, + "2015": 0.846, + "2016": 0.847, + "2017": 0.846, + "2018": 0.854, + "2019": 0.856, + "2020": 0.853, + "2021": 0.854 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr101", + "Region": "Attiki", + "1990": 0.773, + "1991": 0.783, + "1992": 0.784, + "1993": 0.784, + "1994": 0.79, + "1995": 0.793, + "1996": 0.798, + "1997": 0.805, + "1998": 0.816, + "1999": 0.818, + "2000": 0.828, + "2001": 0.835, + "2002": 0.845, + "2003": 0.851, + "2004": 0.859, + "2005": 0.871, + "2006": 0.881, + "2007": 0.876, + "2008": 0.883, + "2009": 0.885, + "2010": 0.888, + "2011": 0.884, + "2012": 0.886, + "2013": 0.891, + "2014": 0.899, + "2015": 0.903, + "2016": 0.899, + "2017": 0.901, + "2018": 0.907, + "2019": 0.911, + "2020": 0.908, + "2021": 0.909 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr111", + "Region": "Dytiki Ellada", + "1990": 0.752, + "1991": 0.76, + "1992": 0.76, + "1993": 0.76, + "1994": 0.764, + "1995": 0.765, + "1996": 0.77, + "1997": 0.777, + "1998": 0.786, + "1999": 0.79, + "2000": 0.798, + "2001": 0.808, + "2002": 0.822, + "2003": 0.827, + "2004": 0.836, + "2005": 0.846, + "2006": 0.857, + "2007": 0.852, + "2008": 0.853, + "2009": 0.855, + "2010": 0.858, + "2011": 0.855, + "2012": 0.851, + "2013": 0.852, + "2014": 0.858, + "2015": 0.856, + "2016": 0.851, + "2017": 0.855, + "2018": 0.858, + "2019": 0.86, + "2020": 0.857, + "2021": 0.857 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr107", + "Region": "Dytiki Makedonia", + "1990": 0.766, + "1991": 0.775, + "1992": 0.775, + "1993": 0.772, + "1994": 0.779, + "1995": 0.782, + "1996": 0.786, + "1997": 0.793, + "1998": 0.803, + "1999": 0.806, + "2000": 0.815, + "2001": 0.827, + "2002": 0.839, + "2003": 0.845, + "2004": 0.851, + "2005": 0.864, + "2006": 0.868, + "2007": 0.865, + "2008": 0.861, + "2009": 0.866, + "2010": 0.87, + "2011": 0.869, + "2012": 0.873, + "2013": 0.875, + "2014": 0.882, + "2015": 0.878, + "2016": 0.87, + "2017": 0.876, + "2018": 0.881, + "2019": 0.879, + "2020": 0.876, + "2021": 0.877 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr110", + "Region": "Ionia Nisia", + "1990": 0.76, + "1991": 0.769, + "1992": 0.772, + "1993": 0.777, + "1994": 0.777, + "1995": 0.777, + "1996": 0.785, + "1997": 0.795, + "1998": 0.801, + "1999": 0.805, + "2000": 0.81, + "2001": 0.823, + "2002": 0.825, + "2003": 0.831, + "2004": 0.839, + "2005": 0.854, + "2006": 0.859, + "2007": 0.856, + "2008": 0.857, + "2009": 0.858, + "2010": 0.865, + "2011": 0.858, + "2012": 0.858, + "2013": 0.862, + "2014": 0.869, + "2015": 0.867, + "2016": 0.864, + "2017": 0.863, + "2018": 0.873, + "2019": 0.879, + "2020": 0.875, + "2021": 0.876 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr108", + "Region": "Ipeiros", + "1990": 0.762, + "1991": 0.771, + "1992": 0.767, + "1993": 0.769, + "1994": 0.774, + "1995": 0.779, + "1996": 0.78, + "1997": 0.787, + "1998": 0.8, + "1999": 0.801, + "2000": 0.809, + "2001": 0.823, + "2002": 0.836, + "2003": 0.842, + "2004": 0.846, + "2005": 0.859, + "2006": 0.865, + "2007": 0.859, + "2008": 0.86, + "2009": 0.864, + "2010": 0.867, + "2011": 0.86, + "2012": 0.858, + "2013": 0.862, + "2014": 0.867, + "2015": 0.866, + "2016": 0.865, + "2017": 0.868, + "2018": 0.874, + "2019": 0.878, + "2020": 0.875, + "2021": 0.876 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr106", + "Region": "Kentriki Makedonia", + "1990": 0.75, + "1991": 0.759, + "1992": 0.76, + "1993": 0.76, + "1994": 0.764, + "1995": 0.766, + "1996": 0.77, + "1997": 0.779, + "1998": 0.788, + "1999": 0.791, + "2000": 0.799, + "2001": 0.811, + "2002": 0.82, + "2003": 0.823, + "2004": 0.833, + "2005": 0.842, + "2006": 0.851, + "2007": 0.847, + "2008": 0.851, + "2009": 0.855, + "2010": 0.856, + "2011": 0.855, + "2012": 0.854, + "2013": 0.858, + "2014": 0.862, + "2015": 0.865, + "2016": 0.863, + "2017": 0.866, + "2018": 0.872, + "2019": 0.876, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr104", + "Region": "Kriti", + "1990": 0.77, + "1991": 0.781, + "1992": 0.779, + "1993": 0.778, + "1994": 0.784, + "1995": 0.785, + "1996": 0.792, + "1997": 0.796, + "1998": 0.81, + "1999": 0.811, + "2000": 0.818, + "2001": 0.828, + "2002": 0.839, + "2003": 0.844, + "2004": 0.857, + "2005": 0.865, + "2006": 0.871, + "2007": 0.866, + "2008": 0.871, + "2009": 0.873, + "2010": 0.873, + "2011": 0.865, + "2012": 0.862, + "2013": 0.866, + "2014": 0.869, + "2015": 0.87, + "2016": 0.868, + "2017": 0.869, + "2018": 0.876, + "2019": 0.878, + "2020": 0.875, + "2021": 0.876 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr103", + "Region": "Notio Aigaio", + "1990": 0.734, + "1991": 0.742, + "1992": 0.742, + "1993": 0.745, + "1994": 0.749, + "1995": 0.753, + "1996": 0.764, + "1997": 0.768, + "1998": 0.78, + "1999": 0.781, + "2000": 0.791, + "2001": 0.795, + "2002": 0.798, + "2003": 0.804, + "2004": 0.815, + "2005": 0.824, + "2006": 0.832, + "2007": 0.827, + "2008": 0.832, + "2009": 0.83, + "2010": 0.829, + "2011": 0.827, + "2012": 0.83, + "2013": 0.838, + "2014": 0.844, + "2015": 0.847, + "2016": 0.841, + "2017": 0.848, + "2018": 0.86, + "2019": 0.868, + "2020": 0.865, + "2021": 0.865 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr113", + "Region": "Peloponnisos", + "1990": 0.737, + "1991": 0.745, + "1992": 0.746, + "1993": 0.745, + "1994": 0.752, + "1995": 0.753, + "1996": 0.757, + "1997": 0.764, + "1998": 0.774, + "1999": 0.774, + "2000": 0.782, + "2001": 0.795, + "2002": 0.803, + "2003": 0.805, + "2004": 0.812, + "2005": 0.823, + "2006": 0.829, + "2007": 0.826, + "2008": 0.831, + "2009": 0.83, + "2010": 0.833, + "2011": 0.832, + "2012": 0.832, + "2013": 0.839, + "2014": 0.847, + "2015": 0.847, + "2016": 0.848, + "2017": 0.852, + "2018": 0.857, + "2019": 0.867, + "2020": 0.864, + "2021": 0.865 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr112", + "Region": "Sterea Ellada", + "1990": 0.75, + "1991": 0.759, + "1992": 0.759, + "1993": 0.759, + "1994": 0.763, + "1995": 0.767, + "1996": 0.77, + "1997": 0.777, + "1998": 0.788, + "1999": 0.788, + "2000": 0.796, + "2001": 0.805, + "2002": 0.813, + "2003": 0.819, + "2004": 0.824, + "2005": 0.838, + "2006": 0.843, + "2007": 0.835, + "2008": 0.84, + "2009": 0.844, + "2010": 0.847, + "2011": 0.842, + "2012": 0.844, + "2013": 0.849, + "2014": 0.851, + "2015": 0.851, + "2016": 0.847, + "2017": 0.851, + "2018": 0.859, + "2019": 0.866, + "2020": 0.863, + "2021": 0.864 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr109", + "Region": "Thessalia", + "1990": 0.739, + "1991": 0.747, + "1992": 0.749, + "1993": 0.749, + "1994": 0.752, + "1995": 0.755, + "1996": 0.759, + "1997": 0.763, + "1998": 0.775, + "1999": 0.777, + "2000": 0.786, + "2001": 0.797, + "2002": 0.806, + "2003": 0.816, + "2004": 0.82, + "2005": 0.832, + "2006": 0.842, + "2007": 0.835, + "2008": 0.841, + "2009": 0.844, + "2010": 0.845, + "2011": 0.838, + "2012": 0.841, + "2013": 0.847, + "2014": 0.856, + "2015": 0.859, + "2016": 0.858, + "2017": 0.863, + "2018": 0.873, + "2019": 0.876, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr102", + "Region": "Voreio Aigaio", + "1990": 0.745, + "1991": 0.756, + "1992": 0.757, + "1993": 0.755, + "1994": 0.761, + "1995": 0.765, + "1996": 0.768, + "1997": 0.78, + "1998": 0.787, + "1999": 0.79, + "2000": 0.795, + "2001": 0.808, + "2002": 0.815, + "2003": 0.822, + "2004": 0.831, + "2005": 0.845, + "2006": 0.852, + "2007": 0.849, + "2008": 0.858, + "2009": 0.859, + "2010": 0.859, + "2011": 0.856, + "2012": 0.853, + "2013": 0.864, + "2014": 0.866, + "2015": 0.864, + "2016": 0.862, + "2017": 0.858, + "2018": 0.863, + "2019": 0.867, + "2020": 0.864, + "2021": 0.865 + }, + { + "Country": "Grenada", + "Continent": "America", + "ISO_Code": "GRD", + "Level": "National", + "GDLCODE": "GRDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.739, + "2003": 0.747, + "2004": 0.742, + "2005": 0.763, + "2006": 0.765, + "2007": 0.773, + "2008": 0.778, + "2009": 0.777, + "2010": 0.782, + "2011": 0.786, + "2012": 0.784, + "2013": 0.787, + "2014": 0.787, + "2015": 0.79, + "2016": 0.791, + "2017": 0.794, + "2018": 0.797, + "2019": 0.8, + "2020": 0.792, + "2021": 0.795 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "National", + "GDLCODE": "GTMt", + "Region": "Total", + "1990": 0.484, + "1991": 0.488, + "1992": 0.492, + "1993": 0.497, + "1994": 0.501, + "1995": 0.508, + "1996": 0.516, + "1997": 0.525, + "1998": 0.534, + "1999": 0.542, + "2000": 0.55, + "2001": 0.556, + "2002": 0.561, + "2003": 0.566, + "2004": 0.571, + "2005": 0.574, + "2006": 0.581, + "2007": 0.59, + "2008": 0.596, + "2009": 0.6, + "2010": 0.605, + "2011": 0.611, + "2012": 0.616, + "2013": 0.62, + "2014": 0.637, + "2015": 0.639, + "2016": 0.639, + "2017": 0.64, + "2018": 0.64, + "2019": 0.642, + "2020": 0.635, + "2021": 0.627 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr105", + "Region": "Central", + "1990": 0.487, + "1991": 0.491, + "1992": 0.495, + "1993": 0.5, + "1994": 0.504, + "1995": 0.511, + "1996": 0.519, + "1997": 0.527, + "1998": 0.536, + "1999": 0.544, + "2000": 0.551, + "2001": 0.556, + "2002": 0.56, + "2003": 0.564, + "2004": 0.567, + "2005": 0.57, + "2006": 0.576, + "2007": 0.585, + "2008": 0.59, + "2009": 0.594, + "2010": 0.598, + "2011": 0.603, + "2012": 0.608, + "2013": 0.618, + "2014": 0.641, + "2015": 0.65, + "2016": 0.651, + "2017": 0.652, + "2018": 0.652, + "2019": 0.654, + "2020": 0.647, + "2021": 0.639 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr101", + "Region": "Metropolitan", + "1990": 0.598, + "1991": 0.603, + "1992": 0.608, + "1993": 0.614, + "1994": 0.619, + "1995": 0.627, + "1996": 0.627, + "1997": 0.628, + "1998": 0.628, + "1999": 0.629, + "2000": 0.638, + "2001": 0.644, + "2002": 0.65, + "2003": 0.656, + "2004": 0.661, + "2005": 0.664, + "2006": 0.672, + "2007": 0.684, + "2008": 0.686, + "2009": 0.687, + "2010": 0.688, + "2011": 0.69, + "2012": 0.692, + "2013": 0.701, + "2014": 0.727, + "2015": 0.735, + "2016": 0.736, + "2017": 0.736, + "2018": 0.737, + "2019": 0.739, + "2020": 0.731, + "2021": 0.722 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr102", + "Region": "North", + "1990": 0.375, + "1991": 0.378, + "1992": 0.381, + "1993": 0.385, + "1994": 0.388, + "1995": 0.393, + "1996": 0.415, + "1997": 0.436, + "1998": 0.457, + "1999": 0.477, + "2000": 0.486, + "2001": 0.494, + "2002": 0.5, + "2003": 0.506, + "2004": 0.512, + "2005": 0.516, + "2006": 0.523, + "2007": 0.533, + "2008": 0.539, + "2009": 0.544, + "2010": 0.549, + "2011": 0.556, + "2012": 0.562, + "2013": 0.561, + "2014": 0.57, + "2015": 0.565, + "2016": 0.566, + "2017": 0.567, + "2018": 0.567, + "2019": 0.569, + "2020": 0.563, + "2021": 0.556 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr107", + "Region": "North-Occidental", + "1990": 0.38, + "1991": 0.384, + "1992": 0.387, + "1993": 0.39, + "1994": 0.394, + "1995": 0.399, + "1996": 0.406, + "1997": 0.415, + "1998": 0.423, + "1999": 0.431, + "2000": 0.444, + "2001": 0.454, + "2002": 0.465, + "2003": 0.474, + "2004": 0.483, + "2005": 0.49, + "2006": 0.5, + "2007": 0.512, + "2008": 0.523, + "2009": 0.531, + "2010": 0.541, + "2011": 0.552, + "2012": 0.562, + "2013": 0.562, + "2014": 0.57, + "2015": 0.564, + "2016": 0.565, + "2017": 0.565, + "2018": 0.566, + "2019": 0.567, + "2020": 0.561, + "2021": 0.554 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr103", + "Region": "North-Oriental", + "1990": 0.429, + "1991": 0.433, + "1992": 0.436, + "1993": 0.44, + "1994": 0.444, + "1995": 0.45, + "1996": 0.462, + "1997": 0.474, + "1998": 0.486, + "1999": 0.498, + "2000": 0.51, + "2001": 0.52, + "2002": 0.53, + "2003": 0.538, + "2004": 0.547, + "2005": 0.553, + "2006": 0.563, + "2007": 0.576, + "2008": 0.579, + "2009": 0.58, + "2010": 0.581, + "2011": 0.584, + "2012": 0.586, + "2013": 0.597, + "2014": 0.621, + "2015": 0.632, + "2016": 0.632, + "2017": 0.633, + "2018": 0.633, + "2019": 0.635, + "2020": 0.628, + "2021": 0.62 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr108", + "Region": "Peten", + "1990": 0.452, + "1991": 0.456, + "1992": 0.46, + "1993": 0.464, + "1994": 0.468, + "1995": 0.474, + "1996": 0.473, + "1997": 0.473, + "1998": 0.473, + "1999": 0.473, + "2000": 0.492, + "2001": 0.509, + "2002": 0.524, + "2003": 0.539, + "2004": 0.552, + "2005": 0.564, + "2006": 0.579, + "2007": 0.596, + "2008": 0.598, + "2009": 0.598, + "2010": 0.598, + "2011": 0.599, + "2012": 0.6, + "2013": 0.604, + "2014": 0.618, + "2015": 0.62, + "2016": 0.62, + "2017": 0.621, + "2018": 0.621, + "2019": 0.623, + "2020": 0.616, + "2021": 0.609 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr106", + "Region": "South-Occidental", + "1990": 0.445, + "1991": 0.448, + "1992": 0.452, + "1993": 0.456, + "1994": 0.46, + "1995": 0.466, + "1996": 0.477, + "1997": 0.487, + "1998": 0.498, + "1999": 0.508, + "2000": 0.517, + "2001": 0.523, + "2002": 0.53, + "2003": 0.535, + "2004": 0.541, + "2005": 0.545, + "2006": 0.553, + "2007": 0.562, + "2008": 0.573, + "2009": 0.582, + "2010": 0.592, + "2011": 0.603, + "2012": 0.614, + "2013": 0.614, + "2014": 0.624, + "2015": 0.619, + "2016": 0.62, + "2017": 0.62, + "2018": 0.621, + "2019": 0.622, + "2020": 0.616, + "2021": 0.608 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr104", + "Region": "South-Oriental", + "1990": 0.419, + "1991": 0.423, + "1992": 0.426, + "1993": 0.43, + "1994": 0.434, + "1995": 0.439, + "1996": 0.458, + "1997": 0.478, + "1998": 0.498, + "1999": 0.517, + "2000": 0.526, + "2001": 0.534, + "2002": 0.541, + "2003": 0.547, + "2004": 0.553, + "2005": 0.558, + "2006": 0.566, + "2007": 0.576, + "2008": 0.581, + "2009": 0.583, + "2010": 0.587, + "2011": 0.591, + "2012": 0.595, + "2013": 0.602, + "2014": 0.62, + "2015": 0.625, + "2016": 0.626, + "2017": 0.626, + "2018": 0.627, + "2019": 0.628, + "2020": 0.622, + "2021": 0.614 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "National", + "GDLCODE": "GINt", + "Region": "Total", + "1990": 0.269, + "1991": 0.274, + "1992": 0.282, + "1993": 0.289, + "1994": 0.295, + "1995": 0.303, + "1996": 0.31, + "1997": 0.321, + "1998": 0.33, + "1999": 0.339, + "2000": 0.345, + "2001": 0.352, + "2002": 0.362, + "2003": 0.37, + "2004": 0.377, + "2005": 0.387, + "2006": 0.394, + "2007": 0.402, + "2008": 0.408, + "2009": 0.41, + "2010": 0.415, + "2011": 0.42, + "2012": 0.425, + "2013": 0.429, + "2014": 0.435, + "2015": 0.44, + "2016": 0.45, + "2017": 0.458, + "2018": 0.462, + "2019": 0.467, + "2020": 0.466, + "2021": 0.465 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr101", + "Region": "Boke", + "1990": 0.247, + "1991": 0.252, + "1992": 0.259, + "1993": 0.266, + "1994": 0.271, + "1995": 0.279, + "1996": 0.286, + "1997": 0.296, + "1998": 0.305, + "1999": 0.313, + "2000": 0.32, + "2001": 0.326, + "2002": 0.336, + "2003": 0.343, + "2004": 0.35, + "2005": 0.359, + "2006": 0.373, + "2007": 0.388, + "2008": 0.401, + "2009": 0.408, + "2010": 0.42, + "2011": 0.431, + "2012": 0.441, + "2013": 0.439, + "2014": 0.438, + "2015": 0.437, + "2016": 0.439, + "2017": 0.441, + "2018": 0.438, + "2019": 0.443, + "2020": 0.441, + "2021": 0.44 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr102", + "Region": "Conakry", + "1990": 0.423, + "1991": 0.43, + "1992": 0.439, + "1993": 0.449, + "1994": 0.456, + "1995": 0.466, + "1996": 0.477, + "1997": 0.49, + "1998": 0.502, + "1999": 0.513, + "2000": 0.521, + "2001": 0.53, + "2002": 0.543, + "2003": 0.553, + "2004": 0.563, + "2005": 0.575, + "2006": 0.581, + "2007": 0.589, + "2008": 0.595, + "2009": 0.594, + "2010": 0.599, + "2011": 0.604, + "2012": 0.608, + "2013": 0.613, + "2014": 0.619, + "2015": 0.624, + "2016": 0.634, + "2017": 0.643, + "2018": 0.646, + "2019": 0.654, + "2020": 0.652, + "2021": 0.65 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr103", + "Region": "Faranah", + "1990": 0.256, + "1991": 0.261, + "1992": 0.268, + "1993": 0.275, + "1994": 0.281, + "1995": 0.289, + "1996": 0.296, + "1997": 0.306, + "1998": 0.316, + "1999": 0.324, + "2000": 0.331, + "2001": 0.338, + "2002": 0.348, + "2003": 0.355, + "2004": 0.362, + "2005": 0.372, + "2006": 0.37, + "2007": 0.37, + "2008": 0.368, + "2009": 0.361, + "2010": 0.358, + "2011": 0.355, + "2012": 0.35, + "2013": 0.358, + "2014": 0.366, + "2015": 0.374, + "2016": 0.385, + "2017": 0.395, + "2018": 0.402, + "2019": 0.406, + "2020": 0.405, + "2021": 0.404 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr104", + "Region": "Kankan", + "1990": 0.219, + "1991": 0.223, + "1992": 0.229, + "1993": 0.236, + "1994": 0.241, + "1995": 0.247, + "1996": 0.254, + "1997": 0.263, + "1998": 0.271, + "1999": 0.278, + "2000": 0.284, + "2001": 0.289, + "2002": 0.298, + "2003": 0.305, + "2004": 0.311, + "2005": 0.319, + "2006": 0.32, + "2007": 0.323, + "2008": 0.324, + "2009": 0.321, + "2010": 0.321, + "2011": 0.322, + "2012": 0.321, + "2013": 0.331, + "2014": 0.342, + "2015": 0.353, + "2016": 0.366, + "2017": 0.379, + "2018": 0.389, + "2019": 0.393, + "2020": 0.392, + "2021": 0.391 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr105", + "Region": "Kindia", + "1990": 0.241, + "1991": 0.246, + "1992": 0.253, + "1993": 0.26, + "1994": 0.266, + "1995": 0.273, + "1996": 0.281, + "1997": 0.291, + "1998": 0.3, + "1999": 0.309, + "2000": 0.316, + "2001": 0.323, + "2002": 0.332, + "2003": 0.34, + "2004": 0.347, + "2005": 0.356, + "2006": 0.365, + "2007": 0.374, + "2008": 0.382, + "2009": 0.384, + "2010": 0.391, + "2011": 0.397, + "2012": 0.401, + "2013": 0.409, + "2014": 0.418, + "2015": 0.426, + "2016": 0.438, + "2017": 0.449, + "2018": 0.456, + "2019": 0.461, + "2020": 0.459, + "2021": 0.458 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr106", + "Region": "Labe", + "1990": 0.228, + "1991": 0.233, + "1992": 0.24, + "1993": 0.246, + "1994": 0.252, + "1995": 0.26, + "1996": 0.267, + "1997": 0.276, + "1998": 0.285, + "1999": 0.293, + "2000": 0.3, + "2001": 0.306, + "2002": 0.316, + "2003": 0.323, + "2004": 0.33, + "2005": 0.339, + "2006": 0.343, + "2007": 0.348, + "2008": 0.352, + "2009": 0.351, + "2010": 0.353, + "2011": 0.355, + "2012": 0.357, + "2013": 0.362, + "2014": 0.368, + "2015": 0.374, + "2016": 0.384, + "2017": 0.392, + "2018": 0.397, + "2019": 0.401, + "2020": 0.4, + "2021": 0.399 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr107", + "Region": "Mamou", + "1990": 0.226, + "1991": 0.231, + "1992": 0.238, + "1993": 0.245, + "1994": 0.251, + "1995": 0.258, + "1996": 0.266, + "1997": 0.276, + "1998": 0.285, + "1999": 0.294, + "2000": 0.3, + "2001": 0.307, + "2002": 0.317, + "2003": 0.324, + "2004": 0.331, + "2005": 0.341, + "2006": 0.347, + "2007": 0.353, + "2008": 0.359, + "2009": 0.359, + "2010": 0.363, + "2011": 0.367, + "2012": 0.369, + "2013": 0.378, + "2014": 0.387, + "2015": 0.397, + "2016": 0.409, + "2017": 0.421, + "2018": 0.429, + "2019": 0.434, + "2020": 0.432, + "2021": 0.432 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr108", + "Region": "N Zerekore", + "1990": 0.26, + "1991": 0.265, + "1992": 0.272, + "1993": 0.279, + "1994": 0.285, + "1995": 0.293, + "1996": 0.3, + "1997": 0.31, + "1998": 0.319, + "1999": 0.328, + "2000": 0.334, + "2001": 0.341, + "2002": 0.351, + "2003": 0.358, + "2004": 0.365, + "2005": 0.375, + "2006": 0.381, + "2007": 0.389, + "2008": 0.396, + "2009": 0.397, + "2010": 0.403, + "2011": 0.408, + "2012": 0.412, + "2013": 0.417, + "2014": 0.422, + "2015": 0.427, + "2016": 0.436, + "2017": 0.444, + "2018": 0.447, + "2019": 0.452, + "2020": 0.451, + "2021": 0.45 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "National", + "GDLCODE": "GNBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.404, + "2006": 0.417, + "2007": 0.424, + "2008": 0.429, + "2009": 0.436, + "2010": 0.443, + "2011": 0.452, + "2012": 0.456, + "2013": 0.46, + "2014": 0.466, + "2015": 0.472, + "2016": 0.478, + "2017": 0.481, + "2018": 0.482, + "2019": 0.49, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr106", + "Region": "Bafata", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.351, + "2006": 0.362, + "2007": 0.363, + "2008": 0.362, + "2009": 0.364, + "2010": 0.366, + "2011": 0.369, + "2012": 0.368, + "2013": 0.367, + "2014": 0.368, + "2015": 0.389, + "2016": 0.411, + "2017": 0.43, + "2018": 0.447, + "2019": 0.47, + "2020": 0.464, + "2021": 0.463 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr104", + "Region": "Biombo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.343, + "2006": 0.354, + "2007": 0.371, + "2008": 0.386, + "2009": 0.403, + "2010": 0.419, + "2011": 0.437, + "2012": 0.449, + "2013": 0.461, + "2014": 0.475, + "2015": 0.479, + "2016": 0.483, + "2017": 0.485, + "2018": 0.483, + "2019": 0.488, + "2020": 0.481, + "2021": 0.481 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr109", + "Region": "Bissau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.535, + "2006": 0.552, + "2007": 0.553, + "2008": 0.552, + "2009": 0.554, + "2010": 0.555, + "2011": 0.559, + "2012": 0.557, + "2013": 0.556, + "2014": 0.557, + "2015": 0.564, + "2016": 0.571, + "2017": 0.575, + "2018": 0.577, + "2019": 0.585, + "2020": 0.578, + "2021": 0.577 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr105", + "Region": "Bolama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.419, + "2006": 0.432, + "2007": 0.434, + "2008": 0.434, + "2009": 0.436, + "2010": 0.439, + "2011": 0.444, + "2012": 0.443, + "2013": 0.442, + "2014": 0.444, + "2015": 0.452, + "2016": 0.461, + "2017": 0.467, + "2018": 0.47, + "2019": 0.48, + "2020": 0.473, + "2021": 0.473 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr108", + "Region": "Cacheu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.41, + "2006": 0.423, + "2007": 0.428, + "2008": 0.431, + "2009": 0.436, + "2010": 0.441, + "2011": 0.449, + "2012": 0.45, + "2013": 0.453, + "2014": 0.457, + "2015": 0.469, + "2016": 0.481, + "2017": 0.49, + "2018": 0.497, + "2019": 0.511, + "2020": 0.504, + "2021": 0.503 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr107", + "Region": "Gabu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.32, + "2006": 0.33, + "2007": 0.332, + "2008": 0.333, + "2009": 0.336, + "2010": 0.339, + "2011": 0.343, + "2012": 0.343, + "2013": 0.344, + "2014": 0.346, + "2015": 0.356, + "2016": 0.367, + "2017": 0.376, + "2018": 0.382, + "2019": 0.394, + "2020": 0.389, + "2021": 0.388 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr103", + "Region": "Oio", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.345, + "2006": 0.356, + "2007": 0.367, + "2008": 0.376, + "2009": 0.387, + "2010": 0.398, + "2011": 0.41, + "2012": 0.418, + "2013": 0.425, + "2014": 0.435, + "2015": 0.436, + "2016": 0.439, + "2017": 0.439, + "2018": 0.436, + "2019": 0.44, + "2020": 0.434, + "2021": 0.433 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr102", + "Region": "Quinara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.373, + "2006": 0.384, + "2007": 0.393, + "2008": 0.399, + "2009": 0.407, + "2010": 0.416, + "2011": 0.426, + "2012": 0.43, + "2013": 0.435, + "2014": 0.443, + "2015": 0.451, + "2016": 0.459, + "2017": 0.465, + "2018": 0.468, + "2019": 0.478, + "2020": 0.472, + "2021": 0.471 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr101", + "Region": "Tombali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.346, + "2006": 0.357, + "2007": 0.367, + "2008": 0.375, + "2009": 0.384, + "2010": 0.394, + "2011": 0.405, + "2012": 0.411, + "2013": 0.417, + "2014": 0.426, + "2015": 0.436, + "2016": 0.447, + "2017": 0.456, + "2018": 0.461, + "2019": 0.474, + "2020": 0.468, + "2021": 0.467 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "National", + "GDLCODE": "GUYt", + "Region": "Total", + "1990": 0.509, + "1991": 0.505, + "1992": 0.52, + "1993": 0.534, + "1994": 0.544, + "1995": 0.549, + "1996": 0.559, + "1997": 0.564, + "1998": 0.569, + "1999": 0.573, + "2000": 0.577, + "2001": 0.584, + "2002": 0.59, + "2003": 0.598, + "2004": 0.612, + "2005": 0.622, + "2006": 0.631, + "2007": 0.638, + "2008": 0.644, + "2009": 0.649, + "2010": 0.656, + "2011": 0.665, + "2012": 0.669, + "2013": 0.673, + "2014": 0.681, + "2015": 0.684, + "2016": 0.691, + "2017": 0.695, + "2018": 0.701, + "2019": 0.708, + "2020": 0.721, + "2021": 0.714 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr101", + "Region": "Barima-Waini", + "1990": 0.399, + "1991": 0.394, + "1992": 0.409, + "1993": 0.423, + "1994": 0.432, + "1995": 0.436, + "1996": 0.446, + "1997": 0.45, + "1998": 0.454, + "1999": 0.458, + "2000": 0.461, + "2001": 0.468, + "2002": 0.473, + "2003": 0.48, + "2004": 0.492, + "2005": 0.501, + "2006": 0.509, + "2007": 0.527, + "2008": 0.543, + "2009": 0.559, + "2010": 0.566, + "2011": 0.576, + "2012": 0.58, + "2013": 0.585, + "2014": 0.593, + "2015": 0.598, + "2016": 0.606, + "2017": 0.612, + "2018": 0.619, + "2019": 0.627, + "2020": 0.64, + "2021": 0.635 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr107", + "Region": "Cuyuni-Mazaruni", + "1990": 0.451, + "1991": 0.446, + "1992": 0.461, + "1993": 0.475, + "1994": 0.485, + "1995": 0.489, + "1996": 0.499, + "1997": 0.504, + "1998": 0.508, + "1999": 0.512, + "2000": 0.516, + "2001": 0.523, + "2002": 0.528, + "2003": 0.536, + "2004": 0.549, + "2005": 0.559, + "2006": 0.567, + "2007": 0.582, + "2008": 0.596, + "2009": 0.609, + "2010": 0.615, + "2011": 0.623, + "2012": 0.626, + "2013": 0.63, + "2014": 0.636, + "2015": 0.637, + "2016": 0.642, + "2017": 0.644, + "2018": 0.648, + "2019": 0.654, + "2020": 0.666, + "2021": 0.661 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr104", + "Region": "Demerara-Mahaica", + "1990": 0.531, + "1991": 0.527, + "1992": 0.541, + "1993": 0.556, + "1994": 0.566, + "1995": 0.571, + "1996": 0.581, + "1997": 0.586, + "1998": 0.591, + "1999": 0.595, + "2000": 0.599, + "2001": 0.607, + "2002": 0.613, + "2003": 0.621, + "2004": 0.635, + "2005": 0.646, + "2006": 0.655, + "2007": 0.662, + "2008": 0.667, + "2009": 0.673, + "2010": 0.679, + "2011": 0.688, + "2012": 0.691, + "2013": 0.694, + "2014": 0.701, + "2015": 0.704, + "2016": 0.71, + "2017": 0.715, + "2018": 0.72, + "2019": 0.727, + "2020": 0.74, + "2021": 0.733 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr106", + "Region": "East Berbice-Corentyne", + "1990": 0.496, + "1991": 0.493, + "1992": 0.507, + "1993": 0.521, + "1994": 0.53, + "1995": 0.535, + "1996": 0.544, + "1997": 0.549, + "1998": 0.554, + "1999": 0.558, + "2000": 0.562, + "2001": 0.569, + "2002": 0.575, + "2003": 0.582, + "2004": 0.596, + "2005": 0.606, + "2006": 0.614, + "2007": 0.623, + "2008": 0.631, + "2009": 0.638, + "2010": 0.645, + "2011": 0.655, + "2012": 0.659, + "2013": 0.663, + "2014": 0.67, + "2015": 0.675, + "2016": 0.681, + "2017": 0.687, + "2018": 0.693, + "2019": 0.701, + "2020": 0.714, + "2021": 0.708 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr103", + "Region": "Essequibo Islands-West Demerara", + "1990": 0.506, + "1991": 0.502, + "1992": 0.517, + "1993": 0.531, + "1994": 0.541, + "1995": 0.546, + "1996": 0.556, + "1997": 0.561, + "1998": 0.566, + "1999": 0.57, + "2000": 0.574, + "2001": 0.581, + "2002": 0.587, + "2003": 0.595, + "2004": 0.609, + "2005": 0.619, + "2006": 0.628, + "2007": 0.633, + "2008": 0.636, + "2009": 0.639, + "2010": 0.646, + "2011": 0.655, + "2012": 0.658, + "2013": 0.662, + "2014": 0.669, + "2015": 0.674, + "2016": 0.681, + "2017": 0.686, + "2018": 0.693, + "2019": 0.701, + "2020": 0.713, + "2021": 0.707 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr105", + "Region": "Mahaica-Berbice", + "1990": 0.503, + "1991": 0.5, + "1992": 0.514, + "1993": 0.528, + "1994": 0.538, + "1995": 0.542, + "1996": 0.552, + "1997": 0.557, + "1998": 0.562, + "1999": 0.566, + "2000": 0.57, + "2001": 0.577, + "2002": 0.582, + "2003": 0.59, + "2004": 0.604, + "2005": 0.614, + "2006": 0.623, + "2007": 0.627, + "2008": 0.631, + "2009": 0.634, + "2010": 0.643, + "2011": 0.655, + "2012": 0.662, + "2013": 0.669, + "2014": 0.679, + "2015": 0.682, + "2016": 0.688, + "2017": 0.692, + "2018": 0.697, + "2019": 0.703, + "2020": 0.716, + "2021": 0.71 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr102", + "Region": "Pomeroon-Supenaam", + "1990": 0.5, + "1991": 0.495, + "1992": 0.511, + "1993": 0.525, + "1994": 0.536, + "1995": 0.54, + "1996": 0.551, + "1997": 0.556, + "1998": 0.561, + "1999": 0.565, + "2000": 0.569, + "2001": 0.576, + "2002": 0.582, + "2003": 0.59, + "2004": 0.604, + "2005": 0.614, + "2006": 0.623, + "2007": 0.621, + "2008": 0.618, + "2009": 0.613, + "2010": 0.622, + "2011": 0.633, + "2012": 0.639, + "2013": 0.645, + "2014": 0.654, + "2015": 0.654, + "2016": 0.657, + "2017": 0.658, + "2018": 0.66, + "2019": 0.663, + "2020": 0.676, + "2021": 0.67 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr108", + "Region": "Potaro-Siparuni", + "1990": 0.391, + "1991": 0.385, + "1992": 0.401, + "1993": 0.416, + "1994": 0.427, + "1995": 0.431, + "1996": 0.441, + "1997": 0.446, + "1998": 0.45, + "1999": 0.453, + "2000": 0.457, + "2001": 0.464, + "2002": 0.47, + "2003": 0.477, + "2004": 0.49, + "2005": 0.499, + "2006": 0.508, + "2007": 0.534, + "2008": 0.557, + "2009": 0.58, + "2010": 0.577, + "2011": 0.575, + "2012": 0.569, + "2013": 0.563, + "2014": 0.56, + "2015": 0.57, + "2016": 0.583, + "2017": 0.594, + "2018": 0.606, + "2019": 0.619, + "2020": 0.632, + "2021": 0.627 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr110", + "Region": "Upper Demerara-Berbice", + "1990": 0.528, + "1991": 0.524, + "1992": 0.539, + "1993": 0.554, + "1994": 0.564, + "1995": 0.568, + "1996": 0.579, + "1997": 0.584, + "1998": 0.589, + "1999": 0.593, + "2000": 0.598, + "2001": 0.605, + "2002": 0.611, + "2003": 0.62, + "2004": 0.634, + "2005": 0.645, + "2006": 0.654, + "2007": 0.664, + "2008": 0.671, + "2009": 0.678, + "2010": 0.684, + "2011": 0.692, + "2012": 0.694, + "2013": 0.697, + "2014": 0.703, + "2015": 0.707, + "2016": 0.714, + "2017": 0.719, + "2018": 0.725, + "2019": 0.733, + "2020": 0.745, + "2021": 0.739 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr109", + "Region": "Upper Takutu-Upper Essequibo", + "1990": 0.421, + "1991": 0.415, + "1992": 0.431, + "1993": 0.446, + "1994": 0.456, + "1995": 0.461, + "1996": 0.471, + "1997": 0.476, + "1998": 0.48, + "1999": 0.483, + "2000": 0.487, + "2001": 0.495, + "2002": 0.5, + "2003": 0.508, + "2004": 0.521, + "2005": 0.531, + "2006": 0.539, + "2007": 0.549, + "2008": 0.558, + "2009": 0.566, + "2010": 0.574, + "2011": 0.583, + "2012": 0.588, + "2013": 0.594, + "2014": 0.602, + "2015": 0.609, + "2016": 0.62, + "2017": 0.628, + "2018": 0.638, + "2019": 0.65, + "2020": 0.663, + "2021": 0.658 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "National", + "GDLCODE": "HTIt", + "Region": "Total", + "1990": 0.429, + "1991": 0.433, + "1992": 0.435, + "1993": 0.436, + "1994": 0.434, + "1995": 0.444, + "1996": 0.45, + "1997": 0.455, + "1998": 0.46, + "1999": 0.466, + "2000": 0.47, + "2001": 0.472, + "2002": 0.476, + "2003": 0.482, + "2004": 0.479, + "2005": 0.49, + "2006": 0.494, + "2007": 0.499, + "2008": 0.503, + "2009": 0.508, + "2010": 0.433, + "2011": 0.512, + "2012": 0.517, + "2013": 0.521, + "2014": 0.525, + "2015": 0.529, + "2016": 0.532, + "2017": 0.539, + "2018": 0.541, + "2019": 0.543, + "2020": 0.54, + "2021": 0.535 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr105", + "Region": "Artibonite", + "1990": 0.37, + "1991": 0.374, + "1992": 0.375, + "1993": 0.376, + "1994": 0.373, + "1995": 0.382, + "1996": 0.388, + "1997": 0.392, + "1998": 0.397, + "1999": 0.403, + "2000": 0.407, + "2001": 0.415, + "2002": 0.425, + "2003": 0.436, + "2004": 0.439, + "2005": 0.454, + "2006": 0.459, + "2007": 0.465, + "2008": 0.47, + "2009": 0.477, + "2010": 0.407, + "2011": 0.483, + "2012": 0.488, + "2013": 0.492, + "2014": 0.495, + "2015": 0.497, + "2016": 0.499, + "2017": 0.505, + "2018": 0.506, + "2019": 0.509, + "2020": 0.506, + "2021": 0.501 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr106", + "Region": "Centre", + "1990": 0.346, + "1991": 0.349, + "1992": 0.35, + "1993": 0.351, + "1994": 0.349, + "1995": 0.359, + "1996": 0.366, + "1997": 0.371, + "1998": 0.377, + "1999": 0.385, + "2000": 0.39, + "2001": 0.39, + "2002": 0.392, + "2003": 0.395, + "2004": 0.391, + "2005": 0.398, + "2006": 0.407, + "2007": 0.416, + "2008": 0.425, + "2009": 0.435, + "2010": 0.373, + "2011": 0.448, + "2012": 0.456, + "2013": 0.463, + "2014": 0.469, + "2015": 0.475, + "2016": 0.48, + "2017": 0.489, + "2018": 0.491, + "2019": 0.493, + "2020": 0.49, + "2021": 0.485 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr108", + "Region": "Grande-Anse, Nippes", + "1990": 0.387, + "1991": 0.39, + "1992": 0.391, + "1993": 0.392, + "1994": 0.389, + "1995": 0.402, + "1996": 0.411, + "1997": 0.419, + "1998": 0.427, + "1999": 0.437, + "2000": 0.444, + "2001": 0.443, + "2002": 0.443, + "2003": 0.446, + "2004": 0.441, + "2005": 0.448, + "2006": 0.452, + "2007": 0.457, + "2008": 0.461, + "2009": 0.466, + "2010": 0.398, + "2011": 0.47, + "2012": 0.474, + "2013": 0.481, + "2014": 0.488, + "2015": 0.494, + "2016": 0.5, + "2017": 0.509, + "2018": 0.511, + "2019": 0.513, + "2020": 0.51, + "2021": 0.505 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr103", + "Region": "North", + "1990": 0.395, + "1991": 0.399, + "1992": 0.4, + "1993": 0.401, + "1994": 0.399, + "1995": 0.411, + "1996": 0.42, + "1997": 0.427, + "1998": 0.435, + "1999": 0.444, + "2000": 0.451, + "2001": 0.455, + "2002": 0.46, + "2003": 0.468, + "2004": 0.467, + "2005": 0.479, + "2006": 0.486, + "2007": 0.494, + "2008": 0.5, + "2009": 0.509, + "2010": 0.437, + "2011": 0.518, + "2012": 0.525, + "2013": 0.532, + "2014": 0.537, + "2015": 0.542, + "2016": 0.546, + "2017": 0.554, + "2018": 0.556, + "2019": 0.559, + "2020": 0.556, + "2021": 0.55 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr104", + "Region": "North-East", + "1990": 0.378, + "1991": 0.382, + "1992": 0.383, + "1993": 0.385, + "1994": 0.382, + "1995": 0.396, + "1996": 0.408, + "1997": 0.417, + "1998": 0.427, + "1999": 0.439, + "2000": 0.447, + "2001": 0.448, + "2002": 0.449, + "2003": 0.453, + "2004": 0.449, + "2005": 0.457, + "2006": 0.462, + "2007": 0.468, + "2008": 0.472, + "2009": 0.479, + "2010": 0.409, + "2011": 0.484, + "2012": 0.489, + "2013": 0.497, + "2014": 0.504, + "2015": 0.511, + "2016": 0.517, + "2017": 0.528, + "2018": 0.53, + "2019": 0.532, + "2020": 0.529, + "2021": 0.524 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr109", + "Region": "North-West", + "1990": 0.419, + "1991": 0.423, + "1992": 0.424, + "1993": 0.425, + "1994": 0.422, + "1995": 0.428, + "1996": 0.43, + "1997": 0.431, + "1998": 0.432, + "1999": 0.434, + "2000": 0.433, + "2001": 0.436, + "2002": 0.439, + "2003": 0.445, + "2004": 0.443, + "2005": 0.454, + "2006": 0.462, + "2007": 0.471, + "2008": 0.479, + "2009": 0.489, + "2010": 0.422, + "2011": 0.502, + "2012": 0.51, + "2013": 0.515, + "2014": 0.518, + "2015": 0.522, + "2016": 0.525, + "2017": 0.531, + "2018": 0.533, + "2019": 0.536, + "2020": 0.532, + "2021": 0.527 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr107", + "Region": "South", + "1990": 0.442, + "1991": 0.446, + "1992": 0.447, + "1993": 0.448, + "1994": 0.446, + "1995": 0.447, + "1996": 0.444, + "1997": 0.439, + "1998": 0.435, + "1999": 0.432, + "2000": 0.427, + "2001": 0.435, + "2002": 0.445, + "2003": 0.457, + "2004": 0.459, + "2005": 0.475, + "2006": 0.481, + "2007": 0.487, + "2008": 0.493, + "2009": 0.5, + "2010": 0.428, + "2011": 0.507, + "2012": 0.513, + "2013": 0.515, + "2014": 0.517, + "2015": 0.519, + "2016": 0.52, + "2017": 0.525, + "2018": 0.526, + "2019": 0.529, + "2020": 0.526, + "2021": 0.52 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr102", + "Region": "South-East", + "1990": 0.407, + "1991": 0.411, + "1992": 0.412, + "1993": 0.413, + "1994": 0.41, + "1995": 0.415, + "1996": 0.416, + "1997": 0.415, + "1998": 0.415, + "1999": 0.416, + "2000": 0.414, + "2001": 0.42, + "2002": 0.427, + "2003": 0.436, + "2004": 0.437, + "2005": 0.45, + "2006": 0.455, + "2007": 0.461, + "2008": 0.466, + "2009": 0.474, + "2010": 0.406, + "2011": 0.48, + "2012": 0.485, + "2013": 0.492, + "2014": 0.498, + "2015": 0.504, + "2016": 0.508, + "2017": 0.517, + "2018": 0.519, + "2019": 0.521, + "2020": 0.518, + "2021": 0.513 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr101", + "Region": "West (incl Metropolitain area)", + "1990": 0.489, + "1991": 0.494, + "1992": 0.497, + "1993": 0.499, + "1994": 0.498, + "1995": 0.509, + "1996": 0.516, + "1997": 0.521, + "1998": 0.528, + "1999": 0.535, + "2000": 0.54, + "2001": 0.54, + "2002": 0.542, + "2003": 0.547, + "2004": 0.541, + "2005": 0.552, + "2006": 0.552, + "2007": 0.554, + "2008": 0.554, + "2009": 0.556, + "2010": 0.47, + "2011": 0.553, + "2012": 0.554, + "2013": 0.557, + "2014": 0.56, + "2015": 0.562, + "2016": 0.564, + "2017": 0.569, + "2018": 0.571, + "2019": 0.574, + "2020": 0.571, + "2021": 0.565 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "National", + "GDLCODE": "HNDt", + "Region": "Total", + "1990": 0.516, + "1991": 0.517, + "1992": 0.521, + "1993": 0.527, + "1994": 0.53, + "1995": 0.536, + "1996": 0.539, + "1997": 0.544, + "1998": 0.527, + "1999": 0.55, + "2000": 0.556, + "2001": 0.559, + "2002": 0.563, + "2003": 0.567, + "2004": 0.572, + "2005": 0.577, + "2006": 0.581, + "2007": 0.586, + "2008": 0.591, + "2009": 0.594, + "2010": 0.597, + "2011": 0.6, + "2012": 0.599, + "2013": 0.603, + "2014": 0.606, + "2015": 0.613, + "2016": 0.618, + "2017": 0.617, + "2018": 0.617, + "2019": 0.632, + "2020": 0.621, + "2021": 0.621 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr101", + "Region": "Atlantida", + "1990": 0.594, + "1991": 0.595, + "1992": 0.6, + "1993": 0.606, + "1994": 0.609, + "1995": 0.616, + "1996": 0.619, + "1997": 0.625, + "1998": 0.605, + "1999": 0.632, + "2000": 0.638, + "2001": 0.642, + "2002": 0.647, + "2003": 0.651, + "2004": 0.656, + "2005": 0.662, + "2006": 0.653, + "2007": 0.646, + "2008": 0.641, + "2009": 0.634, + "2010": 0.629, + "2011": 0.624, + "2012": 0.621, + "2013": 0.622, + "2014": 0.624, + "2015": 0.629, + "2016": 0.631, + "2017": 0.628, + "2018": 0.625, + "2019": 0.638, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr106", + "Region": "Choluteca", + "1990": 0.421, + "1991": 0.422, + "1992": 0.426, + "1993": 0.431, + "1994": 0.433, + "1995": 0.439, + "1996": 0.441, + "1997": 0.446, + "1998": 0.432, + "1999": 0.451, + "2000": 0.455, + "2001": 0.458, + "2002": 0.462, + "2003": 0.465, + "2004": 0.469, + "2005": 0.474, + "2006": 0.492, + "2007": 0.509, + "2008": 0.524, + "2009": 0.535, + "2010": 0.546, + "2011": 0.554, + "2012": 0.555, + "2013": 0.559, + "2014": 0.563, + "2015": 0.571, + "2016": 0.576, + "2017": 0.578, + "2018": 0.579, + "2019": 0.594, + "2020": 0.583, + "2021": 0.583 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr102", + "Region": "Colon", + "1990": 0.555, + "1991": 0.556, + "1992": 0.56, + "1993": 0.566, + "1994": 0.569, + "1995": 0.575, + "1996": 0.579, + "1997": 0.584, + "1998": 0.566, + "1999": 0.591, + "2000": 0.596, + "2001": 0.6, + "2002": 0.604, + "2003": 0.608, + "2004": 0.613, + "2005": 0.619, + "2006": 0.611, + "2007": 0.605, + "2008": 0.6, + "2009": 0.595, + "2010": 0.591, + "2011": 0.586, + "2012": 0.584, + "2013": 0.587, + "2014": 0.59, + "2015": 0.595, + "2016": 0.599, + "2017": 0.598, + "2018": 0.596, + "2019": 0.61, + "2020": 0.6, + "2021": 0.599 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr103", + "Region": "Comayagua", + "1990": 0.517, + "1991": 0.518, + "1992": 0.522, + "1993": 0.528, + "1994": 0.53, + "1995": 0.536, + "1996": 0.539, + "1997": 0.544, + "1998": 0.527, + "1999": 0.551, + "2000": 0.556, + "2001": 0.559, + "2002": 0.563, + "2003": 0.567, + "2004": 0.572, + "2005": 0.577, + "2006": 0.577, + "2007": 0.578, + "2008": 0.58, + "2009": 0.581, + "2010": 0.582, + "2011": 0.583, + "2012": 0.582, + "2013": 0.586, + "2014": 0.59, + "2015": 0.597, + "2016": 0.602, + "2017": 0.602, + "2018": 0.602, + "2019": 0.617, + "2020": 0.606, + "2021": 0.606 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr104", + "Region": "Copan", + "1990": 0.423, + "1991": 0.424, + "1992": 0.428, + "1993": 0.433, + "1994": 0.434, + "1995": 0.44, + "1996": 0.442, + "1997": 0.447, + "1998": 0.432, + "1999": 0.452, + "2000": 0.456, + "2001": 0.459, + "2002": 0.462, + "2003": 0.465, + "2004": 0.469, + "2005": 0.474, + "2006": 0.489, + "2007": 0.502, + "2008": 0.515, + "2009": 0.526, + "2010": 0.536, + "2011": 0.545, + "2012": 0.545, + "2013": 0.549, + "2014": 0.553, + "2015": 0.561, + "2016": 0.566, + "2017": 0.567, + "2018": 0.568, + "2019": 0.583, + "2020": 0.572, + "2021": 0.572 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr105", + "Region": "Cortes", + "1990": 0.573, + "1991": 0.574, + "1992": 0.579, + "1993": 0.585, + "1994": 0.588, + "1995": 0.595, + "1996": 0.598, + "1997": 0.604, + "1998": 0.585, + "1999": 0.611, + "2000": 0.616, + "2001": 0.62, + "2002": 0.625, + "2003": 0.629, + "2004": 0.634, + "2005": 0.64, + "2006": 0.639, + "2007": 0.639, + "2008": 0.64, + "2009": 0.639, + "2010": 0.639, + "2011": 0.638, + "2012": 0.637, + "2013": 0.642, + "2014": 0.646, + "2015": 0.653, + "2016": 0.658, + "2017": 0.658, + "2018": 0.658, + "2019": 0.675, + "2020": 0.663, + "2021": 0.663 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr107", + "Region": "El Paraiso", + "1990": 0.444, + "1991": 0.445, + "1992": 0.449, + "1993": 0.454, + "1994": 0.456, + "1995": 0.461, + "1996": 0.464, + "1997": 0.469, + "1998": 0.454, + "1999": 0.474, + "2000": 0.479, + "2001": 0.482, + "2002": 0.485, + "2003": 0.488, + "2004": 0.493, + "2005": 0.498, + "2006": 0.509, + "2007": 0.52, + "2008": 0.531, + "2009": 0.539, + "2010": 0.547, + "2011": 0.554, + "2012": 0.555, + "2013": 0.56, + "2014": 0.564, + "2015": 0.573, + "2016": 0.578, + "2017": 0.58, + "2018": 0.581, + "2019": 0.597, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr108", + "Region": "Francisco Morazan", + "1990": 0.579, + "1991": 0.58, + "1992": 0.585, + "1993": 0.591, + "1994": 0.594, + "1995": 0.601, + "1996": 0.605, + "1997": 0.61, + "1998": 0.591, + "1999": 0.618, + "2000": 0.623, + "2001": 0.627, + "2002": 0.632, + "2003": 0.636, + "2004": 0.641, + "2005": 0.647, + "2006": 0.651, + "2007": 0.654, + "2008": 0.659, + "2009": 0.662, + "2010": 0.664, + "2011": 0.666, + "2012": 0.663, + "2013": 0.666, + "2014": 0.669, + "2015": 0.675, + "2016": 0.678, + "2017": 0.676, + "2018": 0.674, + "2019": 0.69, + "2020": 0.677, + "2021": 0.677 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr109", + "Region": "Gracias a Dios", + "1990": 0.517, + "1991": 0.517, + "1992": 0.521, + "1993": 0.527, + "1994": 0.529, + "1995": 0.536, + "1996": 0.539, + "1997": 0.544, + "1998": 0.526, + "1999": 0.55, + "2000": 0.555, + "2001": 0.559, + "2002": 0.563, + "2003": 0.567, + "2004": 0.572, + "2005": 0.578, + "2006": 0.566, + "2007": 0.556, + "2008": 0.547, + "2009": 0.537, + "2010": 0.528, + "2011": 0.52, + "2012": 0.52, + "2013": 0.525, + "2014": 0.529, + "2015": 0.537, + "2016": 0.542, + "2017": 0.544, + "2018": 0.545, + "2019": 0.56, + "2020": 0.549, + "2021": 0.55 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr110", + "Region": "Intibuca", + "1990": 0.419, + "1991": 0.419, + "1992": 0.423, + "1993": 0.428, + "1994": 0.43, + "1995": 0.435, + "1996": 0.437, + "1997": 0.442, + "1998": 0.428, + "1999": 0.447, + "2000": 0.451, + "2001": 0.454, + "2002": 0.457, + "2003": 0.46, + "2004": 0.464, + "2005": 0.469, + "2006": 0.482, + "2007": 0.494, + "2008": 0.505, + "2009": 0.513, + "2010": 0.521, + "2011": 0.528, + "2012": 0.53, + "2013": 0.536, + "2014": 0.542, + "2015": 0.552, + "2016": 0.558, + "2017": 0.562, + "2018": 0.564, + "2019": 0.581, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr111", + "Region": "Islas de la Bahia", + "1990": 0.61, + "1991": 0.611, + "1992": 0.616, + "1993": 0.623, + "1994": 0.626, + "1995": 0.633, + "1996": 0.637, + "1997": 0.643, + "1998": 0.622, + "1999": 0.65, + "2000": 0.656, + "2001": 0.66, + "2002": 0.665, + "2003": 0.669, + "2004": 0.675, + "2005": 0.681, + "2006": 0.668, + "2007": 0.657, + "2008": 0.647, + "2009": 0.637, + "2010": 0.628, + "2011": 0.62, + "2012": 0.62, + "2013": 0.626, + "2014": 0.631, + "2015": 0.639, + "2016": 0.645, + "2017": 0.646, + "2018": 0.646, + "2019": 0.663, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr112", + "Region": "La Paz", + "1990": 0.428, + "1991": 0.428, + "1992": 0.432, + "1993": 0.437, + "1994": 0.439, + "1995": 0.444, + "1996": 0.447, + "1997": 0.451, + "1998": 0.437, + "1999": 0.457, + "2000": 0.461, + "2001": 0.464, + "2002": 0.467, + "2003": 0.47, + "2004": 0.475, + "2005": 0.479, + "2006": 0.494, + "2007": 0.508, + "2008": 0.521, + "2009": 0.532, + "2010": 0.542, + "2011": 0.551, + "2012": 0.553, + "2013": 0.56, + "2014": 0.566, + "2015": 0.575, + "2016": 0.582, + "2017": 0.585, + "2018": 0.588, + "2019": 0.605, + "2020": 0.594, + "2021": 0.594 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr113", + "Region": "Lempira", + "1990": 0.396, + "1991": 0.396, + "1992": 0.4, + "1993": 0.404, + "1994": 0.406, + "1995": 0.411, + "1996": 0.413, + "1997": 0.417, + "1998": 0.404, + "1999": 0.422, + "2000": 0.426, + "2001": 0.429, + "2002": 0.432, + "2003": 0.435, + "2004": 0.439, + "2005": 0.443, + "2006": 0.455, + "2007": 0.466, + "2008": 0.477, + "2009": 0.485, + "2010": 0.494, + "2011": 0.501, + "2012": 0.503, + "2013": 0.509, + "2014": 0.515, + "2015": 0.525, + "2016": 0.532, + "2017": 0.535, + "2018": 0.538, + "2019": 0.554, + "2020": 0.544, + "2021": 0.544 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr114", + "Region": "Ocotepeque", + "1990": 0.505, + "1991": 0.505, + "1992": 0.509, + "1993": 0.515, + "1994": 0.517, + "1995": 0.523, + "1996": 0.526, + "1997": 0.531, + "1998": 0.514, + "1999": 0.537, + "2000": 0.542, + "2001": 0.545, + "2002": 0.549, + "2003": 0.553, + "2004": 0.557, + "2005": 0.563, + "2006": 0.56, + "2007": 0.559, + "2008": 0.559, + "2009": 0.558, + "2010": 0.558, + "2011": 0.557, + "2012": 0.558, + "2013": 0.563, + "2014": 0.567, + "2015": 0.576, + "2016": 0.581, + "2017": 0.583, + "2018": 0.584, + "2019": 0.6, + "2020": 0.589, + "2021": 0.589 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr115", + "Region": "Olancho", + "1990": 0.417, + "1991": 0.418, + "1992": 0.421, + "1993": 0.426, + "1994": 0.428, + "1995": 0.433, + "1996": 0.436, + "1997": 0.44, + "1998": 0.426, + "1999": 0.445, + "2000": 0.449, + "2001": 0.452, + "2002": 0.456, + "2003": 0.459, + "2004": 0.463, + "2005": 0.467, + "2006": 0.49, + "2007": 0.51, + "2008": 0.529, + "2009": 0.544, + "2010": 0.559, + "2011": 0.571, + "2012": 0.569, + "2013": 0.57, + "2014": 0.572, + "2015": 0.577, + "2016": 0.58, + "2017": 0.578, + "2018": 0.576, + "2019": 0.589, + "2020": 0.578, + "2021": 0.578 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr116", + "Region": "Santa Barbara", + "1990": 0.398, + "1991": 0.398, + "1992": 0.402, + "1993": 0.407, + "1994": 0.409, + "1995": 0.413, + "1996": 0.416, + "1997": 0.42, + "1998": 0.407, + "1999": 0.425, + "2000": 0.429, + "2001": 0.432, + "2002": 0.435, + "2003": 0.438, + "2004": 0.442, + "2005": 0.446, + "2006": 0.474, + "2007": 0.498, + "2008": 0.52, + "2009": 0.538, + "2010": 0.555, + "2011": 0.569, + "2012": 0.569, + "2013": 0.572, + "2014": 0.576, + "2015": 0.584, + "2016": 0.588, + "2017": 0.589, + "2018": 0.589, + "2019": 0.604, + "2020": 0.594, + "2021": 0.593 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr117", + "Region": "Valle", + "1990": 0.414, + "1991": 0.415, + "1992": 0.419, + "1993": 0.424, + "1994": 0.426, + "1995": 0.431, + "1996": 0.434, + "1997": 0.438, + "1998": 0.424, + "1999": 0.443, + "2000": 0.447, + "2001": 0.45, + "2002": 0.454, + "2003": 0.457, + "2004": 0.461, + "2005": 0.465, + "2006": 0.491, + "2007": 0.513, + "2008": 0.532, + "2009": 0.546, + "2010": 0.559, + "2011": 0.57, + "2012": 0.569, + "2013": 0.573, + "2014": 0.576, + "2015": 0.582, + "2016": 0.586, + "2017": 0.586, + "2018": 0.586, + "2019": 0.6, + "2020": 0.589, + "2021": 0.589 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr118", + "Region": "Yoro", + "1990": 0.58, + "1991": 0.581, + "1992": 0.585, + "1993": 0.592, + "1994": 0.595, + "1995": 0.601, + "1996": 0.605, + "1997": 0.61, + "1998": 0.591, + "1999": 0.617, + "2000": 0.623, + "2001": 0.627, + "2002": 0.632, + "2003": 0.635, + "2004": 0.641, + "2005": 0.647, + "2006": 0.634, + "2007": 0.624, + "2008": 0.614, + "2009": 0.604, + "2010": 0.596, + "2011": 0.587, + "2012": 0.586, + "2013": 0.59, + "2014": 0.594, + "2015": 0.601, + "2016": 0.605, + "2017": 0.605, + "2018": 0.605, + "2019": 0.621, + "2020": 0.61, + "2021": 0.609 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "National", + "GDLCODE": "HUNt", + "Region": "Total", + "1990": 0.72, + "1991": 0.715, + "1992": 0.714, + "1993": 0.722, + "1994": 0.731, + "1995": 0.735, + "1996": 0.741, + "1997": 0.749, + "1998": 0.756, + "1999": 0.763, + "2000": 0.773, + "2001": 0.782, + "2002": 0.791, + "2003": 0.798, + "2004": 0.801, + "2005": 0.806, + "2006": 0.814, + "2007": 0.817, + "2008": 0.823, + "2009": 0.825, + "2010": 0.828, + "2011": 0.83, + "2012": 0.831, + "2013": 0.84, + "2014": 0.838, + "2015": 0.838, + "2016": 0.843, + "2017": 0.845, + "2018": 0.849, + "2019": 0.853, + "2020": 0.849, + "2021": 0.846 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr107", + "Region": "Del-Alfold", + "1990": 0.707, + "1991": 0.703, + "1992": 0.701, + "1993": 0.71, + "1994": 0.72, + "1995": 0.722, + "1996": 0.728, + "1997": 0.737, + "1998": 0.741, + "1999": 0.749, + "2000": 0.758, + "2001": 0.769, + "2002": 0.777, + "2003": 0.782, + "2004": 0.788, + "2005": 0.792, + "2006": 0.801, + "2007": 0.803, + "2008": 0.81, + "2009": 0.811, + "2010": 0.814, + "2011": 0.815, + "2012": 0.817, + "2013": 0.828, + "2014": 0.825, + "2015": 0.827, + "2016": 0.833, + "2017": 0.835, + "2018": 0.844, + "2019": 0.848, + "2020": 0.843, + "2021": 0.841 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr104", + "Region": "Del-Dunantul", + "1990": 0.707, + "1991": 0.7, + "1992": 0.7, + "1993": 0.708, + "1994": 0.719, + "1995": 0.721, + "1996": 0.726, + "1997": 0.734, + "1998": 0.742, + "1999": 0.747, + "2000": 0.757, + "2001": 0.766, + "2002": 0.776, + "2003": 0.78, + "2004": 0.785, + "2005": 0.79, + "2006": 0.794, + "2007": 0.797, + "2008": 0.806, + "2009": 0.808, + "2010": 0.81, + "2011": 0.814, + "2012": 0.814, + "2013": 0.822, + "2014": 0.818, + "2015": 0.817, + "2016": 0.823, + "2017": 0.826, + "2018": 0.831, + "2019": 0.836, + "2020": 0.832, + "2021": 0.829 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr106", + "Region": "Eszak-Alfold", + "1990": 0.699, + "1991": 0.693, + "1992": 0.693, + "1993": 0.699, + "1994": 0.707, + "1995": 0.713, + "1996": 0.719, + "1997": 0.726, + "1998": 0.731, + "1999": 0.74, + "2000": 0.748, + "2001": 0.761, + "2002": 0.769, + "2003": 0.778, + "2004": 0.78, + "2005": 0.784, + "2006": 0.792, + "2007": 0.793, + "2008": 0.799, + "2009": 0.803, + "2010": 0.806, + "2011": 0.811, + "2012": 0.811, + "2013": 0.819, + "2014": 0.816, + "2015": 0.812, + "2016": 0.817, + "2017": 0.82, + "2018": 0.824, + "2019": 0.829, + "2020": 0.825, + "2021": 0.822 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr105", + "Region": "Eszak-Magyarorszag", + "1990": 0.69, + "1991": 0.684, + "1992": 0.684, + "1993": 0.689, + "1994": 0.699, + "1995": 0.704, + "1996": 0.711, + "1997": 0.717, + "1998": 0.725, + "1999": 0.731, + "2000": 0.74, + "2001": 0.749, + "2002": 0.758, + "2003": 0.764, + "2004": 0.767, + "2005": 0.774, + "2006": 0.781, + "2007": 0.783, + "2008": 0.788, + "2009": 0.789, + "2010": 0.791, + "2011": 0.792, + "2012": 0.791, + "2013": 0.803, + "2014": 0.802, + "2015": 0.806, + "2016": 0.81, + "2017": 0.813, + "2018": 0.815, + "2019": 0.817, + "2020": 0.813, + "2021": 0.811 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr102", + "Region": "Kozep-Dunantul", + "1990": 0.719, + "1991": 0.712, + "1992": 0.713, + "1993": 0.722, + "1994": 0.731, + "1995": 0.734, + "1996": 0.74, + "1997": 0.749, + "1998": 0.754, + "1999": 0.761, + "2000": 0.772, + "2001": 0.779, + "2002": 0.784, + "2003": 0.795, + "2004": 0.798, + "2005": 0.803, + "2006": 0.808, + "2007": 0.815, + "2008": 0.82, + "2009": 0.816, + "2010": 0.821, + "2011": 0.824, + "2012": 0.825, + "2013": 0.836, + "2014": 0.833, + "2015": 0.832, + "2016": 0.838, + "2017": 0.839, + "2018": 0.841, + "2019": 0.846, + "2020": 0.841, + "2021": 0.839 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr101", + "Region": "Kozep-Magyarorszag", + "1990": 0.78, + "1991": 0.774, + "1992": 0.775, + "1993": 0.784, + "1994": 0.794, + "1995": 0.799, + "1996": 0.804, + "1997": 0.812, + "1998": 0.821, + "1999": 0.828, + "2000": 0.838, + "2001": 0.849, + "2002": 0.862, + "2003": 0.869, + "2004": 0.875, + "2005": 0.883, + "2006": 0.89, + "2007": 0.895, + "2008": 0.901, + "2009": 0.905, + "2010": 0.907, + "2011": 0.908, + "2012": 0.908, + "2013": 0.916, + "2014": 0.917, + "2015": 0.914, + "2016": 0.917, + "2017": 0.918, + "2018": 0.923, + "2019": 0.93, + "2020": 0.925, + "2021": 0.922 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr103", + "Region": "Nyugat-Dunantul", + "1990": 0.738, + "1991": 0.734, + "1992": 0.733, + "1993": 0.74, + "1994": 0.749, + "1995": 0.754, + "1996": 0.759, + "1997": 0.768, + "1998": 0.773, + "1999": 0.78, + "2000": 0.791, + "2001": 0.798, + "2002": 0.804, + "2003": 0.815, + "2004": 0.816, + "2005": 0.819, + "2006": 0.829, + "2007": 0.83, + "2008": 0.837, + "2009": 0.837, + "2010": 0.841, + "2011": 0.844, + "2012": 0.843, + "2013": 0.853, + "2014": 0.853, + "2015": 0.856, + "2016": 0.858, + "2017": 0.86, + "2018": 0.859, + "2019": 0.864, + "2020": 0.86, + "2021": 0.857 + }, + { + "Country": "Iceland", + "Continent": "Europe", + "ISO_Code": "ISL", + "Level": "National", + "GDLCODE": "ISLt", + "Region": "Total", + "1990": 0.811, + "1991": 0.822, + "1992": 0.828, + "1993": 0.829, + "1994": 0.835, + "1995": 0.833, + "1996": 0.838, + "1997": 0.849, + "1998": 0.86, + "1999": 0.862, + "2000": 0.871, + "2001": 0.879, + "2002": 0.886, + "2003": 0.891, + "2004": 0.895, + "2005": 0.901, + "2006": 0.903, + "2007": 0.909, + "2008": 0.902, + "2009": 0.9, + "2010": 0.902, + "2011": 0.912, + "2012": 0.921, + "2013": 0.929, + "2014": 0.938, + "2015": 0.945, + "2016": 0.948, + "2017": 0.954, + "2018": 0.959, + "2019": 0.96, + "2020": 0.957, + "2021": 0.959 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "National", + "GDLCODE": "INDt", + "Region": "Total", + "1990": 0.434, + "1991": 0.437, + "1992": 0.442, + "1993": 0.446, + "1994": 0.452, + "1995": 0.458, + "1996": 0.466, + "1997": 0.471, + "1998": 0.478, + "1999": 0.486, + "2000": 0.491, + "2001": 0.496, + "2002": 0.503, + "2003": 0.516, + "2004": 0.525, + "2005": 0.534, + "2006": 0.543, + "2007": 0.553, + "2008": 0.56, + "2009": 0.565, + "2010": 0.575, + "2011": 0.588, + "2012": 0.598, + "2013": 0.607, + "2014": 0.619, + "2015": 0.629, + "2016": 0.639, + "2017": 0.644, + "2018": 0.645, + "2019": 0.645, + "2020": 0.642, + "2021": 0.633 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr136", + "Region": "Andaman and Nicobar Islands", + "1990": 0.685, + "1991": 0.69, + "1992": 0.697, + "1993": 0.692, + "1994": 0.688, + "1995": 0.685, + "1996": 0.685, + "1997": 0.682, + "1998": 0.682, + "1999": 0.683, + "2000": 0.686, + "2001": 0.687, + "2002": 0.69, + "2003": 0.702, + "2004": 0.708, + "2005": 0.714, + "2006": 0.721, + "2007": 0.716, + "2008": 0.71, + "2009": 0.702, + "2010": 0.7, + "2011": 0.703, + "2012": 0.702, + "2013": 0.708, + "2014": 0.718, + "2015": 0.726, + "2016": 0.734, + "2017": 0.731, + "2018": 0.726, + "2019": 0.719, + "2020": 0.715, + "2021": 0.706 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr101", + "Region": "Andhra Pradesh", + "1990": 0.427, + "1991": 0.43, + "1992": 0.435, + "1993": 0.438, + "1994": 0.441, + "1995": 0.446, + "1996": 0.451, + "1997": 0.455, + "1998": 0.459, + "1999": 0.465, + "2000": 0.473, + "2001": 0.479, + "2002": 0.488, + "2003": 0.504, + "2004": 0.515, + "2005": 0.526, + "2006": 0.538, + "2007": 0.548, + "2008": 0.557, + "2009": 0.563, + "2010": 0.574, + "2011": 0.589, + "2012": 0.599, + "2013": 0.608, + "2014": 0.621, + "2015": 0.631, + "2016": 0.643, + "2017": 0.645, + "2018": 0.644, + "2019": 0.642, + "2020": 0.639, + "2021": 0.63 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr125", + "Region": "Arunachal Pradesh", + "1990": 0.442, + "1991": 0.444, + "1992": 0.449, + "1993": 0.455, + "1994": 0.461, + "1995": 0.467, + "1996": 0.474, + "1997": 0.48, + "1998": 0.486, + "1999": 0.494, + "2000": 0.497, + "2001": 0.5, + "2002": 0.505, + "2003": 0.516, + "2004": 0.523, + "2005": 0.53, + "2006": 0.537, + "2007": 0.564, + "2008": 0.589, + "2009": 0.609, + "2010": 0.635, + "2011": 0.663, + "2012": 0.687, + "2013": 0.679, + "2014": 0.674, + "2015": 0.664, + "2016": 0.654, + "2017": 0.665, + "2018": 0.672, + "2019": 0.677, + "2020": 0.674, + "2021": 0.665 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr102", + "Region": "Assam", + "1990": 0.412, + "1991": 0.415, + "1992": 0.42, + "1993": 0.426, + "1994": 0.434, + "1995": 0.442, + "1996": 0.451, + "1997": 0.458, + "1998": 0.467, + "1999": 0.476, + "2000": 0.482, + "2001": 0.487, + "2002": 0.494, + "2003": 0.508, + "2004": 0.517, + "2005": 0.526, + "2006": 0.536, + "2007": 0.543, + "2008": 0.547, + "2009": 0.551, + "2010": 0.56, + "2011": 0.572, + "2012": 0.58, + "2013": 0.585, + "2014": 0.593, + "2015": 0.599, + "2016": 0.606, + "2017": 0.61, + "2018": 0.61, + "2019": 0.609, + "2020": 0.606, + "2021": 0.597 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr103", + "Region": "Bihar", + "1990": 0.379, + "1991": 0.382, + "1992": 0.387, + "1993": 0.391, + "1994": 0.397, + "1995": 0.402, + "1996": 0.409, + "1997": 0.413, + "1998": 0.419, + "1999": 0.426, + "2000": 0.43, + "2001": 0.434, + "2002": 0.439, + "2003": 0.45, + "2004": 0.457, + "2005": 0.465, + "2006": 0.473, + "2007": 0.483, + "2008": 0.492, + "2009": 0.498, + "2010": 0.508, + "2011": 0.521, + "2012": 0.531, + "2013": 0.538, + "2014": 0.549, + "2015": 0.558, + "2016": 0.568, + "2017": 0.575, + "2018": 0.579, + "2019": 0.581, + "2020": 0.578, + "2021": 0.571 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr131", + "Region": "Chandigarth", + "1990": 0.635, + "1991": 0.639, + "1992": 0.646, + "1993": 0.64, + "1994": 0.636, + "1995": 0.633, + "1996": 0.631, + "1997": 0.629, + "1998": 0.627, + "1999": 0.628, + "2000": 0.63, + "2001": 0.631, + "2002": 0.634, + "2003": 0.645, + "2004": 0.651, + "2005": 0.658, + "2006": 0.664, + "2007": 0.659, + "2008": 0.653, + "2009": 0.645, + "2010": 0.643, + "2011": 0.644, + "2012": 0.643, + "2013": 0.673, + "2014": 0.706, + "2015": 0.737, + "2016": 0.768, + "2017": 0.767, + "2018": 0.764, + "2019": 0.759, + "2020": 0.755, + "2021": 0.744 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr129", + "Region": "Chhattisgarh", + "1990": 0.562, + "1991": 0.565, + "1992": 0.571, + "1993": 0.566, + "1994": 0.562, + "1995": 0.559, + "1996": 0.558, + "1997": 0.555, + "1998": 0.553, + "1999": 0.553, + "2000": 0.555, + "2001": 0.555, + "2002": 0.559, + "2003": 0.569, + "2004": 0.575, + "2005": 0.581, + "2006": 0.587, + "2007": 0.582, + "2008": 0.576, + "2009": 0.569, + "2010": 0.566, + "2011": 0.568, + "2012": 0.566, + "2013": 0.574, + "2014": 0.585, + "2015": 0.595, + "2016": 0.605, + "2017": 0.611, + "2018": 0.615, + "2019": 0.617, + "2020": 0.614, + "2021": 0.605 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr132", + "Region": "Dadra and Nagar Haveli", + "1990": 0.672, + "1991": 0.675, + "1992": 0.682, + "1993": 0.68, + "1994": 0.676, + "1995": 0.673, + "1996": 0.673, + "1997": 0.67, + "1998": 0.67, + "1999": 0.671, + "2000": 0.673, + "2001": 0.674, + "2002": 0.678, + "2003": 0.69, + "2004": 0.696, + "2005": 0.702, + "2006": 0.709, + "2007": 0.704, + "2008": 0.698, + "2009": 0.69, + "2010": 0.688, + "2011": 0.69, + "2012": 0.689, + "2013": 0.68, + "2014": 0.674, + "2015": 0.665, + "2016": 0.657, + "2017": 0.65, + "2018": 0.641, + "2019": 0.631, + "2020": 0.628, + "2021": 0.62 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr134", + "Region": "Daman and Diu", + "1990": 0.651, + "1991": 0.655, + "1992": 0.663, + "1993": 0.658, + "1994": 0.655, + "1995": 0.652, + "1996": 0.652, + "1997": 0.651, + "1998": 0.65, + "1999": 0.652, + "2000": 0.655, + "2001": 0.656, + "2002": 0.659, + "2003": 0.67, + "2004": 0.676, + "2005": 0.682, + "2006": 0.688, + "2007": 0.684, + "2008": 0.678, + "2009": 0.671, + "2010": 0.669, + "2011": 0.672, + "2012": 0.671, + "2013": 0.677, + "2014": 0.686, + "2015": 0.693, + "2016": 0.701, + "2017": 0.694, + "2018": 0.684, + "2019": 0.674, + "2020": 0.67, + "2021": 0.661 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr104", + "Region": "Goa", + "1990": 0.557, + "1991": 0.561, + "1992": 0.567, + "1993": 0.57, + "1994": 0.573, + "1995": 0.578, + "1996": 0.584, + "1997": 0.588, + "1998": 0.593, + "1999": 0.6, + "2000": 0.609, + "2001": 0.616, + "2002": 0.626, + "2003": 0.643, + "2004": 0.655, + "2005": 0.668, + "2006": 0.681, + "2007": 0.695, + "2008": 0.707, + "2009": 0.716, + "2010": 0.731, + "2011": 0.75, + "2012": 0.765, + "2013": 0.761, + "2014": 0.762, + "2015": 0.758, + "2016": 0.755, + "2017": 0.761, + "2018": 0.764, + "2019": 0.765, + "2020": 0.761, + "2021": 0.751 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr105", + "Region": "Gujarat", + "1990": 0.474, + "1991": 0.477, + "1992": 0.482, + "1993": 0.485, + "1994": 0.488, + "1995": 0.493, + "1996": 0.498, + "1997": 0.502, + "1998": 0.508, + "1999": 0.515, + "2000": 0.521, + "2001": 0.527, + "2002": 0.534, + "2003": 0.549, + "2004": 0.558, + "2005": 0.569, + "2006": 0.579, + "2007": 0.585, + "2008": 0.589, + "2009": 0.592, + "2010": 0.599, + "2011": 0.611, + "2012": 0.618, + "2013": 0.628, + "2014": 0.642, + "2015": 0.654, + "2016": 0.666, + "2017": 0.662, + "2018": 0.657, + "2019": 0.65, + "2020": 0.646, + "2021": 0.638 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr106", + "Region": "Haryana", + "1990": 0.471, + "1991": 0.474, + "1992": 0.479, + "1993": 0.485, + "1994": 0.493, + "1995": 0.501, + "1996": 0.511, + "1997": 0.519, + "1998": 0.528, + "1999": 0.538, + "2000": 0.543, + "2001": 0.548, + "2002": 0.555, + "2003": 0.568, + "2004": 0.577, + "2005": 0.587, + "2006": 0.596, + "2007": 0.606, + "2008": 0.613, + "2009": 0.618, + "2010": 0.628, + "2011": 0.642, + "2012": 0.653, + "2013": 0.663, + "2014": 0.677, + "2015": 0.689, + "2016": 0.701, + "2017": 0.705, + "2018": 0.705, + "2019": 0.704, + "2020": 0.701, + "2021": 0.691 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr107", + "Region": "Himachal Pradesh", + "1990": 0.484, + "1991": 0.487, + "1992": 0.493, + "1993": 0.503, + "1994": 0.514, + "1995": 0.526, + "1996": 0.539, + "1997": 0.55, + "1998": 0.562, + "1999": 0.577, + "2000": 0.584, + "2001": 0.591, + "2002": 0.6, + "2003": 0.617, + "2004": 0.629, + "2005": 0.641, + "2006": 0.653, + "2007": 0.656, + "2008": 0.657, + "2009": 0.657, + "2010": 0.661, + "2011": 0.67, + "2012": 0.675, + "2013": 0.684, + "2014": 0.697, + "2015": 0.707, + "2016": 0.718, + "2017": 0.72, + "2018": 0.719, + "2019": 0.717, + "2020": 0.713, + "2021": 0.703 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr108", + "Region": "Jammu and Kashmir", + "1990": 0.498, + "1991": 0.501, + "1992": 0.507, + "1993": 0.506, + "1994": 0.507, + "1995": 0.508, + "1996": 0.51, + "1997": 0.51, + "1998": 0.512, + "1999": 0.515, + "2000": 0.523, + "2001": 0.531, + "2002": 0.541, + "2003": 0.558, + "2004": 0.571, + "2005": 0.583, + "2006": 0.596, + "2007": 0.608, + "2008": 0.617, + "2009": 0.624, + "2010": 0.636, + "2011": 0.651, + "2012": 0.663, + "2013": 0.666, + "2014": 0.673, + "2015": 0.677, + "2016": 0.682, + "2017": 0.695, + "2018": 0.705, + "2019": 0.712, + "2020": 0.709, + "2021": 0.699 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr128", + "Region": "Jharkhand", + "1990": 0.562, + "1991": 0.565, + "1992": 0.571, + "1993": 0.566, + "1994": 0.562, + "1995": 0.56, + "1996": 0.558, + "1997": 0.555, + "1998": 0.554, + "1999": 0.554, + "2000": 0.555, + "2001": 0.556, + "2002": 0.559, + "2003": 0.57, + "2004": 0.576, + "2005": 0.582, + "2006": 0.588, + "2007": 0.583, + "2008": 0.577, + "2009": 0.569, + "2010": 0.567, + "2011": 0.569, + "2012": 0.567, + "2013": 0.571, + "2014": 0.579, + "2015": 0.585, + "2016": 0.591, + "2017": 0.597, + "2018": 0.599, + "2019": 0.6, + "2020": 0.597, + "2021": 0.589 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr109", + "Region": "Karnataka", + "1990": 0.447, + "1991": 0.45, + "1992": 0.455, + "1993": 0.461, + "1994": 0.467, + "1995": 0.474, + "1996": 0.482, + "1997": 0.489, + "1998": 0.496, + "1999": 0.505, + "2000": 0.512, + "2001": 0.518, + "2002": 0.526, + "2003": 0.54, + "2004": 0.551, + "2005": 0.561, + "2006": 0.572, + "2007": 0.58, + "2008": 0.586, + "2009": 0.59, + "2010": 0.599, + "2011": 0.612, + "2012": 0.622, + "2013": 0.633, + "2014": 0.649, + "2015": 0.662, + "2016": 0.676, + "2017": 0.68, + "2018": 0.68, + "2019": 0.679, + "2020": 0.676, + "2021": 0.667 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr110", + "Region": "Kerala", + "1990": 0.55, + "1991": 0.554, + "1992": 0.56, + "1993": 0.561, + "1994": 0.563, + "1995": 0.565, + "1996": 0.569, + "1997": 0.572, + "1998": 0.575, + "1999": 0.58, + "2000": 0.593, + "2001": 0.606, + "2002": 0.62, + "2003": 0.641, + "2004": 0.658, + "2005": 0.675, + "2006": 0.692, + "2007": 0.698, + "2008": 0.701, + "2009": 0.702, + "2010": 0.709, + "2011": 0.721, + "2012": 0.728, + "2013": 0.738, + "2014": 0.752, + "2015": 0.763, + "2016": 0.774, + "2017": 0.774, + "2018": 0.771, + "2019": 0.766, + "2020": 0.762, + "2021": 0.752 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr135", + "Region": "Lakshadweep", + "1990": 0.694, + "1991": 0.699, + "1992": 0.706, + "1993": 0.701, + "1994": 0.697, + "1995": 0.694, + "1996": 0.694, + "1997": 0.692, + "1998": 0.691, + "1999": 0.692, + "2000": 0.695, + "2001": 0.696, + "2002": 0.7, + "2003": 0.711, + "2004": 0.718, + "2005": 0.724, + "2006": 0.73, + "2007": 0.726, + "2008": 0.72, + "2009": 0.712, + "2010": 0.71, + "2011": 0.712, + "2012": 0.712, + "2013": 0.718, + "2014": 0.728, + "2015": 0.735, + "2016": 0.744, + "2017": 0.741, + "2018": 0.735, + "2019": 0.728, + "2020": 0.725, + "2021": 0.715 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr111", + "Region": "Madhya Pradesh", + "1990": 0.407, + "1991": 0.41, + "1992": 0.415, + "1993": 0.418, + "1994": 0.422, + "1995": 0.427, + "1996": 0.432, + "1997": 0.436, + "1998": 0.441, + "1999": 0.447, + "2000": 0.453, + "2001": 0.457, + "2002": 0.464, + "2003": 0.477, + "2004": 0.486, + "2005": 0.495, + "2006": 0.505, + "2007": 0.513, + "2008": 0.518, + "2009": 0.522, + "2010": 0.531, + "2011": 0.543, + "2012": 0.551, + "2013": 0.56, + "2014": 0.574, + "2015": 0.585, + "2016": 0.597, + "2017": 0.603, + "2018": 0.606, + "2019": 0.607, + "2020": 0.604, + "2021": 0.596 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr112", + "Region": "Maharashtra", + "1990": 0.498, + "1991": 0.501, + "1992": 0.507, + "1993": 0.511, + "1994": 0.515, + "1995": 0.521, + "1996": 0.527, + "1997": 0.533, + "1998": 0.539, + "1999": 0.546, + "2000": 0.552, + "2001": 0.557, + "2002": 0.565, + "2003": 0.579, + "2004": 0.589, + "2005": 0.598, + "2006": 0.608, + "2007": 0.617, + "2008": 0.624, + "2009": 0.629, + "2010": 0.638, + "2011": 0.652, + "2012": 0.662, + "2013": 0.667, + "2014": 0.676, + "2015": 0.683, + "2016": 0.69, + "2017": 0.696, + "2018": 0.699, + "2019": 0.701, + "2020": 0.698, + "2021": 0.688 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr113", + "Region": "Manipur", + "1990": 0.499, + "1991": 0.502, + "1992": 0.508, + "1993": 0.512, + "1994": 0.517, + "1995": 0.522, + "1996": 0.529, + "1997": 0.534, + "1998": 0.54, + "1999": 0.548, + "2000": 0.553, + "2001": 0.557, + "2002": 0.563, + "2003": 0.576, + "2004": 0.585, + "2005": 0.593, + "2006": 0.602, + "2007": 0.621, + "2008": 0.638, + "2009": 0.654, + "2010": 0.674, + "2011": 0.699, + "2012": 0.72, + "2013": 0.711, + "2014": 0.706, + "2015": 0.698, + "2016": 0.689, + "2017": 0.692, + "2018": 0.692, + "2019": 0.691, + "2020": 0.687, + "2021": 0.678 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr114", + "Region": "Meghalaya", + "1990": 0.461, + "1991": 0.463, + "1992": 0.469, + "1993": 0.467, + "1994": 0.466, + "1995": 0.465, + "1996": 0.465, + "1997": 0.463, + "1998": 0.462, + "1999": 0.462, + "2000": 0.471, + "2001": 0.478, + "2002": 0.488, + "2003": 0.504, + "2004": 0.516, + "2005": 0.528, + "2006": 0.54, + "2007": 0.56, + "2008": 0.578, + "2009": 0.593, + "2010": 0.613, + "2011": 0.637, + "2012": 0.657, + "2013": 0.653, + "2014": 0.654, + "2015": 0.651, + "2016": 0.649, + "2017": 0.654, + "2018": 0.655, + "2019": 0.654, + "2020": 0.651, + "2021": 0.643 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr115", + "Region": "Mizoram", + "1990": 0.531, + "1991": 0.535, + "1992": 0.541, + "1993": 0.541, + "1994": 0.542, + "1995": 0.544, + "1996": 0.547, + "1997": 0.548, + "1998": 0.55, + "1999": 0.554, + "2000": 0.564, + "2001": 0.572, + "2002": 0.583, + "2003": 0.6, + "2004": 0.613, + "2005": 0.626, + "2006": 0.639, + "2007": 0.651, + "2008": 0.66, + "2009": 0.667, + "2010": 0.679, + "2011": 0.696, + "2012": 0.709, + "2013": 0.704, + "2014": 0.704, + "2015": 0.7, + "2016": 0.698, + "2017": 0.701, + "2018": 0.702, + "2019": 0.701, + "2020": 0.697, + "2021": 0.688 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr116", + "Region": "Nagaland", + "1990": 0.539, + "1991": 0.542, + "1992": 0.548, + "1993": 0.541, + "1994": 0.536, + "1995": 0.531, + "1996": 0.527, + "1997": 0.521, + "1998": 0.517, + "1999": 0.514, + "2000": 0.518, + "2001": 0.521, + "2002": 0.526, + "2003": 0.538, + "2004": 0.545, + "2005": 0.553, + "2006": 0.56, + "2007": 0.585, + "2008": 0.608, + "2009": 0.629, + "2010": 0.654, + "2011": 0.683, + "2012": 0.708, + "2013": 0.698, + "2014": 0.691, + "2015": 0.682, + "2016": 0.672, + "2017": 0.678, + "2018": 0.681, + "2019": 0.683, + "2020": 0.679, + "2021": 0.67 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr124", + "Region": "New Delhi", + "1990": 0.58, + "1991": 0.585, + "1992": 0.592, + "1993": 0.598, + "1994": 0.606, + "1995": 0.615, + "1996": 0.625, + "1997": 0.633, + "1998": 0.643, + "1999": 0.654, + "2000": 0.657, + "2001": 0.659, + "2002": 0.663, + "2003": 0.673, + "2004": 0.679, + "2005": 0.685, + "2006": 0.692, + "2007": 0.696, + "2008": 0.698, + "2009": 0.698, + "2010": 0.702, + "2011": 0.711, + "2012": 0.716, + "2013": 0.72, + "2014": 0.729, + "2015": 0.734, + "2016": 0.739, + "2017": 0.743, + "2018": 0.744, + "2019": 0.744, + "2020": 0.74, + "2021": 0.73 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr117", + "Region": "Orissa", + "1990": 0.402, + "1991": 0.405, + "1992": 0.409, + "1993": 0.413, + "1994": 0.418, + "1995": 0.424, + "1996": 0.43, + "1997": 0.435, + "1998": 0.441, + "1999": 0.448, + "2000": 0.452, + "2001": 0.456, + "2002": 0.462, + "2003": 0.473, + "2004": 0.481, + "2005": 0.489, + "2006": 0.497, + "2007": 0.507, + "2008": 0.514, + "2009": 0.519, + "2010": 0.529, + "2011": 0.542, + "2012": 0.552, + "2013": 0.562, + "2014": 0.575, + "2015": 0.586, + "2016": 0.598, + "2017": 0.604, + "2018": 0.607, + "2019": 0.608, + "2020": 0.605, + "2021": 0.597 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr133", + "Region": "Puducherry", + "1990": 0.711, + "1991": 0.715, + "1992": 0.723, + "1993": 0.725, + "1994": 0.723, + "1995": 0.72, + "1996": 0.719, + "1997": 0.717, + "1998": 0.716, + "1999": 0.718, + "2000": 0.72, + "2001": 0.721, + "2002": 0.725, + "2003": 0.737, + "2004": 0.744, + "2005": 0.75, + "2006": 0.757, + "2007": 0.753, + "2008": 0.746, + "2009": 0.738, + "2010": 0.736, + "2011": 0.738, + "2012": 0.737, + "2013": 0.735, + "2014": 0.736, + "2015": 0.734, + "2016": 0.733, + "2017": 0.737, + "2018": 0.739, + "2019": 0.739, + "2020": 0.736, + "2021": 0.726 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr118", + "Region": "Punjab", + "1990": 0.501, + "1991": 0.505, + "1992": 0.51, + "1993": 0.517, + "1994": 0.525, + "1995": 0.533, + "1996": 0.542, + "1997": 0.55, + "1998": 0.559, + "1999": 0.569, + "2000": 0.573, + "2001": 0.577, + "2002": 0.582, + "2003": 0.595, + "2004": 0.603, + "2005": 0.611, + "2006": 0.619, + "2007": 0.628, + "2008": 0.636, + "2009": 0.641, + "2010": 0.651, + "2011": 0.665, + "2012": 0.675, + "2013": 0.684, + "2014": 0.696, + "2015": 0.706, + "2016": 0.717, + "2017": 0.716, + "2018": 0.712, + "2019": 0.707, + "2020": 0.703, + "2021": 0.694 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr119", + "Region": "Rajasthan", + "1990": 0.406, + "1991": 0.408, + "1992": 0.413, + "1993": 0.418, + "1994": 0.424, + "1995": 0.431, + "1996": 0.438, + "1997": 0.444, + "1998": 0.45, + "1999": 0.457, + "2000": 0.463, + "2001": 0.467, + "2002": 0.474, + "2003": 0.487, + "2004": 0.496, + "2005": 0.505, + "2006": 0.514, + "2007": 0.522, + "2008": 0.529, + "2009": 0.533, + "2010": 0.542, + "2011": 0.555, + "2012": 0.563, + "2013": 0.576, + "2014": 0.592, + "2015": 0.606, + "2016": 0.622, + "2017": 0.634, + "2018": 0.643, + "2019": 0.65, + "2020": 0.647, + "2021": 0.638 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr120", + "Region": "Sikkim", + "1990": 0.546, + "1991": 0.549, + "1992": 0.554, + "1993": 0.549, + "1994": 0.545, + "1995": 0.543, + "1996": 0.541, + "1997": 0.539, + "1998": 0.537, + "1999": 0.537, + "2000": 0.543, + "2001": 0.548, + "2002": 0.555, + "2003": 0.569, + "2004": 0.578, + "2005": 0.587, + "2006": 0.597, + "2007": 0.606, + "2008": 0.613, + "2009": 0.618, + "2010": 0.628, + "2011": 0.641, + "2012": 0.65, + "2013": 0.663, + "2014": 0.68, + "2015": 0.695, + "2016": 0.71, + "2017": 0.714, + "2018": 0.715, + "2019": 0.715, + "2020": 0.711, + "2021": 0.702 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr121", + "Region": "Tamil Nadu", + "1990": 0.475, + "1991": 0.478, + "1992": 0.484, + "1993": 0.488, + "1994": 0.494, + "1995": 0.5, + "1996": 0.507, + "1997": 0.513, + "1998": 0.52, + "1999": 0.529, + "2000": 0.537, + "2001": 0.545, + "2002": 0.554, + "2003": 0.571, + "2004": 0.583, + "2005": 0.596, + "2006": 0.609, + "2007": 0.618, + "2008": 0.625, + "2009": 0.631, + "2010": 0.641, + "2011": 0.656, + "2012": 0.667, + "2013": 0.673, + "2014": 0.684, + "2015": 0.693, + "2016": 0.702, + "2017": 0.703, + "2018": 0.702, + "2019": 0.699, + "2020": 0.695, + "2021": 0.686 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr130", + "Region": "Telangana", + "1990": 0.624, + "1991": 0.628, + "1992": 0.634, + "1993": 0.628, + "1994": 0.624, + "1995": 0.621, + "1996": 0.62, + "1997": 0.617, + "1998": 0.616, + "1999": 0.617, + "2000": 0.618, + "2001": 0.619, + "2002": 0.623, + "2003": 0.634, + "2004": 0.64, + "2005": 0.646, + "2006": 0.652, + "2007": 0.647, + "2008": 0.641, + "2009": 0.633, + "2010": 0.631, + "2011": 0.633, + "2012": 0.631, + "2013": 0.637, + "2014": 0.646, + "2015": 0.654, + "2016": 0.662, + "2017": 0.664, + "2018": 0.662, + "2019": 0.658, + "2020": 0.656, + "2021": 0.647 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr126", + "Region": "Tripura", + "1990": 0.449, + "1991": 0.452, + "1992": 0.457, + "1993": 0.465, + "1994": 0.474, + "1995": 0.483, + "1996": 0.493, + "1997": 0.502, + "1998": 0.511, + "1999": 0.522, + "2000": 0.525, + "2001": 0.528, + "2002": 0.532, + "2003": 0.543, + "2004": 0.55, + "2005": 0.557, + "2006": 0.564, + "2007": 0.575, + "2008": 0.583, + "2009": 0.59, + "2010": 0.602, + "2011": 0.618, + "2012": 0.63, + "2013": 0.633, + "2014": 0.641, + "2015": 0.646, + "2016": 0.651, + "2017": 0.65, + "2018": 0.646, + "2019": 0.64, + "2020": 0.637, + "2021": 0.629 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr123", + "Region": "Uttar Pradesh", + "1990": 0.398, + "1991": 0.4, + "1992": 0.405, + "1993": 0.411, + "1994": 0.417, + "1995": 0.423, + "1996": 0.431, + "1997": 0.437, + "1998": 0.443, + "1999": 0.451, + "2000": 0.456, + "2001": 0.461, + "2002": 0.468, + "2003": 0.48, + "2004": 0.489, + "2005": 0.498, + "2006": 0.508, + "2007": 0.514, + "2008": 0.518, + "2009": 0.521, + "2010": 0.528, + "2011": 0.538, + "2012": 0.545, + "2013": 0.554, + "2014": 0.567, + "2015": 0.577, + "2016": 0.588, + "2017": 0.595, + "2018": 0.6, + "2019": 0.603, + "2020": 0.6, + "2021": 0.592 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr127", + "Region": "Uttaranchal", + "1990": 0.627, + "1991": 0.63, + "1992": 0.635, + "1993": 0.634, + "1994": 0.63, + "1995": 0.626, + "1996": 0.625, + "1997": 0.621, + "1998": 0.62, + "1999": 0.62, + "2000": 0.621, + "2001": 0.622, + "2002": 0.626, + "2003": 0.637, + "2004": 0.644, + "2005": 0.65, + "2006": 0.656, + "2007": 0.651, + "2008": 0.645, + "2009": 0.636, + "2010": 0.634, + "2011": 0.635, + "2012": 0.633, + "2013": 0.642, + "2014": 0.655, + "2015": 0.666, + "2016": 0.676, + "2017": 0.682, + "2018": 0.684, + "2019": 0.684, + "2020": 0.681, + "2021": 0.672 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr122", + "Region": "West Bengal", + "1990": 0.443, + "1991": 0.446, + "1992": 0.451, + "1993": 0.456, + "1994": 0.462, + "1995": 0.468, + "1996": 0.476, + "1997": 0.481, + "1998": 0.488, + "1999": 0.496, + "2000": 0.5, + "2001": 0.503, + "2002": 0.508, + "2003": 0.519, + "2004": 0.527, + "2005": 0.534, + "2006": 0.542, + "2007": 0.549, + "2008": 0.555, + "2009": 0.558, + "2010": 0.567, + "2011": 0.578, + "2012": 0.586, + "2013": 0.596, + "2014": 0.61, + "2015": 0.622, + "2016": 0.634, + "2017": 0.637, + "2018": 0.637, + "2019": 0.636, + "2020": 0.633, + "2021": 0.624 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "National", + "GDLCODE": "IDNt", + "Region": "Total", + "1990": 0.526, + "1991": 0.532, + "1992": 0.54, + "1993": 0.548, + "1994": 0.558, + "1995": 0.569, + "1996": 0.578, + "1997": 0.589, + "1998": 0.585, + "1999": 0.59, + "2000": 0.595, + "2001": 0.604, + "2002": 0.612, + "2003": 0.621, + "2004": 0.619, + "2005": 0.632, + "2006": 0.639, + "2007": 0.643, + "2008": 0.646, + "2009": 0.657, + "2010": 0.664, + "2011": 0.671, + "2012": 0.678, + "2013": 0.683, + "2014": 0.687, + "2015": 0.695, + "2016": 0.699, + "2017": 0.704, + "2018": 0.71, + "2019": 0.716, + "2020": 0.709, + "2021": 0.705 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr116", + "Region": "Bali", + "1990": 0.56, + "1991": 0.567, + "1992": 0.574, + "1993": 0.583, + "1994": 0.594, + "1995": 0.605, + "1996": 0.614, + "1997": 0.625, + "1998": 0.628, + "1999": 0.638, + "2000": 0.649, + "2001": 0.663, + "2002": 0.678, + "2003": 0.692, + "2004": 0.682, + "2005": 0.687, + "2006": 0.686, + "2007": 0.681, + "2008": 0.683, + "2009": 0.692, + "2010": 0.698, + "2011": 0.704, + "2012": 0.709, + "2013": 0.713, + "2014": 0.716, + "2015": 0.723, + "2016": 0.725, + "2017": 0.73, + "2018": 0.736, + "2019": 0.742, + "2020": 0.735, + "2021": 0.73 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr109", + "Region": "Bangka Belitung", + "1990": 0.559, + "1991": 0.566, + "1992": 0.574, + "1993": 0.583, + "1994": 0.594, + "1995": 0.606, + "1996": 0.616, + "1997": 0.627, + "1998": 0.618, + "1999": 0.618, + "2000": 0.618, + "2001": 0.621, + "2002": 0.624, + "2003": 0.627, + "2004": 0.627, + "2005": 0.641, + "2006": 0.651, + "2007": 0.656, + "2008": 0.658, + "2009": 0.668, + "2010": 0.674, + "2011": 0.68, + "2012": 0.686, + "2013": 0.687, + "2014": 0.686, + "2015": 0.691, + "2016": 0.689, + "2017": 0.69, + "2018": 0.696, + "2019": 0.702, + "2020": 0.695, + "2021": 0.691 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr115", + "Region": "Banten", + "1990": 0.561, + "1991": 0.569, + "1992": 0.578, + "1993": 0.587, + "1994": 0.598, + "1995": 0.61, + "1996": 0.62, + "1997": 0.631, + "1998": 0.623, + "1999": 0.623, + "2000": 0.623, + "2001": 0.626, + "2002": 0.629, + "2003": 0.632, + "2004": 0.626, + "2005": 0.635, + "2006": 0.638, + "2007": 0.637, + "2008": 0.643, + "2009": 0.656, + "2010": 0.665, + "2011": 0.675, + "2012": 0.684, + "2013": 0.688, + "2014": 0.691, + "2015": 0.698, + "2016": 0.7, + "2017": 0.705, + "2018": 0.71, + "2019": 0.717, + "2020": 0.71, + "2021": 0.705 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr107", + "Region": "Bengkulu", + "1990": 0.504, + "1991": 0.51, + "1992": 0.518, + "1993": 0.526, + "1994": 0.536, + "1995": 0.546, + "1996": 0.555, + "1997": 0.565, + "1998": 0.565, + "1999": 0.573, + "2000": 0.582, + "2001": 0.593, + "2002": 0.605, + "2003": 0.616, + "2004": 0.614, + "2005": 0.626, + "2006": 0.633, + "2007": 0.635, + "2008": 0.642, + "2009": 0.656, + "2010": 0.666, + "2011": 0.676, + "2012": 0.686, + "2013": 0.691, + "2014": 0.696, + "2015": 0.705, + "2016": 0.709, + "2017": 0.715, + "2018": 0.721, + "2019": 0.728, + "2020": 0.72, + "2021": 0.716 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr112", + "Region": "Central Java", + "1990": 0.526, + "1991": 0.532, + "1992": 0.539, + "1993": 0.546, + "1994": 0.556, + "1995": 0.567, + "1996": 0.575, + "1997": 0.586, + "1998": 0.58, + "1999": 0.583, + "2000": 0.586, + "2001": 0.592, + "2002": 0.598, + "2003": 0.605, + "2004": 0.606, + "2005": 0.621, + "2006": 0.631, + "2007": 0.638, + "2008": 0.641, + "2009": 0.651, + "2010": 0.657, + "2011": 0.663, + "2012": 0.67, + "2013": 0.676, + "2014": 0.681, + "2015": 0.692, + "2016": 0.697, + "2017": 0.704, + "2018": 0.709, + "2019": 0.716, + "2020": 0.709, + "2021": 0.704 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr121", + "Region": "Central Kalimantan", + "1990": 0.509, + "1991": 0.516, + "1992": 0.525, + "1993": 0.534, + "1994": 0.544, + "1995": 0.555, + "1996": 0.565, + "1997": 0.575, + "1998": 0.574, + "1999": 0.581, + "2000": 0.589, + "2001": 0.599, + "2002": 0.609, + "2003": 0.619, + "2004": 0.621, + "2005": 0.637, + "2006": 0.648, + "2007": 0.654, + "2008": 0.651, + "2009": 0.656, + "2010": 0.657, + "2011": 0.657, + "2012": 0.658, + "2013": 0.663, + "2014": 0.666, + "2015": 0.674, + "2016": 0.676, + "2017": 0.681, + "2018": 0.687, + "2019": 0.694, + "2020": 0.687, + "2021": 0.682 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr125", + "Region": "Central Sulawesi", + "1990": 0.49, + "1991": 0.498, + "1992": 0.506, + "1993": 0.514, + "1994": 0.525, + "1995": 0.535, + "1996": 0.545, + "1997": 0.555, + "1998": 0.555, + "1999": 0.563, + "2000": 0.571, + "2001": 0.582, + "2002": 0.594, + "2003": 0.605, + "2004": 0.602, + "2005": 0.613, + "2006": 0.619, + "2007": 0.62, + "2008": 0.619, + "2009": 0.626, + "2010": 0.629, + "2011": 0.631, + "2012": 0.634, + "2013": 0.644, + "2014": 0.653, + "2015": 0.666, + "2016": 0.674, + "2017": 0.684, + "2018": 0.69, + "2019": 0.697, + "2020": 0.69, + "2021": 0.685 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr101", + "Region": "DI Aceh", + "1990": 0.521, + "1991": 0.528, + "1992": 0.536, + "1993": 0.545, + "1994": 0.556, + "1995": 0.567, + "1996": 0.577, + "1997": 0.587, + "1998": 0.585, + "1999": 0.592, + "2000": 0.599, + "2001": 0.609, + "2002": 0.619, + "2003": 0.629, + "2004": 0.629, + "2005": 0.643, + "2006": 0.652, + "2007": 0.658, + "2008": 0.659, + "2009": 0.668, + "2010": 0.673, + "2011": 0.678, + "2012": 0.683, + "2013": 0.688, + "2014": 0.691, + "2015": 0.7, + "2016": 0.703, + "2017": 0.708, + "2018": 0.714, + "2019": 0.721, + "2020": 0.714, + "2021": 0.709 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr113", + "Region": "DI Yogyakarta", + "1990": 0.601, + "1991": 0.607, + "1992": 0.615, + "1993": 0.624, + "1994": 0.635, + "1995": 0.646, + "1996": 0.657, + "1997": 0.668, + "1998": 0.662, + "1999": 0.665, + "2000": 0.668, + "2001": 0.674, + "2002": 0.681, + "2003": 0.688, + "2004": 0.686, + "2005": 0.7, + "2006": 0.709, + "2007": 0.713, + "2008": 0.713, + "2009": 0.72, + "2010": 0.723, + "2011": 0.726, + "2012": 0.73, + "2013": 0.734, + "2014": 0.738, + "2015": 0.747, + "2016": 0.75, + "2017": 0.755, + "2018": 0.761, + "2019": 0.768, + "2020": 0.76, + "2021": 0.756 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr110", + "Region": "DKI Jakarta", + "1990": 0.635, + "1991": 0.644, + "1992": 0.654, + "1993": 0.664, + "1994": 0.677, + "1995": 0.691, + "1996": 0.702, + "1997": 0.715, + "1998": 0.708, + "1999": 0.709, + "2000": 0.711, + "2001": 0.716, + "2002": 0.722, + "2003": 0.727, + "2004": 0.723, + "2005": 0.735, + "2006": 0.741, + "2007": 0.74, + "2008": 0.738, + "2009": 0.744, + "2010": 0.746, + "2011": 0.748, + "2012": 0.75, + "2013": 0.752, + "2014": 0.752, + "2015": 0.756, + "2016": 0.756, + "2017": 0.758, + "2018": 0.764, + "2019": 0.771, + "2020": 0.764, + "2021": 0.759 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr114", + "Region": "East Java", + "1990": 0.523, + "1991": 0.529, + "1992": 0.536, + "1993": 0.543, + "1994": 0.553, + "1995": 0.564, + "1996": 0.573, + "1997": 0.583, + "1998": 0.58, + "1999": 0.586, + "2000": 0.591, + "2001": 0.601, + "2002": 0.61, + "2003": 0.619, + "2004": 0.614, + "2005": 0.623, + "2006": 0.626, + "2007": 0.628, + "2008": 0.634, + "2009": 0.647, + "2010": 0.656, + "2011": 0.666, + "2012": 0.676, + "2013": 0.681, + "2014": 0.684, + "2015": 0.693, + "2016": 0.697, + "2017": 0.702, + "2018": 0.708, + "2019": 0.715, + "2020": 0.707, + "2021": 0.703 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr123", + "Region": "East Kalimantan", + "1990": 0.574, + "1991": 0.582, + "1992": 0.591, + "1993": 0.601, + "1994": 0.612, + "1995": 0.624, + "1996": 0.635, + "1997": 0.646, + "1998": 0.642, + "1999": 0.646, + "2000": 0.65, + "2001": 0.658, + "2002": 0.666, + "2003": 0.673, + "2004": 0.672, + "2005": 0.685, + "2006": 0.693, + "2007": 0.696, + "2008": 0.696, + "2009": 0.704, + "2010": 0.708, + "2011": 0.713, + "2012": 0.717, + "2013": 0.718, + "2014": 0.718, + "2015": 0.723, + "2016": 0.723, + "2017": 0.725, + "2018": 0.731, + "2019": 0.738, + "2020": 0.731, + "2021": 0.726 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr118", + "Region": "East Nusa Tenggara", + "1990": 0.483, + "1991": 0.489, + "1992": 0.497, + "1993": 0.505, + "1994": 0.515, + "1995": 0.525, + "1996": 0.534, + "1997": 0.543, + "1998": 0.535, + "1999": 0.534, + "2000": 0.534, + "2001": 0.536, + "2002": 0.539, + "2003": 0.541, + "2004": 0.544, + "2005": 0.559, + "2006": 0.57, + "2007": 0.578, + "2008": 0.584, + "2009": 0.596, + "2010": 0.605, + "2011": 0.614, + "2012": 0.624, + "2013": 0.628, + "2014": 0.632, + "2015": 0.64, + "2016": 0.643, + "2017": 0.648, + "2018": 0.654, + "2019": 0.66, + "2020": 0.653, + "2021": 0.649 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr119", + "Region": "East Timor", + "1990": 0.479, + "1991": 0.484, + "1992": 0.49, + "1993": 0.496, + "1994": 0.506, + "1995": 0.515, + "1996": 0.523, + "1997": 0.532, + "1998": 0.523, + "1999": 0.522, + "2000": 0.522, + "2001": 0.524, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": null, + "2011": null, + "2012": null, + "2013": null, + "2014": null, + "2015": null, + "2016": null, + "2017": null, + "2018": null, + "2019": null, + "2020": null, + "2021": null + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr128", + "Region": "Gorontalo", + "1990": 0.484, + "1991": 0.491, + "1992": 0.5, + "1993": 0.509, + "1994": 0.519, + "1995": 0.53, + "1996": 0.54, + "1997": 0.55, + "1998": 0.542, + "1999": 0.541, + "2000": 0.542, + "2001": 0.545, + "2002": 0.548, + "2003": 0.55, + "2004": 0.557, + "2005": 0.576, + "2006": 0.591, + "2007": 0.601, + "2008": 0.601, + "2009": 0.608, + "2010": 0.612, + "2011": 0.615, + "2012": 0.619, + "2013": 0.627, + "2014": 0.635, + "2015": 0.647, + "2016": 0.654, + "2017": 0.663, + "2018": 0.668, + "2019": 0.675, + "2020": 0.668, + "2021": 0.663 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr130", + "Region": "Irian Jaya (Papua and Papua Barat)", + "1990": 0.523, + "1991": 0.53, + "1992": 0.539, + "1993": 0.547, + "1994": 0.558, + "1995": 0.569, + "1996": 0.579, + "1997": 0.59, + "1998": 0.581, + "1999": 0.581, + "2000": 0.582, + "2001": 0.585, + "2002": 0.588, + "2003": 0.591, + "2004": 0.585, + "2005": 0.592, + "2006": 0.594, + "2007": 0.593, + "2008": 0.587, + "2009": 0.588, + "2010": 0.586, + "2011": 0.583, + "2012": 0.58, + "2013": 0.593, + "2014": 0.605, + "2015": 0.622, + "2016": 0.634, + "2017": 0.647, + "2018": 0.653, + "2019": 0.659, + "2020": 0.652, + "2021": 0.648 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr105", + "Region": "Jambi", + "1990": 0.514, + "1991": 0.521, + "1992": 0.529, + "1993": 0.537, + "1994": 0.548, + "1995": 0.559, + "1996": 0.568, + "1997": 0.579, + "1998": 0.577, + "1999": 0.585, + "2000": 0.592, + "2001": 0.603, + "2002": 0.614, + "2003": 0.625, + "2004": 0.623, + "2005": 0.636, + "2006": 0.644, + "2007": 0.647, + "2008": 0.648, + "2009": 0.657, + "2010": 0.662, + "2011": 0.666, + "2012": 0.671, + "2013": 0.676, + "2014": 0.68, + "2015": 0.689, + "2016": 0.692, + "2017": 0.698, + "2018": 0.704, + "2019": 0.71, + "2020": 0.703, + "2021": 0.698 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr108", + "Region": "Lampung", + "1990": 0.511, + "1991": 0.517, + "1992": 0.524, + "1993": 0.532, + "1994": 0.542, + "1995": 0.553, + "1996": 0.562, + "1997": 0.572, + "1998": 0.566, + "1999": 0.568, + "2000": 0.57, + "2001": 0.576, + "2002": 0.582, + "2003": 0.587, + "2004": 0.589, + "2005": 0.605, + "2006": 0.615, + "2007": 0.622, + "2008": 0.627, + "2009": 0.639, + "2010": 0.647, + "2011": 0.656, + "2012": 0.664, + "2013": 0.67, + "2014": 0.674, + "2015": 0.684, + "2016": 0.688, + "2017": 0.694, + "2018": 0.7, + "2019": 0.706, + "2020": 0.699, + "2021": 0.694 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr129", + "Region": "Maluku", + "1990": 0.549, + "1991": 0.556, + "1992": 0.565, + "1993": 0.575, + "1994": 0.586, + "1995": 0.598, + "1996": 0.608, + "1997": 0.619, + "1998": 0.611, + "1999": 0.612, + "2000": 0.613, + "2001": 0.617, + "2002": 0.621, + "2003": 0.625, + "2004": 0.619, + "2005": 0.627, + "2006": 0.63, + "2007": 0.629, + "2008": 0.632, + "2009": 0.642, + "2010": 0.649, + "2011": 0.656, + "2012": 0.663, + "2013": 0.668, + "2014": 0.672, + "2015": 0.68, + "2016": 0.684, + "2017": 0.689, + "2018": 0.695, + "2019": 0.702, + "2020": 0.695, + "2021": 0.69 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr124", + "Region": "North Sulawesi", + "1990": 0.539, + "1991": 0.546, + "1992": 0.555, + "1993": 0.564, + "1994": 0.576, + "1995": 0.587, + "1996": 0.597, + "1997": 0.608, + "1998": 0.609, + "1999": 0.619, + "2000": 0.629, + "2001": 0.643, + "2002": 0.656, + "2003": 0.669, + "2004": 0.664, + "2005": 0.674, + "2006": 0.679, + "2007": 0.677, + "2008": 0.678, + "2009": 0.687, + "2010": 0.691, + "2011": 0.696, + "2012": 0.701, + "2013": 0.703, + "2014": 0.705, + "2015": 0.711, + "2016": 0.712, + "2017": 0.715, + "2018": 0.721, + "2019": 0.728, + "2020": 0.721, + "2021": 0.716 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr102", + "Region": "North Sumatra", + "1990": 0.56, + "1991": 0.568, + "1992": 0.576, + "1993": 0.586, + "1994": 0.597, + "1995": 0.609, + "1996": 0.619, + "1997": 0.631, + "1998": 0.624, + "1999": 0.626, + "2000": 0.629, + "2001": 0.635, + "2002": 0.64, + "2003": 0.646, + "2004": 0.643, + "2005": 0.656, + "2006": 0.663, + "2007": 0.664, + "2008": 0.664, + "2009": 0.672, + "2010": 0.676, + "2011": 0.68, + "2012": 0.684, + "2013": 0.689, + "2014": 0.692, + "2015": 0.701, + "2016": 0.704, + "2017": 0.71, + "2018": 0.716, + "2019": 0.723, + "2020": 0.715, + "2021": 0.711 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr104", + "Region": "Riau (incl. Riau islands)", + "1990": 0.529, + "1991": 0.536, + "1992": 0.544, + "1993": 0.553, + "1994": 0.563, + "1995": 0.574, + "1996": 0.583, + "1997": 0.594, + "1998": 0.593, + "1999": 0.601, + "2000": 0.609, + "2001": 0.62, + "2002": 0.631, + "2003": 0.642, + "2004": 0.644, + "2005": 0.66, + "2006": 0.671, + "2007": 0.677, + "2008": 0.68, + "2009": 0.69, + "2010": 0.696, + "2011": 0.702, + "2012": 0.709, + "2013": 0.71, + "2014": 0.71, + "2015": 0.714, + "2016": 0.714, + "2017": 0.716, + "2018": 0.722, + "2019": 0.728, + "2020": 0.721, + "2021": 0.716 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr122", + "Region": "South Kalimantan", + "1990": 0.528, + "1991": 0.534, + "1992": 0.543, + "1993": 0.551, + "1994": 0.562, + "1995": 0.573, + "1996": 0.582, + "1997": 0.593, + "1998": 0.585, + "1999": 0.585, + "2000": 0.586, + "2001": 0.59, + "2002": 0.593, + "2003": 0.596, + "2004": 0.599, + "2005": 0.616, + "2006": 0.627, + "2007": 0.635, + "2008": 0.638, + "2009": 0.648, + "2010": 0.654, + "2011": 0.661, + "2012": 0.668, + "2013": 0.672, + "2014": 0.674, + "2015": 0.682, + "2016": 0.684, + "2017": 0.689, + "2018": 0.695, + "2019": 0.701, + "2020": 0.694, + "2021": 0.689 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr126", + "Region": "South Sulawesi (incl Sulawesi Barat)", + "1990": 0.514, + "1991": 0.52, + "1992": 0.528, + "1993": 0.536, + "1994": 0.546, + "1995": 0.556, + "1996": 0.566, + "1997": 0.576, + "1998": 0.575, + "1999": 0.582, + "2000": 0.589, + "2001": 0.6, + "2002": 0.61, + "2003": 0.62, + "2004": 0.615, + "2005": 0.624, + "2006": 0.627, + "2007": 0.627, + "2008": 0.633, + "2009": 0.646, + "2010": 0.656, + "2011": 0.665, + "2012": 0.675, + "2013": 0.679, + "2014": 0.682, + "2015": 0.69, + "2016": 0.693, + "2017": 0.698, + "2018": 0.704, + "2019": 0.71, + "2020": 0.703, + "2021": 0.699 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr106", + "Region": "South Sumatra", + "1990": 0.535, + "1991": 0.542, + "1992": 0.551, + "1993": 0.559, + "1994": 0.57, + "1995": 0.581, + "1996": 0.591, + "1997": 0.602, + "1998": 0.596, + "1999": 0.598, + "2000": 0.6, + "2001": 0.605, + "2002": 0.611, + "2003": 0.616, + "2004": 0.614, + "2005": 0.625, + "2006": 0.632, + "2007": 0.634, + "2008": 0.639, + "2009": 0.651, + "2010": 0.66, + "2011": 0.668, + "2012": 0.677, + "2013": 0.68, + "2014": 0.683, + "2015": 0.69, + "2016": 0.692, + "2017": 0.696, + "2018": 0.702, + "2019": 0.709, + "2020": 0.702, + "2021": 0.697 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr127", + "Region": "Southeast Sulawesi", + "1990": 0.512, + "1991": 0.519, + "1992": 0.527, + "1993": 0.536, + "1994": 0.546, + "1995": 0.557, + "1996": 0.566, + "1997": 0.577, + "1998": 0.568, + "1999": 0.568, + "2000": 0.568, + "2001": 0.571, + "2002": 0.574, + "2003": 0.576, + "2004": 0.585, + "2005": 0.607, + "2006": 0.624, + "2007": 0.638, + "2008": 0.64, + "2009": 0.65, + "2010": 0.656, + "2011": 0.661, + "2012": 0.668, + "2013": 0.673, + "2014": 0.677, + "2015": 0.686, + "2016": 0.69, + "2017": 0.696, + "2018": 0.701, + "2019": 0.708, + "2020": 0.701, + "2021": 0.696 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr111", + "Region": "West Java", + "1990": 0.511, + "1991": 0.518, + "1992": 0.525, + "1993": 0.533, + "1994": 0.544, + "1995": 0.554, + "1996": 0.563, + "1997": 0.573, + "1998": 0.572, + "1999": 0.578, + "2000": 0.585, + "2001": 0.595, + "2002": 0.605, + "2003": 0.615, + "2004": 0.617, + "2005": 0.633, + "2006": 0.644, + "2007": 0.651, + "2008": 0.654, + "2009": 0.665, + "2010": 0.671, + "2011": 0.678, + "2012": 0.685, + "2013": 0.689, + "2014": 0.692, + "2015": 0.699, + "2016": 0.702, + "2017": 0.706, + "2018": 0.712, + "2019": 0.719, + "2020": 0.711, + "2021": 0.707 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr120", + "Region": "West Kalimantan", + "1990": 0.515, + "1991": 0.521, + "1992": 0.528, + "1993": 0.536, + "1994": 0.546, + "1995": 0.556, + "1996": 0.565, + "1997": 0.575, + "1998": 0.568, + "1999": 0.57, + "2000": 0.572, + "2001": 0.577, + "2002": 0.582, + "2003": 0.587, + "2004": 0.586, + "2005": 0.599, + "2006": 0.607, + "2007": 0.612, + "2008": 0.617, + "2009": 0.629, + "2010": 0.637, + "2011": 0.646, + "2012": 0.655, + "2013": 0.659, + "2014": 0.662, + "2015": 0.67, + "2016": 0.673, + "2017": 0.678, + "2018": 0.684, + "2019": 0.69, + "2020": 0.683, + "2021": 0.679 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr117", + "Region": "West Nusa Tenggara", + "1990": 0.443, + "1991": 0.448, + "1992": 0.454, + "1993": 0.461, + "1994": 0.47, + "1995": 0.479, + "1996": 0.486, + "1997": 0.495, + "1998": 0.492, + "1999": 0.496, + "2000": 0.5, + "2001": 0.507, + "2002": 0.514, + "2003": 0.521, + "2004": 0.535, + "2005": 0.562, + "2006": 0.584, + "2007": 0.603, + "2008": 0.605, + "2009": 0.614, + "2010": 0.619, + "2011": 0.624, + "2012": 0.629, + "2013": 0.641, + "2014": 0.651, + "2015": 0.667, + "2016": 0.677, + "2017": 0.689, + "2018": 0.695, + "2019": 0.702, + "2020": 0.694, + "2021": 0.69 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr103", + "Region": "West Sumatra", + "1990": 0.533, + "1991": 0.54, + "1992": 0.548, + "1993": 0.557, + "1994": 0.568, + "1995": 0.579, + "1996": 0.589, + "1997": 0.6, + "1998": 0.599, + "1999": 0.607, + "2000": 0.615, + "2001": 0.626, + "2002": 0.638, + "2003": 0.649, + "2004": 0.64, + "2005": 0.646, + "2006": 0.647, + "2007": 0.643, + "2008": 0.652, + "2009": 0.668, + "2010": 0.68, + "2011": 0.692, + "2012": 0.705, + "2013": 0.709, + "2014": 0.712, + "2015": 0.72, + "2016": 0.722, + "2017": 0.727, + "2018": 0.733, + "2019": 0.74, + "2020": 0.733, + "2021": 0.728 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "National", + "GDLCODE": "IRNt", + "Region": "Total", + "1990": 0.601, + "1991": 0.62, + "1992": 0.627, + "1993": 0.634, + "1994": 0.64, + "1995": 0.647, + "1996": 0.655, + "1997": 0.662, + "1998": 0.669, + "1999": 0.677, + "2000": 0.685, + "2001": 0.693, + "2002": 0.701, + "2003": 0.704, + "2004": 0.712, + "2005": 0.717, + "2006": 0.727, + "2007": 0.733, + "2008": 0.735, + "2009": 0.738, + "2010": 0.745, + "2011": 0.754, + "2012": 0.768, + "2013": 0.769, + "2014": 0.773, + "2015": 0.776, + "2016": 0.786, + "2017": 0.789, + "2018": 0.787, + "2019": 0.783, + "2020": 0.777, + "2021": 0.774 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr125", + "Region": "Ardebil", + "1990": 0.578, + "1991": 0.596, + "1992": 0.603, + "1993": 0.609, + "1994": 0.614, + "1995": 0.621, + "1996": 0.629, + "1997": 0.634, + "1998": 0.641, + "1999": 0.648, + "2000": 0.656, + "2001": 0.664, + "2002": 0.671, + "2003": 0.674, + "2004": 0.681, + "2005": 0.685, + "2006": 0.695, + "2007": 0.7, + "2008": 0.702, + "2009": 0.704, + "2010": 0.71, + "2011": 0.719, + "2012": 0.732, + "2013": 0.733, + "2014": 0.737, + "2015": 0.74, + "2016": 0.75, + "2017": 0.753, + "2018": 0.75, + "2019": 0.746, + "2020": 0.74, + "2021": 0.737 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr119", + "Region": "Bushehr", + "1990": 0.63, + "1991": 0.65, + "1992": 0.658, + "1993": 0.666, + "1994": 0.671, + "1995": 0.679, + "1996": 0.688, + "1997": 0.694, + "1998": 0.702, + "1999": 0.71, + "2000": 0.719, + "2001": 0.727, + "2002": 0.735, + "2003": 0.739, + "2004": 0.747, + "2005": 0.753, + "2006": 0.764, + "2007": 0.764, + "2008": 0.761, + "2009": 0.759, + "2010": 0.762, + "2011": 0.767, + "2012": 0.781, + "2013": 0.782, + "2014": 0.786, + "2015": 0.789, + "2016": 0.799, + "2017": 0.802, + "2018": 0.8, + "2019": 0.796, + "2020": 0.79, + "2021": 0.787 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr115", + "Region": "Chaharmahal and Bakhtiyari", + "1990": 0.61, + "1991": 0.629, + "1992": 0.636, + "1993": 0.643, + "1994": 0.649, + "1995": 0.656, + "1996": 0.664, + "1997": 0.67, + "1998": 0.678, + "1999": 0.685, + "2000": 0.693, + "2001": 0.702, + "2002": 0.709, + "2003": 0.713, + "2004": 0.72, + "2005": 0.725, + "2006": 0.736, + "2007": 0.739, + "2008": 0.739, + "2009": 0.739, + "2010": 0.744, + "2011": 0.751, + "2012": 0.765, + "2013": 0.766, + "2014": 0.77, + "2015": 0.774, + "2016": 0.783, + "2017": 0.786, + "2018": 0.784, + "2019": 0.779, + "2020": 0.774, + "2021": 0.771 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr104", + "Region": "EastAzarbayejan", + "1990": 0.61, + "1991": 0.629, + "1992": 0.636, + "1993": 0.643, + "1994": 0.649, + "1995": 0.656, + "1996": 0.664, + "1997": 0.671, + "1998": 0.678, + "1999": 0.686, + "2000": 0.694, + "2001": 0.702, + "2002": 0.71, + "2003": 0.713, + "2004": 0.721, + "2005": 0.726, + "2006": 0.736, + "2007": 0.737, + "2008": 0.735, + "2009": 0.734, + "2010": 0.737, + "2011": 0.742, + "2012": 0.756, + "2013": 0.757, + "2014": 0.76, + "2015": 0.764, + "2016": 0.773, + "2017": 0.776, + "2018": 0.774, + "2019": 0.77, + "2020": 0.764, + "2021": 0.761 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr111", + "Region": "Esfahan", + "1990": 0.633, + "1991": 0.653, + "1992": 0.661, + "1993": 0.668, + "1994": 0.674, + "1995": 0.682, + "1996": 0.691, + "1997": 0.697, + "1998": 0.705, + "1999": 0.713, + "2000": 0.722, + "2001": 0.731, + "2002": 0.739, + "2003": 0.742, + "2004": 0.751, + "2005": 0.756, + "2006": 0.767, + "2007": 0.77, + "2008": 0.77, + "2009": 0.771, + "2010": 0.777, + "2011": 0.785, + "2012": 0.799, + "2013": 0.8, + "2014": 0.804, + "2015": 0.808, + "2016": 0.818, + "2017": 0.821, + "2018": 0.819, + "2019": 0.814, + "2020": 0.809, + "2021": 0.805 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr108", + "Region": "Fars", + "1990": 0.605, + "1991": 0.625, + "1992": 0.632, + "1993": 0.639, + "1994": 0.645, + "1995": 0.652, + "1996": 0.661, + "1997": 0.667, + "1998": 0.675, + "1999": 0.683, + "2000": 0.691, + "2001": 0.699, + "2002": 0.707, + "2003": 0.711, + "2004": 0.719, + "2005": 0.724, + "2006": 0.735, + "2007": 0.74, + "2008": 0.742, + "2009": 0.746, + "2010": 0.754, + "2011": 0.763, + "2012": 0.777, + "2013": 0.778, + "2014": 0.782, + "2015": 0.786, + "2016": 0.796, + "2017": 0.799, + "2018": 0.796, + "2019": 0.792, + "2020": 0.786, + "2021": 0.783 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr102", + "Region": "Gilan", + "1990": 0.612, + "1991": 0.632, + "1992": 0.64, + "1993": 0.647, + "1994": 0.652, + "1995": 0.659, + "1996": 0.668, + "1997": 0.674, + "1998": 0.682, + "1999": 0.69, + "2000": 0.698, + "2001": 0.706, + "2002": 0.714, + "2003": 0.718, + "2004": 0.726, + "2005": 0.731, + "2006": 0.741, + "2007": 0.745, + "2008": 0.745, + "2009": 0.746, + "2010": 0.751, + "2011": 0.759, + "2012": 0.773, + "2013": 0.774, + "2014": 0.778, + "2015": 0.781, + "2016": 0.791, + "2017": 0.794, + "2018": 0.792, + "2019": 0.787, + "2020": 0.782, + "2021": 0.779 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr128", + "Region": "Golestan", + "1990": 0.593, + "1991": 0.612, + "1992": 0.619, + "1993": 0.626, + "1994": 0.631, + "1995": 0.638, + "1996": 0.647, + "1997": 0.653, + "1998": 0.66, + "1999": 0.668, + "2000": 0.676, + "2001": 0.684, + "2002": 0.691, + "2003": 0.695, + "2004": 0.703, + "2005": 0.708, + "2006": 0.718, + "2007": 0.721, + "2008": 0.72, + "2009": 0.721, + "2010": 0.726, + "2011": 0.733, + "2012": 0.747, + "2013": 0.748, + "2014": 0.751, + "2015": 0.755, + "2016": 0.764, + "2017": 0.767, + "2018": 0.765, + "2019": 0.76, + "2020": 0.755, + "2021": 0.752 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr114", + "Region": "Hamedan", + "1990": 0.599, + "1991": 0.618, + "1992": 0.626, + "1993": 0.632, + "1994": 0.637, + "1995": 0.644, + "1996": 0.653, + "1997": 0.659, + "1998": 0.666, + "1999": 0.674, + "2000": 0.681, + "2001": 0.69, + "2002": 0.697, + "2003": 0.701, + "2004": 0.708, + "2005": 0.713, + "2006": 0.723, + "2007": 0.724, + "2008": 0.723, + "2009": 0.722, + "2010": 0.725, + "2011": 0.731, + "2012": 0.744, + "2013": 0.745, + "2014": 0.749, + "2015": 0.753, + "2016": 0.762, + "2017": 0.765, + "2018": 0.763, + "2019": 0.758, + "2020": 0.753, + "2021": 0.75 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr123", + "Region": "Hormozgan", + "1990": 0.586, + "1991": 0.605, + "1992": 0.612, + "1993": 0.619, + "1994": 0.624, + "1995": 0.631, + "1996": 0.639, + "1997": 0.645, + "1998": 0.652, + "1999": 0.66, + "2000": 0.667, + "2001": 0.675, + "2002": 0.683, + "2003": 0.686, + "2004": 0.694, + "2005": 0.699, + "2006": 0.709, + "2007": 0.712, + "2008": 0.712, + "2009": 0.713, + "2010": 0.719, + "2011": 0.726, + "2012": 0.739, + "2013": 0.74, + "2014": 0.744, + "2015": 0.747, + "2016": 0.757, + "2017": 0.76, + "2018": 0.758, + "2019": 0.753, + "2020": 0.748, + "2021": 0.745 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr117", + "Region": "Ilam", + "1990": 0.615, + "1991": 0.634, + "1992": 0.642, + "1993": 0.649, + "1994": 0.654, + "1995": 0.661, + "1996": 0.67, + "1997": 0.676, + "1998": 0.684, + "1999": 0.691, + "2000": 0.699, + "2001": 0.708, + "2002": 0.716, + "2003": 0.719, + "2004": 0.727, + "2005": 0.732, + "2006": 0.742, + "2007": 0.748, + "2008": 0.75, + "2009": 0.753, + "2010": 0.761, + "2011": 0.77, + "2012": 0.784, + "2013": 0.785, + "2014": 0.789, + "2015": 0.793, + "2016": 0.803, + "2017": 0.806, + "2018": 0.803, + "2019": 0.799, + "2020": 0.793, + "2021": 0.79 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr109", + "Region": "Kerman", + "1990": 0.603, + "1991": 0.622, + "1992": 0.63, + "1993": 0.637, + "1994": 0.642, + "1995": 0.65, + "1996": 0.658, + "1997": 0.665, + "1998": 0.672, + "1999": 0.68, + "2000": 0.688, + "2001": 0.696, + "2002": 0.704, + "2003": 0.708, + "2004": 0.716, + "2005": 0.721, + "2006": 0.731, + "2007": 0.732, + "2008": 0.729, + "2009": 0.728, + "2010": 0.731, + "2011": 0.736, + "2012": 0.749, + "2013": 0.75, + "2014": 0.754, + "2015": 0.757, + "2016": 0.767, + "2017": 0.77, + "2018": 0.767, + "2019": 0.763, + "2020": 0.757, + "2021": 0.755 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr106", + "Region": "Kermanshah", + "1990": 0.612, + "1991": 0.631, + "1992": 0.639, + "1993": 0.646, + "1994": 0.651, + "1995": 0.658, + "1996": 0.667, + "1997": 0.673, + "1998": 0.68, + "1999": 0.688, + "2000": 0.696, + "2001": 0.704, + "2002": 0.712, + "2003": 0.715, + "2004": 0.723, + "2005": 0.728, + "2006": 0.738, + "2007": 0.741, + "2008": 0.741, + "2009": 0.741, + "2010": 0.745, + "2011": 0.752, + "2012": 0.766, + "2013": 0.767, + "2014": 0.771, + "2015": 0.775, + "2016": 0.784, + "2017": 0.787, + "2018": 0.785, + "2019": 0.78, + "2020": 0.775, + "2021": 0.772 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr110", + "Region": "Khorasan-e-Razavi", + "1990": 0.582, + "1991": 0.601, + "1992": 0.609, + "1993": 0.616, + "1994": 0.621, + "1995": 0.628, + "1996": 0.636, + "1997": 0.643, + "1998": 0.65, + "1999": 0.657, + "2000": 0.665, + "2001": 0.673, + "2002": 0.681, + "2003": 0.684, + "2004": 0.692, + "2005": 0.697, + "2006": 0.707, + "2007": 0.713, + "2008": 0.716, + "2009": 0.72, + "2010": 0.728, + "2011": 0.738, + "2012": 0.751, + "2013": 0.752, + "2014": 0.756, + "2015": 0.759, + "2016": 0.769, + "2017": 0.772, + "2018": 0.77, + "2019": 0.765, + "2020": 0.76, + "2021": 0.757 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr107", + "Region": "Khuzestan", + "1990": 0.613, + "1991": 0.632, + "1992": 0.64, + "1993": 0.647, + "1994": 0.652, + "1995": 0.66, + "1996": 0.668, + "1997": 0.675, + "1998": 0.682, + "1999": 0.69, + "2000": 0.698, + "2001": 0.706, + "2002": 0.714, + "2003": 0.718, + "2004": 0.726, + "2005": 0.731, + "2006": 0.741, + "2007": 0.744, + "2008": 0.744, + "2009": 0.745, + "2010": 0.75, + "2011": 0.758, + "2012": 0.771, + "2013": 0.773, + "2014": 0.776, + "2015": 0.78, + "2016": 0.79, + "2017": 0.793, + "2018": 0.79, + "2019": 0.786, + "2020": 0.78, + "2021": 0.777 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr118", + "Region": "Kohgiluyeh and Boyerahmad", + "1990": 0.61, + "1991": 0.629, + "1992": 0.636, + "1993": 0.643, + "1994": 0.648, + "1995": 0.655, + "1996": 0.664, + "1997": 0.67, + "1998": 0.677, + "1999": 0.685, + "2000": 0.693, + "2001": 0.701, + "2002": 0.709, + "2003": 0.712, + "2004": 0.719, + "2005": 0.724, + "2006": 0.735, + "2007": 0.737, + "2008": 0.737, + "2009": 0.737, + "2010": 0.741, + "2011": 0.748, + "2012": 0.762, + "2013": 0.763, + "2014": 0.767, + "2015": 0.77, + "2016": 0.78, + "2017": 0.783, + "2018": 0.78, + "2019": 0.776, + "2020": 0.77, + "2021": 0.767 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr113", + "Region": "Kordestan", + "1990": 0.567, + "1991": 0.585, + "1992": 0.592, + "1993": 0.598, + "1994": 0.603, + "1995": 0.609, + "1996": 0.617, + "1997": 0.623, + "1998": 0.63, + "1999": 0.637, + "2000": 0.644, + "2001": 0.652, + "2002": 0.659, + "2003": 0.662, + "2004": 0.668, + "2005": 0.673, + "2006": 0.683, + "2007": 0.687, + "2008": 0.689, + "2009": 0.69, + "2010": 0.696, + "2011": 0.704, + "2012": 0.718, + "2013": 0.719, + "2014": 0.722, + "2015": 0.726, + "2016": 0.735, + "2017": 0.737, + "2018": 0.735, + "2019": 0.731, + "2020": 0.725, + "2021": 0.723 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr116", + "Region": "Lorestan", + "1990": 0.604, + "1991": 0.624, + "1992": 0.631, + "1993": 0.638, + "1994": 0.643, + "1995": 0.65, + "1996": 0.658, + "1997": 0.665, + "1998": 0.672, + "1999": 0.679, + "2000": 0.687, + "2001": 0.696, + "2002": 0.703, + "2003": 0.707, + "2004": 0.714, + "2005": 0.719, + "2006": 0.729, + "2007": 0.731, + "2008": 0.729, + "2009": 0.729, + "2010": 0.732, + "2011": 0.738, + "2012": 0.751, + "2013": 0.753, + "2014": 0.756, + "2015": 0.76, + "2016": 0.769, + "2017": 0.772, + "2018": 0.77, + "2019": 0.765, + "2020": 0.76, + "2021": 0.757 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr101", + "Region": "Markazi", + "1990": 0.603, + "1991": 0.623, + "1992": 0.63, + "1993": 0.637, + "1994": 0.642, + "1995": 0.65, + "1996": 0.658, + "1997": 0.664, + "1998": 0.672, + "1999": 0.679, + "2000": 0.687, + "2001": 0.696, + "2002": 0.703, + "2003": 0.707, + "2004": 0.714, + "2005": 0.72, + "2006": 0.73, + "2007": 0.733, + "2008": 0.734, + "2009": 0.735, + "2010": 0.74, + "2011": 0.748, + "2012": 0.762, + "2013": 0.763, + "2014": 0.767, + "2015": 0.77, + "2016": 0.78, + "2017": 0.783, + "2018": 0.78, + "2019": 0.776, + "2020": 0.77, + "2021": 0.767 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr103", + "Region": "Mazandaran", + "1990": 0.639, + "1991": 0.659, + "1992": 0.667, + "1993": 0.674, + "1994": 0.68, + "1995": 0.688, + "1996": 0.697, + "1997": 0.703, + "1998": 0.711, + "1999": 0.719, + "2000": 0.728, + "2001": 0.736, + "2002": 0.745, + "2003": 0.749, + "2004": 0.757, + "2005": 0.762, + "2006": 0.773, + "2007": 0.774, + "2008": 0.771, + "2009": 0.77, + "2010": 0.773, + "2011": 0.778, + "2012": 0.792, + "2013": 0.793, + "2014": 0.797, + "2015": 0.801, + "2016": 0.811, + "2017": 0.814, + "2018": 0.812, + "2019": 0.807, + "2020": 0.801, + "2021": 0.798 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr129", + "Region": "North Khorasan", + "1990": 0.545, + "1991": 0.563, + "1992": 0.569, + "1993": 0.575, + "1994": 0.58, + "1995": 0.586, + "1996": 0.594, + "1997": 0.599, + "1998": 0.606, + "1999": 0.613, + "2000": 0.62, + "2001": 0.628, + "2002": 0.635, + "2003": 0.638, + "2004": 0.644, + "2005": 0.649, + "2006": 0.658, + "2007": 0.668, + "2008": 0.675, + "2009": 0.681, + "2010": 0.692, + "2011": 0.705, + "2012": 0.718, + "2013": 0.719, + "2014": 0.722, + "2015": 0.726, + "2016": 0.735, + "2017": 0.738, + "2018": 0.735, + "2019": 0.731, + "2020": 0.726, + "2021": 0.723 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr127", + "Region": "Qazvin", + "1990": 0.616, + "1991": 0.636, + "1992": 0.643, + "1993": 0.65, + "1994": 0.656, + "1995": 0.663, + "1996": 0.672, + "1997": 0.678, + "1998": 0.686, + "1999": 0.694, + "2000": 0.702, + "2001": 0.71, + "2002": 0.718, + "2003": 0.722, + "2004": 0.73, + "2005": 0.735, + "2006": 0.745, + "2007": 0.746, + "2008": 0.744, + "2009": 0.743, + "2010": 0.746, + "2011": 0.751, + "2012": 0.765, + "2013": 0.766, + "2014": 0.77, + "2015": 0.773, + "2016": 0.783, + "2017": 0.786, + "2018": 0.784, + "2019": 0.779, + "2020": 0.774, + "2021": 0.771 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr126", + "Region": "Qom", + "1990": 0.624, + "1991": 0.644, + "1992": 0.651, + "1993": 0.659, + "1994": 0.664, + "1995": 0.672, + "1996": 0.68, + "1997": 0.687, + "1998": 0.695, + "1999": 0.703, + "2000": 0.711, + "2001": 0.719, + "2002": 0.727, + "2003": 0.731, + "2004": 0.739, + "2005": 0.744, + "2006": 0.755, + "2007": 0.758, + "2008": 0.757, + "2009": 0.758, + "2010": 0.763, + "2011": 0.77, + "2012": 0.784, + "2013": 0.785, + "2014": 0.789, + "2015": 0.793, + "2016": 0.803, + "2017": 0.806, + "2018": 0.804, + "2019": 0.799, + "2020": 0.793, + "2021": 0.79 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr121", + "Region": "Semnan", + "1990": 0.638, + "1991": 0.659, + "1992": 0.667, + "1993": 0.674, + "1994": 0.68, + "1995": 0.688, + "1996": 0.697, + "1997": 0.703, + "1998": 0.711, + "1999": 0.719, + "2000": 0.728, + "2001": 0.737, + "2002": 0.745, + "2003": 0.749, + "2004": 0.757, + "2005": 0.763, + "2006": 0.774, + "2007": 0.774, + "2008": 0.771, + "2009": 0.77, + "2010": 0.773, + "2011": 0.778, + "2012": 0.791, + "2013": 0.793, + "2014": 0.797, + "2015": 0.8, + "2016": 0.81, + "2017": 0.814, + "2018": 0.811, + "2019": 0.807, + "2020": 0.801, + "2021": 0.798 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr112", + "Region": "Sistanand Baluchestan", + "1990": 0.519, + "1991": 0.536, + "1992": 0.542, + "1993": 0.547, + "1994": 0.552, + "1995": 0.558, + "1996": 0.565, + "1997": 0.57, + "1998": 0.576, + "1999": 0.583, + "2000": 0.59, + "2001": 0.597, + "2002": 0.603, + "2003": 0.606, + "2004": 0.612, + "2005": 0.617, + "2006": 0.626, + "2007": 0.63, + "2008": 0.633, + "2009": 0.635, + "2010": 0.641, + "2011": 0.649, + "2012": 0.661, + "2013": 0.662, + "2014": 0.665, + "2015": 0.668, + "2016": 0.677, + "2017": 0.679, + "2018": 0.677, + "2019": 0.673, + "2020": 0.668, + "2021": 0.665 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr130", + "Region": "South Khorasan", + "1990": 0.538, + "1991": 0.555, + "1992": 0.562, + "1993": 0.568, + "1994": 0.573, + "1995": 0.579, + "1996": 0.587, + "1997": 0.592, + "1998": 0.599, + "1999": 0.606, + "2000": 0.613, + "2001": 0.62, + "2002": 0.627, + "2003": 0.63, + "2004": 0.637, + "2005": 0.641, + "2006": 0.651, + "2007": 0.664, + "2008": 0.675, + "2009": 0.685, + "2010": 0.699, + "2011": 0.714, + "2012": 0.728, + "2013": 0.729, + "2014": 0.733, + "2015": 0.736, + "2016": 0.745, + "2017": 0.748, + "2018": 0.746, + "2019": 0.741, + "2020": 0.736, + "2021": 0.733 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr124", + "Region": "Tehran and Alborz", + "1990": 0.618, + "1991": 0.638, + "1992": 0.646, + "1993": 0.654, + "1994": 0.659, + "1995": 0.667, + "1996": 0.676, + "1997": 0.682, + "1998": 0.69, + "1999": 0.698, + "2000": 0.706, + "2001": 0.715, + "2002": 0.723, + "2003": 0.727, + "2004": 0.735, + "2005": 0.74, + "2006": 0.751, + "2007": 0.759, + "2008": 0.763, + "2009": 0.768, + "2010": 0.778, + "2011": 0.789, + "2012": 0.803, + "2013": 0.804, + "2014": 0.808, + "2015": 0.812, + "2016": 0.822, + "2017": 0.825, + "2018": 0.823, + "2019": 0.819, + "2020": 0.813, + "2021": 0.81 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr105", + "Region": "WestAzarbayejan", + "1990": 0.559, + "1991": 0.577, + "1992": 0.583, + "1993": 0.59, + "1994": 0.595, + "1995": 0.601, + "1996": 0.609, + "1997": 0.615, + "1998": 0.622, + "1999": 0.629, + "2000": 0.636, + "2001": 0.644, + "2002": 0.651, + "2003": 0.654, + "2004": 0.661, + "2005": 0.666, + "2006": 0.676, + "2007": 0.684, + "2008": 0.69, + "2009": 0.695, + "2010": 0.705, + "2011": 0.717, + "2012": 0.731, + "2013": 0.732, + "2014": 0.735, + "2015": 0.739, + "2016": 0.748, + "2017": 0.751, + "2018": 0.749, + "2019": 0.744, + "2020": 0.739, + "2021": 0.736 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr122", + "Region": "Yazd", + "1990": 0.606, + "1991": 0.626, + "1992": 0.633, + "1993": 0.64, + "1994": 0.646, + "1995": 0.653, + "1996": 0.662, + "1997": 0.668, + "1998": 0.676, + "1999": 0.684, + "2000": 0.692, + "2001": 0.7, + "2002": 0.708, + "2003": 0.712, + "2004": 0.72, + "2005": 0.725, + "2006": 0.736, + "2007": 0.744, + "2008": 0.75, + "2009": 0.756, + "2010": 0.766, + "2011": 0.778, + "2012": 0.792, + "2013": 0.794, + "2014": 0.798, + "2015": 0.801, + "2016": 0.811, + "2017": 0.814, + "2018": 0.812, + "2019": 0.807, + "2020": 0.802, + "2021": 0.799 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr120", + "Region": "Zanjan", + "1990": 0.564, + "1991": 0.583, + "1992": 0.59, + "1993": 0.596, + "1994": 0.601, + "1995": 0.607, + "1996": 0.615, + "1997": 0.621, + "1998": 0.628, + "1999": 0.635, + "2000": 0.642, + "2001": 0.65, + "2002": 0.657, + "2003": 0.66, + "2004": 0.667, + "2005": 0.672, + "2006": 0.682, + "2007": 0.691, + "2008": 0.698, + "2009": 0.705, + "2010": 0.716, + "2011": 0.729, + "2012": 0.742, + "2013": 0.743, + "2014": 0.747, + "2015": 0.75, + "2016": 0.76, + "2017": 0.763, + "2018": 0.76, + "2019": 0.756, + "2020": 0.75, + "2021": 0.748 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "National", + "GDLCODE": "IRQt", + "Region": "Total", + "1990": 0.528, + "1991": 0.496, + "1992": 0.524, + "1993": 0.545, + "1994": 0.543, + "1995": 0.532, + "1996": 0.551, + "1997": 0.558, + "1998": 0.571, + "1999": 0.582, + "2000": 0.589, + "2001": 0.596, + "2002": 0.598, + "2003": 0.579, + "2004": 0.602, + "2005": 0.606, + "2006": 0.604, + "2007": 0.607, + "2008": 0.623, + "2009": 0.633, + "2010": 0.64, + "2011": 0.649, + "2012": 0.66, + "2013": 0.667, + "2014": 0.67, + "2015": 0.675, + "2016": 0.679, + "2017": 0.685, + "2018": 0.692, + "2019": 0.696, + "2020": 0.679, + "2021": 0.686 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr107", + "Region": "Anbar", + "1990": 0.574, + "1991": 0.54, + "1992": 0.571, + "1993": 0.593, + "1994": 0.591, + "1995": 0.58, + "1996": 0.601, + "1997": 0.608, + "1998": 0.621, + "1999": 0.633, + "2000": 0.641, + "2001": 0.649, + "2002": 0.651, + "2003": 0.631, + "2004": 0.656, + "2005": 0.659, + "2006": 0.658, + "2007": 0.65, + "2008": 0.654, + "2009": 0.654, + "2010": 0.65, + "2011": 0.648, + "2012": 0.658, + "2013": 0.665, + "2014": 0.667, + "2015": 0.671, + "2016": 0.675, + "2017": 0.68, + "2018": 0.686, + "2019": 0.69, + "2020": 0.673, + "2021": 0.68 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr109", + "Region": "Babylon", + "1990": 0.503, + "1991": 0.473, + "1992": 0.501, + "1993": 0.522, + "1994": 0.52, + "1995": 0.509, + "1996": 0.529, + "1997": 0.536, + "1998": 0.548, + "1999": 0.559, + "2000": 0.566, + "2001": 0.573, + "2002": 0.575, + "2003": 0.555, + "2004": 0.578, + "2005": 0.582, + "2006": 0.58, + "2007": 0.587, + "2008": 0.606, + "2009": 0.62, + "2010": 0.631, + "2011": 0.644, + "2012": 0.656, + "2013": 0.663, + "2014": 0.666, + "2015": 0.67, + "2016": 0.675, + "2017": 0.681, + "2018": 0.688, + "2019": 0.691, + "2020": 0.675, + "2021": 0.682 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr108", + "Region": "Baghdad", + "1990": 0.556, + "1991": 0.524, + "1992": 0.554, + "1993": 0.576, + "1994": 0.573, + "1995": 0.562, + "1996": 0.583, + "1997": 0.59, + "1998": 0.603, + "1999": 0.615, + "2000": 0.622, + "2001": 0.63, + "2002": 0.632, + "2003": 0.612, + "2004": 0.636, + "2005": 0.64, + "2006": 0.639, + "2007": 0.641, + "2008": 0.656, + "2009": 0.666, + "2010": 0.672, + "2011": 0.681, + "2012": 0.691, + "2013": 0.696, + "2014": 0.696, + "2015": 0.699, + "2016": 0.701, + "2017": 0.705, + "2018": 0.71, + "2019": 0.714, + "2020": 0.696, + "2021": 0.704 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr118", + "Region": "Basra", + "1990": 0.536, + "1991": 0.503, + "1992": 0.533, + "1993": 0.555, + "1994": 0.552, + "1995": 0.541, + "1996": 0.562, + "1997": 0.569, + "1998": 0.583, + "1999": 0.594, + "2000": 0.601, + "2001": 0.609, + "2002": 0.611, + "2003": 0.59, + "2004": 0.615, + "2005": 0.618, + "2006": 0.617, + "2007": 0.618, + "2008": 0.631, + "2009": 0.639, + "2010": 0.644, + "2011": 0.65, + "2012": 0.659, + "2013": 0.662, + "2014": 0.662, + "2015": 0.663, + "2016": 0.664, + "2017": 0.666, + "2018": 0.67, + "2019": 0.673, + "2020": 0.657, + "2021": 0.664 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr106", + "Region": "Diala", + "1990": 0.539, + "1991": 0.506, + "1992": 0.536, + "1993": 0.558, + "1994": 0.555, + "1995": 0.544, + "1996": 0.564, + "1997": 0.572, + "1998": 0.585, + "1999": 0.596, + "2000": 0.603, + "2001": 0.611, + "2002": 0.613, + "2003": 0.593, + "2004": 0.617, + "2005": 0.62, + "2006": 0.619, + "2007": 0.617, + "2008": 0.627, + "2009": 0.632, + "2010": 0.634, + "2011": 0.638, + "2012": 0.652, + "2013": 0.662, + "2014": 0.668, + "2015": 0.675, + "2016": 0.682, + "2017": 0.691, + "2018": 0.701, + "2019": 0.705, + "2020": 0.687, + "2021": 0.695 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr101", + "Region": "Dohouk", + "1990": 0.53, + "1991": 0.497, + "1992": 0.525, + "1993": 0.544, + "1994": 0.54, + "1995": 0.528, + "1996": 0.546, + "1997": 0.552, + "1998": 0.563, + "1999": 0.572, + "2000": 0.579, + "2001": 0.587, + "2002": 0.589, + "2003": 0.57, + "2004": 0.593, + "2005": 0.596, + "2006": 0.594, + "2007": 0.599, + "2008": 0.615, + "2009": 0.627, + "2010": 0.635, + "2011": 0.645, + "2012": 0.658, + "2013": 0.667, + "2014": 0.673, + "2015": 0.681, + "2016": 0.688, + "2017": 0.697, + "2018": 0.706, + "2019": 0.71, + "2020": 0.693, + "2021": 0.701 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr105", + "Region": "Erbil", + "1990": 0.53, + "1991": 0.498, + "1992": 0.525, + "1993": 0.545, + "1994": 0.541, + "1995": 0.529, + "1996": 0.547, + "1997": 0.553, + "1998": 0.564, + "1999": 0.573, + "2000": 0.58, + "2001": 0.588, + "2002": 0.59, + "2003": 0.571, + "2004": 0.594, + "2005": 0.597, + "2006": 0.595, + "2007": 0.6, + "2008": 0.616, + "2009": 0.627, + "2010": 0.635, + "2011": 0.644, + "2012": 0.657, + "2013": 0.667, + "2014": 0.673, + "2015": 0.681, + "2016": 0.688, + "2017": 0.697, + "2018": 0.707, + "2019": 0.711, + "2020": 0.694, + "2021": 0.702 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr110", + "Region": "Kerbela", + "1990": 0.529, + "1991": 0.497, + "1992": 0.526, + "1993": 0.547, + "1994": 0.545, + "1995": 0.534, + "1996": 0.554, + "1997": 0.562, + "1998": 0.574, + "1999": 0.585, + "2000": 0.593, + "2001": 0.6, + "2002": 0.602, + "2003": 0.582, + "2004": 0.606, + "2005": 0.61, + "2006": 0.608, + "2007": 0.611, + "2008": 0.626, + "2009": 0.636, + "2010": 0.642, + "2011": 0.651, + "2012": 0.659, + "2013": 0.663, + "2014": 0.663, + "2015": 0.664, + "2016": 0.665, + "2017": 0.668, + "2018": 0.672, + "2019": 0.676, + "2020": 0.659, + "2021": 0.666 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr117", + "Region": "Maysan", + "1990": 0.48, + "1991": 0.45, + "1992": 0.477, + "1993": 0.497, + "1994": 0.494, + "1995": 0.484, + "1996": 0.503, + "1997": 0.51, + "1998": 0.522, + "1999": 0.532, + "2000": 0.539, + "2001": 0.546, + "2002": 0.547, + "2003": 0.529, + "2004": 0.551, + "2005": 0.554, + "2006": 0.553, + "2007": 0.559, + "2008": 0.575, + "2009": 0.588, + "2010": 0.597, + "2011": 0.608, + "2012": 0.617, + "2013": 0.623, + "2014": 0.624, + "2015": 0.627, + "2016": 0.63, + "2017": 0.635, + "2018": 0.64, + "2019": 0.644, + "2020": 0.628, + "2021": 0.635 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr115", + "Region": "Muthanna", + "1990": 0.47, + "1991": 0.439, + "1992": 0.465, + "1993": 0.484, + "1994": 0.481, + "1995": 0.471, + "1996": 0.489, + "1997": 0.495, + "1998": 0.506, + "1999": 0.515, + "2000": 0.522, + "2001": 0.528, + "2002": 0.53, + "2003": 0.512, + "2004": 0.533, + "2005": 0.537, + "2006": 0.535, + "2007": 0.542, + "2008": 0.559, + "2009": 0.572, + "2010": 0.582, + "2011": 0.593, + "2012": 0.606, + "2013": 0.614, + "2014": 0.62, + "2015": 0.626, + "2016": 0.633, + "2017": 0.641, + "2018": 0.65, + "2019": 0.653, + "2020": 0.638, + "2021": 0.644 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr113", + "Region": "Najaf", + "1990": 0.52, + "1991": 0.489, + "1992": 0.518, + "1993": 0.538, + "1994": 0.536, + "1995": 0.525, + "1996": 0.545, + "1997": 0.552, + "1998": 0.564, + "1999": 0.575, + "2000": 0.582, + "2001": 0.59, + "2002": 0.591, + "2003": 0.572, + "2004": 0.595, + "2005": 0.599, + "2006": 0.598, + "2007": 0.603, + "2008": 0.62, + "2009": 0.632, + "2010": 0.641, + "2011": 0.652, + "2012": 0.658, + "2013": 0.66, + "2014": 0.658, + "2015": 0.658, + "2016": 0.658, + "2017": 0.659, + "2018": 0.661, + "2019": 0.664, + "2020": 0.648, + "2021": 0.655 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr102", + "Region": "Nenava", + "1990": 0.508, + "1991": 0.478, + "1992": 0.506, + "1993": 0.526, + "1994": 0.524, + "1995": 0.514, + "1996": 0.533, + "1997": 0.54, + "1998": 0.552, + "1999": 0.563, + "2000": 0.57, + "2001": 0.577, + "2002": 0.579, + "2003": 0.56, + "2004": 0.583, + "2005": 0.586, + "2006": 0.585, + "2007": 0.589, + "2008": 0.605, + "2009": 0.616, + "2010": 0.623, + "2011": 0.632, + "2012": 0.647, + "2013": 0.658, + "2014": 0.665, + "2015": 0.673, + "2016": 0.681, + "2017": 0.691, + "2018": 0.701, + "2019": 0.705, + "2020": 0.688, + "2021": 0.695 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr114", + "Region": "Qadisiya", + "1990": 0.488, + "1991": 0.456, + "1992": 0.483, + "1993": 0.503, + "1994": 0.501, + "1995": 0.491, + "1996": 0.51, + "1997": 0.517, + "1998": 0.529, + "1999": 0.54, + "2000": 0.546, + "2001": 0.553, + "2002": 0.555, + "2003": 0.536, + "2004": 0.558, + "2005": 0.562, + "2006": 0.561, + "2007": 0.569, + "2008": 0.589, + "2009": 0.603, + "2010": 0.614, + "2011": 0.627, + "2012": 0.64, + "2013": 0.649, + "2014": 0.654, + "2015": 0.661, + "2016": 0.667, + "2017": 0.675, + "2018": 0.684, + "2019": 0.688, + "2020": 0.671, + "2021": 0.678 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr112", + "Region": "Salaheldeen", + "1990": 0.506, + "1991": 0.476, + "1992": 0.504, + "1993": 0.524, + "1994": 0.522, + "1995": 0.511, + "1996": 0.531, + "1997": 0.537, + "1998": 0.55, + "1999": 0.56, + "2000": 0.567, + "2001": 0.574, + "2002": 0.576, + "2003": 0.557, + "2004": 0.58, + "2005": 0.583, + "2006": 0.582, + "2007": 0.586, + "2008": 0.601, + "2009": 0.612, + "2010": 0.619, + "2011": 0.628, + "2012": 0.643, + "2013": 0.654, + "2014": 0.66, + "2015": 0.669, + "2016": 0.677, + "2017": 0.687, + "2018": 0.698, + "2019": 0.702, + "2020": 0.685, + "2021": 0.692 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr103", + "Region": "Suleimaniya", + "1990": 0.545, + "1991": 0.51, + "1992": 0.538, + "1993": 0.559, + "1994": 0.555, + "1995": 0.542, + "1996": 0.561, + "1997": 0.567, + "1998": 0.579, + "1999": 0.589, + "2000": 0.595, + "2001": 0.603, + "2002": 0.605, + "2003": 0.585, + "2004": 0.609, + "2005": 0.613, + "2006": 0.611, + "2007": 0.618, + "2008": 0.637, + "2009": 0.65, + "2010": 0.66, + "2011": 0.672, + "2012": 0.682, + "2013": 0.688, + "2014": 0.69, + "2015": 0.694, + "2016": 0.698, + "2017": 0.704, + "2018": 0.71, + "2019": 0.714, + "2020": 0.697, + "2021": 0.704 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr104", + "Region": "Ta-amem-Karkuk", + "1990": 0.542, + "1991": 0.51, + "1992": 0.539, + "1993": 0.56, + "1994": 0.558, + "1995": 0.547, + "1996": 0.567, + "1997": 0.574, + "1998": 0.586, + "1999": 0.597, + "2000": 0.605, + "2001": 0.612, + "2002": 0.614, + "2003": 0.595, + "2004": 0.619, + "2005": 0.622, + "2006": 0.621, + "2007": 0.62, + "2008": 0.631, + "2009": 0.637, + "2010": 0.639, + "2011": 0.643, + "2012": 0.658, + "2013": 0.668, + "2014": 0.675, + "2015": 0.683, + "2016": 0.691, + "2017": 0.701, + "2018": 0.711, + "2019": 0.715, + "2020": 0.697, + "2021": 0.705 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr116", + "Region": "Thi-Qar", + "1990": 0.494, + "1991": 0.462, + "1992": 0.49, + "1993": 0.51, + "1994": 0.507, + "1995": 0.496, + "1996": 0.515, + "1997": 0.522, + "1998": 0.534, + "1999": 0.544, + "2000": 0.551, + "2001": 0.558, + "2002": 0.559, + "2003": 0.54, + "2004": 0.563, + "2005": 0.566, + "2006": 0.565, + "2007": 0.573, + "2008": 0.592, + "2009": 0.606, + "2010": 0.617, + "2011": 0.63, + "2012": 0.643, + "2013": 0.653, + "2014": 0.658, + "2015": 0.665, + "2016": 0.672, + "2017": 0.68, + "2018": 0.69, + "2019": 0.693, + "2020": 0.677, + "2021": 0.684 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr111", + "Region": "Wasit", + "1990": 0.499, + "1991": 0.468, + "1992": 0.495, + "1993": 0.516, + "1994": 0.513, + "1995": 0.503, + "1996": 0.522, + "1997": 0.529, + "1998": 0.541, + "1999": 0.551, + "2000": 0.558, + "2001": 0.565, + "2002": 0.567, + "2003": 0.548, + "2004": 0.57, + "2005": 0.574, + "2006": 0.573, + "2007": 0.577, + "2008": 0.593, + "2009": 0.604, + "2010": 0.612, + "2011": 0.622, + "2012": 0.633, + "2013": 0.639, + "2014": 0.642, + "2015": 0.646, + "2016": 0.65, + "2017": 0.655, + "2018": 0.662, + "2019": 0.665, + "2020": 0.649, + "2021": 0.656 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "National", + "GDLCODE": "IRLt", + "Region": "Total", + "1990": 0.737, + "1991": 0.743, + "1992": 0.751, + "1993": 0.76, + "1994": 0.771, + "1995": 0.777, + "1996": 0.785, + "1997": 0.794, + "1998": 0.83, + "1999": 0.837, + "2000": 0.847, + "2001": 0.855, + "2002": 0.864, + "2003": 0.873, + "2004": 0.881, + "2005": 0.888, + "2006": 0.891, + "2007": 0.896, + "2008": 0.899, + "2009": 0.895, + "2010": 0.904, + "2011": 0.902, + "2012": 0.903, + "2013": 0.908, + "2014": 0.914, + "2015": 0.925, + "2016": 0.929, + "2017": 0.934, + "2018": 0.937, + "2019": 0.942, + "2020": 0.943, + "2021": 0.945 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr101", + "Region": "Border", + "1990": 0.712, + "1991": 0.717, + "1992": 0.725, + "1993": 0.734, + "1994": 0.744, + "1995": 0.75, + "1996": 0.758, + "1997": 0.767, + "1998": 0.801, + "1999": 0.808, + "2000": 0.818, + "2001": 0.826, + "2002": 0.835, + "2003": 0.843, + "2004": 0.851, + "2005": 0.858, + "2006": 0.861, + "2007": 0.865, + "2008": 0.867, + "2009": 0.863, + "2010": 0.865, + "2011": 0.863, + "2012": 0.862, + "2013": 0.863, + "2014": 0.867, + "2015": 0.882, + "2016": 0.887, + "2017": 0.891, + "2018": 0.895, + "2019": 0.899, + "2020": 0.901, + "2021": 0.904 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr104", + "Region": "Dublin", + "1990": 0.76, + "1991": 0.766, + "1992": 0.774, + "1993": 0.784, + "1994": 0.795, + "1995": 0.8, + "1996": 0.809, + "1997": 0.819, + "1998": 0.855, + "1999": 0.862, + "2000": 0.872, + "2001": 0.881, + "2002": 0.89, + "2003": 0.899, + "2004": 0.907, + "2005": 0.913, + "2006": 0.916, + "2007": 0.921, + "2008": 0.925, + "2009": 0.922, + "2010": 0.933, + "2011": 0.925, + "2012": 0.927, + "2013": 0.934, + "2014": 0.942, + "2015": 0.943, + "2016": 0.945, + "2017": 0.947, + "2018": 0.949, + "2019": 0.951, + "2020": 0.952, + "2021": 0.95 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr105", + "Region": "Mid-East", + "1990": 0.734, + "1991": 0.739, + "1992": 0.747, + "1993": 0.757, + "1994": 0.767, + "1995": 0.773, + "1996": 0.781, + "1997": 0.791, + "1998": 0.826, + "1999": 0.833, + "2000": 0.843, + "2001": 0.851, + "2002": 0.86, + "2003": 0.869, + "2004": 0.877, + "2005": 0.883, + "2006": 0.886, + "2007": 0.891, + "2008": 0.892, + "2009": 0.887, + "2010": 0.892, + "2011": 0.886, + "2012": 0.887, + "2013": 0.894, + "2014": 0.9, + "2015": 0.91, + "2016": 0.915, + "2017": 0.92, + "2018": 0.923, + "2019": 0.927, + "2020": 0.929, + "2021": 0.932 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr106", + "Region": "Mid-West", + "1990": 0.727, + "1991": 0.732, + "1992": 0.74, + "1993": 0.749, + "1994": 0.76, + "1995": 0.765, + "1996": 0.773, + "1997": 0.783, + "1998": 0.818, + "1999": 0.825, + "2000": 0.835, + "2001": 0.843, + "2002": 0.852, + "2003": 0.861, + "2004": 0.868, + "2005": 0.875, + "2006": 0.878, + "2007": 0.884, + "2008": 0.884, + "2009": 0.88, + "2010": 0.889, + "2011": 0.884, + "2012": 0.886, + "2013": 0.892, + "2014": 0.895, + "2015": 0.905, + "2016": 0.91, + "2017": 0.914, + "2018": 0.918, + "2019": 0.922, + "2020": 0.923, + "2021": 0.927 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr102", + "Region": "Midland", + "1990": 0.713, + "1991": 0.719, + "1992": 0.726, + "1993": 0.736, + "1994": 0.746, + "1995": 0.752, + "1996": 0.759, + "1997": 0.769, + "1998": 0.803, + "1999": 0.81, + "2000": 0.82, + "2001": 0.828, + "2002": 0.837, + "2003": 0.846, + "2004": 0.855, + "2005": 0.863, + "2006": 0.867, + "2007": 0.869, + "2008": 0.868, + "2009": 0.86, + "2010": 0.863, + "2011": 0.86, + "2012": 0.861, + "2013": 0.866, + "2014": 0.871, + "2015": 0.884, + "2016": 0.889, + "2017": 0.893, + "2018": 0.897, + "2019": 0.901, + "2020": 0.902, + "2021": 0.905 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr107", + "Region": "South-East", + "1990": 0.718, + "1991": 0.723, + "1992": 0.731, + "1993": 0.741, + "1994": 0.751, + "1995": 0.756, + "1996": 0.764, + "1997": 0.774, + "1998": 0.809, + "1999": 0.815, + "2000": 0.825, + "2001": 0.833, + "2002": 0.842, + "2003": 0.851, + "2004": 0.858, + "2005": 0.865, + "2006": 0.868, + "2007": 0.874, + "2008": 0.877, + "2009": 0.868, + "2010": 0.875, + "2011": 0.874, + "2012": 0.875, + "2013": 0.884, + "2014": 0.886, + "2015": 0.899, + "2016": 0.904, + "2017": 0.909, + "2018": 0.912, + "2019": 0.916, + "2020": 0.917, + "2021": 0.921 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr108", + "Region": "South-West", + "1990": 0.745, + "1991": 0.75, + "1992": 0.758, + "1993": 0.768, + "1994": 0.779, + "1995": 0.784, + "1996": 0.792, + "1997": 0.802, + "1998": 0.838, + "1999": 0.845, + "2000": 0.855, + "2001": 0.863, + "2002": 0.872, + "2003": 0.881, + "2004": 0.889, + "2005": 0.895, + "2006": 0.898, + "2007": 0.904, + "2008": 0.905, + "2009": 0.905, + "2010": 0.913, + "2011": 0.915, + "2012": 0.916, + "2013": 0.916, + "2014": 0.923, + "2015": 0.933, + "2016": 0.938, + "2017": 0.943, + "2018": 0.945, + "2019": 0.946, + "2020": 0.948, + "2021": 0.945 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr103", + "Region": "West", + "1990": 0.725, + "1991": 0.73, + "1992": 0.738, + "1993": 0.747, + "1994": 0.758, + "1995": 0.764, + "1996": 0.772, + "1997": 0.781, + "1998": 0.816, + "1999": 0.823, + "2000": 0.833, + "2001": 0.841, + "2002": 0.85, + "2003": 0.859, + "2004": 0.868, + "2005": 0.875, + "2006": 0.879, + "2007": 0.883, + "2008": 0.885, + "2009": 0.882, + "2010": 0.894, + "2011": 0.895, + "2012": 0.896, + "2013": 0.895, + "2014": 0.9, + "2015": 0.91, + "2016": 0.915, + "2017": 0.92, + "2018": 0.923, + "2019": 0.927, + "2020": 0.929, + "2021": 0.932 + }, + { + "Country": "Israel", + "Continent": "Asia/Pacific", + "ISO_Code": "ISR", + "Level": "National", + "GDLCODE": "ISRt", + "Region": "Total", + "1990": 0.787, + "1991": 0.793, + "1992": 0.797, + "1993": 0.804, + "1994": 0.808, + "1995": 0.811, + "1996": 0.818, + "1997": 0.825, + "1998": 0.833, + "1999": 0.841, + "2000": 0.844, + "2001": 0.848, + "2002": 0.854, + "2003": 0.855, + "2004": 0.858, + "2005": 0.866, + "2006": 0.874, + "2007": 0.885, + "2008": 0.885, + "2009": 0.889, + "2010": 0.894, + "2011": 0.897, + "2012": 0.898, + "2013": 0.904, + "2014": 0.908, + "2015": 0.909, + "2016": 0.913, + "2017": 0.917, + "2018": 0.919, + "2019": 0.921, + "2020": 0.917, + "2021": 0.919 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "National", + "GDLCODE": "ITAt", + "Region": "Total", + "1990": 0.778, + "1991": 0.783, + "1992": 0.789, + "1993": 0.795, + "1994": 0.804, + "1995": 0.81, + "1996": 0.816, + "1997": 0.824, + "1998": 0.829, + "1999": 0.835, + "2000": 0.841, + "2001": 0.849, + "2002": 0.853, + "2003": 0.858, + "2004": 0.865, + "2005": 0.868, + "2006": 0.873, + "2007": 0.877, + "2008": 0.878, + "2009": 0.878, + "2010": 0.882, + "2011": 0.885, + "2012": 0.883, + "2013": 0.882, + "2014": 0.883, + "2015": 0.882, + "2016": 0.887, + "2017": 0.888, + "2018": 0.893, + "2019": 0.897, + "2020": 0.889, + "2021": 0.895 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr105", + "Region": "Abruzzo", + "1990": 0.785, + "1991": 0.789, + "1992": 0.796, + "1993": 0.801, + "1994": 0.809, + "1995": 0.816, + "1996": 0.822, + "1997": 0.831, + "1998": 0.835, + "1999": 0.842, + "2000": 0.845, + "2001": 0.853, + "2002": 0.858, + "2003": 0.862, + "2004": 0.867, + "2005": 0.873, + "2006": 0.877, + "2007": 0.879, + "2008": 0.882, + "2009": 0.878, + "2010": 0.884, + "2011": 0.89, + "2012": 0.89, + "2013": 0.887, + "2014": 0.886, + "2015": 0.885, + "2016": 0.887, + "2017": 0.886, + "2018": 0.89, + "2019": 0.894, + "2020": 0.886, + "2021": 0.892 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr109", + "Region": "Basilicata", + "1990": 0.754, + "1991": 0.759, + "1992": 0.764, + "1993": 0.771, + "1994": 0.779, + "1995": 0.783, + "1996": 0.789, + "1997": 0.797, + "1998": 0.802, + "1999": 0.808, + "2000": 0.813, + "2001": 0.818, + "2002": 0.823, + "2003": 0.829, + "2004": 0.833, + "2005": 0.837, + "2006": 0.843, + "2007": 0.849, + "2008": 0.851, + "2009": 0.85, + "2010": 0.851, + "2011": 0.854, + "2012": 0.854, + "2013": 0.854, + "2014": 0.854, + "2015": 0.855, + "2016": 0.859, + "2017": 0.858, + "2018": 0.864, + "2019": 0.867, + "2020": 0.859, + "2021": 0.865 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr110", + "Region": "Calabria", + "1990": 0.75, + "1991": 0.753, + "1992": 0.76, + "1993": 0.765, + "1994": 0.774, + "1995": 0.781, + "1996": 0.786, + "1997": 0.793, + "1998": 0.798, + "1999": 0.805, + "2000": 0.808, + "2001": 0.815, + "2002": 0.82, + "2003": 0.823, + "2004": 0.831, + "2005": 0.833, + "2006": 0.839, + "2007": 0.842, + "2008": 0.843, + "2009": 0.844, + "2010": 0.847, + "2011": 0.849, + "2012": 0.846, + "2013": 0.844, + "2014": 0.844, + "2015": 0.844, + "2016": 0.846, + "2017": 0.844, + "2018": 0.847, + "2019": 0.85, + "2020": 0.842, + "2021": 0.848 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr107", + "Region": "Campania", + "1990": 0.749, + "1991": 0.751, + "1992": 0.759, + "1993": 0.764, + "1994": 0.773, + "1995": 0.779, + "1996": 0.784, + "1997": 0.791, + "1998": 0.797, + "1999": 0.803, + "2000": 0.806, + "2001": 0.815, + "2002": 0.82, + "2003": 0.823, + "2004": 0.83, + "2005": 0.832, + "2006": 0.837, + "2007": 0.839, + "2008": 0.841, + "2009": 0.842, + "2010": 0.843, + "2011": 0.845, + "2012": 0.845, + "2013": 0.842, + "2014": 0.845, + "2015": 0.843, + "2016": 0.849, + "2017": 0.849, + "2018": 0.855, + "2019": 0.859, + "2020": 0.85, + "2021": 0.856 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr117", + "Region": "Emilia-Romagna", + "1990": 0.821, + "1991": 0.826, + "1992": 0.831, + "1993": 0.835, + "1994": 0.843, + "1995": 0.848, + "1996": 0.853, + "1997": 0.86, + "1998": 0.864, + "1999": 0.869, + "2000": 0.871, + "2001": 0.877, + "2002": 0.882, + "2003": 0.884, + "2004": 0.89, + "2005": 0.891, + "2006": 0.898, + "2007": 0.902, + "2008": 0.903, + "2009": 0.903, + "2010": 0.906, + "2011": 0.911, + "2012": 0.908, + "2013": 0.907, + "2014": 0.909, + "2015": 0.909, + "2016": 0.914, + "2017": 0.917, + "2018": 0.922, + "2019": 0.926, + "2020": 0.918, + "2021": 0.924 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr116", + "Region": "Friuli-Venezia Giulia", + "1990": 0.786, + "1991": 0.79, + "1992": 0.797, + "1993": 0.803, + "1994": 0.813, + "1995": 0.818, + "1996": 0.823, + "1997": 0.833, + "1998": 0.839, + "1999": 0.844, + "2000": 0.849, + "2001": 0.857, + "2002": 0.861, + "2003": 0.864, + "2004": 0.871, + "2005": 0.875, + "2006": 0.882, + "2007": 0.888, + "2008": 0.886, + "2009": 0.885, + "2010": 0.889, + "2011": 0.892, + "2012": 0.892, + "2013": 0.889, + "2014": 0.894, + "2015": 0.893, + "2016": 0.897, + "2017": 0.9, + "2018": 0.903, + "2019": 0.908, + "2020": 0.9, + "2021": 0.905 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr121", + "Region": "Lazio", + "1990": 0.804, + "1991": 0.808, + "1992": 0.814, + "1993": 0.82, + "1994": 0.829, + "1995": 0.836, + "1996": 0.842, + "1997": 0.849, + "1998": 0.855, + "1999": 0.861, + "2000": 0.865, + "2001": 0.873, + "2002": 0.878, + "2003": 0.883, + "2004": 0.89, + "2005": 0.895, + "2006": 0.9, + "2007": 0.904, + "2008": 0.905, + "2009": 0.905, + "2010": 0.907, + "2011": 0.91, + "2012": 0.907, + "2013": 0.906, + "2014": 0.906, + "2015": 0.905, + "2016": 0.909, + "2017": 0.91, + "2018": 0.915, + "2019": 0.919, + "2020": 0.911, + "2021": 0.917 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr103", + "Region": "Liguria", + "1990": 0.784, + "1991": 0.79, + "1992": 0.797, + "1993": 0.8, + "1994": 0.81, + "1995": 0.814, + "1996": 0.823, + "1997": 0.83, + "1998": 0.836, + "1999": 0.842, + "2000": 0.846, + "2001": 0.855, + "2002": 0.859, + "2003": 0.863, + "2004": 0.875, + "2005": 0.877, + "2006": 0.881, + "2007": 0.886, + "2008": 0.889, + "2009": 0.89, + "2010": 0.89, + "2011": 0.893, + "2012": 0.891, + "2013": 0.889, + "2014": 0.891, + "2015": 0.889, + "2016": 0.894, + "2017": 0.894, + "2018": 0.898, + "2019": 0.903, + "2020": 0.895, + "2021": 0.901 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr104", + "Region": "Lombardia", + "1990": 0.791, + "1991": 0.797, + "1992": 0.804, + "1993": 0.81, + "1994": 0.819, + "1995": 0.825, + "1996": 0.831, + "1997": 0.84, + "1998": 0.846, + "1999": 0.852, + "2000": 0.858, + "2001": 0.864, + "2002": 0.87, + "2003": 0.874, + "2004": 0.881, + "2005": 0.884, + "2006": 0.889, + "2007": 0.894, + "2008": 0.896, + "2009": 0.896, + "2010": 0.9, + "2011": 0.905, + "2012": 0.901, + "2013": 0.901, + "2014": 0.903, + "2015": 0.902, + "2016": 0.907, + "2017": 0.91, + "2018": 0.914, + "2019": 0.918, + "2020": 0.909, + "2021": 0.915 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr120", + "Region": "Marche", + "1990": 0.805, + "1991": 0.81, + "1992": 0.815, + "1993": 0.819, + "1994": 0.827, + "1995": 0.832, + "1996": 0.837, + "1997": 0.843, + "1998": 0.848, + "1999": 0.852, + "2000": 0.855, + "2001": 0.862, + "2002": 0.867, + "2003": 0.869, + "2004": 0.874, + "2005": 0.877, + "2006": 0.882, + "2007": 0.885, + "2008": 0.884, + "2009": 0.886, + "2010": 0.889, + "2011": 0.891, + "2012": 0.888, + "2013": 0.886, + "2014": 0.891, + "2015": 0.89, + "2016": 0.896, + "2017": 0.897, + "2018": 0.902, + "2019": 0.906, + "2020": 0.897, + "2021": 0.903 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr106", + "Region": "Molise", + "1990": 0.77, + "1991": 0.771, + "1992": 0.777, + "1993": 0.783, + "1994": 0.792, + "1995": 0.798, + "1996": 0.804, + "1997": 0.809, + "1998": 0.814, + "1999": 0.821, + "2000": 0.824, + "2001": 0.832, + "2002": 0.839, + "2003": 0.842, + "2004": 0.846, + "2005": 0.852, + "2006": 0.855, + "2007": 0.864, + "2008": 0.861, + "2009": 0.864, + "2010": 0.864, + "2011": 0.866, + "2012": 0.866, + "2013": 0.86, + "2014": 0.861, + "2015": 0.862, + "2016": 0.866, + "2017": 0.867, + "2018": 0.872, + "2019": 0.877, + "2020": 0.869, + "2021": 0.874 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr101", + "Region": "Piemonte", + "1990": 0.782, + "1991": 0.787, + "1992": 0.794, + "1993": 0.799, + "1994": 0.808, + "1995": 0.813, + "1996": 0.821, + "1997": 0.828, + "1998": 0.834, + "1999": 0.839, + "2000": 0.844, + "2001": 0.851, + "2002": 0.855, + "2003": 0.86, + "2004": 0.867, + "2005": 0.871, + "2006": 0.876, + "2007": 0.881, + "2008": 0.881, + "2009": 0.88, + "2010": 0.885, + "2011": 0.888, + "2012": 0.885, + "2013": 0.884, + "2014": 0.887, + "2015": 0.886, + "2016": 0.892, + "2017": 0.895, + "2018": 0.899, + "2019": 0.904, + "2020": 0.895, + "2021": 0.901 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr113", + "Region": "Provincia Autonoma di Bolzano", + "1990": 0.78, + "1991": 0.786, + "1992": 0.793, + "1993": 0.798, + "1994": 0.807, + "1995": 0.815, + "1996": 0.818, + "1997": 0.829, + "1998": 0.833, + "1999": 0.837, + "2000": 0.844, + "2001": 0.847, + "2002": 0.85, + "2003": 0.852, + "2004": 0.86, + "2005": 0.863, + "2006": 0.869, + "2007": 0.876, + "2008": 0.877, + "2009": 0.881, + "2010": 0.884, + "2011": 0.889, + "2012": 0.888, + "2013": 0.89, + "2014": 0.894, + "2015": 0.888, + "2016": 0.894, + "2017": 0.896, + "2018": 0.912, + "2019": 0.915, + "2020": 0.907, + "2021": 0.912 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr114", + "Region": "Provincia Autonoma di Trento", + "1990": 0.803, + "1991": 0.807, + "1992": 0.813, + "1993": 0.822, + "1994": 0.829, + "1995": 0.835, + "1996": 0.843, + "1997": 0.851, + "1998": 0.855, + "1999": 0.863, + "2000": 0.866, + "2001": 0.877, + "2002": 0.88, + "2003": 0.882, + "2004": 0.888, + "2005": 0.893, + "2006": 0.897, + "2007": 0.904, + "2008": 0.905, + "2009": 0.908, + "2010": 0.91, + "2011": 0.916, + "2012": 0.913, + "2013": 0.911, + "2014": 0.916, + "2015": 0.915, + "2016": 0.916, + "2017": 0.917, + "2018": 0.921, + "2019": 0.925, + "2020": 0.917, + "2021": 0.922 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr108", + "Region": "Puglia", + "1990": 0.751, + "1991": 0.756, + "1992": 0.761, + "1993": 0.768, + "1994": 0.776, + "1995": 0.783, + "1996": 0.788, + "1997": 0.795, + "1998": 0.799, + "1999": 0.806, + "2000": 0.809, + "2001": 0.817, + "2002": 0.822, + "2003": 0.826, + "2004": 0.832, + "2005": 0.833, + "2006": 0.839, + "2007": 0.841, + "2008": 0.843, + "2009": 0.841, + "2010": 0.845, + "2011": 0.849, + "2012": 0.848, + "2013": 0.846, + "2014": 0.848, + "2015": 0.846, + "2016": 0.85, + "2017": 0.849, + "2018": 0.854, + "2019": 0.859, + "2020": 0.851, + "2021": 0.856 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr112", + "Region": "Sardegna", + "1990": 0.759, + "1991": 0.762, + "1992": 0.769, + "1993": 0.773, + "1994": 0.781, + "1995": 0.789, + "1996": 0.794, + "1997": 0.802, + "1998": 0.806, + "1999": 0.812, + "2000": 0.817, + "2001": 0.825, + "2002": 0.829, + "2003": 0.834, + "2004": 0.841, + "2005": 0.843, + "2006": 0.849, + "2007": 0.852, + "2008": 0.855, + "2009": 0.854, + "2010": 0.858, + "2011": 0.862, + "2012": 0.86, + "2013": 0.857, + "2014": 0.858, + "2015": 0.86, + "2016": 0.861, + "2017": 0.865, + "2018": 0.869, + "2019": 0.873, + "2020": 0.865, + "2021": 0.871 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr111", + "Region": "Sicilia", + "1990": 0.748, + "1991": 0.752, + "1992": 0.758, + "1993": 0.764, + "1994": 0.772, + "1995": 0.778, + "1996": 0.783, + "1997": 0.791, + "1998": 0.796, + "1999": 0.802, + "2000": 0.806, + "2001": 0.813, + "2002": 0.818, + "2003": 0.822, + "2004": 0.829, + "2005": 0.831, + "2006": 0.837, + "2007": 0.838, + "2008": 0.84, + "2009": 0.841, + "2010": 0.844, + "2011": 0.844, + "2012": 0.843, + "2013": 0.841, + "2014": 0.842, + "2015": 0.839, + "2016": 0.842, + "2017": 0.841, + "2018": 0.846, + "2019": 0.85, + "2020": 0.842, + "2021": 0.847 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr118", + "Region": "Toscana", + "1990": 0.792, + "1991": 0.797, + "1992": 0.803, + "1993": 0.809, + "1994": 0.818, + "1995": 0.823, + "1996": 0.829, + "1997": 0.837, + "1998": 0.844, + "1999": 0.849, + "2000": 0.854, + "2001": 0.86, + "2002": 0.867, + "2003": 0.872, + "2004": 0.878, + "2005": 0.881, + "2006": 0.887, + "2007": 0.889, + "2008": 0.89, + "2009": 0.891, + "2010": 0.894, + "2011": 0.898, + "2012": 0.895, + "2013": 0.894, + "2014": 0.897, + "2015": 0.898, + "2016": 0.904, + "2017": 0.905, + "2018": 0.909, + "2019": 0.912, + "2020": 0.904, + "2021": 0.909 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr119", + "Region": "Umbria", + "1990": 0.788, + "1991": 0.793, + "1992": 0.8, + "1993": 0.804, + "1994": 0.813, + "1995": 0.82, + "1996": 0.825, + "1997": 0.834, + "1998": 0.838, + "1999": 0.845, + "2000": 0.851, + "2001": 0.857, + "2002": 0.863, + "2003": 0.867, + "2004": 0.874, + "2005": 0.874, + "2006": 0.882, + "2007": 0.884, + "2008": 0.884, + "2009": 0.886, + "2010": 0.887, + "2011": 0.892, + "2012": 0.887, + "2013": 0.885, + "2014": 0.886, + "2015": 0.884, + "2016": 0.889, + "2017": 0.892, + "2018": 0.896, + "2019": 0.902, + "2020": 0.894, + "2021": 0.9 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr102", + "Region": "Valle dAosta", + "1990": 0.774, + "1991": 0.775, + "1992": 0.782, + "1993": 0.79, + "1994": 0.796, + "1995": 0.804, + "1996": 0.806, + "1997": 0.815, + "1998": 0.822, + "1999": 0.828, + "2000": 0.828, + "2001": 0.839, + "2002": 0.84, + "2003": 0.85, + "2004": 0.858, + "2005": 0.858, + "2006": 0.867, + "2007": 0.868, + "2008": 0.872, + "2009": 0.872, + "2010": 0.876, + "2011": 0.881, + "2012": 0.882, + "2013": 0.88, + "2014": 0.881, + "2015": 0.873, + "2016": 0.881, + "2017": 0.881, + "2018": 0.882, + "2019": 0.892, + "2020": 0.884, + "2021": 0.889 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr115", + "Region": "Veneto", + "1990": 0.784, + "1991": 0.789, + "1992": 0.796, + "1993": 0.802, + "1994": 0.81, + "1995": 0.817, + "1996": 0.823, + "1997": 0.831, + "1998": 0.837, + "1999": 0.842, + "2000": 0.847, + "2001": 0.855, + "2002": 0.858, + "2003": 0.863, + "2004": 0.87, + "2005": 0.873, + "2006": 0.878, + "2007": 0.882, + "2008": 0.883, + "2009": 0.884, + "2010": 0.887, + "2011": 0.891, + "2012": 0.887, + "2013": 0.887, + "2014": 0.89, + "2015": 0.889, + "2016": 0.894, + "2017": 0.897, + "2018": 0.9, + "2019": 0.905, + "2020": 0.897, + "2021": 0.903 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "National", + "GDLCODE": "JAMt", + "Region": "Total", + "1990": 0.659, + "1991": 0.662, + "1992": 0.663, + "1993": 0.667, + "1994": 0.668, + "1995": 0.669, + "1996": 0.669, + "1997": 0.668, + "1998": 0.666, + "1999": 0.667, + "2000": 0.664, + "2001": 0.673, + "2002": 0.677, + "2003": 0.671, + "2004": 0.687, + "2005": 0.69, + "2006": 0.694, + "2007": 0.697, + "2008": 0.7, + "2009": 0.7, + "2010": 0.704, + "2011": 0.709, + "2012": 0.713, + "2013": 0.714, + "2014": 0.714, + "2015": 0.713, + "2016": 0.712, + "2017": 0.715, + "2018": 0.716, + "2019": 0.719, + "2020": 0.713, + "2021": 0.709 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr101", + "Region": "Kingston, St Andrew", + "1990": 0.673, + "1991": 0.676, + "1992": 0.677, + "1993": 0.681, + "1994": 0.682, + "1995": 0.683, + "1996": 0.683, + "1997": 0.682, + "1998": 0.68, + "1999": 0.681, + "2000": 0.678, + "2001": 0.687, + "2002": 0.691, + "2003": 0.685, + "2004": 0.701, + "2005": 0.704, + "2006": 0.71, + "2007": 0.715, + "2008": 0.72, + "2009": 0.722, + "2010": 0.728, + "2011": 0.735, + "2012": 0.738, + "2013": 0.74, + "2014": 0.74, + "2015": 0.739, + "2016": 0.738, + "2017": 0.741, + "2018": 0.742, + "2019": 0.745, + "2020": 0.739, + "2021": 0.735 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr106", + "Region": "Manchester, Clarendon", + "1990": 0.653, + "1991": 0.656, + "1992": 0.657, + "1993": 0.661, + "1994": 0.662, + "1995": 0.663, + "1996": 0.663, + "1997": 0.662, + "1998": 0.66, + "1999": 0.661, + "2000": 0.657, + "2001": 0.667, + "2002": 0.671, + "2003": 0.664, + "2004": 0.68, + "2005": 0.684, + "2006": 0.688, + "2007": 0.691, + "2008": 0.694, + "2009": 0.696, + "2010": 0.7, + "2011": 0.705, + "2012": 0.709, + "2013": 0.71, + "2014": 0.71, + "2015": 0.709, + "2016": 0.709, + "2017": 0.711, + "2018": 0.712, + "2019": 0.715, + "2020": 0.709, + "2021": 0.705 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr103", + "Region": "St Ann, St Catherine", + "1990": 0.678, + "1991": 0.681, + "1992": 0.683, + "1993": 0.687, + "1994": 0.687, + "1995": 0.688, + "1996": 0.689, + "1997": 0.687, + "1998": 0.686, + "1999": 0.687, + "2000": 0.683, + "2001": 0.693, + "2002": 0.697, + "2003": 0.691, + "2004": 0.707, + "2005": 0.71, + "2006": 0.712, + "2007": 0.714, + "2008": 0.715, + "2009": 0.714, + "2010": 0.716, + "2011": 0.719, + "2012": 0.722, + "2013": 0.724, + "2014": 0.724, + "2015": 0.722, + "2016": 0.722, + "2017": 0.725, + "2018": 0.726, + "2019": 0.729, + "2020": 0.723, + "2021": 0.719 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr105", + "Region": "St James, Hanover, Westmoreland", + "1990": 0.642, + "1991": 0.644, + "1992": 0.646, + "1993": 0.65, + "1994": 0.65, + "1995": 0.651, + "1996": 0.651, + "1997": 0.65, + "1998": 0.649, + "1999": 0.65, + "2000": 0.646, + "2001": 0.655, + "2002": 0.659, + "2003": 0.653, + "2004": 0.668, + "2005": 0.672, + "2006": 0.675, + "2007": 0.679, + "2008": 0.682, + "2009": 0.682, + "2010": 0.686, + "2011": 0.691, + "2012": 0.695, + "2013": 0.696, + "2014": 0.696, + "2015": 0.695, + "2016": 0.695, + "2017": 0.697, + "2018": 0.698, + "2019": 0.701, + "2020": 0.695, + "2021": 0.691 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr102", + "Region": "St Thomas, Portland, St Mary", + "1990": 0.644, + "1991": 0.647, + "1992": 0.648, + "1993": 0.652, + "1994": 0.653, + "1995": 0.653, + "1996": 0.654, + "1997": 0.652, + "1998": 0.651, + "1999": 0.652, + "2000": 0.648, + "2001": 0.657, + "2002": 0.662, + "2003": 0.655, + "2004": 0.671, + "2005": 0.674, + "2006": 0.677, + "2007": 0.679, + "2008": 0.68, + "2009": 0.68, + "2010": 0.683, + "2011": 0.686, + "2012": 0.69, + "2013": 0.691, + "2014": 0.691, + "2015": 0.69, + "2016": 0.69, + "2017": 0.692, + "2018": 0.693, + "2019": 0.696, + "2020": 0.69, + "2021": 0.686 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr104", + "Region": "Trelawny, St Elizabeth", + "1990": 0.631, + "1991": 0.633, + "1992": 0.635, + "1993": 0.639, + "1994": 0.639, + "1995": 0.64, + "1996": 0.64, + "1997": 0.639, + "1998": 0.638, + "1999": 0.638, + "2000": 0.635, + "2001": 0.644, + "2002": 0.648, + "2003": 0.641, + "2004": 0.657, + "2005": 0.66, + "2006": 0.663, + "2007": 0.665, + "2008": 0.666, + "2009": 0.665, + "2010": 0.668, + "2011": 0.671, + "2012": 0.675, + "2013": 0.676, + "2014": 0.676, + "2015": 0.675, + "2016": 0.675, + "2017": 0.677, + "2018": 0.678, + "2019": 0.681, + "2020": 0.675, + "2021": 0.671 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "National", + "GDLCODE": "JPNt", + "Region": "Total", + "1990": 0.845, + "1991": 0.849, + "1992": 0.85, + "1993": 0.855, + "1994": 0.861, + "1995": 0.863, + "1996": 0.868, + "1997": 0.871, + "1998": 0.871, + "1999": 0.872, + "2000": 0.877, + "2001": 0.88, + "2002": 0.882, + "2003": 0.884, + "2004": 0.888, + "2005": 0.889, + "2006": 0.892, + "2007": 0.895, + "2008": 0.895, + "2009": 0.896, + "2010": 0.898, + "2011": 0.899, + "2012": 0.905, + "2013": 0.91, + "2014": 0.914, + "2015": 0.918, + "2016": 0.921, + "2017": 0.922, + "2018": 0.923, + "2019": 0.924, + "2020": 0.923, + "2021": 0.925 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr108", + "Region": "Chugoku (Tottori, Shimane, Okayama, Hiroshima, Yamaguchi)", + "1990": 0.839, + "1991": 0.843, + "1992": 0.844, + "1993": 0.849, + "1994": 0.855, + "1995": 0.857, + "1996": 0.862, + "1997": 0.865, + "1998": 0.865, + "1999": 0.866, + "2000": 0.871, + "2001": 0.874, + "2002": 0.877, + "2003": 0.88, + "2004": 0.884, + "2005": 0.886, + "2006": 0.89, + "2007": 0.893, + "2008": 0.892, + "2009": 0.892, + "2010": 0.894, + "2011": 0.897, + "2012": 0.901, + "2013": 0.907, + "2014": 0.911, + "2015": 0.915, + "2016": 0.917, + "2017": 0.919, + "2018": 0.919, + "2019": 0.921, + "2020": 0.92, + "2021": 0.921 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr101", + "Region": "Hokkaido", + "1990": 0.825, + "1991": 0.829, + "1992": 0.83, + "1993": 0.835, + "1994": 0.84, + "1995": 0.842, + "1996": 0.848, + "1997": 0.85, + "1998": 0.851, + "1999": 0.851, + "2000": 0.856, + "2001": 0.859, + "2002": 0.861, + "2003": 0.862, + "2004": 0.866, + "2005": 0.866, + "2006": 0.867, + "2007": 0.869, + "2008": 0.87, + "2009": 0.872, + "2010": 0.874, + "2011": 0.875, + "2012": 0.881, + "2013": 0.886, + "2014": 0.89, + "2015": 0.893, + "2016": 0.896, + "2017": 0.897, + "2018": 0.898, + "2019": 0.899, + "2020": 0.898, + "2021": 0.9 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr105", + "Region": "Hokuriku (Niigata, Toyama, Ishikawa, Fukui)", + "1990": 0.827, + "1991": 0.831, + "1992": 0.832, + "1993": 0.837, + "1994": 0.843, + "1995": 0.845, + "1996": 0.85, + "1997": 0.852, + "1998": 0.853, + "1999": 0.854, + "2000": 0.859, + "2001": 0.862, + "2002": 0.865, + "2003": 0.868, + "2004": 0.871, + "2005": 0.873, + "2006": 0.876, + "2007": 0.879, + "2008": 0.879, + "2009": 0.88, + "2010": 0.883, + "2011": 0.884, + "2012": 0.89, + "2013": 0.895, + "2014": 0.899, + "2015": 0.903, + "2016": 0.905, + "2017": 0.907, + "2018": 0.907, + "2019": 0.908, + "2020": 0.907, + "2021": 0.908 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr107", + "Region": "Kansai region (Shiga, Kyoto, Osaka, Hyogo, Nara, Wakayama)", + "1990": 0.849, + "1991": 0.852, + "1992": 0.854, + "1993": 0.858, + "1994": 0.864, + "1995": 0.866, + "1996": 0.872, + "1997": 0.874, + "1998": 0.875, + "1999": 0.876, + "2000": 0.881, + "2001": 0.884, + "2002": 0.886, + "2003": 0.888, + "2004": 0.892, + "2005": 0.893, + "2006": 0.896, + "2007": 0.899, + "2008": 0.899, + "2009": 0.899, + "2010": 0.902, + "2011": 0.903, + "2012": 0.908, + "2013": 0.913, + "2014": 0.917, + "2015": 0.921, + "2016": 0.924, + "2017": 0.925, + "2018": 0.926, + "2019": 0.927, + "2020": 0.926, + "2021": 0.928 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr110", + "Region": "Kyushu (Fukuoka, Saga, Nagasaki, Kumamoto, Oita, Miyazaki, Kagoshima, Okinawa)", + "1990": 0.824, + "1991": 0.828, + "1992": 0.829, + "1993": 0.834, + "1994": 0.839, + "1995": 0.841, + "1996": 0.847, + "1997": 0.849, + "1998": 0.85, + "1999": 0.85, + "2000": 0.855, + "2001": 0.858, + "2002": 0.861, + "2003": 0.864, + "2004": 0.867, + "2005": 0.869, + "2006": 0.872, + "2007": 0.874, + "2008": 0.875, + "2009": 0.877, + "2010": 0.88, + "2011": 0.88, + "2012": 0.886, + "2013": 0.891, + "2014": 0.895, + "2015": 0.899, + "2016": 0.901, + "2017": 0.903, + "2018": 0.903, + "2019": 0.904, + "2020": 0.903, + "2021": 0.905 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr103", + "Region": "Northern-Kanto, Koshin (Ibaraki, Tochigi, Gunma)", + "1990": 0.83, + "1991": 0.834, + "1992": 0.835, + "1993": 0.84, + "1994": 0.846, + "1995": 0.847, + "1996": 0.853, + "1997": 0.855, + "1998": 0.856, + "1999": 0.856, + "2000": 0.861, + "2001": 0.865, + "2002": 0.868, + "2003": 0.87, + "2004": 0.873, + "2005": 0.875, + "2006": 0.879, + "2007": 0.882, + "2008": 0.882, + "2009": 0.882, + "2010": 0.886, + "2011": 0.887, + "2012": 0.893, + "2013": 0.898, + "2014": 0.902, + "2015": 0.906, + "2016": 0.909, + "2017": 0.91, + "2018": 0.911, + "2019": 0.912, + "2020": 0.911, + "2021": 0.913 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr109", + "Region": "Shikoku (Tokushima, Kagawa, Ehime, Kochi)", + "1990": 0.823, + "1991": 0.827, + "1992": 0.828, + "1993": 0.833, + "1994": 0.838, + "1995": 0.84, + "1996": 0.846, + "1997": 0.848, + "1998": 0.849, + "1999": 0.849, + "2000": 0.854, + "2001": 0.857, + "2002": 0.86, + "2003": 0.862, + "2004": 0.866, + "2005": 0.866, + "2006": 0.87, + "2007": 0.873, + "2008": 0.873, + "2009": 0.876, + "2010": 0.879, + "2011": 0.881, + "2012": 0.886, + "2013": 0.891, + "2014": 0.895, + "2015": 0.899, + "2016": 0.901, + "2017": 0.903, + "2018": 0.903, + "2019": 0.905, + "2020": 0.904, + "2021": 0.905 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr104", + "Region": "Southern-Kanto (Saitama, Chiba, Tokyo, Kanagawa, Yamanashi, Nagano)", + "1990": 0.874, + "1991": 0.877, + "1992": 0.879, + "1993": 0.884, + "1994": 0.89, + "1995": 0.892, + "1996": 0.898, + "1997": 0.9, + "1998": 0.901, + "1999": 0.901, + "2000": 0.907, + "2001": 0.909, + "2002": 0.912, + "2003": 0.914, + "2004": 0.918, + "2005": 0.92, + "2006": 0.922, + "2007": 0.924, + "2008": 0.924, + "2009": 0.923, + "2010": 0.925, + "2011": 0.926, + "2012": 0.931, + "2013": 0.936, + "2014": 0.941, + "2015": 0.945, + "2016": 0.947, + "2017": 0.949, + "2018": 0.949, + "2019": 0.951, + "2020": 0.95, + "2021": 0.951 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr102", + "Region": "Tohoku (Aomori, Iwate, Miyagi, Akita, Yamagata, Fukushima)", + "1990": 0.813, + "1991": 0.816, + "1992": 0.818, + "1993": 0.822, + "1994": 0.828, + "1995": 0.83, + "1996": 0.835, + "1997": 0.837, + "1998": 0.838, + "1999": 0.839, + "2000": 0.844, + "2001": 0.846, + "2002": 0.849, + "2003": 0.85, + "2004": 0.854, + "2005": 0.855, + "2006": 0.859, + "2007": 0.861, + "2008": 0.861, + "2009": 0.862, + "2010": 0.865, + "2011": 0.865, + "2012": 0.874, + "2013": 0.879, + "2014": 0.884, + "2015": 0.887, + "2016": 0.89, + "2017": 0.891, + "2018": 0.892, + "2019": 0.893, + "2020": 0.892, + "2021": 0.893 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr106", + "Region": "Toukai (Gifu, Shizuoka, Aichi, Mie)", + "1990": 0.84, + "1991": 0.844, + "1992": 0.845, + "1993": 0.85, + "1994": 0.856, + "1995": 0.858, + "1996": 0.863, + "1997": 0.866, + "1998": 0.866, + "1999": 0.867, + "2000": 0.872, + "2001": 0.877, + "2002": 0.88, + "2003": 0.883, + "2004": 0.887, + "2005": 0.889, + "2006": 0.893, + "2007": 0.896, + "2008": 0.893, + "2009": 0.893, + "2010": 0.896, + "2011": 0.897, + "2012": 0.905, + "2013": 0.91, + "2014": 0.914, + "2015": 0.918, + "2016": 0.92, + "2017": 0.922, + "2018": 0.922, + "2019": 0.924, + "2020": 0.923, + "2021": 0.924 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "National", + "GDLCODE": "JORt", + "Region": "Total", + "1990": 0.622, + "1991": 0.625, + "1992": 0.637, + "1993": 0.641, + "1994": 0.644, + "1995": 0.651, + "1996": 0.655, + "1997": 0.661, + "1998": 0.666, + "1999": 0.671, + "2000": 0.678, + "2001": 0.685, + "2002": 0.692, + "2003": 0.698, + "2004": 0.709, + "2005": 0.716, + "2006": 0.722, + "2007": 0.729, + "2008": 0.734, + "2009": 0.731, + "2010": 0.725, + "2011": 0.721, + "2012": 0.721, + "2013": 0.719, + "2014": 0.719, + "2015": 0.718, + "2016": 0.718, + "2017": 0.718, + "2018": 0.723, + "2019": 0.727, + "2020": 0.723, + "2021": 0.72 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr108", + "Region": "Aljoun", + "1990": 0.608, + "1991": 0.612, + "1992": 0.623, + "1993": 0.627, + "1994": 0.63, + "1995": 0.637, + "1996": 0.641, + "1997": 0.646, + "1998": 0.651, + "1999": 0.656, + "2000": 0.663, + "2001": 0.67, + "2002": 0.676, + "2003": 0.684, + "2004": 0.695, + "2005": 0.703, + "2006": 0.711, + "2007": 0.718, + "2008": 0.726, + "2009": 0.724, + "2010": 0.72, + "2011": 0.719, + "2012": 0.72, + "2013": 0.718, + "2014": 0.716, + "2015": 0.714, + "2016": 0.712, + "2017": 0.711, + "2018": 0.717, + "2019": 0.721, + "2020": 0.717, + "2021": 0.714 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr101", + "Region": "Amman", + "1990": 0.638, + "1991": 0.642, + "1992": 0.654, + "1993": 0.658, + "1994": 0.662, + "1995": 0.669, + "1996": 0.673, + "1997": 0.679, + "1998": 0.685, + "1999": 0.69, + "2000": 0.697, + "2001": 0.704, + "2002": 0.711, + "2003": 0.716, + "2004": 0.725, + "2005": 0.729, + "2006": 0.734, + "2007": 0.739, + "2008": 0.745, + "2009": 0.741, + "2010": 0.735, + "2011": 0.732, + "2012": 0.731, + "2013": 0.731, + "2014": 0.732, + "2015": 0.732, + "2016": 0.733, + "2017": 0.735, + "2018": 0.74, + "2019": 0.744, + "2020": 0.74, + "2021": 0.737 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr112", + "Region": "Aqaba", + "1990": 0.603, + "1991": 0.607, + "1992": 0.618, + "1993": 0.622, + "1994": 0.625, + "1995": 0.632, + "1996": 0.636, + "1997": 0.641, + "1998": 0.647, + "1999": 0.652, + "2000": 0.658, + "2001": 0.665, + "2002": 0.671, + "2003": 0.68, + "2004": 0.691, + "2005": 0.699, + "2006": 0.707, + "2007": 0.714, + "2008": 0.723, + "2009": 0.722, + "2010": 0.718, + "2011": 0.717, + "2012": 0.719, + "2013": 0.718, + "2014": 0.718, + "2015": 0.718, + "2016": 0.718, + "2017": 0.719, + "2018": 0.724, + "2019": 0.728, + "2020": 0.724, + "2021": 0.721 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr102", + "Region": "Balqa", + "1990": 0.614, + "1991": 0.618, + "1992": 0.629, + "1993": 0.633, + "1994": 0.636, + "1995": 0.643, + "1996": 0.647, + "1997": 0.652, + "1998": 0.658, + "1999": 0.663, + "2000": 0.669, + "2001": 0.676, + "2002": 0.683, + "2003": 0.69, + "2004": 0.7, + "2005": 0.707, + "2006": 0.713, + "2007": 0.72, + "2008": 0.727, + "2009": 0.724, + "2010": 0.719, + "2011": 0.717, + "2012": 0.718, + "2013": 0.716, + "2014": 0.715, + "2015": 0.715, + "2016": 0.714, + "2017": 0.714, + "2018": 0.72, + "2019": 0.723, + "2020": 0.72, + "2021": 0.716 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr105", + "Region": "Irbid", + "1990": 0.619, + "1991": 0.622, + "1992": 0.634, + "1993": 0.638, + "1994": 0.641, + "1995": 0.648, + "1996": 0.652, + "1997": 0.658, + "1998": 0.663, + "1999": 0.668, + "2000": 0.675, + "2001": 0.682, + "2002": 0.688, + "2003": 0.695, + "2004": 0.705, + "2005": 0.712, + "2006": 0.718, + "2007": 0.725, + "2008": 0.731, + "2009": 0.728, + "2010": 0.723, + "2011": 0.72, + "2012": 0.72, + "2013": 0.717, + "2014": 0.716, + "2015": 0.714, + "2016": 0.713, + "2017": 0.712, + "2018": 0.717, + "2019": 0.721, + "2020": 0.718, + "2021": 0.714 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr107", + "Region": "Jarash", + "1990": 0.594, + "1991": 0.598, + "1992": 0.609, + "1993": 0.612, + "1994": 0.615, + "1995": 0.622, + "1996": 0.625, + "1997": 0.63, + "1998": 0.635, + "1999": 0.64, + "2000": 0.647, + "2001": 0.653, + "2002": 0.659, + "2003": 0.671, + "2004": 0.686, + "2005": 0.697, + "2006": 0.708, + "2007": 0.719, + "2008": 0.725, + "2009": 0.722, + "2010": 0.716, + "2011": 0.713, + "2012": 0.712, + "2013": 0.712, + "2014": 0.712, + "2015": 0.712, + "2016": 0.712, + "2017": 0.713, + "2018": 0.718, + "2019": 0.722, + "2020": 0.718, + "2021": 0.715 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr109", + "Region": "Karak", + "1990": 0.596, + "1991": 0.6, + "1992": 0.611, + "1993": 0.615, + "1994": 0.618, + "1995": 0.624, + "1996": 0.628, + "1997": 0.633, + "1998": 0.638, + "1999": 0.643, + "2000": 0.65, + "2001": 0.656, + "2002": 0.663, + "2003": 0.671, + "2004": 0.683, + "2005": 0.691, + "2006": 0.699, + "2007": 0.707, + "2008": 0.716, + "2009": 0.717, + "2010": 0.715, + "2011": 0.716, + "2012": 0.719, + "2013": 0.72, + "2014": 0.721, + "2015": 0.723, + "2016": 0.724, + "2017": 0.727, + "2018": 0.732, + "2019": 0.736, + "2020": 0.732, + "2021": 0.729 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr111", + "Region": "Maan", + "1990": 0.598, + "1991": 0.601, + "1992": 0.612, + "1993": 0.615, + "1994": 0.618, + "1995": 0.625, + "1996": 0.628, + "1997": 0.634, + "1998": 0.639, + "1999": 0.643, + "2000": 0.65, + "2001": 0.656, + "2002": 0.663, + "2003": 0.67, + "2004": 0.68, + "2005": 0.686, + "2006": 0.692, + "2007": 0.698, + "2008": 0.701, + "2009": 0.696, + "2010": 0.688, + "2011": 0.683, + "2012": 0.68, + "2013": 0.681, + "2014": 0.683, + "2015": 0.684, + "2016": 0.686, + "2017": 0.688, + "2018": 0.694, + "2019": 0.697, + "2020": 0.694, + "2021": 0.691 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr104", + "Region": "Madaba", + "1990": 0.615, + "1991": 0.618, + "1992": 0.629, + "1993": 0.633, + "1994": 0.636, + "1995": 0.643, + "1996": 0.647, + "1997": 0.652, + "1998": 0.657, + "1999": 0.662, + "2000": 0.668, + "2001": 0.675, + "2002": 0.682, + "2003": 0.691, + "2004": 0.703, + "2005": 0.712, + "2006": 0.72, + "2007": 0.729, + "2008": 0.734, + "2009": 0.73, + "2010": 0.723, + "2011": 0.719, + "2012": 0.717, + "2013": 0.713, + "2014": 0.71, + "2015": 0.707, + "2016": 0.704, + "2017": 0.702, + "2018": 0.707, + "2019": 0.711, + "2020": 0.707, + "2021": 0.704 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr106", + "Region": "Mafraq", + "1990": 0.588, + "1991": 0.591, + "1992": 0.601, + "1993": 0.605, + "1994": 0.607, + "1995": 0.613, + "1996": 0.617, + "1997": 0.622, + "1998": 0.627, + "1999": 0.631, + "2000": 0.637, + "2001": 0.644, + "2002": 0.65, + "2003": 0.657, + "2004": 0.668, + "2005": 0.674, + "2006": 0.681, + "2007": 0.688, + "2008": 0.696, + "2009": 0.696, + "2010": 0.694, + "2011": 0.694, + "2012": 0.697, + "2013": 0.689, + "2014": 0.683, + "2015": 0.676, + "2016": 0.67, + "2017": 0.664, + "2018": 0.669, + "2019": 0.673, + "2020": 0.669, + "2021": 0.666 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr110", + "Region": "Tafiela", + "1990": 0.614, + "1991": 0.617, + "1992": 0.629, + "1993": 0.632, + "1994": 0.636, + "1995": 0.642, + "1996": 0.646, + "1997": 0.651, + "1998": 0.656, + "1999": 0.661, + "2000": 0.668, + "2001": 0.675, + "2002": 0.681, + "2003": 0.687, + "2004": 0.696, + "2005": 0.701, + "2006": 0.706, + "2007": 0.71, + "2008": 0.718, + "2009": 0.716, + "2010": 0.712, + "2011": 0.711, + "2012": 0.712, + "2013": 0.711, + "2014": 0.711, + "2015": 0.711, + "2016": 0.711, + "2017": 0.711, + "2018": 0.717, + "2019": 0.721, + "2020": 0.717, + "2021": 0.714 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr103", + "Region": "Zarqa", + "1990": 0.613, + "1991": 0.616, + "1992": 0.628, + "1993": 0.632, + "1994": 0.635, + "1995": 0.642, + "1996": 0.646, + "1997": 0.652, + "1998": 0.657, + "1999": 0.662, + "2000": 0.669, + "2001": 0.676, + "2002": 0.682, + "2003": 0.692, + "2004": 0.706, + "2005": 0.715, + "2006": 0.725, + "2007": 0.735, + "2008": 0.737, + "2009": 0.73, + "2010": 0.721, + "2011": 0.714, + "2012": 0.71, + "2013": 0.708, + "2014": 0.707, + "2015": 0.705, + "2016": 0.704, + "2017": 0.703, + "2018": 0.709, + "2019": 0.712, + "2020": 0.709, + "2021": 0.706 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "National", + "GDLCODE": "KAZt", + "Region": "Total", + "1990": 0.673, + "1991": 0.668, + "1992": 0.667, + "1993": 0.663, + "1994": 0.657, + "1995": 0.655, + "1996": 0.659, + "1997": 0.663, + "1998": 0.666, + "1999": 0.671, + "2000": 0.68, + "2001": 0.695, + "2002": 0.706, + "2003": 0.718, + "2004": 0.73, + "2005": 0.739, + "2006": 0.752, + "2007": 0.758, + "2008": 0.758, + "2009": 0.761, + "2010": 0.767, + "2011": 0.775, + "2012": 0.783, + "2013": 0.792, + "2014": 0.799, + "2015": 0.805, + "2016": 0.805, + "2017": 0.811, + "2018": 0.814, + "2019": 0.819, + "2020": 0.814, + "2021": 0.811 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr101", + "Region": "Almaty city", + "1990": 0.747, + "1991": 0.741, + "1992": 0.74, + "1993": 0.736, + "1994": 0.73, + "1995": 0.728, + "1996": 0.733, + "1997": 0.74, + "1998": 0.746, + "1999": 0.753, + "2000": 0.758, + "2001": 0.769, + "2002": 0.777, + "2003": 0.785, + "2004": 0.792, + "2005": 0.798, + "2006": 0.806, + "2007": 0.807, + "2008": 0.801, + "2009": 0.797, + "2010": 0.798, + "2011": 0.806, + "2012": 0.814, + "2013": 0.823, + "2014": 0.829, + "2015": 0.835, + "2016": 0.835, + "2017": 0.841, + "2018": 0.844, + "2019": 0.849, + "2020": 0.843, + "2021": 0.841 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr104", + "Region": "Central region (Karagandinskaya)", + "1990": 0.678, + "1991": 0.673, + "1992": 0.672, + "1993": 0.669, + "1994": 0.662, + "1995": 0.661, + "1996": 0.671, + "1997": 0.682, + "1998": 0.692, + "1999": 0.703, + "2000": 0.709, + "2001": 0.72, + "2002": 0.727, + "2003": 0.735, + "2004": 0.743, + "2005": 0.749, + "2006": 0.757, + "2007": 0.763, + "2008": 0.762, + "2009": 0.764, + "2010": 0.77, + "2011": 0.782, + "2012": 0.794, + "2013": 0.807, + "2014": 0.817, + "2015": 0.827, + "2016": 0.827, + "2017": 0.833, + "2018": 0.836, + "2019": 0.841, + "2020": 0.836, + "2021": 0.833 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr106", + "Region": "East region (East-Kazakhstanskaya)", + "1990": 0.68, + "1991": 0.675, + "1992": 0.673, + "1993": 0.67, + "1994": 0.664, + "1995": 0.662, + "1996": 0.668, + "1997": 0.676, + "1998": 0.683, + "1999": 0.691, + "2000": 0.698, + "2001": 0.71, + "2002": 0.719, + "2003": 0.728, + "2004": 0.737, + "2005": 0.745, + "2006": 0.754, + "2007": 0.757, + "2008": 0.753, + "2009": 0.752, + "2010": 0.754, + "2011": 0.762, + "2012": 0.77, + "2013": 0.779, + "2014": 0.785, + "2015": 0.791, + "2016": 0.791, + "2017": 0.796, + "2018": 0.8, + "2019": 0.804, + "2020": 0.799, + "2021": 0.796 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr105", + "Region": "North region (Akmolinskaya (incl Astana city), Kostnaiskaya, Pavlodarskaya, North-Kazakhstanskaya)", + "1990": 0.682, + "1991": 0.677, + "1992": 0.675, + "1993": 0.672, + "1994": 0.666, + "1995": 0.664, + "1996": 0.668, + "1997": 0.673, + "1998": 0.676, + "1999": 0.681, + "2000": 0.688, + "2001": 0.7, + "2002": 0.708, + "2003": 0.717, + "2004": 0.726, + "2005": 0.733, + "2006": 0.742, + "2007": 0.753, + "2008": 0.757, + "2009": 0.765, + "2010": 0.775, + "2011": 0.785, + "2012": 0.794, + "2013": 0.805, + "2014": 0.812, + "2015": 0.82, + "2016": 0.82, + "2017": 0.826, + "2018": 0.829, + "2019": 0.834, + "2020": 0.829, + "2021": 0.826 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr102", + "Region": "South region (Almatinskaya, Zhambylskaya, Kyzylordinskaya, South-Kazakhstanskaya)", + "1990": 0.653, + "1991": 0.647, + "1992": 0.646, + "1993": 0.643, + "1994": 0.636, + "1995": 0.635, + "1996": 0.635, + "1997": 0.637, + "1998": 0.638, + "1999": 0.64, + "2000": 0.65, + "2001": 0.667, + "2002": 0.679, + "2003": 0.693, + "2004": 0.706, + "2005": 0.717, + "2006": 0.731, + "2007": 0.738, + "2008": 0.738, + "2009": 0.741, + "2010": 0.747, + "2011": 0.755, + "2012": 0.765, + "2013": 0.775, + "2014": 0.782, + "2015": 0.789, + "2016": 0.789, + "2017": 0.795, + "2018": 0.798, + "2019": 0.802, + "2020": 0.797, + "2021": 0.795 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr103", + "Region": "West region (Aktyubinskaya, Atyrauskaya, Mangistauskaya, West-Kazakhstanskaya)", + "1990": 0.677, + "1991": 0.671, + "1992": 0.67, + "1993": 0.667, + "1994": 0.66, + "1995": 0.659, + "1996": 0.662, + "1997": 0.667, + "1998": 0.67, + "1999": 0.675, + "2000": 0.685, + "2001": 0.702, + "2002": 0.714, + "2003": 0.727, + "2004": 0.74, + "2005": 0.752, + "2006": 0.765, + "2007": 0.772, + "2008": 0.772, + "2009": 0.774, + "2010": 0.78, + "2011": 0.784, + "2012": 0.789, + "2013": 0.794, + "2014": 0.796, + "2015": 0.798, + "2016": 0.798, + "2017": 0.804, + "2018": 0.807, + "2019": 0.812, + "2020": 0.806, + "2021": 0.804 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "National", + "GDLCODE": "KENt", + "Region": "Total", + "1990": 0.474, + "1991": 0.474, + "1992": 0.473, + "1993": 0.471, + "1994": 0.473, + "1995": 0.475, + "1996": 0.477, + "1997": 0.477, + "1998": 0.479, + "1999": 0.48, + "2000": 0.481, + "2001": 0.485, + "2002": 0.485, + "2003": 0.495, + "2004": 0.508, + "2005": 0.516, + "2006": 0.525, + "2007": 0.533, + "2008": 0.539, + "2009": 0.539, + "2010": 0.545, + "2011": 0.55, + "2012": 0.552, + "2013": 0.554, + "2014": 0.558, + "2015": 0.561, + "2016": 0.569, + "2017": 0.572, + "2018": 0.577, + "2019": 0.581, + "2020": 0.578, + "2021": 0.575 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr102", + "Region": "Central", + "1990": 0.513, + "1991": 0.513, + "1992": 0.511, + "1993": 0.51, + "1994": 0.513, + "1995": 0.515, + "1996": 0.519, + "1997": 0.52, + "1998": 0.523, + "1999": 0.527, + "2000": 0.53, + "2001": 0.536, + "2002": 0.539, + "2003": 0.552, + "2004": 0.56, + "2005": 0.563, + "2006": 0.568, + "2007": 0.572, + "2008": 0.573, + "2009": 0.574, + "2010": 0.58, + "2011": 0.586, + "2012": 0.588, + "2013": 0.59, + "2014": 0.595, + "2015": 0.598, + "2016": 0.606, + "2017": 0.61, + "2018": 0.615, + "2019": 0.619, + "2020": 0.616, + "2021": 0.613 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr103", + "Region": "Coast", + "1990": 0.444, + "1991": 0.444, + "1992": 0.442, + "1993": 0.441, + "1994": 0.446, + "1995": 0.45, + "1996": 0.454, + "1997": 0.458, + "1998": 0.462, + "1999": 0.462, + "2000": 0.461, + "2001": 0.463, + "2002": 0.462, + "2003": 0.47, + "2004": 0.485, + "2005": 0.496, + "2006": 0.508, + "2007": 0.519, + "2008": 0.528, + "2009": 0.528, + "2010": 0.534, + "2011": 0.539, + "2012": 0.54, + "2013": 0.543, + "2014": 0.547, + "2015": 0.55, + "2016": 0.558, + "2017": 0.561, + "2018": 0.565, + "2019": 0.569, + "2020": 0.566, + "2021": 0.563 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr104", + "Region": "Eastern", + "1990": 0.473, + "1991": 0.473, + "1992": 0.472, + "1993": 0.47, + "1994": 0.472, + "1995": 0.473, + "1996": 0.475, + "1997": 0.476, + "1998": 0.477, + "1999": 0.481, + "2000": 0.483, + "2001": 0.489, + "2002": 0.492, + "2003": 0.505, + "2004": 0.516, + "2005": 0.523, + "2006": 0.531, + "2007": 0.538, + "2008": 0.543, + "2009": 0.541, + "2010": 0.545, + "2011": 0.549, + "2012": 0.548, + "2013": 0.549, + "2014": 0.551, + "2015": 0.554, + "2016": 0.562, + "2017": 0.566, + "2018": 0.57, + "2019": 0.574, + "2020": 0.571, + "2021": 0.568 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr101", + "Region": "Nairobi", + "1990": 0.561, + "1991": 0.562, + "1992": 0.562, + "1993": 0.561, + "1994": 0.567, + "1995": 0.573, + "1996": 0.579, + "1997": 0.583, + "1998": 0.589, + "1999": 0.588, + "2000": 0.586, + "2001": 0.588, + "2002": 0.587, + "2003": 0.595, + "2004": 0.61, + "2005": 0.622, + "2006": 0.634, + "2007": 0.645, + "2008": 0.654, + "2009": 0.645, + "2010": 0.641, + "2011": 0.637, + "2012": 0.629, + "2013": 0.622, + "2014": 0.618, + "2015": 0.621, + "2016": 0.629, + "2017": 0.633, + "2018": 0.638, + "2019": 0.643, + "2020": 0.64, + "2021": 0.636 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr108", + "Region": "North Eastern", + "1990": 0.295, + "1991": 0.294, + "1992": 0.292, + "1993": 0.29, + "1994": 0.291, + "1995": 0.291, + "1996": 0.292, + "1997": 0.291, + "1998": 0.292, + "1999": 0.291, + "2000": 0.291, + "2001": 0.293, + "2002": 0.291, + "2003": 0.299, + "2004": 0.324, + "2005": 0.344, + "2006": 0.366, + "2007": 0.386, + "2008": 0.403, + "2009": 0.404, + "2010": 0.409, + "2011": 0.414, + "2012": 0.416, + "2013": 0.419, + "2014": 0.423, + "2015": 0.425, + "2016": 0.432, + "2017": 0.434, + "2018": 0.437, + "2019": 0.44, + "2020": 0.438, + "2021": 0.435 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr105", + "Region": "Nyanza", + "1990": 0.418, + "1991": 0.417, + "1992": 0.416, + "1993": 0.414, + "1994": 0.417, + "1995": 0.42, + "1996": 0.423, + "1997": 0.425, + "1998": 0.428, + "1999": 0.431, + "2000": 0.433, + "2001": 0.438, + "2002": 0.44, + "2003": 0.452, + "2004": 0.464, + "2005": 0.473, + "2006": 0.483, + "2007": 0.492, + "2008": 0.499, + "2009": 0.502, + "2010": 0.51, + "2011": 0.518, + "2012": 0.522, + "2013": 0.526, + "2014": 0.532, + "2015": 0.535, + "2016": 0.543, + "2017": 0.547, + "2018": 0.551, + "2019": 0.555, + "2020": 0.552, + "2021": 0.549 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr106", + "Region": "Rift Valley", + "1990": 0.486, + "1991": 0.486, + "1992": 0.484, + "1993": 0.483, + "1994": 0.484, + "1995": 0.486, + "1996": 0.487, + "1997": 0.488, + "1998": 0.489, + "1999": 0.488, + "2000": 0.487, + "2001": 0.488, + "2002": 0.486, + "2003": 0.495, + "2004": 0.508, + "2005": 0.518, + "2006": 0.528, + "2007": 0.538, + "2008": 0.545, + "2009": 0.543, + "2010": 0.547, + "2011": 0.55, + "2012": 0.55, + "2013": 0.55, + "2014": 0.552, + "2015": 0.555, + "2016": 0.564, + "2017": 0.567, + "2018": 0.571, + "2019": 0.575, + "2020": 0.573, + "2021": 0.569 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr107", + "Region": "Western", + "1990": 0.466, + "1991": 0.465, + "1992": 0.464, + "1993": 0.462, + "1994": 0.463, + "1995": 0.463, + "1996": 0.464, + "1997": 0.463, + "1998": 0.464, + "1999": 0.464, + "2000": 0.463, + "2001": 0.465, + "2002": 0.463, + "2003": 0.472, + "2004": 0.483, + "2005": 0.489, + "2006": 0.497, + "2007": 0.505, + "2008": 0.509, + "2009": 0.51, + "2010": 0.516, + "2011": 0.521, + "2012": 0.523, + "2013": 0.525, + "2014": 0.53, + "2015": 0.533, + "2016": 0.541, + "2017": 0.544, + "2018": 0.548, + "2019": 0.552, + "2020": 0.549, + "2021": 0.546 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "National", + "GDLCODE": "KIRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.549, + "2001": 0.59, + "2002": 0.587, + "2003": 0.593, + "2004": 0.59, + "2005": 0.591, + "2006": 0.586, + "2007": 0.587, + "2008": 0.588, + "2009": 0.585, + "2010": 0.589, + "2011": 0.587, + "2012": 0.594, + "2013": 0.602, + "2014": 0.61, + "2015": 0.622, + "2016": 0.617, + "2017": 0.621, + "2018": 0.622, + "2019": 0.63, + "2020": 0.623, + "2021": 0.624 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr103", + "Region": "Central Gibert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.502, + "2001": 0.543, + "2002": 0.54, + "2003": 0.544, + "2004": 0.541, + "2005": 0.542, + "2006": 0.538, + "2007": 0.538, + "2008": 0.54, + "2009": 0.536, + "2010": 0.54, + "2011": 0.538, + "2012": 0.545, + "2013": 0.553, + "2014": 0.561, + "2015": 0.572, + "2016": 0.567, + "2017": 0.572, + "2018": 0.573, + "2019": 0.58, + "2020": 0.573, + "2021": 0.574 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr105", + "Region": "Line and Phoenix Group", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.529, + "2001": 0.57, + "2002": 0.567, + "2003": 0.572, + "2004": 0.569, + "2005": 0.57, + "2006": 0.566, + "2007": 0.566, + "2008": 0.568, + "2009": 0.565, + "2010": 0.568, + "2011": 0.566, + "2012": 0.574, + "2013": 0.581, + "2014": 0.589, + "2015": 0.601, + "2016": 0.596, + "2017": 0.601, + "2018": 0.601, + "2019": 0.609, + "2020": 0.602, + "2021": 0.603 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr102", + "Region": "Northern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.521, + "2001": 0.563, + "2002": 0.559, + "2003": 0.564, + "2004": 0.561, + "2005": 0.562, + "2006": 0.558, + "2007": 0.558, + "2008": 0.56, + "2009": 0.556, + "2010": 0.56, + "2011": 0.558, + "2012": 0.566, + "2013": 0.573, + "2014": 0.581, + "2015": 0.593, + "2016": 0.588, + "2017": 0.593, + "2018": 0.593, + "2019": 0.601, + "2020": 0.594, + "2021": 0.595 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr104", + "Region": "Southern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.519, + "2001": 0.561, + "2002": 0.558, + "2003": 0.563, + "2004": 0.559, + "2005": 0.56, + "2006": 0.556, + "2007": 0.556, + "2008": 0.557, + "2009": 0.554, + "2010": 0.558, + "2011": 0.555, + "2012": 0.563, + "2013": 0.571, + "2014": 0.579, + "2015": 0.591, + "2016": 0.586, + "2017": 0.591, + "2018": 0.591, + "2019": 0.599, + "2020": 0.592, + "2021": 0.592 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr101", + "Region": "Souyth Tarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.577, + "2001": 0.618, + "2002": 0.616, + "2003": 0.622, + "2004": 0.619, + "2005": 0.619, + "2006": 0.615, + "2007": 0.615, + "2008": 0.617, + "2009": 0.614, + "2010": 0.618, + "2011": 0.616, + "2012": 0.624, + "2013": 0.631, + "2014": 0.639, + "2015": 0.651, + "2016": 0.646, + "2017": 0.651, + "2018": 0.651, + "2019": 0.659, + "2020": 0.652, + "2021": 0.653 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "National", + "GDLCODE": "KSVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.707, + "2011": 0.716, + "2012": 0.724, + "2013": 0.73, + "2014": 0.735, + "2015": 0.741, + "2016": 0.745, + "2017": 0.751, + "2018": 0.755, + "2019": 0.759, + "2020": 0.76, + "2021": 0.762 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr107", + "Region": "Ferizaj", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.717, + "2011": 0.726, + "2012": 0.734, + "2013": 0.74, + "2014": 0.745, + "2015": 0.75, + "2016": 0.754, + "2017": 0.759, + "2018": 0.761, + "2019": 0.764, + "2020": 0.764, + "2021": 0.766 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr101", + "Region": "Gjakova", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.697, + "2011": 0.706, + "2012": 0.715, + "2013": 0.72, + "2014": 0.725, + "2015": 0.731, + "2016": 0.734, + "2017": 0.74, + "2018": 0.743, + "2019": 0.746, + "2020": 0.746, + "2021": 0.748 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr102", + "Region": "Gjilan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.707, + "2011": 0.716, + "2012": 0.724, + "2013": 0.73, + "2014": 0.735, + "2015": 0.738, + "2016": 0.74, + "2017": 0.743, + "2018": 0.743, + "2019": 0.744, + "2020": 0.742, + "2021": 0.743 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr103", + "Region": "Mitrovica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.72, + "2011": 0.729, + "2012": 0.737, + "2013": 0.743, + "2014": 0.748, + "2015": 0.753, + "2016": 0.756, + "2017": 0.761, + "2018": 0.763, + "2019": 0.765, + "2020": 0.765, + "2021": 0.766 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr104", + "Region": "Peja", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.695, + "2011": 0.704, + "2012": 0.712, + "2013": 0.717, + "2014": 0.723, + "2015": 0.73, + "2016": 0.735, + "2017": 0.741, + "2018": 0.746, + "2019": 0.751, + "2020": 0.752, + "2021": 0.754 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr106", + "Region": "Pristina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.722, + "2011": 0.731, + "2012": 0.74, + "2013": 0.745, + "2014": 0.751, + "2015": 0.756, + "2016": 0.759, + "2017": 0.764, + "2018": 0.767, + "2019": 0.77, + "2020": 0.769, + "2021": 0.771 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr105", + "Region": "Prizren", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.682, + "2011": 0.691, + "2012": 0.699, + "2013": 0.704, + "2014": 0.709, + "2015": 0.718, + "2016": 0.725, + "2017": 0.733, + "2018": 0.74, + "2019": 0.746, + "2020": 0.749, + "2021": 0.751 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "National", + "GDLCODE": "KWTt", + "Region": "Total", + "1990": 0.718, + "1991": 0.68, + "1992": 0.678, + "1993": 0.705, + "1994": 0.733, + "1995": 0.759, + "1996": 0.782, + "1997": 0.786, + "1998": 0.789, + "1999": 0.787, + "2000": 0.787, + "2001": 0.781, + "2002": 0.784, + "2003": 0.793, + "2004": 0.797, + "2005": 0.798, + "2006": 0.799, + "2007": 0.802, + "2008": 0.807, + "2009": 0.81, + "2010": 0.813, + "2011": 0.82, + "2012": 0.826, + "2013": 0.819, + "2014": 0.823, + "2015": 0.83, + "2016": 0.833, + "2017": 0.835, + "2018": 0.836, + "2019": 0.839, + "2020": 0.822, + "2021": 0.831 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr102", + "Region": "Ahmadi", + "1990": 0.726, + "1991": 0.687, + "1992": 0.685, + "1993": 0.712, + "1994": 0.741, + "1995": 0.768, + "1996": 0.79, + "1997": 0.795, + "1998": 0.798, + "1999": 0.796, + "2000": 0.795, + "2001": 0.79, + "2002": 0.792, + "2003": 0.801, + "2004": 0.806, + "2005": 0.807, + "2006": 0.808, + "2007": 0.811, + "2008": 0.816, + "2009": 0.818, + "2010": 0.822, + "2011": 0.829, + "2012": 0.835, + "2013": 0.828, + "2014": 0.832, + "2015": 0.839, + "2016": 0.842, + "2017": 0.844, + "2018": 0.845, + "2019": 0.848, + "2020": 0.831, + "2021": 0.839 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr101", + "Region": "Al Asimah, Hawalli, Al-Farwaniyah, Mubarak al-Sabah", + "1990": 0.717, + "1991": 0.678, + "1992": 0.676, + "1993": 0.704, + "1994": 0.732, + "1995": 0.758, + "1996": 0.78, + "1997": 0.784, + "1998": 0.787, + "1999": 0.786, + "2000": 0.785, + "2001": 0.78, + "2002": 0.782, + "2003": 0.791, + "2004": 0.795, + "2005": 0.796, + "2006": 0.798, + "2007": 0.8, + "2008": 0.805, + "2009": 0.808, + "2010": 0.812, + "2011": 0.819, + "2012": 0.825, + "2013": 0.818, + "2014": 0.822, + "2015": 0.829, + "2016": 0.832, + "2017": 0.833, + "2018": 0.835, + "2019": 0.837, + "2020": 0.821, + "2021": 0.829 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr103", + "Region": "Al-Jahra", + "1990": 0.709, + "1991": 0.671, + "1992": 0.669, + "1993": 0.696, + "1994": 0.724, + "1995": 0.75, + "1996": 0.772, + "1997": 0.777, + "1998": 0.779, + "1999": 0.777, + "2000": 0.777, + "2001": 0.771, + "2002": 0.774, + "2003": 0.782, + "2004": 0.788, + "2005": 0.789, + "2006": 0.79, + "2007": 0.793, + "2008": 0.798, + "2009": 0.799, + "2010": 0.803, + "2011": 0.81, + "2012": 0.816, + "2013": 0.809, + "2014": 0.813, + "2015": 0.819, + "2016": 0.822, + "2017": 0.824, + "2018": 0.825, + "2019": 0.828, + "2020": 0.812, + "2021": 0.82 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "National", + "GDLCODE": "KGZt", + "Region": "Total", + "1990": 0.638, + "1991": 0.632, + "1992": 0.622, + "1993": 0.609, + "1994": 0.591, + "1995": 0.587, + "1996": 0.594, + "1997": 0.603, + "1998": 0.609, + "1999": 0.616, + "2000": 0.621, + "2001": 0.63, + "2002": 0.631, + "2003": 0.64, + "2004": 0.643, + "2005": 0.644, + "2006": 0.65, + "2007": 0.656, + "2008": 0.66, + "2009": 0.663, + "2010": 0.664, + "2011": 0.665, + "2012": 0.675, + "2013": 0.682, + "2014": 0.688, + "2015": 0.69, + "2016": 0.693, + "2017": 0.696, + "2018": 0.698, + "2019": 0.698, + "2020": 0.689, + "2021": 0.692 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr108", + "Region": "Batken", + "1990": 0.59, + "1991": 0.584, + "1992": 0.574, + "1993": 0.561, + "1994": 0.544, + "1995": 0.54, + "1996": 0.546, + "1997": 0.555, + "1998": 0.561, + "1999": 0.567, + "2000": 0.572, + "2001": 0.581, + "2002": 0.582, + "2003": 0.59, + "2004": 0.593, + "2005": 0.594, + "2006": 0.6, + "2007": 0.609, + "2008": 0.615, + "2009": 0.622, + "2010": 0.626, + "2011": 0.63, + "2012": 0.643, + "2013": 0.653, + "2014": 0.662, + "2015": 0.666, + "2016": 0.67, + "2017": 0.675, + "2018": 0.678, + "2019": 0.678, + "2020": 0.669, + "2021": 0.672 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr101", + "Region": "Bishkek", + "1990": 0.704, + "1991": 0.697, + "1992": 0.687, + "1993": 0.673, + "1994": 0.655, + "1995": 0.651, + "1996": 0.658, + "1997": 0.668, + "1998": 0.675, + "1999": 0.682, + "2000": 0.687, + "2001": 0.697, + "2002": 0.699, + "2003": 0.707, + "2004": 0.711, + "2005": 0.712, + "2006": 0.719, + "2007": 0.722, + "2008": 0.722, + "2009": 0.723, + "2010": 0.721, + "2011": 0.719, + "2012": 0.726, + "2013": 0.737, + "2014": 0.747, + "2015": 0.744, + "2016": 0.741, + "2017": 0.738, + "2018": 0.735, + "2019": 0.736, + "2020": 0.726, + "2021": 0.729 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr103", + "Region": "Chuy", + "1990": 0.652, + "1991": 0.647, + "1992": 0.636, + "1993": 0.623, + "1994": 0.606, + "1995": 0.602, + "1996": 0.609, + "1997": 0.618, + "1998": 0.625, + "1999": 0.631, + "2000": 0.636, + "2001": 0.645, + "2002": 0.647, + "2003": 0.655, + "2004": 0.658, + "2005": 0.66, + "2006": 0.666, + "2007": 0.672, + "2008": 0.676, + "2009": 0.679, + "2010": 0.68, + "2011": 0.682, + "2012": 0.692, + "2013": 0.696, + "2014": 0.701, + "2015": 0.701, + "2016": 0.702, + "2017": 0.704, + "2018": 0.705, + "2019": 0.705, + "2020": 0.696, + "2021": 0.698 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr102", + "Region": "Issyk-Kul", + "1990": 0.652, + "1991": 0.646, + "1992": 0.636, + "1993": 0.622, + "1994": 0.604, + "1995": 0.6, + "1996": 0.607, + "1997": 0.617, + "1998": 0.623, + "1999": 0.629, + "2000": 0.634, + "2001": 0.644, + "2002": 0.645, + "2003": 0.654, + "2004": 0.657, + "2005": 0.658, + "2006": 0.664, + "2007": 0.667, + "2008": 0.667, + "2009": 0.667, + "2010": 0.664, + "2011": 0.662, + "2012": 0.668, + "2013": 0.675, + "2014": 0.682, + "2015": 0.686, + "2016": 0.689, + "2017": 0.694, + "2018": 0.698, + "2019": 0.698, + "2020": 0.689, + "2021": 0.691 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr105", + "Region": "Jalal-Abad", + "1990": 0.625, + "1991": 0.619, + "1992": 0.609, + "1993": 0.596, + "1994": 0.579, + "1995": 0.574, + "1996": 0.581, + "1997": 0.59, + "1998": 0.597, + "1999": 0.603, + "2000": 0.607, + "2001": 0.617, + "2002": 0.618, + "2003": 0.626, + "2004": 0.629, + "2005": 0.63, + "2006": 0.636, + "2007": 0.641, + "2008": 0.644, + "2009": 0.646, + "2010": 0.646, + "2011": 0.646, + "2012": 0.654, + "2013": 0.666, + "2014": 0.677, + "2015": 0.676, + "2016": 0.675, + "2017": 0.674, + "2018": 0.674, + "2019": 0.674, + "2020": 0.665, + "2021": 0.668 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr107", + "Region": "Naryn", + "1990": 0.614, + "1991": 0.608, + "1992": 0.598, + "1993": 0.585, + "1994": 0.567, + "1995": 0.563, + "1996": 0.57, + "1997": 0.579, + "1998": 0.585, + "1999": 0.591, + "2000": 0.596, + "2001": 0.605, + "2002": 0.606, + "2003": 0.614, + "2004": 0.617, + "2005": 0.619, + "2006": 0.625, + "2007": 0.633, + "2008": 0.638, + "2009": 0.643, + "2010": 0.645, + "2011": 0.648, + "2012": 0.659, + "2013": 0.661, + "2014": 0.662, + "2015": 0.666, + "2016": 0.67, + "2017": 0.675, + "2018": 0.68, + "2019": 0.68, + "2020": 0.671, + "2021": 0.673 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr106", + "Region": "Osh", + "1990": 0.601, + "1991": 0.595, + "1992": 0.585, + "1993": 0.572, + "1994": 0.555, + "1995": 0.551, + "1996": 0.558, + "1997": 0.567, + "1998": 0.573, + "1999": 0.579, + "2000": 0.584, + "2001": 0.593, + "2002": 0.594, + "2003": 0.602, + "2004": 0.605, + "2005": 0.606, + "2006": 0.612, + "2007": 0.62, + "2008": 0.626, + "2009": 0.632, + "2010": 0.635, + "2011": 0.638, + "2012": 0.65, + "2013": 0.659, + "2014": 0.667, + "2015": 0.669, + "2016": 0.671, + "2017": 0.674, + "2018": 0.676, + "2019": 0.676, + "2020": 0.667, + "2021": 0.67 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr104", + "Region": "Talas", + "1990": 0.625, + "1991": 0.619, + "1992": 0.609, + "1993": 0.596, + "1994": 0.578, + "1995": 0.574, + "1996": 0.581, + "1997": 0.59, + "1998": 0.596, + "1999": 0.602, + "2000": 0.607, + "2001": 0.616, + "2002": 0.618, + "2003": 0.626, + "2004": 0.629, + "2005": 0.63, + "2006": 0.636, + "2007": 0.641, + "2008": 0.643, + "2009": 0.644, + "2010": 0.644, + "2011": 0.643, + "2012": 0.651, + "2013": 0.669, + "2014": 0.687, + "2015": 0.684, + "2016": 0.681, + "2017": 0.678, + "2018": 0.675, + "2019": 0.675, + "2020": 0.666, + "2021": 0.669 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "National", + "GDLCODE": "LAOt", + "Region": "Total", + "1990": 0.405, + "1991": 0.412, + "1992": 0.417, + "1993": 0.424, + "1994": 0.432, + "1995": 0.434, + "1996": 0.447, + "1997": 0.454, + "1998": 0.46, + "1999": 0.466, + "2000": 0.47, + "2001": 0.476, + "2002": 0.484, + "2003": 0.493, + "2004": 0.5, + "2005": 0.51, + "2006": 0.511, + "2007": 0.525, + "2008": 0.532, + "2009": 0.543, + "2010": 0.551, + "2011": 0.563, + "2012": 0.572, + "2013": 0.582, + "2014": 0.592, + "2015": 0.599, + "2016": 0.604, + "2017": 0.607, + "2018": 0.607, + "2019": 0.61, + "2020": 0.608, + "2021": 0.607 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr117", + "Region": "Attapeu", + "1990": 0.375, + "1991": 0.381, + "1992": 0.387, + "1993": 0.392, + "1994": 0.401, + "1995": 0.403, + "1996": 0.415, + "1997": 0.421, + "1998": 0.427, + "1999": 0.433, + "2000": 0.436, + "2001": 0.442, + "2002": 0.45, + "2003": 0.458, + "2004": 0.464, + "2005": 0.474, + "2006": 0.475, + "2007": 0.488, + "2008": 0.495, + "2009": 0.506, + "2010": 0.513, + "2011": 0.524, + "2012": 0.533, + "2013": 0.546, + "2014": 0.56, + "2015": 0.57, + "2016": 0.578, + "2017": 0.584, + "2018": 0.584, + "2019": 0.587, + "2020": 0.586, + "2021": 0.584 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr105", + "Region": "Bokeo", + "1990": 0.377, + "1991": 0.383, + "1992": 0.388, + "1993": 0.394, + "1994": 0.402, + "1995": 0.404, + "1996": 0.416, + "1997": 0.422, + "1998": 0.428, + "1999": 0.434, + "2000": 0.437, + "2001": 0.443, + "2002": 0.451, + "2003": 0.459, + "2004": 0.466, + "2005": 0.475, + "2006": 0.476, + "2007": 0.49, + "2008": 0.497, + "2009": 0.507, + "2010": 0.514, + "2011": 0.526, + "2012": 0.534, + "2013": 0.546, + "2014": 0.559, + "2015": 0.568, + "2016": 0.575, + "2017": 0.58, + "2018": 0.58, + "2019": 0.583, + "2020": 0.581, + "2021": 0.58 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr111", + "Region": "Borikhamxay", + "1990": 0.449, + "1991": 0.456, + "1992": 0.462, + "1993": 0.469, + "1994": 0.478, + "1995": 0.48, + "1996": 0.494, + "1997": 0.501, + "1998": 0.508, + "1999": 0.514, + "2000": 0.518, + "2001": 0.524, + "2002": 0.534, + "2003": 0.543, + "2004": 0.55, + "2005": 0.561, + "2006": 0.562, + "2007": 0.577, + "2008": 0.585, + "2009": 0.596, + "2010": 0.605, + "2011": 0.617, + "2012": 0.627, + "2013": 0.633, + "2014": 0.64, + "2015": 0.643, + "2016": 0.644, + "2017": 0.642, + "2018": 0.643, + "2019": 0.646, + "2020": 0.644, + "2021": 0.643 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr116", + "Region": "Champasack", + "1990": 0.406, + "1991": 0.412, + "1992": 0.418, + "1993": 0.425, + "1994": 0.433, + "1995": 0.436, + "1996": 0.448, + "1997": 0.455, + "1998": 0.461, + "1999": 0.467, + "2000": 0.471, + "2001": 0.477, + "2002": 0.485, + "2003": 0.493, + "2004": 0.501, + "2005": 0.51, + "2006": 0.512, + "2007": 0.526, + "2008": 0.533, + "2009": 0.544, + "2010": 0.551, + "2011": 0.563, + "2012": 0.572, + "2013": 0.58, + "2014": 0.589, + "2015": 0.594, + "2016": 0.597, + "2017": 0.598, + "2018": 0.598, + "2019": 0.602, + "2020": 0.6, + "2021": 0.599 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr107", + "Region": "Huaphanh", + "1990": 0.391, + "1991": 0.398, + "1992": 0.403, + "1993": 0.409, + "1994": 0.418, + "1995": 0.419, + "1996": 0.433, + "1997": 0.439, + "1998": 0.446, + "1999": 0.451, + "2000": 0.455, + "2001": 0.461, + "2002": 0.469, + "2003": 0.478, + "2004": 0.485, + "2005": 0.495, + "2006": 0.496, + "2007": 0.51, + "2008": 0.517, + "2009": 0.528, + "2010": 0.536, + "2011": 0.548, + "2012": 0.557, + "2013": 0.565, + "2014": 0.574, + "2015": 0.578, + "2016": 0.581, + "2017": 0.581, + "2018": 0.581, + "2019": 0.584, + "2020": 0.582, + "2021": 0.581 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr112", + "Region": "Khammuane", + "1990": 0.383, + "1991": 0.389, + "1992": 0.394, + "1993": 0.4, + "1994": 0.408, + "1995": 0.41, + "1996": 0.423, + "1997": 0.429, + "1998": 0.435, + "1999": 0.441, + "2000": 0.444, + "2001": 0.45, + "2002": 0.458, + "2003": 0.466, + "2004": 0.473, + "2005": 0.482, + "2006": 0.484, + "2007": 0.497, + "2008": 0.504, + "2009": 0.514, + "2010": 0.522, + "2011": 0.533, + "2012": 0.542, + "2013": 0.554, + "2014": 0.567, + "2015": 0.577, + "2016": 0.585, + "2017": 0.589, + "2018": 0.589, + "2019": 0.593, + "2020": 0.591, + "2021": 0.589 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr103", + "Region": "Luangnamtha", + "1990": 0.396, + "1991": 0.402, + "1992": 0.408, + "1993": 0.414, + "1994": 0.422, + "1995": 0.423, + "1996": 0.437, + "1997": 0.443, + "1998": 0.45, + "1999": 0.455, + "2000": 0.459, + "2001": 0.464, + "2002": 0.473, + "2003": 0.481, + "2004": 0.488, + "2005": 0.498, + "2006": 0.499, + "2007": 0.513, + "2008": 0.52, + "2009": 0.531, + "2010": 0.538, + "2011": 0.55, + "2012": 0.559, + "2013": 0.566, + "2014": 0.574, + "2015": 0.577, + "2016": 0.579, + "2017": 0.579, + "2018": 0.578, + "2019": 0.581, + "2020": 0.578, + "2021": 0.577 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr106", + "Region": "Luangprabang", + "1990": 0.382, + "1991": 0.389, + "1992": 0.394, + "1993": 0.4, + "1994": 0.408, + "1995": 0.41, + "1996": 0.423, + "1997": 0.429, + "1998": 0.435, + "1999": 0.441, + "2000": 0.445, + "2001": 0.45, + "2002": 0.459, + "2003": 0.467, + "2004": 0.474, + "2005": 0.483, + "2006": 0.484, + "2007": 0.498, + "2008": 0.505, + "2009": 0.516, + "2010": 0.523, + "2011": 0.535, + "2012": 0.544, + "2013": 0.557, + "2014": 0.571, + "2015": 0.581, + "2016": 0.589, + "2017": 0.594, + "2018": 0.594, + "2019": 0.597, + "2020": 0.595, + "2021": 0.594 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr104", + "Region": "Oudomxay", + "1990": 0.355, + "1991": 0.361, + "1992": 0.366, + "1993": 0.371, + "1994": 0.379, + "1995": 0.381, + "1996": 0.393, + "1997": 0.399, + "1998": 0.405, + "1999": 0.41, + "2000": 0.413, + "2001": 0.419, + "2002": 0.427, + "2003": 0.434, + "2004": 0.441, + "2005": 0.45, + "2006": 0.451, + "2007": 0.464, + "2008": 0.471, + "2009": 0.481, + "2010": 0.488, + "2011": 0.499, + "2012": 0.508, + "2013": 0.523, + "2014": 0.539, + "2015": 0.552, + "2016": 0.562, + "2017": 0.569, + "2018": 0.569, + "2019": 0.572, + "2020": 0.571, + "2021": 0.569 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr102", + "Region": "Phongsaly", + "1990": 0.333, + "1991": 0.339, + "1992": 0.344, + "1993": 0.349, + "1994": 0.356, + "1995": 0.358, + "1996": 0.369, + "1997": 0.375, + "1998": 0.381, + "1999": 0.386, + "2000": 0.389, + "2001": 0.394, + "2002": 0.402, + "2003": 0.409, + "2004": 0.416, + "2005": 0.424, + "2006": 0.425, + "2007": 0.438, + "2008": 0.444, + "2009": 0.454, + "2010": 0.461, + "2011": 0.471, + "2012": 0.479, + "2013": 0.496, + "2014": 0.512, + "2015": 0.526, + "2016": 0.537, + "2017": 0.546, + "2018": 0.545, + "2019": 0.548, + "2020": 0.546, + "2021": 0.545 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr114", + "Region": "Saravane", + "1990": 0.335, + "1991": 0.34, + "1992": 0.345, + "1993": 0.35, + "1994": 0.358, + "1995": 0.359, + "1996": 0.37, + "1997": 0.376, + "1998": 0.382, + "1999": 0.387, + "2000": 0.39, + "2001": 0.395, + "2002": 0.402, + "2003": 0.41, + "2004": 0.416, + "2005": 0.424, + "2006": 0.425, + "2007": 0.438, + "2008": 0.444, + "2009": 0.454, + "2010": 0.46, + "2011": 0.471, + "2012": 0.479, + "2013": 0.49, + "2014": 0.503, + "2015": 0.511, + "2016": 0.519, + "2017": 0.523, + "2018": 0.524, + "2019": 0.526, + "2020": 0.525, + "2021": 0.524 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr113", + "Region": "Savannakhet", + "1990": 0.359, + "1991": 0.365, + "1992": 0.37, + "1993": 0.376, + "1994": 0.384, + "1995": 0.386, + "1996": 0.397, + "1997": 0.403, + "1998": 0.409, + "1999": 0.414, + "2000": 0.418, + "2001": 0.423, + "2002": 0.431, + "2003": 0.439, + "2004": 0.445, + "2005": 0.454, + "2006": 0.455, + "2007": 0.468, + "2008": 0.475, + "2009": 0.485, + "2010": 0.492, + "2011": 0.503, + "2012": 0.511, + "2013": 0.525, + "2014": 0.539, + "2015": 0.55, + "2016": 0.559, + "2017": 0.566, + "2018": 0.566, + "2019": 0.569, + "2020": 0.567, + "2021": 0.566 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr108", + "Region": "Sayabury", + "1990": 0.418, + "1991": 0.424, + "1992": 0.431, + "1993": 0.437, + "1994": 0.446, + "1995": 0.448, + "1996": 0.461, + "1997": 0.468, + "1998": 0.474, + "1999": 0.48, + "2000": 0.484, + "2001": 0.49, + "2002": 0.499, + "2003": 0.507, + "2004": 0.515, + "2005": 0.525, + "2006": 0.526, + "2007": 0.54, + "2008": 0.548, + "2009": 0.559, + "2010": 0.567, + "2011": 0.579, + "2012": 0.588, + "2013": 0.606, + "2014": 0.625, + "2015": 0.639, + "2016": 0.652, + "2017": 0.661, + "2018": 0.661, + "2019": 0.664, + "2020": 0.662, + "2021": 0.661 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr115", + "Region": "Sekong", + "1990": 0.389, + "1991": 0.395, + "1992": 0.4, + "1993": 0.406, + "1994": 0.415, + "1995": 0.416, + "1996": 0.43, + "1997": 0.436, + "1998": 0.442, + "1999": 0.448, + "2000": 0.452, + "2001": 0.457, + "2002": 0.466, + "2003": 0.474, + "2004": 0.482, + "2005": 0.491, + "2006": 0.492, + "2007": 0.507, + "2008": 0.514, + "2009": 0.525, + "2010": 0.532, + "2011": 0.544, + "2012": 0.553, + "2013": 0.562, + "2014": 0.571, + "2015": 0.576, + "2016": 0.58, + "2017": 0.581, + "2018": 0.581, + "2019": 0.583, + "2020": 0.581, + "2021": 0.58 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr101", + "Region": "Vientiane Municipality", + "1990": 0.536, + "1991": 0.544, + "1992": 0.552, + "1993": 0.56, + "1994": 0.571, + "1995": 0.574, + "1996": 0.589, + "1997": 0.598, + "1998": 0.605, + "1999": 0.613, + "2000": 0.618, + "2001": 0.625, + "2002": 0.636, + "2003": 0.646, + "2004": 0.655, + "2005": 0.667, + "2006": 0.669, + "2007": 0.686, + "2008": 0.695, + "2009": 0.708, + "2010": 0.718, + "2011": 0.732, + "2012": 0.744, + "2013": 0.742, + "2014": 0.742, + "2015": 0.738, + "2016": 0.733, + "2017": 0.724, + "2018": 0.725, + "2019": 0.73, + "2020": 0.728, + "2021": 0.726 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr110", + "Region": "Vientiane Province", + "1990": 0.465, + "1991": 0.472, + "1992": 0.479, + "1993": 0.485, + "1994": 0.495, + "1995": 0.497, + "1996": 0.512, + "1997": 0.519, + "1998": 0.526, + "1999": 0.533, + "2000": 0.537, + "2001": 0.543, + "2002": 0.553, + "2003": 0.562, + "2004": 0.57, + "2005": 0.581, + "2006": 0.582, + "2007": 0.597, + "2008": 0.606, + "2009": 0.618, + "2010": 0.626, + "2011": 0.639, + "2012": 0.649, + "2013": 0.646, + "2014": 0.644, + "2015": 0.637, + "2016": 0.63, + "2017": 0.62, + "2018": 0.62, + "2019": 0.623, + "2020": 0.622, + "2021": 0.62 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr109", + "Region": "Xiengkhuang", + "1990": 0.42, + "1991": 0.427, + "1992": 0.433, + "1993": 0.439, + "1994": 0.448, + "1995": 0.45, + "1996": 0.464, + "1997": 0.471, + "1998": 0.477, + "1999": 0.484, + "2000": 0.487, + "2001": 0.494, + "2002": 0.503, + "2003": 0.511, + "2004": 0.519, + "2005": 0.529, + "2006": 0.53, + "2007": 0.545, + "2008": 0.553, + "2009": 0.564, + "2010": 0.572, + "2011": 0.585, + "2012": 0.594, + "2013": 0.605, + "2014": 0.617, + "2015": 0.624, + "2016": 0.63, + "2017": 0.633, + "2018": 0.634, + "2019": 0.637, + "2020": 0.635, + "2021": 0.634 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "National", + "GDLCODE": "LVAt", + "Region": "Total", + "1990": 0.73, + "1991": 0.727, + "1992": 0.706, + "1993": 0.69, + "1994": 0.687, + "1995": 0.696, + "1996": 0.711, + "1997": 0.722, + "1998": 0.733, + "1999": 0.746, + "2000": 0.756, + "2001": 0.767, + "2002": 0.778, + "2003": 0.787, + "2004": 0.799, + "2005": 0.808, + "2006": 0.815, + "2007": 0.82, + "2008": 0.827, + "2009": 0.826, + "2010": 0.824, + "2011": 0.831, + "2012": 0.833, + "2013": 0.843, + "2014": 0.846, + "2015": 0.85, + "2016": 0.855, + "2017": 0.86, + "2018": 0.866, + "2019": 0.871, + "2020": 0.871, + "2021": 0.863 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr104", + "Region": "Kurzeme region", + "1990": 0.823, + "1991": 0.819, + "1992": 0.792, + "1993": 0.768, + "1994": 0.759, + "1995": 0.76, + "1996": 0.774, + "1997": 0.783, + "1998": 0.792, + "1999": 0.8, + "2000": 0.808, + "2001": 0.806, + "2002": 0.802, + "2003": 0.798, + "2004": 0.799, + "2005": 0.794, + "2006": 0.793, + "2007": 0.802, + "2008": 0.811, + "2009": 0.813, + "2010": 0.811, + "2011": 0.807, + "2012": 0.831, + "2013": 0.843, + "2014": 0.841, + "2015": 0.845, + "2016": 0.845, + "2017": 0.85, + "2018": 0.855, + "2019": 0.86, + "2020": 0.86, + "2021": 0.853 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr106", + "Region": "Latgale region", + "1990": 0.776, + "1991": 0.772, + "1992": 0.744, + "1993": 0.721, + "1994": 0.713, + "1995": 0.714, + "1996": 0.727, + "1997": 0.736, + "1998": 0.745, + "1999": 0.753, + "2000": 0.76, + "2001": 0.758, + "2002": 0.755, + "2003": 0.751, + "2004": 0.754, + "2005": 0.749, + "2006": 0.753, + "2007": 0.767, + "2008": 0.778, + "2009": 0.781, + "2010": 0.778, + "2011": 0.772, + "2012": 0.801, + "2013": 0.811, + "2014": 0.808, + "2015": 0.815, + "2016": 0.82, + "2017": 0.826, + "2018": 0.831, + "2019": 0.836, + "2020": 0.836, + "2021": 0.829 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr102", + "Region": "Pieriga region", + "1990": 0.827, + "1991": 0.821, + "1992": 0.794, + "1993": 0.777, + "1994": 0.767, + "1995": 0.769, + "1996": 0.783, + "1997": 0.791, + "1998": 0.801, + "1999": 0.807, + "2000": 0.812, + "2001": 0.814, + "2002": 0.813, + "2003": 0.809, + "2004": 0.809, + "2005": 0.804, + "2006": 0.813, + "2007": 0.823, + "2008": 0.832, + "2009": 0.831, + "2010": 0.833, + "2011": 0.826, + "2012": 0.857, + "2013": 0.87, + "2014": 0.865, + "2015": 0.869, + "2016": 0.876, + "2017": 0.882, + "2018": 0.887, + "2019": 0.892, + "2020": 0.892, + "2021": 0.885 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr101", + "Region": "Riga region", + "1990": 0.87, + "1991": 0.864, + "1992": 0.837, + "1993": 0.82, + "1994": 0.815, + "1995": 0.817, + "1996": 0.831, + "1997": 0.84, + "1998": 0.845, + "1999": 0.851, + "2000": 0.856, + "2001": 0.86, + "2002": 0.863, + "2003": 0.864, + "2004": 0.864, + "2005": 0.86, + "2006": 0.868, + "2007": 0.874, + "2008": 0.883, + "2009": 0.884, + "2010": 0.884, + "2011": 0.871, + "2012": 0.901, + "2013": 0.912, + "2014": 0.912, + "2015": 0.919, + "2016": 0.923, + "2017": 0.927, + "2018": 0.932, + "2019": 0.937, + "2020": 0.937, + "2021": 0.929 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr103", + "Region": "Vidzeme region", + "1990": 0.804, + "1991": 0.8, + "1992": 0.772, + "1993": 0.749, + "1994": 0.74, + "1995": 0.742, + "1996": 0.755, + "1997": 0.764, + "1998": 0.773, + "1999": 0.781, + "2000": 0.789, + "2001": 0.788, + "2002": 0.784, + "2003": 0.778, + "2004": 0.779, + "2005": 0.776, + "2006": 0.783, + "2007": 0.794, + "2008": 0.8, + "2009": 0.805, + "2010": 0.803, + "2011": 0.793, + "2012": 0.82, + "2013": 0.833, + "2014": 0.835, + "2015": 0.836, + "2016": 0.843, + "2017": 0.848, + "2018": 0.854, + "2019": 0.859, + "2020": 0.858, + "2021": 0.851 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr105", + "Region": "Zemgale region", + "1990": 0.802, + "1991": 0.797, + "1992": 0.769, + "1993": 0.746, + "1994": 0.737, + "1995": 0.739, + "1996": 0.752, + "1997": 0.761, + "1998": 0.77, + "1999": 0.778, + "2000": 0.786, + "2001": 0.782, + "2002": 0.78, + "2003": 0.776, + "2004": 0.775, + "2005": 0.771, + "2006": 0.778, + "2007": 0.787, + "2008": 0.797, + "2009": 0.8, + "2010": 0.801, + "2011": 0.791, + "2012": 0.823, + "2013": 0.828, + "2014": 0.829, + "2015": 0.829, + "2016": 0.834, + "2017": 0.839, + "2018": 0.844, + "2019": 0.85, + "2020": 0.849, + "2021": 0.842 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "National", + "GDLCODE": "LBNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.737, + "2006": 0.734, + "2007": 0.752, + "2008": 0.76, + "2009": 0.767, + "2010": 0.77, + "2011": 0.771, + "2012": 0.762, + "2013": 0.759, + "2014": 0.75, + "2015": 0.746, + "2016": 0.743, + "2017": 0.75, + "2018": 0.75, + "2019": 0.745, + "2020": 0.726, + "2021": 0.706 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr101", + "Region": "Beirut", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.707, + "2006": 0.703, + "2007": 0.721, + "2008": 0.728, + "2009": 0.735, + "2010": 0.738, + "2011": 0.739, + "2012": 0.73, + "2013": 0.727, + "2014": 0.719, + "2015": 0.715, + "2016": 0.713, + "2017": 0.719, + "2018": 0.719, + "2019": 0.714, + "2020": 0.696, + "2021": 0.677 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr104", + "Region": "Beqaa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.764, + "2006": 0.761, + "2007": 0.779, + "2008": 0.787, + "2009": 0.794, + "2010": 0.797, + "2011": 0.798, + "2012": 0.789, + "2013": 0.786, + "2014": 0.777, + "2015": 0.773, + "2016": 0.77, + "2017": 0.777, + "2018": 0.777, + "2019": 0.772, + "2020": 0.753, + "2021": 0.732 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr102", + "Region": "Mount Lebanon", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.736, + "2006": 0.733, + "2007": 0.751, + "2008": 0.759, + "2009": 0.766, + "2010": 0.768, + "2011": 0.769, + "2012": 0.761, + "2013": 0.758, + "2014": 0.749, + "2015": 0.745, + "2016": 0.742, + "2017": 0.749, + "2018": 0.749, + "2019": 0.744, + "2020": 0.725, + "2021": 0.705 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr103", + "Region": "Northern", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.726, + "2006": 0.723, + "2007": 0.741, + "2008": 0.749, + "2009": 0.756, + "2010": 0.759, + "2011": 0.76, + "2012": 0.751, + "2013": 0.748, + "2014": 0.739, + "2015": 0.735, + "2016": 0.733, + "2017": 0.739, + "2018": 0.739, + "2019": 0.734, + "2020": 0.715, + "2021": 0.694 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr105", + "Region": "Southern, Nabtieh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.754, + "2006": 0.75, + "2007": 0.769, + "2008": 0.777, + "2009": 0.784, + "2010": 0.787, + "2011": 0.788, + "2012": 0.779, + "2013": 0.776, + "2014": 0.767, + "2015": 0.763, + "2016": 0.76, + "2017": 0.767, + "2018": 0.767, + "2019": 0.762, + "2020": 0.743, + "2021": 0.722 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "National", + "GDLCODE": "LSOt", + "Region": "Total", + "1990": 0.479, + "1991": 0.478, + "1992": 0.476, + "1993": 0.472, + "1994": 0.475, + "1995": 0.472, + "1996": 0.467, + "1997": 0.462, + "1998": 0.46, + "1999": 0.452, + "2000": 0.452, + "2001": 0.448, + "2002": 0.446, + "2003": 0.449, + "2004": 0.448, + "2005": 0.448, + "2006": 0.446, + "2007": 0.452, + "2008": 0.457, + "2009": 0.457, + "2010": 0.467, + "2011": 0.475, + "2012": 0.486, + "2013": 0.49, + "2014": 0.496, + "2015": 0.503, + "2016": 0.514, + "2017": 0.518, + "2018": 0.522, + "2019": 0.524, + "2020": 0.521, + "2021": 0.514 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr103", + "Region": "Berea", + "1990": 0.478, + "1991": 0.478, + "1992": 0.475, + "1993": 0.471, + "1994": 0.474, + "1995": 0.471, + "1996": 0.466, + "1997": 0.461, + "1998": 0.46, + "1999": 0.452, + "2000": 0.452, + "2001": 0.448, + "2002": 0.446, + "2003": 0.449, + "2004": 0.448, + "2005": 0.453, + "2006": 0.458, + "2007": 0.47, + "2008": 0.479, + "2009": 0.484, + "2010": 0.5, + "2011": 0.508, + "2012": 0.519, + "2013": 0.524, + "2014": 0.529, + "2015": 0.535, + "2016": 0.544, + "2017": 0.547, + "2018": 0.548, + "2019": 0.551, + "2020": 0.548, + "2021": 0.54 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr101", + "Region": "Butha-Buthe", + "1990": 0.487, + "1991": 0.487, + "1992": 0.484, + "1993": 0.479, + "1994": 0.483, + "1995": 0.479, + "1996": 0.475, + "1997": 0.47, + "1998": 0.468, + "1999": 0.46, + "2000": 0.46, + "2001": 0.456, + "2002": 0.454, + "2003": 0.456, + "2004": 0.456, + "2005": 0.455, + "2006": 0.453, + "2007": 0.459, + "2008": 0.463, + "2009": 0.463, + "2010": 0.473, + "2011": 0.482, + "2012": 0.494, + "2013": 0.499, + "2014": 0.505, + "2015": 0.512, + "2016": 0.522, + "2017": 0.526, + "2018": 0.528, + "2019": 0.53, + "2020": 0.527, + "2021": 0.52 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr102", + "Region": "Leribe", + "1990": 0.479, + "1991": 0.478, + "1992": 0.476, + "1993": 0.471, + "1994": 0.475, + "1995": 0.471, + "1996": 0.466, + "1997": 0.461, + "1998": 0.46, + "1999": 0.451, + "2000": 0.451, + "2001": 0.447, + "2002": 0.445, + "2003": 0.447, + "2004": 0.446, + "2005": 0.446, + "2006": 0.445, + "2007": 0.451, + "2008": 0.455, + "2009": 0.455, + "2010": 0.466, + "2011": 0.473, + "2012": 0.483, + "2013": 0.486, + "2014": 0.491, + "2015": 0.5, + "2016": 0.512, + "2017": 0.517, + "2018": 0.522, + "2019": 0.524, + "2020": 0.522, + "2021": 0.514 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr105", + "Region": "Mafeteng", + "1990": 0.492, + "1991": 0.492, + "1992": 0.489, + "1993": 0.485, + "1994": 0.489, + "1995": 0.485, + "1996": 0.48, + "1997": 0.475, + "1998": 0.474, + "1999": 0.466, + "2000": 0.467, + "2001": 0.463, + "2002": 0.461, + "2003": 0.464, + "2004": 0.464, + "2005": 0.46, + "2006": 0.455, + "2007": 0.458, + "2008": 0.458, + "2009": 0.454, + "2010": 0.461, + "2011": 0.469, + "2012": 0.479, + "2013": 0.483, + "2014": 0.489, + "2015": 0.494, + "2016": 0.501, + "2017": 0.503, + "2018": 0.503, + "2019": 0.506, + "2020": 0.503, + "2021": 0.495 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr104", + "Region": "Maseru", + "1990": 0.527, + "1991": 0.527, + "1992": 0.525, + "1993": 0.52, + "1994": 0.524, + "1995": 0.52, + "1996": 0.516, + "1997": 0.51, + "1998": 0.509, + "1999": 0.501, + "2000": 0.5, + "2001": 0.496, + "2002": 0.494, + "2003": 0.497, + "2004": 0.497, + "2005": 0.492, + "2006": 0.487, + "2007": 0.489, + "2008": 0.489, + "2009": 0.485, + "2010": 0.492, + "2011": 0.502, + "2012": 0.515, + "2013": 0.521, + "2014": 0.528, + "2015": 0.536, + "2016": 0.547, + "2017": 0.552, + "2018": 0.556, + "2019": 0.558, + "2020": 0.555, + "2021": 0.547 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr106", + "Region": "Mohale s Hoek", + "1990": 0.451, + "1991": 0.451, + "1992": 0.449, + "1993": 0.444, + "1994": 0.448, + "1995": 0.444, + "1996": 0.44, + "1997": 0.435, + "1998": 0.433, + "1999": 0.425, + "2000": 0.425, + "2001": 0.421, + "2002": 0.419, + "2003": 0.421, + "2004": 0.42, + "2005": 0.419, + "2006": 0.417, + "2007": 0.422, + "2008": 0.426, + "2009": 0.425, + "2010": 0.435, + "2011": 0.442, + "2012": 0.451, + "2013": 0.454, + "2014": 0.458, + "2015": 0.473, + "2016": 0.491, + "2017": 0.503, + "2018": 0.513, + "2019": 0.515, + "2020": 0.513, + "2021": 0.505 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr109", + "Region": "Mokhotlong", + "1990": 0.433, + "1991": 0.433, + "1992": 0.43, + "1993": 0.426, + "1994": 0.43, + "1995": 0.426, + "1996": 0.422, + "1997": 0.418, + "1998": 0.417, + "1999": 0.41, + "2000": 0.41, + "2001": 0.406, + "2002": 0.405, + "2003": 0.407, + "2004": 0.406, + "2005": 0.407, + "2006": 0.408, + "2007": 0.416, + "2008": 0.421, + "2009": 0.423, + "2010": 0.434, + "2011": 0.437, + "2012": 0.441, + "2013": 0.44, + "2014": 0.44, + "2015": 0.445, + "2016": 0.453, + "2017": 0.456, + "2018": 0.457, + "2019": 0.459, + "2020": 0.456, + "2021": 0.449 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr108", + "Region": "Qasha s Nek", + "1990": 0.434, + "1991": 0.433, + "1992": 0.431, + "1993": 0.427, + "1994": 0.43, + "1995": 0.427, + "1996": 0.423, + "1997": 0.418, + "1998": 0.417, + "1999": 0.41, + "2000": 0.41, + "2001": 0.406, + "2002": 0.404, + "2003": 0.406, + "2004": 0.405, + "2005": 0.411, + "2006": 0.416, + "2007": 0.428, + "2008": 0.438, + "2009": 0.444, + "2010": 0.46, + "2011": 0.464, + "2012": 0.47, + "2013": 0.469, + "2014": 0.471, + "2015": 0.476, + "2016": 0.484, + "2017": 0.487, + "2018": 0.488, + "2019": 0.49, + "2020": 0.488, + "2021": 0.48 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr107", + "Region": "Quthing", + "1990": 0.446, + "1991": 0.446, + "1992": 0.443, + "1993": 0.439, + "1994": 0.443, + "1995": 0.439, + "1996": 0.434, + "1997": 0.43, + "1998": 0.428, + "1999": 0.421, + "2000": 0.421, + "2001": 0.417, + "2002": 0.415, + "2003": 0.417, + "2004": 0.417, + "2005": 0.418, + "2006": 0.418, + "2007": 0.426, + "2008": 0.432, + "2009": 0.434, + "2010": 0.446, + "2011": 0.454, + "2012": 0.464, + "2013": 0.468, + "2014": 0.473, + "2015": 0.474, + "2016": 0.477, + "2017": 0.475, + "2018": 0.472, + "2019": 0.473, + "2020": 0.471, + "2021": 0.464 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr110", + "Region": "Thaba-Tseka", + "1990": 0.406, + "1991": 0.406, + "1992": 0.403, + "1993": 0.399, + "1994": 0.402, + "1995": 0.399, + "1996": 0.395, + "1997": 0.39, + "1998": 0.389, + "1999": 0.382, + "2000": 0.382, + "2001": 0.377, + "2002": 0.376, + "2003": 0.377, + "2004": 0.377, + "2005": 0.378, + "2006": 0.38, + "2007": 0.389, + "2008": 0.396, + "2009": 0.398, + "2010": 0.41, + "2011": 0.423, + "2012": 0.438, + "2013": 0.447, + "2014": 0.456, + "2015": 0.455, + "2016": 0.457, + "2017": 0.452, + "2018": 0.447, + "2019": 0.449, + "2020": 0.446, + "2021": 0.439 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "National", + "GDLCODE": "LBRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.397, + "2000": 0.438, + "2001": 0.443, + "2002": 0.447, + "2003": 0.422, + "2004": 0.434, + "2005": 0.437, + "2006": 0.443, + "2007": 0.448, + "2008": 0.453, + "2009": 0.456, + "2010": 0.46, + "2011": 0.464, + "2012": 0.47, + "2013": 0.475, + "2014": 0.472, + "2015": 0.473, + "2016": 0.478, + "2017": 0.481, + "2018": 0.483, + "2019": 0.484, + "2020": 0.48, + "2021": 0.481 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr101", + "Region": "Bomi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.366, + "2000": 0.406, + "2001": 0.41, + "2002": 0.414, + "2003": 0.389, + "2004": 0.4, + "2005": 0.403, + "2006": 0.408, + "2007": 0.413, + "2008": 0.417, + "2009": 0.42, + "2010": 0.423, + "2011": 0.428, + "2012": 0.433, + "2013": 0.438, + "2014": 0.435, + "2015": 0.436, + "2016": 0.44, + "2017": 0.443, + "2018": 0.446, + "2019": 0.446, + "2020": 0.443, + "2021": 0.443 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr102", + "Region": "Bong", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.33, + "2000": 0.365, + "2001": 0.369, + "2002": 0.373, + "2003": 0.35, + "2004": 0.36, + "2005": 0.362, + "2006": 0.367, + "2007": 0.371, + "2008": 0.375, + "2009": 0.378, + "2010": 0.381, + "2011": 0.385, + "2012": 0.39, + "2013": 0.394, + "2014": 0.397, + "2015": 0.403, + "2016": 0.412, + "2017": 0.42, + "2018": 0.427, + "2019": 0.432, + "2020": 0.433, + "2021": 0.434 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr103", + "Region": "Gbarpolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.349, + "2000": 0.387, + "2001": 0.391, + "2002": 0.395, + "2003": 0.371, + "2004": 0.381, + "2005": 0.383, + "2006": 0.389, + "2007": 0.393, + "2008": 0.397, + "2009": 0.4, + "2010": 0.403, + "2011": 0.408, + "2012": 0.412, + "2013": 0.417, + "2014": 0.411, + "2015": 0.407, + "2016": 0.407, + "2017": 0.405, + "2018": 0.403, + "2019": 0.399, + "2020": 0.392, + "2021": 0.392 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr104", + "Region": "Grand Bassa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.34, + "2000": 0.376, + "2001": 0.381, + "2002": 0.384, + "2003": 0.361, + "2004": 0.371, + "2005": 0.373, + "2006": 0.379, + "2007": 0.383, + "2008": 0.387, + "2009": 0.39, + "2010": 0.393, + "2011": 0.397, + "2012": 0.402, + "2013": 0.406, + "2014": 0.405, + "2015": 0.407, + "2016": 0.412, + "2017": 0.416, + "2018": 0.42, + "2019": 0.421, + "2020": 0.419, + "2021": 0.42 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr105", + "Region": "Grand Cape Mount", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.332, + "2000": 0.369, + "2001": 0.373, + "2002": 0.377, + "2003": 0.354, + "2004": 0.364, + "2005": 0.366, + "2006": 0.371, + "2007": 0.375, + "2008": 0.379, + "2009": 0.382, + "2010": 0.385, + "2011": 0.389, + "2012": 0.393, + "2013": 0.397, + "2014": 0.396, + "2015": 0.397, + "2016": 0.401, + "2017": 0.404, + "2018": 0.407, + "2019": 0.408, + "2020": 0.405, + "2021": 0.406 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr106", + "Region": "Grand Gedeh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.375, + "2000": 0.415, + "2001": 0.42, + "2002": 0.424, + "2003": 0.399, + "2004": 0.41, + "2005": 0.413, + "2006": 0.418, + "2007": 0.423, + "2008": 0.428, + "2009": 0.431, + "2010": 0.434, + "2011": 0.439, + "2012": 0.444, + "2013": 0.449, + "2014": 0.448, + "2015": 0.449, + "2016": 0.455, + "2017": 0.459, + "2018": 0.463, + "2019": 0.464, + "2020": 0.462, + "2021": 0.462 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr107", + "Region": "Grand Kru", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.357, + "2000": 0.395, + "2001": 0.4, + "2002": 0.404, + "2003": 0.379, + "2004": 0.39, + "2005": 0.393, + "2006": 0.398, + "2007": 0.403, + "2008": 0.407, + "2009": 0.411, + "2010": 0.414, + "2011": 0.419, + "2012": 0.424, + "2013": 0.428, + "2014": 0.425, + "2015": 0.425, + "2016": 0.428, + "2017": 0.43, + "2018": 0.432, + "2019": 0.431, + "2020": 0.427, + "2021": 0.427 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr108", + "Region": "Lofa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.362, + "2000": 0.402, + "2001": 0.406, + "2002": 0.41, + "2003": 0.385, + "2004": 0.395, + "2005": 0.397, + "2006": 0.403, + "2007": 0.407, + "2008": 0.411, + "2009": 0.414, + "2010": 0.417, + "2011": 0.422, + "2012": 0.426, + "2013": 0.431, + "2014": 0.427, + "2015": 0.426, + "2016": 0.429, + "2017": 0.43, + "2018": 0.43, + "2019": 0.429, + "2020": 0.424, + "2021": 0.425 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr109", + "Region": "Margibi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.399, + "2000": 0.44, + "2001": 0.445, + "2002": 0.449, + "2003": 0.424, + "2004": 0.436, + "2005": 0.439, + "2006": 0.445, + "2007": 0.45, + "2008": 0.454, + "2009": 0.458, + "2010": 0.461, + "2011": 0.466, + "2012": 0.471, + "2013": 0.476, + "2014": 0.473, + "2015": 0.472, + "2016": 0.476, + "2017": 0.477, + "2018": 0.479, + "2019": 0.478, + "2020": 0.473, + "2021": 0.474 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr110", + "Region": "Maryland", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.389, + "2000": 0.429, + "2001": 0.434, + "2002": 0.438, + "2003": 0.413, + "2004": 0.425, + "2005": 0.428, + "2006": 0.434, + "2007": 0.439, + "2008": 0.443, + "2009": 0.447, + "2010": 0.45, + "2011": 0.455, + "2012": 0.461, + "2013": 0.465, + "2014": 0.462, + "2015": 0.462, + "2016": 0.466, + "2017": 0.468, + "2018": 0.47, + "2019": 0.469, + "2020": 0.465, + "2021": 0.465 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr111", + "Region": "Montserrado", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.454, + "2000": 0.496, + "2001": 0.502, + "2002": 0.508, + "2003": 0.482, + "2004": 0.496, + "2005": 0.499, + "2006": 0.506, + "2007": 0.512, + "2008": 0.517, + "2009": 0.521, + "2010": 0.525, + "2011": 0.53, + "2012": 0.536, + "2013": 0.542, + "2014": 0.538, + "2015": 0.538, + "2016": 0.544, + "2017": 0.546, + "2018": 0.549, + "2019": 0.549, + "2020": 0.545, + "2021": 0.545 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr112", + "Region": "Nimba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.4, + "2000": 0.441, + "2001": 0.446, + "2002": 0.45, + "2003": 0.424, + "2004": 0.435, + "2005": 0.438, + "2006": 0.444, + "2007": 0.449, + "2008": 0.454, + "2009": 0.457, + "2010": 0.46, + "2011": 0.465, + "2012": 0.471, + "2013": 0.476, + "2014": 0.472, + "2015": 0.472, + "2016": 0.475, + "2017": 0.477, + "2018": 0.479, + "2019": 0.478, + "2020": 0.474, + "2021": 0.474 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr113", + "Region": "River Cess", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.345, + "2000": 0.383, + "2001": 0.387, + "2002": 0.391, + "2003": 0.366, + "2004": 0.376, + "2005": 0.378, + "2006": 0.383, + "2007": 0.388, + "2008": 0.392, + "2009": 0.395, + "2010": 0.398, + "2011": 0.402, + "2012": 0.407, + "2013": 0.411, + "2014": 0.411, + "2015": 0.414, + "2016": 0.42, + "2017": 0.424, + "2018": 0.428, + "2019": 0.43, + "2020": 0.429, + "2021": 0.43 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr114", + "Region": "River Gee", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.348, + "2000": 0.385, + "2001": 0.389, + "2002": 0.394, + "2003": 0.37, + "2004": 0.381, + "2005": 0.384, + "2006": 0.389, + "2007": 0.394, + "2008": 0.398, + "2009": 0.401, + "2010": 0.405, + "2011": 0.409, + "2012": 0.414, + "2013": 0.419, + "2014": 0.421, + "2015": 0.426, + "2016": 0.435, + "2017": 0.442, + "2018": 0.449, + "2019": 0.454, + "2020": 0.455, + "2021": 0.455 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr115", + "Region": "Sinoe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.363, + "2000": 0.402, + "2001": 0.407, + "2002": 0.411, + "2003": 0.385, + "2004": 0.396, + "2005": 0.398, + "2006": 0.404, + "2007": 0.409, + "2008": 0.413, + "2009": 0.417, + "2010": 0.42, + "2011": 0.424, + "2012": 0.43, + "2013": 0.434, + "2014": 0.434, + "2015": 0.436, + "2016": 0.442, + "2017": 0.447, + "2018": 0.451, + "2019": 0.453, + "2020": 0.452, + "2021": 0.452 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "National", + "GDLCODE": "LBYt", + "Region": "Total", + "1990": 0.666, + "1991": 0.677, + "1992": 0.681, + "1993": 0.684, + "1994": 0.689, + "1995": 0.694, + "1996": 0.699, + "1997": 0.704, + "1998": 0.706, + "1999": 0.709, + "2000": 0.712, + "2001": 0.716, + "2002": 0.716, + "2003": 0.724, + "2004": 0.731, + "2005": 0.735, + "2006": 0.739, + "2007": 0.741, + "2008": 0.741, + "2009": 0.738, + "2010": 0.739, + "2011": 0.69, + "2012": 0.726, + "2013": 0.716, + "2014": 0.699, + "2015": 0.699, + "2016": 0.696, + "2017": 0.714, + "2018": 0.722, + "2019": 0.722, + "2020": 0.703, + "2021": 0.718 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr101", + "Region": "Cyrenaica", + "1990": 0.657, + "1991": 0.668, + "1992": 0.672, + "1993": 0.675, + "1994": 0.68, + "1995": 0.684, + "1996": 0.689, + "1997": 0.694, + "1998": 0.696, + "1999": 0.699, + "2000": 0.702, + "2001": 0.706, + "2002": 0.706, + "2003": 0.714, + "2004": 0.721, + "2005": 0.725, + "2006": 0.729, + "2007": 0.731, + "2008": 0.731, + "2009": 0.728, + "2010": 0.729, + "2011": 0.681, + "2012": 0.716, + "2013": 0.706, + "2014": 0.689, + "2015": 0.689, + "2016": 0.686, + "2017": 0.704, + "2018": 0.712, + "2019": 0.712, + "2020": 0.693, + "2021": 0.709 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr103", + "Region": "Fezzan", + "1990": 0.664, + "1991": 0.676, + "1992": 0.68, + "1993": 0.682, + "1994": 0.687, + "1995": 0.691, + "1996": 0.697, + "1997": 0.702, + "1998": 0.703, + "1999": 0.707, + "2000": 0.709, + "2001": 0.714, + "2002": 0.714, + "2003": 0.722, + "2004": 0.729, + "2005": 0.733, + "2006": 0.737, + "2007": 0.739, + "2008": 0.739, + "2009": 0.736, + "2010": 0.737, + "2011": 0.688, + "2012": 0.724, + "2013": 0.714, + "2014": 0.696, + "2015": 0.696, + "2016": 0.693, + "2017": 0.712, + "2018": 0.72, + "2019": 0.72, + "2020": 0.701, + "2021": 0.716 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr102", + "Region": "Tripolitania", + "1990": 0.671, + "1991": 0.682, + "1992": 0.686, + "1993": 0.689, + "1994": 0.695, + "1995": 0.699, + "1996": 0.704, + "1997": 0.709, + "1998": 0.711, + "1999": 0.714, + "2000": 0.717, + "2001": 0.721, + "2002": 0.721, + "2003": 0.729, + "2004": 0.736, + "2005": 0.741, + "2006": 0.744, + "2007": 0.746, + "2008": 0.746, + "2009": 0.743, + "2010": 0.744, + "2011": 0.696, + "2012": 0.731, + "2013": 0.721, + "2014": 0.704, + "2015": 0.704, + "2016": 0.701, + "2017": 0.72, + "2018": 0.727, + "2019": 0.727, + "2020": 0.708, + "2021": 0.724 + }, + { + "Country": "Liechtenstein", + "Continent": "Europe", + "ISO_Code": "LIE", + "Level": "National", + "GDLCODE": "LIEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.873, + "2001": 0.888, + "2002": 0.891, + "2003": 0.895, + "2004": 0.907, + "2005": 0.901, + "2006": 0.905, + "2007": 0.907, + "2008": 0.917, + "2009": 0.911, + "2010": 0.913, + "2011": 0.918, + "2012": 0.923, + "2013": 0.922, + "2014": 0.92, + "2015": 0.924, + "2016": 0.923, + "2017": 0.933, + "2018": 0.928, + "2019": 0.94, + "2020": 0.933, + "2021": 0.935 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "National", + "GDLCODE": "LTUt", + "Region": "Total", + "1990": 0.734, + "1991": 0.729, + "1992": 0.714, + "1993": 0.697, + "1994": 0.693, + "1995": 0.701, + "1996": 0.717, + "1997": 0.732, + "1998": 0.744, + "1999": 0.753, + "2000": 0.766, + "2001": 0.776, + "2002": 0.786, + "2003": 0.8, + "2004": 0.809, + "2005": 0.817, + "2006": 0.823, + "2007": 0.83, + "2008": 0.84, + "2009": 0.839, + "2010": 0.842, + "2011": 0.849, + "2012": 0.851, + "2013": 0.854, + "2014": 0.861, + "2015": 0.862, + "2016": 0.868, + "2017": 0.876, + "2018": 0.88, + "2019": 0.884, + "2020": 0.879, + "2021": 0.875 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr101", + "Region": "Alytus County", + "1990": 0.712, + "1991": 0.709, + "1992": 0.697, + "1993": 0.682, + "1994": 0.68, + "1995": 0.69, + "1996": 0.7, + "1997": 0.712, + "1998": 0.722, + "1999": 0.731, + "2000": 0.749, + "2001": 0.759, + "2002": 0.763, + "2003": 0.78, + "2004": 0.783, + "2005": 0.79, + "2006": 0.799, + "2007": 0.8, + "2008": 0.811, + "2009": 0.808, + "2010": 0.815, + "2011": 0.818, + "2012": 0.815, + "2013": 0.818, + "2014": 0.826, + "2015": 0.829, + "2016": 0.835, + "2017": 0.842, + "2018": 0.846, + "2019": 0.85, + "2020": 0.846, + "2021": 0.841 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr102", + "Region": "Kaunas County", + "1990": 0.733, + "1991": 0.731, + "1992": 0.718, + "1993": 0.703, + "1994": 0.701, + "1995": 0.711, + "1996": 0.721, + "1997": 0.734, + "1998": 0.744, + "1999": 0.755, + "2000": 0.765, + "2001": 0.785, + "2002": 0.788, + "2003": 0.8, + "2004": 0.812, + "2005": 0.822, + "2006": 0.834, + "2007": 0.84, + "2008": 0.852, + "2009": 0.847, + "2010": 0.851, + "2011": 0.859, + "2012": 0.862, + "2013": 0.866, + "2014": 0.871, + "2015": 0.869, + "2016": 0.876, + "2017": 0.884, + "2018": 0.888, + "2019": 0.892, + "2020": 0.887, + "2021": 0.882 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr103", + "Region": "Klaipeda County", + "1990": 0.747, + "1991": 0.745, + "1992": 0.732, + "1993": 0.717, + "1994": 0.715, + "1995": 0.725, + "1996": 0.736, + "1997": 0.748, + "1998": 0.758, + "1999": 0.761, + "2000": 0.771, + "2001": 0.78, + "2002": 0.787, + "2003": 0.805, + "2004": 0.813, + "2005": 0.819, + "2006": 0.825, + "2007": 0.836, + "2008": 0.845, + "2009": 0.847, + "2010": 0.85, + "2011": 0.857, + "2012": 0.863, + "2013": 0.86, + "2014": 0.869, + "2015": 0.868, + "2016": 0.869, + "2017": 0.877, + "2018": 0.881, + "2019": 0.885, + "2020": 0.881, + "2021": 0.876 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr104", + "Region": "Marijampole County", + "1990": 0.707, + "1991": 0.704, + "1992": 0.692, + "1993": 0.677, + "1994": 0.675, + "1995": 0.685, + "1996": 0.694, + "1997": 0.706, + "1998": 0.716, + "1999": 0.729, + "2000": 0.737, + "2001": 0.736, + "2002": 0.746, + "2003": 0.759, + "2004": 0.767, + "2005": 0.772, + "2006": 0.787, + "2007": 0.791, + "2008": 0.804, + "2009": 0.8, + "2010": 0.802, + "2011": 0.808, + "2012": 0.809, + "2013": 0.814, + "2014": 0.819, + "2015": 0.82, + "2016": 0.824, + "2017": 0.831, + "2018": 0.835, + "2019": 0.839, + "2020": 0.835, + "2021": 0.83 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr105", + "Region": "Panevezys County", + "1990": 0.726, + "1991": 0.723, + "1992": 0.711, + "1993": 0.696, + "1994": 0.694, + "1995": 0.704, + "1996": 0.714, + "1997": 0.726, + "1998": 0.736, + "1999": 0.74, + "2000": 0.754, + "2001": 0.76, + "2002": 0.773, + "2003": 0.788, + "2004": 0.799, + "2005": 0.807, + "2006": 0.808, + "2007": 0.806, + "2008": 0.819, + "2009": 0.815, + "2010": 0.815, + "2011": 0.824, + "2012": 0.826, + "2013": 0.83, + "2014": 0.835, + "2015": 0.836, + "2016": 0.841, + "2017": 0.848, + "2018": 0.852, + "2019": 0.856, + "2020": 0.852, + "2021": 0.847 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr106", + "Region": "Siauliai County", + "1990": 0.715, + "1991": 0.712, + "1992": 0.7, + "1993": 0.685, + "1994": 0.683, + "1995": 0.693, + "1996": 0.703, + "1997": 0.715, + "1998": 0.725, + "1999": 0.733, + "2000": 0.743, + "2001": 0.75, + "2002": 0.758, + "2003": 0.775, + "2004": 0.782, + "2005": 0.79, + "2006": 0.792, + "2007": 0.798, + "2008": 0.81, + "2009": 0.808, + "2010": 0.811, + "2011": 0.823, + "2012": 0.826, + "2013": 0.829, + "2014": 0.836, + "2015": 0.835, + "2016": 0.84, + "2017": 0.848, + "2018": 0.852, + "2019": 0.855, + "2020": 0.851, + "2021": 0.847 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr107", + "Region": "Taurage County", + "1990": 0.686, + "1991": 0.684, + "1992": 0.671, + "1993": 0.656, + "1994": 0.654, + "1995": 0.664, + "1996": 0.674, + "1997": 0.685, + "1998": 0.695, + "1999": 0.702, + "2000": 0.713, + "2001": 0.718, + "2002": 0.732, + "2003": 0.747, + "2004": 0.758, + "2005": 0.752, + "2006": 0.755, + "2007": 0.762, + "2008": 0.783, + "2009": 0.777, + "2010": 0.773, + "2011": 0.787, + "2012": 0.799, + "2013": 0.793, + "2014": 0.801, + "2015": 0.803, + "2016": 0.81, + "2017": 0.818, + "2018": 0.822, + "2019": 0.825, + "2020": 0.821, + "2021": 0.817 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr108", + "Region": "Telsiai County", + "1990": 0.714, + "1991": 0.711, + "1992": 0.699, + "1993": 0.684, + "1994": 0.682, + "1995": 0.692, + "1996": 0.702, + "1997": 0.714, + "1998": 0.724, + "1999": 0.729, + "2000": 0.743, + "2001": 0.748, + "2002": 0.759, + "2003": 0.763, + "2004": 0.784, + "2005": 0.797, + "2006": 0.797, + "2007": 0.804, + "2008": 0.815, + "2009": 0.814, + "2010": 0.824, + "2011": 0.825, + "2012": 0.821, + "2013": 0.831, + "2014": 0.831, + "2015": 0.83, + "2016": 0.84, + "2017": 0.848, + "2018": 0.852, + "2019": 0.856, + "2020": 0.852, + "2021": 0.847 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr109", + "Region": "Utena County", + "1990": 0.718, + "1991": 0.716, + "1992": 0.703, + "1993": 0.688, + "1994": 0.686, + "1995": 0.696, + "1996": 0.706, + "1997": 0.718, + "1998": 0.728, + "1999": 0.73, + "2000": 0.749, + "2001": 0.76, + "2002": 0.771, + "2003": 0.778, + "2004": 0.785, + "2005": 0.797, + "2006": 0.8, + "2007": 0.802, + "2008": 0.813, + "2009": 0.824, + "2010": 0.811, + "2011": 0.816, + "2012": 0.813, + "2013": 0.811, + "2014": 0.825, + "2015": 0.825, + "2016": 0.824, + "2017": 0.832, + "2018": 0.836, + "2019": 0.84, + "2020": 0.835, + "2021": 0.831 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr110", + "Region": "Vilnius County", + "1990": 0.77, + "1991": 0.767, + "1992": 0.755, + "1993": 0.739, + "1994": 0.738, + "1995": 0.748, + "1996": 0.758, + "1997": 0.771, + "1998": 0.782, + "1999": 0.786, + "2000": 0.797, + "2001": 0.801, + "2002": 0.819, + "2003": 0.834, + "2004": 0.844, + "2005": 0.852, + "2006": 0.855, + "2007": 0.866, + "2008": 0.872, + "2009": 0.873, + "2010": 0.879, + "2011": 0.884, + "2012": 0.884, + "2013": 0.888, + "2014": 0.894, + "2015": 0.898, + "2016": 0.906, + "2017": 0.914, + "2018": 0.918, + "2019": 0.922, + "2020": 0.918, + "2021": 0.913 + }, + { + "Country": "Luxembourg", + "Continent": "Europe", + "ISO_Code": "LUX", + "Level": "National", + "GDLCODE": "LUXt", + "Region": "Total", + "1990": 0.786, + "1991": 0.796, + "1992": 0.8, + "1993": 0.81, + "1994": 0.819, + "1995": 0.824, + "1996": 0.832, + "1997": 0.839, + "1998": 0.846, + "1999": 0.861, + "2000": 0.864, + "2001": 0.869, + "2002": 0.874, + "2003": 0.873, + "2004": 0.882, + "2005": 0.884, + "2006": 0.885, + "2007": 0.887, + "2008": 0.9, + "2009": 0.905, + "2010": 0.912, + "2011": 0.913, + "2012": 0.916, + "2013": 0.921, + "2014": 0.926, + "2015": 0.915, + "2016": 0.923, + "2017": 0.919, + "2018": 0.922, + "2019": 0.927, + "2020": 0.924, + "2021": 0.93 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "National", + "GDLCODE": "MDGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.443, + "2001": 0.451, + "2002": 0.447, + "2003": 0.457, + "2004": 0.465, + "2005": 0.469, + "2006": 0.475, + "2007": 0.482, + "2008": 0.49, + "2009": 0.493, + "2010": 0.492, + "2011": 0.494, + "2012": 0.496, + "2013": 0.499, + "2014": 0.502, + "2015": 0.504, + "2016": 0.505, + "2017": 0.507, + "2018": 0.507, + "2019": 0.51, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr112", + "Region": "Alaotra Mangoro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.458, + "2001": 0.466, + "2002": 0.462, + "2003": 0.472, + "2004": 0.48, + "2005": 0.485, + "2006": 0.491, + "2007": 0.498, + "2008": 0.506, + "2009": 0.509, + "2010": 0.509, + "2011": 0.511, + "2012": 0.513, + "2013": 0.515, + "2014": 0.518, + "2015": 0.52, + "2016": 0.522, + "2017": 0.523, + "2018": 0.524, + "2019": 0.527, + "2020": 0.518, + "2021": 0.518 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr101", + "Region": "Analamanga", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.537, + "2001": 0.547, + "2002": 0.543, + "2003": 0.555, + "2004": 0.564, + "2005": 0.569, + "2006": 0.576, + "2007": 0.584, + "2008": 0.592, + "2009": 0.596, + "2010": 0.596, + "2011": 0.599, + "2012": 0.602, + "2013": 0.605, + "2014": 0.609, + "2015": 0.612, + "2016": 0.615, + "2017": 0.617, + "2018": 0.618, + "2019": 0.622, + "2020": 0.612, + "2021": 0.612 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr111", + "Region": "Analanjirofo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.442, + "2001": 0.449, + "2002": 0.445, + "2003": 0.455, + "2004": 0.462, + "2005": 0.467, + "2006": 0.472, + "2007": 0.48, + "2008": 0.488, + "2009": 0.492, + "2010": 0.494, + "2011": 0.499, + "2012": 0.504, + "2013": 0.51, + "2014": 0.516, + "2015": 0.521, + "2016": 0.525, + "2017": 0.529, + "2018": 0.532, + "2019": 0.535, + "2020": 0.526, + "2021": 0.526 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr106", + "Region": "Anamoroni Mania", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.438, + "2001": 0.445, + "2002": 0.441, + "2003": 0.451, + "2004": 0.459, + "2005": 0.463, + "2006": 0.469, + "2007": 0.476, + "2008": 0.484, + "2009": 0.487, + "2010": 0.488, + "2011": 0.492, + "2012": 0.495, + "2013": 0.499, + "2014": 0.504, + "2015": 0.507, + "2016": 0.511, + "2017": 0.514, + "2018": 0.515, + "2019": 0.518, + "2020": 0.51, + "2021": 0.51 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr118", + "Region": "Androy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.332, + "2001": 0.338, + "2002": 0.334, + "2003": 0.341, + "2004": 0.347, + "2005": 0.351, + "2006": 0.355, + "2007": 0.361, + "2008": 0.367, + "2009": 0.37, + "2010": 0.375, + "2011": 0.381, + "2012": 0.387, + "2013": 0.393, + "2014": 0.399, + "2015": 0.404, + "2016": 0.409, + "2017": 0.413, + "2018": 0.415, + "2019": 0.418, + "2020": 0.41, + "2021": 0.41 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr119", + "Region": "Anosy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.367, + "2001": 0.373, + "2002": 0.37, + "2003": 0.378, + "2004": 0.384, + "2005": 0.388, + "2006": 0.393, + "2007": 0.399, + "2008": 0.406, + "2009": 0.409, + "2010": 0.408, + "2011": 0.409, + "2012": 0.41, + "2013": 0.412, + "2014": 0.414, + "2015": 0.415, + "2016": 0.416, + "2017": 0.417, + "2018": 0.416, + "2019": 0.419, + "2020": 0.412, + "2021": 0.412 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr117", + "Region": "Atsimo Andrefana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.397, + "2001": 0.404, + "2002": 0.4, + "2003": 0.409, + "2004": 0.416, + "2005": 0.42, + "2006": 0.425, + "2007": 0.431, + "2008": 0.438, + "2009": 0.441, + "2010": 0.436, + "2011": 0.432, + "2012": 0.428, + "2013": 0.425, + "2014": 0.423, + "2015": 0.419, + "2016": 0.415, + "2017": 0.411, + "2018": 0.405, + "2019": 0.408, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr109", + "Region": "Atsimo Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.356, + "2001": 0.363, + "2002": 0.359, + "2003": 0.367, + "2004": 0.373, + "2005": 0.378, + "2006": 0.382, + "2007": 0.388, + "2008": 0.395, + "2009": 0.398, + "2010": 0.397, + "2011": 0.398, + "2012": 0.399, + "2013": 0.401, + "2014": 0.403, + "2015": 0.404, + "2016": 0.405, + "2017": 0.405, + "2018": 0.405, + "2019": 0.407, + "2020": 0.4, + "2021": 0.4 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr110", + "Region": "Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.488, + "2001": 0.497, + "2002": 0.493, + "2003": 0.503, + "2004": 0.511, + "2005": 0.517, + "2006": 0.522, + "2007": 0.53, + "2008": 0.539, + "2009": 0.543, + "2010": 0.539, + "2011": 0.537, + "2012": 0.536, + "2013": 0.535, + "2014": 0.535, + "2015": 0.534, + "2016": 0.533, + "2017": 0.53, + "2018": 0.527, + "2019": 0.53, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr115", + "Region": "Betsiboka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.409, + "2001": 0.417, + "2002": 0.413, + "2003": 0.422, + "2004": 0.429, + "2005": 0.434, + "2006": 0.439, + "2007": 0.446, + "2008": 0.453, + "2009": 0.456, + "2010": 0.453, + "2011": 0.453, + "2012": 0.452, + "2013": 0.452, + "2014": 0.453, + "2015": 0.452, + "2016": 0.452, + "2017": 0.451, + "2018": 0.449, + "2019": 0.452, + "2020": 0.444, + "2021": 0.444 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr113", + "Region": "Boeny", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.454, + "2001": 0.462, + "2002": 0.459, + "2003": 0.469, + "2004": 0.477, + "2005": 0.481, + "2006": 0.487, + "2007": 0.494, + "2008": 0.502, + "2009": 0.506, + "2010": 0.505, + "2011": 0.506, + "2012": 0.507, + "2013": 0.509, + "2014": 0.511, + "2015": 0.512, + "2016": 0.513, + "2017": 0.513, + "2018": 0.512, + "2019": 0.515, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr104", + "Region": "Bongolava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.446, + "2001": 0.454, + "2002": 0.449, + "2003": 0.459, + "2004": 0.467, + "2005": 0.472, + "2006": 0.477, + "2007": 0.484, + "2008": 0.492, + "2009": 0.495, + "2010": 0.491, + "2011": 0.489, + "2012": 0.488, + "2013": 0.487, + "2014": 0.486, + "2015": 0.484, + "2016": 0.483, + "2017": 0.48, + "2018": 0.477, + "2019": 0.48, + "2020": 0.472, + "2021": 0.472 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr121", + "Region": "Diana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.465, + "2001": 0.473, + "2002": 0.469, + "2003": 0.479, + "2004": 0.487, + "2005": 0.492, + "2006": 0.498, + "2007": 0.505, + "2008": 0.513, + "2009": 0.517, + "2010": 0.522, + "2011": 0.53, + "2012": 0.538, + "2013": 0.546, + "2014": 0.555, + "2015": 0.563, + "2016": 0.571, + "2017": 0.578, + "2018": 0.583, + "2019": 0.587, + "2020": 0.577, + "2021": 0.577 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr105", + "Region": "Haute Matsiatra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.436, + "2001": 0.444, + "2002": 0.44, + "2003": 0.45, + "2004": 0.458, + "2005": 0.462, + "2006": 0.468, + "2007": 0.475, + "2008": 0.483, + "2009": 0.486, + "2010": 0.486, + "2011": 0.488, + "2012": 0.49, + "2013": 0.493, + "2014": 0.496, + "2015": 0.498, + "2016": 0.5, + "2017": 0.502, + "2018": 0.502, + "2019": 0.505, + "2020": 0.496, + "2021": 0.496 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr108", + "Region": "Ihorombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.39, + "2001": 0.397, + "2002": 0.394, + "2003": 0.402, + "2004": 0.409, + "2005": 0.413, + "2006": 0.418, + "2007": 0.425, + "2008": 0.432, + "2009": 0.435, + "2010": 0.433, + "2011": 0.433, + "2012": 0.433, + "2013": 0.434, + "2014": 0.435, + "2015": 0.435, + "2016": 0.435, + "2017": 0.434, + "2018": 0.433, + "2019": 0.435, + "2020": 0.428, + "2021": 0.428 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr103", + "Region": "Itasy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.422, + "2001": 0.43, + "2002": 0.426, + "2003": 0.435, + "2004": 0.443, + "2005": 0.447, + "2006": 0.452, + "2007": 0.459, + "2008": 0.467, + "2009": 0.47, + "2010": 0.472, + "2011": 0.476, + "2012": 0.481, + "2013": 0.485, + "2014": 0.491, + "2015": 0.495, + "2016": 0.5, + "2017": 0.503, + "2018": 0.506, + "2019": 0.509, + "2020": 0.5, + "2021": 0.501 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr116", + "Region": "Melaky", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.367, + "2001": 0.374, + "2002": 0.37, + "2003": 0.378, + "2004": 0.385, + "2005": 0.389, + "2006": 0.393, + "2007": 0.399, + "2008": 0.406, + "2009": 0.408, + "2010": 0.412, + "2011": 0.417, + "2012": 0.422, + "2013": 0.428, + "2014": 0.434, + "2015": 0.44, + "2016": 0.445, + "2017": 0.449, + "2018": 0.453, + "2019": 0.456, + "2020": 0.448, + "2021": 0.448 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr120", + "Region": "Menabe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.408, + "2001": 0.415, + "2002": 0.411, + "2003": 0.42, + "2004": 0.427, + "2005": 0.432, + "2006": 0.437, + "2007": 0.443, + "2008": 0.45, + "2009": 0.454, + "2010": 0.45, + "2011": 0.448, + "2012": 0.447, + "2013": 0.446, + "2014": 0.445, + "2015": 0.443, + "2016": 0.442, + "2017": 0.439, + "2018": 0.436, + "2019": 0.439, + "2020": 0.431, + "2021": 0.431 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr122", + "Region": "Sava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.44, + "2001": 0.448, + "2002": 0.443, + "2003": 0.453, + "2004": 0.461, + "2005": 0.465, + "2006": 0.471, + "2007": 0.478, + "2008": 0.486, + "2009": 0.49, + "2010": 0.495, + "2011": 0.504, + "2012": 0.512, + "2013": 0.521, + "2014": 0.531, + "2015": 0.539, + "2016": 0.547, + "2017": 0.554, + "2018": 0.561, + "2019": 0.564, + "2020": 0.555, + "2021": 0.555 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr114", + "Region": "Sofia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.458, + "2001": 0.466, + "2002": 0.462, + "2003": 0.472, + "2004": 0.479, + "2005": 0.484, + "2006": 0.49, + "2007": 0.498, + "2008": 0.506, + "2009": 0.509, + "2010": 0.509, + "2011": 0.511, + "2012": 0.513, + "2013": 0.516, + "2014": 0.519, + "2015": 0.521, + "2016": 0.523, + "2017": 0.525, + "2018": 0.525, + "2019": 0.528, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr102", + "Region": "Vakinankaratra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.44, + "2001": 0.448, + "2002": 0.444, + "2003": 0.454, + "2004": 0.462, + "2005": 0.466, + "2006": 0.472, + "2007": 0.479, + "2008": 0.487, + "2009": 0.49, + "2010": 0.491, + "2011": 0.494, + "2012": 0.497, + "2013": 0.501, + "2014": 0.506, + "2015": 0.509, + "2016": 0.512, + "2017": 0.515, + "2018": 0.516, + "2019": 0.519, + "2020": 0.511, + "2021": 0.511 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr107", + "Region": "Vatovavy Fitovinany", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.358, + "2001": 0.364, + "2002": 0.361, + "2003": 0.369, + "2004": 0.375, + "2005": 0.38, + "2006": 0.384, + "2007": 0.391, + "2008": 0.397, + "2009": 0.4, + "2010": 0.405, + "2011": 0.413, + "2012": 0.42, + "2013": 0.427, + "2014": 0.435, + "2015": 0.442, + "2016": 0.449, + "2017": 0.455, + "2018": 0.46, + "2019": 0.462, + "2020": 0.454, + "2021": 0.455 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "National", + "GDLCODE": "MWIt", + "Region": "Total", + "1990": 0.303, + "1991": 0.309, + "1992": 0.319, + "1993": 0.327, + "1994": 0.326, + "1995": 0.367, + "1996": 0.368, + "1997": 0.369, + "1998": 0.369, + "1999": 0.375, + "2000": 0.374, + "2001": 0.38, + "2002": 0.386, + "2003": 0.393, + "2004": 0.4, + "2005": 0.406, + "2006": 0.415, + "2007": 0.423, + "2008": 0.433, + "2009": 0.445, + "2010": 0.456, + "2011": 0.463, + "2012": 0.47, + "2013": 0.478, + "2014": 0.487, + "2015": 0.491, + "2016": 0.498, + "2017": 0.505, + "2018": 0.51, + "2019": 0.519, + "2020": 0.516, + "2021": 0.512 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr101", + "Region": "Blantyre", + "1990": 0.366, + "1991": 0.373, + "1992": 0.384, + "1993": 0.392, + "1994": 0.391, + "1995": 0.435, + "1996": 0.435, + "1997": 0.435, + "1998": 0.435, + "1999": 0.441, + "2000": 0.441, + "2001": 0.441, + "2002": 0.441, + "2003": 0.441, + "2004": 0.441, + "2005": 0.453, + "2006": 0.467, + "2007": 0.48, + "2008": 0.495, + "2009": 0.512, + "2010": 0.529, + "2011": 0.534, + "2012": 0.539, + "2013": 0.545, + "2014": 0.552, + "2015": 0.554, + "2016": 0.559, + "2017": 0.567, + "2018": 0.573, + "2019": 0.582, + "2020": 0.578, + "2021": 0.574 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr102", + "Region": "Kasungu", + "1990": 0.314, + "1991": 0.32, + "1992": 0.33, + "1993": 0.338, + "1994": 0.337, + "1995": 0.379, + "1996": 0.379, + "1997": 0.38, + "1998": 0.381, + "1999": 0.387, + "2000": 0.386, + "2001": 0.387, + "2002": 0.388, + "2003": 0.39, + "2004": 0.392, + "2005": 0.401, + "2006": 0.412, + "2007": 0.422, + "2008": 0.434, + "2009": 0.449, + "2010": 0.462, + "2011": 0.471, + "2012": 0.479, + "2013": 0.487, + "2014": 0.497, + "2015": 0.502, + "2016": 0.509, + "2017": 0.52, + "2018": 0.529, + "2019": 0.541, + "2020": 0.541, + "2021": 0.538 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr109", + "Region": "Lilongwe", + "1990": 0.287, + "1991": 0.292, + "1992": 0.301, + "1993": 0.313, + "1994": 0.316, + "1995": 0.359, + "1996": 0.363, + "1997": 0.368, + "1998": 0.372, + "1999": 0.381, + "2000": 0.383, + "2001": 0.392, + "2002": 0.4, + "2003": 0.41, + "2004": 0.419, + "2005": 0.423, + "2006": 0.429, + "2007": 0.433, + "2008": 0.441, + "2009": 0.449, + "2010": 0.458, + "2011": 0.467, + "2012": 0.476, + "2013": 0.487, + "2014": 0.498, + "2015": 0.504, + "2016": 0.513, + "2017": 0.519, + "2018": 0.523, + "2019": 0.529, + "2020": 0.524, + "2021": 0.521 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr103", + "Region": "Machinga", + "1990": 0.275, + "1991": 0.281, + "1992": 0.291, + "1993": 0.299, + "1994": 0.299, + "1995": 0.34, + "1996": 0.34, + "1997": 0.341, + "1998": 0.342, + "1999": 0.348, + "2000": 0.346, + "2001": 0.356, + "2002": 0.366, + "2003": 0.375, + "2004": 0.385, + "2005": 0.39, + "2006": 0.398, + "2007": 0.404, + "2008": 0.413, + "2009": 0.424, + "2010": 0.434, + "2011": 0.439, + "2012": 0.443, + "2013": 0.449, + "2014": 0.455, + "2015": 0.457, + "2016": 0.462, + "2017": 0.472, + "2018": 0.481, + "2019": 0.493, + "2020": 0.494, + "2021": 0.49 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr104", + "Region": "Mangochi", + "1990": 0.245, + "1991": 0.25, + "1992": 0.258, + "1993": 0.27, + "1994": 0.275, + "1995": 0.317, + "1996": 0.322, + "1997": 0.327, + "1998": 0.331, + "1999": 0.34, + "2000": 0.341, + "2001": 0.345, + "2002": 0.349, + "2003": 0.352, + "2004": 0.356, + "2005": 0.363, + "2006": 0.371, + "2007": 0.378, + "2008": 0.388, + "2009": 0.4, + "2010": 0.411, + "2011": 0.42, + "2012": 0.428, + "2013": 0.438, + "2014": 0.448, + "2015": 0.454, + "2016": 0.462, + "2017": 0.466, + "2018": 0.469, + "2019": 0.474, + "2020": 0.468, + "2021": 0.465 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr110", + "Region": "Mulanje", + "1990": 0.285, + "1991": 0.291, + "1992": 0.301, + "1993": 0.31, + "1994": 0.309, + "1995": 0.351, + "1996": 0.351, + "1997": 0.352, + "1998": 0.353, + "1999": 0.358, + "2000": 0.356, + "2001": 0.36, + "2002": 0.364, + "2003": 0.368, + "2004": 0.372, + "2005": 0.381, + "2006": 0.391, + "2007": 0.4, + "2008": 0.412, + "2009": 0.425, + "2010": 0.438, + "2011": 0.445, + "2012": 0.451, + "2013": 0.458, + "2014": 0.467, + "2015": 0.47, + "2016": 0.476, + "2017": 0.488, + "2018": 0.498, + "2019": 0.511, + "2020": 0.513, + "2021": 0.509 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr105", + "Region": "Mzimba", + "1990": 0.358, + "1991": 0.365, + "1992": 0.376, + "1993": 0.38, + "1994": 0.375, + "1995": 0.416, + "1996": 0.412, + "1997": 0.408, + "1998": 0.405, + "1999": 0.407, + "2000": 0.402, + "2001": 0.414, + "2002": 0.426, + "2003": 0.438, + "2004": 0.45, + "2005": 0.451, + "2006": 0.455, + "2007": 0.457, + "2008": 0.463, + "2009": 0.469, + "2010": 0.475, + "2011": 0.486, + "2012": 0.496, + "2013": 0.508, + "2014": 0.521, + "2015": 0.528, + "2016": 0.538, + "2017": 0.544, + "2018": 0.548, + "2019": 0.555, + "2020": 0.55, + "2021": 0.546 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr112", + "Region": "Other central (Nkhota Kota, Mchinji, Dowa, Ntchisi, Dedza, Ntcheu)", + "1990": 0.296, + "1991": 0.302, + "1992": 0.312, + "1993": 0.319, + "1994": 0.318, + "1995": 0.358, + "1996": 0.358, + "1997": 0.358, + "1998": 0.358, + "1999": 0.363, + "2000": 0.36, + "2001": 0.365, + "2002": 0.369, + "2003": 0.373, + "2004": 0.378, + "2005": 0.385, + "2006": 0.394, + "2007": 0.402, + "2008": 0.413, + "2009": 0.425, + "2010": 0.437, + "2011": 0.443, + "2012": 0.449, + "2013": 0.455, + "2014": 0.463, + "2015": 0.466, + "2016": 0.472, + "2017": 0.48, + "2018": 0.486, + "2019": 0.495, + "2020": 0.494, + "2021": 0.49 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr111", + "Region": "Other northern (Chitipa, Karonga, Rumphi, Nkhata Bay)", + "1990": 0.352, + "1991": 0.359, + "1992": 0.37, + "1993": 0.377, + "1994": 0.374, + "1995": 0.419, + "1996": 0.417, + "1997": 0.416, + "1998": 0.415, + "1999": 0.419, + "2000": 0.416, + "2001": 0.422, + "2002": 0.427, + "2003": 0.433, + "2004": 0.439, + "2005": 0.447, + "2006": 0.457, + "2007": 0.466, + "2008": 0.478, + "2009": 0.492, + "2010": 0.505, + "2011": 0.51, + "2012": 0.514, + "2013": 0.52, + "2014": 0.526, + "2015": 0.528, + "2016": 0.532, + "2017": 0.541, + "2018": 0.549, + "2019": 0.559, + "2020": 0.557, + "2021": 0.554 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr113", + "Region": "Other southern (Balaka, Mwanza, Phalombe, Chiradzulu, Chikwawa, Nsanje, neno)", + "1990": 0.293, + "1991": 0.299, + "1992": 0.309, + "1993": 0.316, + "1994": 0.314, + "1995": 0.354, + "1996": 0.353, + "1997": 0.352, + "1998": 0.352, + "1999": 0.356, + "2000": 0.353, + "2001": 0.362, + "2002": 0.37, + "2003": 0.378, + "2004": 0.387, + "2005": 0.393, + "2006": 0.401, + "2007": 0.408, + "2008": 0.418, + "2009": 0.43, + "2010": 0.44, + "2011": 0.448, + "2012": 0.454, + "2013": 0.462, + "2014": 0.471, + "2015": 0.476, + "2016": 0.482, + "2017": 0.49, + "2018": 0.496, + "2019": 0.505, + "2020": 0.504, + "2021": 0.5 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr106", + "Region": "Salima", + "1990": 0.289, + "1991": 0.295, + "1992": 0.305, + "1993": 0.311, + "1994": 0.309, + "1995": 0.347, + "1996": 0.346, + "1997": 0.345, + "1998": 0.343, + "1999": 0.347, + "2000": 0.345, + "2001": 0.352, + "2002": 0.359, + "2003": 0.367, + "2004": 0.374, + "2005": 0.382, + "2006": 0.392, + "2007": 0.4, + "2008": 0.411, + "2009": 0.424, + "2010": 0.436, + "2011": 0.44, + "2012": 0.444, + "2013": 0.45, + "2014": 0.455, + "2015": 0.457, + "2016": 0.46, + "2017": 0.47, + "2018": 0.478, + "2019": 0.489, + "2020": 0.489, + "2021": 0.486 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr107", + "Region": "Thyolo", + "1990": 0.283, + "1991": 0.289, + "1992": 0.297, + "1993": 0.305, + "1994": 0.305, + "1995": 0.343, + "1996": 0.344, + "1997": 0.346, + "1998": 0.347, + "1999": 0.352, + "2000": 0.351, + "2001": 0.358, + "2002": 0.365, + "2003": 0.372, + "2004": 0.379, + "2005": 0.389, + "2006": 0.401, + "2007": 0.411, + "2008": 0.425, + "2009": 0.44, + "2010": 0.455, + "2011": 0.462, + "2012": 0.468, + "2013": 0.476, + "2014": 0.484, + "2015": 0.488, + "2016": 0.493, + "2017": 0.495, + "2018": 0.494, + "2019": 0.496, + "2020": 0.487, + "2021": 0.484 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr108", + "Region": "Zomba", + "1990": 0.309, + "1991": 0.315, + "1992": 0.325, + "1993": 0.331, + "1994": 0.328, + "1995": 0.367, + "1996": 0.365, + "1997": 0.364, + "1998": 0.362, + "1999": 0.366, + "2000": 0.362, + "2001": 0.376, + "2002": 0.39, + "2003": 0.404, + "2004": 0.417, + "2005": 0.423, + "2006": 0.432, + "2007": 0.438, + "2008": 0.448, + "2009": 0.459, + "2010": 0.469, + "2011": 0.477, + "2012": 0.484, + "2013": 0.493, + "2014": 0.501, + "2015": 0.506, + "2016": 0.512, + "2017": 0.517, + "2018": 0.521, + "2019": 0.528, + "2020": 0.523, + "2021": 0.52 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "National", + "GDLCODE": "MYSt", + "Region": "Total", + "1990": 0.64, + "1991": 0.648, + "1992": 0.656, + "1993": 0.663, + "1994": 0.671, + "1995": 0.679, + "1996": 0.689, + "1997": 0.7, + "1998": 0.703, + "1999": 0.709, + "2000": 0.721, + "2001": 0.722, + "2002": 0.724, + "2003": 0.732, + "2004": 0.735, + "2005": 0.732, + "2006": 0.736, + "2007": 0.747, + "2008": 0.756, + "2009": 0.762, + "2010": 0.769, + "2011": 0.773, + "2012": 0.78, + "2013": 0.785, + "2014": 0.792, + "2015": 0.797, + "2016": 0.803, + "2017": 0.805, + "2018": 0.807, + "2019": 0.81, + "2020": 0.806, + "2021": 0.803 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr101", + "Region": "Johor", + "1990": 0.652, + "1991": 0.66, + "1992": 0.668, + "1993": 0.675, + "1994": 0.683, + "1995": 0.691, + "1996": 0.701, + "1997": 0.712, + "1998": 0.716, + "1999": 0.722, + "2000": 0.734, + "2001": 0.735, + "2002": 0.737, + "2003": 0.745, + "2004": 0.748, + "2005": 0.745, + "2006": 0.749, + "2007": 0.76, + "2008": 0.769, + "2009": 0.776, + "2010": 0.783, + "2011": 0.786, + "2012": 0.793, + "2013": 0.799, + "2014": 0.806, + "2015": 0.811, + "2016": 0.817, + "2017": 0.819, + "2018": 0.821, + "2019": 0.824, + "2020": 0.82, + "2021": 0.816 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr102", + "Region": "Kedah", + "1990": 0.638, + "1991": 0.646, + "1992": 0.654, + "1993": 0.661, + "1994": 0.669, + "1995": 0.677, + "1996": 0.687, + "1997": 0.697, + "1998": 0.701, + "1999": 0.706, + "2000": 0.718, + "2001": 0.72, + "2002": 0.722, + "2003": 0.729, + "2004": 0.733, + "2005": 0.73, + "2006": 0.734, + "2007": 0.744, + "2008": 0.753, + "2009": 0.759, + "2010": 0.767, + "2011": 0.77, + "2012": 0.777, + "2013": 0.782, + "2014": 0.789, + "2015": 0.794, + "2016": 0.8, + "2017": 0.802, + "2018": 0.804, + "2019": 0.807, + "2020": 0.803, + "2021": 0.799 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr103", + "Region": "Kelantan", + "1990": 0.614, + "1991": 0.622, + "1992": 0.63, + "1993": 0.637, + "1994": 0.644, + "1995": 0.651, + "1996": 0.661, + "1997": 0.672, + "1998": 0.675, + "1999": 0.68, + "2000": 0.691, + "2001": 0.693, + "2002": 0.696, + "2003": 0.703, + "2004": 0.707, + "2005": 0.704, + "2006": 0.707, + "2007": 0.717, + "2008": 0.725, + "2009": 0.731, + "2010": 0.738, + "2011": 0.741, + "2012": 0.748, + "2013": 0.754, + "2014": 0.76, + "2015": 0.765, + "2016": 0.771, + "2017": 0.773, + "2018": 0.775, + "2019": 0.777, + "2020": 0.773, + "2021": 0.77 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr114", + "Region": "Kuala Lumpur Federal Territory", + "1990": 0.684, + "1991": 0.693, + "1992": 0.701, + "1993": 0.709, + "1994": 0.718, + "1995": 0.726, + "1996": 0.736, + "1997": 0.748, + "1998": 0.752, + "1999": 0.758, + "2000": 0.77, + "2001": 0.772, + "2002": 0.774, + "2003": 0.781, + "2004": 0.784, + "2005": 0.782, + "2006": 0.786, + "2007": 0.798, + "2008": 0.808, + "2009": 0.815, + "2010": 0.823, + "2011": 0.826, + "2012": 0.833, + "2013": 0.84, + "2014": 0.846, + "2015": 0.852, + "2016": 0.858, + "2017": 0.861, + "2018": 0.863, + "2019": 0.866, + "2020": 0.862, + "2021": 0.858 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr115", + "Region": "Labuan Federal Territory", + "1990": 0.616, + "1991": 0.624, + "1992": 0.632, + "1993": 0.639, + "1994": 0.647, + "1995": 0.655, + "1996": 0.664, + "1997": 0.675, + "1998": 0.678, + "1999": 0.684, + "2000": 0.696, + "2001": 0.697, + "2002": 0.698, + "2003": 0.704, + "2004": 0.706, + "2005": 0.704, + "2006": 0.709, + "2007": 0.72, + "2008": 0.73, + "2009": 0.737, + "2010": 0.744, + "2011": 0.748, + "2012": 0.754, + "2013": 0.759, + "2014": 0.766, + "2015": 0.771, + "2016": 0.776, + "2017": 0.779, + "2018": 0.781, + "2019": 0.784, + "2020": 0.781, + "2021": 0.777 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr104", + "Region": "Melaka", + "1990": 0.66, + "1991": 0.668, + "1992": 0.676, + "1993": 0.684, + "1994": 0.692, + "1995": 0.699, + "1996": 0.71, + "1997": 0.721, + "1998": 0.725, + "1999": 0.73, + "2000": 0.742, + "2001": 0.744, + "2002": 0.746, + "2003": 0.754, + "2004": 0.757, + "2005": 0.754, + "2006": 0.758, + "2007": 0.769, + "2008": 0.778, + "2009": 0.785, + "2010": 0.792, + "2011": 0.796, + "2012": 0.802, + "2013": 0.808, + "2014": 0.815, + "2015": 0.82, + "2016": 0.826, + "2017": 0.829, + "2018": 0.831, + "2019": 0.833, + "2020": 0.83, + "2021": 0.826 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr105", + "Region": "Negeri Sembilan", + "1990": 0.654, + "1991": 0.663, + "1992": 0.671, + "1993": 0.678, + "1994": 0.687, + "1995": 0.694, + "1996": 0.704, + "1997": 0.715, + "1998": 0.719, + "1999": 0.725, + "2000": 0.737, + "2001": 0.739, + "2002": 0.741, + "2003": 0.748, + "2004": 0.751, + "2005": 0.748, + "2006": 0.752, + "2007": 0.763, + "2008": 0.772, + "2009": 0.779, + "2010": 0.787, + "2011": 0.79, + "2012": 0.797, + "2013": 0.803, + "2014": 0.809, + "2015": 0.815, + "2016": 0.821, + "2017": 0.823, + "2018": 0.825, + "2019": 0.828, + "2020": 0.824, + "2021": 0.82 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr106", + "Region": "Pahang", + "1990": 0.635, + "1991": 0.643, + "1992": 0.651, + "1993": 0.658, + "1994": 0.666, + "1995": 0.673, + "1996": 0.683, + "1997": 0.694, + "1998": 0.698, + "1999": 0.703, + "2000": 0.715, + "2001": 0.717, + "2002": 0.719, + "2003": 0.726, + "2004": 0.729, + "2005": 0.726, + "2006": 0.73, + "2007": 0.74, + "2008": 0.749, + "2009": 0.756, + "2010": 0.763, + "2011": 0.767, + "2012": 0.773, + "2013": 0.779, + "2014": 0.785, + "2015": 0.791, + "2016": 0.796, + "2017": 0.798, + "2018": 0.801, + "2019": 0.803, + "2020": 0.8, + "2021": 0.796 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr108", + "Region": "Perak", + "1990": 0.645, + "1991": 0.653, + "1992": 0.661, + "1993": 0.668, + "1994": 0.676, + "1995": 0.684, + "1996": 0.694, + "1997": 0.705, + "1998": 0.709, + "1999": 0.714, + "2000": 0.726, + "2001": 0.728, + "2002": 0.73, + "2003": 0.737, + "2004": 0.74, + "2005": 0.738, + "2006": 0.741, + "2007": 0.752, + "2008": 0.76, + "2009": 0.767, + "2010": 0.774, + "2011": 0.778, + "2012": 0.784, + "2013": 0.79, + "2014": 0.797, + "2015": 0.802, + "2016": 0.808, + "2017": 0.81, + "2018": 0.812, + "2019": 0.815, + "2020": 0.811, + "2021": 0.807 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr109", + "Region": "Perlis", + "1990": 0.636, + "1991": 0.644, + "1992": 0.652, + "1993": 0.659, + "1994": 0.667, + "1995": 0.674, + "1996": 0.684, + "1997": 0.695, + "1998": 0.699, + "1999": 0.704, + "2000": 0.716, + "2001": 0.718, + "2002": 0.72, + "2003": 0.727, + "2004": 0.73, + "2005": 0.728, + "2006": 0.731, + "2007": 0.742, + "2008": 0.75, + "2009": 0.757, + "2010": 0.764, + "2011": 0.767, + "2012": 0.774, + "2013": 0.78, + "2014": 0.786, + "2015": 0.792, + "2016": 0.797, + "2017": 0.799, + "2018": 0.801, + "2019": 0.804, + "2020": 0.8, + "2021": 0.797 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr107", + "Region": "Pulau Pinang", + "1990": 0.667, + "1991": 0.676, + "1992": 0.684, + "1993": 0.692, + "1994": 0.7, + "1995": 0.708, + "1996": 0.718, + "1997": 0.729, + "1998": 0.733, + "1999": 0.739, + "2000": 0.751, + "2001": 0.753, + "2002": 0.755, + "2003": 0.762, + "2004": 0.765, + "2005": 0.763, + "2006": 0.767, + "2007": 0.778, + "2008": 0.787, + "2009": 0.794, + "2010": 0.802, + "2011": 0.805, + "2012": 0.812, + "2013": 0.818, + "2014": 0.825, + "2015": 0.83, + "2016": 0.837, + "2017": 0.839, + "2018": 0.841, + "2019": 0.844, + "2020": 0.84, + "2021": 0.836 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr112", + "Region": "Sabah", + "1990": 0.557, + "1991": 0.564, + "1992": 0.571, + "1993": 0.578, + "1994": 0.585, + "1995": 0.592, + "1996": 0.601, + "1997": 0.611, + "1998": 0.613, + "1999": 0.618, + "2000": 0.629, + "2001": 0.63, + "2002": 0.632, + "2003": 0.639, + "2004": 0.641, + "2005": 0.639, + "2006": 0.643, + "2007": 0.652, + "2008": 0.66, + "2009": 0.666, + "2010": 0.672, + "2011": 0.676, + "2012": 0.681, + "2013": 0.687, + "2014": 0.692, + "2015": 0.697, + "2016": 0.702, + "2017": 0.704, + "2018": 0.706, + "2019": 0.709, + "2020": 0.705, + "2021": 0.702 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr113", + "Region": "Sarawak", + "1990": 0.587, + "1991": 0.595, + "1992": 0.602, + "1993": 0.609, + "1994": 0.616, + "1995": 0.623, + "1996": 0.632, + "1997": 0.642, + "1998": 0.646, + "1999": 0.65, + "2000": 0.661, + "2001": 0.663, + "2002": 0.665, + "2003": 0.673, + "2004": 0.676, + "2005": 0.674, + "2006": 0.676, + "2007": 0.686, + "2008": 0.694, + "2009": 0.699, + "2010": 0.706, + "2011": 0.709, + "2012": 0.715, + "2013": 0.721, + "2014": 0.727, + "2015": 0.732, + "2016": 0.738, + "2017": 0.739, + "2018": 0.741, + "2019": 0.744, + "2020": 0.74, + "2021": 0.737 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr110", + "Region": "Selangor", + "1990": 0.681, + "1991": 0.689, + "1992": 0.698, + "1993": 0.706, + "1994": 0.714, + "1995": 0.722, + "1996": 0.733, + "1997": 0.744, + "1998": 0.748, + "1999": 0.754, + "2000": 0.767, + "2001": 0.768, + "2002": 0.77, + "2003": 0.777, + "2004": 0.78, + "2005": 0.778, + "2006": 0.782, + "2007": 0.794, + "2008": 0.804, + "2009": 0.811, + "2010": 0.819, + "2011": 0.823, + "2012": 0.829, + "2013": 0.836, + "2014": 0.842, + "2015": 0.848, + "2016": 0.854, + "2017": 0.856, + "2018": 0.859, + "2019": 0.862, + "2020": 0.858, + "2021": 0.854 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr111", + "Region": "Terengganu", + "1990": 0.631, + "1991": 0.639, + "1992": 0.647, + "1993": 0.654, + "1994": 0.662, + "1995": 0.669, + "1996": 0.679, + "1997": 0.69, + "1998": 0.693, + "1999": 0.699, + "2000": 0.71, + "2001": 0.712, + "2002": 0.714, + "2003": 0.721, + "2004": 0.725, + "2005": 0.722, + "2006": 0.726, + "2007": 0.736, + "2008": 0.745, + "2009": 0.751, + "2010": 0.758, + "2011": 0.762, + "2012": 0.768, + "2013": 0.774, + "2014": 0.78, + "2015": 0.786, + "2016": 0.792, + "2017": 0.794, + "2018": 0.796, + "2019": 0.798, + "2020": 0.795, + "2021": 0.791 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "National", + "GDLCODE": "MDVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.582, + "1996": 0.593, + "1997": 0.6, + "1998": 0.606, + "1999": 0.619, + "2000": 0.628, + "2001": 0.633, + "2002": 0.636, + "2003": 0.65, + "2004": 0.65, + "2005": 0.649, + "2006": 0.664, + "2007": 0.665, + "2008": 0.677, + "2009": 0.68, + "2010": 0.688, + "2011": 0.7, + "2012": 0.709, + "2013": 0.718, + "2014": 0.728, + "2015": 0.736, + "2016": 0.741, + "2017": 0.746, + "2018": 0.75, + "2019": 0.755, + "2020": 0.734, + "2021": 0.747 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr104", + "Region": "Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.555, + "1996": 0.567, + "1997": 0.574, + "1998": 0.58, + "1999": 0.593, + "2000": 0.603, + "2001": 0.607, + "2002": 0.611, + "2003": 0.624, + "2004": 0.624, + "2005": 0.623, + "2006": 0.637, + "2007": 0.637, + "2008": 0.648, + "2009": 0.65, + "2010": 0.656, + "2011": 0.666, + "2012": 0.673, + "2013": 0.681, + "2014": 0.689, + "2015": 0.696, + "2016": 0.699, + "2017": 0.703, + "2018": 0.707, + "2019": 0.711, + "2020": 0.691, + "2021": 0.704 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr101", + "Region": "Male", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.631, + "1996": 0.642, + "1997": 0.649, + "1998": 0.653, + "1999": 0.665, + "2000": 0.674, + "2001": 0.679, + "2002": 0.683, + "2003": 0.696, + "2004": 0.696, + "2005": 0.696, + "2006": 0.713, + "2007": 0.716, + "2008": 0.73, + "2009": 0.735, + "2010": 0.74, + "2011": 0.751, + "2012": 0.758, + "2013": 0.765, + "2014": 0.774, + "2015": 0.78, + "2016": 0.781, + "2017": 0.783, + "2018": 0.788, + "2019": 0.793, + "2020": 0.771, + "2021": 0.785 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr102", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.556, + "1996": 0.568, + "1997": 0.575, + "1998": 0.581, + "1999": 0.595, + "2000": 0.605, + "2001": 0.61, + "2002": 0.613, + "2003": 0.626, + "2004": 0.626, + "2005": 0.625, + "2006": 0.639, + "2007": 0.638, + "2008": 0.649, + "2009": 0.651, + "2010": 0.658, + "2011": 0.669, + "2012": 0.678, + "2013": 0.686, + "2014": 0.696, + "2015": 0.703, + "2016": 0.708, + "2017": 0.713, + "2018": 0.717, + "2019": 0.721, + "2020": 0.701, + "2021": 0.714 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr103", + "Region": "North Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.555, + "1996": 0.567, + "1997": 0.575, + "1998": 0.581, + "1999": 0.595, + "2000": 0.605, + "2001": 0.609, + "2002": 0.612, + "2003": 0.626, + "2004": 0.626, + "2005": 0.625, + "2006": 0.638, + "2007": 0.638, + "2008": 0.649, + "2009": 0.65, + "2010": 0.657, + "2011": 0.668, + "2012": 0.676, + "2013": 0.684, + "2014": 0.693, + "2015": 0.701, + "2016": 0.706, + "2017": 0.71, + "2018": 0.714, + "2019": 0.719, + "2020": 0.698, + "2021": 0.711 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr106", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.566, + "1996": 0.577, + "1997": 0.585, + "1998": 0.59, + "1999": 0.604, + "2000": 0.614, + "2001": 0.618, + "2002": 0.621, + "2003": 0.635, + "2004": 0.635, + "2005": 0.634, + "2006": 0.648, + "2007": 0.648, + "2008": 0.66, + "2009": 0.662, + "2010": 0.668, + "2011": 0.678, + "2012": 0.686, + "2013": 0.694, + "2014": 0.703, + "2015": 0.709, + "2016": 0.713, + "2017": 0.717, + "2018": 0.721, + "2019": 0.725, + "2020": 0.705, + "2021": 0.718 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr105", + "Region": "South Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.547, + "1996": 0.558, + "1997": 0.566, + "1998": 0.572, + "1999": 0.585, + "2000": 0.595, + "2001": 0.6, + "2002": 0.603, + "2003": 0.616, + "2004": 0.616, + "2005": 0.615, + "2006": 0.628, + "2007": 0.628, + "2008": 0.639, + "2009": 0.641, + "2010": 0.65, + "2011": 0.663, + "2012": 0.673, + "2013": 0.683, + "2014": 0.695, + "2015": 0.705, + "2016": 0.712, + "2017": 0.718, + "2018": 0.722, + "2019": 0.727, + "2020": 0.706, + "2021": 0.72 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "National", + "GDLCODE": "MLIt", + "Region": "Total", + "1990": 0.237, + "1991": 0.245, + "1992": 0.249, + "1993": 0.257, + "1994": 0.264, + "1995": 0.27, + "1996": 0.277, + "1997": 0.289, + "1998": 0.299, + "1999": 0.311, + "2000": 0.317, + "2001": 0.329, + "2002": 0.338, + "2003": 0.35, + "2004": 0.357, + "2005": 0.366, + "2006": 0.375, + "2007": 0.382, + "2008": 0.39, + "2009": 0.397, + "2010": 0.404, + "2011": 0.409, + "2012": 0.407, + "2013": 0.407, + "2014": 0.415, + "2015": 0.416, + "2016": 0.421, + "2017": 0.426, + "2018": 0.43, + "2019": 0.433, + "2020": 0.427, + "2021": 0.428 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr108", + "Region": "Bamako", + "1990": 0.376, + "1991": 0.388, + "1992": 0.394, + "1993": 0.406, + "1994": 0.416, + "1995": 0.425, + "1996": 0.439, + "1997": 0.458, + "1998": 0.476, + "1999": 0.496, + "2000": 0.509, + "2001": 0.529, + "2002": 0.539, + "2003": 0.553, + "2004": 0.561, + "2005": 0.57, + "2006": 0.58, + "2007": 0.584, + "2008": 0.588, + "2009": 0.592, + "2010": 0.595, + "2011": 0.596, + "2012": 0.589, + "2013": 0.583, + "2014": 0.591, + "2015": 0.592, + "2016": 0.598, + "2017": 0.604, + "2018": 0.608, + "2019": 0.613, + "2020": 0.605, + "2021": 0.606 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr107", + "Region": "Gao and Kidal", + "1990": 0.298, + "1991": 0.307, + "1992": 0.313, + "1993": 0.322, + "1994": 0.331, + "1995": 0.338, + "1996": 0.338, + "1997": 0.342, + "1998": 0.344, + "1999": 0.348, + "2000": 0.345, + "2001": 0.349, + "2002": 0.361, + "2003": 0.377, + "2004": 0.387, + "2005": 0.399, + "2006": 0.411, + "2007": 0.409, + "2008": 0.408, + "2009": 0.406, + "2010": 0.404, + "2011": 0.4, + "2012": 0.389, + "2013": 0.38, + "2014": 0.385, + "2015": 0.385, + "2016": 0.388, + "2017": 0.39, + "2018": 0.391, + "2019": 0.394, + "2020": 0.388, + "2021": 0.389 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr101", + "Region": "Kayes", + "1990": 0.222, + "1991": 0.23, + "1992": 0.234, + "1993": 0.241, + "1994": 0.247, + "1995": 0.253, + "1996": 0.256, + "1997": 0.264, + "1998": 0.27, + "1999": 0.278, + "2000": 0.28, + "2001": 0.288, + "2002": 0.298, + "2003": 0.31, + "2004": 0.318, + "2005": 0.328, + "2006": 0.338, + "2007": 0.345, + "2008": 0.352, + "2009": 0.36, + "2010": 0.366, + "2011": 0.371, + "2012": 0.37, + "2013": 0.369, + "2014": 0.378, + "2015": 0.381, + "2016": 0.386, + "2017": 0.392, + "2018": 0.395, + "2019": 0.398, + "2020": 0.392, + "2021": 0.393 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr102", + "Region": "Koulikoro", + "1990": 0.229, + "1991": 0.236, + "1992": 0.24, + "1993": 0.248, + "1994": 0.255, + "1995": 0.26, + "1996": 0.267, + "1997": 0.278, + "1998": 0.288, + "1999": 0.299, + "2000": 0.304, + "2001": 0.315, + "2002": 0.323, + "2003": 0.334, + "2004": 0.34, + "2005": 0.348, + "2006": 0.355, + "2007": 0.367, + "2008": 0.38, + "2009": 0.392, + "2010": 0.403, + "2011": 0.412, + "2012": 0.414, + "2013": 0.417, + "2014": 0.424, + "2015": 0.424, + "2016": 0.428, + "2017": 0.431, + "2018": 0.433, + "2019": 0.437, + "2020": 0.43, + "2021": 0.432 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr105", + "Region": "Mopti", + "1990": 0.183, + "1991": 0.19, + "1992": 0.193, + "1993": 0.199, + "1994": 0.204, + "1995": 0.209, + "1996": 0.215, + "1997": 0.225, + "1998": 0.234, + "1999": 0.243, + "2000": 0.249, + "2001": 0.258, + "2002": 0.269, + "2003": 0.283, + "2004": 0.292, + "2005": 0.303, + "2006": 0.313, + "2007": 0.316, + "2008": 0.32, + "2009": 0.324, + "2010": 0.327, + "2011": 0.328, + "2012": 0.324, + "2013": 0.321, + "2014": 0.331, + "2015": 0.335, + "2016": 0.342, + "2017": 0.349, + "2018": 0.354, + "2019": 0.356, + "2020": 0.351, + "2021": 0.352 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr104", + "Region": "Segou", + "1990": 0.22, + "1991": 0.227, + "1992": 0.231, + "1993": 0.238, + "1994": 0.245, + "1995": 0.25, + "1996": 0.253, + "1997": 0.26, + "1998": 0.265, + "1999": 0.272, + "2000": 0.274, + "2001": 0.281, + "2002": 0.297, + "2003": 0.316, + "2004": 0.33, + "2005": 0.344, + "2006": 0.359, + "2007": 0.363, + "2008": 0.368, + "2009": 0.372, + "2010": 0.376, + "2011": 0.378, + "2012": 0.373, + "2013": 0.37, + "2014": 0.375, + "2015": 0.375, + "2016": 0.378, + "2017": 0.38, + "2018": 0.382, + "2019": 0.384, + "2020": 0.379, + "2021": 0.38 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr103", + "Region": "Sikasso", + "1990": 0.207, + "1991": 0.214, + "1992": 0.218, + "1993": 0.225, + "1994": 0.231, + "1995": 0.236, + "1996": 0.245, + "1997": 0.257, + "1998": 0.268, + "1999": 0.281, + "2000": 0.288, + "2001": 0.3, + "2002": 0.309, + "2003": 0.321, + "2004": 0.329, + "2005": 0.338, + "2006": 0.347, + "2007": 0.356, + "2008": 0.366, + "2009": 0.376, + "2010": 0.385, + "2011": 0.392, + "2012": 0.391, + "2013": 0.393, + "2014": 0.399, + "2015": 0.4, + "2016": 0.403, + "2017": 0.407, + "2018": 0.409, + "2019": 0.411, + "2020": 0.406, + "2021": 0.407 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr106", + "Region": "Tombouctou", + "1990": 0.271, + "1991": 0.28, + "1992": 0.285, + "1993": 0.294, + "1994": 0.302, + "1995": 0.309, + "1996": 0.304, + "1997": 0.303, + "1998": 0.3, + "1999": 0.298, + "2000": 0.289, + "2001": 0.285, + "2002": 0.295, + "2003": 0.308, + "2004": 0.317, + "2005": 0.327, + "2006": 0.337, + "2007": 0.336, + "2008": 0.336, + "2009": 0.336, + "2010": 0.335, + "2011": 0.333, + "2012": 0.324, + "2013": 0.318, + "2014": 0.324, + "2015": 0.324, + "2016": 0.328, + "2017": 0.331, + "2018": 0.333, + "2019": 0.335, + "2020": 0.33, + "2021": 0.331 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "National", + "GDLCODE": "MRTt", + "Region": "Total", + "1990": 0.397, + "1991": 0.402, + "1992": 0.411, + "1993": 0.423, + "1994": 0.435, + "1995": 0.441, + "1996": 0.449, + "1997": 0.45, + "1998": 0.459, + "1999": 0.465, + "2000": 0.465, + "2001": 0.466, + "2002": 0.47, + "2003": 0.475, + "2004": 0.486, + "2005": 0.49, + "2006": 0.5, + "2007": 0.499, + "2008": 0.499, + "2009": 0.508, + "2010": 0.51, + "2011": 0.515, + "2012": 0.523, + "2013": 0.531, + "2014": 0.537, + "2015": 0.544, + "2016": 0.541, + "2017": 0.545, + "2018": 0.556, + "2019": 0.563, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr107", + "Region": "Adrar", + "1990": 0.377, + "1991": 0.382, + "1992": 0.391, + "1993": 0.403, + "1994": 0.414, + "1995": 0.421, + "1996": 0.428, + "1997": 0.429, + "1998": 0.438, + "1999": 0.443, + "2000": 0.444, + "2001": 0.444, + "2002": 0.455, + "2003": 0.467, + "2004": 0.484, + "2005": 0.495, + "2006": 0.512, + "2007": 0.517, + "2008": 0.519, + "2009": 0.531, + "2010": 0.536, + "2011": 0.543, + "2012": 0.55, + "2013": 0.557, + "2014": 0.561, + "2015": 0.566, + "2016": 0.563, + "2017": 0.567, + "2018": 0.577, + "2019": 0.585, + "2020": 0.577, + "2021": 0.577 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr103", + "Region": "Assaba", + "1990": 0.374, + "1991": 0.378, + "1992": 0.387, + "1993": 0.4, + "1994": 0.411, + "1995": 0.418, + "1996": 0.425, + "1997": 0.426, + "1998": 0.435, + "1999": 0.44, + "2000": 0.44, + "2001": 0.441, + "2002": 0.442, + "2003": 0.444, + "2004": 0.451, + "2005": 0.451, + "2006": 0.457, + "2007": 0.453, + "2008": 0.454, + "2009": 0.464, + "2010": 0.469, + "2011": 0.474, + "2012": 0.473, + "2013": 0.471, + "2014": 0.466, + "2015": 0.463, + "2016": 0.463, + "2017": 0.47, + "2018": 0.483, + "2019": 0.492, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr105", + "Region": "Brakna", + "1990": 0.361, + "1991": 0.366, + "1992": 0.374, + "1993": 0.386, + "1994": 0.397, + "1995": 0.403, + "1996": 0.411, + "1997": 0.411, + "1998": 0.42, + "1999": 0.425, + "2000": 0.425, + "2001": 0.426, + "2002": 0.432, + "2003": 0.439, + "2004": 0.45, + "2005": 0.456, + "2006": 0.466, + "2007": 0.466, + "2008": 0.47, + "2009": 0.483, + "2010": 0.49, + "2011": 0.498, + "2012": 0.498, + "2013": 0.497, + "2014": 0.493, + "2015": 0.49, + "2016": 0.492, + "2017": 0.502, + "2018": 0.518, + "2019": 0.532, + "2020": 0.532, + "2021": 0.531 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr104", + "Region": "Gorgol", + "1990": 0.33, + "1991": 0.333, + "1992": 0.341, + "1993": 0.352, + "1994": 0.362, + "1995": 0.368, + "1996": 0.375, + "1997": 0.375, + "1998": 0.383, + "1999": 0.388, + "2000": 0.388, + "2001": 0.389, + "2002": 0.389, + "2003": 0.39, + "2004": 0.396, + "2005": 0.396, + "2006": 0.401, + "2007": 0.397, + "2008": 0.404, + "2009": 0.419, + "2010": 0.428, + "2011": 0.438, + "2012": 0.445, + "2013": 0.452, + "2014": 0.458, + "2015": 0.465, + "2016": 0.462, + "2017": 0.466, + "2018": 0.475, + "2019": 0.481, + "2020": 0.474, + "2021": 0.474 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr110", + "Region": "Guidimagha", + "1990": 0.286, + "1991": 0.29, + "1992": 0.297, + "1993": 0.307, + "1994": 0.316, + "1995": 0.321, + "1996": 0.327, + "1997": 0.328, + "1998": 0.335, + "1999": 0.339, + "2000": 0.339, + "2001": 0.34, + "2002": 0.35, + "2003": 0.36, + "2004": 0.375, + "2005": 0.383, + "2006": 0.396, + "2007": 0.4, + "2008": 0.404, + "2009": 0.416, + "2010": 0.423, + "2011": 0.43, + "2012": 0.434, + "2013": 0.436, + "2014": 0.436, + "2015": 0.435, + "2016": 0.433, + "2017": 0.438, + "2018": 0.449, + "2019": 0.457, + "2020": 0.452, + "2021": 0.452 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr101", + "Region": "Hodh Charghi", + "1990": 0.353, + "1991": 0.357, + "1992": 0.366, + "1993": 0.377, + "1994": 0.387, + "1995": 0.393, + "1996": 0.4, + "1997": 0.401, + "1998": 0.409, + "1999": 0.414, + "2000": 0.414, + "2001": 0.415, + "2002": 0.413, + "2003": 0.412, + "2004": 0.416, + "2005": 0.415, + "2006": 0.418, + "2007": 0.411, + "2008": 0.419, + "2009": 0.434, + "2010": 0.443, + "2011": 0.454, + "2012": 0.459, + "2013": 0.462, + "2014": 0.462, + "2015": 0.463, + "2016": 0.451, + "2017": 0.445, + "2018": 0.443, + "2019": 0.436, + "2020": 0.417, + "2021": 0.416 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr102", + "Region": "Hodh Gharbi", + "1990": 0.378, + "1991": 0.382, + "1992": 0.391, + "1993": 0.404, + "1994": 0.415, + "1995": 0.422, + "1996": 0.429, + "1997": 0.43, + "1998": 0.439, + "1999": 0.444, + "2000": 0.445, + "2001": 0.445, + "2002": 0.441, + "2003": 0.438, + "2004": 0.441, + "2005": 0.437, + "2006": 0.438, + "2007": 0.429, + "2008": 0.432, + "2009": 0.444, + "2010": 0.45, + "2011": 0.457, + "2012": 0.462, + "2013": 0.466, + "2014": 0.469, + "2015": 0.473, + "2016": 0.468, + "2017": 0.469, + "2018": 0.475, + "2019": 0.477, + "2020": 0.465, + "2021": 0.464 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr112", + "Region": "Inchiri", + "1990": 0.445, + "1991": 0.45, + "1992": 0.461, + "1993": 0.475, + "1994": 0.489, + "1995": 0.496, + "1996": 0.504, + "1997": 0.506, + "1998": 0.516, + "1999": 0.522, + "2000": 0.523, + "2001": 0.524, + "2002": 0.525, + "2003": 0.526, + "2004": 0.534, + "2005": 0.534, + "2006": 0.54, + "2007": 0.536, + "2008": 0.535, + "2009": 0.545, + "2010": 0.548, + "2011": 0.553, + "2012": 0.557, + "2013": 0.562, + "2014": 0.564, + "2015": 0.569, + "2016": 0.574, + "2017": 0.587, + "2018": 0.605, + "2019": 0.621, + "2020": 0.621, + "2021": 0.621 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr108", + "Region": "Nouadhibou", + "1990": 0.471, + "1991": 0.476, + "1992": 0.487, + "1993": 0.5, + "1994": 0.513, + "1995": 0.52, + "1996": 0.529, + "1997": 0.531, + "1998": 0.54, + "1999": 0.547, + "2000": 0.548, + "2001": 0.55, + "2002": 0.557, + "2003": 0.565, + "2004": 0.579, + "2005": 0.586, + "2006": 0.599, + "2007": 0.601, + "2008": 0.602, + "2009": 0.613, + "2010": 0.617, + "2011": 0.623, + "2012": 0.629, + "2013": 0.636, + "2014": 0.64, + "2015": 0.646, + "2016": 0.65, + "2017": 0.661, + "2018": 0.679, + "2019": 0.694, + "2020": 0.693, + "2021": 0.692 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr109", + "Region": "Tagant", + "1990": 0.378, + "1991": 0.382, + "1992": 0.391, + "1993": 0.403, + "1994": 0.415, + "1995": 0.421, + "1996": 0.429, + "1997": 0.429, + "1998": 0.438, + "1999": 0.444, + "2000": 0.444, + "2001": 0.444, + "2002": 0.451, + "2003": 0.458, + "2004": 0.471, + "2005": 0.477, + "2006": 0.488, + "2007": 0.488, + "2008": 0.49, + "2009": 0.502, + "2010": 0.507, + "2011": 0.513, + "2012": 0.515, + "2013": 0.517, + "2014": 0.516, + "2015": 0.517, + "2016": 0.513, + "2017": 0.516, + "2018": 0.524, + "2019": 0.53, + "2020": 0.521, + "2021": 0.521 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr111", + "Region": "Tiris-Zemmour", + "1990": 0.445, + "1991": 0.451, + "1992": 0.461, + "1993": 0.475, + "1994": 0.488, + "1995": 0.495, + "1996": 0.503, + "1997": 0.505, + "1998": 0.514, + "1999": 0.521, + "2000": 0.522, + "2001": 0.523, + "2002": 0.528, + "2003": 0.535, + "2004": 0.547, + "2005": 0.552, + "2006": 0.564, + "2007": 0.564, + "2008": 0.563, + "2009": 0.571, + "2010": 0.572, + "2011": 0.575, + "2012": 0.588, + "2013": 0.602, + "2014": 0.614, + "2015": 0.627, + "2016": 0.639, + "2017": 0.658, + "2018": 0.684, + "2019": 0.708, + "2020": 0.714, + "2021": 0.713 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr106", + "Region": "Trarza incl Nouakchott", + "1990": 0.454, + "1991": 0.46, + "1992": 0.47, + "1993": 0.484, + "1994": 0.496, + "1995": 0.503, + "1996": 0.512, + "1997": 0.514, + "1998": 0.523, + "1999": 0.53, + "2000": 0.531, + "2001": 0.532, + "2002": 0.539, + "2003": 0.546, + "2004": 0.56, + "2005": 0.566, + "2006": 0.579, + "2007": 0.58, + "2008": 0.573, + "2009": 0.577, + "2010": 0.574, + "2011": 0.572, + "2012": 0.581, + "2013": 0.589, + "2014": 0.595, + "2015": 0.603, + "2016": 0.61, + "2017": 0.625, + "2018": 0.646, + "2019": 0.664, + "2020": 0.666, + "2021": 0.666 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "National", + "GDLCODE": "MUSt", + "Region": "Total", + "1990": 0.626, + "1991": 0.633, + "1992": 0.639, + "1993": 0.643, + "1994": 0.646, + "1995": 0.651, + "1996": 0.654, + "1997": 0.66, + "1998": 0.667, + "1999": 0.674, + "2000": 0.681, + "2001": 0.69, + "2002": 0.694, + "2003": 0.703, + "2004": 0.71, + "2005": 0.719, + "2006": 0.726, + "2007": 0.734, + "2008": 0.741, + "2009": 0.749, + "2010": 0.755, + "2011": 0.762, + "2012": 0.775, + "2013": 0.782, + "2014": 0.793, + "2015": 0.795, + "2016": 0.801, + "2017": 0.805, + "2018": 0.811, + "2019": 0.817, + "2020": 0.804, + "2021": 0.802 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr101", + "Region": "North (Port Louis, Pamplemousses, Riviere du Rempart, Flacq, Moka)", + "1990": 0.622, + "1991": 0.629, + "1992": 0.634, + "1993": 0.638, + "1994": 0.641, + "1995": 0.646, + "1996": 0.649, + "1997": 0.655, + "1998": 0.662, + "1999": 0.669, + "2000": 0.676, + "2001": 0.685, + "2002": 0.689, + "2003": 0.698, + "2004": 0.705, + "2005": 0.714, + "2006": 0.721, + "2007": 0.729, + "2008": 0.736, + "2009": 0.743, + "2010": 0.75, + "2011": 0.757, + "2012": 0.769, + "2013": 0.777, + "2014": 0.787, + "2015": 0.79, + "2016": 0.795, + "2017": 0.799, + "2018": 0.805, + "2019": 0.811, + "2020": 0.798, + "2021": 0.796 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr103", + "Region": "Rodrigues", + "1990": 0.56, + "1991": 0.567, + "1992": 0.572, + "1993": 0.575, + "1994": 0.578, + "1995": 0.583, + "1996": 0.586, + "1997": 0.591, + "1998": 0.597, + "1999": 0.604, + "2000": 0.61, + "2001": 0.618, + "2002": 0.622, + "2003": 0.63, + "2004": 0.637, + "2005": 0.644, + "2006": 0.651, + "2007": 0.658, + "2008": 0.664, + "2009": 0.671, + "2010": 0.677, + "2011": 0.684, + "2012": 0.695, + "2013": 0.702, + "2014": 0.711, + "2015": 0.714, + "2016": 0.718, + "2017": 0.722, + "2018": 0.728, + "2019": 0.734, + "2020": 0.722, + "2021": 0.72 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr102", + "Region": "South (Grand Port, Savanne, Plaines Wilhems, Black River)", + "1990": 0.634, + "1991": 0.641, + "1992": 0.647, + "1993": 0.65, + "1994": 0.654, + "1995": 0.659, + "1996": 0.662, + "1997": 0.668, + "1998": 0.675, + "1999": 0.682, + "2000": 0.689, + "2001": 0.698, + "2002": 0.702, + "2003": 0.711, + "2004": 0.719, + "2005": 0.727, + "2006": 0.735, + "2007": 0.743, + "2008": 0.75, + "2009": 0.757, + "2010": 0.764, + "2011": 0.771, + "2012": 0.784, + "2013": 0.792, + "2014": 0.802, + "2015": 0.805, + "2016": 0.81, + "2017": 0.814, + "2018": 0.821, + "2019": 0.827, + "2020": 0.814, + "2021": 0.812 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "National", + "GDLCODE": "MEXt", + "Region": "Total", + "1990": 0.662, + "1991": 0.664, + "1992": 0.667, + "1993": 0.669, + "1994": 0.674, + "1995": 0.674, + "1996": 0.681, + "1997": 0.688, + "1998": 0.696, + "1999": 0.702, + "2000": 0.709, + "2001": 0.712, + "2002": 0.719, + "2003": 0.725, + "2004": 0.73, + "2005": 0.733, + "2006": 0.741, + "2007": 0.743, + "2008": 0.745, + "2009": 0.745, + "2010": 0.746, + "2011": 0.752, + "2012": 0.76, + "2013": 0.76, + "2014": 0.764, + "2015": 0.768, + "2016": 0.772, + "2017": 0.775, + "2018": 0.777, + "2019": 0.779, + "2020": 0.756, + "2021": 0.758 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr101", + "Region": "Aguascalientes", + "1990": 0.677, + "1991": 0.679, + "1992": 0.682, + "1993": 0.684, + "1994": 0.69, + "1995": 0.69, + "1996": 0.697, + "1997": 0.704, + "1998": 0.712, + "1999": 0.718, + "2000": 0.725, + "2001": 0.73, + "2002": 0.738, + "2003": 0.745, + "2004": 0.751, + "2005": 0.756, + "2006": 0.765, + "2007": 0.768, + "2008": 0.771, + "2009": 0.772, + "2010": 0.775, + "2011": 0.779, + "2012": 0.786, + "2013": 0.785, + "2014": 0.788, + "2015": 0.791, + "2016": 0.789, + "2017": 0.792, + "2018": 0.795, + "2019": 0.797, + "2020": 0.773, + "2021": 0.775 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr102", + "Region": "Baja California", + "1990": 0.697, + "1991": 0.699, + "1992": 0.702, + "1993": 0.705, + "1994": 0.71, + "1995": 0.71, + "1996": 0.717, + "1997": 0.724, + "1998": 0.733, + "1999": 0.739, + "2000": 0.746, + "2001": 0.75, + "2002": 0.757, + "2003": 0.764, + "2004": 0.769, + "2005": 0.773, + "2006": 0.782, + "2007": 0.783, + "2008": 0.786, + "2009": 0.786, + "2010": 0.788, + "2011": 0.792, + "2012": 0.799, + "2013": 0.798, + "2014": 0.801, + "2015": 0.804, + "2016": 0.802, + "2017": 0.805, + "2018": 0.808, + "2019": 0.81, + "2020": 0.786, + "2021": 0.788 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr103", + "Region": "Baja California Sur", + "1990": 0.694, + "1991": 0.696, + "1992": 0.699, + "1993": 0.701, + "1994": 0.707, + "1995": 0.707, + "1996": 0.714, + "1997": 0.721, + "1998": 0.73, + "1999": 0.736, + "2000": 0.743, + "2001": 0.746, + "2002": 0.752, + "2003": 0.758, + "2004": 0.762, + "2005": 0.765, + "2006": 0.773, + "2007": 0.774, + "2008": 0.775, + "2009": 0.774, + "2010": 0.775, + "2011": 0.781, + "2012": 0.79, + "2013": 0.79, + "2014": 0.794, + "2015": 0.799, + "2016": 0.797, + "2017": 0.8, + "2018": 0.803, + "2019": 0.805, + "2020": 0.781, + "2021": 0.783 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr104", + "Region": "Campeche", + "1990": 0.671, + "1991": 0.672, + "1992": 0.675, + "1993": 0.677, + "1994": 0.682, + "1995": 0.682, + "1996": 0.689, + "1997": 0.697, + "1998": 0.705, + "1999": 0.711, + "2000": 0.718, + "2001": 0.721, + "2002": 0.728, + "2003": 0.734, + "2004": 0.738, + "2005": 0.741, + "2006": 0.749, + "2007": 0.75, + "2008": 0.752, + "2009": 0.751, + "2010": 0.753, + "2011": 0.756, + "2012": 0.762, + "2013": 0.761, + "2014": 0.762, + "2015": 0.765, + "2016": 0.762, + "2017": 0.765, + "2018": 0.768, + "2019": 0.77, + "2020": 0.747, + "2021": 0.749 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr107", + "Region": "Chiapas", + "1990": 0.595, + "1991": 0.596, + "1992": 0.598, + "1993": 0.6, + "1994": 0.605, + "1995": 0.605, + "1996": 0.611, + "1997": 0.617, + "1998": 0.625, + "1999": 0.63, + "2000": 0.637, + "2001": 0.639, + "2002": 0.644, + "2003": 0.648, + "2004": 0.651, + "2005": 0.653, + "2006": 0.659, + "2007": 0.659, + "2008": 0.66, + "2009": 0.657, + "2010": 0.658, + "2011": 0.666, + "2012": 0.675, + "2013": 0.679, + "2014": 0.685, + "2015": 0.692, + "2016": 0.69, + "2017": 0.692, + "2018": 0.695, + "2019": 0.696, + "2020": 0.675, + "2021": 0.677 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr108", + "Region": "Chihuahua", + "1990": 0.658, + "1991": 0.659, + "1992": 0.662, + "1993": 0.664, + "1994": 0.669, + "1995": 0.67, + "1996": 0.676, + "1997": 0.683, + "1998": 0.691, + "1999": 0.697, + "2000": 0.704, + "2001": 0.711, + "2002": 0.72, + "2003": 0.73, + "2004": 0.737, + "2005": 0.744, + "2006": 0.755, + "2007": 0.759, + "2008": 0.764, + "2009": 0.767, + "2010": 0.772, + "2011": 0.774, + "2012": 0.779, + "2013": 0.777, + "2014": 0.777, + "2015": 0.779, + "2016": 0.777, + "2017": 0.78, + "2018": 0.782, + "2019": 0.784, + "2020": 0.761, + "2021": 0.763 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr105", + "Region": "Coahuila", + "1990": 0.694, + "1991": 0.696, + "1992": 0.699, + "1993": 0.701, + "1994": 0.706, + "1995": 0.706, + "1996": 0.713, + "1997": 0.721, + "1998": 0.729, + "1999": 0.735, + "2000": 0.743, + "2001": 0.745, + "2002": 0.751, + "2003": 0.757, + "2004": 0.761, + "2005": 0.764, + "2006": 0.771, + "2007": 0.772, + "2008": 0.773, + "2009": 0.772, + "2010": 0.773, + "2011": 0.778, + "2012": 0.786, + "2013": 0.785, + "2014": 0.788, + "2015": 0.793, + "2016": 0.79, + "2017": 0.793, + "2018": 0.796, + "2019": 0.798, + "2020": 0.774, + "2021": 0.777 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr106", + "Region": "Colima", + "1990": 0.658, + "1991": 0.66, + "1992": 0.663, + "1993": 0.665, + "1994": 0.67, + "1995": 0.67, + "1996": 0.677, + "1997": 0.684, + "1998": 0.692, + "1999": 0.698, + "2000": 0.705, + "2001": 0.711, + "2002": 0.721, + "2003": 0.73, + "2004": 0.738, + "2005": 0.744, + "2006": 0.755, + "2007": 0.759, + "2008": 0.764, + "2009": 0.767, + "2010": 0.772, + "2011": 0.775, + "2012": 0.781, + "2013": 0.779, + "2014": 0.781, + "2015": 0.783, + "2016": 0.781, + "2017": 0.784, + "2018": 0.787, + "2019": 0.788, + "2020": 0.765, + "2021": 0.767 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr109", + "Region": "Distrito Federal", + "1990": 0.731, + "1991": 0.733, + "1992": 0.736, + "1993": 0.739, + "1994": 0.744, + "1995": 0.744, + "1996": 0.752, + "1997": 0.759, + "1998": 0.768, + "1999": 0.775, + "2000": 0.782, + "2001": 0.786, + "2002": 0.793, + "2003": 0.799, + "2004": 0.805, + "2005": 0.808, + "2006": 0.817, + "2007": 0.818, + "2008": 0.821, + "2009": 0.82, + "2010": 0.822, + "2011": 0.825, + "2012": 0.831, + "2013": 0.828, + "2014": 0.83, + "2015": 0.832, + "2016": 0.829, + "2017": 0.832, + "2018": 0.835, + "2019": 0.838, + "2020": 0.813, + "2021": 0.815 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr110", + "Region": "Durango", + "1990": 0.652, + "1991": 0.654, + "1992": 0.656, + "1993": 0.659, + "1994": 0.664, + "1995": 0.664, + "1996": 0.67, + "1997": 0.677, + "1998": 0.685, + "1999": 0.691, + "2000": 0.698, + "2001": 0.702, + "2002": 0.71, + "2003": 0.716, + "2004": 0.722, + "2005": 0.726, + "2006": 0.735, + "2007": 0.737, + "2008": 0.74, + "2009": 0.74, + "2010": 0.743, + "2011": 0.748, + "2012": 0.756, + "2013": 0.756, + "2014": 0.76, + "2015": 0.764, + "2016": 0.762, + "2017": 0.765, + "2018": 0.768, + "2019": 0.769, + "2020": 0.746, + "2021": 0.749 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr111", + "Region": "Guanajuato", + "1990": 0.637, + "1991": 0.639, + "1992": 0.641, + "1993": 0.643, + "1994": 0.648, + "1995": 0.648, + "1996": 0.655, + "1997": 0.662, + "1998": 0.669, + "1999": 0.675, + "2000": 0.682, + "2001": 0.686, + "2002": 0.694, + "2003": 0.701, + "2004": 0.706, + "2005": 0.711, + "2006": 0.719, + "2007": 0.722, + "2008": 0.725, + "2009": 0.725, + "2010": 0.728, + "2011": 0.734, + "2012": 0.742, + "2013": 0.743, + "2014": 0.747, + "2015": 0.752, + "2016": 0.75, + "2017": 0.752, + "2018": 0.755, + "2019": 0.757, + "2020": 0.734, + "2021": 0.736 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr112", + "Region": "Guerrero", + "1990": 0.612, + "1991": 0.614, + "1992": 0.616, + "1993": 0.618, + "1994": 0.623, + "1995": 0.623, + "1996": 0.629, + "1997": 0.636, + "1998": 0.643, + "1999": 0.649, + "2000": 0.656, + "2001": 0.657, + "2002": 0.661, + "2003": 0.664, + "2004": 0.667, + "2005": 0.668, + "2006": 0.672, + "2007": 0.671, + "2008": 0.672, + "2009": 0.669, + "2010": 0.669, + "2011": 0.678, + "2012": 0.689, + "2013": 0.694, + "2014": 0.701, + "2015": 0.71, + "2016": 0.708, + "2017": 0.71, + "2018": 0.712, + "2019": 0.714, + "2020": 0.692, + "2021": 0.694 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr113", + "Region": "Hidalgo", + "1990": 0.641, + "1991": 0.643, + "1992": 0.645, + "1993": 0.647, + "1994": 0.652, + "1995": 0.652, + "1996": 0.659, + "1997": 0.666, + "1998": 0.674, + "1999": 0.68, + "2000": 0.687, + "2001": 0.69, + "2002": 0.697, + "2003": 0.704, + "2004": 0.709, + "2005": 0.712, + "2006": 0.72, + "2007": 0.722, + "2008": 0.725, + "2009": 0.724, + "2010": 0.727, + "2011": 0.733, + "2012": 0.742, + "2013": 0.744, + "2014": 0.748, + "2015": 0.754, + "2016": 0.752, + "2017": 0.755, + "2018": 0.757, + "2019": 0.759, + "2020": 0.736, + "2021": 0.738 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr114", + "Region": "Jalisco", + "1990": 0.674, + "1991": 0.675, + "1992": 0.678, + "1993": 0.681, + "1994": 0.686, + "1995": 0.686, + "1996": 0.693, + "1997": 0.7, + "1998": 0.708, + "1999": 0.714, + "2000": 0.721, + "2001": 0.726, + "2002": 0.733, + "2003": 0.74, + "2004": 0.746, + "2005": 0.75, + "2006": 0.759, + "2007": 0.761, + "2008": 0.765, + "2009": 0.765, + "2010": 0.768, + "2011": 0.772, + "2012": 0.779, + "2013": 0.778, + "2014": 0.78, + "2015": 0.783, + "2016": 0.781, + "2017": 0.784, + "2018": 0.787, + "2019": 0.789, + "2020": 0.765, + "2021": 0.768 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr115", + "Region": "Mexico", + "1990": 0.679, + "1991": 0.681, + "1992": 0.684, + "1993": 0.686, + "1994": 0.691, + "1995": 0.691, + "1996": 0.698, + "1997": 0.705, + "1998": 0.714, + "1999": 0.72, + "2000": 0.727, + "2001": 0.73, + "2002": 0.735, + "2003": 0.741, + "2004": 0.745, + "2005": 0.748, + "2006": 0.755, + "2007": 0.755, + "2008": 0.757, + "2009": 0.756, + "2010": 0.757, + "2011": 0.762, + "2012": 0.77, + "2013": 0.771, + "2014": 0.774, + "2015": 0.779, + "2016": 0.777, + "2017": 0.78, + "2018": 0.782, + "2019": 0.784, + "2020": 0.761, + "2021": 0.763 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr116", + "Region": "Michoacan de Ocampo", + "1990": 0.623, + "1991": 0.625, + "1992": 0.627, + "1993": 0.629, + "1994": 0.634, + "1995": 0.634, + "1996": 0.64, + "1997": 0.647, + "1998": 0.655, + "1999": 0.66, + "2000": 0.667, + "2001": 0.672, + "2002": 0.68, + "2003": 0.687, + "2004": 0.693, + "2005": 0.698, + "2006": 0.707, + "2007": 0.709, + "2008": 0.713, + "2009": 0.714, + "2010": 0.717, + "2011": 0.723, + "2012": 0.73, + "2013": 0.731, + "2014": 0.735, + "2015": 0.739, + "2016": 0.738, + "2017": 0.74, + "2018": 0.743, + "2019": 0.744, + "2020": 0.722, + "2021": 0.724 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr117", + "Region": "Morelos", + "1990": 0.664, + "1991": 0.666, + "1992": 0.669, + "1993": 0.671, + "1994": 0.676, + "1995": 0.676, + "1996": 0.683, + "1997": 0.69, + "1998": 0.698, + "1999": 0.704, + "2000": 0.711, + "2001": 0.715, + "2002": 0.723, + "2003": 0.729, + "2004": 0.735, + "2005": 0.739, + "2006": 0.748, + "2007": 0.749, + "2008": 0.752, + "2009": 0.752, + "2010": 0.755, + "2011": 0.759, + "2012": 0.766, + "2013": 0.765, + "2014": 0.768, + "2015": 0.772, + "2016": 0.769, + "2017": 0.772, + "2018": 0.775, + "2019": 0.777, + "2020": 0.754, + "2021": 0.756 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr118", + "Region": "Nayarit", + "1990": 0.654, + "1991": 0.656, + "1992": 0.658, + "1993": 0.661, + "1994": 0.666, + "1995": 0.666, + "1996": 0.672, + "1997": 0.679, + "1998": 0.687, + "1999": 0.693, + "2000": 0.7, + "2001": 0.703, + "2002": 0.709, + "2003": 0.715, + "2004": 0.719, + "2005": 0.722, + "2006": 0.729, + "2007": 0.73, + "2008": 0.732, + "2009": 0.731, + "2010": 0.733, + "2011": 0.741, + "2012": 0.752, + "2013": 0.756, + "2014": 0.763, + "2015": 0.771, + "2016": 0.769, + "2017": 0.772, + "2018": 0.774, + "2019": 0.776, + "2020": 0.753, + "2021": 0.755 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr119", + "Region": "Nuevo Leon", + "1990": 0.707, + "1991": 0.709, + "1992": 0.712, + "1993": 0.715, + "1994": 0.72, + "1995": 0.72, + "1996": 0.727, + "1997": 0.735, + "1998": 0.743, + "1999": 0.749, + "2000": 0.757, + "2001": 0.76, + "2002": 0.766, + "2003": 0.772, + "2004": 0.777, + "2005": 0.78, + "2006": 0.788, + "2007": 0.789, + "2008": 0.791, + "2009": 0.79, + "2010": 0.791, + "2011": 0.795, + "2012": 0.801, + "2013": 0.798, + "2014": 0.8, + "2015": 0.802, + "2016": 0.8, + "2017": 0.803, + "2018": 0.806, + "2019": 0.808, + "2020": 0.784, + "2021": 0.786 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr120", + "Region": "Oaxaca", + "1990": 0.608, + "1991": 0.609, + "1992": 0.611, + "1993": 0.613, + "1994": 0.618, + "1995": 0.618, + "1996": 0.624, + "1997": 0.63, + "1998": 0.638, + "1999": 0.644, + "2000": 0.651, + "2001": 0.652, + "2002": 0.658, + "2003": 0.662, + "2004": 0.666, + "2005": 0.667, + "2006": 0.673, + "2007": 0.673, + "2008": 0.674, + "2009": 0.672, + "2010": 0.673, + "2011": 0.68, + "2012": 0.689, + "2013": 0.692, + "2014": 0.698, + "2015": 0.704, + "2016": 0.702, + "2017": 0.705, + "2018": 0.707, + "2019": 0.708, + "2020": 0.687, + "2021": 0.689 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr121", + "Region": "Puebla", + "1990": 0.631, + "1991": 0.633, + "1992": 0.636, + "1993": 0.638, + "1994": 0.643, + "1995": 0.643, + "1996": 0.649, + "1997": 0.656, + "1998": 0.664, + "1999": 0.669, + "2000": 0.676, + "2001": 0.68, + "2002": 0.687, + "2003": 0.694, + "2004": 0.699, + "2005": 0.702, + "2006": 0.71, + "2007": 0.712, + "2008": 0.715, + "2009": 0.714, + "2010": 0.717, + "2011": 0.722, + "2012": 0.729, + "2013": 0.729, + "2014": 0.733, + "2015": 0.737, + "2016": 0.735, + "2017": 0.738, + "2018": 0.74, + "2019": 0.742, + "2020": 0.719, + "2021": 0.721 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr122", + "Region": "Queretaro", + "1990": 0.661, + "1991": 0.662, + "1992": 0.665, + "1993": 0.668, + "1994": 0.673, + "1995": 0.673, + "1996": 0.679, + "1997": 0.687, + "1998": 0.695, + "1999": 0.7, + "2000": 0.708, + "2001": 0.713, + "2002": 0.721, + "2003": 0.729, + "2004": 0.735, + "2005": 0.74, + "2006": 0.75, + "2007": 0.753, + "2008": 0.757, + "2009": 0.758, + "2010": 0.761, + "2011": 0.767, + "2012": 0.774, + "2013": 0.775, + "2014": 0.778, + "2015": 0.783, + "2016": 0.78, + "2017": 0.783, + "2018": 0.786, + "2019": 0.788, + "2020": 0.764, + "2021": 0.767 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr123", + "Region": "Quintana Roo", + "1990": 0.662, + "1991": 0.663, + "1992": 0.666, + "1993": 0.669, + "1994": 0.674, + "1995": 0.674, + "1996": 0.68, + "1997": 0.688, + "1998": 0.695, + "1999": 0.701, + "2000": 0.709, + "2001": 0.714, + "2002": 0.723, + "2003": 0.731, + "2004": 0.738, + "2005": 0.743, + "2006": 0.754, + "2007": 0.757, + "2008": 0.761, + "2009": 0.763, + "2010": 0.767, + "2011": 0.77, + "2012": 0.775, + "2013": 0.773, + "2014": 0.774, + "2015": 0.776, + "2016": 0.773, + "2017": 0.776, + "2018": 0.779, + "2019": 0.781, + "2020": 0.758, + "2021": 0.76 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr124", + "Region": "San Luis Potosi", + "1990": 0.65, + "1991": 0.652, + "1992": 0.654, + "1993": 0.657, + "1994": 0.661, + "1995": 0.661, + "1996": 0.668, + "1997": 0.675, + "1998": 0.683, + "1999": 0.689, + "2000": 0.696, + "2001": 0.699, + "2002": 0.706, + "2003": 0.712, + "2004": 0.717, + "2005": 0.72, + "2006": 0.727, + "2007": 0.728, + "2008": 0.731, + "2009": 0.73, + "2010": 0.732, + "2011": 0.738, + "2012": 0.746, + "2013": 0.746, + "2014": 0.751, + "2015": 0.755, + "2016": 0.753, + "2017": 0.756, + "2018": 0.758, + "2019": 0.76, + "2020": 0.737, + "2021": 0.74 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr125", + "Region": "Sinaloa", + "1990": 0.676, + "1991": 0.678, + "1992": 0.68, + "1993": 0.683, + "1994": 0.688, + "1995": 0.688, + "1996": 0.695, + "1997": 0.702, + "1998": 0.71, + "1999": 0.716, + "2000": 0.724, + "2001": 0.729, + "2002": 0.738, + "2003": 0.746, + "2004": 0.753, + "2005": 0.758, + "2006": 0.768, + "2007": 0.771, + "2008": 0.776, + "2009": 0.777, + "2010": 0.781, + "2011": 0.785, + "2012": 0.792, + "2013": 0.792, + "2014": 0.795, + "2015": 0.798, + "2016": 0.796, + "2017": 0.799, + "2018": 0.802, + "2019": 0.804, + "2020": 0.78, + "2021": 0.782 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr126", + "Region": "Sonora", + "1990": 0.698, + "1991": 0.7, + "1992": 0.703, + "1993": 0.705, + "1994": 0.711, + "1995": 0.711, + "1996": 0.718, + "1997": 0.725, + "1998": 0.734, + "1999": 0.74, + "2000": 0.747, + "2001": 0.751, + "2002": 0.758, + "2003": 0.765, + "2004": 0.77, + "2005": 0.774, + "2006": 0.782, + "2007": 0.783, + "2008": 0.786, + "2009": 0.786, + "2010": 0.788, + "2011": 0.791, + "2012": 0.796, + "2013": 0.794, + "2014": 0.795, + "2015": 0.797, + "2016": 0.795, + "2017": 0.798, + "2018": 0.801, + "2019": 0.803, + "2020": 0.779, + "2021": 0.781 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr127", + "Region": "Tabasco", + "1990": 0.659, + "1991": 0.66, + "1992": 0.663, + "1993": 0.665, + "1994": 0.67, + "1995": 0.67, + "1996": 0.677, + "1997": 0.684, + "1998": 0.692, + "1999": 0.698, + "2000": 0.705, + "2001": 0.71, + "2002": 0.717, + "2003": 0.725, + "2004": 0.731, + "2005": 0.735, + "2006": 0.744, + "2007": 0.746, + "2008": 0.749, + "2009": 0.75, + "2010": 0.753, + "2011": 0.757, + "2012": 0.763, + "2013": 0.762, + "2014": 0.764, + "2015": 0.767, + "2016": 0.765, + "2017": 0.768, + "2018": 0.771, + "2019": 0.772, + "2020": 0.749, + "2021": 0.752 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr128", + "Region": "Tamaulipas", + "1990": 0.686, + "1991": 0.687, + "1992": 0.69, + "1993": 0.693, + "1994": 0.698, + "1995": 0.698, + "1996": 0.705, + "1997": 0.712, + "1998": 0.72, + "1999": 0.727, + "2000": 0.734, + "2001": 0.737, + "2002": 0.744, + "2003": 0.751, + "2004": 0.756, + "2005": 0.76, + "2006": 0.768, + "2007": 0.769, + "2008": 0.772, + "2009": 0.772, + "2010": 0.774, + "2011": 0.777, + "2012": 0.783, + "2013": 0.782, + "2014": 0.784, + "2015": 0.786, + "2016": 0.784, + "2017": 0.787, + "2018": 0.79, + "2019": 0.792, + "2020": 0.768, + "2021": 0.77 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr129", + "Region": "Tlaxcala", + "1990": 0.658, + "1991": 0.659, + "1992": 0.662, + "1993": 0.664, + "1994": 0.669, + "1995": 0.669, + "1996": 0.676, + "1997": 0.683, + "1998": 0.691, + "1999": 0.697, + "2000": 0.704, + "2001": 0.708, + "2002": 0.714, + "2003": 0.72, + "2004": 0.725, + "2005": 0.728, + "2006": 0.736, + "2007": 0.737, + "2008": 0.74, + "2009": 0.739, + "2010": 0.741, + "2011": 0.747, + "2012": 0.755, + "2013": 0.756, + "2014": 0.761, + "2015": 0.766, + "2016": 0.763, + "2017": 0.766, + "2018": 0.769, + "2019": 0.771, + "2020": 0.748, + "2021": 0.75 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr130", + "Region": "Veracruz", + "1990": 0.634, + "1991": 0.636, + "1992": 0.638, + "1993": 0.64, + "1994": 0.645, + "1995": 0.645, + "1996": 0.652, + "1997": 0.658, + "1998": 0.666, + "1999": 0.672, + "2000": 0.679, + "2001": 0.682, + "2002": 0.688, + "2003": 0.693, + "2004": 0.698, + "2005": 0.7, + "2006": 0.707, + "2007": 0.708, + "2008": 0.71, + "2009": 0.709, + "2010": 0.711, + "2011": 0.717, + "2012": 0.726, + "2013": 0.728, + "2014": 0.733, + "2015": 0.738, + "2016": 0.736, + "2017": 0.739, + "2018": 0.741, + "2019": 0.743, + "2020": 0.72, + "2021": 0.723 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr131", + "Region": "Yucatan", + "1990": 0.66, + "1991": 0.661, + "1992": 0.664, + "1993": 0.666, + "1994": 0.671, + "1995": 0.671, + "1996": 0.678, + "1997": 0.685, + "1998": 0.693, + "1999": 0.699, + "2000": 0.706, + "2001": 0.71, + "2002": 0.716, + "2003": 0.723, + "2004": 0.727, + "2005": 0.731, + "2006": 0.739, + "2007": 0.74, + "2008": 0.742, + "2009": 0.742, + "2010": 0.744, + "2011": 0.75, + "2012": 0.758, + "2013": 0.759, + "2014": 0.763, + "2015": 0.768, + "2016": 0.766, + "2017": 0.768, + "2018": 0.771, + "2019": 0.773, + "2020": 0.75, + "2021": 0.752 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr132", + "Region": "Zacatecas", + "1990": 0.635, + "1991": 0.637, + "1992": 0.639, + "1993": 0.641, + "1994": 0.646, + "1995": 0.646, + "1996": 0.653, + "1997": 0.66, + "1998": 0.667, + "1999": 0.673, + "2000": 0.68, + "2001": 0.686, + "2002": 0.695, + "2003": 0.703, + "2004": 0.711, + "2005": 0.716, + "2006": 0.726, + "2007": 0.73, + "2008": 0.735, + "2009": 0.737, + "2010": 0.741, + "2011": 0.746, + "2012": 0.753, + "2013": 0.753, + "2014": 0.756, + "2015": 0.759, + "2016": 0.758, + "2017": 0.76, + "2018": 0.763, + "2019": 0.765, + "2020": 0.742, + "2021": 0.744 + }, + { + "Country": "Micronesia (Federated States of)", + "Continent": "Asia/Pacific", + "ISO_Code": "FSM", + "Level": "National", + "GDLCODE": "FSMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.572, + "2001": 0.581, + "2002": 0.582, + "2003": 0.594, + "2004": 0.597, + "2005": 0.604, + "2006": 0.61, + "2007": 0.614, + "2008": 0.618, + "2009": 0.62, + "2010": 0.625, + "2011": 0.628, + "2012": 0.628, + "2013": 0.626, + "2014": 0.625, + "2015": 0.626, + "2016": 0.629, + "2017": 0.632, + "2018": 0.633, + "2019": 0.633, + "2020": 0.629, + "2021": 0.628 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "National", + "GDLCODE": "MDAt", + "Region": "Total", + "1990": 0.653, + "1991": 0.644, + "1992": 0.632, + "1993": 0.634, + "1994": 0.614, + "1995": 0.618, + "1996": 0.617, + "1997": 0.626, + "1998": 0.628, + "1999": 0.631, + "2000": 0.641, + "2001": 0.652, + "2002": 0.663, + "2003": 0.674, + "2004": 0.685, + "2005": 0.695, + "2006": 0.704, + "2007": 0.713, + "2008": 0.723, + "2009": 0.723, + "2010": 0.73, + "2011": 0.736, + "2012": 0.741, + "2013": 0.746, + "2014": 0.75, + "2015": 0.749, + "2016": 0.756, + "2017": 0.765, + "2018": 0.768, + "2019": 0.774, + "2020": 0.766, + "2021": 0.767 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr102", + "Region": "Center", + "1990": 0.628, + "1991": 0.62, + "1992": 0.608, + "1993": 0.61, + "1994": 0.59, + "1995": 0.594, + "1996": 0.593, + "1997": 0.602, + "1998": 0.603, + "1999": 0.606, + "2000": 0.616, + "2001": 0.627, + "2002": 0.637, + "2003": 0.648, + "2004": 0.659, + "2005": 0.668, + "2006": 0.678, + "2007": 0.687, + "2008": 0.698, + "2009": 0.698, + "2010": 0.705, + "2011": 0.711, + "2012": 0.717, + "2013": 0.722, + "2014": 0.725, + "2015": 0.725, + "2016": 0.731, + "2017": 0.74, + "2018": 0.743, + "2019": 0.749, + "2020": 0.741, + "2021": 0.742 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr104", + "Region": "Chisinau", + "1990": 0.723, + "1991": 0.714, + "1992": 0.702, + "1993": 0.704, + "1994": 0.683, + "1995": 0.688, + "1996": 0.687, + "1997": 0.697, + "1998": 0.698, + "1999": 0.702, + "2000": 0.713, + "2001": 0.725, + "2002": 0.736, + "2003": 0.748, + "2004": 0.76, + "2005": 0.77, + "2006": 0.778, + "2007": 0.786, + "2008": 0.796, + "2009": 0.794, + "2010": 0.8, + "2011": 0.804, + "2012": 0.808, + "2013": 0.813, + "2014": 0.817, + "2015": 0.817, + "2016": 0.824, + "2017": 0.833, + "2018": 0.837, + "2019": 0.843, + "2020": 0.834, + "2021": 0.835 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr101", + "Region": "North", + "1990": 0.636, + "1991": 0.627, + "1992": 0.615, + "1993": 0.617, + "1994": 0.597, + "1995": 0.601, + "1996": 0.6, + "1997": 0.609, + "1998": 0.611, + "1999": 0.614, + "2000": 0.624, + "2001": 0.634, + "2002": 0.645, + "2003": 0.656, + "2004": 0.667, + "2005": 0.676, + "2006": 0.685, + "2007": 0.694, + "2008": 0.704, + "2009": 0.704, + "2010": 0.71, + "2011": 0.716, + "2012": 0.721, + "2013": 0.726, + "2014": 0.729, + "2015": 0.729, + "2016": 0.735, + "2017": 0.744, + "2018": 0.747, + "2019": 0.753, + "2020": 0.745, + "2021": 0.746 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr103", + "Region": "South", + "1990": 0.632, + "1991": 0.623, + "1992": 0.611, + "1993": 0.614, + "1994": 0.594, + "1995": 0.598, + "1996": 0.597, + "1997": 0.606, + "1998": 0.607, + "1999": 0.61, + "2000": 0.62, + "2001": 0.631, + "2002": 0.641, + "2003": 0.652, + "2004": 0.663, + "2005": 0.673, + "2006": 0.684, + "2007": 0.696, + "2008": 0.709, + "2009": 0.712, + "2010": 0.721, + "2011": 0.73, + "2012": 0.738, + "2013": 0.743, + "2014": 0.746, + "2015": 0.746, + "2016": 0.752, + "2017": 0.761, + "2018": 0.764, + "2019": 0.77, + "2020": 0.762, + "2021": 0.763 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "National", + "GDLCODE": "MNGt", + "Region": "Total", + "1990": 0.579, + "1991": 0.575, + "1992": 0.564, + "1993": 0.551, + "1994": 0.555, + "1995": 0.56, + "1996": 0.564, + "1997": 0.572, + "1998": 0.583, + "1999": 0.591, + "2000": 0.598, + "2001": 0.609, + "2002": 0.617, + "2003": 0.631, + "2004": 0.647, + "2005": 0.658, + "2006": 0.669, + "2007": 0.68, + "2008": 0.691, + "2009": 0.695, + "2010": 0.701, + "2011": 0.709, + "2012": 0.718, + "2013": 0.726, + "2014": 0.729, + "2015": 0.732, + "2016": 0.733, + "2017": 0.732, + "2018": 0.743, + "2019": 0.746, + "2020": 0.745, + "2021": 0.739 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr103", + "Region": "Central (Dornogovi, Dundgovi, Umnugovi, Selenge, Tuv, Darkhan-Uul, Govisumber)", + "1990": 0.575, + "1991": 0.571, + "1992": 0.561, + "1993": 0.548, + "1994": 0.552, + "1995": 0.557, + "1996": 0.561, + "1997": 0.568, + "1998": 0.579, + "1999": 0.587, + "2000": 0.594, + "2001": 0.605, + "2002": 0.613, + "2003": 0.627, + "2004": 0.642, + "2005": 0.653, + "2006": 0.664, + "2007": 0.676, + "2008": 0.686, + "2009": 0.691, + "2010": 0.697, + "2011": 0.705, + "2012": 0.712, + "2013": 0.72, + "2014": 0.723, + "2015": 0.724, + "2016": 0.725, + "2017": 0.723, + "2018": 0.733, + "2019": 0.736, + "2020": 0.735, + "2021": 0.729 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr104", + "Region": "Eastern (Dornod, Sukhbaatar, Khentii)", + "1990": 0.556, + "1991": 0.552, + "1992": 0.542, + "1993": 0.529, + "1994": 0.533, + "1995": 0.538, + "1996": 0.542, + "1997": 0.549, + "1998": 0.559, + "1999": 0.567, + "2000": 0.574, + "2001": 0.585, + "2002": 0.593, + "2003": 0.606, + "2004": 0.621, + "2005": 0.632, + "2006": 0.639, + "2007": 0.646, + "2008": 0.652, + "2009": 0.653, + "2010": 0.655, + "2011": 0.664, + "2012": 0.673, + "2013": 0.681, + "2014": 0.685, + "2015": 0.688, + "2016": 0.69, + "2017": 0.69, + "2018": 0.7, + "2019": 0.704, + "2020": 0.702, + "2021": 0.697 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr102", + "Region": "Khangai (Arkhangai, Bayankhongor, Bulgan, Uvurkhangai, Khuvsgul, Orkhon)", + "1990": 0.541, + "1991": 0.538, + "1992": 0.527, + "1993": 0.515, + "1994": 0.518, + "1995": 0.523, + "1996": 0.527, + "1997": 0.534, + "1998": 0.545, + "1999": 0.552, + "2000": 0.56, + "2001": 0.57, + "2002": 0.578, + "2003": 0.591, + "2004": 0.606, + "2005": 0.617, + "2006": 0.62, + "2007": 0.624, + "2008": 0.627, + "2009": 0.625, + "2010": 0.624, + "2011": 0.635, + "2012": 0.646, + "2013": 0.656, + "2014": 0.662, + "2015": 0.667, + "2016": 0.671, + "2017": 0.673, + "2018": 0.686, + "2019": 0.689, + "2020": 0.688, + "2021": 0.682 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr105", + "Region": "Ulaanbaatar", + "1990": 0.643, + "1991": 0.639, + "1992": 0.627, + "1993": 0.614, + "1994": 0.618, + "1995": 0.623, + "1996": 0.627, + "1997": 0.635, + "1998": 0.647, + "1999": 0.656, + "2000": 0.664, + "2001": 0.676, + "2002": 0.685, + "2003": 0.7, + "2004": 0.717, + "2005": 0.729, + "2006": 0.741, + "2007": 0.753, + "2008": 0.764, + "2009": 0.77, + "2010": 0.776, + "2011": 0.78, + "2012": 0.785, + "2013": 0.789, + "2014": 0.788, + "2015": 0.786, + "2016": 0.782, + "2017": 0.777, + "2018": 0.784, + "2019": 0.787, + "2020": 0.786, + "2021": 0.78 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr101", + "Region": "Western (Bayan-Ulgii, Govi-Altai, Zavkhan, Uvs, Khovd)", + "1990": 0.516, + "1991": 0.513, + "1992": 0.503, + "1993": 0.491, + "1994": 0.494, + "1995": 0.499, + "1996": 0.503, + "1997": 0.509, + "1998": 0.52, + "1999": 0.527, + "2000": 0.534, + "2001": 0.544, + "2002": 0.551, + "2003": 0.564, + "2004": 0.579, + "2005": 0.589, + "2006": 0.602, + "2007": 0.616, + "2008": 0.628, + "2009": 0.635, + "2010": 0.643, + "2011": 0.651, + "2012": 0.658, + "2013": 0.665, + "2014": 0.667, + "2015": 0.668, + "2016": 0.668, + "2017": 0.667, + "2018": 0.676, + "2019": 0.679, + "2020": 0.678, + "2021": 0.672 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "National", + "GDLCODE": "MNEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.776, + "2007": 0.787, + "2008": 0.8, + "2009": 0.8, + "2010": 0.808, + "2011": 0.811, + "2012": 0.812, + "2013": 0.817, + "2014": 0.819, + "2015": 0.822, + "2016": 0.824, + "2017": 0.83, + "2018": 0.834, + "2019": 0.837, + "2020": 0.826, + "2021": 0.832 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr102", + "Region": "Centre", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.785, + "2007": 0.797, + "2008": 0.81, + "2009": 0.81, + "2010": 0.818, + "2011": 0.821, + "2012": 0.822, + "2013": 0.827, + "2014": 0.829, + "2015": 0.832, + "2016": 0.833, + "2017": 0.839, + "2018": 0.844, + "2019": 0.846, + "2020": 0.835, + "2021": 0.841 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr101", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.789, + "2007": 0.795, + "2008": 0.802, + "2009": 0.797, + "2010": 0.799, + "2011": 0.797, + "2012": 0.792, + "2013": 0.79, + "2014": 0.797, + "2015": 0.804, + "2016": 0.81, + "2017": 0.82, + "2018": 0.828, + "2019": 0.831, + "2020": 0.82, + "2021": 0.826 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr103", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.748, + "2007": 0.765, + "2008": 0.783, + "2009": 0.789, + "2010": 0.802, + "2011": 0.81, + "2012": 0.817, + "2013": 0.826, + "2014": 0.823, + "2015": 0.821, + "2016": 0.817, + "2017": 0.818, + "2018": 0.817, + "2019": 0.819, + "2020": 0.808, + "2021": 0.814 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "National", + "GDLCODE": "MARt", + "Region": "Total", + "1990": 0.447, + "1991": 0.453, + "1992": 0.457, + "1993": 0.463, + "1994": 0.475, + "1995": 0.478, + "1996": 0.49, + "1997": 0.494, + "1998": 0.501, + "1999": 0.511, + "2000": 0.521, + "2001": 0.532, + "2002": 0.542, + "2003": 0.552, + "2004": 0.56, + "2005": 0.567, + "2006": 0.573, + "2007": 0.581, + "2008": 0.588, + "2009": 0.594, + "2010": 0.603, + "2011": 0.614, + "2012": 0.624, + "2013": 0.635, + "2014": 0.644, + "2015": 0.654, + "2016": 0.661, + "2017": 0.67, + "2018": 0.676, + "2019": 0.682, + "2020": 0.679, + "2021": 0.683 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr103", + "Region": "Centre", + "1990": 0.479, + "1991": 0.485, + "1992": 0.489, + "1993": 0.496, + "1994": 0.509, + "1995": 0.514, + "1996": 0.527, + "1997": 0.532, + "1998": 0.54, + "1999": 0.551, + "2000": 0.562, + "2001": 0.574, + "2002": 0.585, + "2003": 0.595, + "2004": 0.602, + "2005": 0.607, + "2006": 0.612, + "2007": 0.619, + "2008": 0.626, + "2009": 0.631, + "2010": 0.638, + "2011": 0.649, + "2012": 0.658, + "2013": 0.669, + "2014": 0.677, + "2015": 0.688, + "2016": 0.695, + "2017": 0.704, + "2018": 0.711, + "2019": 0.717, + "2020": 0.714, + "2021": 0.718 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr102", + "Region": "Centre north", + "1990": 0.41, + "1991": 0.414, + "1992": 0.418, + "1993": 0.426, + "1994": 0.439, + "1995": 0.444, + "1996": 0.456, + "1997": 0.462, + "1998": 0.471, + "1999": 0.482, + "2000": 0.493, + "2001": 0.505, + "2002": 0.516, + "2003": 0.527, + "2004": 0.539, + "2005": 0.549, + "2006": 0.558, + "2007": 0.569, + "2008": 0.578, + "2009": 0.587, + "2010": 0.597, + "2011": 0.61, + "2012": 0.621, + "2013": 0.634, + "2014": 0.645, + "2015": 0.655, + "2016": 0.662, + "2017": 0.671, + "2018": 0.678, + "2019": 0.684, + "2020": 0.681, + "2021": 0.684 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr105", + "Region": "Centre south", + "1990": 0.49, + "1991": 0.496, + "1992": 0.5, + "1993": 0.501, + "1994": 0.508, + "1995": 0.506, + "1996": 0.513, + "1997": 0.513, + "1998": 0.516, + "1999": 0.521, + "2000": 0.527, + "2001": 0.534, + "2002": 0.54, + "2003": 0.546, + "2004": 0.553, + "2005": 0.558, + "2006": 0.563, + "2007": 0.57, + "2008": 0.577, + "2009": 0.582, + "2010": 0.59, + "2011": 0.6, + "2012": 0.609, + "2013": 0.619, + "2014": 0.627, + "2015": 0.637, + "2016": 0.644, + "2017": 0.652, + "2018": 0.659, + "2019": 0.665, + "2020": 0.662, + "2021": 0.665 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr104", + "Region": "Eastern", + "1990": 0.481, + "1991": 0.487, + "1992": 0.491, + "1993": 0.494, + "1994": 0.503, + "1995": 0.504, + "1996": 0.512, + "1997": 0.514, + "1998": 0.519, + "1999": 0.527, + "2000": 0.535, + "2001": 0.543, + "2002": 0.551, + "2003": 0.559, + "2004": 0.562, + "2005": 0.564, + "2006": 0.566, + "2007": 0.57, + "2008": 0.573, + "2009": 0.576, + "2010": 0.582, + "2011": 0.589, + "2012": 0.596, + "2013": 0.603, + "2014": 0.609, + "2015": 0.618, + "2016": 0.625, + "2017": 0.633, + "2018": 0.639, + "2019": 0.645, + "2020": 0.642, + "2021": 0.646 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr101", + "Region": "North west", + "1990": 0.464, + "1991": 0.471, + "1992": 0.475, + "1993": 0.481, + "1994": 0.492, + "1995": 0.495, + "1996": 0.506, + "1997": 0.51, + "1998": 0.518, + "1999": 0.527, + "2000": 0.537, + "2001": 0.547, + "2002": 0.557, + "2003": 0.567, + "2004": 0.575, + "2005": 0.582, + "2006": 0.589, + "2007": 0.597, + "2008": 0.605, + "2009": 0.611, + "2010": 0.62, + "2011": 0.631, + "2012": 0.641, + "2013": 0.653, + "2014": 0.662, + "2015": 0.673, + "2016": 0.68, + "2017": 0.689, + "2018": 0.695, + "2019": 0.702, + "2020": 0.698, + "2021": 0.702 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr107", + "Region": "South", + "1990": 0.395, + "1991": 0.4, + "1992": 0.404, + "1993": 0.414, + "1994": 0.43, + "1995": 0.438, + "1996": 0.452, + "1997": 0.46, + "1998": 0.47, + "1999": 0.483, + "2000": 0.496, + "2001": 0.509, + "2002": 0.522, + "2003": 0.535, + "2004": 0.543, + "2005": 0.55, + "2006": 0.557, + "2007": 0.565, + "2008": 0.573, + "2009": 0.579, + "2010": 0.588, + "2011": 0.599, + "2012": 0.608, + "2013": 0.619, + "2014": 0.628, + "2015": 0.638, + "2016": 0.645, + "2017": 0.653, + "2018": 0.659, + "2019": 0.665, + "2020": 0.662, + "2021": 0.666 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr106", + "Region": "Tensift", + "1990": 0.379, + "1991": 0.384, + "1992": 0.387, + "1993": 0.395, + "1994": 0.408, + "1995": 0.414, + "1996": 0.426, + "1997": 0.432, + "1998": 0.441, + "1999": 0.451, + "2000": 0.463, + "2001": 0.474, + "2002": 0.485, + "2003": 0.496, + "2004": 0.507, + "2005": 0.516, + "2006": 0.525, + "2007": 0.535, + "2008": 0.544, + "2009": 0.552, + "2010": 0.562, + "2011": 0.575, + "2012": 0.586, + "2013": 0.598, + "2014": 0.609, + "2015": 0.619, + "2016": 0.625, + "2017": 0.633, + "2018": 0.64, + "2019": 0.645, + "2020": 0.642, + "2021": 0.646 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "National", + "GDLCODE": "MOZt", + "Region": "Total", + "1990": 0.238, + "1991": 0.24, + "1992": 0.234, + "1993": 0.239, + "1994": 0.242, + "1995": 0.247, + "1996": 0.259, + "1997": 0.272, + "1998": 0.283, + "1999": 0.296, + "2000": 0.303, + "2001": 0.316, + "2002": 0.324, + "2003": 0.337, + "2004": 0.347, + "2005": 0.357, + "2006": 0.364, + "2007": 0.377, + "2008": 0.387, + "2009": 0.395, + "2010": 0.402, + "2011": 0.407, + "2012": 0.413, + "2013": 0.427, + "2014": 0.433, + "2015": 0.44, + "2016": 0.443, + "2017": 0.445, + "2018": 0.451, + "2019": 0.456, + "2020": 0.453, + "2021": 0.446 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr102", + "Region": "Cabo delgado", + "1990": 0.214, + "1991": 0.215, + "1992": 0.21, + "1993": 0.214, + "1994": 0.217, + "1995": 0.221, + "1996": 0.232, + "1997": 0.243, + "1998": 0.255, + "1999": 0.269, + "2000": 0.276, + "2001": 0.289, + "2002": 0.296, + "2003": 0.308, + "2004": 0.314, + "2005": 0.321, + "2006": 0.325, + "2007": 0.334, + "2008": 0.341, + "2009": 0.345, + "2010": 0.348, + "2011": 0.349, + "2012": 0.355, + "2013": 0.366, + "2014": 0.371, + "2015": 0.377, + "2016": 0.38, + "2017": 0.383, + "2018": 0.388, + "2019": 0.391, + "2020": 0.389, + "2021": 0.383 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr109", + "Region": "Gaza", + "1990": 0.243, + "1991": 0.244, + "1992": 0.239, + "1993": 0.243, + "1994": 0.247, + "1995": 0.252, + "1996": 0.264, + "1997": 0.277, + "1998": 0.288, + "1999": 0.302, + "2000": 0.31, + "2001": 0.323, + "2002": 0.332, + "2003": 0.345, + "2004": 0.353, + "2005": 0.362, + "2006": 0.368, + "2007": 0.379, + "2008": 0.388, + "2009": 0.394, + "2010": 0.399, + "2011": 0.402, + "2012": 0.408, + "2013": 0.421, + "2014": 0.427, + "2015": 0.434, + "2016": 0.437, + "2017": 0.439, + "2018": 0.445, + "2019": 0.449, + "2020": 0.447, + "2021": 0.44 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr108", + "Region": "Inhambane", + "1990": 0.25, + "1991": 0.252, + "1992": 0.246, + "1993": 0.251, + "1994": 0.255, + "1995": 0.26, + "1996": 0.273, + "1997": 0.286, + "1998": 0.297, + "1999": 0.309, + "2000": 0.315, + "2001": 0.328, + "2002": 0.335, + "2003": 0.347, + "2004": 0.359, + "2005": 0.37, + "2006": 0.379, + "2007": 0.394, + "2008": 0.406, + "2009": 0.416, + "2010": 0.424, + "2011": 0.429, + "2012": 0.435, + "2013": 0.449, + "2014": 0.455, + "2015": 0.462, + "2016": 0.466, + "2017": 0.468, + "2018": 0.474, + "2019": 0.478, + "2020": 0.476, + "2021": 0.468 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr106", + "Region": "Manica", + "1990": 0.241, + "1991": 0.243, + "1992": 0.237, + "1993": 0.242, + "1994": 0.245, + "1995": 0.25, + "1996": 0.262, + "1997": 0.275, + "1998": 0.287, + "1999": 0.301, + "2000": 0.309, + "2001": 0.323, + "2002": 0.331, + "2003": 0.345, + "2004": 0.358, + "2005": 0.37, + "2006": 0.381, + "2007": 0.397, + "2008": 0.41, + "2009": 0.421, + "2010": 0.431, + "2011": 0.438, + "2012": 0.445, + "2013": 0.459, + "2014": 0.466, + "2015": 0.474, + "2016": 0.477, + "2017": 0.48, + "2018": 0.486, + "2019": 0.491, + "2020": 0.488, + "2021": 0.48 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr111", + "Region": "Maputo Cidade", + "1990": 0.369, + "1991": 0.371, + "1992": 0.364, + "1993": 0.37, + "1994": 0.374, + "1995": 0.38, + "1996": 0.397, + "1997": 0.413, + "1998": 0.428, + "1999": 0.445, + "2000": 0.455, + "2001": 0.473, + "2002": 0.484, + "2003": 0.501, + "2004": 0.51, + "2005": 0.518, + "2006": 0.523, + "2007": 0.535, + "2008": 0.543, + "2009": 0.549, + "2010": 0.554, + "2011": 0.557, + "2012": 0.565, + "2013": 0.583, + "2014": 0.592, + "2015": 0.601, + "2016": 0.605, + "2017": 0.608, + "2018": 0.616, + "2019": 0.622, + "2020": 0.619, + "2021": 0.61 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr110", + "Region": "Maputo Provincia", + "1990": 0.311, + "1991": 0.313, + "1992": 0.306, + "1993": 0.311, + "1994": 0.315, + "1995": 0.321, + "1996": 0.335, + "1997": 0.35, + "1998": 0.364, + "1999": 0.38, + "2000": 0.39, + "2001": 0.407, + "2002": 0.417, + "2003": 0.434, + "2004": 0.441, + "2005": 0.449, + "2006": 0.453, + "2007": 0.464, + "2008": 0.472, + "2009": 0.477, + "2010": 0.481, + "2011": 0.483, + "2012": 0.49, + "2013": 0.506, + "2014": 0.513, + "2015": 0.522, + "2016": 0.526, + "2017": 0.528, + "2018": 0.535, + "2019": 0.54, + "2020": 0.537, + "2021": 0.529 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr103", + "Region": "Nampula", + "1990": 0.212, + "1991": 0.214, + "1992": 0.208, + "1993": 0.212, + "1994": 0.216, + "1995": 0.22, + "1996": 0.232, + "1997": 0.244, + "1998": 0.254, + "1999": 0.267, + "2000": 0.274, + "2001": 0.287, + "2002": 0.294, + "2003": 0.307, + "2004": 0.319, + "2005": 0.332, + "2006": 0.342, + "2007": 0.358, + "2008": 0.371, + "2009": 0.381, + "2010": 0.391, + "2011": 0.398, + "2012": 0.404, + "2013": 0.417, + "2014": 0.423, + "2015": 0.429, + "2016": 0.433, + "2017": 0.435, + "2018": 0.441, + "2019": 0.445, + "2020": 0.442, + "2021": 0.435 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr101", + "Region": "Niassa", + "1990": 0.227, + "1991": 0.229, + "1992": 0.223, + "1993": 0.227, + "1994": 0.231, + "1995": 0.236, + "1996": 0.248, + "1997": 0.26, + "1998": 0.266, + "1999": 0.273, + "2000": 0.275, + "2001": 0.283, + "2002": 0.285, + "2003": 0.293, + "2004": 0.304, + "2005": 0.316, + "2006": 0.326, + "2007": 0.34, + "2008": 0.352, + "2009": 0.363, + "2010": 0.372, + "2011": 0.379, + "2012": 0.385, + "2013": 0.398, + "2014": 0.403, + "2015": 0.41, + "2016": 0.413, + "2017": 0.415, + "2018": 0.421, + "2019": 0.425, + "2020": 0.422, + "2021": 0.416 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr107", + "Region": "Sofala", + "1990": 0.222, + "1991": 0.224, + "1992": 0.219, + "1993": 0.223, + "1994": 0.226, + "1995": 0.231, + "1996": 0.242, + "1997": 0.254, + "1998": 0.268, + "1999": 0.284, + "2000": 0.295, + "2001": 0.311, + "2002": 0.321, + "2003": 0.337, + "2004": 0.35, + "2005": 0.362, + "2006": 0.373, + "2007": 0.389, + "2008": 0.402, + "2009": 0.413, + "2010": 0.423, + "2011": 0.431, + "2012": 0.437, + "2013": 0.451, + "2014": 0.458, + "2015": 0.465, + "2016": 0.469, + "2017": 0.471, + "2018": 0.477, + "2019": 0.482, + "2020": 0.479, + "2021": 0.472 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr105", + "Region": "Tete", + "1990": 0.219, + "1991": 0.22, + "1992": 0.215, + "1993": 0.219, + "1994": 0.223, + "1995": 0.227, + "1996": 0.239, + "1997": 0.251, + "1998": 0.261, + "1999": 0.272, + "2000": 0.277, + "2001": 0.289, + "2002": 0.295, + "2003": 0.306, + "2004": 0.314, + "2005": 0.322, + "2006": 0.328, + "2007": 0.339, + "2008": 0.348, + "2009": 0.354, + "2010": 0.359, + "2011": 0.363, + "2012": 0.369, + "2013": 0.381, + "2014": 0.386, + "2015": 0.393, + "2016": 0.396, + "2017": 0.398, + "2018": 0.403, + "2019": 0.407, + "2020": 0.405, + "2021": 0.398 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr104", + "Region": "Zambezia", + "1990": 0.236, + "1991": 0.239, + "1992": 0.232, + "1993": 0.237, + "1994": 0.241, + "1995": 0.246, + "1996": 0.258, + "1997": 0.272, + "1998": 0.28, + "1999": 0.291, + "2000": 0.295, + "2001": 0.306, + "2002": 0.311, + "2003": 0.322, + "2004": 0.33, + "2005": 0.339, + "2006": 0.345, + "2007": 0.357, + "2008": 0.366, + "2009": 0.373, + "2010": 0.378, + "2011": 0.381, + "2012": 0.387, + "2013": 0.399, + "2014": 0.405, + "2015": 0.411, + "2016": 0.415, + "2017": 0.417, + "2018": 0.423, + "2019": 0.427, + "2020": 0.424, + "2021": 0.417 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "National", + "GDLCODE": "MMRt", + "Region": "Total", + "1990": 0.333, + "1991": 0.343, + "1992": 0.356, + "1993": 0.363, + "1994": 0.369, + "1995": 0.374, + "1996": 0.381, + "1997": 0.385, + "1998": 0.392, + "1999": 0.401, + "2000": 0.41, + "2001": 0.42, + "2002": 0.43, + "2003": 0.44, + "2004": 0.45, + "2005": 0.46, + "2006": 0.47, + "2007": 0.48, + "2008": 0.465, + "2009": 0.501, + "2010": 0.51, + "2011": 0.521, + "2012": 0.531, + "2013": 0.543, + "2014": 0.553, + "2015": 0.562, + "2016": 0.572, + "2017": 0.58, + "2018": 0.59, + "2019": 0.598, + "2020": 0.6, + "2021": 0.585 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr114", + "Region": "Ayeyarwaddy", + "1990": 0.314, + "1991": 0.324, + "1992": 0.336, + "1993": 0.343, + "1994": 0.35, + "1995": 0.354, + "1996": 0.361, + "1997": 0.365, + "1998": 0.372, + "1999": 0.381, + "2000": 0.39, + "2001": 0.399, + "2002": 0.409, + "2003": 0.419, + "2004": 0.429, + "2005": 0.439, + "2006": 0.448, + "2007": 0.458, + "2008": 0.444, + "2009": 0.479, + "2010": 0.487, + "2011": 0.498, + "2012": 0.507, + "2013": 0.519, + "2014": 0.529, + "2015": 0.537, + "2016": 0.547, + "2017": 0.555, + "2018": 0.564, + "2019": 0.572, + "2020": 0.575, + "2021": 0.559 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr107", + "Region": "Bago", + "1990": 0.337, + "1991": 0.348, + "1992": 0.36, + "1993": 0.367, + "1994": 0.374, + "1995": 0.379, + "1996": 0.386, + "1997": 0.39, + "1998": 0.397, + "1999": 0.406, + "2000": 0.415, + "2001": 0.424, + "2002": 0.433, + "2003": 0.442, + "2004": 0.452, + "2005": 0.461, + "2006": 0.471, + "2007": 0.48, + "2008": 0.464, + "2009": 0.5, + "2010": 0.508, + "2011": 0.518, + "2012": 0.527, + "2013": 0.538, + "2014": 0.548, + "2015": 0.556, + "2016": 0.566, + "2017": 0.573, + "2018": 0.583, + "2019": 0.591, + "2020": 0.593, + "2021": 0.578 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr104", + "Region": "Chin", + "1990": 0.334, + "1991": 0.345, + "1992": 0.358, + "1993": 0.365, + "1994": 0.372, + "1995": 0.376, + "1996": 0.383, + "1997": 0.387, + "1998": 0.394, + "1999": 0.403, + "2000": 0.412, + "2001": 0.421, + "2002": 0.431, + "2003": 0.442, + "2004": 0.452, + "2005": 0.462, + "2006": 0.472, + "2007": 0.482, + "2008": 0.467, + "2009": 0.505, + "2010": 0.514, + "2011": 0.525, + "2012": 0.535, + "2013": 0.547, + "2014": 0.558, + "2015": 0.567, + "2016": 0.578, + "2017": 0.586, + "2018": 0.596, + "2019": 0.604, + "2020": 0.606, + "2021": 0.591 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr101", + "Region": "Kachin", + "1990": 0.359, + "1991": 0.371, + "1992": 0.384, + "1993": 0.391, + "1994": 0.398, + "1995": 0.402, + "1996": 0.41, + "1997": 0.414, + "1998": 0.421, + "1999": 0.43, + "2000": 0.44, + "2001": 0.45, + "2002": 0.46, + "2003": 0.471, + "2004": 0.482, + "2005": 0.492, + "2006": 0.503, + "2007": 0.513, + "2008": 0.498, + "2009": 0.536, + "2010": 0.546, + "2011": 0.558, + "2012": 0.568, + "2013": 0.581, + "2014": 0.592, + "2015": 0.602, + "2016": 0.613, + "2017": 0.621, + "2018": 0.632, + "2019": 0.64, + "2020": 0.642, + "2021": 0.626 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr102", + "Region": "Kayah", + "1990": 0.363, + "1991": 0.374, + "1992": 0.387, + "1993": 0.395, + "1994": 0.402, + "1995": 0.406, + "1996": 0.414, + "1997": 0.418, + "1998": 0.425, + "1999": 0.434, + "2000": 0.444, + "2001": 0.452, + "2002": 0.462, + "2003": 0.472, + "2004": 0.481, + "2005": 0.491, + "2006": 0.5, + "2007": 0.51, + "2008": 0.494, + "2009": 0.531, + "2010": 0.539, + "2011": 0.55, + "2012": 0.559, + "2013": 0.57, + "2014": 0.58, + "2015": 0.589, + "2016": 0.598, + "2017": 0.607, + "2018": 0.617, + "2019": 0.625, + "2020": 0.627, + "2021": 0.611 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr103", + "Region": "Kayin", + "1990": 0.307, + "1991": 0.318, + "1992": 0.33, + "1993": 0.337, + "1994": 0.343, + "1995": 0.347, + "1996": 0.353, + "1997": 0.357, + "1998": 0.363, + "1999": 0.371, + "2000": 0.38, + "2001": 0.389, + "2002": 0.399, + "2003": 0.409, + "2004": 0.419, + "2005": 0.429, + "2006": 0.439, + "2007": 0.449, + "2008": 0.436, + "2009": 0.471, + "2010": 0.48, + "2011": 0.492, + "2012": 0.502, + "2013": 0.514, + "2014": 0.525, + "2015": 0.534, + "2016": 0.545, + "2017": 0.553, + "2018": 0.562, + "2019": 0.569, + "2020": 0.572, + "2021": 0.557 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr108", + "Region": "Magway", + "1990": 0.315, + "1991": 0.325, + "1992": 0.337, + "1993": 0.345, + "1994": 0.351, + "1995": 0.356, + "1996": 0.363, + "1997": 0.367, + "1998": 0.374, + "1999": 0.383, + "2000": 0.393, + "2001": 0.403, + "2002": 0.414, + "2003": 0.426, + "2004": 0.437, + "2005": 0.449, + "2006": 0.46, + "2007": 0.471, + "2008": 0.459, + "2009": 0.495, + "2010": 0.505, + "2011": 0.517, + "2012": 0.528, + "2013": 0.541, + "2014": 0.553, + "2015": 0.563, + "2016": 0.575, + "2017": 0.582, + "2018": 0.592, + "2019": 0.6, + "2020": 0.603, + "2021": 0.587 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr109", + "Region": "Mandalay, NayPyitaw", + "1990": 0.342, + "1991": 0.353, + "1992": 0.365, + "1993": 0.372, + "1994": 0.379, + "1995": 0.384, + "1996": 0.391, + "1997": 0.395, + "1998": 0.403, + "1999": 0.412, + "2000": 0.421, + "2001": 0.431, + "2002": 0.441, + "2003": 0.452, + "2004": 0.462, + "2005": 0.473, + "2006": 0.483, + "2007": 0.493, + "2008": 0.479, + "2009": 0.516, + "2010": 0.525, + "2011": 0.536, + "2012": 0.546, + "2013": 0.559, + "2014": 0.57, + "2015": 0.579, + "2016": 0.59, + "2017": 0.598, + "2018": 0.608, + "2019": 0.616, + "2020": 0.618, + "2021": 0.602 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr110", + "Region": "Mon", + "1990": 0.339, + "1991": 0.35, + "1992": 0.362, + "1993": 0.37, + "1994": 0.376, + "1995": 0.381, + "1996": 0.388, + "1997": 0.392, + "1998": 0.399, + "1999": 0.408, + "2000": 0.417, + "2001": 0.427, + "2002": 0.438, + "2003": 0.449, + "2004": 0.46, + "2005": 0.472, + "2006": 0.483, + "2007": 0.494, + "2008": 0.48, + "2009": 0.517, + "2010": 0.527, + "2011": 0.54, + "2012": 0.55, + "2013": 0.564, + "2014": 0.576, + "2015": 0.586, + "2016": 0.598, + "2017": 0.606, + "2018": 0.616, + "2019": 0.624, + "2020": 0.626, + "2021": 0.61 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr111", + "Region": "Rakhine", + "1990": 0.299, + "1991": 0.31, + "1992": 0.322, + "1993": 0.329, + "1994": 0.336, + "1995": 0.34, + "1996": 0.347, + "1997": 0.351, + "1998": 0.358, + "1999": 0.367, + "2000": 0.376, + "2001": 0.385, + "2002": 0.395, + "2003": 0.405, + "2004": 0.415, + "2005": 0.425, + "2006": 0.435, + "2007": 0.445, + "2008": 0.432, + "2009": 0.465, + "2010": 0.474, + "2011": 0.484, + "2012": 0.493, + "2013": 0.505, + "2014": 0.514, + "2015": 0.523, + "2016": 0.533, + "2017": 0.54, + "2018": 0.549, + "2019": 0.557, + "2020": 0.559, + "2021": 0.544 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr105", + "Region": "Sagaing", + "1990": 0.322, + "1991": 0.333, + "1992": 0.345, + "1993": 0.352, + "1994": 0.359, + "1995": 0.363, + "1996": 0.37, + "1997": 0.374, + "1998": 0.381, + "1999": 0.39, + "2000": 0.399, + "2001": 0.408, + "2002": 0.419, + "2003": 0.429, + "2004": 0.439, + "2005": 0.449, + "2006": 0.459, + "2007": 0.469, + "2008": 0.456, + "2009": 0.491, + "2010": 0.5, + "2011": 0.511, + "2012": 0.521, + "2013": 0.533, + "2014": 0.543, + "2015": 0.552, + "2016": 0.562, + "2017": 0.57, + "2018": 0.58, + "2019": 0.588, + "2020": 0.59, + "2021": 0.574 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr113", + "Region": "Shan", + "1990": 0.311, + "1991": 0.321, + "1992": 0.333, + "1993": 0.34, + "1994": 0.346, + "1995": 0.35, + "1996": 0.356, + "1997": 0.36, + "1998": 0.366, + "1999": 0.374, + "2000": 0.383, + "2001": 0.389, + "2002": 0.396, + "2003": 0.404, + "2004": 0.411, + "2005": 0.419, + "2006": 0.426, + "2007": 0.433, + "2008": 0.418, + "2009": 0.449, + "2010": 0.454, + "2011": 0.462, + "2012": 0.469, + "2013": 0.478, + "2014": 0.484, + "2015": 0.49, + "2016": 0.497, + "2017": 0.504, + "2018": 0.512, + "2019": 0.519, + "2020": 0.521, + "2021": 0.508 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr106", + "Region": "Taninthayi", + "1990": 0.344, + "1991": 0.354, + "1992": 0.367, + "1993": 0.374, + "1994": 0.381, + "1995": 0.386, + "1996": 0.393, + "1997": 0.397, + "1998": 0.405, + "1999": 0.414, + "2000": 0.423, + "2001": 0.431, + "2002": 0.441, + "2003": 0.45, + "2004": 0.46, + "2005": 0.469, + "2006": 0.478, + "2007": 0.487, + "2008": 0.471, + "2009": 0.507, + "2010": 0.514, + "2011": 0.525, + "2012": 0.533, + "2013": 0.544, + "2014": 0.554, + "2015": 0.561, + "2016": 0.571, + "2017": 0.578, + "2018": 0.588, + "2019": 0.596, + "2020": 0.598, + "2021": 0.583 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr112", + "Region": "Yangon", + "1990": 0.393, + "1991": 0.404, + "1992": 0.417, + "1993": 0.425, + "1994": 0.432, + "1995": 0.437, + "1996": 0.445, + "1997": 0.45, + "1998": 0.458, + "1999": 0.468, + "2000": 0.478, + "2001": 0.488, + "2002": 0.499, + "2003": 0.51, + "2004": 0.521, + "2005": 0.532, + "2006": 0.543, + "2007": 0.554, + "2008": 0.538, + "2009": 0.578, + "2010": 0.587, + "2011": 0.6, + "2012": 0.611, + "2013": 0.625, + "2014": 0.636, + "2015": 0.646, + "2016": 0.658, + "2017": 0.666, + "2018": 0.677, + "2019": 0.686, + "2020": 0.689, + "2021": 0.672 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "National", + "GDLCODE": "NAMt", + "Region": "Total", + "1990": 0.579, + "1991": 0.585, + "1992": 0.588, + "1993": 0.588, + "1994": 0.587, + "1995": 0.582, + "1996": 0.571, + "1997": 0.562, + "1998": 0.557, + "1999": 0.548, + "2000": 0.546, + "2001": 0.543, + "2002": 0.545, + "2003": 0.548, + "2004": 0.552, + "2005": 0.555, + "2006": 0.561, + "2007": 0.569, + "2008": 0.576, + "2009": 0.581, + "2010": 0.585, + "2011": 0.592, + "2012": 0.601, + "2013": 0.611, + "2014": 0.621, + "2015": 0.628, + "2016": 0.632, + "2017": 0.635, + "2018": 0.636, + "2019": 0.639, + "2020": 0.633, + "2021": 0.615 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr101", + "Region": "Caprivi", + "1990": 0.533, + "1991": 0.539, + "1992": 0.542, + "1993": 0.541, + "1994": 0.54, + "1995": 0.536, + "1996": 0.526, + "1997": 0.519, + "1998": 0.514, + "1999": 0.507, + "2000": 0.505, + "2001": 0.5, + "2002": 0.499, + "2003": 0.499, + "2004": 0.499, + "2005": 0.497, + "2006": 0.498, + "2007": 0.509, + "2008": 0.519, + "2009": 0.528, + "2010": 0.536, + "2011": 0.546, + "2012": 0.558, + "2013": 0.572, + "2014": 0.581, + "2015": 0.589, + "2016": 0.593, + "2017": 0.595, + "2018": 0.596, + "2019": 0.599, + "2020": 0.593, + "2021": 0.575 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr102", + "Region": "Erongo", + "1990": 0.713, + "1991": 0.719, + "1992": 0.722, + "1993": 0.721, + "1994": 0.72, + "1995": 0.713, + "1996": 0.701, + "1997": 0.691, + "1998": 0.685, + "1999": 0.675, + "2000": 0.672, + "2001": 0.656, + "2002": 0.644, + "2003": 0.635, + "2004": 0.626, + "2005": 0.616, + "2006": 0.611, + "2007": 0.618, + "2008": 0.625, + "2009": 0.63, + "2010": 0.634, + "2011": 0.64, + "2012": 0.649, + "2013": 0.66, + "2014": 0.67, + "2015": 0.678, + "2016": 0.683, + "2017": 0.686, + "2018": 0.687, + "2019": 0.69, + "2020": 0.684, + "2021": 0.665 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr103", + "Region": "Hardap", + "1990": 0.588, + "1991": 0.594, + "1992": 0.597, + "1993": 0.596, + "1994": 0.595, + "1995": 0.589, + "1996": 0.578, + "1997": 0.57, + "1998": 0.564, + "1999": 0.556, + "2000": 0.553, + "2001": 0.547, + "2002": 0.546, + "2003": 0.545, + "2004": 0.546, + "2005": 0.546, + "2006": 0.549, + "2007": 0.561, + "2008": 0.572, + "2009": 0.581, + "2010": 0.59, + "2011": 0.601, + "2012": 0.614, + "2013": 0.629, + "2014": 0.639, + "2015": 0.646, + "2016": 0.651, + "2017": 0.654, + "2018": 0.655, + "2019": 0.657, + "2020": 0.652, + "2021": 0.633 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr104", + "Region": "Karas", + "1990": 0.646, + "1991": 0.652, + "1992": 0.655, + "1993": 0.654, + "1994": 0.653, + "1995": 0.646, + "1996": 0.634, + "1997": 0.625, + "1998": 0.619, + "1999": 0.609, + "2000": 0.607, + "2001": 0.598, + "2002": 0.595, + "2003": 0.593, + "2004": 0.592, + "2005": 0.59, + "2006": 0.592, + "2007": 0.6, + "2008": 0.607, + "2009": 0.612, + "2010": 0.617, + "2011": 0.624, + "2012": 0.633, + "2013": 0.644, + "2014": 0.654, + "2015": 0.662, + "2016": 0.667, + "2017": 0.669, + "2018": 0.671, + "2019": 0.673, + "2020": 0.668, + "2021": 0.649 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr108", + "Region": "Kavango", + "1990": 0.536, + "1991": 0.542, + "1992": 0.545, + "1993": 0.544, + "1994": 0.544, + "1995": 0.539, + "1996": 0.528, + "1997": 0.521, + "1998": 0.515, + "1999": 0.507, + "2000": 0.505, + "2001": 0.5, + "2002": 0.499, + "2003": 0.499, + "2004": 0.5, + "2005": 0.499, + "2006": 0.503, + "2007": 0.506, + "2008": 0.509, + "2009": 0.509, + "2010": 0.51, + "2011": 0.512, + "2012": 0.516, + "2013": 0.522, + "2014": 0.53, + "2015": 0.537, + "2016": 0.54, + "2017": 0.542, + "2018": 0.543, + "2019": 0.546, + "2020": 0.54, + "2021": 0.524 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr105", + "Region": "Khomas", + "1990": 0.651, + "1991": 0.657, + "1992": 0.659, + "1993": 0.658, + "1994": 0.657, + "1995": 0.651, + "1996": 0.639, + "1997": 0.63, + "1998": 0.624, + "1999": 0.615, + "2000": 0.612, + "2001": 0.613, + "2002": 0.62, + "2003": 0.628, + "2004": 0.636, + "2005": 0.644, + "2006": 0.655, + "2007": 0.662, + "2008": 0.668, + "2009": 0.671, + "2010": 0.674, + "2011": 0.679, + "2012": 0.687, + "2013": 0.697, + "2014": 0.707, + "2015": 0.716, + "2016": 0.721, + "2017": 0.724, + "2018": 0.725, + "2019": 0.728, + "2020": 0.722, + "2021": 0.702 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr106", + "Region": "Kunene", + "1990": 0.513, + "1991": 0.518, + "1992": 0.521, + "1993": 0.52, + "1994": 0.519, + "1995": 0.514, + "1996": 0.505, + "1997": 0.497, + "1998": 0.493, + "1999": 0.485, + "2000": 0.483, + "2001": 0.476, + "2002": 0.473, + "2003": 0.471, + "2004": 0.47, + "2005": 0.467, + "2006": 0.468, + "2007": 0.479, + "2008": 0.489, + "2009": 0.498, + "2010": 0.506, + "2011": 0.516, + "2012": 0.528, + "2013": 0.542, + "2014": 0.55, + "2015": 0.556, + "2016": 0.56, + "2017": 0.562, + "2018": 0.563, + "2019": 0.566, + "2020": 0.56, + "2021": 0.544 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr107", + "Region": "Ohangwena", + "1990": 0.499, + "1991": 0.505, + "1992": 0.509, + "1993": 0.509, + "1994": 0.509, + "1995": 0.504, + "1996": 0.494, + "1997": 0.487, + "1998": 0.482, + "1999": 0.474, + "2000": 0.473, + "2001": 0.471, + "2002": 0.473, + "2003": 0.476, + "2004": 0.48, + "2005": 0.481, + "2006": 0.487, + "2007": 0.495, + "2008": 0.502, + "2009": 0.507, + "2010": 0.513, + "2011": 0.519, + "2012": 0.528, + "2013": 0.539, + "2014": 0.547, + "2015": 0.554, + "2016": 0.558, + "2017": 0.56, + "2018": 0.561, + "2019": 0.563, + "2020": 0.557, + "2021": 0.541 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr109", + "Region": "Omaheke", + "1990": 0.492, + "1991": 0.497, + "1992": 0.5, + "1993": 0.5, + "1994": 0.499, + "1995": 0.495, + "1996": 0.485, + "1997": 0.478, + "1998": 0.473, + "1999": 0.466, + "2000": 0.464, + "2001": 0.47, + "2002": 0.479, + "2003": 0.489, + "2004": 0.499, + "2005": 0.508, + "2006": 0.521, + "2007": 0.527, + "2008": 0.533, + "2009": 0.536, + "2010": 0.54, + "2011": 0.545, + "2012": 0.552, + "2013": 0.561, + "2014": 0.569, + "2015": 0.576, + "2016": 0.58, + "2017": 0.583, + "2018": 0.584, + "2019": 0.586, + "2020": 0.581, + "2021": 0.564 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr110", + "Region": "Omusati", + "1990": 0.527, + "1991": 0.533, + "1992": 0.537, + "1993": 0.537, + "1994": 0.537, + "1995": 0.532, + "1996": 0.522, + "1997": 0.514, + "1998": 0.509, + "1999": 0.5, + "2000": 0.499, + "2001": 0.498, + "2002": 0.501, + "2003": 0.505, + "2004": 0.51, + "2005": 0.513, + "2006": 0.521, + "2007": 0.53, + "2008": 0.539, + "2009": 0.545, + "2010": 0.552, + "2011": 0.56, + "2012": 0.571, + "2013": 0.583, + "2014": 0.592, + "2015": 0.599, + "2016": 0.602, + "2017": 0.605, + "2018": 0.606, + "2019": 0.608, + "2020": 0.602, + "2021": 0.585 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr111", + "Region": "Oshana", + "1990": 0.582, + "1991": 0.588, + "1992": 0.592, + "1993": 0.591, + "1994": 0.59, + "1995": 0.585, + "1996": 0.574, + "1997": 0.565, + "1998": 0.56, + "1999": 0.551, + "2000": 0.549, + "2001": 0.545, + "2002": 0.546, + "2003": 0.549, + "2004": 0.553, + "2005": 0.555, + "2006": 0.561, + "2007": 0.571, + "2008": 0.58, + "2009": 0.588, + "2010": 0.595, + "2011": 0.604, + "2012": 0.616, + "2013": 0.629, + "2014": 0.639, + "2015": 0.646, + "2016": 0.651, + "2017": 0.653, + "2018": 0.654, + "2019": 0.657, + "2020": 0.651, + "2021": 0.633 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr112", + "Region": "Oshikoto", + "1990": 0.55, + "1991": 0.556, + "1992": 0.559, + "1993": 0.558, + "1994": 0.558, + "1995": 0.552, + "1996": 0.542, + "1997": 0.533, + "1998": 0.528, + "1999": 0.519, + "2000": 0.517, + "2001": 0.517, + "2002": 0.52, + "2003": 0.525, + "2004": 0.531, + "2005": 0.535, + "2006": 0.543, + "2007": 0.549, + "2008": 0.554, + "2009": 0.557, + "2010": 0.56, + "2011": 0.565, + "2012": 0.572, + "2013": 0.581, + "2014": 0.59, + "2015": 0.597, + "2016": 0.601, + "2017": 0.604, + "2018": 0.604, + "2019": 0.607, + "2020": 0.601, + "2021": 0.584 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr113", + "Region": "Otjozondjupa", + "1990": 0.571, + "1991": 0.577, + "1992": 0.58, + "1993": 0.579, + "1994": 0.578, + "1995": 0.573, + "1996": 0.562, + "1997": 0.554, + "1998": 0.549, + "1999": 0.541, + "2000": 0.538, + "2001": 0.532, + "2002": 0.53, + "2003": 0.53, + "2004": 0.53, + "2005": 0.529, + "2006": 0.532, + "2007": 0.543, + "2008": 0.552, + "2009": 0.56, + "2010": 0.568, + "2011": 0.577, + "2012": 0.589, + "2013": 0.602, + "2014": 0.611, + "2015": 0.619, + "2016": 0.623, + "2017": 0.626, + "2018": 0.627, + "2019": 0.629, + "2020": 0.624, + "2021": 0.606 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "National", + "GDLCODE": "NPLt", + "Region": "Total", + "1990": 0.399, + "1991": 0.408, + "1992": 0.416, + "1993": 0.421, + "1994": 0.428, + "1995": 0.433, + "1996": 0.442, + "1997": 0.449, + "1998": 0.455, + "1999": 0.461, + "2000": 0.467, + "2001": 0.469, + "2002": 0.476, + "2003": 0.482, + "2004": 0.489, + "2005": 0.495, + "2006": 0.505, + "2007": 0.509, + "2008": 0.518, + "2009": 0.53, + "2010": 0.543, + "2011": 0.553, + "2012": 0.561, + "2013": 0.57, + "2014": 0.576, + "2015": 0.579, + "2016": 0.586, + "2017": 0.594, + "2018": 0.601, + "2019": 0.611, + "2020": 0.604, + "2021": 0.602 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr102", + "Region": "Central", + "1990": 0.402, + "1991": 0.41, + "1992": 0.418, + "1993": 0.423, + "1994": 0.431, + "1995": 0.436, + "1996": 0.445, + "1997": 0.45, + "1998": 0.454, + "1999": 0.459, + "2000": 0.464, + "2001": 0.464, + "2002": 0.475, + "2003": 0.485, + "2004": 0.495, + "2005": 0.505, + "2006": 0.518, + "2007": 0.52, + "2008": 0.526, + "2009": 0.535, + "2010": 0.545, + "2011": 0.552, + "2012": 0.561, + "2013": 0.571, + "2014": 0.578, + "2015": 0.582, + "2016": 0.589, + "2017": 0.581, + "2018": 0.573, + "2019": 0.566, + "2020": 0.56, + "2021": 0.557 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr101", + "Region": "Eastern", + "1990": 0.428, + "1991": 0.437, + "1992": 0.446, + "1993": 0.451, + "1994": 0.459, + "1995": 0.464, + "1996": 0.473, + "1997": 0.476, + "1998": 0.478, + "1999": 0.48, + "2000": 0.482, + "2001": 0.479, + "2002": 0.485, + "2003": 0.489, + "2004": 0.494, + "2005": 0.499, + "2006": 0.508, + "2007": 0.514, + "2008": 0.526, + "2009": 0.54, + "2010": 0.555, + "2011": 0.567, + "2012": 0.572, + "2013": 0.577, + "2014": 0.581, + "2015": 0.58, + "2016": 0.584, + "2017": 0.591, + "2018": 0.598, + "2019": 0.607, + "2020": 0.6, + "2021": 0.598 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr105", + "Region": "Far-western", + "1990": 0.369, + "1991": 0.377, + "1992": 0.385, + "1993": 0.389, + "1994": 0.396, + "1995": 0.401, + "1996": 0.409, + "1997": 0.416, + "1998": 0.421, + "1999": 0.427, + "2000": 0.433, + "2001": 0.433, + "2002": 0.442, + "2003": 0.449, + "2004": 0.456, + "2005": 0.462, + "2006": 0.472, + "2007": 0.476, + "2008": 0.485, + "2009": 0.496, + "2010": 0.509, + "2011": 0.518, + "2012": 0.528, + "2013": 0.539, + "2014": 0.548, + "2015": 0.553, + "2016": 0.562, + "2017": 0.572, + "2018": 0.581, + "2019": 0.592, + "2020": 0.586, + "2021": 0.583 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr106", + "Region": "Karnali Province", + "1990": 0.551, + "1991": 0.561, + "1992": 0.572, + "1993": 0.579, + "1994": 0.588, + "1995": 0.595, + "1996": 0.606, + "1997": 0.605, + "1998": 0.603, + "1999": 0.601, + "2000": 0.599, + "2001": 0.593, + "2002": 0.586, + "2003": 0.58, + "2004": 0.574, + "2005": 0.568, + "2006": 0.566, + "2007": 0.556, + "2008": 0.551, + "2009": 0.55, + "2010": 0.549, + "2011": 0.545, + "2012": 0.549, + "2013": 0.553, + "2014": 0.555, + "2015": 0.554, + "2016": 0.556, + "2017": 0.556, + "2018": 0.556, + "2019": 0.558, + "2020": 0.552, + "2021": 0.55 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr104", + "Region": "Mid-western", + "1990": 0.355, + "1991": 0.362, + "1992": 0.37, + "1993": 0.374, + "1994": 0.381, + "1995": 0.385, + "1996": 0.393, + "1997": 0.406, + "1998": 0.418, + "1999": 0.429, + "2000": 0.441, + "2001": 0.448, + "2002": 0.454, + "2003": 0.459, + "2004": 0.464, + "2005": 0.468, + "2006": 0.476, + "2007": 0.48, + "2008": 0.489, + "2009": 0.501, + "2010": 0.515, + "2011": 0.524, + "2012": 0.533, + "2013": 0.542, + "2014": 0.549, + "2015": 0.553, + "2016": 0.561, + "2017": 0.586, + "2018": 0.611, + "2019": 0.637, + "2020": 0.63, + "2021": 0.627 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr107", + "Region": "Sudoorpaschim Province", + "1990": 0.575, + "1991": 0.586, + "1992": 0.597, + "1993": 0.604, + "1994": 0.614, + "1995": 0.621, + "1996": 0.632, + "1997": 0.631, + "1998": 0.629, + "1999": 0.627, + "2000": 0.625, + "2001": 0.618, + "2002": 0.612, + "2003": 0.605, + "2004": 0.599, + "2005": 0.593, + "2006": 0.59, + "2007": 0.58, + "2008": 0.575, + "2009": 0.574, + "2010": 0.573, + "2011": 0.569, + "2012": 0.573, + "2013": 0.577, + "2014": 0.58, + "2015": 0.578, + "2016": 0.58, + "2017": 0.58, + "2018": 0.58, + "2019": 0.582, + "2020": 0.576, + "2021": 0.573 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr103", + "Region": "Western", + "1990": 0.41, + "1991": 0.418, + "1992": 0.427, + "1993": 0.431, + "1994": 0.439, + "1995": 0.444, + "1996": 0.453, + "1997": 0.463, + "1998": 0.471, + "1999": 0.479, + "2000": 0.488, + "2001": 0.491, + "2002": 0.497, + "2003": 0.501, + "2004": 0.505, + "2005": 0.509, + "2006": 0.517, + "2007": 0.522, + "2008": 0.532, + "2009": 0.545, + "2010": 0.559, + "2011": 0.57, + "2012": 0.579, + "2013": 0.589, + "2014": 0.596, + "2015": 0.6, + "2016": 0.608, + "2017": 0.629, + "2018": 0.648, + "2019": 0.669, + "2020": 0.662, + "2021": 0.659 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "National", + "GDLCODE": "NLDt", + "Region": "Total", + "1990": 0.847, + "1991": 0.852, + "1992": 0.853, + "1993": 0.855, + "1994": 0.881, + "1995": 0.878, + "1996": 0.882, + "1997": 0.883, + "1998": 0.886, + "1999": 0.888, + "2000": 0.893, + "2001": 0.895, + "2002": 0.892, + "2003": 0.894, + "2004": 0.897, + "2005": 0.899, + "2006": 0.906, + "2007": 0.912, + "2008": 0.912, + "2009": 0.913, + "2010": 0.917, + "2011": 0.927, + "2012": 0.927, + "2013": 0.929, + "2014": 0.931, + "2015": 0.932, + "2016": 0.933, + "2017": 0.937, + "2018": 0.939, + "2019": 0.943, + "2020": 0.939, + "2021": 0.941 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr103", + "Region": "Drenthe", + "1990": 0.822, + "1991": 0.827, + "1992": 0.828, + "1993": 0.83, + "1994": 0.856, + "1995": 0.853, + "1996": 0.857, + "1997": 0.858, + "1998": 0.86, + "1999": 0.862, + "2000": 0.868, + "2001": 0.87, + "2002": 0.866, + "2003": 0.871, + "2004": 0.872, + "2005": 0.878, + "2006": 0.884, + "2007": 0.888, + "2008": 0.89, + "2009": 0.887, + "2010": 0.89, + "2011": 0.899, + "2012": 0.899, + "2013": 0.902, + "2014": 0.906, + "2015": 0.903, + "2016": 0.903, + "2017": 0.906, + "2018": 0.913, + "2019": 0.918, + "2020": 0.914, + "2021": 0.917 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr106", + "Region": "Flevoland", + "1990": 0.826, + "1991": 0.831, + "1992": 0.832, + "1993": 0.834, + "1994": 0.859, + "1995": 0.856, + "1996": 0.86, + "1997": 0.862, + "1998": 0.864, + "1999": 0.866, + "2000": 0.871, + "2001": 0.874, + "2002": 0.871, + "2003": 0.872, + "2004": 0.879, + "2005": 0.88, + "2006": 0.885, + "2007": 0.891, + "2008": 0.892, + "2009": 0.89, + "2010": 0.895, + "2011": 0.903, + "2012": 0.903, + "2013": 0.904, + "2014": 0.911, + "2015": 0.909, + "2016": 0.909, + "2017": 0.922, + "2018": 0.92, + "2019": 0.924, + "2020": 0.921, + "2021": 0.923 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr102", + "Region": "Friesland", + "1990": 0.826, + "1991": 0.831, + "1992": 0.832, + "1993": 0.834, + "1994": 0.86, + "1995": 0.857, + "1996": 0.861, + "1997": 0.862, + "1998": 0.864, + "1999": 0.866, + "2000": 0.872, + "2001": 0.873, + "2002": 0.869, + "2003": 0.874, + "2004": 0.875, + "2005": 0.878, + "2006": 0.882, + "2007": 0.892, + "2008": 0.889, + "2009": 0.891, + "2010": 0.896, + "2011": 0.906, + "2012": 0.905, + "2013": 0.905, + "2014": 0.907, + "2015": 0.905, + "2016": 0.905, + "2017": 0.912, + "2018": 0.915, + "2019": 0.918, + "2020": 0.914, + "2021": 0.916 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr105", + "Region": "Gelderland", + "1990": 0.837, + "1991": 0.842, + "1992": 0.843, + "1993": 0.845, + "1994": 0.871, + "1995": 0.868, + "1996": 0.872, + "1997": 0.873, + "1998": 0.876, + "1999": 0.878, + "2000": 0.883, + "2001": 0.885, + "2002": 0.881, + "2003": 0.883, + "2004": 0.884, + "2005": 0.886, + "2006": 0.896, + "2007": 0.9, + "2008": 0.901, + "2009": 0.903, + "2010": 0.906, + "2011": 0.916, + "2012": 0.915, + "2013": 0.919, + "2014": 0.922, + "2015": 0.922, + "2016": 0.922, + "2017": 0.926, + "2018": 0.928, + "2019": 0.932, + "2020": 0.928, + "2021": 0.93 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr101", + "Region": "Groningen", + "1990": 0.857, + "1991": 0.862, + "1992": 0.863, + "1993": 0.865, + "1994": 0.889, + "1995": 0.889, + "1996": 0.893, + "1997": 0.894, + "1998": 0.896, + "1999": 0.898, + "2000": 0.904, + "2001": 0.906, + "2002": 0.903, + "2003": 0.904, + "2004": 0.908, + "2005": 0.913, + "2006": 0.921, + "2007": 0.925, + "2008": 0.926, + "2009": 0.923, + "2010": 0.929, + "2011": 0.932, + "2012": 0.932, + "2013": 0.934, + "2014": 0.93, + "2015": 0.929, + "2016": 0.928, + "2017": 0.93, + "2018": 0.931, + "2019": 0.932, + "2020": 0.928, + "2021": 0.93 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr112", + "Region": "Limburg", + "1990": 0.827, + "1991": 0.832, + "1992": 0.832, + "1993": 0.834, + "1994": 0.86, + "1995": 0.857, + "1996": 0.861, + "1997": 0.863, + "1998": 0.865, + "1999": 0.867, + "2000": 0.872, + "2001": 0.876, + "2002": 0.872, + "2003": 0.874, + "2004": 0.877, + "2005": 0.879, + "2006": 0.885, + "2007": 0.893, + "2008": 0.892, + "2009": 0.894, + "2010": 0.896, + "2011": 0.909, + "2012": 0.907, + "2013": 0.911, + "2014": 0.911, + "2015": 0.913, + "2016": 0.917, + "2017": 0.923, + "2018": 0.927, + "2019": 0.929, + "2020": 0.925, + "2021": 0.927 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr111", + "Region": "Noord-Brabant", + "1990": 0.842, + "1991": 0.847, + "1992": 0.848, + "1993": 0.85, + "1994": 0.876, + "1995": 0.873, + "1996": 0.878, + "1997": 0.879, + "1998": 0.881, + "1999": 0.883, + "2000": 0.888, + "2001": 0.891, + "2002": 0.886, + "2003": 0.889, + "2004": 0.892, + "2005": 0.895, + "2006": 0.902, + "2007": 0.907, + "2008": 0.907, + "2009": 0.908, + "2010": 0.913, + "2011": 0.923, + "2012": 0.924, + "2013": 0.925, + "2014": 0.927, + "2015": 0.929, + "2016": 0.93, + "2017": 0.935, + "2018": 0.939, + "2019": 0.942, + "2020": 0.938, + "2021": 0.941 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr108", + "Region": "Noord-Holland", + "1990": 0.862, + "1991": 0.867, + "1992": 0.868, + "1993": 0.87, + "1994": 0.896, + "1995": 0.893, + "1996": 0.897, + "1997": 0.899, + "1998": 0.901, + "1999": 0.903, + "2000": 0.908, + "2001": 0.91, + "2002": 0.91, + "2003": 0.912, + "2004": 0.915, + "2005": 0.916, + "2006": 0.923, + "2007": 0.926, + "2008": 0.926, + "2009": 0.929, + "2010": 0.934, + "2011": 0.942, + "2012": 0.941, + "2013": 0.944, + "2014": 0.947, + "2015": 0.949, + "2016": 0.949, + "2017": 0.957, + "2018": 0.959, + "2019": 0.963, + "2020": 0.96, + "2021": 0.962 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr104", + "Region": "Overijssel", + "1990": 0.833, + "1991": 0.838, + "1992": 0.838, + "1993": 0.84, + "1994": 0.867, + "1995": 0.864, + "1996": 0.868, + "1997": 0.869, + "1998": 0.871, + "1999": 0.873, + "2000": 0.879, + "2001": 0.88, + "2002": 0.877, + "2003": 0.879, + "2004": 0.882, + "2005": 0.885, + "2006": 0.891, + "2007": 0.9, + "2008": 0.9, + "2009": 0.9, + "2010": 0.905, + "2011": 0.916, + "2012": 0.916, + "2013": 0.916, + "2014": 0.919, + "2015": 0.919, + "2016": 0.921, + "2017": 0.926, + "2018": 0.927, + "2019": 0.929, + "2020": 0.925, + "2021": 0.927 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr107", + "Region": "Utrecht", + "1990": 0.87, + "1991": 0.875, + "1992": 0.876, + "1993": 0.878, + "1994": 0.904, + "1995": 0.901, + "1996": 0.905, + "1997": 0.907, + "1998": 0.909, + "1999": 0.911, + "2000": 0.917, + "2001": 0.919, + "2002": 0.916, + "2003": 0.919, + "2004": 0.918, + "2005": 0.921, + "2006": 0.926, + "2007": 0.933, + "2008": 0.934, + "2009": 0.937, + "2010": 0.94, + "2011": 0.949, + "2012": 0.95, + "2013": 0.952, + "2014": 0.952, + "2015": 0.953, + "2016": 0.953, + "2017": 0.959, + "2018": 0.962, + "2019": 0.965, + "2020": 0.961, + "2021": 0.964 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr110", + "Region": "Zeeland", + "1990": 0.818, + "1991": 0.823, + "1992": 0.824, + "1993": 0.826, + "1994": 0.851, + "1995": 0.848, + "1996": 0.852, + "1997": 0.853, + "1998": 0.856, + "1999": 0.858, + "2000": 0.863, + "2001": 0.867, + "2002": 0.865, + "2003": 0.871, + "2004": 0.869, + "2005": 0.87, + "2006": 0.877, + "2007": 0.884, + "2008": 0.884, + "2009": 0.887, + "2010": 0.889, + "2011": 0.9, + "2012": 0.897, + "2013": 0.897, + "2014": 0.905, + "2015": 0.907, + "2016": 0.906, + "2017": 0.912, + "2018": 0.915, + "2019": 0.918, + "2020": 0.914, + "2021": 0.917 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr109", + "Region": "Zuid-Holland", + "1990": 0.849, + "1991": 0.854, + "1992": 0.855, + "1993": 0.857, + "1994": 0.884, + "1995": 0.881, + "1996": 0.885, + "1997": 0.886, + "1998": 0.888, + "1999": 0.89, + "2000": 0.896, + "2001": 0.898, + "2002": 0.894, + "2003": 0.896, + "2004": 0.898, + "2005": 0.901, + "2006": 0.907, + "2007": 0.913, + "2008": 0.915, + "2009": 0.914, + "2010": 0.917, + "2011": 0.927, + "2012": 0.927, + "2013": 0.93, + "2014": 0.931, + "2015": 0.932, + "2016": 0.933, + "2017": 0.938, + "2018": 0.939, + "2019": 0.942, + "2020": 0.938, + "2021": 0.941 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "National", + "GDLCODE": "NZLt", + "Region": "Total", + "1990": 0.806, + "1991": 0.811, + "1992": 0.818, + "1993": 0.833, + "1994": 0.846, + "1995": 0.853, + "1996": 0.857, + "1997": 0.865, + "1998": 0.874, + "1999": 0.878, + "2000": 0.887, + "2001": 0.894, + "2002": 0.897, + "2003": 0.903, + "2004": 0.906, + "2005": 0.912, + "2006": 0.913, + "2007": 0.916, + "2008": 0.915, + "2009": 0.919, + "2010": 0.922, + "2011": 0.922, + "2012": 0.924, + "2013": 0.929, + "2014": 0.93, + "2015": 0.931, + "2016": 0.934, + "2017": 0.935, + "2018": 0.936, + "2019": 0.937, + "2020": 0.936, + "2021": 0.937 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr102", + "Region": "Auckland", + "1990": 0.824, + "1991": 0.829, + "1992": 0.837, + "1993": 0.852, + "1994": 0.866, + "1995": 0.873, + "1996": 0.878, + "1997": 0.886, + "1998": 0.895, + "1999": 0.899, + "2000": 0.909, + "2001": 0.912, + "2002": 0.915, + "2003": 0.921, + "2004": 0.924, + "2005": 0.929, + "2006": 0.929, + "2007": 0.931, + "2008": 0.93, + "2009": 0.931, + "2010": 0.935, + "2011": 0.935, + "2012": 0.937, + "2013": 0.942, + "2014": 0.942, + "2015": 0.945, + "2016": 0.948, + "2017": 0.949, + "2018": 0.95, + "2019": 0.951, + "2020": 0.95, + "2021": 0.951 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr104", + "Region": "Bay of Plenty", + "1990": 0.785, + "1991": 0.79, + "1992": 0.796, + "1993": 0.81, + "1994": 0.822, + "1995": 0.828, + "1996": 0.832, + "1997": 0.839, + "1998": 0.848, + "1999": 0.852, + "2000": 0.861, + "2001": 0.868, + "2002": 0.871, + "2003": 0.876, + "2004": 0.88, + "2005": 0.885, + "2006": 0.887, + "2007": 0.894, + "2008": 0.894, + "2009": 0.897, + "2010": 0.903, + "2011": 0.906, + "2012": 0.908, + "2013": 0.913, + "2014": 0.913, + "2015": 0.913, + "2016": 0.914, + "2017": 0.919, + "2018": 0.92, + "2019": 0.921, + "2020": 0.92, + "2021": 0.921 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr113", + "Region": "Canterbury", + "1990": 0.802, + "1991": 0.806, + "1992": 0.814, + "1993": 0.829, + "1994": 0.842, + "1995": 0.849, + "1996": 0.853, + "1997": 0.861, + "1998": 0.87, + "1999": 0.874, + "2000": 0.883, + "2001": 0.889, + "2002": 0.893, + "2003": 0.899, + "2004": 0.903, + "2005": 0.909, + "2006": 0.911, + "2007": 0.914, + "2008": 0.912, + "2009": 0.916, + "2010": 0.919, + "2011": 0.92, + "2012": 0.923, + "2013": 0.928, + "2014": 0.931, + "2015": 0.932, + "2016": 0.934, + "2017": 0.936, + "2018": 0.936, + "2019": 0.938, + "2020": 0.937, + "2021": 0.938 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr105", + "Region": "Gisborne", + "1990": 0.763, + "1991": 0.767, + "1992": 0.773, + "1993": 0.785, + "1994": 0.796, + "1995": 0.801, + "1996": 0.803, + "1997": 0.811, + "1998": 0.82, + "1999": 0.824, + "2000": 0.833, + "2001": 0.84, + "2002": 0.842, + "2003": 0.846, + "2004": 0.846, + "2005": 0.85, + "2006": 0.849, + "2007": 0.857, + "2008": 0.856, + "2009": 0.864, + "2010": 0.869, + "2011": 0.873, + "2012": 0.876, + "2013": 0.882, + "2014": 0.881, + "2015": 0.884, + "2016": 0.881, + "2017": 0.888, + "2018": 0.889, + "2019": 0.892, + "2020": 0.892, + "2021": 0.893 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr106", + "Region": "Hawkes Bay", + "1990": 0.78, + "1991": 0.785, + "1992": 0.792, + "1993": 0.806, + "1994": 0.819, + "1995": 0.825, + "1996": 0.83, + "1997": 0.837, + "1998": 0.845, + "1999": 0.849, + "2000": 0.857, + "2001": 0.864, + "2002": 0.868, + "2003": 0.873, + "2004": 0.877, + "2005": 0.883, + "2006": 0.883, + "2007": 0.887, + "2008": 0.883, + "2009": 0.889, + "2010": 0.894, + "2011": 0.897, + "2012": 0.899, + "2013": 0.906, + "2014": 0.906, + "2015": 0.907, + "2016": 0.903, + "2017": 0.911, + "2018": 0.912, + "2019": 0.913, + "2020": 0.912, + "2021": 0.913 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr108", + "Region": "Manawatu-Wanganui", + "1990": 0.777, + "1991": 0.781, + "1992": 0.789, + "1993": 0.803, + "1994": 0.816, + "1995": 0.823, + "1996": 0.827, + "1997": 0.834, + "1998": 0.842, + "1999": 0.845, + "2000": 0.854, + "2001": 0.86, + "2002": 0.865, + "2003": 0.869, + "2004": 0.873, + "2005": 0.879, + "2006": 0.882, + "2007": 0.885, + "2008": 0.885, + "2009": 0.888, + "2010": 0.894, + "2011": 0.895, + "2012": 0.897, + "2013": 0.901, + "2014": 0.902, + "2015": 0.903, + "2016": 0.899, + "2017": 0.907, + "2018": 0.908, + "2019": 0.91, + "2020": 0.909, + "2021": 0.91 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr111", + "Region": "Marlborough", + "1990": 0.793, + "1991": 0.798, + "1992": 0.804, + "1993": 0.817, + "1994": 0.829, + "1995": 0.834, + "1996": 0.837, + "1997": 0.845, + "1998": 0.853, + "1999": 0.857, + "2000": 0.866, + "2001": 0.874, + "2002": 0.879, + "2003": 0.883, + "2004": 0.889, + "2005": 0.894, + "2006": 0.896, + "2007": 0.903, + "2008": 0.905, + "2009": 0.91, + "2010": 0.912, + "2011": 0.912, + "2012": 0.917, + "2013": 0.923, + "2014": 0.927, + "2015": 0.929, + "2016": 0.926, + "2017": 0.933, + "2018": 0.933, + "2019": 0.935, + "2020": 0.934, + "2021": 0.935 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr101", + "Region": "Northland", + "1990": 0.768, + "1991": 0.772, + "1992": 0.779, + "1993": 0.792, + "1994": 0.804, + "1995": 0.81, + "1996": 0.814, + "1997": 0.821, + "1998": 0.829, + "1999": 0.832, + "2000": 0.841, + "2001": 0.849, + "2002": 0.854, + "2003": 0.856, + "2004": 0.86, + "2005": 0.868, + "2006": 0.872, + "2007": 0.878, + "2008": 0.878, + "2009": 0.882, + "2010": 0.883, + "2011": 0.887, + "2012": 0.889, + "2013": 0.893, + "2014": 0.895, + "2015": 0.897, + "2016": 0.893, + "2017": 0.901, + "2018": 0.902, + "2019": 0.904, + "2020": 0.903, + "2021": 0.904 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr114", + "Region": "Otago", + "1990": 0.801, + "1991": 0.806, + "1992": 0.813, + "1993": 0.828, + "1994": 0.841, + "1995": 0.848, + "1996": 0.853, + "1997": 0.861, + "1998": 0.869, + "1999": 0.873, + "2000": 0.882, + "2001": 0.89, + "2002": 0.895, + "2003": 0.901, + "2004": 0.905, + "2005": 0.91, + "2006": 0.911, + "2007": 0.913, + "2008": 0.911, + "2009": 0.915, + "2010": 0.919, + "2011": 0.918, + "2012": 0.919, + "2013": 0.923, + "2014": 0.924, + "2015": 0.925, + "2016": 0.929, + "2017": 0.93, + "2018": 0.93, + "2019": 0.931, + "2020": 0.931, + "2021": 0.932 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr115", + "Region": "Southland", + "1990": 0.775, + "1991": 0.779, + "1992": 0.787, + "1993": 0.801, + "1994": 0.814, + "1995": 0.821, + "1996": 0.825, + "1997": 0.832, + "1998": 0.84, + "1999": 0.843, + "2000": 0.851, + "2001": 0.862, + "2002": 0.867, + "2003": 0.869, + "2004": 0.872, + "2005": 0.875, + "2006": 0.878, + "2007": 0.884, + "2008": 0.887, + "2009": 0.894, + "2010": 0.898, + "2011": 0.902, + "2012": 0.904, + "2013": 0.906, + "2014": 0.911, + "2015": 0.908, + "2016": 0.902, + "2017": 0.91, + "2018": 0.911, + "2019": 0.918, + "2020": 0.917, + "2021": 0.918 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr107", + "Region": "Taranaki", + "1990": 0.798, + "1991": 0.802, + "1992": 0.81, + "1993": 0.826, + "1994": 0.84, + "1995": 0.847, + "1996": 0.853, + "1997": 0.859, + "1998": 0.867, + "1999": 0.869, + "2000": 0.877, + "2001": 0.89, + "2002": 0.892, + "2003": 0.893, + "2004": 0.894, + "2005": 0.897, + "2006": 0.898, + "2007": 0.908, + "2008": 0.923, + "2009": 0.928, + "2010": 0.929, + "2011": 0.931, + "2012": 0.932, + "2013": 0.936, + "2014": 0.936, + "2015": 0.936, + "2016": 0.926, + "2017": 0.934, + "2018": 0.935, + "2019": 0.939, + "2020": 0.938, + "2021": 0.939 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr110", + "Region": "Tasman - Nelson", + "1990": 0.804, + "1991": 0.808, + "1992": 0.814, + "1993": 0.827, + "1994": 0.839, + "1995": 0.844, + "1996": 0.847, + "1997": 0.855, + "1998": 0.864, + "1999": 0.867, + "2000": 0.877, + "2001": 0.883, + "2002": 0.888, + "2003": 0.892, + "2004": 0.896, + "2005": 0.902, + "2006": 0.901, + "2007": 0.907, + "2008": 0.905, + "2009": 0.909, + "2010": 0.913, + "2011": 0.914, + "2012": 0.914, + "2013": 0.919, + "2014": 0.92, + "2015": 0.921, + "2016": 0.924, + "2017": 0.925, + "2018": 0.926, + "2019": 0.927, + "2020": 0.926, + "2021": 0.927 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr103", + "Region": "Waikato", + "1990": 0.789, + "1991": 0.793, + "1992": 0.801, + "1993": 0.816, + "1994": 0.829, + "1995": 0.836, + "1996": 0.841, + "1997": 0.849, + "1998": 0.859, + "1999": 0.864, + "2000": 0.875, + "2001": 0.886, + "2002": 0.889, + "2003": 0.888, + "2004": 0.89, + "2005": 0.893, + "2006": 0.894, + "2007": 0.901, + "2008": 0.9, + "2009": 0.906, + "2010": 0.908, + "2011": 0.91, + "2012": 0.913, + "2013": 0.915, + "2014": 0.918, + "2015": 0.917, + "2016": 0.916, + "2017": 0.921, + "2018": 0.922, + "2019": 0.923, + "2020": 0.922, + "2021": 0.923 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr109", + "Region": "Wellington", + "1990": 0.834, + "1991": 0.839, + "1992": 0.847, + "1993": 0.862, + "1994": 0.876, + "1995": 0.883, + "1996": 0.888, + "1997": 0.896, + "1998": 0.904, + "1999": 0.907, + "2000": 0.916, + "2001": 0.919, + "2002": 0.923, + "2003": 0.927, + "2004": 0.93, + "2005": 0.934, + "2006": 0.935, + "2007": 0.937, + "2008": 0.936, + "2009": 0.94, + "2010": 0.944, + "2011": 0.943, + "2012": 0.946, + "2013": 0.95, + "2014": 0.95, + "2015": 0.952, + "2016": 0.955, + "2017": 0.956, + "2018": 0.956, + "2019": 0.957, + "2020": 0.957, + "2021": 0.958 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr112", + "Region": "West Coast", + "1990": 0.76, + "1991": 0.764, + "1992": 0.772, + "1993": 0.786, + "1994": 0.799, + "1995": 0.805, + "1996": 0.81, + "1997": 0.818, + "1998": 0.827, + "1999": 0.831, + "2000": 0.841, + "2001": 0.852, + "2002": 0.856, + "2003": 0.857, + "2004": 0.863, + "2005": 0.868, + "2006": 0.875, + "2007": 0.881, + "2008": 0.885, + "2009": 0.893, + "2010": 0.894, + "2011": 0.897, + "2012": 0.901, + "2013": 0.903, + "2014": 0.905, + "2015": 0.903, + "2016": 0.897, + "2017": 0.905, + "2018": 0.906, + "2019": 0.913, + "2020": 0.913, + "2021": 0.914 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "National", + "GDLCODE": "NICt", + "Region": "Total", + "1990": 0.49, + "1991": 0.5, + "1992": 0.505, + "1993": 0.508, + "1994": 0.513, + "1995": 0.522, + "1996": 0.532, + "1997": 0.542, + "1998": 0.544, + "1999": 0.559, + "2000": 0.566, + "2001": 0.571, + "2002": 0.575, + "2003": 0.578, + "2004": 0.582, + "2005": 0.588, + "2006": 0.593, + "2007": 0.599, + "2008": 0.605, + "2009": 0.606, + "2010": 0.614, + "2011": 0.622, + "2012": 0.629, + "2013": 0.634, + "2014": 0.641, + "2015": 0.647, + "2016": 0.653, + "2017": 0.659, + "2018": 0.662, + "2019": 0.664, + "2020": 0.654, + "2021": 0.667 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr103", + "Region": "Atlantico (Rio San Juan, Atlantico Norte (Raan), Atlantico Sur (Raas))", + "1990": 0.421, + "1991": 0.43, + "1992": 0.434, + "1993": 0.436, + "1994": 0.441, + "1995": 0.449, + "1996": 0.458, + "1997": 0.466, + "1998": 0.468, + "1999": 0.476, + "2000": 0.477, + "2001": 0.475, + "2002": 0.482, + "2003": 0.487, + "2004": 0.494, + "2005": 0.501, + "2006": 0.508, + "2007": 0.516, + "2008": 0.518, + "2009": 0.516, + "2010": 0.519, + "2011": 0.523, + "2012": 0.525, + "2013": 0.53, + "2014": 0.536, + "2015": 0.541, + "2016": 0.546, + "2017": 0.552, + "2018": 0.554, + "2019": 0.556, + "2020": 0.546, + "2021": 0.558 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr102", + "Region": "Central-Norte (Boaco, Chontales, Jinotega, Matagalpa, Esteli, Madriz, Nueva Segovia)", + "1990": 0.43, + "1991": 0.439, + "1992": 0.443, + "1993": 0.445, + "1994": 0.45, + "1995": 0.458, + "1996": 0.468, + "1997": 0.476, + "1998": 0.478, + "1999": 0.495, + "2000": 0.505, + "2001": 0.513, + "2002": 0.526, + "2003": 0.537, + "2004": 0.55, + "2005": 0.563, + "2006": 0.576, + "2007": 0.589, + "2008": 0.589, + "2009": 0.585, + "2010": 0.586, + "2011": 0.587, + "2012": 0.587, + "2013": 0.592, + "2014": 0.599, + "2015": 0.604, + "2016": 0.61, + "2017": 0.616, + "2018": 0.618, + "2019": 0.621, + "2020": 0.611, + "2021": 0.623 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr101", + "Region": "Pacifico (Chinandega, Leon, Managua, Masaya, Granada, Carazo, Rivas)", + "1990": 0.529, + "1991": 0.54, + "1992": 0.545, + "1993": 0.548, + "1994": 0.554, + "1995": 0.563, + "1996": 0.574, + "1997": 0.584, + "1998": 0.586, + "1999": 0.605, + "2000": 0.616, + "2001": 0.624, + "2002": 0.623, + "2003": 0.621, + "2004": 0.621, + "2005": 0.623, + "2006": 0.624, + "2007": 0.626, + "2008": 0.636, + "2009": 0.64, + "2010": 0.652, + "2011": 0.665, + "2012": 0.676, + "2013": 0.682, + "2014": 0.689, + "2015": 0.695, + "2016": 0.702, + "2017": 0.709, + "2018": 0.711, + "2019": 0.714, + "2020": 0.703, + "2021": 0.717 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "National", + "GDLCODE": "NERt", + "Region": "Total", + "1990": 0.216, + "1991": 0.218, + "1992": 0.222, + "1993": 0.227, + "1994": 0.232, + "1995": 0.238, + "1996": 0.243, + "1997": 0.248, + "1998": 0.256, + "1999": 0.259, + "2000": 0.262, + "2001": 0.268, + "2002": 0.274, + "2003": 0.278, + "2004": 0.289, + "2005": 0.298, + "2006": 0.306, + "2007": 0.311, + "2008": 0.32, + "2009": 0.327, + "2010": 0.338, + "2011": 0.346, + "2012": 0.354, + "2013": 0.362, + "2014": 0.37, + "2015": 0.376, + "2016": 0.383, + "2017": 0.39, + "2018": 0.399, + "2019": 0.406, + "2020": 0.401, + "2021": 0.4 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr101", + "Region": "Agadez", + "1990": 0.333, + "1991": 0.337, + "1992": 0.343, + "1993": 0.351, + "1994": 0.36, + "1995": 0.369, + "1996": 0.378, + "1997": 0.386, + "1998": 0.397, + "1999": 0.395, + "2000": 0.393, + "2001": 0.393, + "2002": 0.393, + "2003": 0.392, + "2004": 0.397, + "2005": 0.401, + "2006": 0.402, + "2007": 0.406, + "2008": 0.416, + "2009": 0.422, + "2010": 0.434, + "2011": 0.441, + "2012": 0.45, + "2013": 0.459, + "2014": 0.469, + "2015": 0.476, + "2016": 0.486, + "2017": 0.494, + "2018": 0.504, + "2019": 0.514, + "2020": 0.508, + "2021": 0.507 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr102", + "Region": "Diffa", + "1990": 0.24, + "1991": 0.242, + "1992": 0.246, + "1993": 0.251, + "1994": 0.257, + "1995": 0.263, + "1996": 0.269, + "1997": 0.274, + "1998": 0.283, + "1999": 0.281, + "2000": 0.279, + "2001": 0.281, + "2002": 0.282, + "2003": 0.282, + "2004": 0.289, + "2005": 0.294, + "2006": 0.297, + "2007": 0.301, + "2008": 0.309, + "2009": 0.314, + "2010": 0.324, + "2011": 0.33, + "2012": 0.337, + "2013": 0.344, + "2014": 0.352, + "2015": 0.357, + "2016": 0.365, + "2017": 0.371, + "2018": 0.379, + "2019": 0.386, + "2020": 0.381, + "2021": 0.381 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr103", + "Region": "Dosso", + "1990": 0.219, + "1991": 0.22, + "1992": 0.224, + "1993": 0.229, + "1994": 0.234, + "1995": 0.24, + "1996": 0.246, + "1997": 0.251, + "1998": 0.258, + "1999": 0.261, + "2000": 0.264, + "2001": 0.269, + "2002": 0.275, + "2003": 0.279, + "2004": 0.289, + "2005": 0.299, + "2006": 0.306, + "2007": 0.308, + "2008": 0.314, + "2009": 0.317, + "2010": 0.325, + "2011": 0.329, + "2012": 0.334, + "2013": 0.341, + "2014": 0.349, + "2015": 0.355, + "2016": 0.362, + "2017": 0.368, + "2018": 0.376, + "2019": 0.384, + "2020": 0.379, + "2021": 0.378 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr104", + "Region": "Maradi", + "1990": 0.199, + "1991": 0.201, + "1992": 0.204, + "1993": 0.209, + "1994": 0.213, + "1995": 0.219, + "1996": 0.224, + "1997": 0.228, + "1998": 0.235, + "1999": 0.239, + "2000": 0.242, + "2001": 0.247, + "2002": 0.252, + "2003": 0.257, + "2004": 0.266, + "2005": 0.275, + "2006": 0.282, + "2007": 0.288, + "2008": 0.298, + "2009": 0.306, + "2010": 0.318, + "2011": 0.327, + "2012": 0.336, + "2013": 0.343, + "2014": 0.351, + "2015": 0.357, + "2016": 0.364, + "2017": 0.37, + "2018": 0.378, + "2019": 0.386, + "2020": 0.381, + "2021": 0.38 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr106", + "Region": "Tahoua", + "1990": 0.172, + "1991": 0.173, + "1992": 0.176, + "1993": 0.18, + "1994": 0.184, + "1995": 0.189, + "1996": 0.193, + "1997": 0.197, + "1998": 0.203, + "1999": 0.21, + "2000": 0.215, + "2001": 0.223, + "2002": 0.23, + "2003": 0.236, + "2004": 0.248, + "2005": 0.258, + "2006": 0.267, + "2007": 0.272, + "2008": 0.281, + "2009": 0.287, + "2010": 0.297, + "2011": 0.304, + "2012": 0.312, + "2013": 0.319, + "2014": 0.326, + "2015": 0.331, + "2016": 0.338, + "2017": 0.344, + "2018": 0.351, + "2019": 0.358, + "2020": 0.354, + "2021": 0.353 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr105", + "Region": "Tillabery (incl Niamey)", + "1990": 0.262, + "1991": 0.265, + "1992": 0.27, + "1993": 0.276, + "1994": 0.282, + "1995": 0.29, + "1996": 0.296, + "1997": 0.303, + "1998": 0.312, + "1999": 0.317, + "2000": 0.322, + "2001": 0.33, + "2002": 0.337, + "2003": 0.344, + "2004": 0.357, + "2005": 0.369, + "2006": 0.379, + "2007": 0.387, + "2008": 0.399, + "2009": 0.408, + "2010": 0.422, + "2011": 0.432, + "2012": 0.443, + "2013": 0.452, + "2014": 0.462, + "2015": 0.469, + "2016": 0.478, + "2017": 0.487, + "2018": 0.497, + "2019": 0.506, + "2020": 0.5, + "2021": 0.499 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr107", + "Region": "Zinder", + "1990": 0.197, + "1991": 0.198, + "1992": 0.201, + "1993": 0.206, + "1994": 0.211, + "1995": 0.216, + "1996": 0.221, + "1997": 0.225, + "1998": 0.232, + "1999": 0.234, + "2000": 0.235, + "2001": 0.239, + "2002": 0.243, + "2003": 0.246, + "2004": 0.254, + "2005": 0.261, + "2006": 0.266, + "2007": 0.273, + "2008": 0.284, + "2009": 0.292, + "2010": 0.304, + "2011": 0.312, + "2012": 0.321, + "2013": 0.328, + "2014": 0.335, + "2015": 0.341, + "2016": 0.348, + "2017": 0.354, + "2018": 0.362, + "2019": 0.369, + "2020": 0.364, + "2021": 0.363 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "National", + "GDLCODE": "NGAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.45, + "2004": 0.462, + "2005": 0.469, + "2006": 0.477, + "2007": 0.48, + "2008": 0.484, + "2009": 0.484, + "2010": 0.482, + "2011": 0.492, + "2012": 0.499, + "2013": 0.506, + "2014": 0.512, + "2015": 0.516, + "2016": 0.521, + "2017": 0.526, + "2018": 0.531, + "2019": 0.538, + "2020": 0.535, + "2021": 0.535 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr122", + "Region": "Abia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.557, + "2004": 0.565, + "2005": 0.566, + "2006": 0.568, + "2007": 0.564, + "2008": 0.56, + "2009": 0.559, + "2010": 0.556, + "2011": 0.567, + "2012": 0.573, + "2013": 0.581, + "2014": 0.594, + "2015": 0.604, + "2016": 0.615, + "2017": 0.627, + "2018": 0.64, + "2019": 0.648, + "2020": 0.645, + "2021": 0.644 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr137", + "Region": "Abuja FCT", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.485, + "2004": 0.517, + "2005": 0.543, + "2006": 0.57, + "2007": 0.59, + "2008": 0.611, + "2009": 0.616, + "2010": 0.618, + "2011": 0.635, + "2012": 0.649, + "2013": 0.664, + "2014": 0.66, + "2015": 0.654, + "2016": 0.649, + "2017": 0.645, + "2018": 0.641, + "2019": 0.649, + "2020": 0.646, + "2021": 0.646 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr108", + "Region": "Adamawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.428, + "2004": 0.432, + "2005": 0.432, + "2006": 0.432, + "2007": 0.428, + "2008": 0.425, + "2009": 0.435, + "2010": 0.445, + "2011": 0.464, + "2012": 0.48, + "2013": 0.498, + "2014": 0.497, + "2015": 0.494, + "2016": 0.49, + "2017": 0.486, + "2018": 0.481, + "2019": 0.487, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr101", + "Region": "Akwa Ibom", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.516, + "2004": 0.528, + "2005": 0.535, + "2006": 0.542, + "2007": 0.544, + "2008": 0.548, + "2009": 0.554, + "2010": 0.559, + "2011": 0.577, + "2012": 0.591, + "2013": 0.607, + "2014": 0.607, + "2015": 0.605, + "2016": 0.604, + "2017": 0.604, + "2018": 0.603, + "2019": 0.611, + "2020": 0.608, + "2021": 0.608 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr102", + "Region": "Anambra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.587, + "2004": 0.589, + "2005": 0.585, + "2006": 0.582, + "2007": 0.573, + "2008": 0.565, + "2009": 0.575, + "2010": 0.582, + "2011": 0.604, + "2012": 0.622, + "2013": 0.641, + "2014": 0.646, + "2015": 0.648, + "2016": 0.65, + "2017": 0.654, + "2018": 0.658, + "2019": 0.666, + "2020": 0.663, + "2021": 0.662 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr103", + "Region": "Bauchi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.307, + "2004": 0.314, + "2005": 0.318, + "2006": 0.322, + "2007": 0.323, + "2008": 0.325, + "2009": 0.332, + "2010": 0.338, + "2011": 0.352, + "2012": 0.363, + "2013": 0.375, + "2014": 0.386, + "2015": 0.395, + "2016": 0.403, + "2017": 0.413, + "2018": 0.422, + "2019": 0.427, + "2020": 0.425, + "2021": 0.425 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr131", + "Region": "Bayelsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.451, + "2004": 0.468, + "2005": 0.481, + "2006": 0.494, + "2007": 0.502, + "2008": 0.511, + "2009": 0.525, + "2010": 0.537, + "2011": 0.562, + "2012": 0.584, + "2013": 0.607, + "2014": 0.617, + "2015": 0.623, + "2016": 0.631, + "2017": 0.639, + "2018": 0.646, + "2019": 0.654, + "2020": 0.651, + "2021": 0.651 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr105", + "Region": "Benue", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.477, + "2004": 0.481, + "2005": 0.481, + "2006": 0.481, + "2007": 0.477, + "2008": 0.473, + "2009": 0.479, + "2010": 0.483, + "2011": 0.498, + "2012": 0.509, + "2013": 0.522, + "2014": 0.539, + "2015": 0.554, + "2016": 0.568, + "2017": 0.584, + "2018": 0.6, + "2019": 0.607, + "2020": 0.604, + "2021": 0.604 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr106", + "Region": "Borno", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.409, + "2004": 0.396, + "2005": 0.377, + "2006": 0.357, + "2007": 0.333, + "2008": 0.307, + "2009": 0.33, + "2010": 0.352, + "2011": 0.381, + "2012": 0.408, + "2013": 0.436, + "2014": 0.453, + "2015": 0.467, + "2016": 0.481, + "2017": 0.495, + "2018": 0.509, + "2019": 0.515, + "2020": 0.513, + "2021": 0.512 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr107", + "Region": "Cross River", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.523, + "2004": 0.533, + "2005": 0.537, + "2006": 0.542, + "2007": 0.542, + "2008": 0.543, + "2009": 0.542, + "2010": 0.54, + "2011": 0.55, + "2012": 0.557, + "2013": 0.564, + "2014": 0.575, + "2015": 0.582, + "2016": 0.591, + "2017": 0.6, + "2018": 0.609, + "2019": 0.617, + "2020": 0.614, + "2021": 0.613 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr123", + "Region": "Delta", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.524, + "2004": 0.538, + "2005": 0.547, + "2006": 0.557, + "2007": 0.562, + "2008": 0.567, + "2009": 0.571, + "2010": 0.572, + "2011": 0.587, + "2012": 0.599, + "2013": 0.612, + "2014": 0.622, + "2015": 0.63, + "2016": 0.638, + "2017": 0.648, + "2018": 0.657, + "2019": 0.665, + "2020": 0.663, + "2021": 0.662 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr132", + "Region": "Ebonyi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.423, + "2004": 0.441, + "2005": 0.454, + "2006": 0.467, + "2007": 0.476, + "2008": 0.485, + "2009": 0.486, + "2010": 0.485, + "2011": 0.494, + "2012": 0.501, + "2013": 0.508, + "2014": 0.521, + "2015": 0.532, + "2016": 0.543, + "2017": 0.554, + "2018": 0.565, + "2019": 0.572, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr104", + "Region": "Edo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.493, + "2004": 0.518, + "2005": 0.537, + "2006": 0.557, + "2007": 0.572, + "2008": 0.587, + "2009": 0.59, + "2010": 0.591, + "2011": 0.607, + "2012": 0.618, + "2013": 0.63, + "2014": 0.63, + "2015": 0.627, + "2016": 0.625, + "2017": 0.624, + "2018": 0.623, + "2019": 0.63, + "2020": 0.628, + "2021": 0.627 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr133", + "Region": "Ekiti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.514, + "2004": 0.532, + "2005": 0.545, + "2006": 0.559, + "2007": 0.567, + "2008": 0.576, + "2009": 0.579, + "2010": 0.58, + "2011": 0.595, + "2012": 0.606, + "2013": 0.619, + "2014": 0.618, + "2015": 0.615, + "2016": 0.613, + "2017": 0.611, + "2018": 0.61, + "2019": 0.617, + "2020": 0.615, + "2021": 0.614 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr124", + "Region": "Enugu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.56, + "2004": 0.557, + "2005": 0.55, + "2006": 0.542, + "2007": 0.53, + "2008": 0.518, + "2009": 0.522, + "2010": 0.525, + "2011": 0.539, + "2012": 0.55, + "2013": 0.562, + "2014": 0.578, + "2015": 0.591, + "2016": 0.605, + "2017": 0.62, + "2018": 0.635, + "2019": 0.643, + "2020": 0.64, + "2021": 0.64 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr134", + "Region": "Gombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.396, + "2004": 0.402, + "2005": 0.405, + "2006": 0.408, + "2007": 0.406, + "2008": 0.406, + "2009": 0.405, + "2010": 0.402, + "2011": 0.409, + "2012": 0.412, + "2013": 0.416, + "2014": 0.415, + "2015": 0.412, + "2016": 0.409, + "2017": 0.407, + "2018": 0.405, + "2019": 0.41, + "2020": 0.408, + "2021": 0.408 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr109", + "Region": "Imo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.681, + "2004": 0.661, + "2005": 0.635, + "2006": 0.609, + "2007": 0.577, + "2008": 0.546, + "2009": 0.549, + "2010": 0.549, + "2011": 0.563, + "2012": 0.573, + "2013": 0.585, + "2014": 0.598, + "2015": 0.608, + "2016": 0.619, + "2017": 0.631, + "2018": 0.643, + "2019": 0.651, + "2020": 0.648, + "2021": 0.647 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr125", + "Region": "Jigawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.258, + "2004": 0.275, + "2005": 0.288, + "2006": 0.302, + "2007": 0.311, + "2008": 0.321, + "2009": 0.324, + "2010": 0.327, + "2011": 0.336, + "2012": 0.344, + "2013": 0.352, + "2014": 0.365, + "2015": 0.376, + "2016": 0.386, + "2017": 0.397, + "2018": 0.407, + "2019": 0.412, + "2020": 0.41, + "2021": 0.409 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr110", + "Region": "Kaduna", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.45, + "2004": 0.464, + "2005": 0.473, + "2006": 0.482, + "2007": 0.487, + "2008": 0.492, + "2009": 0.5, + "2010": 0.506, + "2011": 0.523, + "2012": 0.537, + "2013": 0.552, + "2014": 0.545, + "2015": 0.535, + "2016": 0.526, + "2017": 0.517, + "2018": 0.507, + "2019": 0.513, + "2020": 0.511, + "2021": 0.511 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr111", + "Region": "Kano", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.399, + "2004": 0.406, + "2005": 0.409, + "2006": 0.412, + "2007": 0.411, + "2008": 0.411, + "2009": 0.416, + "2010": 0.42, + "2011": 0.433, + "2012": 0.443, + "2013": 0.455, + "2014": 0.461, + "2015": 0.465, + "2016": 0.469, + "2017": 0.474, + "2018": 0.478, + "2019": 0.484, + "2020": 0.482, + "2021": 0.481 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr112", + "Region": "Katsina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.392, + "2004": 0.385, + "2005": 0.374, + "2006": 0.363, + "2007": 0.348, + "2008": 0.332, + "2009": 0.336, + "2010": 0.338, + "2011": 0.347, + "2012": 0.354, + "2013": 0.362, + "2014": 0.382, + "2015": 0.399, + "2016": 0.415, + "2017": 0.432, + "2018": 0.448, + "2019": 0.453, + "2020": 0.451, + "2021": 0.451 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr126", + "Region": "Kebbi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.318, + "2004": 0.328, + "2005": 0.335, + "2006": 0.343, + "2007": 0.347, + "2008": 0.351, + "2009": 0.35, + "2010": 0.347, + "2011": 0.353, + "2012": 0.355, + "2013": 0.359, + "2014": 0.355, + "2015": 0.349, + "2016": 0.343, + "2017": 0.338, + "2018": 0.332, + "2019": 0.337, + "2020": 0.335, + "2021": 0.335 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr127", + "Region": "Kogi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.525, + "2004": 0.537, + "2005": 0.544, + "2006": 0.551, + "2007": 0.552, + "2008": 0.555, + "2009": 0.558, + "2010": 0.558, + "2011": 0.572, + "2012": 0.581, + "2013": 0.592, + "2014": 0.586, + "2015": 0.577, + "2016": 0.569, + "2017": 0.561, + "2018": 0.553, + "2019": 0.56, + "2020": 0.557, + "2021": 0.557 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr113", + "Region": "Kwara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.586, + "2004": 0.58, + "2005": 0.568, + "2006": 0.557, + "2007": 0.541, + "2008": 0.526, + "2009": 0.542, + "2010": 0.556, + "2011": 0.583, + "2012": 0.606, + "2013": 0.631, + "2014": 0.619, + "2015": 0.606, + "2016": 0.592, + "2017": 0.58, + "2018": 0.567, + "2019": 0.574, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr114", + "Region": "Lagos", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.608, + "2004": 0.619, + "2005": 0.626, + "2006": 0.634, + "2007": 0.636, + "2008": 0.64, + "2009": 0.634, + "2010": 0.626, + "2011": 0.634, + "2012": 0.638, + "2013": 0.643, + "2014": 0.651, + "2015": 0.656, + "2016": 0.662, + "2017": 0.669, + "2018": 0.676, + "2019": 0.685, + "2020": 0.682, + "2021": 0.681 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr135", + "Region": "Nassarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.436, + "2004": 0.454, + "2005": 0.467, + "2006": 0.48, + "2007": 0.489, + "2008": 0.498, + "2009": 0.5, + "2010": 0.501, + "2011": 0.513, + "2012": 0.521, + "2013": 0.531, + "2014": 0.541, + "2015": 0.548, + "2016": 0.555, + "2017": 0.563, + "2018": 0.571, + "2019": 0.579, + "2020": 0.576, + "2021": 0.575 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr115", + "Region": "Niger", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.43, + "2004": 0.434, + "2005": 0.432, + "2006": 0.43, + "2007": 0.424, + "2008": 0.419, + "2009": 0.43, + "2010": 0.439, + "2011": 0.459, + "2012": 0.476, + "2013": 0.494, + "2014": 0.493, + "2015": 0.49, + "2016": 0.486, + "2017": 0.484, + "2018": 0.481, + "2019": 0.487, + "2020": 0.485, + "2021": 0.484 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr116", + "Region": "Ogun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.508, + "2004": 0.516, + "2005": 0.52, + "2006": 0.525, + "2007": 0.524, + "2008": 0.525, + "2009": 0.529, + "2010": 0.532, + "2011": 0.547, + "2012": 0.558, + "2013": 0.571, + "2014": 0.592, + "2015": 0.609, + "2016": 0.628, + "2017": 0.647, + "2018": 0.666, + "2019": 0.674, + "2020": 0.671, + "2021": 0.671 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr117", + "Region": "Ondo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.521, + "2004": 0.536, + "2005": 0.546, + "2006": 0.556, + "2007": 0.561, + "2008": 0.567, + "2009": 0.566, + "2010": 0.563, + "2011": 0.574, + "2012": 0.58, + "2013": 0.587, + "2014": 0.592, + "2015": 0.595, + "2016": 0.598, + "2017": 0.602, + "2018": 0.606, + "2019": 0.613, + "2020": 0.611, + "2021": 0.61 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr128", + "Region": "Osun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.491, + "2004": 0.52, + "2005": 0.543, + "2006": 0.567, + "2007": 0.585, + "2008": 0.604, + "2009": 0.606, + "2010": 0.605, + "2011": 0.619, + "2012": 0.629, + "2013": 0.641, + "2014": 0.636, + "2015": 0.628, + "2016": 0.622, + "2017": 0.616, + "2018": 0.61, + "2019": 0.618, + "2020": 0.615, + "2021": 0.614 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr118", + "Region": "Oyo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.565, + "2004": 0.568, + "2005": 0.566, + "2006": 0.565, + "2007": 0.558, + "2008": 0.552, + "2009": 0.553, + "2010": 0.552, + "2011": 0.565, + "2012": 0.574, + "2013": 0.584, + "2014": 0.594, + "2015": 0.601, + "2016": 0.609, + "2017": 0.618, + "2018": 0.627, + "2019": 0.635, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr119", + "Region": "Plateau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.495, + "2004": 0.502, + "2005": 0.504, + "2006": 0.506, + "2007": 0.503, + "2008": 0.501, + "2009": 0.502, + "2010": 0.501, + "2011": 0.512, + "2012": 0.518, + "2013": 0.526, + "2014": 0.534, + "2015": 0.54, + "2016": 0.546, + "2017": 0.553, + "2018": 0.56, + "2019": 0.567, + "2020": 0.565, + "2021": 0.564 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr120", + "Region": "Rivers", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.531, + "2004": 0.542, + "2005": 0.548, + "2006": 0.555, + "2007": 0.557, + "2008": 0.56, + "2009": 0.566, + "2010": 0.57, + "2011": 0.588, + "2012": 0.602, + "2013": 0.618, + "2014": 0.624, + "2015": 0.627, + "2016": 0.632, + "2017": 0.638, + "2018": 0.643, + "2019": 0.651, + "2020": 0.649, + "2021": 0.648 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr121", + "Region": "Sokoto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.24, + "2004": 0.262, + "2005": 0.28, + "2006": 0.297, + "2007": 0.309, + "2008": 0.322, + "2009": 0.324, + "2010": 0.325, + "2011": 0.333, + "2012": 0.339, + "2013": 0.346, + "2014": 0.344, + "2015": 0.342, + "2016": 0.339, + "2017": 0.336, + "2018": 0.334, + "2019": 0.338, + "2020": 0.336, + "2021": 0.336 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr129", + "Region": "Taraba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.353, + "2004": 0.375, + "2005": 0.392, + "2006": 0.409, + "2007": 0.421, + "2008": 0.432, + "2009": 0.435, + "2010": 0.435, + "2011": 0.446, + "2012": 0.454, + "2013": 0.462, + "2014": 0.471, + "2015": 0.477, + "2016": 0.483, + "2017": 0.49, + "2018": 0.498, + "2019": 0.504, + "2020": 0.502, + "2021": 0.501 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr130", + "Region": "Yobe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.402, + "2004": 0.393, + "2005": 0.38, + "2006": 0.366, + "2007": 0.348, + "2008": 0.329, + "2009": 0.322, + "2010": 0.313, + "2011": 0.31, + "2012": 0.304, + "2013": 0.296, + "2014": 0.312, + "2015": 0.326, + "2016": 0.338, + "2017": 0.35, + "2018": 0.361, + "2019": 0.366, + "2020": 0.364, + "2021": 0.363 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr136", + "Region": "Zamfora", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.361, + "2004": 0.358, + "2005": 0.351, + "2006": 0.343, + "2007": 0.331, + "2008": 0.319, + "2009": 0.322, + "2010": 0.324, + "2011": 0.333, + "2012": 0.339, + "2013": 0.346, + "2014": 0.36, + "2015": 0.373, + "2016": 0.386, + "2017": 0.4, + "2018": 0.413, + "2019": 0.418, + "2020": 0.416, + "2021": 0.416 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "National", + "GDLCODE": "MKDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.675, + "2001": 0.679, + "2002": 0.683, + "2003": 0.688, + "2004": 0.694, + "2005": 0.699, + "2006": 0.707, + "2007": 0.711, + "2008": 0.73, + "2009": 0.733, + "2010": 0.738, + "2011": 0.741, + "2012": 0.743, + "2013": 0.75, + "2014": 0.755, + "2015": 0.762, + "2016": 0.767, + "2017": 0.773, + "2018": 0.779, + "2019": 0.784, + "2020": 0.774, + "2021": 0.77 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr108", + "Region": "East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.718, + "2001": 0.723, + "2002": 0.727, + "2003": 0.731, + "2004": 0.738, + "2005": 0.744, + "2006": 0.741, + "2007": 0.734, + "2008": 0.743, + "2009": 0.735, + "2010": 0.73, + "2011": 0.724, + "2012": 0.725, + "2013": 0.731, + "2014": 0.735, + "2015": 0.742, + "2016": 0.746, + "2017": 0.751, + "2018": 0.757, + "2019": 0.761, + "2020": 0.751, + "2021": 0.747 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr104", + "Region": "North East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.681, + "2001": 0.685, + "2002": 0.689, + "2003": 0.693, + "2004": 0.7, + "2005": 0.705, + "2006": 0.707, + "2007": 0.705, + "2008": 0.719, + "2009": 0.716, + "2010": 0.716, + "2011": 0.715, + "2012": 0.717, + "2013": 0.724, + "2014": 0.728, + "2015": 0.735, + "2016": 0.74, + "2017": 0.745, + "2018": 0.751, + "2019": 0.756, + "2020": 0.746, + "2021": 0.742 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr102", + "Region": "Pelagoniski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.664, + "2001": 0.668, + "2002": 0.673, + "2003": 0.677, + "2004": 0.684, + "2005": 0.689, + "2006": 0.699, + "2007": 0.706, + "2008": 0.727, + "2009": 0.733, + "2010": 0.74, + "2011": 0.746, + "2012": 0.747, + "2013": 0.753, + "2014": 0.757, + "2015": 0.764, + "2016": 0.768, + "2017": 0.773, + "2018": 0.778, + "2019": 0.782, + "2020": 0.772, + "2021": 0.768 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr107", + "Region": "Poloski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.675, + "2001": 0.679, + "2002": 0.683, + "2003": 0.688, + "2004": 0.694, + "2005": 0.699, + "2006": 0.703, + "2007": 0.703, + "2008": 0.719, + "2009": 0.718, + "2010": 0.719, + "2011": 0.72, + "2012": 0.723, + "2013": 0.73, + "2014": 0.735, + "2015": 0.743, + "2016": 0.748, + "2017": 0.755, + "2018": 0.762, + "2019": 0.767, + "2020": 0.757, + "2021": 0.753 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr101", + "Region": "Skopski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.679, + "2001": 0.683, + "2002": 0.687, + "2003": 0.691, + "2004": 0.698, + "2005": 0.703, + "2006": 0.715, + "2007": 0.722, + "2008": 0.745, + "2009": 0.751, + "2010": 0.759, + "2011": 0.766, + "2012": 0.767, + "2013": 0.774, + "2014": 0.777, + "2015": 0.784, + "2016": 0.788, + "2017": 0.793, + "2018": 0.798, + "2019": 0.802, + "2020": 0.792, + "2021": 0.788 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr106", + "Region": "South East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.614, + "2001": 0.618, + "2002": 0.622, + "2003": 0.626, + "2004": 0.632, + "2005": 0.637, + "2006": 0.651, + "2007": 0.661, + "2008": 0.685, + "2009": 0.693, + "2010": 0.704, + "2011": 0.713, + "2012": 0.712, + "2013": 0.717, + "2014": 0.719, + "2015": 0.724, + "2016": 0.726, + "2017": 0.729, + "2018": 0.733, + "2019": 0.736, + "2020": 0.726, + "2021": 0.722 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr105", + "Region": "South West", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.666, + "2001": 0.67, + "2002": 0.674, + "2003": 0.678, + "2004": 0.684, + "2005": 0.689, + "2006": 0.699, + "2007": 0.704, + "2008": 0.725, + "2009": 0.729, + "2010": 0.736, + "2011": 0.741, + "2012": 0.743, + "2013": 0.749, + "2014": 0.754, + "2015": 0.761, + "2016": 0.765, + "2017": 0.77, + "2018": 0.776, + "2019": 0.781, + "2020": 0.771, + "2021": 0.767 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr103", + "Region": "Vardarski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.689, + "2001": 0.694, + "2002": 0.698, + "2003": 0.703, + "2004": 0.709, + "2005": 0.715, + "2006": 0.719, + "2007": 0.719, + "2008": 0.734, + "2009": 0.734, + "2010": 0.735, + "2011": 0.736, + "2012": 0.738, + "2013": 0.745, + "2014": 0.75, + "2015": 0.757, + "2016": 0.762, + "2017": 0.768, + "2018": 0.775, + "2019": 0.78, + "2020": 0.77, + "2021": 0.766 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "National", + "GDLCODE": "NORt", + "Region": "Total", + "1990": 0.838, + "1991": 0.845, + "1992": 0.851, + "1993": 0.858, + "1994": 0.873, + "1995": 0.871, + "1996": 0.879, + "1997": 0.885, + "1998": 0.895, + "1999": 0.901, + "2000": 0.913, + "2001": 0.911, + "2002": 0.912, + "2003": 0.919, + "2004": 0.927, + "2005": 0.931, + "2006": 0.937, + "2007": 0.938, + "2008": 0.94, + "2009": 0.936, + "2010": 0.941, + "2011": 0.944, + "2012": 0.946, + "2013": 0.949, + "2014": 0.952, + "2015": 0.953, + "2016": 0.955, + "2017": 0.959, + "2018": 0.962, + "2019": 0.961, + "2020": 0.959, + "2021": 0.961 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr104", + "Region": "Agder og Rogaland", + "1990": 0.829, + "1991": 0.835, + "1992": 0.842, + "1993": 0.849, + "1994": 0.863, + "1995": 0.86, + "1996": 0.869, + "1997": 0.875, + "1998": 0.885, + "1999": 0.89, + "2000": 0.901, + "2001": 0.9, + "2002": 0.901, + "2003": 0.908, + "2004": 0.918, + "2005": 0.921, + "2006": 0.925, + "2007": 0.926, + "2008": 0.928, + "2009": 0.925, + "2010": 0.929, + "2011": 0.93, + "2012": 0.933, + "2013": 0.938, + "2014": 0.941, + "2015": 0.946, + "2016": 0.942, + "2017": 0.945, + "2018": 0.947, + "2019": 0.951, + "2020": 0.949, + "2021": 0.951 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr102", + "Region": "Hedmark og Oppland", + "1990": 0.805, + "1991": 0.811, + "1992": 0.817, + "1993": 0.824, + "1994": 0.838, + "1995": 0.837, + "1996": 0.844, + "1997": 0.849, + "1998": 0.858, + "1999": 0.865, + "2000": 0.878, + "2001": 0.875, + "2002": 0.87, + "2003": 0.882, + "2004": 0.892, + "2005": 0.896, + "2006": 0.898, + "2007": 0.9, + "2008": 0.899, + "2009": 0.898, + "2010": 0.903, + "2011": 0.908, + "2012": 0.907, + "2013": 0.91, + "2014": 0.915, + "2015": 0.922, + "2016": 0.924, + "2017": 0.929, + "2018": 0.929, + "2019": 0.93, + "2020": 0.928, + "2021": 0.93 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr107", + "Region": "Nord-Norge", + "1990": 0.807, + "1991": 0.814, + "1992": 0.819, + "1993": 0.827, + "1994": 0.842, + "1995": 0.84, + "1996": 0.846, + "1997": 0.852, + "1998": 0.862, + "1999": 0.87, + "2000": 0.882, + "2001": 0.88, + "2002": 0.883, + "2003": 0.888, + "2004": 0.899, + "2005": 0.904, + "2006": 0.904, + "2007": 0.906, + "2008": 0.908, + "2009": 0.91, + "2010": 0.915, + "2011": 0.915, + "2012": 0.915, + "2013": 0.921, + "2014": 0.927, + "2015": 0.932, + "2016": 0.936, + "2017": 0.94, + "2018": 0.944, + "2019": 0.942, + "2020": 0.94, + "2021": 0.942 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr101", + "Region": "Oslo og Akershus", + "1990": 0.853, + "1991": 0.862, + "1992": 0.867, + "1993": 0.873, + "1994": 0.89, + "1995": 0.888, + "1996": 0.896, + "1997": 0.904, + "1998": 0.912, + "1999": 0.918, + "2000": 0.931, + "2001": 0.931, + "2002": 0.93, + "2003": 0.938, + "2004": 0.945, + "2005": 0.954, + "2006": 0.956, + "2007": 0.956, + "2008": 0.958, + "2009": 0.959, + "2010": 0.961, + "2011": 0.963, + "2012": 0.965, + "2013": 0.967, + "2014": 0.969, + "2015": 0.962, + "2016": 0.971, + "2017": 0.974, + "2018": 0.976, + "2019": 0.979, + "2020": 0.98, + "2021": 0.98 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr103", + "Region": "Sor-Ostlandet", + "1990": 0.805, + "1991": 0.813, + "1992": 0.817, + "1993": 0.824, + "1994": 0.839, + "1995": 0.836, + "1996": 0.845, + "1997": 0.85, + "1998": 0.859, + "1999": 0.864, + "2000": 0.875, + "2001": 0.875, + "2002": 0.875, + "2003": 0.883, + "2004": 0.891, + "2005": 0.895, + "2006": 0.898, + "2007": 0.898, + "2008": 0.901, + "2009": 0.898, + "2010": 0.902, + "2011": 0.905, + "2012": 0.906, + "2013": 0.909, + "2014": 0.911, + "2015": 0.917, + "2016": 0.917, + "2017": 0.919, + "2018": 0.924, + "2019": 0.927, + "2020": 0.925, + "2021": 0.927 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr106", + "Region": "Trondelag", + "1990": 0.838, + "1991": 0.844, + "1992": 0.847, + "1993": 0.859, + "1994": 0.876, + "1995": 0.872, + "1996": 0.882, + "1997": 0.886, + "1998": 0.889, + "1999": 0.893, + "2000": 0.901, + "2001": 0.909, + "2002": 0.903, + "2003": 0.911, + "2004": 0.919, + "2005": 0.924, + "2006": 0.925, + "2007": 0.925, + "2008": 0.932, + "2009": 0.931, + "2010": 0.934, + "2011": 0.936, + "2012": 0.941, + "2013": 0.941, + "2014": 0.943, + "2015": 0.952, + "2016": 0.95, + "2017": 0.952, + "2018": 0.956, + "2019": 0.956, + "2020": 0.954, + "2021": 0.956 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr105", + "Region": "Vestlandet", + "1990": 0.838, + "1991": 0.844, + "1992": 0.85, + "1993": 0.855, + "1994": 0.873, + "1995": 0.871, + "1996": 0.878, + "1997": 0.883, + "1998": 0.894, + "1999": 0.899, + "2000": 0.912, + "2001": 0.913, + "2002": 0.913, + "2003": 0.919, + "2004": 0.93, + "2005": 0.934, + "2006": 0.937, + "2007": 0.935, + "2008": 0.94, + "2009": 0.94, + "2010": 0.943, + "2011": 0.944, + "2012": 0.945, + "2013": 0.95, + "2014": 0.954, + "2015": 0.955, + "2016": 0.953, + "2017": 0.958, + "2018": 0.958, + "2019": 0.958, + "2020": 0.956, + "2021": 0.958 + }, + { + "Country": "Oman", + "Continent": "Asia/Pacific", + "ISO_Code": "OMN", + "Level": "National", + "GDLCODE": "OMNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.705, + "2001": 0.716, + "2002": 0.723, + "2003": 0.731, + "2004": 0.739, + "2005": 0.745, + "2006": 0.753, + "2007": 0.762, + "2008": 0.772, + "2009": 0.783, + "2010": 0.788, + "2011": 0.793, + "2012": 0.802, + "2013": 0.809, + "2014": 0.814, + "2015": 0.823, + "2016": 0.833, + "2017": 0.831, + "2018": 0.834, + "2019": 0.839, + "2020": 0.827, + "2021": 0.816 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "National", + "GDLCODE": "PAKt", + "Region": "Total", + "1990": 0.4, + "1991": 0.404, + "1992": 0.409, + "1993": 0.41, + "1994": 0.414, + "1995": 0.417, + "1996": 0.423, + "1997": 0.425, + "1998": 0.43, + "1999": 0.435, + "2000": 0.441, + "2001": 0.448, + "2002": 0.454, + "2003": 0.462, + "2004": 0.475, + "2005": 0.484, + "2006": 0.493, + "2007": 0.499, + "2008": 0.498, + "2009": 0.502, + "2010": 0.505, + "2011": 0.508, + "2012": 0.513, + "2013": 0.518, + "2014": 0.527, + "2015": 0.534, + "2016": 0.541, + "2017": 0.543, + "2018": 0.545, + "2019": 0.546, + "2020": 0.543, + "2021": 0.544 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr107", + "Region": "AJK", + "1990": 0.464, + "1991": 0.47, + "1992": 0.475, + "1993": 0.476, + "1994": 0.482, + "1995": 0.484, + "1996": 0.493, + "1997": 0.497, + "1998": 0.504, + "1999": 0.513, + "2000": 0.521, + "2001": 0.531, + "2002": 0.539, + "2003": 0.55, + "2004": 0.567, + "2005": 0.575, + "2006": 0.591, + "2007": 0.598, + "2008": 0.592, + "2009": 0.593, + "2010": 0.593, + "2011": 0.593, + "2012": 0.594, + "2013": 0.594, + "2014": 0.598, + "2015": 0.6, + "2016": 0.602, + "2017": 0.598, + "2018": 0.595, + "2019": 0.597, + "2020": 0.592, + "2021": 0.592 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr104", + "Region": "Balochistan", + "1990": 0.38, + "1991": 0.384, + "1992": 0.388, + "1993": 0.39, + "1994": 0.393, + "1995": 0.396, + "1996": 0.401, + "1997": 0.404, + "1998": 0.408, + "1999": 0.413, + "2000": 0.418, + "2001": 0.424, + "2002": 0.43, + "2003": 0.437, + "2004": 0.45, + "2005": 0.458, + "2006": 0.467, + "2007": 0.473, + "2008": 0.461, + "2009": 0.455, + "2010": 0.448, + "2011": 0.44, + "2012": 0.434, + "2013": 0.439, + "2014": 0.447, + "2015": 0.453, + "2016": 0.46, + "2017": 0.462, + "2018": 0.464, + "2019": 0.465, + "2020": 0.462, + "2021": 0.463 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr108", + "Region": "FATA", + "1990": 0.374, + "1991": 0.378, + "1992": 0.382, + "1993": 0.383, + "1994": 0.387, + "1995": 0.389, + "1996": 0.394, + "1997": 0.396, + "1998": 0.4, + "1999": 0.405, + "2000": 0.409, + "2001": 0.415, + "2002": 0.42, + "2003": 0.427, + "2004": 0.44, + "2005": 0.449, + "2006": 0.457, + "2007": 0.463, + "2008": 0.459, + "2009": 0.459, + "2010": 0.457, + "2011": 0.456, + "2012": 0.456, + "2013": 0.455, + "2014": 0.458, + "2015": 0.459, + "2016": 0.46, + "2017": 0.457, + "2018": 0.455, + "2019": 0.458, + "2020": 0.455, + "2021": 0.456 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr106", + "Region": "Gilgit Baltistan", + "1990": 0.422, + "1991": 0.426, + "1992": 0.43, + "1993": 0.432, + "1994": 0.436, + "1995": 0.439, + "1996": 0.444, + "1997": 0.446, + "1998": 0.451, + "1999": 0.456, + "2000": 0.461, + "2001": 0.468, + "2002": 0.473, + "2003": 0.481, + "2004": 0.495, + "2005": 0.504, + "2006": 0.514, + "2007": 0.521, + "2008": 0.517, + "2009": 0.516, + "2010": 0.515, + "2011": 0.514, + "2012": 0.514, + "2013": 0.525, + "2014": 0.539, + "2015": 0.551, + "2016": 0.565, + "2017": 0.571, + "2018": 0.579, + "2019": 0.581, + "2020": 0.578, + "2021": 0.579 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr105", + "Region": "Islamabad (ICT)", + "1990": 0.505, + "1991": 0.511, + "1992": 0.517, + "1993": 0.52, + "1994": 0.525, + "1995": 0.529, + "1996": 0.536, + "1997": 0.54, + "1998": 0.545, + "1999": 0.553, + "2000": 0.56, + "2001": 0.569, + "2002": 0.578, + "2003": 0.589, + "2004": 0.605, + "2005": 0.617, + "2006": 0.627, + "2007": 0.632, + "2008": 0.641, + "2009": 0.658, + "2010": 0.672, + "2011": 0.686, + "2012": 0.701, + "2013": 0.695, + "2014": 0.693, + "2015": 0.688, + "2016": 0.683, + "2017": 0.672, + "2018": 0.661, + "2019": 0.661, + "2020": 0.658, + "2021": 0.659 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr103", + "Region": "Khyber Pakhtunkhwa (NWFrontier)", + "1990": 0.392, + "1991": 0.396, + "1992": 0.401, + "1993": 0.402, + "1994": 0.406, + "1995": 0.409, + "1996": 0.414, + "1997": 0.416, + "1998": 0.42, + "1999": 0.425, + "2000": 0.43, + "2001": 0.437, + "2002": 0.442, + "2003": 0.449, + "2004": 0.463, + "2005": 0.472, + "2006": 0.48, + "2007": 0.487, + "2008": 0.487, + "2009": 0.492, + "2010": 0.496, + "2011": 0.5, + "2012": 0.506, + "2013": 0.507, + "2014": 0.511, + "2015": 0.514, + "2016": 0.518, + "2017": 0.516, + "2018": 0.515, + "2019": 0.517, + "2020": 0.514, + "2021": 0.515 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr101", + "Region": "Punjab", + "1990": 0.388, + "1991": 0.392, + "1992": 0.396, + "1993": 0.398, + "1994": 0.402, + "1995": 0.404, + "1996": 0.41, + "1997": 0.412, + "1998": 0.416, + "1999": 0.421, + "2000": 0.426, + "2001": 0.433, + "2002": 0.438, + "2003": 0.446, + "2004": 0.459, + "2005": 0.468, + "2006": 0.476, + "2007": 0.482, + "2008": 0.486, + "2009": 0.495, + "2010": 0.503, + "2011": 0.511, + "2012": 0.519, + "2013": 0.524, + "2014": 0.534, + "2015": 0.54, + "2016": 0.547, + "2017": 0.549, + "2018": 0.551, + "2019": 0.552, + "2020": 0.549, + "2021": 0.55 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr102", + "Region": "Sindh", + "1990": 0.385, + "1991": 0.39, + "1992": 0.394, + "1993": 0.396, + "1994": 0.4, + "1995": 0.403, + "1996": 0.409, + "1997": 0.412, + "1998": 0.416, + "1999": 0.422, + "2000": 0.427, + "2001": 0.434, + "2002": 0.441, + "2003": 0.449, + "2004": 0.462, + "2005": 0.47, + "2006": 0.479, + "2007": 0.483, + "2008": 0.484, + "2009": 0.491, + "2010": 0.497, + "2011": 0.503, + "2012": 0.51, + "2013": 0.511, + "2014": 0.517, + "2015": 0.519, + "2016": 0.522, + "2017": 0.521, + "2018": 0.519, + "2019": 0.519, + "2020": 0.516, + "2021": 0.517 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "National", + "GDLCODE": "PSEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.651, + "2005": 0.662, + "2006": 0.663, + "2007": 0.672, + "2008": 0.677, + "2009": 0.682, + "2010": 0.687, + "2011": 0.694, + "2012": 0.701, + "2013": 0.703, + "2014": 0.698, + "2015": 0.71, + "2016": 0.715, + "2017": 0.719, + "2018": 0.723, + "2019": 0.727, + "2020": 0.716, + "2021": 0.715 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr104", + "Region": "Bethlehem, Hebron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.644, + "2005": 0.655, + "2006": 0.656, + "2007": 0.665, + "2008": 0.67, + "2009": 0.675, + "2010": 0.68, + "2011": 0.687, + "2012": 0.694, + "2013": 0.697, + "2014": 0.692, + "2015": 0.704, + "2016": 0.71, + "2017": 0.715, + "2018": 0.72, + "2019": 0.724, + "2020": 0.714, + "2021": 0.712 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr106", + "Region": "Deir El-Balah, Khan Yunis, Rafah", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.659, + "2005": 0.67, + "2006": 0.671, + "2007": 0.68, + "2008": 0.686, + "2009": 0.691, + "2010": 0.696, + "2011": 0.701, + "2012": 0.705, + "2013": 0.705, + "2014": 0.697, + "2015": 0.709, + "2016": 0.713, + "2017": 0.717, + "2018": 0.72, + "2019": 0.724, + "2020": 0.713, + "2021": 0.712 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr101", + "Region": "Jenin, Tubas, Tulkarm, Nablus, Qalqiliya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.648, + "2005": 0.659, + "2006": 0.66, + "2007": 0.669, + "2008": 0.674, + "2009": 0.679, + "2010": 0.684, + "2011": 0.695, + "2012": 0.706, + "2013": 0.712, + "2014": 0.711, + "2015": 0.722, + "2016": 0.726, + "2017": 0.729, + "2018": 0.732, + "2019": 0.735, + "2020": 0.725, + "2021": 0.723 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr103", + "Region": "Jerusalem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.665, + "2005": 0.676, + "2006": 0.677, + "2007": 0.686, + "2008": 0.692, + "2009": 0.697, + "2010": 0.702, + "2011": 0.709, + "2012": 0.716, + "2013": 0.718, + "2014": 0.713, + "2015": 0.723, + "2016": 0.726, + "2017": 0.728, + "2018": 0.731, + "2019": 0.733, + "2020": 0.722, + "2021": 0.721 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr105", + "Region": "North Gaza, Gaza", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.65, + "2005": 0.661, + "2006": 0.662, + "2007": 0.671, + "2008": 0.676, + "2009": 0.681, + "2010": 0.686, + "2011": 0.687, + "2012": 0.687, + "2013": 0.684, + "2014": 0.672, + "2015": 0.686, + "2016": 0.693, + "2017": 0.699, + "2018": 0.705, + "2019": 0.712, + "2020": 0.701, + "2021": 0.699 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr102", + "Region": "Salfit, Ramallah, Al-Bireh, Jericho, Al Aghwar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.646, + "2005": 0.657, + "2006": 0.658, + "2007": 0.667, + "2008": 0.672, + "2009": 0.677, + "2010": 0.682, + "2011": 0.695, + "2012": 0.707, + "2013": 0.716, + "2014": 0.716, + "2015": 0.727, + "2016": 0.73, + "2017": 0.733, + "2018": 0.736, + "2019": 0.739, + "2020": 0.728, + "2021": 0.727 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "National", + "GDLCODE": "PANt", + "Region": "Total", + "1990": 0.669, + "1991": 0.672, + "1992": 0.678, + "1993": 0.685, + "1994": 0.687, + "1995": 0.69, + "1996": 0.697, + "1997": 0.703, + "1998": 0.71, + "1999": 0.715, + "2000": 0.721, + "2001": 0.726, + "2002": 0.733, + "2003": 0.737, + "2004": 0.743, + "2005": 0.749, + "2006": 0.754, + "2007": 0.763, + "2008": 0.767, + "2009": 0.769, + "2010": 0.773, + "2011": 0.779, + "2012": 0.785, + "2013": 0.79, + "2014": 0.794, + "2015": 0.8, + "2016": 0.805, + "2017": 0.811, + "2018": 0.814, + "2019": 0.817, + "2020": 0.801, + "2021": 0.805 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr101", + "Region": "Bocas del Toro", + "1990": 0.61, + "1991": 0.613, + "1992": 0.619, + "1993": 0.626, + "1994": 0.628, + "1995": 0.63, + "1996": 0.637, + "1997": 0.642, + "1998": 0.649, + "1999": 0.654, + "2000": 0.66, + "2001": 0.664, + "2002": 0.671, + "2003": 0.674, + "2004": 0.68, + "2005": 0.685, + "2006": 0.69, + "2007": 0.698, + "2008": 0.701, + "2009": 0.703, + "2010": 0.706, + "2011": 0.712, + "2012": 0.717, + "2013": 0.722, + "2014": 0.725, + "2015": 0.73, + "2016": 0.736, + "2017": 0.741, + "2018": 0.743, + "2019": 0.746, + "2020": 0.731, + "2021": 0.735 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr104", + "Region": "Chiriqui", + "1990": 0.669, + "1991": 0.672, + "1992": 0.679, + "1993": 0.685, + "1994": 0.687, + "1995": 0.691, + "1996": 0.697, + "1997": 0.703, + "1998": 0.71, + "1999": 0.715, + "2000": 0.721, + "2001": 0.727, + "2002": 0.734, + "2003": 0.737, + "2004": 0.744, + "2005": 0.749, + "2006": 0.755, + "2007": 0.763, + "2008": 0.767, + "2009": 0.769, + "2010": 0.773, + "2011": 0.779, + "2012": 0.785, + "2013": 0.79, + "2014": 0.793, + "2015": 0.799, + "2016": 0.805, + "2017": 0.81, + "2018": 0.814, + "2019": 0.816, + "2020": 0.801, + "2021": 0.805 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr102", + "Region": "Cocle", + "1990": 0.647, + "1991": 0.65, + "1992": 0.656, + "1993": 0.663, + "1994": 0.665, + "1995": 0.668, + "1996": 0.674, + "1997": 0.68, + "1998": 0.687, + "1999": 0.692, + "2000": 0.698, + "2001": 0.703, + "2002": 0.71, + "2003": 0.713, + "2004": 0.72, + "2005": 0.725, + "2006": 0.73, + "2007": 0.739, + "2008": 0.742, + "2009": 0.744, + "2010": 0.747, + "2011": 0.753, + "2012": 0.759, + "2013": 0.764, + "2014": 0.767, + "2015": 0.773, + "2016": 0.779, + "2017": 0.784, + "2018": 0.787, + "2019": 0.789, + "2020": 0.774, + "2021": 0.778 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr103", + "Region": "Colon", + "1990": 0.676, + "1991": 0.679, + "1992": 0.685, + "1993": 0.692, + "1994": 0.694, + "1995": 0.697, + "1996": 0.704, + "1997": 0.71, + "1998": 0.717, + "1999": 0.722, + "2000": 0.728, + "2001": 0.733, + "2002": 0.74, + "2003": 0.744, + "2004": 0.751, + "2005": 0.756, + "2006": 0.762, + "2007": 0.771, + "2008": 0.775, + "2009": 0.777, + "2010": 0.781, + "2011": 0.787, + "2012": 0.793, + "2013": 0.799, + "2014": 0.802, + "2015": 0.808, + "2016": 0.814, + "2017": 0.82, + "2018": 0.823, + "2019": 0.826, + "2020": 0.81, + "2021": 0.814 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr105", + "Region": "Darien", + "1990": 0.586, + "1991": 0.589, + "1992": 0.595, + "1993": 0.601, + "1994": 0.602, + "1995": 0.605, + "1996": 0.611, + "1997": 0.617, + "1998": 0.623, + "1999": 0.628, + "2000": 0.634, + "2001": 0.639, + "2002": 0.645, + "2003": 0.648, + "2004": 0.653, + "2005": 0.658, + "2006": 0.663, + "2007": 0.671, + "2008": 0.674, + "2009": 0.675, + "2010": 0.678, + "2011": 0.684, + "2012": 0.689, + "2013": 0.694, + "2014": 0.696, + "2015": 0.701, + "2016": 0.706, + "2017": 0.711, + "2018": 0.714, + "2019": 0.716, + "2020": 0.702, + "2021": 0.706 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr111", + "Region": "Embera Wounaan", + "1990": 0.518, + "1991": 0.521, + "1992": 0.527, + "1993": 0.533, + "1994": 0.534, + "1995": 0.537, + "1996": 0.543, + "1997": 0.548, + "1998": 0.554, + "1999": 0.559, + "2000": 0.564, + "2001": 0.568, + "2002": 0.574, + "2003": 0.576, + "2004": 0.581, + "2005": 0.585, + "2006": 0.59, + "2007": 0.597, + "2008": 0.6, + "2009": 0.601, + "2010": 0.604, + "2011": 0.609, + "2012": 0.613, + "2013": 0.618, + "2014": 0.62, + "2015": 0.624, + "2016": 0.629, + "2017": 0.633, + "2018": 0.636, + "2019": 0.638, + "2020": 0.624, + "2021": 0.628 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr106", + "Region": "Herrera", + "1990": 0.67, + "1991": 0.673, + "1992": 0.68, + "1993": 0.686, + "1994": 0.688, + "1995": 0.692, + "1996": 0.698, + "1997": 0.704, + "1998": 0.711, + "1999": 0.717, + "2000": 0.723, + "2001": 0.728, + "2002": 0.736, + "2003": 0.739, + "2004": 0.745, + "2005": 0.75, + "2006": 0.756, + "2007": 0.765, + "2008": 0.768, + "2009": 0.77, + "2010": 0.773, + "2011": 0.779, + "2012": 0.785, + "2013": 0.791, + "2014": 0.794, + "2015": 0.799, + "2016": 0.805, + "2017": 0.81, + "2018": 0.813, + "2019": 0.816, + "2020": 0.8, + "2021": 0.805 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr110", + "Region": "Kuna Yala", + "1990": 0.491, + "1991": 0.494, + "1992": 0.499, + "1993": 0.505, + "1994": 0.507, + "1995": 0.509, + "1996": 0.514, + "1997": 0.52, + "1998": 0.525, + "1999": 0.53, + "2000": 0.535, + "2001": 0.539, + "2002": 0.544, + "2003": 0.546, + "2004": 0.551, + "2005": 0.555, + "2006": 0.559, + "2007": 0.566, + "2008": 0.569, + "2009": 0.57, + "2010": 0.572, + "2011": 0.577, + "2012": 0.582, + "2013": 0.586, + "2014": 0.588, + "2015": 0.592, + "2016": 0.597, + "2017": 0.601, + "2018": 0.603, + "2019": 0.605, + "2020": 0.592, + "2021": 0.596 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr107", + "Region": "Los Santos", + "1990": 0.665, + "1991": 0.669, + "1992": 0.675, + "1993": 0.682, + "1994": 0.684, + "1995": 0.687, + "1996": 0.693, + "1997": 0.7, + "1998": 0.707, + "1999": 0.712, + "2000": 0.718, + "2001": 0.723, + "2002": 0.731, + "2003": 0.734, + "2004": 0.74, + "2005": 0.745, + "2006": 0.751, + "2007": 0.759, + "2008": 0.763, + "2009": 0.765, + "2010": 0.768, + "2011": 0.774, + "2012": 0.78, + "2013": 0.785, + "2014": 0.788, + "2015": 0.794, + "2016": 0.8, + "2017": 0.805, + "2018": 0.808, + "2019": 0.811, + "2020": 0.795, + "2021": 0.799 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr112", + "Region": "Ngobe Bugle", + "1990": 0.475, + "1991": 0.478, + "1992": 0.483, + "1993": 0.489, + "1994": 0.49, + "1995": 0.492, + "1996": 0.498, + "1997": 0.503, + "1998": 0.509, + "1999": 0.514, + "2000": 0.519, + "2001": 0.522, + "2002": 0.528, + "2003": 0.53, + "2004": 0.534, + "2005": 0.538, + "2006": 0.542, + "2007": 0.549, + "2008": 0.552, + "2009": 0.552, + "2010": 0.555, + "2011": 0.559, + "2012": 0.563, + "2013": 0.567, + "2014": 0.569, + "2015": 0.573, + "2016": 0.578, + "2017": 0.582, + "2018": 0.584, + "2019": 0.585, + "2020": 0.572, + "2021": 0.576 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr108", + "Region": "Panama", + "1990": 0.695, + "1991": 0.698, + "1992": 0.705, + "1993": 0.711, + "1994": 0.714, + "1995": 0.717, + "1996": 0.723, + "1997": 0.73, + "1998": 0.737, + "1999": 0.742, + "2000": 0.748, + "2001": 0.754, + "2002": 0.761, + "2003": 0.765, + "2004": 0.772, + "2005": 0.777, + "2006": 0.783, + "2007": 0.792, + "2008": 0.796, + "2009": 0.798, + "2010": 0.802, + "2011": 0.809, + "2012": 0.815, + "2013": 0.821, + "2014": 0.824, + "2015": 0.831, + "2016": 0.837, + "2017": 0.842, + "2018": 0.846, + "2019": 0.849, + "2020": 0.832, + "2021": 0.837 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr109", + "Region": "Veraguas", + "1990": 0.619, + "1991": 0.622, + "1992": 0.628, + "1993": 0.635, + "1994": 0.637, + "1995": 0.64, + "1996": 0.646, + "1997": 0.652, + "1998": 0.659, + "1999": 0.664, + "2000": 0.67, + "2001": 0.675, + "2002": 0.681, + "2003": 0.684, + "2004": 0.69, + "2005": 0.695, + "2006": 0.7, + "2007": 0.708, + "2008": 0.712, + "2009": 0.713, + "2010": 0.716, + "2011": 0.722, + "2012": 0.728, + "2013": 0.733, + "2014": 0.735, + "2015": 0.741, + "2016": 0.746, + "2017": 0.751, + "2018": 0.754, + "2019": 0.756, + "2020": 0.741, + "2021": 0.745 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "National", + "GDLCODE": "PNGt", + "Region": "Total", + "1990": 0.37, + "1991": 0.38, + "1992": 0.391, + "1993": 0.405, + "1994": 0.419, + "1995": 0.423, + "1996": 0.43, + "1997": 0.432, + "1998": 0.435, + "1999": 0.444, + "2000": 0.447, + "2001": 0.451, + "2002": 0.455, + "2003": 0.461, + "2004": 0.461, + "2005": 0.466, + "2006": 0.469, + "2007": 0.478, + "2008": 0.484, + "2009": 0.49, + "2010": 0.499, + "2011": 0.504, + "2012": 0.513, + "2013": 0.518, + "2014": 0.533, + "2015": 0.541, + "2016": 0.547, + "2017": 0.552, + "2018": 0.554, + "2019": 0.56, + "2020": 0.56, + "2021": 0.558 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr120", + "Region": "Autonomous Region of Bougainville", + "1990": 0.399, + "1991": 0.409, + "1992": 0.422, + "1993": 0.437, + "1994": 0.452, + "1995": 0.456, + "1996": 0.463, + "1997": 0.465, + "1998": 0.468, + "1999": 0.477, + "2000": 0.481, + "2001": 0.485, + "2002": 0.489, + "2003": 0.495, + "2004": 0.495, + "2005": 0.5, + "2006": 0.503, + "2007": 0.512, + "2008": 0.519, + "2009": 0.525, + "2010": 0.535, + "2011": 0.54, + "2012": 0.55, + "2013": 0.556, + "2014": 0.571, + "2015": 0.58, + "2016": 0.586, + "2017": 0.591, + "2018": 0.594, + "2019": 0.6, + "2020": 0.599, + "2021": 0.597 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr103", + "Region": "Central", + "1990": 0.383, + "1991": 0.392, + "1992": 0.404, + "1993": 0.418, + "1994": 0.433, + "1995": 0.437, + "1996": 0.443, + "1997": 0.446, + "1998": 0.449, + "1999": 0.457, + "2000": 0.46, + "2001": 0.464, + "2002": 0.469, + "2003": 0.475, + "2004": 0.474, + "2005": 0.479, + "2006": 0.482, + "2007": 0.491, + "2008": 0.497, + "2009": 0.503, + "2010": 0.512, + "2011": 0.518, + "2012": 0.527, + "2013": 0.532, + "2014": 0.547, + "2015": 0.556, + "2016": 0.562, + "2017": 0.566, + "2018": 0.568, + "2019": 0.574, + "2020": 0.574, + "2021": 0.572 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr110", + "Region": "Chimbu, Simbu", + "1990": 0.378, + "1991": 0.388, + "1992": 0.399, + "1993": 0.414, + "1994": 0.428, + "1995": 0.432, + "1996": 0.439, + "1997": 0.441, + "1998": 0.445, + "1999": 0.454, + "2000": 0.457, + "2001": 0.461, + "2002": 0.466, + "2003": 0.472, + "2004": 0.472, + "2005": 0.478, + "2006": 0.481, + "2007": 0.49, + "2008": 0.496, + "2009": 0.503, + "2010": 0.511, + "2011": 0.517, + "2012": 0.526, + "2013": 0.531, + "2014": 0.546, + "2015": 0.555, + "2016": 0.561, + "2017": 0.566, + "2018": 0.569, + "2019": 0.575, + "2020": 0.574, + "2021": 0.572 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr118", + "Region": "East New Britain", + "1990": 0.403, + "1991": 0.414, + "1992": 0.426, + "1993": 0.441, + "1994": 0.456, + "1995": 0.461, + "1996": 0.467, + "1997": 0.47, + "1998": 0.473, + "1999": 0.482, + "2000": 0.485, + "2001": 0.489, + "2002": 0.494, + "2003": 0.5, + "2004": 0.5, + "2005": 0.505, + "2006": 0.509, + "2007": 0.518, + "2008": 0.524, + "2009": 0.531, + "2010": 0.54, + "2011": 0.546, + "2012": 0.556, + "2013": 0.561, + "2014": 0.577, + "2015": 0.586, + "2016": 0.592, + "2017": 0.597, + "2018": 0.599, + "2019": 0.605, + "2020": 0.605, + "2021": 0.603 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr114", + "Region": "East Sepik", + "1990": 0.366, + "1991": 0.375, + "1992": 0.386, + "1993": 0.4, + "1994": 0.414, + "1995": 0.418, + "1996": 0.425, + "1997": 0.427, + "1998": 0.43, + "1999": 0.439, + "2000": 0.442, + "2001": 0.446, + "2002": 0.45, + "2003": 0.456, + "2004": 0.456, + "2005": 0.461, + "2006": 0.464, + "2007": 0.472, + "2008": 0.478, + "2009": 0.485, + "2010": 0.493, + "2011": 0.499, + "2012": 0.508, + "2013": 0.513, + "2014": 0.527, + "2015": 0.536, + "2016": 0.542, + "2017": 0.546, + "2018": 0.549, + "2019": 0.554, + "2020": 0.554, + "2021": 0.552 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr111", + "Region": "Eastern Highlands", + "1990": 0.345, + "1991": 0.354, + "1992": 0.365, + "1993": 0.378, + "1994": 0.392, + "1995": 0.395, + "1996": 0.402, + "1997": 0.404, + "1998": 0.407, + "1999": 0.415, + "2000": 0.418, + "2001": 0.422, + "2002": 0.426, + "2003": 0.432, + "2004": 0.432, + "2005": 0.437, + "2006": 0.44, + "2007": 0.448, + "2008": 0.454, + "2009": 0.46, + "2010": 0.468, + "2011": 0.473, + "2012": 0.482, + "2013": 0.487, + "2014": 0.5, + "2015": 0.509, + "2016": 0.514, + "2017": 0.519, + "2018": 0.521, + "2019": 0.527, + "2020": 0.526, + "2021": 0.525 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr108", + "Region": "Enga", + "1990": 0.32, + "1991": 0.329, + "1992": 0.339, + "1993": 0.351, + "1994": 0.363, + "1995": 0.367, + "1996": 0.373, + "1997": 0.375, + "1998": 0.378, + "1999": 0.386, + "2000": 0.389, + "2001": 0.393, + "2002": 0.397, + "2003": 0.402, + "2004": 0.403, + "2005": 0.407, + "2006": 0.41, + "2007": 0.418, + "2008": 0.423, + "2009": 0.429, + "2010": 0.437, + "2011": 0.442, + "2012": 0.45, + "2013": 0.454, + "2014": 0.467, + "2015": 0.475, + "2016": 0.48, + "2017": 0.485, + "2018": 0.487, + "2019": 0.493, + "2020": 0.492, + "2021": 0.49 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr102", + "Region": "Gulf", + "1990": 0.349, + "1991": 0.357, + "1992": 0.368, + "1993": 0.382, + "1994": 0.395, + "1995": 0.399, + "1996": 0.405, + "1997": 0.407, + "1998": 0.41, + "1999": 0.418, + "2000": 0.421, + "2001": 0.424, + "2002": 0.428, + "2003": 0.434, + "2004": 0.434, + "2005": 0.438, + "2006": 0.441, + "2007": 0.449, + "2008": 0.455, + "2009": 0.46, + "2010": 0.469, + "2011": 0.474, + "2012": 0.482, + "2013": 0.487, + "2014": 0.501, + "2015": 0.509, + "2016": 0.515, + "2017": 0.519, + "2018": 0.521, + "2019": 0.526, + "2020": 0.526, + "2021": 0.524 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr121", + "Region": "Hela", + "1990": 0.303, + "1991": 0.311, + "1992": 0.32, + "1993": 0.332, + "1994": 0.344, + "1995": 0.348, + "1996": 0.353, + "1997": 0.355, + "1998": 0.358, + "1999": 0.365, + "2000": 0.368, + "2001": 0.371, + "2002": 0.375, + "2003": 0.381, + "2004": 0.381, + "2005": 0.385, + "2006": 0.387, + "2007": 0.395, + "2008": 0.4, + "2009": 0.405, + "2010": 0.413, + "2011": 0.417, + "2012": 0.425, + "2013": 0.429, + "2014": 0.442, + "2015": 0.449, + "2016": 0.454, + "2017": 0.458, + "2018": 0.46, + "2019": 0.466, + "2020": 0.465, + "2021": 0.463 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr122", + "Region": "Jiwaka", + "1990": 0.364, + "1991": 0.374, + "1992": 0.385, + "1993": 0.399, + "1994": 0.413, + "1995": 0.417, + "1996": 0.424, + "1997": 0.426, + "1998": 0.429, + "1999": 0.438, + "2000": 0.441, + "2001": 0.445, + "2002": 0.45, + "2003": 0.456, + "2004": 0.456, + "2005": 0.461, + "2006": 0.464, + "2007": 0.473, + "2008": 0.479, + "2009": 0.485, + "2010": 0.494, + "2011": 0.499, + "2012": 0.509, + "2013": 0.513, + "2014": 0.528, + "2015": 0.537, + "2016": 0.543, + "2017": 0.548, + "2018": 0.55, + "2019": 0.556, + "2020": 0.556, + "2021": 0.554 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr113", + "Region": "Madang", + "1990": 0.372, + "1991": 0.382, + "1992": 0.393, + "1993": 0.407, + "1994": 0.422, + "1995": 0.426, + "1996": 0.432, + "1997": 0.435, + "1998": 0.438, + "1999": 0.446, + "2000": 0.449, + "2001": 0.453, + "2002": 0.458, + "2003": 0.463, + "2004": 0.463, + "2005": 0.468, + "2006": 0.471, + "2007": 0.48, + "2008": 0.486, + "2009": 0.492, + "2010": 0.501, + "2011": 0.506, + "2012": 0.515, + "2013": 0.52, + "2014": 0.535, + "2015": 0.544, + "2016": 0.55, + "2017": 0.554, + "2018": 0.557, + "2019": 0.562, + "2020": 0.562, + "2021": 0.56 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr116", + "Region": "Manus", + "1990": 0.411, + "1991": 0.422, + "1992": 0.434, + "1993": 0.45, + "1994": 0.465, + "1995": 0.47, + "1996": 0.477, + "1997": 0.479, + "1998": 0.482, + "1999": 0.491, + "2000": 0.495, + "2001": 0.499, + "2002": 0.503, + "2003": 0.51, + "2004": 0.509, + "2005": 0.514, + "2006": 0.518, + "2007": 0.527, + "2008": 0.534, + "2009": 0.54, + "2010": 0.55, + "2011": 0.555, + "2012": 0.566, + "2013": 0.571, + "2014": 0.587, + "2015": 0.596, + "2016": 0.603, + "2017": 0.607, + "2018": 0.61, + "2019": 0.616, + "2020": 0.615, + "2021": 0.613 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr105", + "Region": "Milne Bay", + "1990": 0.376, + "1991": 0.385, + "1992": 0.397, + "1993": 0.411, + "1994": 0.426, + "1995": 0.43, + "1996": 0.436, + "1997": 0.438, + "1998": 0.442, + "1999": 0.45, + "2000": 0.453, + "2001": 0.457, + "2002": 0.461, + "2003": 0.467, + "2004": 0.467, + "2005": 0.472, + "2006": 0.475, + "2007": 0.483, + "2008": 0.489, + "2009": 0.496, + "2010": 0.504, + "2011": 0.51, + "2012": 0.519, + "2013": 0.524, + "2014": 0.539, + "2015": 0.548, + "2016": 0.554, + "2017": 0.558, + "2018": 0.56, + "2019": 0.566, + "2020": 0.565, + "2021": 0.564 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr112", + "Region": "Morobe", + "1990": 0.398, + "1991": 0.408, + "1992": 0.42, + "1993": 0.434, + "1994": 0.449, + "1995": 0.454, + "1996": 0.46, + "1997": 0.463, + "1998": 0.466, + "1999": 0.475, + "2000": 0.478, + "2001": 0.483, + "2002": 0.487, + "2003": 0.493, + "2004": 0.493, + "2005": 0.499, + "2006": 0.502, + "2007": 0.511, + "2008": 0.517, + "2009": 0.524, + "2010": 0.533, + "2011": 0.539, + "2012": 0.548, + "2013": 0.554, + "2014": 0.569, + "2015": 0.578, + "2016": 0.584, + "2017": 0.589, + "2018": 0.591, + "2019": 0.597, + "2020": 0.597, + "2021": 0.595 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr104", + "Region": "National Capital District", + "1990": 0.497, + "1991": 0.509, + "1992": 0.523, + "1993": 0.539, + "1994": 0.556, + "1995": 0.562, + "1996": 0.57, + "1997": 0.574, + "1998": 0.577, + "1999": 0.588, + "2000": 0.592, + "2001": 0.597, + "2002": 0.602, + "2003": 0.609, + "2004": 0.61, + "2005": 0.616, + "2006": 0.62, + "2007": 0.63, + "2008": 0.638, + "2009": 0.646, + "2010": 0.656, + "2011": 0.663, + "2012": 0.675, + "2013": 0.681, + "2014": 0.698, + "2015": 0.709, + "2016": 0.716, + "2017": 0.722, + "2018": 0.725, + "2019": 0.732, + "2020": 0.731, + "2021": 0.729 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr117", + "Region": "New Ireland", + "1990": 0.401, + "1991": 0.412, + "1992": 0.424, + "1993": 0.439, + "1994": 0.455, + "1995": 0.459, + "1996": 0.466, + "1997": 0.468, + "1998": 0.471, + "1999": 0.48, + "2000": 0.483, + "2001": 0.487, + "2002": 0.492, + "2003": 0.498, + "2004": 0.498, + "2005": 0.503, + "2006": 0.506, + "2007": 0.515, + "2008": 0.522, + "2009": 0.528, + "2010": 0.538, + "2011": 0.543, + "2012": 0.553, + "2013": 0.559, + "2014": 0.575, + "2015": 0.584, + "2016": 0.59, + "2017": 0.595, + "2018": 0.597, + "2019": 0.603, + "2020": 0.603, + "2021": 0.601 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr106", + "Region": "Northern, Oro", + "1990": 0.371, + "1991": 0.38, + "1992": 0.392, + "1993": 0.406, + "1994": 0.42, + "1995": 0.424, + "1996": 0.43, + "1997": 0.433, + "1998": 0.436, + "1999": 0.444, + "2000": 0.447, + "2001": 0.451, + "2002": 0.455, + "2003": 0.461, + "2004": 0.461, + "2005": 0.466, + "2006": 0.469, + "2007": 0.477, + "2008": 0.483, + "2009": 0.49, + "2010": 0.498, + "2011": 0.504, + "2012": 0.513, + "2013": 0.518, + "2014": 0.532, + "2015": 0.541, + "2016": 0.547, + "2017": 0.551, + "2018": 0.554, + "2019": 0.559, + "2020": 0.559, + "2021": 0.557 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr107", + "Region": "Southern Highlands", + "1990": 0.319, + "1991": 0.327, + "1992": 0.337, + "1993": 0.35, + "1994": 0.362, + "1995": 0.366, + "1996": 0.372, + "1997": 0.374, + "1998": 0.377, + "1999": 0.385, + "2000": 0.388, + "2001": 0.392, + "2002": 0.396, + "2003": 0.402, + "2004": 0.402, + "2005": 0.406, + "2006": 0.409, + "2007": 0.417, + "2008": 0.423, + "2009": 0.428, + "2010": 0.436, + "2011": 0.441, + "2012": 0.449, + "2013": 0.453, + "2014": 0.466, + "2015": 0.474, + "2016": 0.48, + "2017": 0.484, + "2018": 0.487, + "2019": 0.492, + "2020": 0.492, + "2021": 0.49 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr119", + "Region": "West New Britain", + "1990": 0.398, + "1991": 0.408, + "1992": 0.42, + "1993": 0.435, + "1994": 0.45, + "1995": 0.454, + "1996": 0.461, + "1997": 0.463, + "1998": 0.466, + "1999": 0.475, + "2000": 0.479, + "2001": 0.483, + "2002": 0.487, + "2003": 0.494, + "2004": 0.494, + "2005": 0.499, + "2006": 0.502, + "2007": 0.511, + "2008": 0.517, + "2009": 0.524, + "2010": 0.533, + "2011": 0.539, + "2012": 0.548, + "2013": 0.554, + "2014": 0.569, + "2015": 0.578, + "2016": 0.584, + "2017": 0.589, + "2018": 0.591, + "2019": 0.597, + "2020": 0.597, + "2021": 0.595 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr115", + "Region": "West Sepik, Sandaun", + "1990": 0.353, + "1991": 0.362, + "1992": 0.373, + "1993": 0.386, + "1994": 0.4, + "1995": 0.404, + "1996": 0.41, + "1997": 0.412, + "1998": 0.415, + "1999": 0.424, + "2000": 0.426, + "2001": 0.43, + "2002": 0.434, + "2003": 0.44, + "2004": 0.44, + "2005": 0.444, + "2006": 0.447, + "2007": 0.456, + "2008": 0.461, + "2009": 0.467, + "2010": 0.476, + "2011": 0.481, + "2012": 0.49, + "2013": 0.494, + "2014": 0.509, + "2015": 0.517, + "2016": 0.523, + "2017": 0.527, + "2018": 0.529, + "2019": 0.535, + "2020": 0.534, + "2021": 0.532 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr101", + "Region": "Western", + "1990": 0.377, + "1991": 0.386, + "1992": 0.398, + "1993": 0.413, + "1994": 0.427, + "1995": 0.431, + "1996": 0.438, + "1997": 0.44, + "1998": 0.443, + "1999": 0.451, + "2000": 0.454, + "2001": 0.458, + "2002": 0.462, + "2003": 0.468, + "2004": 0.468, + "2005": 0.473, + "2006": 0.476, + "2007": 0.485, + "2008": 0.491, + "2009": 0.497, + "2010": 0.506, + "2011": 0.511, + "2012": 0.521, + "2013": 0.526, + "2014": 0.541, + "2015": 0.549, + "2016": 0.555, + "2017": 0.56, + "2018": 0.562, + "2019": 0.568, + "2020": 0.567, + "2021": 0.565 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr109", + "Region": "Western Highlands", + "1990": 0.389, + "1991": 0.399, + "1992": 0.41, + "1993": 0.425, + "1994": 0.44, + "1995": 0.444, + "1996": 0.451, + "1997": 0.454, + "1998": 0.457, + "1999": 0.466, + "2000": 0.47, + "2001": 0.474, + "2002": 0.479, + "2003": 0.485, + "2004": 0.486, + "2005": 0.491, + "2006": 0.494, + "2007": 0.503, + "2008": 0.51, + "2009": 0.516, + "2010": 0.526, + "2011": 0.531, + "2012": 0.541, + "2013": 0.546, + "2014": 0.561, + "2015": 0.57, + "2016": 0.576, + "2017": 0.582, + "2018": 0.584, + "2019": 0.59, + "2020": 0.59, + "2021": 0.588 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "National", + "GDLCODE": "PRYt", + "Region": "Total", + "1990": 0.595, + "1991": 0.6, + "1992": 0.605, + "1993": 0.612, + "1994": 0.617, + "1995": 0.623, + "1996": 0.632, + "1997": 0.638, + "1998": 0.644, + "1999": 0.649, + "2000": 0.649, + "2001": 0.655, + "2002": 0.662, + "2003": 0.655, + "2004": 0.662, + "2005": 0.664, + "2006": 0.664, + "2007": 0.669, + "2008": 0.679, + "2009": 0.677, + "2010": 0.685, + "2011": 0.696, + "2012": 0.702, + "2013": 0.715, + "2014": 0.716, + "2015": 0.723, + "2016": 0.721, + "2017": 0.724, + "2018": 0.727, + "2019": 0.732, + "2020": 0.73, + "2021": 0.717 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr105", + "Region": "Central (Asuncion, Central)", + "1990": 0.638, + "1991": 0.644, + "1992": 0.649, + "1993": 0.656, + "1994": 0.662, + "1995": 0.668, + "1996": 0.677, + "1997": 0.683, + "1998": 0.689, + "1999": 0.694, + "2000": 0.694, + "2001": 0.7, + "2002": 0.708, + "2003": 0.698, + "2004": 0.702, + "2005": 0.701, + "2006": 0.697, + "2007": 0.7, + "2008": 0.711, + "2009": 0.708, + "2010": 0.718, + "2011": 0.731, + "2012": 0.737, + "2013": 0.751, + "2014": 0.753, + "2015": 0.76, + "2016": 0.758, + "2017": 0.762, + "2018": 0.765, + "2019": 0.77, + "2020": 0.768, + "2021": 0.755 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr102", + "Region": "North-East (Caaguazu, Alto Parana, Canideyu)", + "1990": 0.572, + "1991": 0.578, + "1992": 0.583, + "1993": 0.589, + "1994": 0.595, + "1995": 0.6, + "1996": 0.609, + "1997": 0.615, + "1998": 0.621, + "1999": 0.626, + "2000": 0.626, + "2001": 0.631, + "2002": 0.638, + "2003": 0.632, + "2004": 0.64, + "2005": 0.641, + "2006": 0.642, + "2007": 0.648, + "2008": 0.657, + "2009": 0.656, + "2010": 0.665, + "2011": 0.676, + "2012": 0.682, + "2013": 0.694, + "2014": 0.696, + "2015": 0.702, + "2016": 0.7, + "2017": 0.703, + "2018": 0.706, + "2019": 0.71, + "2020": 0.708, + "2021": 0.696 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr101", + "Region": "North-West (Boqueron, Alto Paraguay, Presidente Hayes, Conception, Amambay, San pedro, Cordillera)", + "1990": 0.557, + "1991": 0.562, + "1992": 0.567, + "1993": 0.574, + "1994": 0.579, + "1995": 0.584, + "1996": 0.593, + "1997": 0.599, + "1998": 0.605, + "1999": 0.61, + "2000": 0.609, + "2001": 0.615, + "2002": 0.622, + "2003": 0.616, + "2004": 0.624, + "2005": 0.626, + "2006": 0.627, + "2007": 0.634, + "2008": 0.645, + "2009": 0.646, + "2010": 0.656, + "2011": 0.669, + "2012": 0.676, + "2013": 0.689, + "2014": 0.69, + "2015": 0.696, + "2016": 0.695, + "2017": 0.698, + "2018": 0.7, + "2019": 0.705, + "2020": 0.703, + "2021": 0.691 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr104", + "Region": "South-East (Guaira, Misiones, Paraguari, Neembucu)", + "1990": 0.57, + "1991": 0.576, + "1992": 0.581, + "1993": 0.587, + "1994": 0.592, + "1995": 0.598, + "1996": 0.607, + "1997": 0.613, + "1998": 0.619, + "1999": 0.623, + "2000": 0.623, + "2001": 0.629, + "2002": 0.636, + "2003": 0.634, + "2004": 0.646, + "2005": 0.652, + "2006": 0.656, + "2007": 0.666, + "2008": 0.674, + "2009": 0.67, + "2010": 0.677, + "2011": 0.687, + "2012": 0.69, + "2013": 0.703, + "2014": 0.704, + "2015": 0.711, + "2016": 0.709, + "2017": 0.712, + "2018": 0.715, + "2019": 0.72, + "2020": 0.717, + "2021": 0.705 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr103", + "Region": "South-West (Caazapa, Itapua)", + "1990": 0.569, + "1991": 0.574, + "1992": 0.579, + "1993": 0.586, + "1994": 0.591, + "1995": 0.596, + "1996": 0.605, + "1997": 0.611, + "1998": 0.617, + "1999": 0.622, + "2000": 0.622, + "2001": 0.628, + "2002": 0.635, + "2003": 0.632, + "2004": 0.643, + "2005": 0.647, + "2006": 0.652, + "2007": 0.661, + "2008": 0.669, + "2009": 0.666, + "2010": 0.673, + "2011": 0.682, + "2012": 0.686, + "2013": 0.698, + "2014": 0.7, + "2015": 0.706, + "2016": 0.704, + "2017": 0.708, + "2018": 0.71, + "2019": 0.715, + "2020": 0.712, + "2021": 0.7 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "National", + "GDLCODE": "PERt", + "Region": "Total", + "1990": 0.621, + "1991": 0.625, + "1992": 0.625, + "1993": 0.629, + "1994": 0.639, + "1995": 0.647, + "1996": 0.651, + "1997": 0.656, + "1998": 0.664, + "1999": 0.673, + "2000": 0.676, + "2001": 0.684, + "2002": 0.685, + "2003": 0.684, + "2004": 0.69, + "2005": 0.686, + "2006": 0.691, + "2007": 0.7, + "2008": 0.708, + "2009": 0.711, + "2010": 0.725, + "2011": 0.732, + "2012": 0.742, + "2013": 0.75, + "2014": 0.755, + "2015": 0.759, + "2016": 0.765, + "2017": 0.77, + "2018": 0.776, + "2019": 0.78, + "2020": 0.762, + "2021": 0.762 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr106", + "Region": "Central (Huancavelica, Huanuco, Junin, Pasco)", + "1990": 0.569, + "1991": 0.572, + "1992": 0.572, + "1993": 0.576, + "1994": 0.585, + "1995": 0.594, + "1996": 0.597, + "1997": 0.6, + "1998": 0.607, + "1999": 0.615, + "2000": 0.615, + "2001": 0.623, + "2002": 0.622, + "2003": 0.62, + "2004": 0.625, + "2005": 0.629, + "2006": 0.641, + "2007": 0.646, + "2008": 0.65, + "2009": 0.66, + "2010": 0.685, + "2011": 0.697, + "2012": 0.698, + "2013": 0.706, + "2014": 0.711, + "2015": 0.715, + "2016": 0.721, + "2017": 0.725, + "2018": 0.73, + "2019": 0.735, + "2020": 0.718, + "2021": 0.718 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr103", + "Region": "East (Madre de Dios, Cusco, Puno, Apurimac)", + "1990": 0.553, + "1991": 0.556, + "1992": 0.556, + "1993": 0.56, + "1994": 0.569, + "1995": 0.577, + "1996": 0.58, + "1997": 0.582, + "1998": 0.588, + "1999": 0.595, + "2000": 0.594, + "2001": 0.606, + "2002": 0.61, + "2003": 0.612, + "2004": 0.621, + "2005": 0.626, + "2006": 0.638, + "2007": 0.647, + "2008": 0.654, + "2009": 0.658, + "2010": 0.675, + "2011": 0.662, + "2012": 0.682, + "2013": 0.69, + "2014": 0.695, + "2015": 0.699, + "2016": 0.705, + "2017": 0.708, + "2018": 0.714, + "2019": 0.718, + "2020": 0.701, + "2021": 0.701 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr101", + "Region": "North (Tumbes, Piura, Lambayeque, Cajamarca, La Libertad)", + "1990": 0.575, + "1991": 0.579, + "1992": 0.579, + "1993": 0.583, + "1994": 0.592, + "1995": 0.6, + "1996": 0.603, + "1997": 0.612, + "1998": 0.624, + "1999": 0.637, + "2000": 0.643, + "2001": 0.655, + "2002": 0.66, + "2003": 0.663, + "2004": 0.673, + "2005": 0.658, + "2006": 0.653, + "2007": 0.664, + "2008": 0.673, + "2009": 0.685, + "2010": 0.704, + "2011": 0.7, + "2012": 0.711, + "2013": 0.719, + "2014": 0.724, + "2015": 0.728, + "2016": 0.734, + "2017": 0.738, + "2018": 0.744, + "2019": 0.748, + "2020": 0.731, + "2021": 0.731 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr102", + "Region": "North East (Amazonas, Loreto, San Martin, Ucayali)", + "1990": 0.579, + "1991": 0.583, + "1992": 0.583, + "1993": 0.587, + "1994": 0.596, + "1995": 0.605, + "1996": 0.608, + "1997": 0.608, + "1998": 0.612, + "1999": 0.617, + "2000": 0.616, + "2001": 0.622, + "2002": 0.621, + "2003": 0.619, + "2004": 0.624, + "2005": 0.616, + "2006": 0.617, + "2007": 0.636, + "2008": 0.654, + "2009": 0.648, + "2010": 0.653, + "2011": 0.669, + "2012": 0.683, + "2013": 0.69, + "2014": 0.695, + "2015": 0.699, + "2016": 0.705, + "2017": 0.709, + "2018": 0.715, + "2019": 0.719, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr104", + "Region": "South (Tacna, Moquegua, Arequipa, Ica, Ayacucho)", + "1990": 0.641, + "1991": 0.646, + "1992": 0.646, + "1993": 0.65, + "1994": 0.66, + "1995": 0.669, + "1996": 0.673, + "1997": 0.68, + "1998": 0.691, + "1999": 0.703, + "2000": 0.708, + "2001": 0.715, + "2002": 0.714, + "2003": 0.711, + "2004": 0.716, + "2005": 0.713, + "2006": 0.72, + "2007": 0.727, + "2008": 0.733, + "2009": 0.724, + "2010": 0.745, + "2011": 0.756, + "2012": 0.762, + "2013": 0.77, + "2014": 0.775, + "2015": 0.779, + "2016": 0.786, + "2017": 0.79, + "2018": 0.796, + "2019": 0.801, + "2020": 0.783, + "2021": 0.783 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr105", + "Region": "West (Ancash, Lima, Callao)", + "1990": 0.698, + "1991": 0.702, + "1992": 0.703, + "1993": 0.707, + "1994": 0.717, + "1995": 0.727, + "1996": 0.731, + "1997": 0.734, + "1998": 0.741, + "1999": 0.75, + "2000": 0.752, + "2001": 0.758, + "2002": 0.756, + "2003": 0.753, + "2004": 0.757, + "2005": 0.753, + "2006": 0.76, + "2007": 0.767, + "2008": 0.772, + "2009": 0.773, + "2010": 0.781, + "2011": 0.793, + "2012": 0.798, + "2013": 0.806, + "2014": 0.812, + "2015": 0.816, + "2016": 0.823, + "2017": 0.828, + "2018": 0.834, + "2019": 0.839, + "2020": 0.82, + "2021": 0.82 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "National", + "GDLCODE": "PHLt", + "Region": "Total", + "1990": 0.598, + "1991": 0.599, + "1992": 0.603, + "1993": 0.606, + "1994": 0.609, + "1995": 0.612, + "1996": 0.62, + "1997": 0.625, + "1998": 0.63, + "1999": 0.633, + "2000": 0.633, + "2001": 0.638, + "2002": 0.645, + "2003": 0.65, + "2004": 0.657, + "2005": 0.658, + "2006": 0.659, + "2007": 0.664, + "2008": 0.668, + "2009": 0.667, + "2010": 0.674, + "2011": 0.679, + "2012": 0.685, + "2013": 0.692, + "2014": 0.696, + "2015": 0.698, + "2016": 0.7, + "2017": 0.704, + "2018": 0.71, + "2019": 0.718, + "2020": 0.71, + "2021": 0.699 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr117", + "Region": "ARMM", + "1990": 0.504, + "1991": 0.505, + "1992": 0.508, + "1993": 0.51, + "1994": 0.514, + "1995": 0.516, + "1996": 0.523, + "1997": 0.527, + "1998": 0.532, + "1999": 0.532, + "2000": 0.528, + "2001": 0.529, + "2002": 0.531, + "2003": 0.532, + "2004": 0.534, + "2005": 0.533, + "2006": 0.531, + "2007": 0.533, + "2008": 0.533, + "2009": 0.534, + "2010": 0.542, + "2011": 0.548, + "2012": 0.556, + "2013": 0.563, + "2014": 0.571, + "2015": 0.576, + "2016": 0.581, + "2017": 0.588, + "2018": 0.594, + "2019": 0.6, + "2020": 0.592, + "2021": 0.583 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr102", + "Region": "Cordillera Admin Region", + "1990": 0.577, + "1991": 0.579, + "1992": 0.582, + "1993": 0.584, + "1994": 0.588, + "1995": 0.591, + "1996": 0.599, + "1997": 0.603, + "1998": 0.608, + "1999": 0.62, + "2000": 0.629, + "2001": 0.643, + "2002": 0.658, + "2003": 0.673, + "2004": 0.677, + "2005": 0.678, + "2006": 0.677, + "2007": 0.681, + "2008": 0.683, + "2009": 0.684, + "2010": 0.694, + "2011": 0.7, + "2012": 0.709, + "2013": 0.718, + "2014": 0.722, + "2015": 0.724, + "2016": 0.724, + "2017": 0.728, + "2018": 0.735, + "2019": 0.743, + "2020": 0.734, + "2021": 0.723 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr103", + "Region": "I-Ilocos", + "1990": 0.62, + "1991": 0.621, + "1992": 0.625, + "1993": 0.628, + "1994": 0.631, + "1995": 0.634, + "1996": 0.643, + "1997": 0.647, + "1998": 0.652, + "1999": 0.653, + "2000": 0.651, + "2001": 0.654, + "2002": 0.658, + "2003": 0.661, + "2004": 0.67, + "2005": 0.674, + "2006": 0.676, + "2007": 0.683, + "2008": 0.689, + "2009": 0.686, + "2010": 0.691, + "2011": 0.694, + "2012": 0.698, + "2013": 0.703, + "2014": 0.706, + "2015": 0.707, + "2016": 0.708, + "2017": 0.711, + "2018": 0.718, + "2019": 0.726, + "2020": 0.717, + "2021": 0.706 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr104", + "Region": "II-Cagayan Valley", + "1990": 0.619, + "1991": 0.621, + "1992": 0.625, + "1993": 0.627, + "1994": 0.631, + "1995": 0.634, + "1996": 0.642, + "1997": 0.647, + "1998": 0.652, + "1999": 0.648, + "2000": 0.642, + "2001": 0.64, + "2002": 0.639, + "2003": 0.638, + "2004": 0.644, + "2005": 0.646, + "2006": 0.647, + "2007": 0.652, + "2008": 0.656, + "2009": 0.657, + "2010": 0.665, + "2011": 0.671, + "2012": 0.679, + "2013": 0.686, + "2014": 0.688, + "2015": 0.689, + "2016": 0.689, + "2017": 0.691, + "2018": 0.698, + "2019": 0.705, + "2020": 0.697, + "2021": 0.686 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr105", + "Region": "III-Central Luzon", + "1990": 0.569, + "1991": 0.57, + "1992": 0.574, + "1993": 0.576, + "1994": 0.58, + "1995": 0.582, + "1996": 0.59, + "1997": 0.595, + "1998": 0.6, + "1999": 0.614, + "2000": 0.625, + "2001": 0.64, + "2002": 0.657, + "2003": 0.674, + "2004": 0.678, + "2005": 0.678, + "2006": 0.676, + "2007": 0.68, + "2008": 0.681, + "2009": 0.68, + "2010": 0.686, + "2011": 0.69, + "2012": 0.695, + "2013": 0.7, + "2014": 0.706, + "2015": 0.71, + "2016": 0.713, + "2017": 0.718, + "2018": 0.725, + "2019": 0.733, + "2020": 0.724, + "2021": 0.713 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr106", + "Region": "IVA-CALABARZON", + "1990": 0.592, + "1991": 0.593, + "1992": 0.597, + "1993": 0.599, + "1994": 0.603, + "1995": 0.606, + "1996": 0.614, + "1997": 0.619, + "1998": 0.624, + "1999": 0.637, + "2000": 0.647, + "2001": 0.661, + "2002": 0.677, + "2003": 0.693, + "2004": 0.698, + "2005": 0.698, + "2006": 0.697, + "2007": 0.701, + "2008": 0.703, + "2009": 0.701, + "2010": 0.708, + "2011": 0.711, + "2012": 0.717, + "2013": 0.722, + "2014": 0.725, + "2015": 0.726, + "2016": 0.726, + "2017": 0.728, + "2018": 0.735, + "2019": 0.743, + "2020": 0.735, + "2021": 0.724 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr107", + "Region": "IVB-MIMAROPA", + "1990": 0.583, + "1991": 0.584, + "1992": 0.588, + "1993": 0.59, + "1994": 0.594, + "1995": 0.596, + "1996": 0.604, + "1997": 0.609, + "1998": 0.614, + "1999": 0.607, + "2000": 0.598, + "2001": 0.592, + "2002": 0.589, + "2003": 0.584, + "2004": 0.592, + "2005": 0.596, + "2006": 0.598, + "2007": 0.605, + "2008": 0.611, + "2009": 0.612, + "2010": 0.62, + "2011": 0.626, + "2012": 0.634, + "2013": 0.641, + "2014": 0.651, + "2015": 0.659, + "2016": 0.666, + "2017": 0.676, + "2018": 0.682, + "2019": 0.69, + "2020": 0.681, + "2021": 0.67 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr112", + "Region": "IX-Zamboanga Peninsula", + "1990": 0.571, + "1991": 0.572, + "1992": 0.575, + "1993": 0.578, + "1994": 0.581, + "1995": 0.584, + "1996": 0.592, + "1997": 0.596, + "1998": 0.601, + "1999": 0.601, + "2000": 0.598, + "2001": 0.599, + "2002": 0.602, + "2003": 0.603, + "2004": 0.615, + "2005": 0.623, + "2006": 0.629, + "2007": 0.64, + "2008": 0.649, + "2009": 0.646, + "2010": 0.652, + "2011": 0.654, + "2012": 0.659, + "2013": 0.663, + "2014": 0.667, + "2015": 0.669, + "2016": 0.67, + "2017": 0.673, + "2018": 0.68, + "2019": 0.687, + "2020": 0.679, + "2021": 0.668 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr101", + "Region": "National Capital Region", + "1990": 0.603, + "1991": 0.605, + "1992": 0.608, + "1993": 0.611, + "1994": 0.615, + "1995": 0.617, + "1996": 0.626, + "1997": 0.63, + "1998": 0.635, + "1999": 0.652, + "2000": 0.665, + "2001": 0.683, + "2002": 0.703, + "2003": 0.722, + "2004": 0.727, + "2005": 0.728, + "2006": 0.726, + "2007": 0.73, + "2008": 0.731, + "2009": 0.729, + "2010": 0.734, + "2011": 0.737, + "2012": 0.741, + "2013": 0.746, + "2014": 0.752, + "2015": 0.756, + "2016": 0.759, + "2017": 0.765, + "2018": 0.772, + "2019": 0.781, + "2020": 0.772, + "2021": 0.76 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr108", + "Region": "V-Bicol", + "1990": 0.529, + "1991": 0.53, + "1992": 0.533, + "1993": 0.535, + "1994": 0.539, + "1995": 0.541, + "1996": 0.549, + "1997": 0.553, + "1998": 0.558, + "1999": 0.571, + "2000": 0.58, + "2001": 0.594, + "2002": 0.61, + "2003": 0.625, + "2004": 0.632, + "2005": 0.636, + "2006": 0.638, + "2007": 0.644, + "2008": 0.65, + "2009": 0.649, + "2010": 0.656, + "2011": 0.66, + "2012": 0.666, + "2013": 0.672, + "2014": 0.675, + "2015": 0.676, + "2016": 0.676, + "2017": 0.678, + "2018": 0.685, + "2019": 0.693, + "2020": 0.684, + "2021": 0.673 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr109", + "Region": "VI-Western Visayas", + "1990": 0.547, + "1991": 0.548, + "1992": 0.551, + "1993": 0.554, + "1994": 0.557, + "1995": 0.56, + "1996": 0.568, + "1997": 0.572, + "1998": 0.577, + "1999": 0.583, + "2000": 0.587, + "2001": 0.595, + "2002": 0.605, + "2003": 0.613, + "2004": 0.623, + "2005": 0.629, + "2006": 0.633, + "2007": 0.642, + "2008": 0.65, + "2009": 0.649, + "2010": 0.657, + "2011": 0.661, + "2012": 0.668, + "2013": 0.674, + "2014": 0.675, + "2015": 0.674, + "2016": 0.672, + "2017": 0.673, + "2018": 0.68, + "2019": 0.687, + "2020": 0.679, + "2021": 0.668 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr110", + "Region": "VII-Central Visayas", + "1990": 0.569, + "1991": 0.57, + "1992": 0.573, + "1993": 0.576, + "1994": 0.579, + "1995": 0.582, + "1996": 0.59, + "1997": 0.594, + "1998": 0.599, + "1999": 0.607, + "2000": 0.611, + "2001": 0.62, + "2002": 0.631, + "2003": 0.641, + "2004": 0.647, + "2005": 0.648, + "2006": 0.648, + "2007": 0.653, + "2008": 0.657, + "2009": 0.656, + "2010": 0.662, + "2011": 0.666, + "2012": 0.673, + "2013": 0.679, + "2014": 0.683, + "2015": 0.686, + "2016": 0.687, + "2017": 0.691, + "2018": 0.698, + "2019": 0.706, + "2020": 0.697, + "2021": 0.686 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr111", + "Region": "VIII-Eastern Visayas", + "1990": 0.578, + "1991": 0.579, + "1992": 0.583, + "1993": 0.585, + "1994": 0.589, + "1995": 0.591, + "1996": 0.599, + "1997": 0.603, + "1998": 0.608, + "1999": 0.604, + "2000": 0.597, + "2001": 0.593, + "2002": 0.592, + "2003": 0.589, + "2004": 0.598, + "2005": 0.603, + "2006": 0.607, + "2007": 0.615, + "2008": 0.622, + "2009": 0.627, + "2010": 0.641, + "2011": 0.651, + "2012": 0.664, + "2013": 0.677, + "2014": 0.68, + "2015": 0.682, + "2016": 0.683, + "2017": 0.687, + "2018": 0.693, + "2019": 0.701, + "2020": 0.692, + "2021": 0.681 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr113", + "Region": "X-Northern Mindanao", + "1990": 0.679, + "1991": 0.68, + "1992": 0.685, + "1993": 0.687, + "1994": 0.691, + "1995": 0.694, + "1996": 0.703, + "1997": 0.708, + "1998": 0.713, + "1999": 0.697, + "2000": 0.677, + "2001": 0.662, + "2002": 0.649, + "2003": 0.635, + "2004": 0.643, + "2005": 0.646, + "2006": 0.648, + "2007": 0.655, + "2008": 0.661, + "2009": 0.655, + "2010": 0.657, + "2011": 0.656, + "2012": 0.657, + "2013": 0.658, + "2014": 0.666, + "2015": 0.673, + "2016": 0.678, + "2017": 0.686, + "2018": 0.693, + "2019": 0.701, + "2020": 0.692, + "2021": 0.681 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr114", + "Region": "XI-Davao", + "1990": 0.577, + "1991": 0.579, + "1992": 0.582, + "1993": 0.584, + "1994": 0.588, + "1995": 0.591, + "1996": 0.599, + "1997": 0.603, + "1998": 0.608, + "1999": 0.613, + "2000": 0.614, + "2001": 0.619, + "2002": 0.626, + "2003": 0.633, + "2004": 0.636, + "2005": 0.636, + "2006": 0.634, + "2007": 0.636, + "2008": 0.637, + "2009": 0.64, + "2010": 0.651, + "2011": 0.659, + "2012": 0.669, + "2013": 0.679, + "2014": 0.683, + "2015": 0.684, + "2016": 0.685, + "2017": 0.689, + "2018": 0.695, + "2019": 0.703, + "2020": 0.694, + "2021": 0.684 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr115", + "Region": "XII-SOCCSKSARGEN", + "1990": 0.479, + "1991": 0.48, + "1992": 0.483, + "1993": 0.485, + "1994": 0.488, + "1995": 0.49, + "1996": 0.498, + "1997": 0.501, + "1998": 0.506, + "1999": 0.527, + "2000": 0.545, + "2001": 0.567, + "2002": 0.592, + "2003": 0.615, + "2004": 0.62, + "2005": 0.621, + "2006": 0.621, + "2007": 0.625, + "2008": 0.628, + "2009": 0.627, + "2010": 0.634, + "2011": 0.637, + "2012": 0.643, + "2013": 0.648, + "2014": 0.651, + "2015": 0.653, + "2016": 0.653, + "2017": 0.656, + "2018": 0.662, + "2019": 0.67, + "2020": 0.661, + "2021": 0.651 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr116", + "Region": "XIII-Caraga", + "1990": 0.569, + "1991": 0.571, + "1992": 0.574, + "1993": 0.577, + "1994": 0.58, + "1995": 0.583, + "1996": 0.591, + "1997": 0.595, + "1998": 0.6, + "1999": 0.605, + "2000": 0.606, + "2001": 0.612, + "2002": 0.62, + "2003": 0.627, + "2004": 0.634, + "2005": 0.637, + "2006": 0.639, + "2007": 0.646, + "2008": 0.651, + "2009": 0.649, + "2010": 0.655, + "2011": 0.658, + "2012": 0.663, + "2013": 0.668, + "2014": 0.675, + "2015": 0.68, + "2016": 0.684, + "2017": 0.691, + "2018": 0.697, + "2019": 0.705, + "2020": 0.696, + "2021": 0.686 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "National", + "GDLCODE": "POLt", + "Region": "Total", + "1990": 0.716, + "1991": 0.713, + "1992": 0.718, + "1993": 0.731, + "1994": 0.741, + "1995": 0.746, + "1996": 0.755, + "1997": 0.766, + "1998": 0.776, + "1999": 0.783, + "2000": 0.793, + "2001": 0.799, + "2002": 0.806, + "2003": 0.811, + "2004": 0.809, + "2005": 0.815, + "2006": 0.82, + "2007": 0.825, + "2008": 0.831, + "2009": 0.835, + "2010": 0.841, + "2011": 0.847, + "2012": 0.852, + "2013": 0.863, + "2014": 0.865, + "2015": 0.868, + "2016": 0.872, + "2017": 0.875, + "2018": 0.877, + "2019": 0.881, + "2020": 0.876, + "2021": 0.876 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr112", + "Region": "Dolnoslaskie", + "1990": 0.72, + "1991": 0.717, + "1992": 0.722, + "1993": 0.735, + "1994": 0.745, + "1995": 0.75, + "1996": 0.758, + "1997": 0.772, + "1998": 0.781, + "1999": 0.787, + "2000": 0.796, + "2001": 0.804, + "2002": 0.813, + "2003": 0.816, + "2004": 0.814, + "2005": 0.824, + "2006": 0.831, + "2007": 0.835, + "2008": 0.837, + "2009": 0.843, + "2010": 0.852, + "2011": 0.86, + "2012": 0.863, + "2013": 0.875, + "2014": 0.878, + "2015": 0.879, + "2016": 0.884, + "2017": 0.886, + "2018": 0.888, + "2019": 0.894, + "2020": 0.889, + "2021": 0.889 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr114", + "Region": "Kujawsko-Pomorskie", + "1990": 0.71, + "1991": 0.707, + "1992": 0.712, + "1993": 0.726, + "1994": 0.735, + "1995": 0.742, + "1996": 0.75, + "1997": 0.761, + "1998": 0.769, + "1999": 0.779, + "2000": 0.788, + "2001": 0.793, + "2002": 0.8, + "2003": 0.805, + "2004": 0.8, + "2005": 0.806, + "2006": 0.808, + "2007": 0.81, + "2008": 0.819, + "2009": 0.82, + "2010": 0.825, + "2011": 0.835, + "2012": 0.839, + "2013": 0.85, + "2014": 0.85, + "2015": 0.855, + "2016": 0.859, + "2017": 0.862, + "2018": 0.862, + "2019": 0.863, + "2020": 0.857, + "2021": 0.858 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr101", + "Region": "Lodzkie", + "1990": 0.711, + "1991": 0.707, + "1992": 0.712, + "1993": 0.725, + "1994": 0.734, + "1995": 0.739, + "1996": 0.747, + "1997": 0.758, + "1998": 0.767, + "1999": 0.774, + "2000": 0.784, + "2001": 0.79, + "2002": 0.797, + "2003": 0.803, + "2004": 0.802, + "2005": 0.807, + "2006": 0.811, + "2007": 0.816, + "2008": 0.823, + "2009": 0.824, + "2010": 0.832, + "2011": 0.838, + "2012": 0.844, + "2013": 0.854, + "2014": 0.859, + "2015": 0.862, + "2016": 0.866, + "2017": 0.867, + "2018": 0.871, + "2019": 0.876, + "2020": 0.87, + "2021": 0.871 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr105", + "Region": "Lubelskie", + "1990": 0.703, + "1991": 0.699, + "1992": 0.704, + "1993": 0.715, + "1994": 0.725, + "1995": 0.731, + "1996": 0.739, + "1997": 0.749, + "1998": 0.758, + "1999": 0.767, + "2000": 0.775, + "2001": 0.784, + "2002": 0.79, + "2003": 0.794, + "2004": 0.791, + "2005": 0.797, + "2006": 0.802, + "2007": 0.808, + "2008": 0.814, + "2009": 0.818, + "2010": 0.822, + "2011": 0.829, + "2012": 0.838, + "2013": 0.848, + "2014": 0.851, + "2015": 0.853, + "2016": 0.856, + "2017": 0.856, + "2018": 0.859, + "2019": 0.867, + "2020": 0.861, + "2021": 0.862 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr111", + "Region": "Lubuskie", + "1990": 0.712, + "1991": 0.708, + "1992": 0.712, + "1993": 0.725, + "1994": 0.736, + "1995": 0.742, + "1996": 0.751, + "1997": 0.762, + "1998": 0.77, + "1999": 0.78, + "2000": 0.788, + "2001": 0.795, + "2002": 0.8, + "2003": 0.803, + "2004": 0.805, + "2005": 0.81, + "2006": 0.814, + "2007": 0.817, + "2008": 0.82, + "2009": 0.822, + "2010": 0.832, + "2011": 0.834, + "2012": 0.839, + "2013": 0.849, + "2014": 0.856, + "2015": 0.855, + "2016": 0.858, + "2017": 0.861, + "2018": 0.861, + "2019": 0.863, + "2020": 0.857, + "2021": 0.858 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr103", + "Region": "Malopolskie", + "1990": 0.725, + "1991": 0.721, + "1992": 0.726, + "1993": 0.738, + "1994": 0.749, + "1995": 0.755, + "1996": 0.763, + "1997": 0.774, + "1998": 0.785, + "1999": 0.793, + "2000": 0.802, + "2001": 0.807, + "2002": 0.814, + "2003": 0.818, + "2004": 0.816, + "2005": 0.82, + "2006": 0.83, + "2007": 0.833, + "2008": 0.839, + "2009": 0.843, + "2010": 0.85, + "2011": 0.856, + "2012": 0.86, + "2013": 0.872, + "2014": 0.874, + "2015": 0.878, + "2016": 0.883, + "2017": 0.889, + "2018": 0.891, + "2019": 0.893, + "2020": 0.888, + "2021": 0.888 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr102", + "Region": "Mazowieckie", + "1990": 0.751, + "1991": 0.748, + "1992": 0.753, + "1993": 0.758, + "1994": 0.776, + "1995": 0.782, + "1996": 0.79, + "1997": 0.802, + "1998": 0.812, + "1999": 0.82, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.849, + "2004": 0.85, + "2005": 0.859, + "2006": 0.865, + "2007": 0.871, + "2008": 0.874, + "2009": 0.879, + "2010": 0.888, + "2011": 0.893, + "2012": 0.899, + "2013": 0.912, + "2014": 0.915, + "2015": 0.917, + "2016": 0.92, + "2017": 0.924, + "2018": 0.926, + "2019": 0.932, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr113", + "Region": "Opolskie", + "1990": 0.71, + "1991": 0.707, + "1992": 0.712, + "1993": 0.725, + "1994": 0.736, + "1995": 0.742, + "1996": 0.75, + "1997": 0.762, + "1998": 0.773, + "1999": 0.781, + "2000": 0.789, + "2001": 0.794, + "2002": 0.801, + "2003": 0.804, + "2004": 0.807, + "2005": 0.811, + "2006": 0.815, + "2007": 0.822, + "2008": 0.829, + "2009": 0.83, + "2010": 0.834, + "2011": 0.84, + "2012": 0.842, + "2013": 0.852, + "2014": 0.857, + "2015": 0.859, + "2016": 0.863, + "2017": 0.863, + "2018": 0.867, + "2019": 0.87, + "2020": 0.865, + "2021": 0.865 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr106", + "Region": "Podkarpackie", + "1990": 0.708, + "1991": 0.705, + "1992": 0.711, + "1993": 0.722, + "1994": 0.733, + "1995": 0.738, + "1996": 0.746, + "1997": 0.757, + "1998": 0.767, + "1999": 0.775, + "2000": 0.783, + "2001": 0.79, + "2002": 0.796, + "2003": 0.802, + "2004": 0.796, + "2005": 0.802, + "2006": 0.81, + "2007": 0.816, + "2008": 0.823, + "2009": 0.827, + "2010": 0.833, + "2011": 0.837, + "2012": 0.842, + "2013": 0.855, + "2014": 0.854, + "2015": 0.859, + "2016": 0.865, + "2017": 0.868, + "2018": 0.871, + "2019": 0.873, + "2020": 0.867, + "2021": 0.868 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr108", + "Region": "Podlaskie", + "1990": 0.706, + "1991": 0.702, + "1992": 0.707, + "1993": 0.718, + "1994": 0.729, + "1995": 0.733, + "1996": 0.742, + "1997": 0.754, + "1998": 0.764, + "1999": 0.771, + "2000": 0.78, + "2001": 0.79, + "2002": 0.797, + "2003": 0.799, + "2004": 0.795, + "2005": 0.802, + "2006": 0.808, + "2007": 0.815, + "2008": 0.821, + "2009": 0.824, + "2010": 0.832, + "2011": 0.839, + "2012": 0.842, + "2013": 0.853, + "2014": 0.857, + "2015": 0.857, + "2016": 0.861, + "2017": 0.866, + "2018": 0.868, + "2019": 0.874, + "2020": 0.868, + "2021": 0.869 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr116", + "Region": "Pomorskie", + "1990": 0.724, + "1991": 0.72, + "1992": 0.725, + "1993": 0.739, + "1994": 0.749, + "1995": 0.756, + "1996": 0.765, + "1997": 0.776, + "1998": 0.785, + "1999": 0.795, + "2000": 0.804, + "2001": 0.809, + "2002": 0.814, + "2003": 0.82, + "2004": 0.817, + "2005": 0.823, + "2006": 0.828, + "2007": 0.833, + "2008": 0.837, + "2009": 0.843, + "2010": 0.849, + "2011": 0.856, + "2012": 0.86, + "2013": 0.872, + "2014": 0.87, + "2015": 0.875, + "2016": 0.881, + "2017": 0.886, + "2018": 0.887, + "2019": 0.893, + "2020": 0.887, + "2021": 0.888 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr104", + "Region": "Slaskie", + "1990": 0.719, + "1991": 0.715, + "1992": 0.721, + "1993": 0.734, + "1994": 0.744, + "1995": 0.751, + "1996": 0.759, + "1997": 0.771, + "1998": 0.781, + "1999": 0.787, + "2000": 0.796, + "2001": 0.806, + "2002": 0.815, + "2003": 0.821, + "2004": 0.819, + "2005": 0.823, + "2006": 0.828, + "2007": 0.832, + "2008": 0.838, + "2009": 0.844, + "2010": 0.851, + "2011": 0.856, + "2012": 0.859, + "2013": 0.869, + "2014": 0.871, + "2015": 0.873, + "2016": 0.878, + "2017": 0.88, + "2018": 0.884, + "2019": 0.888, + "2020": 0.883, + "2021": 0.883 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr107", + "Region": "Swietokrzyskie", + "1990": 0.706, + "1991": 0.702, + "1992": 0.706, + "1993": 0.718, + "1994": 0.728, + "1995": 0.734, + "1996": 0.743, + "1997": 0.753, + "1998": 0.764, + "1999": 0.769, + "2000": 0.781, + "2001": 0.787, + "2002": 0.798, + "2003": 0.804, + "2004": 0.802, + "2005": 0.803, + "2006": 0.807, + "2007": 0.815, + "2008": 0.824, + "2009": 0.829, + "2010": 0.83, + "2011": 0.834, + "2012": 0.841, + "2013": 0.852, + "2014": 0.853, + "2015": 0.851, + "2016": 0.857, + "2017": 0.86, + "2018": 0.863, + "2019": 0.867, + "2020": 0.862, + "2021": 0.862 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr115", + "Region": "Warminsko-Mazurskie", + "1990": 0.698, + "1991": 0.694, + "1992": 0.7, + "1993": 0.713, + "1994": 0.724, + "1995": 0.729, + "1996": 0.737, + "1997": 0.751, + "1998": 0.757, + "1999": 0.766, + "2000": 0.775, + "2001": 0.779, + "2002": 0.786, + "2003": 0.791, + "2004": 0.788, + "2005": 0.795, + "2006": 0.799, + "2007": 0.804, + "2008": 0.808, + "2009": 0.815, + "2010": 0.82, + "2011": 0.824, + "2012": 0.826, + "2013": 0.835, + "2014": 0.84, + "2015": 0.843, + "2016": 0.843, + "2017": 0.845, + "2018": 0.846, + "2019": 0.849, + "2020": 0.843, + "2021": 0.844 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr109", + "Region": "Wielkopolskie", + "1990": 0.722, + "1991": 0.719, + "1992": 0.723, + "1993": 0.738, + "1994": 0.747, + "1995": 0.753, + "1996": 0.763, + "1997": 0.773, + "1998": 0.782, + "1999": 0.79, + "2000": 0.799, + "2001": 0.806, + "2002": 0.812, + "2003": 0.819, + "2004": 0.817, + "2005": 0.825, + "2006": 0.829, + "2007": 0.834, + "2008": 0.839, + "2009": 0.842, + "2010": 0.85, + "2011": 0.856, + "2012": 0.861, + "2013": 0.872, + "2014": 0.875, + "2015": 0.877, + "2016": 0.881, + "2017": 0.882, + "2018": 0.883, + "2019": 0.889, + "2020": 0.884, + "2021": 0.884 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr110", + "Region": "Zachodniopomorskie", + "1990": 0.715, + "1991": 0.712, + "1992": 0.718, + "1993": 0.73, + "1994": 0.741, + "1995": 0.746, + "1996": 0.755, + "1997": 0.766, + "1998": 0.777, + "1999": 0.784, + "2000": 0.793, + "2001": 0.799, + "2002": 0.805, + "2003": 0.807, + "2004": 0.805, + "2005": 0.81, + "2006": 0.817, + "2007": 0.823, + "2008": 0.826, + "2009": 0.829, + "2010": 0.833, + "2011": 0.837, + "2012": 0.844, + "2013": 0.853, + "2014": 0.855, + "2015": 0.858, + "2016": 0.861, + "2017": 0.864, + "2018": 0.867, + "2019": 0.87, + "2020": 0.865, + "2021": 0.865 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "National", + "GDLCODE": "PRTt", + "Region": "Total", + "1990": 0.701, + "1991": 0.711, + "1992": 0.727, + "1993": 0.741, + "1994": 0.754, + "1995": 0.761, + "1996": 0.769, + "1997": 0.778, + "1998": 0.786, + "1999": 0.785, + "2000": 0.791, + "2001": 0.797, + "2002": 0.798, + "2003": 0.802, + "2004": 0.805, + "2005": 0.806, + "2006": 0.811, + "2007": 0.818, + "2008": 0.822, + "2009": 0.825, + "2010": 0.829, + "2011": 0.835, + "2012": 0.836, + "2013": 0.845, + "2014": 0.848, + "2015": 0.85, + "2016": 0.853, + "2017": 0.859, + "2018": 0.86, + "2019": 0.867, + "2020": 0.863, + "2021": 0.866 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr105", + "Region": "Alentejo", + "1990": 0.691, + "1991": 0.701, + "1992": 0.714, + "1993": 0.726, + "1994": 0.739, + "1995": 0.745, + "1996": 0.753, + "1997": 0.761, + "1998": 0.768, + "1999": 0.767, + "2000": 0.773, + "2001": 0.779, + "2002": 0.78, + "2003": 0.781, + "2004": 0.787, + "2005": 0.786, + "2006": 0.792, + "2007": 0.798, + "2008": 0.8, + "2009": 0.801, + "2010": 0.808, + "2011": 0.813, + "2012": 0.814, + "2013": 0.822, + "2014": 0.824, + "2015": 0.828, + "2016": 0.83, + "2017": 0.839, + "2018": 0.84, + "2019": 0.843, + "2020": 0.84, + "2021": 0.842 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr102", + "Region": "Algarve", + "1990": 0.694, + "1991": 0.704, + "1992": 0.718, + "1993": 0.733, + "1994": 0.739, + "1995": 0.748, + "1996": 0.76, + "1997": 0.768, + "1998": 0.775, + "1999": 0.775, + "2000": 0.78, + "2001": 0.786, + "2002": 0.788, + "2003": 0.795, + "2004": 0.797, + "2005": 0.799, + "2006": 0.803, + "2007": 0.807, + "2008": 0.812, + "2009": 0.816, + "2010": 0.822, + "2011": 0.824, + "2012": 0.827, + "2013": 0.835, + "2014": 0.836, + "2015": 0.834, + "2016": 0.836, + "2017": 0.843, + "2018": 0.844, + "2019": 0.85, + "2020": 0.846, + "2021": 0.849 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr104", + "Region": "Area Metropolitana de Lisboa", + "1990": 0.738, + "1991": 0.749, + "1992": 0.762, + "1993": 0.777, + "1994": 0.79, + "1995": 0.796, + "1996": 0.804, + "1997": 0.814, + "1998": 0.822, + "1999": 0.821, + "2000": 0.828, + "2001": 0.834, + "2002": 0.836, + "2003": 0.843, + "2004": 0.845, + "2005": 0.846, + "2006": 0.851, + "2007": 0.858, + "2008": 0.862, + "2009": 0.865, + "2010": 0.869, + "2011": 0.875, + "2012": 0.876, + "2013": 0.884, + "2014": 0.889, + "2015": 0.89, + "2016": 0.891, + "2017": 0.897, + "2018": 0.895, + "2019": 0.902, + "2020": 0.898, + "2021": 0.9 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr103", + "Region": "Centro", + "1990": 0.698, + "1991": 0.708, + "1992": 0.721, + "1993": 0.735, + "1994": 0.747, + "1995": 0.756, + "1996": 0.764, + "1997": 0.772, + "1998": 0.78, + "1999": 0.779, + "2000": 0.785, + "2001": 0.791, + "2002": 0.792, + "2003": 0.795, + "2004": 0.798, + "2005": 0.798, + "2006": 0.804, + "2007": 0.81, + "2008": 0.812, + "2009": 0.816, + "2010": 0.82, + "2011": 0.826, + "2012": 0.828, + "2013": 0.837, + "2014": 0.839, + "2015": 0.842, + "2016": 0.845, + "2017": 0.849, + "2018": 0.852, + "2019": 0.858, + "2020": 0.855, + "2021": 0.857 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr101", + "Region": "Norte", + "1990": 0.685, + "1991": 0.695, + "1992": 0.709, + "1993": 0.725, + "1994": 0.738, + "1995": 0.745, + "1996": 0.753, + "1997": 0.761, + "1998": 0.769, + "1999": 0.767, + "2000": 0.774, + "2001": 0.779, + "2002": 0.781, + "2003": 0.783, + "2004": 0.785, + "2005": 0.786, + "2006": 0.792, + "2007": 0.799, + "2008": 0.805, + "2009": 0.808, + "2010": 0.812, + "2011": 0.818, + "2012": 0.819, + "2013": 0.828, + "2014": 0.831, + "2015": 0.833, + "2016": 0.837, + "2017": 0.844, + "2018": 0.847, + "2019": 0.854, + "2020": 0.85, + "2021": 0.852 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr107", + "Region": "Regiao Autonoma da Madeira", + "1990": 0.666, + "1991": 0.675, + "1992": 0.685, + "1993": 0.696, + "1994": 0.711, + "1995": 0.719, + "1996": 0.723, + "1997": 0.733, + "1998": 0.739, + "1999": 0.739, + "2000": 0.742, + "2001": 0.747, + "2002": 0.753, + "2003": 0.756, + "2004": 0.764, + "2005": 0.765, + "2006": 0.768, + "2007": 0.776, + "2008": 0.783, + "2009": 0.784, + "2010": 0.787, + "2011": 0.796, + "2012": 0.794, + "2013": 0.805, + "2014": 0.8, + "2015": 0.804, + "2016": 0.808, + "2017": 0.817, + "2018": 0.817, + "2019": 0.82, + "2020": 0.817, + "2021": 0.819 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr106", + "Region": "Regiao Autonoma dos Acores", + "1990": 0.661, + "1991": 0.671, + "1992": 0.681, + "1993": 0.691, + "1994": 0.707, + "1995": 0.712, + "1996": 0.721, + "1997": 0.723, + "1998": 0.735, + "1999": 0.733, + "2000": 0.738, + "2001": 0.747, + "2002": 0.746, + "2003": 0.751, + "2004": 0.752, + "2005": 0.757, + "2006": 0.762, + "2007": 0.769, + "2008": 0.774, + "2009": 0.772, + "2010": 0.777, + "2011": 0.781, + "2012": 0.786, + "2013": 0.789, + "2014": 0.793, + "2015": 0.798, + "2016": 0.799, + "2017": 0.804, + "2018": 0.803, + "2019": 0.809, + "2020": 0.806, + "2021": 0.808 + }, + { + "Country": "Qatar", + "Continent": "Asia/Pacific", + "ISO_Code": "QAT", + "Level": "National", + "GDLCODE": "QATt", + "Region": "Total", + "1990": 0.758, + "1991": 0.754, + "1992": 0.756, + "1993": 0.763, + "1994": 0.77, + "1995": 0.775, + "1996": 0.782, + "1997": 0.795, + "1998": 0.799, + "1999": 0.802, + "2000": 0.801, + "2001": 0.803, + "2002": 0.809, + "2003": 0.819, + "2004": 0.822, + "2005": 0.827, + "2006": 0.825, + "2007": 0.834, + "2008": 0.84, + "2009": 0.838, + "2010": 0.834, + "2011": 0.844, + "2012": 0.829, + "2013": 0.834, + "2014": 0.839, + "2015": 0.846, + "2016": 0.85, + "2017": 0.849, + "2018": 0.853, + "2019": 0.859, + "2020": 0.854, + "2021": 0.855 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "National", + "GDLCODE": "ROUt", + "Region": "Total", + "1990": 0.703, + "1991": 0.689, + "1992": 0.679, + "1993": 0.68, + "1994": 0.682, + "1995": 0.688, + "1996": 0.693, + "1997": 0.696, + "1998": 0.7, + "1999": 0.708, + "2000": 0.715, + "2001": 0.722, + "2002": 0.729, + "2003": 0.732, + "2004": 0.742, + "2005": 0.756, + "2006": 0.77, + "2007": 0.786, + "2008": 0.806, + "2009": 0.809, + "2010": 0.807, + "2011": 0.808, + "2012": 0.805, + "2013": 0.81, + "2014": 0.811, + "2015": 0.813, + "2016": 0.816, + "2017": 0.823, + "2018": 0.827, + "2019": 0.832, + "2020": 0.824, + "2021": 0.821 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr108", + "Region": "Bucuresti", + "1990": 0.794, + "1991": 0.778, + "1992": 0.766, + "1993": 0.765, + "1994": 0.77, + "1995": 0.775, + "1996": 0.782, + "1997": 0.785, + "1998": 0.791, + "1999": 0.8, + "2000": 0.808, + "2001": 0.813, + "2002": 0.822, + "2003": 0.825, + "2004": 0.837, + "2005": 0.853, + "2006": 0.865, + "2007": 0.881, + "2008": 0.902, + "2009": 0.901, + "2010": 0.9, + "2011": 0.908, + "2012": 0.905, + "2013": 0.911, + "2014": 0.913, + "2015": 0.915, + "2016": 0.918, + "2017": 0.927, + "2018": 0.931, + "2019": 0.938, + "2020": 0.929, + "2021": 0.926 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr107", + "Region": "Centru", + "1990": 0.708, + "1991": 0.693, + "1992": 0.683, + "1993": 0.682, + "1994": 0.687, + "1995": 0.691, + "1996": 0.698, + "1997": 0.7, + "1998": 0.704, + "1999": 0.711, + "2000": 0.718, + "2001": 0.725, + "2002": 0.73, + "2003": 0.732, + "2004": 0.741, + "2005": 0.753, + "2006": 0.767, + "2007": 0.786, + "2008": 0.801, + "2009": 0.806, + "2010": 0.804, + "2011": 0.802, + "2012": 0.802, + "2013": 0.807, + "2014": 0.805, + "2015": 0.809, + "2016": 0.812, + "2017": 0.822, + "2018": 0.825, + "2019": 0.828, + "2020": 0.821, + "2021": 0.818 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr101", + "Region": "Nord-Est", + "1990": 0.675, + "1991": 0.661, + "1992": 0.653, + "1993": 0.653, + "1994": 0.653, + "1995": 0.659, + "1996": 0.664, + "1997": 0.666, + "1998": 0.671, + "1999": 0.678, + "2000": 0.685, + "2001": 0.69, + "2002": 0.7, + "2003": 0.699, + "2004": 0.711, + "2005": 0.721, + "2006": 0.734, + "2007": 0.75, + "2008": 0.768, + "2009": 0.77, + "2010": 0.765, + "2011": 0.765, + "2012": 0.765, + "2013": 0.771, + "2014": 0.769, + "2015": 0.768, + "2016": 0.77, + "2017": 0.779, + "2018": 0.781, + "2019": 0.785, + "2020": 0.778, + "2021": 0.775 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr106", + "Region": "Nord-Vest", + "1990": 0.69, + "1991": 0.674, + "1992": 0.663, + "1993": 0.663, + "1994": 0.667, + "1995": 0.675, + "1996": 0.682, + "1997": 0.684, + "1998": 0.688, + "1999": 0.695, + "2000": 0.702, + "2001": 0.711, + "2002": 0.72, + "2003": 0.722, + "2004": 0.732, + "2005": 0.746, + "2006": 0.76, + "2007": 0.779, + "2008": 0.797, + "2009": 0.8, + "2010": 0.799, + "2011": 0.797, + "2012": 0.795, + "2013": 0.8, + "2014": 0.804, + "2015": 0.807, + "2016": 0.814, + "2017": 0.824, + "2018": 0.829, + "2019": 0.836, + "2020": 0.828, + "2021": 0.825 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr103", + "Region": "Sud", + "1990": 0.673, + "1991": 0.661, + "1992": 0.652, + "1993": 0.654, + "1994": 0.657, + "1995": 0.661, + "1996": 0.666, + "1997": 0.668, + "1998": 0.672, + "1999": 0.679, + "2000": 0.686, + "2001": 0.695, + "2002": 0.699, + "2003": 0.702, + "2004": 0.713, + "2005": 0.726, + "2006": 0.741, + "2007": 0.755, + "2008": 0.773, + "2009": 0.778, + "2010": 0.774, + "2011": 0.779, + "2012": 0.771, + "2013": 0.778, + "2014": 0.78, + "2015": 0.779, + "2016": 0.781, + "2017": 0.787, + "2018": 0.79, + "2019": 0.793, + "2020": 0.786, + "2021": 0.783 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr102", + "Region": "Sud-Est", + "1990": 0.688, + "1991": 0.674, + "1992": 0.666, + "1993": 0.667, + "1994": 0.666, + "1995": 0.673, + "1996": 0.678, + "1997": 0.681, + "1998": 0.685, + "1999": 0.692, + "2000": 0.7, + "2001": 0.708, + "2002": 0.715, + "2003": 0.718, + "2004": 0.727, + "2005": 0.74, + "2006": 0.752, + "2007": 0.764, + "2008": 0.781, + "2009": 0.786, + "2010": 0.784, + "2011": 0.786, + "2012": 0.784, + "2013": 0.791, + "2014": 0.791, + "2015": 0.789, + "2016": 0.791, + "2017": 0.795, + "2018": 0.798, + "2019": 0.802, + "2020": 0.794, + "2021": 0.791 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr104", + "Region": "Sud-Vest Oltenia", + "1990": 0.686, + "1991": 0.675, + "1992": 0.666, + "1993": 0.667, + "1994": 0.669, + "1995": 0.673, + "1996": 0.679, + "1997": 0.681, + "1998": 0.685, + "1999": 0.692, + "2000": 0.699, + "2001": 0.708, + "2002": 0.709, + "2003": 0.716, + "2004": 0.727, + "2005": 0.736, + "2006": 0.752, + "2007": 0.767, + "2008": 0.784, + "2009": 0.789, + "2010": 0.787, + "2011": 0.786, + "2012": 0.785, + "2013": 0.79, + "2014": 0.789, + "2015": 0.791, + "2016": 0.795, + "2017": 0.8, + "2018": 0.807, + "2019": 0.811, + "2020": 0.804, + "2021": 0.801 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr105", + "Region": "Vest", + "1990": 0.707, + "1991": 0.691, + "1992": 0.68, + "1993": 0.682, + "1994": 0.685, + "1995": 0.691, + "1996": 0.696, + "1997": 0.699, + "1998": 0.704, + "1999": 0.711, + "2000": 0.718, + "2001": 0.725, + "2002": 0.734, + "2003": 0.738, + "2004": 0.748, + "2005": 0.762, + "2006": 0.777, + "2007": 0.794, + "2008": 0.815, + "2009": 0.818, + "2010": 0.817, + "2011": 0.817, + "2012": 0.813, + "2013": 0.816, + "2014": 0.814, + "2015": 0.817, + "2016": 0.823, + "2017": 0.825, + "2018": 0.832, + "2019": 0.835, + "2020": 0.827, + "2021": 0.824 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "National", + "GDLCODE": "RUSt", + "Region": "Total", + "1990": 0.743, + "1991": 0.741, + "1992": 0.728, + "1993": 0.71, + "1994": 0.698, + "1995": 0.698, + "1996": 0.708, + "1997": 0.716, + "1998": 0.719, + "1999": 0.721, + "2000": 0.732, + "2001": 0.74, + "2002": 0.746, + "2003": 0.754, + "2004": 0.761, + "2005": 0.764, + "2006": 0.775, + "2007": 0.786, + "2008": 0.791, + "2009": 0.789, + "2010": 0.796, + "2011": 0.808, + "2012": 0.811, + "2013": 0.817, + "2014": 0.818, + "2015": 0.824, + "2016": 0.828, + "2017": 0.833, + "2018": 0.841, + "2019": 0.845, + "2020": 0.83, + "2021": 0.822 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr101", + "Region": "The Central Federal District", + "1990": 0.76, + "1991": 0.758, + "1992": 0.746, + "1993": 0.728, + "1994": 0.714, + "1995": 0.715, + "1996": 0.726, + "1997": 0.735, + "1998": 0.737, + "1999": 0.743, + "2000": 0.757, + "2001": 0.764, + "2002": 0.772, + "2003": 0.782, + "2004": 0.789, + "2005": 0.796, + "2006": 0.806, + "2007": 0.818, + "2008": 0.824, + "2009": 0.82, + "2010": 0.828, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.846, + "2015": 0.85, + "2016": 0.851, + "2017": 0.855, + "2018": 0.864, + "2019": 0.868, + "2020": 0.853, + "2021": 0.845 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr108", + "Region": "The Far East Federal District", + "1990": 0.753, + "1991": 0.75, + "1992": 0.735, + "1993": 0.715, + "1994": 0.705, + "1995": 0.702, + "1996": 0.711, + "1997": 0.722, + "1998": 0.726, + "1999": 0.727, + "2000": 0.732, + "2001": 0.74, + "2002": 0.746, + "2003": 0.751, + "2004": 0.753, + "2005": 0.753, + "2006": 0.765, + "2007": 0.777, + "2008": 0.781, + "2009": 0.788, + "2010": 0.796, + "2011": 0.807, + "2012": 0.811, + "2013": 0.814, + "2014": 0.812, + "2015": 0.813, + "2016": 0.813, + "2017": 0.818, + "2018": 0.826, + "2019": 0.83, + "2020": 0.816, + "2021": 0.808 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr102", + "Region": "The North West Federal District", + "1990": 0.748, + "1991": 0.745, + "1992": 0.729, + "1993": 0.706, + "1994": 0.695, + "1995": 0.698, + "1996": 0.711, + "1997": 0.723, + "1998": 0.724, + "1999": 0.723, + "2000": 0.729, + "2001": 0.737, + "2002": 0.743, + "2003": 0.749, + "2004": 0.758, + "2005": 0.761, + "2006": 0.772, + "2007": 0.786, + "2008": 0.792, + "2009": 0.794, + "2010": 0.802, + "2011": 0.815, + "2012": 0.819, + "2013": 0.826, + "2014": 0.828, + "2015": 0.834, + "2016": 0.839, + "2017": 0.844, + "2018": 0.852, + "2019": 0.856, + "2020": 0.841, + "2021": 0.833 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr104", + "Region": "The North-Caucasian Federal District", + "1990": 0.716, + "1991": 0.715, + "1992": 0.708, + "1993": 0.703, + "1994": 0.697, + "1995": 0.694, + "1996": 0.696, + "1997": 0.7, + "1998": 0.701, + "1999": 0.699, + "2000": 0.71, + "2001": 0.726, + "2002": 0.73, + "2003": 0.741, + "2004": 0.748, + "2005": 0.744, + "2006": 0.752, + "2007": 0.764, + "2008": 0.772, + "2009": 0.771, + "2010": 0.778, + "2011": 0.787, + "2012": 0.791, + "2013": 0.795, + "2014": 0.793, + "2015": 0.796, + "2016": 0.798, + "2017": 0.802, + "2018": 0.811, + "2019": 0.814, + "2020": 0.8, + "2021": 0.793 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr105", + "Region": "The Privolzhsky (Volga) Federal District", + "1990": 0.734, + "1991": 0.732, + "1992": 0.72, + "1993": 0.703, + "1994": 0.691, + "1995": 0.69, + "1996": 0.699, + "1997": 0.706, + "1998": 0.709, + "1999": 0.709, + "2000": 0.717, + "2001": 0.727, + "2002": 0.729, + "2003": 0.736, + "2004": 0.741, + "2005": 0.742, + "2006": 0.753, + "2007": 0.762, + "2008": 0.768, + "2009": 0.766, + "2010": 0.771, + "2011": 0.782, + "2012": 0.786, + "2013": 0.792, + "2014": 0.795, + "2015": 0.803, + "2016": 0.809, + "2017": 0.814, + "2018": 0.822, + "2019": 0.826, + "2020": 0.812, + "2021": 0.804 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr107", + "Region": "The Siberian Federal District", + "1990": 0.721, + "1991": 0.719, + "1992": 0.705, + "1993": 0.685, + "1994": 0.672, + "1995": 0.675, + "1996": 0.682, + "1997": 0.691, + "1998": 0.695, + "1999": 0.691, + "2000": 0.702, + "2001": 0.71, + "2002": 0.712, + "2003": 0.719, + "2004": 0.728, + "2005": 0.725, + "2006": 0.739, + "2007": 0.75, + "2008": 0.753, + "2009": 0.753, + "2010": 0.762, + "2011": 0.772, + "2012": 0.775, + "2013": 0.783, + "2014": 0.786, + "2015": 0.794, + "2016": 0.799, + "2017": 0.804, + "2018": 0.812, + "2019": 0.816, + "2020": 0.802, + "2021": 0.794 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr103", + "Region": "The South Federal District", + "1990": 0.719, + "1991": 0.716, + "1992": 0.707, + "1993": 0.692, + "1994": 0.683, + "1995": 0.681, + "1996": 0.688, + "1997": 0.694, + "1998": 0.696, + "1999": 0.701, + "2000": 0.709, + "2001": 0.72, + "2002": 0.726, + "2003": 0.734, + "2004": 0.739, + "2005": 0.74, + "2006": 0.75, + "2007": 0.763, + "2008": 0.77, + "2009": 0.77, + "2010": 0.777, + "2011": 0.787, + "2012": 0.791, + "2013": 0.796, + "2014": 0.797, + "2015": 0.802, + "2016": 0.805, + "2017": 0.809, + "2018": 0.818, + "2019": 0.821, + "2020": 0.807, + "2021": 0.799 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr106", + "Region": "The Urals Federal District", + "1990": 0.756, + "1991": 0.753, + "1992": 0.739, + "1993": 0.72, + "1994": 0.708, + "1995": 0.707, + "1996": 0.717, + "1997": 0.728, + "1998": 0.731, + "1999": 0.731, + "2000": 0.742, + "2001": 0.756, + "2002": 0.759, + "2003": 0.768, + "2004": 0.777, + "2005": 0.784, + "2006": 0.794, + "2007": 0.8, + "2008": 0.801, + "2009": 0.797, + "2010": 0.806, + "2011": 0.816, + "2012": 0.818, + "2013": 0.827, + "2014": 0.831, + "2015": 0.839, + "2016": 0.845, + "2017": 0.85, + "2018": 0.859, + "2019": 0.863, + "2020": 0.848, + "2021": 0.839 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "National", + "GDLCODE": "RWAt", + "Region": "Total", + "1990": 0.319, + "1991": 0.315, + "1992": 0.314, + "1993": 0.306, + "1994": null, + "1995": 0.286, + "1996": 0.296, + "1997": 0.302, + "1998": 0.309, + "1999": 0.324, + "2000": 0.34, + "2001": 0.35, + "2002": 0.369, + "2003": 0.385, + "2004": 0.406, + "2005": 0.422, + "2006": 0.442, + "2007": 0.456, + "2008": 0.467, + "2009": 0.48, + "2010": 0.489, + "2011": 0.497, + "2012": 0.506, + "2013": 0.508, + "2014": 0.513, + "2015": 0.515, + "2016": 0.524, + "2017": 0.526, + "2018": 0.528, + "2019": 0.534, + "2020": 0.532, + "2021": 0.534 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr101", + "Region": "City of Kigali", + "1990": 0.347, + "1991": 0.343, + "1992": 0.342, + "1993": 0.345, + "1994": null, + "1995": 0.344, + "1996": 0.364, + "1997": 0.379, + "1998": 0.397, + "1999": 0.424, + "2000": 0.452, + "2001": 0.46, + "2002": 0.477, + "2003": 0.491, + "2004": 0.509, + "2005": 0.522, + "2006": 0.542, + "2007": 0.555, + "2008": 0.565, + "2009": 0.577, + "2010": 0.585, + "2011": 0.592, + "2012": 0.6, + "2013": 0.603, + "2014": 0.607, + "2015": 0.609, + "2016": 0.617, + "2017": 0.619, + "2018": 0.621, + "2019": 0.627, + "2020": 0.625, + "2021": 0.626 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr105", + "Region": "East", + "1990": 0.287, + "1991": 0.283, + "1992": 0.281, + "1993": 0.278, + "1994": null, + "1995": 0.267, + "1996": 0.28, + "1997": 0.288, + "1998": 0.298, + "1999": 0.315, + "2000": 0.334, + "2001": 0.343, + "2002": 0.36, + "2003": 0.375, + "2004": 0.394, + "2005": 0.408, + "2006": 0.427, + "2007": 0.44, + "2008": 0.449, + "2009": 0.46, + "2010": 0.468, + "2011": 0.476, + "2012": 0.484, + "2013": 0.486, + "2014": 0.49, + "2015": 0.492, + "2016": 0.503, + "2017": 0.509, + "2018": 0.513, + "2019": 0.523, + "2020": 0.524, + "2021": 0.526 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr104", + "Region": "North", + "1990": 0.314, + "1991": 0.309, + "1992": 0.308, + "1993": 0.3, + "1994": null, + "1995": 0.279, + "1996": 0.288, + "1997": 0.293, + "1998": 0.299, + "1999": 0.313, + "2000": 0.328, + "2001": 0.34, + "2002": 0.36, + "2003": 0.378, + "2004": 0.4, + "2005": 0.418, + "2006": 0.436, + "2007": 0.448, + "2008": 0.457, + "2009": 0.468, + "2010": 0.475, + "2011": 0.485, + "2012": 0.496, + "2013": 0.5, + "2014": 0.506, + "2015": 0.51, + "2016": 0.515, + "2017": 0.514, + "2018": 0.512, + "2019": 0.515, + "2020": 0.51, + "2021": 0.512 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr102", + "Region": "South", + "1990": 0.32, + "1991": 0.316, + "1992": 0.315, + "1993": 0.306, + "1994": null, + "1995": 0.283, + "1996": 0.291, + "1997": 0.296, + "1998": 0.302, + "1999": 0.315, + "2000": 0.329, + "2001": 0.34, + "2002": 0.359, + "2003": 0.375, + "2004": 0.396, + "2005": 0.413, + "2006": 0.434, + "2007": 0.449, + "2008": 0.461, + "2009": 0.475, + "2010": 0.485, + "2011": 0.491, + "2012": 0.498, + "2013": 0.499, + "2014": 0.502, + "2015": 0.502, + "2016": 0.509, + "2017": 0.509, + "2018": 0.509, + "2019": 0.514, + "2020": 0.511, + "2021": 0.512 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr103", + "Region": "West", + "1990": 0.315, + "1991": 0.311, + "1992": 0.31, + "1993": 0.304, + "1994": null, + "1995": 0.287, + "1996": 0.299, + "1997": 0.305, + "1998": 0.314, + "1999": 0.33, + "2000": 0.347, + "2001": 0.355, + "2002": 0.371, + "2003": 0.384, + "2004": 0.402, + "2005": 0.415, + "2006": 0.435, + "2007": 0.449, + "2008": 0.46, + "2009": 0.473, + "2010": 0.482, + "2011": 0.491, + "2012": 0.5, + "2013": 0.503, + "2014": 0.508, + "2015": 0.511, + "2016": 0.518, + "2017": 0.518, + "2018": 0.519, + "2019": 0.524, + "2020": 0.521, + "2021": 0.522 + }, + { + "Country": "Saint Kitts and Nevis", + "Continent": "America", + "ISO_Code": "KNA", + "Level": "National", + "GDLCODE": "KNAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.746, + "2006": 0.75, + "2007": 0.753, + "2008": 0.757, + "2009": 0.758, + "2010": 0.759, + "2011": 0.764, + "2012": 0.766, + "2013": 0.77, + "2014": 0.772, + "2015": 0.772, + "2016": 0.779, + "2017": 0.778, + "2018": 0.779, + "2019": 0.783, + "2020": 0.779, + "2021": 0.777 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "National", + "GDLCODE": "LCAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.698, + "2001": 0.697, + "2002": 0.699, + "2003": 0.701, + "2004": 0.704, + "2005": 0.709, + "2006": 0.718, + "2007": 0.718, + "2008": 0.723, + "2009": 0.725, + "2010": 0.728, + "2011": 0.734, + "2012": 0.734, + "2013": 0.734, + "2014": 0.735, + "2015": 0.737, + "2016": 0.744, + "2017": 0.744, + "2018": 0.746, + "2019": 0.735, + "2020": 0.723, + "2021": 0.715 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr102", + "Region": "St Lucia rural", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.699, + "2001": 0.698, + "2002": 0.7, + "2003": 0.702, + "2004": 0.705, + "2005": 0.71, + "2006": 0.719, + "2007": 0.719, + "2008": 0.724, + "2009": 0.726, + "2010": 0.729, + "2011": 0.735, + "2012": 0.735, + "2013": 0.735, + "2014": 0.736, + "2015": 0.738, + "2016": 0.746, + "2017": 0.745, + "2018": 0.747, + "2019": 0.736, + "2020": 0.724, + "2021": 0.716 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr101", + "Region": "St Lucia urban", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.693, + "2001": 0.692, + "2002": 0.694, + "2003": 0.696, + "2004": 0.699, + "2005": 0.704, + "2006": 0.713, + "2007": 0.713, + "2008": 0.718, + "2009": 0.721, + "2010": 0.723, + "2011": 0.729, + "2012": 0.729, + "2013": 0.729, + "2014": 0.73, + "2015": 0.732, + "2016": 0.739, + "2017": 0.739, + "2018": 0.741, + "2019": 0.731, + "2020": 0.718, + "2021": 0.71 + }, + { + "Country": "Saint Vincent and the Grenadines", + "Continent": "America", + "ISO_Code": "VCT", + "Level": "National", + "GDLCODE": "VCTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.683, + "2001": 0.689, + "2002": 0.695, + "2003": 0.702, + "2004": 0.708, + "2005": 0.713, + "2006": 0.722, + "2007": 0.73, + "2008": 0.734, + "2009": 0.736, + "2010": 0.734, + "2011": 0.736, + "2012": 0.737, + "2013": 0.743, + "2014": 0.752, + "2015": 0.759, + "2016": 0.765, + "2017": 0.774, + "2018": 0.775, + "2019": 0.769, + "2020": 0.764, + "2021": 0.751 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "National", + "GDLCODE": "WSMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.659, + "1996": 0.668, + "1997": 0.67, + "1998": 0.674, + "1999": 0.678, + "2000": 0.683, + "2001": 0.69, + "2002": 0.689, + "2003": 0.694, + "2004": 0.698, + "2005": 0.701, + "2006": 0.703, + "2007": 0.708, + "2008": 0.709, + "2009": 0.7, + "2010": 0.713, + "2011": 0.713, + "2012": 0.709, + "2013": 0.71, + "2014": 0.711, + "2015": 0.716, + "2016": 0.717, + "2017": 0.716, + "2018": 0.716, + "2019": 0.715, + "2020": 0.712, + "2021": 0.707 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr101", + "Region": "Apia Urban Area", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.791, + "1996": 0.811, + "1997": 0.812, + "1998": 0.81, + "1999": 0.81, + "2000": 0.79, + "2001": 0.809, + "2002": 0.807, + "2003": 0.807, + "2004": 0.804, + "2005": 0.783, + "2006": 0.802, + "2007": 0.799, + "2008": 0.799, + "2009": 0.785, + "2010": 0.773, + "2011": 0.77, + "2012": 0.769, + "2013": 0.767, + "2014": 0.766, + "2015": 0.766, + "2016": 0.765, + "2017": 0.769, + "2018": 0.764, + "2019": 0.745, + "2020": 0.742, + "2021": 0.737 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr102", + "Region": "North West Upolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.759, + "1996": 0.778, + "1997": 0.777, + "1998": 0.774, + "1999": 0.773, + "2000": 0.753, + "2001": 0.771, + "2002": 0.768, + "2003": 0.767, + "2004": 0.763, + "2005": 0.742, + "2006": 0.762, + "2007": 0.759, + "2008": 0.759, + "2009": 0.745, + "2010": 0.733, + "2011": 0.73, + "2012": 0.729, + "2013": 0.728, + "2014": 0.726, + "2015": 0.727, + "2016": 0.726, + "2017": 0.73, + "2018": 0.725, + "2019": 0.707, + "2020": 0.704, + "2021": 0.699 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr103", + "Region": "Rest of Upolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.762, + "1996": 0.781, + "1997": 0.779, + "1998": 0.777, + "1999": 0.776, + "2000": 0.755, + "2001": 0.774, + "2002": 0.77, + "2003": 0.77, + "2004": 0.766, + "2005": 0.745, + "2006": 0.764, + "2007": 0.761, + "2008": 0.762, + "2009": 0.748, + "2010": 0.736, + "2011": 0.733, + "2012": 0.732, + "2013": 0.731, + "2014": 0.729, + "2015": 0.729, + "2016": 0.728, + "2017": 0.732, + "2018": 0.728, + "2019": 0.709, + "2020": 0.707, + "2021": 0.702 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr104", + "Region": "Savaii", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.756, + "1996": 0.775, + "1997": 0.773, + "1998": 0.771, + "1999": 0.77, + "2000": 0.75, + "2001": 0.768, + "2002": 0.764, + "2003": 0.764, + "2004": 0.76, + "2005": 0.739, + "2006": 0.758, + "2007": 0.755, + "2008": 0.756, + "2009": 0.742, + "2010": 0.73, + "2011": 0.727, + "2012": 0.726, + "2013": 0.725, + "2014": 0.723, + "2015": 0.723, + "2016": 0.723, + "2017": 0.726, + "2018": 0.722, + "2019": 0.703, + "2020": 0.701, + "2021": 0.696 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "National", + "GDLCODE": "STPt", + "Region": "Total", + "1990": 0.485, + "1991": 0.484, + "1992": 0.485, + "1993": 0.485, + "1994": 0.487, + "1995": 0.488, + "1996": 0.491, + "1997": 0.492, + "1998": 0.494, + "1999": 0.498, + "2000": 0.501, + "2001": 0.507, + "2002": 0.511, + "2003": 0.519, + "2004": 0.525, + "2005": 0.531, + "2006": 0.542, + "2007": 0.545, + "2008": 0.546, + "2009": 0.552, + "2010": 0.554, + "2011": 0.556, + "2012": 0.562, + "2013": 0.573, + "2014": 0.584, + "2015": 0.596, + "2016": 0.603, + "2017": 0.612, + "2018": 0.617, + "2019": 0.622, + "2020": 0.619, + "2021": 0.618 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr101", + "Region": "Regiao Centro", + "1990": 0.505, + "1991": 0.505, + "1992": 0.505, + "1993": 0.506, + "1994": 0.508, + "1995": 0.509, + "1996": 0.512, + "1997": 0.513, + "1998": 0.515, + "1999": 0.519, + "2000": 0.522, + "2001": 0.528, + "2002": 0.533, + "2003": 0.54, + "2004": 0.547, + "2005": 0.554, + "2006": 0.564, + "2007": 0.568, + "2008": 0.568, + "2009": 0.575, + "2010": 0.576, + "2011": 0.577, + "2012": 0.582, + "2013": 0.592, + "2014": 0.602, + "2015": 0.614, + "2016": 0.622, + "2017": 0.63, + "2018": 0.636, + "2019": 0.641, + "2020": 0.639, + "2021": 0.638 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr104", + "Region": "Regiao do Principe", + "1990": 0.484, + "1991": 0.484, + "1992": 0.484, + "1993": 0.484, + "1994": 0.486, + "1995": 0.487, + "1996": 0.49, + "1997": 0.491, + "1998": 0.493, + "1999": 0.497, + "2000": 0.5, + "2001": 0.507, + "2002": 0.511, + "2003": 0.518, + "2004": 0.525, + "2005": 0.531, + "2006": 0.541, + "2007": 0.545, + "2008": 0.546, + "2009": 0.552, + "2010": 0.554, + "2011": 0.556, + "2012": 0.562, + "2013": 0.573, + "2014": 0.584, + "2015": 0.597, + "2016": 0.604, + "2017": 0.613, + "2018": 0.619, + "2019": 0.625, + "2020": 0.622, + "2021": 0.621 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr103", + "Region": "Regiao Norte", + "1990": 0.45, + "1991": 0.449, + "1992": 0.449, + "1993": 0.45, + "1994": 0.451, + "1995": 0.452, + "1996": 0.455, + "1997": 0.456, + "1998": 0.458, + "1999": 0.462, + "2000": 0.464, + "2001": 0.471, + "2002": 0.474, + "2003": 0.481, + "2004": 0.488, + "2005": 0.494, + "2006": 0.503, + "2007": 0.507, + "2008": 0.507, + "2009": 0.513, + "2010": 0.514, + "2011": 0.516, + "2012": 0.521, + "2013": 0.531, + "2014": 0.541, + "2015": 0.555, + "2016": 0.565, + "2017": 0.575, + "2018": 0.583, + "2019": 0.59, + "2020": 0.588, + "2021": 0.587 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr102", + "Region": "Regiao Sul", + "1990": 0.447, + "1991": 0.447, + "1992": 0.447, + "1993": 0.447, + "1994": 0.449, + "1995": 0.45, + "1996": 0.453, + "1997": 0.454, + "1998": 0.455, + "1999": 0.459, + "2000": 0.462, + "2001": 0.468, + "2002": 0.472, + "2003": 0.479, + "2004": 0.485, + "2005": 0.491, + "2006": 0.501, + "2007": 0.504, + "2008": 0.505, + "2009": 0.51, + "2010": 0.514, + "2011": 0.518, + "2012": 0.524, + "2013": 0.536, + "2014": 0.548, + "2015": 0.561, + "2016": 0.569, + "2017": 0.578, + "2018": 0.584, + "2019": 0.59, + "2020": 0.587, + "2021": 0.586 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "National", + "GDLCODE": "SAUt", + "Region": "Total", + "1990": 0.678, + "1991": 0.688, + "1992": 0.694, + "1993": 0.699, + "1994": 0.704, + "1995": 0.709, + "1996": 0.715, + "1997": 0.72, + "1998": 0.727, + "1999": 0.73, + "2000": 0.737, + "2001": 0.744, + "2002": 0.75, + "2003": 0.76, + "2004": 0.77, + "2005": 0.78, + "2006": 0.787, + "2007": 0.794, + "2008": 0.802, + "2009": 0.807, + "2010": 0.816, + "2011": 0.828, + "2012": 0.837, + "2013": 0.845, + "2014": 0.852, + "2015": 0.859, + "2016": 0.864, + "2017": 0.86, + "2018": 0.865, + "2019": 0.873, + "2020": 0.87, + "2021": 0.875 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr101", + "Region": "Center (Riadh, Qassim)", + "1990": 0.697, + "1991": 0.707, + "1992": 0.714, + "1993": 0.719, + "1994": 0.724, + "1995": 0.729, + "1996": 0.735, + "1997": 0.74, + "1998": 0.747, + "1999": 0.751, + "2000": 0.758, + "2001": 0.765, + "2002": 0.771, + "2003": 0.781, + "2004": 0.792, + "2005": 0.802, + "2006": 0.809, + "2007": 0.816, + "2008": 0.825, + "2009": 0.829, + "2010": 0.839, + "2011": 0.852, + "2012": 0.861, + "2013": 0.869, + "2014": 0.876, + "2015": 0.883, + "2016": 0.889, + "2017": 0.884, + "2018": 0.889, + "2019": 0.897, + "2020": 0.895, + "2021": 0.9 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr104", + "Region": "Eastern province", + "1990": 0.668, + "1991": 0.677, + "1992": 0.684, + "1993": 0.689, + "1994": 0.694, + "1995": 0.699, + "1996": 0.704, + "1997": 0.709, + "1998": 0.716, + "1999": 0.72, + "2000": 0.727, + "2001": 0.733, + "2002": 0.738, + "2003": 0.749, + "2004": 0.759, + "2005": 0.768, + "2006": 0.775, + "2007": 0.782, + "2008": 0.79, + "2009": 0.795, + "2010": 0.804, + "2011": 0.816, + "2012": 0.825, + "2013": 0.833, + "2014": 0.839, + "2015": 0.846, + "2016": 0.852, + "2017": 0.847, + "2018": 0.852, + "2019": 0.86, + "2020": 0.858, + "2021": 0.862 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr105", + "Region": "North (Northern Borders, Al Jawf, Hail)", + "1990": 0.689, + "1991": 0.699, + "1992": 0.706, + "1993": 0.711, + "1994": 0.716, + "1995": 0.721, + "1996": 0.726, + "1997": 0.732, + "1998": 0.739, + "1999": 0.742, + "2000": 0.75, + "2001": 0.757, + "2002": 0.762, + "2003": 0.772, + "2004": 0.783, + "2005": 0.793, + "2006": 0.8, + "2007": 0.807, + "2008": 0.815, + "2009": 0.82, + "2010": 0.829, + "2011": 0.842, + "2012": 0.851, + "2013": 0.859, + "2014": 0.866, + "2015": 0.873, + "2016": 0.878, + "2017": 0.874, + "2018": 0.879, + "2019": 0.887, + "2020": 0.885, + "2021": 0.889 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr103", + "Region": "South (Bahah, Jizan, Asir, Najran)", + "1990": 0.662, + "1991": 0.672, + "1992": 0.678, + "1993": 0.683, + "1994": 0.688, + "1995": 0.693, + "1996": 0.698, + "1997": 0.703, + "1998": 0.71, + "1999": 0.713, + "2000": 0.72, + "2001": 0.727, + "2002": 0.732, + "2003": 0.742, + "2004": 0.752, + "2005": 0.762, + "2006": 0.769, + "2007": 0.775, + "2008": 0.784, + "2009": 0.788, + "2010": 0.797, + "2011": 0.809, + "2012": 0.818, + "2013": 0.825, + "2014": 0.832, + "2015": 0.839, + "2016": 0.844, + "2017": 0.84, + "2018": 0.845, + "2019": 0.853, + "2020": 0.85, + "2021": 0.855 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr102", + "Region": "West (Makka, Madinah, Tabuk)", + "1990": 0.675, + "1991": 0.684, + "1992": 0.691, + "1993": 0.696, + "1994": 0.701, + "1995": 0.706, + "1996": 0.711, + "1997": 0.716, + "1998": 0.723, + "1999": 0.727, + "2000": 0.734, + "2001": 0.741, + "2002": 0.746, + "2003": 0.756, + "2004": 0.767, + "2005": 0.776, + "2006": 0.783, + "2007": 0.79, + "2008": 0.798, + "2009": 0.803, + "2010": 0.812, + "2011": 0.824, + "2012": 0.834, + "2013": 0.841, + "2014": 0.848, + "2015": 0.855, + "2016": 0.86, + "2017": 0.856, + "2018": 0.861, + "2019": 0.869, + "2020": 0.866, + "2021": 0.871 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "National", + "GDLCODE": "SENt", + "Region": "Total", + "1990": 0.373, + "1991": 0.374, + "1992": 0.375, + "1993": 0.374, + "1994": 0.374, + "1995": 0.375, + "1996": 0.376, + "1997": 0.377, + "1998": 0.379, + "1999": 0.382, + "2000": 0.388, + "2001": 0.394, + "2002": 0.398, + "2003": 0.405, + "2004": 0.412, + "2005": 0.419, + "2006": 0.427, + "2007": 0.439, + "2008": 0.451, + "2009": 0.459, + "2010": 0.468, + "2011": 0.482, + "2012": 0.49, + "2013": 0.496, + "2014": 0.502, + "2015": 0.505, + "2016": 0.507, + "2017": 0.509, + "2018": 0.512, + "2019": 0.513, + "2020": 0.513, + "2021": 0.511 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr101", + "Region": "Dakar", + "1990": 0.537, + "1991": 0.539, + "1992": 0.539, + "1993": 0.534, + "1994": 0.529, + "1995": 0.527, + "1996": 0.523, + "1997": 0.52, + "1998": 0.519, + "1999": 0.519, + "2000": 0.523, + "2001": 0.526, + "2002": 0.528, + "2003": 0.533, + "2004": 0.538, + "2005": 0.543, + "2006": 0.55, + "2007": 0.562, + "2008": 0.574, + "2009": 0.58, + "2010": 0.588, + "2011": 0.601, + "2012": 0.6, + "2013": 0.605, + "2014": 0.608, + "2015": 0.613, + "2016": 0.616, + "2017": 0.633, + "2018": 0.628, + "2019": 0.61, + "2020": 0.609, + "2021": 0.607 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr103", + "Region": "Diourbel", + "1990": 0.243, + "1991": 0.244, + "1992": 0.245, + "1993": 0.248, + "1994": 0.251, + "1995": 0.254, + "1996": 0.257, + "1997": 0.26, + "1998": 0.264, + "1999": 0.268, + "2000": 0.274, + "2001": 0.281, + "2002": 0.286, + "2003": 0.293, + "2004": 0.3, + "2005": 0.307, + "2006": 0.315, + "2007": 0.326, + "2008": 0.337, + "2009": 0.345, + "2010": 0.353, + "2011": 0.366, + "2012": 0.343, + "2013": 0.358, + "2014": 0.374, + "2015": 0.399, + "2016": 0.401, + "2017": 0.403, + "2018": 0.387, + "2019": 0.391, + "2020": 0.391, + "2021": 0.39 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr109", + "Region": "Fatick", + "1990": 0.332, + "1991": 0.334, + "1992": 0.334, + "1993": 0.335, + "1994": 0.335, + "1995": 0.338, + "1996": 0.339, + "1997": 0.34, + "1998": 0.343, + "1999": 0.346, + "2000": 0.352, + "2001": 0.358, + "2002": 0.363, + "2003": 0.371, + "2004": 0.378, + "2005": 0.385, + "2006": 0.396, + "2007": 0.413, + "2008": 0.429, + "2009": 0.441, + "2010": 0.453, + "2011": 0.471, + "2012": 0.501, + "2013": 0.496, + "2014": 0.493, + "2015": 0.485, + "2016": 0.487, + "2017": 0.51, + "2018": 0.528, + "2019": 0.505, + "2020": 0.505, + "2021": 0.503 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr106", + "Region": "Kaolack", + "1990": 0.288, + "1991": 0.29, + "1992": 0.29, + "1993": 0.293, + "1994": 0.296, + "1995": 0.3, + "1996": 0.303, + "1997": 0.306, + "1998": 0.309, + "1999": 0.314, + "2000": 0.32, + "2001": 0.327, + "2002": 0.332, + "2003": 0.339, + "2004": 0.346, + "2005": 0.353, + "2006": 0.363, + "2007": 0.377, + "2008": 0.39, + "2009": 0.4, + "2010": 0.41, + "2011": 0.425, + "2012": 0.448, + "2013": 0.433, + "2014": 0.419, + "2015": 0.444, + "2016": 0.446, + "2017": 0.434, + "2018": 0.351, + "2019": 0.461, + "2020": 0.461, + "2021": 0.459 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr110", + "Region": "Kolda", + "1990": 0.282, + "1991": 0.284, + "1992": 0.285, + "1993": 0.29, + "1994": 0.294, + "1995": 0.3, + "1996": 0.303, + "1997": 0.307, + "1998": 0.311, + "1999": 0.316, + "2000": 0.322, + "2001": 0.33, + "2002": 0.335, + "2003": 0.343, + "2004": 0.35, + "2005": 0.357, + "2006": 0.364, + "2007": 0.376, + "2008": 0.387, + "2009": 0.395, + "2010": 0.403, + "2011": 0.417, + "2012": 0.421, + "2013": 0.423, + "2014": 0.426, + "2015": 0.447, + "2016": 0.449, + "2017": 0.427, + "2018": 0.418, + "2019": 0.456, + "2020": 0.455, + "2021": 0.454 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr108", + "Region": "Louga", + "1990": 0.283, + "1991": 0.284, + "1992": 0.285, + "1993": 0.288, + "1994": 0.291, + "1995": 0.295, + "1996": 0.298, + "1997": 0.302, + "1998": 0.306, + "1999": 0.312, + "2000": 0.319, + "2001": 0.327, + "2002": 0.334, + "2003": 0.343, + "2004": 0.352, + "2005": 0.361, + "2006": 0.362, + "2007": 0.367, + "2008": 0.373, + "2009": 0.374, + "2010": 0.376, + "2011": 0.383, + "2012": 0.443, + "2013": 0.444, + "2014": 0.446, + "2015": 0.409, + "2016": 0.411, + "2017": 0.423, + "2018": 0.408, + "2019": 0.454, + "2020": 0.454, + "2021": 0.452 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr104", + "Region": "Saint Louis", + "1990": 0.327, + "1991": 0.328, + "1992": 0.329, + "1993": 0.33, + "1994": 0.332, + "1995": 0.335, + "1996": 0.337, + "1997": 0.34, + "1998": 0.344, + "1999": 0.348, + "2000": 0.355, + "2001": 0.363, + "2002": 0.369, + "2003": 0.378, + "2004": 0.386, + "2005": 0.395, + "2006": 0.401, + "2007": 0.411, + "2008": 0.421, + "2009": 0.426, + "2010": 0.432, + "2011": 0.444, + "2012": 0.49, + "2013": 0.487, + "2014": 0.484, + "2015": 0.478, + "2016": 0.48, + "2017": 0.469, + "2018": 0.411, + "2019": 0.466, + "2020": 0.466, + "2021": 0.464 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr105", + "Region": "Tambacounda", + "1990": 0.277, + "1991": 0.278, + "1992": 0.279, + "1993": 0.281, + "1994": 0.283, + "1995": 0.287, + "1996": 0.289, + "1997": 0.291, + "1998": 0.294, + "1999": 0.298, + "2000": 0.304, + "2001": 0.31, + "2002": 0.315, + "2003": 0.322, + "2004": 0.329, + "2005": 0.336, + "2006": 0.343, + "2007": 0.353, + "2008": 0.363, + "2009": 0.37, + "2010": 0.377, + "2011": 0.389, + "2012": 0.368, + "2013": 0.377, + "2014": 0.386, + "2015": 0.406, + "2016": 0.408, + "2017": 0.404, + "2018": 0.421, + "2019": 0.456, + "2020": 0.455, + "2021": 0.454 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr107", + "Region": "Thies", + "1990": 0.39, + "1991": 0.391, + "1992": 0.392, + "1993": 0.391, + "1994": 0.391, + "1995": 0.392, + "1996": 0.393, + "1997": 0.394, + "1998": 0.396, + "1999": 0.4, + "2000": 0.405, + "2001": 0.412, + "2002": 0.416, + "2003": 0.424, + "2004": 0.432, + "2005": 0.439, + "2006": 0.448, + "2007": 0.462, + "2008": 0.476, + "2009": 0.485, + "2010": 0.494, + "2011": 0.51, + "2012": 0.492, + "2013": 0.519, + "2014": 0.546, + "2015": 0.549, + "2016": 0.552, + "2017": 0.526, + "2018": 0.559, + "2019": 0.564, + "2020": 0.564, + "2021": 0.562 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr102", + "Region": "Ziguinchor", + "1990": 0.445, + "1991": 0.447, + "1992": 0.448, + "1993": 0.444, + "1994": 0.441, + "1995": 0.441, + "1996": 0.439, + "1997": 0.437, + "1998": 0.438, + "1999": 0.44, + "2000": 0.444, + "2001": 0.45, + "2002": 0.453, + "2003": 0.46, + "2004": 0.467, + "2005": 0.473, + "2006": 0.485, + "2007": 0.502, + "2008": 0.52, + "2009": 0.533, + "2010": 0.546, + "2011": 0.567, + "2012": 0.59, + "2013": 0.583, + "2014": 0.577, + "2015": 0.566, + "2016": 0.569, + "2017": 0.571, + "2018": 0.567, + "2019": 0.592, + "2020": 0.591, + "2021": 0.589 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "National", + "GDLCODE": "SRBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.674, + "1996": 0.679, + "1997": 0.685, + "1998": 0.687, + "1999": 0.677, + "2000": 0.69, + "2001": 0.7, + "2002": 0.702, + "2003": 0.711, + "2004": 0.723, + "2005": 0.734, + "2006": 0.746, + "2007": 0.754, + "2008": 0.765, + "2009": 0.766, + "2010": 0.767, + "2011": 0.777, + "2012": 0.78, + "2013": 0.785, + "2014": 0.788, + "2015": 0.794, + "2016": 0.8, + "2017": 0.802, + "2018": 0.808, + "2019": 0.811, + "2020": 0.804, + "2021": 0.802 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr101", + "Region": "Belgrade", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.702, + "1996": 0.706, + "1997": 0.713, + "1998": 0.715, + "1999": 0.705, + "2000": 0.718, + "2001": 0.728, + "2002": 0.731, + "2003": 0.741, + "2004": 0.753, + "2005": 0.765, + "2006": 0.776, + "2007": 0.784, + "2008": 0.794, + "2009": 0.794, + "2010": 0.794, + "2011": 0.804, + "2012": 0.806, + "2013": 0.811, + "2014": 0.813, + "2015": 0.82, + "2016": 0.827, + "2017": 0.829, + "2018": 0.836, + "2019": 0.84, + "2020": 0.832, + "2021": 0.83 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr104", + "Region": "South and East Serbia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.662, + "1996": 0.667, + "1997": 0.673, + "1998": 0.675, + "1999": 0.665, + "2000": 0.678, + "2001": 0.687, + "2002": 0.689, + "2003": 0.699, + "2004": 0.71, + "2005": 0.72, + "2006": 0.734, + "2007": 0.744, + "2008": 0.756, + "2009": 0.759, + "2010": 0.763, + "2011": 0.771, + "2012": 0.773, + "2013": 0.777, + "2014": 0.778, + "2015": 0.785, + "2016": 0.791, + "2017": 0.793, + "2018": 0.799, + "2019": 0.802, + "2020": 0.795, + "2021": 0.793 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr103", + "Region": "Sumadija and West Serbia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.665, + "1996": 0.669, + "1997": 0.676, + "1998": 0.677, + "1999": 0.668, + "2000": 0.68, + "2001": 0.69, + "2002": 0.692, + "2003": 0.701, + "2004": 0.712, + "2005": 0.723, + "2006": 0.735, + "2007": 0.744, + "2008": 0.754, + "2009": 0.756, + "2010": 0.758, + "2011": 0.768, + "2012": 0.771, + "2013": 0.777, + "2014": 0.78, + "2015": 0.785, + "2016": 0.79, + "2017": 0.792, + "2018": 0.797, + "2019": 0.8, + "2020": 0.793, + "2021": 0.791 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr102", + "Region": "Vojvodina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.673, + "1996": 0.677, + "1997": 0.683, + "1998": 0.685, + "1999": 0.676, + "2000": 0.688, + "2001": 0.698, + "2002": 0.7, + "2003": 0.71, + "2004": 0.721, + "2005": 0.732, + "2006": 0.743, + "2007": 0.75, + "2008": 0.76, + "2009": 0.76, + "2010": 0.76, + "2011": 0.77, + "2012": 0.773, + "2013": 0.779, + "2014": 0.782, + "2015": 0.788, + "2016": 0.794, + "2017": 0.795, + "2018": 0.801, + "2019": 0.804, + "2020": 0.797, + "2021": 0.795 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "National", + "GDLCODE": "SLEt", + "Region": "Total", + "1990": 0.312, + "1991": 0.305, + "1992": 0.305, + "1993": 0.312, + "1994": 0.312, + "1995": 0.314, + "1996": 0.312, + "1997": 0.307, + "1998": 0.305, + "1999": 0.301, + "2000": 0.318, + "2001": 0.331, + "2002": 0.347, + "2003": 0.357, + "2004": 0.364, + "2005": 0.372, + "2006": 0.382, + "2007": 0.397, + "2008": 0.409, + "2009": 0.42, + "2010": 0.427, + "2011": 0.433, + "2012": 0.447, + "2013": 0.459, + "2014": 0.461, + "2015": 0.453, + "2016": 0.457, + "2017": 0.466, + "2018": 0.47, + "2019": 0.48, + "2020": 0.475, + "2021": 0.477 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr109", + "Region": "Bo", + "1990": 0.306, + "1991": 0.298, + "1992": 0.299, + "1993": 0.305, + "1994": 0.305, + "1995": 0.307, + "1996": 0.305, + "1997": 0.301, + "1998": 0.298, + "1999": 0.294, + "2000": 0.311, + "2001": 0.324, + "2002": 0.34, + "2003": 0.35, + "2004": 0.357, + "2005": 0.365, + "2006": 0.375, + "2007": 0.39, + "2008": 0.402, + "2009": 0.415, + "2010": 0.424, + "2011": 0.433, + "2012": 0.45, + "2013": 0.464, + "2014": 0.477, + "2015": 0.477, + "2016": 0.489, + "2017": 0.506, + "2018": 0.485, + "2019": 0.467, + "2020": 0.462, + "2021": 0.464 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr101", + "Region": "Bombali", + "1990": 0.325, + "1991": 0.317, + "1992": 0.317, + "1993": 0.324, + "1994": 0.324, + "1995": 0.327, + "1996": 0.324, + "1997": 0.319, + "1998": 0.316, + "1999": 0.312, + "2000": 0.329, + "2001": 0.343, + "2002": 0.36, + "2003": 0.37, + "2004": 0.378, + "2005": 0.386, + "2006": 0.396, + "2007": 0.412, + "2008": 0.425, + "2009": 0.438, + "2010": 0.448, + "2011": 0.457, + "2012": 0.474, + "2013": 0.489, + "2014": 0.481, + "2015": 0.462, + "2016": 0.455, + "2017": 0.455, + "2018": 0.465, + "2019": 0.48, + "2020": 0.475, + "2021": 0.477 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr110", + "Region": "Bonthe", + "1990": 0.272, + "1991": 0.266, + "1992": 0.266, + "1993": 0.272, + "1994": 0.272, + "1995": 0.274, + "1996": 0.271, + "1997": 0.267, + "1998": 0.264, + "1999": 0.261, + "2000": 0.276, + "2001": 0.287, + "2002": 0.302, + "2003": 0.311, + "2004": 0.318, + "2005": 0.324, + "2006": 0.333, + "2007": 0.347, + "2008": 0.358, + "2009": 0.375, + "2010": 0.387, + "2011": 0.4, + "2012": 0.419, + "2013": 0.437, + "2014": 0.433, + "2015": 0.419, + "2016": 0.416, + "2017": 0.42, + "2018": 0.435, + "2019": 0.454, + "2020": 0.449, + "2021": 0.451 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr106", + "Region": "Kailahun", + "1990": 0.297, + "1991": 0.29, + "1992": 0.29, + "1993": 0.297, + "1994": 0.297, + "1995": 0.299, + "1996": 0.296, + "1997": 0.291, + "1998": 0.288, + "1999": 0.285, + "2000": 0.3, + "2001": 0.313, + "2002": 0.329, + "2003": 0.338, + "2004": 0.345, + "2005": 0.353, + "2006": 0.362, + "2007": 0.377, + "2008": 0.388, + "2009": 0.397, + "2010": 0.402, + "2011": 0.406, + "2012": 0.418, + "2013": 0.427, + "2014": 0.426, + "2015": 0.414, + "2016": 0.413, + "2017": 0.418, + "2018": 0.435, + "2019": 0.457, + "2020": 0.453, + "2021": 0.454 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr102", + "Region": "Kambia", + "1990": 0.28, + "1991": 0.273, + "1992": 0.273, + "1993": 0.279, + "1994": 0.279, + "1995": 0.281, + "1996": 0.279, + "1997": 0.275, + "1998": 0.272, + "1999": 0.269, + "2000": 0.284, + "2001": 0.295, + "2002": 0.311, + "2003": 0.319, + "2004": 0.326, + "2005": 0.333, + "2006": 0.342, + "2007": 0.355, + "2008": 0.367, + "2009": 0.376, + "2010": 0.382, + "2011": 0.388, + "2012": 0.4, + "2013": 0.411, + "2014": 0.418, + "2015": 0.414, + "2016": 0.419, + "2017": 0.431, + "2018": 0.436, + "2019": 0.441, + "2020": 0.437, + "2021": 0.438 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr107", + "Region": "Kenema", + "1990": 0.304, + "1991": 0.296, + "1992": 0.296, + "1993": 0.303, + "1994": 0.303, + "1995": 0.305, + "1996": 0.303, + "1997": 0.299, + "1998": 0.296, + "1999": 0.292, + "2000": 0.309, + "2001": 0.321, + "2002": 0.337, + "2003": 0.346, + "2004": 0.354, + "2005": 0.362, + "2006": 0.371, + "2007": 0.386, + "2008": 0.398, + "2009": 0.406, + "2010": 0.41, + "2011": 0.413, + "2012": 0.423, + "2013": 0.432, + "2014": 0.439, + "2015": 0.435, + "2016": 0.442, + "2017": 0.454, + "2018": 0.451, + "2019": 0.452, + "2020": 0.448, + "2021": 0.45 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr103", + "Region": "Koinadugu", + "1990": 0.233, + "1991": 0.226, + "1992": 0.226, + "1993": 0.231, + "1994": 0.231, + "1995": 0.233, + "1996": 0.231, + "1997": 0.227, + "1998": 0.225, + "1999": 0.222, + "2000": 0.235, + "2001": 0.245, + "2002": 0.258, + "2003": 0.266, + "2004": 0.272, + "2005": 0.278, + "2006": 0.286, + "2007": 0.298, + "2008": 0.307, + "2009": 0.321, + "2010": 0.332, + "2011": 0.341, + "2012": 0.358, + "2013": 0.372, + "2014": 0.379, + "2015": 0.374, + "2016": 0.38, + "2017": 0.391, + "2018": 0.41, + "2019": 0.435, + "2020": 0.431, + "2021": 0.432 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr108", + "Region": "Kono", + "1990": 0.297, + "1991": 0.289, + "1992": 0.289, + "1993": 0.296, + "1994": 0.296, + "1995": 0.298, + "1996": 0.295, + "1997": 0.291, + "1998": 0.288, + "1999": 0.284, + "2000": 0.301, + "2001": 0.313, + "2002": 0.329, + "2003": 0.338, + "2004": 0.346, + "2005": 0.353, + "2006": 0.363, + "2007": 0.377, + "2008": 0.39, + "2009": 0.398, + "2010": 0.402, + "2011": 0.406, + "2012": 0.417, + "2013": 0.427, + "2014": 0.429, + "2015": 0.42, + "2016": 0.422, + "2017": 0.43, + "2018": 0.443, + "2019": 0.461, + "2020": 0.456, + "2021": 0.458 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr111", + "Region": "Moyamba", + "1990": 0.277, + "1991": 0.27, + "1992": 0.27, + "1993": 0.276, + "1994": 0.276, + "1995": 0.278, + "1996": 0.275, + "1997": 0.271, + "1998": 0.268, + "1999": 0.264, + "2000": 0.279, + "2001": 0.291, + "2002": 0.307, + "2003": 0.315, + "2004": 0.322, + "2005": 0.329, + "2006": 0.338, + "2007": 0.351, + "2008": 0.363, + "2009": 0.371, + "2010": 0.375, + "2011": 0.38, + "2012": 0.391, + "2013": 0.401, + "2014": 0.404, + "2015": 0.396, + "2016": 0.398, + "2017": 0.407, + "2018": 0.418, + "2019": 0.433, + "2020": 0.428, + "2021": 0.43 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr104", + "Region": "Port Loko", + "1990": 0.296, + "1991": 0.289, + "1992": 0.289, + "1993": 0.295, + "1994": 0.296, + "1995": 0.298, + "1996": 0.295, + "1997": 0.291, + "1998": 0.288, + "1999": 0.284, + "2000": 0.3, + "2001": 0.312, + "2002": 0.328, + "2003": 0.337, + "2004": 0.345, + "2005": 0.352, + "2006": 0.361, + "2007": 0.376, + "2008": 0.388, + "2009": 0.395, + "2010": 0.4, + "2011": 0.404, + "2012": 0.415, + "2013": 0.424, + "2014": 0.429, + "2015": 0.424, + "2016": 0.429, + "2017": 0.44, + "2018": 0.434, + "2019": 0.431, + "2020": 0.427, + "2021": 0.429 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr112", + "Region": "Pujehun", + "1990": 0.241, + "1991": 0.235, + "1992": 0.235, + "1993": 0.241, + "1994": 0.241, + "1995": 0.242, + "1996": 0.24, + "1997": 0.236, + "1998": 0.234, + "1999": 0.231, + "2000": 0.244, + "2001": 0.254, + "2002": 0.268, + "2003": 0.275, + "2004": 0.281, + "2005": 0.287, + "2006": 0.295, + "2007": 0.307, + "2008": 0.317, + "2009": 0.333, + "2010": 0.346, + "2011": 0.357, + "2012": 0.376, + "2013": 0.392, + "2014": 0.393, + "2015": 0.384, + "2016": 0.385, + "2017": 0.391, + "2018": 0.404, + "2019": 0.423, + "2020": 0.418, + "2021": 0.42 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr105", + "Region": "Tonkolili", + "1990": 0.258, + "1991": 0.251, + "1992": 0.251, + "1993": 0.257, + "1994": 0.257, + "1995": 0.258, + "1996": 0.256, + "1997": 0.252, + "1998": 0.249, + "1999": 0.246, + "2000": 0.261, + "2001": 0.272, + "2002": 0.286, + "2003": 0.294, + "2004": 0.301, + "2005": 0.308, + "2006": 0.316, + "2007": 0.329, + "2008": 0.34, + "2009": 0.357, + "2010": 0.37, + "2011": 0.383, + "2012": 0.403, + "2013": 0.422, + "2014": 0.417, + "2015": 0.402, + "2016": 0.398, + "2017": 0.4, + "2018": 0.42, + "2019": 0.445, + "2020": 0.44, + "2021": 0.442 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr113", + "Region": "Western Rural", + "1990": 0.335, + "1991": 0.329, + "1992": 0.329, + "1993": 0.337, + "1994": 0.337, + "1995": 0.339, + "1996": 0.338, + "1997": 0.334, + "1998": 0.331, + "1999": 0.327, + "2000": 0.346, + "2001": 0.359, + "2002": 0.377, + "2003": 0.386, + "2004": 0.395, + "2005": 0.403, + "2006": 0.414, + "2007": 0.43, + "2008": 0.443, + "2009": 0.459, + "2010": 0.472, + "2011": 0.484, + "2012": 0.504, + "2013": 0.522, + "2014": 0.513, + "2015": 0.495, + "2016": 0.489, + "2017": 0.489, + "2018": 0.504, + "2019": 0.524, + "2020": 0.519, + "2021": 0.52 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr114", + "Region": "Western Urban", + "1990": 0.434, + "1991": 0.427, + "1992": 0.429, + "1993": 0.438, + "1994": 0.438, + "1995": 0.442, + "1996": 0.44, + "1997": 0.436, + "1998": 0.433, + "1999": 0.429, + "2000": 0.452, + "2001": 0.468, + "2002": 0.489, + "2003": 0.501, + "2004": 0.511, + "2005": 0.521, + "2006": 0.534, + "2007": 0.554, + "2008": 0.57, + "2009": 0.578, + "2010": 0.583, + "2011": 0.587, + "2012": 0.6, + "2013": 0.61, + "2014": 0.599, + "2015": 0.579, + "2016": 0.574, + "2017": 0.574, + "2018": 0.591, + "2019": 0.612, + "2020": 0.607, + "2021": 0.609 + }, + { + "Country": "Singapore", + "Continent": "Asia/Pacific", + "ISO_Code": "SGP", + "Level": "National", + "GDLCODE": "SGPt", + "Region": "Total", + "1990": 0.727, + "1991": 0.737, + "1992": 0.748, + "1993": 0.758, + "1994": 0.77, + "1995": 0.779, + "1996": 0.789, + "1997": 0.802, + "1998": 0.81, + "1999": 0.82, + "2000": 0.831, + "2001": 0.833, + "2002": 0.84, + "2003": 0.845, + "2004": 0.851, + "2005": 0.875, + "2006": 0.881, + "2007": 0.887, + "2008": 0.892, + "2009": 0.892, + "2010": 0.91, + "2011": 0.915, + "2012": 0.92, + "2013": 0.923, + "2014": 0.928, + "2015": 0.93, + "2016": 0.934, + "2017": 0.935, + "2018": 0.94, + "2019": 0.943, + "2020": 0.939, + "2021": 0.939 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "National", + "GDLCODE": "SVKt", + "Region": "Total", + "1990": 0.692, + "1991": 0.69, + "1992": 0.694, + "1993": 0.701, + "1994": 0.711, + "1995": 0.72, + "1996": 0.73, + "1997": 0.738, + "1998": 0.748, + "1999": 0.755, + "2000": 0.763, + "2001": 0.77, + "2002": 0.779, + "2003": 0.784, + "2004": 0.794, + "2005": 0.803, + "2006": 0.812, + "2007": 0.823, + "2008": 0.831, + "2009": 0.833, + "2010": 0.84, + "2011": 0.844, + "2012": 0.845, + "2013": 0.848, + "2014": 0.849, + "2015": 0.851, + "2016": 0.854, + "2017": 0.856, + "2018": 0.859, + "2019": 0.862, + "2020": 0.857, + "2021": 0.848 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr101", + "Region": "Bratislavsky kraj", + "1990": 0.818, + "1991": 0.814, + "1992": 0.817, + "1993": 0.824, + "1994": 0.833, + "1995": 0.84, + "1996": 0.849, + "1997": 0.856, + "1998": 0.864, + "1999": 0.869, + "2000": 0.874, + "2001": 0.881, + "2002": 0.888, + "2003": 0.89, + "2004": 0.895, + "2005": 0.904, + "2006": 0.908, + "2007": 0.92, + "2008": 0.925, + "2009": 0.931, + "2010": 0.934, + "2011": 0.943, + "2012": 0.942, + "2013": 0.944, + "2014": 0.948, + "2015": 0.949, + "2016": 0.953, + "2017": 0.954, + "2018": 0.956, + "2019": 0.96, + "2020": 0.954, + "2021": 0.944 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr103", + "Region": "Stredne Slovensko", + "1990": 0.71, + "1991": 0.706, + "1992": 0.708, + "1993": 0.715, + "1994": 0.723, + "1995": 0.73, + "1996": 0.738, + "1997": 0.745, + "1998": 0.748, + "1999": 0.753, + "2000": 0.759, + "2001": 0.766, + "2002": 0.771, + "2003": 0.775, + "2004": 0.781, + "2005": 0.785, + "2006": 0.793, + "2007": 0.8, + "2008": 0.809, + "2009": 0.811, + "2010": 0.818, + "2011": 0.822, + "2012": 0.822, + "2013": 0.825, + "2014": 0.827, + "2015": 0.83, + "2016": 0.833, + "2017": 0.834, + "2018": 0.837, + "2019": 0.841, + "2020": 0.836, + "2021": 0.827 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr104", + "Region": "Vychodne Slovensko", + "1990": 0.694, + "1991": 0.69, + "1992": 0.692, + "1993": 0.699, + "1994": 0.707, + "1995": 0.714, + "1996": 0.722, + "1997": 0.729, + "1998": 0.734, + "1999": 0.739, + "2000": 0.745, + "2001": 0.754, + "2002": 0.759, + "2003": 0.76, + "2004": 0.767, + "2005": 0.772, + "2006": 0.778, + "2007": 0.785, + "2008": 0.795, + "2009": 0.794, + "2010": 0.799, + "2011": 0.804, + "2012": 0.805, + "2013": 0.808, + "2014": 0.811, + "2015": 0.813, + "2016": 0.817, + "2017": 0.82, + "2018": 0.824, + "2019": 0.825, + "2020": 0.82, + "2021": 0.811 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr102", + "Region": "Zapadne Slovensko", + "1990": 0.72, + "1991": 0.717, + "1992": 0.719, + "1993": 0.725, + "1994": 0.734, + "1995": 0.741, + "1996": 0.749, + "1997": 0.755, + "1998": 0.759, + "1999": 0.764, + "2000": 0.771, + "2001": 0.779, + "2002": 0.782, + "2003": 0.787, + "2004": 0.796, + "2005": 0.802, + "2006": 0.812, + "2007": 0.819, + "2008": 0.824, + "2009": 0.823, + "2010": 0.83, + "2011": 0.836, + "2012": 0.837, + "2013": 0.839, + "2014": 0.84, + "2015": 0.842, + "2016": 0.845, + "2017": 0.847, + "2018": 0.848, + "2019": 0.854, + "2020": 0.848, + "2021": 0.839 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "National", + "GDLCODE": "SVNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.76, + "1996": 0.771, + "1997": 0.782, + "1998": 0.794, + "1999": 0.812, + "2000": 0.821, + "2001": 0.837, + "2002": 0.848, + "2003": 0.858, + "2004": 0.865, + "2005": 0.869, + "2006": 0.878, + "2007": 0.882, + "2008": 0.888, + "2009": 0.887, + "2010": 0.89, + "2011": 0.892, + "2012": 0.891, + "2013": 0.9, + "2014": 0.902, + "2015": 0.903, + "2016": 0.91, + "2017": 0.913, + "2018": 0.917, + "2019": 0.921, + "2020": 0.913, + "2021": 0.918 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr110", + "Region": "Gorenjska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.758, + "1996": 0.769, + "1997": 0.78, + "1998": 0.792, + "1999": 0.81, + "2000": 0.819, + "2001": 0.835, + "2002": 0.846, + "2003": 0.856, + "2004": 0.863, + "2005": 0.867, + "2006": 0.876, + "2007": 0.88, + "2008": 0.885, + "2009": 0.882, + "2010": 0.887, + "2011": 0.888, + "2012": 0.887, + "2013": 0.896, + "2014": 0.898, + "2015": 0.903, + "2016": 0.909, + "2017": 0.912, + "2018": 0.917, + "2019": 0.92, + "2020": 0.913, + "2021": 0.918 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr111", + "Region": "Goriska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.757, + "1996": 0.768, + "1997": 0.779, + "1998": 0.791, + "1999": 0.809, + "2000": 0.817, + "2001": 0.833, + "2002": 0.845, + "2003": 0.854, + "2004": 0.862, + "2005": 0.866, + "2006": 0.875, + "2007": 0.879, + "2008": 0.886, + "2009": 0.884, + "2010": 0.887, + "2011": 0.888, + "2012": 0.882, + "2013": 0.891, + "2014": 0.889, + "2015": 0.896, + "2016": 0.899, + "2017": 0.902, + "2018": 0.907, + "2019": 0.911, + "2020": 0.903, + "2021": 0.908 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr107", + "Region": "Jugovzhodna Slovenija", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.745, + "1996": 0.756, + "1997": 0.767, + "1998": 0.779, + "1999": 0.796, + "2000": 0.805, + "2001": 0.821, + "2002": 0.832, + "2003": 0.841, + "2004": 0.848, + "2005": 0.852, + "2006": 0.861, + "2007": 0.864, + "2008": 0.87, + "2009": 0.869, + "2010": 0.872, + "2011": 0.873, + "2012": 0.873, + "2013": 0.883, + "2014": 0.885, + "2015": 0.887, + "2016": 0.894, + "2017": 0.897, + "2018": 0.902, + "2019": 0.906, + "2020": 0.898, + "2021": 0.903 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr103", + "Region": "Koroska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.734, + "1996": 0.745, + "1997": 0.755, + "1998": 0.767, + "1999": 0.784, + "2000": 0.793, + "2001": 0.809, + "2002": 0.82, + "2003": 0.829, + "2004": 0.836, + "2005": 0.84, + "2006": 0.849, + "2007": 0.852, + "2008": 0.858, + "2009": 0.855, + "2010": 0.858, + "2011": 0.862, + "2012": 0.868, + "2013": 0.874, + "2014": 0.88, + "2015": 0.877, + "2016": 0.881, + "2017": 0.884, + "2018": 0.888, + "2019": 0.892, + "2020": 0.884, + "2021": 0.889 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr112", + "Region": "Obalno-kraska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.763, + "1996": 0.774, + "1997": 0.785, + "1998": 0.798, + "1999": 0.815, + "2000": 0.824, + "2001": 0.84, + "2002": 0.852, + "2003": 0.861, + "2004": 0.869, + "2005": 0.873, + "2006": 0.882, + "2007": 0.885, + "2008": 0.892, + "2009": 0.892, + "2010": 0.896, + "2011": 0.896, + "2012": 0.895, + "2013": 0.901, + "2014": 0.904, + "2015": 0.906, + "2016": 0.91, + "2017": 0.913, + "2018": 0.917, + "2019": 0.921, + "2020": 0.913, + "2021": 0.918 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr109", + "Region": "Osrednjeslovenska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.796, + "1996": 0.807, + "1997": 0.818, + "1998": 0.831, + "1999": 0.85, + "2000": 0.859, + "2001": 0.876, + "2002": 0.888, + "2003": 0.898, + "2004": 0.905, + "2005": 0.909, + "2006": 0.919, + "2007": 0.922, + "2008": 0.927, + "2009": 0.928, + "2010": 0.931, + "2011": 0.932, + "2012": 0.93, + "2013": 0.933, + "2014": 0.938, + "2015": 0.939, + "2016": 0.945, + "2017": 0.948, + "2018": 0.952, + "2019": 0.956, + "2020": 0.948, + "2021": 0.953 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr102", + "Region": "Podravska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.744, + "1996": 0.755, + "1997": 0.765, + "1998": 0.778, + "1999": 0.795, + "2000": 0.803, + "2001": 0.819, + "2002": 0.831, + "2003": 0.84, + "2004": 0.847, + "2005": 0.851, + "2006": 0.86, + "2007": 0.864, + "2008": 0.87, + "2009": 0.869, + "2010": 0.872, + "2011": 0.874, + "2012": 0.876, + "2013": 0.883, + "2014": 0.886, + "2015": 0.884, + "2016": 0.891, + "2017": 0.895, + "2018": 0.899, + "2019": 0.903, + "2020": 0.895, + "2021": 0.9 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr101", + "Region": "Pomurska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.719, + "1996": 0.729, + "1997": 0.739, + "1998": 0.751, + "1999": 0.768, + "2000": 0.776, + "2001": 0.792, + "2002": 0.803, + "2003": 0.812, + "2004": 0.819, + "2005": 0.823, + "2006": 0.831, + "2007": 0.834, + "2008": 0.839, + "2009": 0.839, + "2010": 0.842, + "2011": 0.845, + "2012": 0.851, + "2013": 0.858, + "2014": 0.858, + "2015": 0.862, + "2016": 0.866, + "2017": 0.869, + "2018": 0.873, + "2019": 0.877, + "2020": 0.869, + "2021": 0.874 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr106", + "Region": "Posavska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.732, + "1996": 0.743, + "1997": 0.753, + "1998": 0.765, + "1999": 0.782, + "2000": 0.791, + "2001": 0.806, + "2002": 0.818, + "2003": 0.827, + "2004": 0.834, + "2005": 0.838, + "2006": 0.846, + "2007": 0.85, + "2008": 0.856, + "2009": 0.857, + "2010": 0.86, + "2011": 0.862, + "2012": 0.86, + "2013": 0.871, + "2014": 0.876, + "2015": 0.877, + "2016": 0.881, + "2017": 0.884, + "2018": 0.888, + "2019": 0.892, + "2020": 0.884, + "2021": 0.889 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr108", + "Region": "Primorsko-notranjska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.744, + "1996": 0.754, + "1997": 0.765, + "1998": 0.777, + "1999": 0.795, + "2000": 0.803, + "2001": 0.819, + "2002": 0.831, + "2003": 0.84, + "2004": 0.847, + "2005": 0.851, + "2006": 0.86, + "2007": 0.863, + "2008": 0.869, + "2009": 0.869, + "2010": 0.87, + "2011": 0.871, + "2012": 0.861, + "2013": 0.876, + "2014": 0.877, + "2015": 0.879, + "2016": 0.884, + "2017": 0.887, + "2018": 0.892, + "2019": 0.895, + "2020": 0.888, + "2021": 0.893 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr104", + "Region": "Savinjska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.746, + "1996": 0.756, + "1997": 0.767, + "1998": 0.779, + "1999": 0.796, + "2000": 0.805, + "2001": 0.821, + "2002": 0.833, + "2003": 0.842, + "2004": 0.849, + "2005": 0.853, + "2006": 0.862, + "2007": 0.865, + "2008": 0.872, + "2009": 0.871, + "2010": 0.876, + "2011": 0.878, + "2012": 0.875, + "2013": 0.886, + "2014": 0.886, + "2015": 0.887, + "2016": 0.896, + "2017": 0.899, + "2018": 0.903, + "2019": 0.907, + "2020": 0.899, + "2021": 0.904 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr105", + "Region": "Zasavska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.721, + "1996": 0.732, + "1997": 0.742, + "1998": 0.754, + "1999": 0.771, + "2000": 0.779, + "2001": 0.795, + "2002": 0.806, + "2003": 0.815, + "2004": 0.822, + "2005": 0.826, + "2006": 0.834, + "2007": 0.837, + "2008": 0.843, + "2009": 0.842, + "2010": 0.845, + "2011": 0.846, + "2012": 0.848, + "2013": 0.852, + "2014": 0.856, + "2015": 0.853, + "2016": 0.86, + "2017": 0.863, + "2018": 0.867, + "2019": 0.871, + "2020": 0.863, + "2021": 0.868 + }, + { + "Country": "Solomon Islands", + "Continent": "Asia/Pacific", + "ISO_Code": "SLB", + "Level": "National", + "GDLCODE": "SLBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.499, + "2000": 0.486, + "2001": 0.49, + "2002": 0.496, + "2003": 0.501, + "2004": 0.507, + "2005": 0.512, + "2006": 0.52, + "2007": 0.523, + "2008": 0.531, + "2009": 0.538, + "2010": 0.55, + "2011": 0.553, + "2012": 0.554, + "2013": 0.559, + "2014": 0.558, + "2015": 0.559, + "2016": 0.56, + "2017": 0.564, + "2018": 0.566, + "2019": 0.567, + "2020": 0.565, + "2021": 0.564 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "National", + "GDLCODE": "SOMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.387, + "2007": 0.377, + "2008": 0.366, + "2009": 0.355, + "2010": 0.343, + "2011": 0.33, + "2012": 0.318, + "2013": 0.321, + "2014": 0.328, + "2015": 0.339, + "2016": 0.344, + "2017": 0.35, + "2018": 0.356, + "2019": 0.361, + "2020": 0.361, + "2021": 0.361 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr102", + "Region": "Awdal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.428, + "2007": 0.417, + "2008": 0.405, + "2009": 0.394, + "2010": 0.382, + "2011": 0.368, + "2012": 0.354, + "2013": 0.359, + "2014": 0.366, + "2015": 0.377, + "2016": 0.383, + "2017": 0.389, + "2018": 0.395, + "2019": 0.401, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr109", + "Region": "Bakool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.334, + "2007": 0.322, + "2008": 0.31, + "2009": 0.298, + "2010": 0.285, + "2011": 0.271, + "2012": 0.257, + "2013": 0.261, + "2014": 0.267, + "2015": 0.276, + "2016": 0.281, + "2017": 0.286, + "2018": 0.291, + "2019": 0.295, + "2020": 0.295, + "2021": 0.295 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr116", + "Region": "Banadir", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.469, + "2007": 0.46, + "2008": 0.45, + "2009": 0.44, + "2010": 0.43, + "2011": 0.419, + "2012": 0.408, + "2013": 0.412, + "2014": 0.42, + "2015": 0.432, + "2016": 0.439, + "2017": 0.446, + "2018": 0.453, + "2019": 0.459, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr108", + "Region": "Bari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.447, + "2007": 0.437, + "2008": 0.426, + "2009": 0.416, + "2010": 0.405, + "2011": 0.393, + "2012": 0.38, + "2013": 0.385, + "2014": 0.392, + "2015": 0.404, + "2016": 0.41, + "2017": 0.417, + "2018": 0.423, + "2019": 0.429, + "2020": 0.429, + "2021": 0.429 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr110", + "Region": "Bay", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.339, + "2007": 0.326, + "2008": 0.313, + "2009": 0.3, + "2010": 0.287, + "2011": 0.272, + "2012": 0.256, + "2013": 0.26, + "2014": 0.266, + "2015": 0.275, + "2016": 0.28, + "2017": 0.285, + "2018": 0.29, + "2019": 0.294, + "2020": 0.294, + "2021": 0.294 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr117", + "Region": "Galguduud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.311, + "2007": 0.301, + "2008": 0.29, + "2009": 0.279, + "2010": 0.268, + "2011": 0.256, + "2012": 0.244, + "2013": 0.247, + "2014": 0.252, + "2015": 0.261, + "2016": 0.265, + "2017": 0.27, + "2018": 0.274, + "2019": 0.279, + "2020": 0.279, + "2021": 0.279 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr111", + "Region": "Gedo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.37, + "2007": 0.358, + "2008": 0.345, + "2009": 0.332, + "2010": 0.318, + "2011": 0.304, + "2012": 0.288, + "2013": 0.292, + "2014": 0.298, + "2015": 0.308, + "2016": 0.314, + "2017": 0.319, + "2018": 0.324, + "2019": 0.33, + "2020": 0.33, + "2021": 0.33 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr113", + "Region": "Hiran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.322, + "2007": 0.312, + "2008": 0.302, + "2009": 0.291, + "2010": 0.28, + "2011": 0.268, + "2012": 0.255, + "2013": 0.258, + "2014": 0.264, + "2015": 0.272, + "2016": 0.277, + "2017": 0.282, + "2018": 0.286, + "2019": 0.291, + "2020": 0.291, + "2021": 0.291 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr118", + "Region": "Lower Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.327, + "2007": 0.317, + "2008": 0.306, + "2009": 0.296, + "2010": 0.285, + "2011": 0.273, + "2012": 0.261, + "2013": 0.264, + "2014": 0.27, + "2015": 0.28, + "2016": 0.285, + "2017": 0.29, + "2018": 0.295, + "2019": 0.3, + "2020": 0.3, + "2021": 0.3 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr115", + "Region": "Lower Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.343, + "2007": 0.334, + "2008": 0.324, + "2009": 0.315, + "2010": 0.305, + "2011": 0.294, + "2012": 0.283, + "2013": 0.286, + "2014": 0.293, + "2015": 0.302, + "2016": 0.308, + "2017": 0.313, + "2018": 0.318, + "2019": 0.323, + "2020": 0.323, + "2021": 0.323 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr112", + "Region": "Middle Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.231, + "2007": 0.227, + "2008": 0.222, + "2009": 0.218, + "2010": 0.214, + "2011": 0.208, + "2012": 0.203, + "2013": 0.205, + "2014": 0.21, + "2015": 0.217, + "2016": 0.221, + "2017": 0.225, + "2018": 0.228, + "2019": 0.232, + "2020": 0.232, + "2021": 0.232 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr114", + "Region": "Middle Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.362, + "2007": 0.349, + "2008": 0.336, + "2009": 0.322, + "2010": 0.308, + "2011": 0.293, + "2012": 0.277, + "2013": 0.28, + "2014": 0.286, + "2015": 0.295, + "2016": 0.3, + "2017": 0.306, + "2018": 0.31, + "2019": 0.315, + "2020": 0.315, + "2021": 0.315 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr106", + "Region": "Mudug", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.409, + "2007": 0.397, + "2008": 0.384, + "2009": 0.372, + "2010": 0.359, + "2011": 0.345, + "2012": 0.33, + "2013": 0.334, + "2014": 0.341, + "2015": 0.351, + "2016": 0.357, + "2017": 0.363, + "2018": 0.369, + "2019": 0.374, + "2020": 0.374, + "2021": 0.374 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr107", + "Region": "Nugal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.412, + "2007": 0.4, + "2008": 0.387, + "2009": 0.374, + "2010": 0.361, + "2011": 0.347, + "2012": 0.332, + "2013": 0.336, + "2014": 0.343, + "2015": 0.354, + "2016": 0.36, + "2017": 0.366, + "2018": 0.372, + "2019": 0.378, + "2020": 0.378, + "2021": 0.378 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr103", + "Region": "Sanaag", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.472, + "2007": 0.461, + "2008": 0.449, + "2009": 0.437, + "2010": 0.424, + "2011": 0.41, + "2012": 0.396, + "2013": 0.401, + "2014": 0.409, + "2015": 0.421, + "2016": 0.428, + "2017": 0.435, + "2018": 0.441, + "2019": 0.448, + "2020": 0.448, + "2021": 0.448 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr104", + "Region": "Sool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.359, + "2007": 0.35, + "2008": 0.34, + "2009": 0.33, + "2010": 0.32, + "2011": 0.309, + "2012": 0.297, + "2013": 0.301, + "2014": 0.307, + "2015": 0.317, + "2016": 0.323, + "2017": 0.328, + "2018": 0.333, + "2019": 0.338, + "2020": 0.338, + "2021": 0.338 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr105", + "Region": "Togdhere", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.356, + "2007": 0.345, + "2008": 0.333, + "2009": 0.321, + "2010": 0.309, + "2011": 0.296, + "2012": 0.282, + "2013": 0.286, + "2014": 0.292, + "2015": 0.302, + "2016": 0.308, + "2017": 0.313, + "2018": 0.318, + "2019": 0.323, + "2020": 0.323, + "2021": 0.323 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr101", + "Region": "W Galbeed", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.471, + "2007": 0.461, + "2008": 0.451, + "2009": 0.44, + "2010": 0.43, + "2011": 0.418, + "2012": 0.406, + "2013": 0.41, + "2014": 0.418, + "2015": 0.43, + "2016": 0.437, + "2017": 0.444, + "2018": 0.45, + "2019": 0.457, + "2020": 0.457, + "2021": 0.457 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "National", + "GDLCODE": "ZAFt", + "Region": "Total", + "1990": 0.632, + "1991": 0.641, + "1992": 0.647, + "1993": 0.652, + "1994": 0.658, + "1995": 0.661, + "1996": 0.656, + "1997": 0.651, + "1998": 0.644, + "1999": 0.638, + "2000": 0.633, + "2001": 0.629, + "2002": 0.633, + "2003": 0.629, + "2004": 0.63, + "2005": 0.632, + "2006": 0.637, + "2007": 0.644, + "2008": 0.653, + "2009": 0.665, + "2010": 0.675, + "2011": 0.686, + "2012": 0.696, + "2013": 0.704, + "2014": 0.712, + "2015": 0.716, + "2016": 0.719, + "2017": 0.72, + "2018": 0.726, + "2019": 0.736, + "2020": 0.727, + "2021": 0.713 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr102", + "Region": "Eastern Cape", + "1990": 0.581, + "1991": 0.589, + "1992": 0.594, + "1993": 0.599, + "1994": 0.604, + "1995": 0.606, + "1996": 0.601, + "1997": 0.597, + "1998": 0.59, + "1999": 0.586, + "2000": 0.583, + "2001": 0.58, + "2002": 0.584, + "2003": 0.581, + "2004": 0.583, + "2005": 0.586, + "2006": 0.591, + "2007": 0.599, + "2008": 0.608, + "2009": 0.621, + "2010": 0.631, + "2011": 0.643, + "2012": 0.654, + "2013": 0.662, + "2014": 0.672, + "2015": 0.677, + "2016": 0.682, + "2017": 0.682, + "2018": 0.687, + "2019": 0.697, + "2020": 0.688, + "2021": 0.675 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr104", + "Region": "Free State", + "1990": 0.648, + "1991": 0.657, + "1992": 0.663, + "1993": 0.668, + "1994": 0.674, + "1995": 0.677, + "1996": 0.672, + "1997": 0.667, + "1998": 0.66, + "1999": 0.652, + "2000": 0.646, + "2001": 0.64, + "2002": 0.643, + "2003": 0.636, + "2004": 0.636, + "2005": 0.637, + "2006": 0.64, + "2007": 0.645, + "2008": 0.653, + "2009": 0.663, + "2010": 0.672, + "2011": 0.681, + "2012": 0.692, + "2013": 0.7, + "2014": 0.709, + "2015": 0.714, + "2016": 0.718, + "2017": 0.719, + "2018": 0.725, + "2019": 0.735, + "2020": 0.726, + "2021": 0.712 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr107", + "Region": "Gauteng", + "1990": 0.696, + "1991": 0.706, + "1992": 0.713, + "1993": 0.719, + "1994": 0.725, + "1995": 0.729, + "1996": 0.723, + "1997": 0.717, + "1998": 0.709, + "1999": 0.7, + "2000": 0.692, + "2001": 0.685, + "2002": 0.689, + "2003": 0.682, + "2004": 0.681, + "2005": 0.681, + "2006": 0.683, + "2007": 0.688, + "2008": 0.695, + "2009": 0.706, + "2010": 0.714, + "2011": 0.723, + "2012": 0.731, + "2013": 0.735, + "2014": 0.74, + "2015": 0.741, + "2016": 0.741, + "2017": 0.742, + "2018": 0.748, + "2019": 0.759, + "2020": 0.75, + "2021": 0.736 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr105", + "Region": "KwaZulu Natal", + "1990": 0.589, + "1991": 0.597, + "1992": 0.602, + "1993": 0.607, + "1994": 0.612, + "1995": 0.615, + "1996": 0.61, + "1997": 0.605, + "1998": 0.599, + "1999": 0.596, + "2000": 0.594, + "2001": 0.592, + "2002": 0.598, + "2003": 0.596, + "2004": 0.599, + "2005": 0.604, + "2006": 0.61, + "2007": 0.619, + "2008": 0.63, + "2009": 0.644, + "2010": 0.656, + "2011": 0.669, + "2012": 0.682, + "2013": 0.692, + "2014": 0.703, + "2015": 0.71, + "2016": 0.716, + "2017": 0.717, + "2018": 0.722, + "2019": 0.732, + "2020": 0.724, + "2021": 0.71 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr108", + "Region": "Mpumalanga", + "1990": 0.609, + "1991": 0.618, + "1992": 0.623, + "1993": 0.628, + "1994": 0.633, + "1995": 0.635, + "1996": 0.631, + "1997": 0.626, + "1998": 0.62, + "1999": 0.615, + "2000": 0.61, + "2001": 0.606, + "2002": 0.609, + "2003": 0.605, + "2004": 0.605, + "2005": 0.608, + "2006": 0.612, + "2007": 0.619, + "2008": 0.628, + "2009": 0.639, + "2010": 0.649, + "2011": 0.66, + "2012": 0.668, + "2013": 0.674, + "2014": 0.681, + "2015": 0.683, + "2016": 0.685, + "2017": 0.686, + "2018": 0.691, + "2019": 0.7, + "2020": 0.692, + "2021": 0.678 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr106", + "Region": "North West", + "1990": 0.626, + "1991": 0.635, + "1992": 0.641, + "1993": 0.646, + "1994": 0.651, + "1995": 0.654, + "1996": 0.649, + "1997": 0.644, + "1998": 0.638, + "1999": 0.631, + "2000": 0.624, + "2001": 0.619, + "2002": 0.621, + "2003": 0.615, + "2004": 0.614, + "2005": 0.615, + "2006": 0.618, + "2007": 0.623, + "2008": 0.63, + "2009": 0.64, + "2010": 0.648, + "2011": 0.657, + "2012": 0.665, + "2013": 0.671, + "2014": 0.678, + "2015": 0.681, + "2016": 0.683, + "2017": 0.683, + "2018": 0.689, + "2019": 0.698, + "2020": 0.69, + "2021": 0.676 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr103", + "Region": "Northern Cape", + "1990": 0.625, + "1991": 0.634, + "1992": 0.64, + "1993": 0.645, + "1994": 0.651, + "1995": 0.654, + "1996": 0.649, + "1997": 0.643, + "1998": 0.637, + "1999": 0.63, + "2000": 0.624, + "2001": 0.619, + "2002": 0.623, + "2003": 0.617, + "2004": 0.617, + "2005": 0.618, + "2006": 0.622, + "2007": 0.628, + "2008": 0.635, + "2009": 0.646, + "2010": 0.655, + "2011": 0.665, + "2012": 0.677, + "2013": 0.686, + "2014": 0.696, + "2015": 0.702, + "2016": 0.708, + "2017": 0.708, + "2018": 0.714, + "2019": 0.723, + "2020": 0.715, + "2021": 0.701 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr109", + "Region": "Northern Province", + "1990": 0.598, + "1991": 0.607, + "1992": 0.612, + "1993": 0.616, + "1994": 0.621, + "1995": 0.623, + "1996": 0.619, + "1997": 0.615, + "1998": 0.609, + "1999": 0.606, + "2000": 0.604, + "2001": 0.603, + "2002": 0.607, + "2003": 0.605, + "2004": 0.608, + "2005": 0.612, + "2006": 0.619, + "2007": 0.628, + "2008": 0.638, + "2009": 0.651, + "2010": 0.663, + "2011": 0.676, + "2012": 0.688, + "2013": 0.699, + "2014": 0.709, + "2015": 0.715, + "2016": 0.721, + "2017": 0.722, + "2018": 0.727, + "2019": 0.736, + "2020": 0.727, + "2021": 0.714 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr101", + "Region": "Western Cape", + "1990": 0.711, + "1991": 0.721, + "1992": 0.728, + "1993": 0.734, + "1994": 0.741, + "1995": 0.745, + "1996": 0.739, + "1997": 0.733, + "1998": 0.725, + "1999": 0.715, + "2000": 0.705, + "2001": 0.698, + "2002": 0.701, + "2003": 0.693, + "2004": 0.69, + "2005": 0.689, + "2006": 0.69, + "2007": 0.695, + "2008": 0.7, + "2009": 0.71, + "2010": 0.717, + "2011": 0.724, + "2012": 0.734, + "2013": 0.742, + "2014": 0.749, + "2015": 0.753, + "2016": 0.756, + "2017": 0.756, + "2018": 0.764, + "2019": 0.775, + "2020": 0.766, + "2021": 0.751 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "National", + "GDLCODE": "KORt", + "Region": "Total", + "1990": 0.737, + "1991": 0.747, + "1992": 0.754, + "1993": 0.763, + "1994": 0.773, + "1995": 0.783, + "1996": 0.793, + "1997": 0.806, + "1998": 0.804, + "1999": 0.815, + "2000": 0.825, + "2001": 0.833, + "2002": 0.84, + "2003": 0.844, + "2004": 0.852, + "2005": 0.86, + "2006": 0.866, + "2007": 0.871, + "2008": 0.875, + "2009": 0.877, + "2010": 0.89, + "2011": 0.896, + "2012": 0.897, + "2013": 0.901, + "2014": 0.906, + "2015": 0.909, + "2016": 0.912, + "2017": 0.916, + "2018": 0.919, + "2019": 0.923, + "2020": 0.922, + "2021": 0.925 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr101", + "Region": "Capital Region", + "1990": 0.766, + "1991": 0.776, + "1992": 0.783, + "1993": 0.791, + "1994": 0.801, + "1995": 0.81, + "1996": 0.82, + "1997": 0.833, + "1998": 0.83, + "1999": 0.842, + "2000": 0.853, + "2001": 0.861, + "2002": 0.869, + "2003": 0.873, + "2004": 0.88, + "2005": 0.887, + "2006": 0.893, + "2007": 0.899, + "2008": 0.902, + "2009": 0.903, + "2010": 0.915, + "2011": 0.919, + "2012": 0.922, + "2013": 0.927, + "2014": 0.933, + "2015": 0.935, + "2016": 0.939, + "2017": 0.943, + "2018": 0.946, + "2019": 0.95, + "2020": 0.949, + "2021": 0.952 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr105", + "Region": "Chungcheong Region", + "1990": 0.712, + "1991": 0.722, + "1992": 0.731, + "1993": 0.74, + "1994": 0.751, + "1995": 0.761, + "1996": 0.773, + "1997": 0.786, + "1998": 0.783, + "1999": 0.795, + "2000": 0.805, + "2001": 0.812, + "2002": 0.819, + "2003": 0.824, + "2004": 0.834, + "2005": 0.841, + "2006": 0.847, + "2007": 0.852, + "2008": 0.855, + "2009": 0.86, + "2010": 0.875, + "2011": 0.882, + "2012": 0.884, + "2013": 0.888, + "2014": 0.894, + "2015": 0.896, + "2016": 0.9, + "2017": 0.904, + "2018": 0.906, + "2019": 0.91, + "2020": 0.91, + "2021": 0.912 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr106", + "Region": "Gangwon Region", + "1990": 0.725, + "1991": 0.732, + "1992": 0.737, + "1993": 0.744, + "1994": 0.754, + "1995": 0.765, + "1996": 0.778, + "1997": 0.79, + "1998": 0.788, + "1999": 0.797, + "2000": 0.805, + "2001": 0.812, + "2002": 0.818, + "2003": 0.824, + "2004": 0.831, + "2005": 0.838, + "2006": 0.845, + "2007": 0.85, + "2008": 0.853, + "2009": 0.855, + "2010": 0.865, + "2011": 0.87, + "2012": 0.873, + "2013": 0.878, + "2014": 0.884, + "2015": 0.886, + "2016": 0.89, + "2017": 0.894, + "2018": 0.896, + "2019": 0.901, + "2020": 0.9, + "2021": 0.902 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr103", + "Region": "Gyeongbuk Region", + "1990": 0.683, + "1991": 0.691, + "1992": 0.696, + "1993": 0.702, + "1994": 0.713, + "1995": 0.721, + "1996": 0.731, + "1997": 0.745, + "1998": 0.742, + "1999": 0.753, + "2000": 0.763, + "2001": 0.769, + "2002": 0.775, + "2003": 0.78, + "2004": 0.789, + "2005": 0.797, + "2006": 0.801, + "2007": 0.806, + "2008": 0.809, + "2009": 0.81, + "2010": 0.823, + "2011": 0.827, + "2012": 0.83, + "2013": 0.834, + "2014": 0.839, + "2015": 0.842, + "2016": 0.845, + "2017": 0.849, + "2018": 0.851, + "2019": 0.855, + "2020": 0.854, + "2021": 0.857 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr102", + "Region": "Gyeongnam Region", + "1990": 0.744, + "1991": 0.753, + "1992": 0.76, + "1993": 0.768, + "1994": 0.778, + "1995": 0.789, + "1996": 0.799, + "1997": 0.813, + "1998": 0.813, + "1999": 0.823, + "2000": 0.832, + "2001": 0.841, + "2002": 0.848, + "2003": 0.852, + "2004": 0.861, + "2005": 0.869, + "2006": 0.874, + "2007": 0.881, + "2008": 0.886, + "2009": 0.887, + "2010": 0.901, + "2011": 0.907, + "2012": 0.91, + "2013": 0.913, + "2014": 0.917, + "2015": 0.92, + "2016": 0.923, + "2017": 0.927, + "2018": 0.93, + "2019": 0.934, + "2020": 0.934, + "2021": 0.936 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr107", + "Region": "Jeju", + "1990": 0.721, + "1991": 0.734, + "1992": 0.739, + "1993": 0.747, + "1994": 0.759, + "1995": 0.771, + "1996": 0.779, + "1997": 0.792, + "1998": 0.788, + "1999": 0.799, + "2000": 0.807, + "2001": 0.815, + "2002": 0.822, + "2003": 0.827, + "2004": 0.836, + "2005": 0.843, + "2006": 0.847, + "2007": 0.852, + "2008": 0.855, + "2009": 0.859, + "2010": 0.87, + "2011": 0.876, + "2012": 0.88, + "2013": 0.884, + "2014": 0.89, + "2015": 0.892, + "2016": 0.896, + "2017": 0.9, + "2018": 0.902, + "2019": 0.906, + "2020": 0.905, + "2021": 0.907 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr104", + "Region": "Jeolla Region", + "1990": 0.712, + "1991": 0.723, + "1992": 0.732, + "1993": 0.741, + "1994": 0.752, + "1995": 0.764, + "1996": 0.775, + "1997": 0.789, + "1998": 0.786, + "1999": 0.796, + "2000": 0.805, + "2001": 0.812, + "2002": 0.819, + "2003": 0.824, + "2004": 0.832, + "2005": 0.84, + "2006": 0.845, + "2007": 0.852, + "2008": 0.856, + "2009": 0.858, + "2010": 0.872, + "2011": 0.878, + "2012": 0.88, + "2013": 0.883, + "2014": 0.888, + "2015": 0.89, + "2016": 0.893, + "2017": 0.897, + "2018": 0.9, + "2019": 0.904, + "2020": 0.904, + "2021": 0.906 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "National", + "GDLCODE": "SSDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.43, + "2011": 0.433, + "2012": 0.397, + "2013": 0.411, + "2014": 0.41, + "2015": 0.412, + "2016": 0.402, + "2017": 0.395, + "2018": 0.395, + "2019": 0.393, + "2020": 0.386, + "2021": 0.385 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr109", + "Region": "Central Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.512, + "2011": 0.516, + "2012": 0.476, + "2013": 0.492, + "2014": 0.49, + "2015": 0.493, + "2016": 0.481, + "2017": 0.474, + "2018": 0.474, + "2019": 0.472, + "2020": 0.463, + "2021": 0.463 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr110", + "Region": "Eastern Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.416, + "2011": 0.419, + "2012": 0.383, + "2013": 0.397, + "2014": 0.395, + "2015": 0.397, + "2016": 0.387, + "2017": 0.381, + "2018": 0.38, + "2019": 0.379, + "2020": 0.371, + "2021": 0.371 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr102", + "Region": "Jonglei", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.376, + "2011": 0.379, + "2012": 0.346, + "2013": 0.359, + "2014": 0.357, + "2015": 0.359, + "2016": 0.35, + "2017": 0.344, + "2018": 0.343, + "2019": 0.342, + "2020": 0.335, + "2021": 0.335 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr107", + "Region": "Lakes", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.387, + "2011": 0.39, + "2012": 0.358, + "2013": 0.37, + "2014": 0.369, + "2015": 0.371, + "2016": 0.362, + "2017": 0.357, + "2018": 0.356, + "2019": 0.355, + "2020": 0.348, + "2021": 0.348 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr105", + "Region": "Northern Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.344, + "2011": 0.347, + "2012": 0.318, + "2013": 0.329, + "2014": 0.328, + "2015": 0.33, + "2016": 0.321, + "2017": 0.316, + "2018": 0.316, + "2019": 0.315, + "2020": 0.308, + "2021": 0.308 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr103", + "Region": "Unity", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.385, + "2011": 0.388, + "2012": 0.355, + "2013": 0.367, + "2014": 0.366, + "2015": 0.367, + "2016": 0.358, + "2017": 0.353, + "2018": 0.352, + "2019": 0.351, + "2020": 0.344, + "2021": 0.344 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr101", + "Region": "Upper Nile", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.472, + "2011": 0.476, + "2012": 0.438, + "2013": 0.453, + "2014": 0.451, + "2015": 0.454, + "2016": 0.443, + "2017": 0.437, + "2018": 0.436, + "2019": 0.434, + "2020": 0.426, + "2021": 0.426 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr104", + "Region": "Warrap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.349, + "2011": 0.351, + "2012": 0.321, + "2013": 0.333, + "2014": 0.332, + "2015": 0.333, + "2016": 0.325, + "2017": 0.32, + "2018": 0.319, + "2019": 0.318, + "2020": 0.311, + "2021": 0.311 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr106", + "Region": "Western Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.463, + "2011": 0.466, + "2012": 0.429, + "2013": 0.444, + "2014": 0.442, + "2015": 0.444, + "2016": 0.433, + "2017": 0.427, + "2018": 0.426, + "2019": 0.425, + "2020": 0.417, + "2021": 0.416 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr108", + "Region": "Western Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.478, + "2011": 0.481, + "2012": 0.443, + "2013": 0.458, + "2014": 0.456, + "2015": 0.459, + "2016": 0.448, + "2017": 0.441, + "2018": 0.441, + "2019": 0.439, + "2020": 0.431, + "2021": 0.43 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "National", + "GDLCODE": "ESPt", + "Region": "Total", + "1990": 0.757, + "1991": 0.764, + "1992": 0.772, + "1993": 0.781, + "1994": 0.789, + "1995": 0.796, + "1996": 0.802, + "1997": 0.808, + "1998": 0.813, + "1999": 0.818, + "2000": 0.825, + "2001": 0.83, + "2002": 0.834, + "2003": 0.837, + "2004": 0.844, + "2005": 0.85, + "2006": 0.856, + "2007": 0.858, + "2008": 0.86, + "2009": 0.861, + "2010": 0.868, + "2011": 0.872, + "2012": 0.874, + "2013": 0.88, + "2014": 0.884, + "2015": 0.889, + "2016": 0.895, + "2017": 0.897, + "2018": 0.901, + "2019": 0.908, + "2020": 0.899, + "2021": 0.905 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr115", + "Region": "Andalucia", + "1990": 0.735, + "1991": 0.743, + "1992": 0.751, + "1993": 0.758, + "1994": 0.766, + "1995": 0.772, + "1996": 0.778, + "1997": 0.784, + "1998": 0.788, + "1999": 0.793, + "2000": 0.801, + "2001": 0.805, + "2002": 0.808, + "2003": 0.813, + "2004": 0.82, + "2005": 0.825, + "2006": 0.831, + "2007": 0.833, + "2008": 0.834, + "2009": 0.836, + "2010": 0.841, + "2011": 0.844, + "2012": 0.847, + "2013": 0.852, + "2014": 0.853, + "2015": 0.858, + "2016": 0.863, + "2017": 0.866, + "2018": 0.87, + "2019": 0.877, + "2020": 0.868, + "2021": 0.874 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr107", + "Region": "Aragon", + "1990": 0.762, + "1991": 0.77, + "1992": 0.779, + "1993": 0.785, + "1994": 0.793, + "1995": 0.799, + "1996": 0.806, + "1997": 0.811, + "1998": 0.816, + "1999": 0.82, + "2000": 0.829, + "2001": 0.834, + "2002": 0.838, + "2003": 0.843, + "2004": 0.848, + "2005": 0.855, + "2006": 0.863, + "2007": 0.865, + "2008": 0.867, + "2009": 0.867, + "2010": 0.873, + "2011": 0.877, + "2012": 0.88, + "2013": 0.885, + "2014": 0.888, + "2015": 0.892, + "2016": 0.901, + "2017": 0.903, + "2018": 0.907, + "2019": 0.915, + "2020": 0.906, + "2021": 0.912 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr119", + "Region": "Canarias", + "1990": 0.737, + "1991": 0.745, + "1992": 0.753, + "1993": 0.76, + "1994": 0.769, + "1995": 0.777, + "1996": 0.781, + "1997": 0.787, + "1998": 0.79, + "1999": 0.795, + "2000": 0.8, + "2001": 0.807, + "2002": 0.813, + "2003": 0.815, + "2004": 0.819, + "2005": 0.826, + "2006": 0.828, + "2007": 0.83, + "2008": 0.828, + "2009": 0.833, + "2010": 0.84, + "2011": 0.841, + "2012": 0.845, + "2013": 0.851, + "2014": 0.854, + "2015": 0.859, + "2016": 0.863, + "2017": 0.866, + "2018": 0.866, + "2019": 0.874, + "2020": 0.866, + "2021": 0.871 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr103", + "Region": "Cantabria", + "1990": 0.753, + "1991": 0.761, + "1992": 0.767, + "1993": 0.776, + "1994": 0.784, + "1995": 0.79, + "1996": 0.797, + "1997": 0.802, + "1998": 0.81, + "1999": 0.813, + "2000": 0.819, + "2001": 0.827, + "2002": 0.829, + "2003": 0.836, + "2004": 0.842, + "2005": 0.849, + "2006": 0.85, + "2007": 0.852, + "2008": 0.857, + "2009": 0.859, + "2010": 0.865, + "2011": 0.868, + "2012": 0.872, + "2013": 0.877, + "2014": 0.88, + "2015": 0.885, + "2016": 0.892, + "2017": 0.897, + "2018": 0.901, + "2019": 0.907, + "2020": 0.899, + "2021": 0.905 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr109", + "Region": "Castilla y Leon", + "1990": 0.769, + "1991": 0.776, + "1992": 0.784, + "1993": 0.793, + "1994": 0.801, + "1995": 0.808, + "1996": 0.814, + "1997": 0.82, + "1998": 0.824, + "1999": 0.83, + "2000": 0.837, + "2001": 0.842, + "2002": 0.843, + "2003": 0.849, + "2004": 0.856, + "2005": 0.86, + "2006": 0.866, + "2007": 0.868, + "2008": 0.87, + "2009": 0.873, + "2010": 0.879, + "2011": 0.885, + "2012": 0.887, + "2013": 0.89, + "2014": 0.891, + "2015": 0.895, + "2016": 0.899, + "2017": 0.901, + "2018": 0.904, + "2019": 0.909, + "2020": 0.9, + "2021": 0.906 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr110", + "Region": "Castilla-la Mancha", + "1990": 0.733, + "1991": 0.738, + "1992": 0.746, + "1993": 0.753, + "1994": 0.761, + "1995": 0.769, + "1996": 0.774, + "1997": 0.781, + "1998": 0.785, + "1999": 0.791, + "2000": 0.798, + "2001": 0.802, + "2002": 0.807, + "2003": 0.811, + "2004": 0.817, + "2005": 0.822, + "2006": 0.829, + "2007": 0.831, + "2008": 0.832, + "2009": 0.836, + "2010": 0.842, + "2011": 0.846, + "2012": 0.846, + "2013": 0.851, + "2014": 0.854, + "2015": 0.857, + "2016": 0.861, + "2017": 0.862, + "2018": 0.867, + "2019": 0.872, + "2020": 0.864, + "2021": 0.87 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr112", + "Region": "Cataluna", + "1990": 0.766, + "1991": 0.774, + "1992": 0.781, + "1993": 0.79, + "1994": 0.799, + "1995": 0.805, + "1996": 0.813, + "1997": 0.818, + "1998": 0.824, + "1999": 0.828, + "2000": 0.836, + "2001": 0.84, + "2002": 0.844, + "2003": 0.847, + "2004": 0.855, + "2005": 0.859, + "2006": 0.866, + "2007": 0.866, + "2008": 0.868, + "2009": 0.869, + "2010": 0.875, + "2011": 0.879, + "2012": 0.882, + "2013": 0.888, + "2014": 0.894, + "2015": 0.902, + "2016": 0.909, + "2017": 0.909, + "2018": 0.912, + "2019": 0.919, + "2020": 0.91, + "2021": 0.916 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr117", + "Region": "Ciudad Autonoma de Ceuta", + "1990": 0.722, + "1991": 0.733, + "1992": 0.745, + "1993": 0.751, + "1994": 0.758, + "1995": 0.767, + "1996": 0.765, + "1997": 0.775, + "1998": 0.776, + "1999": 0.784, + "2000": 0.797, + "2001": 0.802, + "2002": 0.795, + "2003": 0.805, + "2004": 0.805, + "2005": 0.813, + "2006": 0.811, + "2007": 0.811, + "2008": 0.819, + "2009": 0.817, + "2010": 0.819, + "2011": 0.823, + "2012": 0.833, + "2013": 0.832, + "2014": 0.839, + "2015": 0.85, + "2016": 0.852, + "2017": 0.849, + "2018": 0.856, + "2019": 0.86, + "2020": 0.851, + "2021": 0.857 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr118", + "Region": "Ciudad Autonoma de Melilla", + "1990": 0.723, + "1991": 0.736, + "1992": 0.748, + "1993": 0.751, + "1994": 0.75, + "1995": 0.762, + "1996": 0.772, + "1997": 0.772, + "1998": 0.771, + "1999": 0.787, + "2000": 0.79, + "2001": 0.791, + "2002": 0.793, + "2003": 0.798, + "2004": 0.803, + "2005": 0.813, + "2006": 0.811, + "2007": 0.811, + "2008": 0.809, + "2009": 0.818, + "2010": 0.821, + "2011": 0.821, + "2012": 0.821, + "2013": 0.827, + "2014": 0.831, + "2015": 0.833, + "2016": 0.842, + "2017": 0.846, + "2018": 0.846, + "2019": 0.855, + "2020": 0.847, + "2021": 0.853 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr108", + "Region": "Comunidad de Madrid", + "1990": 0.792, + "1991": 0.799, + "1992": 0.808, + "1993": 0.817, + "1994": 0.826, + "1995": 0.833, + "1996": 0.841, + "1997": 0.849, + "1998": 0.853, + "1999": 0.859, + "2000": 0.866, + "2001": 0.871, + "2002": 0.874, + "2003": 0.875, + "2004": 0.883, + "2005": 0.89, + "2006": 0.897, + "2007": 0.899, + "2008": 0.902, + "2009": 0.904, + "2010": 0.912, + "2011": 0.918, + "2012": 0.92, + "2013": 0.924, + "2014": 0.927, + "2015": 0.929, + "2016": 0.934, + "2017": 0.936, + "2018": 0.938, + "2019": 0.941, + "2020": 0.934, + "2021": 0.94 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr105", + "Region": "Comunidad Foral de Navarra", + "1990": 0.777, + "1991": 0.784, + "1992": 0.794, + "1993": 0.801, + "1994": 0.809, + "1995": 0.816, + "1996": 0.823, + "1997": 0.83, + "1998": 0.834, + "1999": 0.84, + "2000": 0.847, + "2001": 0.853, + "2002": 0.856, + "2003": 0.858, + "2004": 0.865, + "2005": 0.873, + "2006": 0.877, + "2007": 0.879, + "2008": 0.879, + "2009": 0.882, + "2010": 0.891, + "2011": 0.893, + "2012": 0.895, + "2013": 0.899, + "2014": 0.903, + "2015": 0.909, + "2016": 0.914, + "2017": 0.917, + "2018": 0.92, + "2019": 0.929, + "2020": 0.92, + "2021": 0.926 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr113", + "Region": "Comunidad Valenciana", + "1990": 0.751, + "1991": 0.758, + "1992": 0.766, + "1993": 0.774, + "1994": 0.781, + "1995": 0.789, + "1996": 0.795, + "1997": 0.8, + "1998": 0.807, + "1999": 0.81, + "2000": 0.818, + "2001": 0.822, + "2002": 0.825, + "2003": 0.828, + "2004": 0.837, + "2005": 0.842, + "2006": 0.848, + "2007": 0.849, + "2008": 0.851, + "2009": 0.852, + "2010": 0.858, + "2011": 0.862, + "2012": 0.863, + "2013": 0.869, + "2014": 0.874, + "2015": 0.879, + "2016": 0.883, + "2017": 0.886, + "2018": 0.89, + "2019": 0.898, + "2020": 0.889, + "2021": 0.895 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr111", + "Region": "Extremadura", + "1990": 0.724, + "1991": 0.732, + "1992": 0.74, + "1993": 0.747, + "1994": 0.755, + "1995": 0.763, + "1996": 0.768, + "1997": 0.774, + "1998": 0.778, + "1999": 0.783, + "2000": 0.789, + "2001": 0.794, + "2002": 0.799, + "2003": 0.802, + "2004": 0.809, + "2005": 0.814, + "2006": 0.821, + "2007": 0.824, + "2008": 0.828, + "2009": 0.829, + "2010": 0.834, + "2011": 0.84, + "2012": 0.839, + "2013": 0.844, + "2014": 0.85, + "2015": 0.853, + "2016": 0.856, + "2017": 0.86, + "2018": 0.864, + "2019": 0.869, + "2020": 0.861, + "2021": 0.867 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr101", + "Region": "Galicia", + "1990": 0.743, + "1991": 0.751, + "1992": 0.759, + "1993": 0.768, + "1994": 0.775, + "1995": 0.782, + "1996": 0.787, + "1997": 0.795, + "1998": 0.8, + "1999": 0.806, + "2000": 0.811, + "2001": 0.818, + "2002": 0.823, + "2003": 0.827, + "2004": 0.836, + "2005": 0.843, + "2006": 0.849, + "2007": 0.851, + "2008": 0.855, + "2009": 0.855, + "2010": 0.863, + "2011": 0.867, + "2012": 0.869, + "2013": 0.874, + "2014": 0.88, + "2015": 0.886, + "2016": 0.89, + "2017": 0.894, + "2018": 0.897, + "2019": 0.903, + "2020": 0.894, + "2021": 0.9 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr114", + "Region": "Illes Balears", + "1990": 0.733, + "1991": 0.741, + "1992": 0.75, + "1993": 0.758, + "1994": 0.767, + "1995": 0.773, + "1996": 0.78, + "1997": 0.787, + "1998": 0.792, + "1999": 0.795, + "2000": 0.802, + "2001": 0.809, + "2002": 0.812, + "2003": 0.815, + "2004": 0.819, + "2005": 0.824, + "2006": 0.83, + "2007": 0.83, + "2008": 0.83, + "2009": 0.83, + "2010": 0.835, + "2011": 0.841, + "2012": 0.844, + "2013": 0.85, + "2014": 0.853, + "2015": 0.86, + "2016": 0.866, + "2017": 0.867, + "2018": 0.872, + "2019": 0.879, + "2020": 0.871, + "2021": 0.876 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr106", + "Region": "La Rioja", + "1990": 0.759, + "1991": 0.77, + "1992": 0.777, + "1993": 0.787, + "1994": 0.796, + "1995": 0.802, + "1996": 0.809, + "1997": 0.815, + "1998": 0.819, + "1999": 0.823, + "2000": 0.833, + "2001": 0.836, + "2002": 0.839, + "2003": 0.843, + "2004": 0.851, + "2005": 0.856, + "2006": 0.862, + "2007": 0.862, + "2008": 0.864, + "2009": 0.871, + "2010": 0.876, + "2011": 0.877, + "2012": 0.88, + "2013": 0.887, + "2014": 0.897, + "2015": 0.904, + "2016": 0.907, + "2017": 0.909, + "2018": 0.91, + "2019": 0.913, + "2020": 0.904, + "2021": 0.91 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr104", + "Region": "Pais Vasco", + "1990": 0.784, + "1991": 0.791, + "1992": 0.799, + "1993": 0.809, + "1994": 0.817, + "1995": 0.823, + "1996": 0.829, + "1997": 0.837, + "1998": 0.841, + "1999": 0.849, + "2000": 0.855, + "2001": 0.861, + "2002": 0.863, + "2003": 0.868, + "2004": 0.876, + "2005": 0.883, + "2006": 0.891, + "2007": 0.892, + "2008": 0.894, + "2009": 0.896, + "2010": 0.903, + "2011": 0.907, + "2012": 0.912, + "2013": 0.915, + "2014": 0.918, + "2015": 0.921, + "2016": 0.925, + "2017": 0.928, + "2018": 0.93, + "2019": 0.934, + "2020": 0.926, + "2021": 0.932 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr102", + "Region": "Principado de Asturias", + "1990": 0.747, + "1991": 0.754, + "1992": 0.763, + "1993": 0.77, + "1994": 0.779, + "1995": 0.784, + "1996": 0.791, + "1997": 0.798, + "1998": 0.803, + "1999": 0.808, + "2000": 0.815, + "2001": 0.821, + "2002": 0.825, + "2003": 0.828, + "2004": 0.835, + "2005": 0.845, + "2006": 0.849, + "2007": 0.852, + "2008": 0.856, + "2009": 0.857, + "2010": 0.862, + "2011": 0.867, + "2012": 0.871, + "2013": 0.876, + "2014": 0.879, + "2015": 0.887, + "2016": 0.89, + "2017": 0.894, + "2018": 0.899, + "2019": 0.903, + "2020": 0.894, + "2021": 0.9 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr116", + "Region": "Region de Murcia", + "1990": 0.74, + "1991": 0.749, + "1992": 0.757, + "1993": 0.766, + "1994": 0.774, + "1995": 0.782, + "1996": 0.787, + "1997": 0.792, + "1998": 0.796, + "1999": 0.8, + "2000": 0.807, + "2001": 0.814, + "2002": 0.816, + "2003": 0.821, + "2004": 0.826, + "2005": 0.831, + "2006": 0.837, + "2007": 0.838, + "2008": 0.84, + "2009": 0.84, + "2010": 0.847, + "2011": 0.85, + "2012": 0.853, + "2013": 0.86, + "2014": 0.862, + "2015": 0.869, + "2016": 0.874, + "2017": 0.878, + "2018": 0.882, + "2019": 0.885, + "2020": 0.876, + "2021": 0.882 + }, + { + "Country": "Sri Lanka", + "Continent": "Asia/Pacific", + "ISO_Code": "LKA", + "Level": "National", + "GDLCODE": "LKAt", + "Region": "Total", + "1990": 0.636, + "1991": 0.641, + "1992": 0.65, + "1993": 0.658, + "1994": 0.663, + "1995": 0.666, + "1996": 0.672, + "1997": 0.678, + "1998": 0.683, + "1999": 0.691, + "2000": 0.688, + "2001": 0.69, + "2002": 0.694, + "2003": 0.699, + "2004": 0.683, + "2005": 0.71, + "2006": 0.714, + "2007": 0.719, + "2008": 0.721, + "2009": 0.713, + "2010": 0.737, + "2011": 0.744, + "2012": 0.751, + "2013": 0.756, + "2014": 0.76, + "2015": 0.764, + "2016": 0.767, + "2017": 0.771, + "2018": 0.776, + "2019": 0.778, + "2020": 0.78, + "2021": 0.782 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "National", + "GDLCODE": "SDNt", + "Region": "Total", + "1990": 0.336, + "1991": 0.342, + "1992": 0.331, + "1993": 0.34, + "1994": 0.383, + "1995": 0.371, + "1996": 0.379, + "1997": 0.388, + "1998": 0.376, + "1999": 0.413, + "2000": 0.424, + "2001": 0.431, + "2002": 0.436, + "2003": 0.439, + "2004": 0.441, + "2005": 0.448, + "2006": 0.465, + "2007": 0.47, + "2008": 0.478, + "2009": 0.486, + "2010": 0.486, + "2011": 0.487, + "2012": 0.493, + "2013": 0.497, + "2014": 0.504, + "2015": 0.508, + "2016": 0.511, + "2017": 0.514, + "2018": 0.514, + "2019": 0.514, + "2020": 0.51, + "2021": 0.508 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr105", + "Region": "Al Gedarif", + "1990": 0.318, + "1991": 0.323, + "1992": 0.312, + "1993": 0.32, + "1994": 0.362, + "1995": 0.351, + "1996": 0.358, + "1997": 0.367, + "1998": 0.355, + "1999": 0.39, + "2000": 0.4, + "2001": 0.406, + "2002": 0.409, + "2003": 0.409, + "2004": 0.41, + "2005": 0.415, + "2006": 0.43, + "2007": 0.433, + "2008": 0.44, + "2009": 0.452, + "2010": 0.455, + "2011": 0.451, + "2012": 0.452, + "2013": 0.451, + "2014": 0.452, + "2015": 0.456, + "2016": 0.459, + "2017": 0.461, + "2018": 0.46, + "2019": 0.461, + "2020": 0.457, + "2021": 0.455 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr107", + "Region": "Al Gezira", + "1990": 0.396, + "1991": 0.402, + "1992": 0.389, + "1993": 0.399, + "1994": 0.448, + "1995": 0.435, + "1996": 0.444, + "1997": 0.454, + "1998": 0.441, + "1999": 0.483, + "2000": 0.495, + "2001": 0.502, + "2002": 0.506, + "2003": 0.508, + "2004": 0.509, + "2005": 0.516, + "2006": 0.535, + "2007": 0.539, + "2008": 0.547, + "2009": 0.543, + "2010": 0.529, + "2011": 0.529, + "2012": 0.535, + "2013": 0.539, + "2014": 0.547, + "2015": 0.551, + "2016": 0.554, + "2017": 0.557, + "2018": 0.557, + "2019": 0.558, + "2020": 0.553, + "2021": 0.551 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr110", + "Region": "Blue Nile", + "1990": 0.256, + "1991": 0.261, + "1992": 0.251, + "1993": 0.258, + "1994": 0.294, + "1995": 0.284, + "1996": 0.29, + "1997": 0.298, + "1998": 0.287, + "1999": 0.319, + "2000": 0.327, + "2001": 0.334, + "2002": 0.34, + "2003": 0.342, + "2004": 0.344, + "2005": 0.351, + "2006": 0.367, + "2007": 0.371, + "2008": 0.379, + "2009": 0.391, + "2010": 0.395, + "2011": 0.398, + "2012": 0.406, + "2013": 0.412, + "2014": 0.42, + "2015": 0.423, + "2016": 0.425, + "2017": 0.428, + "2018": 0.428, + "2019": 0.428, + "2020": 0.424, + "2021": 0.422 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr104", + "Region": "Kassala", + "1990": 0.347, + "1991": 0.352, + "1992": 0.341, + "1993": 0.349, + "1994": 0.393, + "1995": 0.381, + "1996": 0.388, + "1997": 0.398, + "1998": 0.385, + "1999": 0.423, + "2000": 0.433, + "2001": 0.432, + "2002": 0.428, + "2003": 0.42, + "2004": 0.414, + "2005": 0.411, + "2006": 0.418, + "2007": 0.412, + "2008": 0.41, + "2009": 0.426, + "2010": 0.436, + "2011": 0.438, + "2012": 0.444, + "2013": 0.448, + "2014": 0.456, + "2015": 0.459, + "2016": 0.462, + "2017": 0.464, + "2018": 0.464, + "2019": 0.464, + "2020": 0.46, + "2021": 0.458 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr106", + "Region": "Khartoum", + "1990": 0.366, + "1991": 0.373, + "1992": 0.362, + "1993": 0.371, + "1994": 0.417, + "1995": 0.406, + "1996": 0.414, + "1997": 0.424, + "1998": 0.412, + "1999": 0.452, + "2000": 0.463, + "2001": 0.484, + "2002": 0.503, + "2003": 0.517, + "2004": 0.531, + "2005": 0.55, + "2006": 0.581, + "2007": 0.598, + "2008": 0.617, + "2009": 0.617, + "2010": 0.608, + "2011": 0.608, + "2012": 0.613, + "2013": 0.615, + "2014": 0.622, + "2015": 0.627, + "2016": 0.631, + "2017": 0.635, + "2018": 0.635, + "2019": 0.636, + "2020": 0.631, + "2021": 0.628 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr102", + "Region": "Nahr El Nil", + "1990": 0.352, + "1991": 0.358, + "1992": 0.347, + "1993": 0.356, + "1994": 0.401, + "1995": 0.39, + "1996": 0.398, + "1997": 0.408, + "1998": 0.396, + "1999": 0.434, + "2000": 0.445, + "2001": 0.457, + "2002": 0.467, + "2003": 0.474, + "2004": 0.48, + "2005": 0.491, + "2006": 0.513, + "2007": 0.522, + "2008": 0.535, + "2009": 0.536, + "2010": 0.527, + "2011": 0.541, + "2012": 0.56, + "2013": 0.577, + "2014": 0.598, + "2015": 0.603, + "2016": 0.607, + "2017": 0.61, + "2018": 0.61, + "2019": 0.611, + "2020": 0.606, + "2021": 0.604 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr113", + "Region": "North Darfur", + "1990": 0.376, + "1991": 0.382, + "1992": 0.371, + "1993": 0.38, + "1994": 0.425, + "1995": 0.414, + "1996": 0.422, + "1997": 0.432, + "1998": 0.42, + "1999": 0.459, + "2000": 0.47, + "2001": 0.469, + "2002": 0.466, + "2003": 0.46, + "2004": 0.454, + "2005": 0.452, + "2006": 0.46, + "2007": 0.456, + "2008": 0.455, + "2009": 0.476, + "2010": 0.49, + "2011": 0.481, + "2012": 0.476, + "2013": 0.469, + "2014": 0.465, + "2015": 0.469, + "2016": 0.472, + "2017": 0.474, + "2018": 0.473, + "2019": 0.473, + "2020": 0.469, + "2021": 0.467 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr111", + "Region": "North Kordofan", + "1990": 0.305, + "1991": 0.31, + "1992": 0.3, + "1993": 0.308, + "1994": 0.346, + "1995": 0.337, + "1996": 0.343, + "1997": 0.352, + "1998": 0.341, + "1999": 0.374, + "2000": 0.384, + "2001": 0.389, + "2002": 0.392, + "2003": 0.392, + "2004": 0.392, + "2005": 0.396, + "2006": 0.41, + "2007": 0.412, + "2008": 0.418, + "2009": 0.43, + "2010": 0.435, + "2011": 0.439, + "2012": 0.447, + "2013": 0.454, + "2014": 0.464, + "2015": 0.468, + "2016": 0.471, + "2017": 0.473, + "2018": 0.472, + "2019": 0.473, + "2020": 0.469, + "2021": 0.466 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr101", + "Region": "Northern", + "1990": 0.423, + "1991": 0.429, + "1992": 0.416, + "1993": 0.426, + "1994": 0.478, + "1995": 0.464, + "1996": 0.473, + "1997": 0.485, + "1998": 0.47, + "1999": 0.515, + "2000": 0.527, + "2001": 0.533, + "2002": 0.536, + "2003": 0.536, + "2004": 0.536, + "2005": 0.541, + "2006": 0.559, + "2007": 0.562, + "2008": 0.569, + "2009": 0.577, + "2010": 0.575, + "2011": 0.583, + "2012": 0.596, + "2013": 0.607, + "2014": 0.622, + "2015": 0.627, + "2016": 0.631, + "2017": 0.634, + "2018": 0.634, + "2019": 0.635, + "2020": 0.63, + "2021": 0.628 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr103", + "Region": "Red Sea", + "1990": 0.338, + "1991": 0.343, + "1992": 0.331, + "1993": 0.339, + "1994": 0.383, + "1995": 0.371, + "1996": 0.378, + "1997": 0.388, + "1998": 0.375, + "1999": 0.412, + "2000": 0.422, + "2001": 0.422, + "2002": 0.42, + "2003": 0.415, + "2004": 0.41, + "2005": 0.41, + "2006": 0.419, + "2007": 0.416, + "2008": 0.416, + "2009": 0.437, + "2010": 0.453, + "2011": 0.466, + "2012": 0.484, + "2013": 0.501, + "2014": 0.521, + "2015": 0.525, + "2016": 0.528, + "2017": 0.531, + "2018": 0.53, + "2019": 0.53, + "2020": 0.526, + "2021": 0.524 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr109", + "Region": "Sinnar", + "1990": 0.327, + "1991": 0.332, + "1992": 0.321, + "1993": 0.329, + "1994": 0.371, + "1995": 0.36, + "1996": 0.367, + "1997": 0.376, + "1998": 0.365, + "1999": 0.4, + "2000": 0.41, + "2001": 0.418, + "2002": 0.425, + "2003": 0.429, + "2004": 0.432, + "2005": 0.441, + "2006": 0.459, + "2007": 0.465, + "2008": 0.476, + "2009": 0.477, + "2010": 0.469, + "2011": 0.471, + "2012": 0.479, + "2013": 0.485, + "2014": 0.494, + "2015": 0.498, + "2016": 0.501, + "2017": 0.503, + "2018": 0.503, + "2019": 0.503, + "2020": 0.499, + "2021": 0.497 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr115", + "Region": "South Darfur", + "1990": 0.27, + "1991": 0.275, + "1992": 0.266, + "1993": 0.273, + "1994": 0.309, + "1995": 0.3, + "1996": 0.306, + "1997": 0.315, + "1998": 0.305, + "1999": 0.336, + "2000": 0.344, + "2001": 0.349, + "2002": 0.353, + "2003": 0.353, + "2004": 0.354, + "2005": 0.358, + "2006": 0.371, + "2007": 0.373, + "2008": 0.378, + "2009": 0.41, + "2010": 0.434, + "2011": 0.432, + "2012": 0.435, + "2013": 0.436, + "2014": 0.44, + "2015": 0.443, + "2016": 0.446, + "2017": 0.448, + "2018": 0.447, + "2019": 0.447, + "2020": 0.443, + "2021": 0.441 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr112", + "Region": "South Kordofan", + "1990": 0.312, + "1991": 0.317, + "1992": 0.307, + "1993": 0.315, + "1994": 0.356, + "1995": 0.345, + "1996": 0.352, + "1997": 0.361, + "1998": 0.349, + "1999": 0.384, + "2000": 0.394, + "2001": 0.397, + "2002": 0.398, + "2003": 0.395, + "2004": 0.393, + "2005": 0.396, + "2006": 0.408, + "2007": 0.408, + "2008": 0.411, + "2009": 0.418, + "2010": 0.418, + "2011": 0.419, + "2012": 0.424, + "2013": 0.428, + "2014": 0.435, + "2015": 0.438, + "2016": 0.441, + "2017": 0.443, + "2018": 0.443, + "2019": 0.443, + "2020": 0.439, + "2021": 0.437 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr114", + "Region": "West Darfur", + "1990": 0.309, + "1991": 0.314, + "1992": 0.304, + "1993": 0.312, + "1994": 0.351, + "1995": 0.341, + "1996": 0.348, + "1997": 0.357, + "1998": 0.346, + "1999": 0.379, + "2000": 0.389, + "2001": 0.389, + "2002": 0.386, + "2003": 0.381, + "2004": 0.376, + "2005": 0.375, + "2006": 0.383, + "2007": 0.38, + "2008": 0.38, + "2009": 0.398, + "2010": 0.411, + "2011": 0.416, + "2012": 0.425, + "2013": 0.433, + "2014": 0.444, + "2015": 0.447, + "2016": 0.45, + "2017": 0.452, + "2018": 0.451, + "2019": 0.451, + "2020": 0.447, + "2021": 0.445 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr108", + "Region": "White Nile", + "1990": 0.315, + "1991": 0.321, + "1992": 0.311, + "1993": 0.319, + "1994": 0.36, + "1995": 0.35, + "1996": 0.357, + "1997": 0.366, + "1998": 0.355, + "1999": 0.39, + "2000": 0.4, + "2001": 0.412, + "2002": 0.421, + "2003": 0.427, + "2004": 0.433, + "2005": 0.444, + "2006": 0.464, + "2007": 0.473, + "2008": 0.485, + "2009": 0.491, + "2010": 0.49, + "2011": 0.487, + "2012": 0.488, + "2013": 0.489, + "2014": 0.492, + "2015": 0.496, + "2016": 0.499, + "2017": 0.501, + "2018": 0.501, + "2019": 0.501, + "2020": 0.497, + "2021": 0.495 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "National", + "GDLCODE": "SURt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.674, + "2005": 0.683, + "2006": 0.691, + "2007": 0.701, + "2008": 0.709, + "2009": 0.717, + "2010": 0.723, + "2011": 0.728, + "2012": 0.731, + "2013": 0.734, + "2014": 0.736, + "2015": 0.744, + "2016": 0.747, + "2017": 0.75, + "2018": 0.755, + "2019": 0.755, + "2020": 0.743, + "2021": 0.73 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr105", + "Region": "Brokopondo and Sipaliwini", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.452, + "2005": 0.458, + "2006": 0.464, + "2007": 0.482, + "2008": 0.499, + "2009": 0.515, + "2010": 0.53, + "2011": 0.542, + "2012": 0.553, + "2013": 0.563, + "2014": 0.573, + "2015": 0.587, + "2016": 0.597, + "2017": 0.607, + "2018": 0.619, + "2019": 0.619, + "2020": 0.608, + "2021": 0.597 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr104", + "Region": "Commewijne and Marowijne", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.668, + "2005": 0.677, + "2006": 0.685, + "2007": 0.69, + "2008": 0.693, + "2009": 0.696, + "2010": 0.698, + "2011": 0.703, + "2012": 0.708, + "2013": 0.711, + "2014": 0.714, + "2015": 0.723, + "2016": 0.727, + "2017": 0.731, + "2018": 0.736, + "2019": 0.737, + "2020": 0.725, + "2021": 0.712 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr103", + "Region": "Nickerie, Coronie and Saramacca", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.685, + "2005": 0.694, + "2006": 0.702, + "2007": 0.711, + "2008": 0.718, + "2009": 0.724, + "2010": 0.729, + "2011": 0.733, + "2012": 0.735, + "2013": 0.736, + "2014": 0.737, + "2015": 0.744, + "2016": 0.746, + "2017": 0.747, + "2018": 0.751, + "2019": 0.751, + "2020": 0.74, + "2021": 0.727 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr101", + "Region": "Paramaribo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.716, + "2005": 0.725, + "2006": 0.734, + "2007": 0.741, + "2008": 0.747, + "2009": 0.752, + "2010": 0.756, + "2011": 0.758, + "2012": 0.76, + "2013": 0.761, + "2014": 0.762, + "2015": 0.769, + "2016": 0.77, + "2017": 0.771, + "2018": 0.774, + "2019": 0.775, + "2020": 0.763, + "2021": 0.75 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr102", + "Region": "Wanica and Para", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.683, + "2005": 0.692, + "2006": 0.7, + "2007": 0.709, + "2008": 0.716, + "2009": 0.723, + "2010": 0.728, + "2011": 0.733, + "2012": 0.737, + "2013": 0.74, + "2014": 0.742, + "2015": 0.75, + "2016": 0.753, + "2017": 0.756, + "2018": 0.761, + "2019": 0.762, + "2020": 0.75, + "2021": 0.737 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "National", + "GDLCODE": "SWEt", + "Region": "Total", + "1990": 0.81, + "1991": 0.813, + "1992": 0.82, + "1993": 0.84, + "1994": 0.851, + "1995": 0.86, + "1996": 0.868, + "1997": 0.879, + "1998": 0.894, + "1999": 0.899, + "2000": 0.904, + "2001": 0.907, + "2002": 0.91, + "2003": 0.915, + "2004": 0.9, + "2005": 0.902, + "2006": 0.906, + "2007": 0.908, + "2008": 0.905, + "2009": 0.904, + "2010": 0.91, + "2011": 0.911, + "2012": 0.911, + "2013": 0.932, + "2014": 0.935, + "2015": 0.937, + "2016": 0.939, + "2017": 0.941, + "2018": 0.942, + "2019": 0.947, + "2020": 0.942, + "2021": 0.947 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr107", + "Region": "Mellersta Norrland", + "1990": 0.793, + "1991": 0.796, + "1992": 0.804, + "1993": 0.824, + "1994": 0.835, + "1995": 0.843, + "1996": 0.852, + "1997": 0.862, + "1998": 0.881, + "1999": 0.885, + "2000": 0.892, + "2001": 0.901, + "2002": 0.9, + "2003": 0.901, + "2004": 0.882, + "2005": 0.885, + "2006": 0.887, + "2007": 0.888, + "2008": 0.889, + "2009": 0.887, + "2010": 0.894, + "2011": 0.891, + "2012": 0.893, + "2013": 0.912, + "2014": 0.914, + "2015": 0.916, + "2016": 0.922, + "2017": 0.923, + "2018": 0.928, + "2019": 0.93, + "2020": 0.925, + "2021": 0.93 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr106", + "Region": "Norra Mellansverige", + "1990": 0.793, + "1991": 0.792, + "1992": 0.8, + "1993": 0.819, + "1994": 0.832, + "1995": 0.839, + "1996": 0.848, + "1997": 0.859, + "1998": 0.878, + "1999": 0.884, + "2000": 0.888, + "2001": 0.889, + "2002": 0.892, + "2003": 0.898, + "2004": 0.88, + "2005": 0.881, + "2006": 0.884, + "2007": 0.885, + "2008": 0.881, + "2009": 0.878, + "2010": 0.888, + "2011": 0.889, + "2012": 0.888, + "2013": 0.91, + "2014": 0.913, + "2015": 0.914, + "2016": 0.919, + "2017": 0.922, + "2018": 0.924, + "2019": 0.926, + "2020": 0.921, + "2021": 0.926 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr102", + "Region": "Ostra Mellansverige", + "1990": 0.806, + "1991": 0.808, + "1992": 0.815, + "1993": 0.834, + "1994": 0.846, + "1995": 0.856, + "1996": 0.862, + "1997": 0.875, + "1998": 0.886, + "1999": 0.89, + "2000": 0.895, + "2001": 0.898, + "2002": 0.9, + "2003": 0.907, + "2004": 0.894, + "2005": 0.897, + "2006": 0.901, + "2007": 0.903, + "2008": 0.899, + "2009": 0.896, + "2010": 0.904, + "2011": 0.904, + "2012": 0.905, + "2013": 0.922, + "2014": 0.927, + "2015": 0.927, + "2016": 0.928, + "2017": 0.931, + "2018": 0.932, + "2019": 0.936, + "2020": 0.931, + "2021": 0.936 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr108", + "Region": "Ovre Norrland", + "1990": 0.804, + "1991": 0.809, + "1992": 0.815, + "1993": 0.837, + "1994": 0.848, + "1995": 0.856, + "1996": 0.863, + "1997": 0.876, + "1998": 0.884, + "1999": 0.887, + "2000": 0.893, + "2001": 0.898, + "2002": 0.898, + "2003": 0.904, + "2004": 0.898, + "2005": 0.902, + "2006": 0.908, + "2007": 0.906, + "2008": 0.904, + "2009": 0.9, + "2010": 0.913, + "2011": 0.913, + "2012": 0.913, + "2013": 0.926, + "2014": 0.928, + "2015": 0.927, + "2016": 0.93, + "2017": 0.933, + "2018": 0.935, + "2019": 0.94, + "2020": 0.935, + "2021": 0.94 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr103", + "Region": "Smaland med oarna", + "1990": 0.797, + "1991": 0.8, + "1992": 0.806, + "1993": 0.827, + "1994": 0.838, + "1995": 0.847, + "1996": 0.854, + "1997": 0.866, + "1998": 0.881, + "1999": 0.886, + "2000": 0.89, + "2001": 0.895, + "2002": 0.9, + "2003": 0.905, + "2004": 0.889, + "2005": 0.888, + "2006": 0.892, + "2007": 0.896, + "2008": 0.894, + "2009": 0.89, + "2010": 0.895, + "2011": 0.897, + "2012": 0.897, + "2013": 0.919, + "2014": 0.924, + "2015": 0.925, + "2016": 0.928, + "2017": 0.929, + "2018": 0.931, + "2019": 0.936, + "2020": 0.931, + "2021": 0.936 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr101", + "Region": "Stockholm", + "1990": 0.829, + "1991": 0.833, + "1992": 0.841, + "1993": 0.861, + "1994": 0.873, + "1995": 0.881, + "1996": 0.891, + "1997": 0.903, + "1998": 0.918, + "1999": 0.923, + "2000": 0.929, + "2001": 0.931, + "2002": 0.935, + "2003": 0.939, + "2004": 0.923, + "2005": 0.927, + "2006": 0.928, + "2007": 0.931, + "2008": 0.928, + "2009": 0.931, + "2010": 0.933, + "2011": 0.934, + "2012": 0.935, + "2013": 0.958, + "2014": 0.96, + "2015": 0.962, + "2016": 0.964, + "2017": 0.966, + "2018": 0.967, + "2019": 0.972, + "2020": 0.968, + "2021": 0.972 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr104", + "Region": "Sydsverige", + "1990": 0.808, + "1991": 0.811, + "1992": 0.818, + "1993": 0.837, + "1994": 0.848, + "1995": 0.857, + "1996": 0.864, + "1997": 0.876, + "1998": 0.889, + "1999": 0.894, + "2000": 0.899, + "2001": 0.902, + "2002": 0.905, + "2003": 0.91, + "2004": 0.897, + "2005": 0.898, + "2006": 0.903, + "2007": 0.906, + "2008": 0.901, + "2009": 0.9, + "2010": 0.906, + "2011": 0.907, + "2012": 0.904, + "2013": 0.925, + "2014": 0.927, + "2015": 0.931, + "2016": 0.932, + "2017": 0.935, + "2018": 0.935, + "2019": 0.939, + "2020": 0.934, + "2021": 0.939 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr105", + "Region": "Vastsverige", + "1990": 0.808, + "1991": 0.811, + "1992": 0.817, + "1993": 0.838, + "1994": 0.849, + "1995": 0.856, + "1996": 0.865, + "1997": 0.875, + "1998": 0.892, + "1999": 0.897, + "2000": 0.903, + "2001": 0.905, + "2002": 0.909, + "2003": 0.914, + "2004": 0.896, + "2005": 0.897, + "2006": 0.903, + "2007": 0.905, + "2008": 0.901, + "2009": 0.899, + "2010": 0.905, + "2011": 0.907, + "2012": 0.907, + "2013": 0.928, + "2014": 0.933, + "2015": 0.936, + "2016": 0.937, + "2017": 0.94, + "2018": 0.941, + "2019": 0.944, + "2020": 0.939, + "2021": 0.944 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "National", + "GDLCODE": "CHEt", + "Region": "Total", + "1990": 0.851, + "1991": 0.853, + "1992": 0.856, + "1993": 0.861, + "1994": 0.863, + "1995": 0.865, + "1996": 0.87, + "1997": 0.875, + "1998": 0.88, + "1999": 0.884, + "2000": 0.887, + "2001": 0.89, + "2002": 0.89, + "2003": 0.895, + "2004": 0.901, + "2005": 0.905, + "2006": 0.914, + "2007": 0.92, + "2008": 0.926, + "2009": 0.936, + "2010": 0.942, + "2011": 0.943, + "2012": 0.945, + "2013": 0.948, + "2014": 0.952, + "2015": 0.954, + "2016": 0.956, + "2017": 0.957, + "2018": 0.959, + "2019": 0.962, + "2020": 0.956, + "2021": 0.962 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr106", + "Region": "Central Switzerland", + "1990": 0.841, + "1991": 0.843, + "1992": 0.845, + "1993": 0.85, + "1994": 0.853, + "1995": 0.856, + "1996": 0.86, + "1997": 0.864, + "1998": 0.869, + "1999": 0.873, + "2000": 0.876, + "2001": 0.879, + "2002": 0.879, + "2003": 0.884, + "2004": 0.887, + "2005": 0.891, + "2006": 0.903, + "2007": 0.908, + "2008": 0.913, + "2009": 0.924, + "2010": 0.932, + "2011": 0.932, + "2012": 0.936, + "2013": 0.94, + "2014": 0.943, + "2015": 0.944, + "2016": 0.949, + "2017": 0.95, + "2018": 0.95, + "2019": 0.953, + "2020": 0.946, + "2021": 0.952 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr105", + "Region": "Eastern Switzerland", + "1990": 0.83, + "1991": 0.833, + "1992": 0.833, + "1993": 0.839, + "1994": 0.841, + "1995": 0.842, + "1996": 0.847, + "1997": 0.851, + "1998": 0.857, + "1999": 0.861, + "2000": 0.864, + "2001": 0.867, + "2002": 0.868, + "2003": 0.871, + "2004": 0.877, + "2005": 0.882, + "2006": 0.893, + "2007": 0.896, + "2008": 0.902, + "2009": 0.913, + "2010": 0.919, + "2011": 0.92, + "2012": 0.921, + "2013": 0.926, + "2014": 0.929, + "2015": 0.932, + "2016": 0.934, + "2017": 0.935, + "2018": 0.937, + "2019": 0.939, + "2020": 0.933, + "2021": 0.939 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr102", + "Region": "Espace Mittelland", + "1990": 0.843, + "1991": 0.845, + "1992": 0.848, + "1993": 0.853, + "1994": 0.854, + "1995": 0.856, + "1996": 0.861, + "1997": 0.865, + "1998": 0.871, + "1999": 0.874, + "2000": 0.878, + "2001": 0.882, + "2002": 0.88, + "2003": 0.885, + "2004": 0.89, + "2005": 0.896, + "2006": 0.904, + "2007": 0.91, + "2008": 0.916, + "2009": 0.924, + "2010": 0.931, + "2011": 0.931, + "2012": 0.934, + "2013": 0.937, + "2014": 0.942, + "2015": 0.944, + "2016": 0.944, + "2017": 0.945, + "2018": 0.946, + "2019": 0.95, + "2020": 0.944, + "2021": 0.95 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr101", + "Region": "Lake Geneva region", + "1990": 0.856, + "1991": 0.859, + "1992": 0.861, + "1993": 0.865, + "1994": 0.868, + "1995": 0.871, + "1996": 0.875, + "1997": 0.881, + "1998": 0.886, + "1999": 0.89, + "2000": 0.893, + "2001": 0.897, + "2002": 0.896, + "2003": 0.901, + "2004": 0.907, + "2005": 0.912, + "2006": 0.92, + "2007": 0.927, + "2008": 0.931, + "2009": 0.941, + "2010": 0.948, + "2011": 0.95, + "2012": 0.951, + "2013": 0.952, + "2014": 0.957, + "2015": 0.957, + "2016": 0.958, + "2017": 0.959, + "2018": 0.962, + "2019": 0.966, + "2020": 0.96, + "2021": 0.966 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr103", + "Region": "Northwestern Switzerland", + "1990": 0.846, + "1991": 0.849, + "1992": 0.851, + "1993": 0.855, + "1994": 0.859, + "1995": 0.861, + "1996": 0.866, + "1997": 0.871, + "1998": 0.876, + "1999": 0.878, + "2000": 0.883, + "2001": 0.885, + "2002": 0.885, + "2003": 0.891, + "2004": 0.897, + "2005": 0.9, + "2006": 0.91, + "2007": 0.916, + "2008": 0.922, + "2009": 0.931, + "2010": 0.937, + "2011": 0.937, + "2012": 0.941, + "2013": 0.945, + "2014": 0.948, + "2015": 0.948, + "2016": 0.951, + "2017": 0.952, + "2018": 0.954, + "2019": 0.957, + "2020": 0.951, + "2021": 0.957 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr107", + "Region": "Ticino", + "1990": 0.843, + "1991": 0.846, + "1992": 0.847, + "1993": 0.853, + "1994": 0.856, + "1995": 0.858, + "1996": 0.861, + "1997": 0.866, + "1998": 0.873, + "1999": 0.877, + "2000": 0.881, + "2001": 0.883, + "2002": 0.885, + "2003": 0.891, + "2004": 0.896, + "2005": 0.9, + "2006": 0.911, + "2007": 0.918, + "2008": 0.924, + "2009": 0.933, + "2010": 0.935, + "2011": 0.939, + "2012": 0.941, + "2013": 0.945, + "2014": 0.953, + "2015": 0.953, + "2016": 0.957, + "2017": 0.955, + "2018": 0.961, + "2019": 0.961, + "2020": 0.955, + "2021": 0.961 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr104", + "Region": "Zurich", + "1990": 0.878, + "1991": 0.881, + "1992": 0.885, + "1993": 0.89, + "1994": 0.891, + "1995": 0.893, + "1996": 0.897, + "1997": 0.903, + "1998": 0.908, + "1999": 0.911, + "2000": 0.912, + "2001": 0.916, + "2002": 0.916, + "2003": 0.921, + "2004": 0.926, + "2005": 0.926, + "2006": 0.937, + "2007": 0.944, + "2008": 0.952, + "2009": 0.961, + "2010": 0.963, + "2011": 0.967, + "2012": 0.97, + "2013": 0.973, + "2014": 0.977, + "2015": 0.978, + "2016": 0.982, + "2017": 0.982, + "2018": 0.985, + "2019": 0.987, + "2020": 0.984, + "2021": 0.989 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "National", + "GDLCODE": "SYRt", + "Region": "Total", + "1990": 0.562, + "1991": 0.567, + "1992": 0.573, + "1993": 0.574, + "1994": 0.577, + "1995": 0.579, + "1996": 0.582, + "1997": 0.585, + "1998": 0.587, + "1999": 0.586, + "2000": 0.587, + "2001": 0.596, + "2002": 0.603, + "2003": 0.615, + "2004": 0.627, + "2005": 0.64, + "2006": 0.65, + "2007": 0.659, + "2008": 0.653, + "2009": 0.659, + "2010": 0.66, + "2011": 0.691, + "2012": 0.65, + "2013": 0.573, + "2014": 0.553, + "2015": 0.556, + "2016": 0.56, + "2017": 0.572, + "2018": 0.58, + "2019": 0.584, + "2020": 0.577, + "2021": 0.577 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr111", + "Region": "Al Hasaka", + "1990": 0.521, + "1991": 0.526, + "1992": 0.53, + "1993": 0.531, + "1994": 0.534, + "1995": 0.535, + "1996": 0.538, + "1997": 0.541, + "1998": 0.543, + "1999": 0.542, + "2000": 0.543, + "2001": 0.551, + "2002": 0.558, + "2003": 0.568, + "2004": 0.579, + "2005": 0.59, + "2006": 0.599, + "2007": 0.606, + "2008": 0.602, + "2009": 0.607, + "2010": 0.608, + "2011": 0.639, + "2012": 0.601, + "2013": 0.524, + "2014": 0.507, + "2015": 0.511, + "2016": 0.515, + "2017": 0.526, + "2018": 0.533, + "2019": 0.537, + "2020": 0.53, + "2021": 0.53 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr106", + "Region": "Al Latakia", + "1990": 0.604, + "1991": 0.609, + "1992": 0.615, + "1993": 0.616, + "1994": 0.62, + "1995": 0.622, + "1996": 0.625, + "1997": 0.628, + "1998": 0.63, + "1999": 0.63, + "2000": 0.631, + "2001": 0.64, + "2002": 0.648, + "2003": 0.66, + "2004": 0.674, + "2005": 0.687, + "2006": 0.698, + "2007": 0.707, + "2008": 0.701, + "2009": 0.708, + "2010": 0.708, + "2011": 0.742, + "2012": 0.698, + "2013": 0.615, + "2014": 0.593, + "2015": 0.597, + "2016": 0.601, + "2017": 0.614, + "2018": 0.623, + "2019": 0.627, + "2020": 0.62, + "2021": 0.62 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr114", + "Region": "Al Qunitara - Quneitra", + "1990": 0.544, + "1991": 0.55, + "1992": 0.555, + "1993": 0.556, + "1994": 0.559, + "1995": 0.561, + "1996": 0.564, + "1997": 0.567, + "1998": 0.568, + "1999": 0.569, + "2000": 0.571, + "2001": 0.582, + "2002": 0.59, + "2003": 0.603, + "2004": 0.616, + "2005": 0.629, + "2006": 0.64, + "2007": 0.65, + "2008": 0.644, + "2009": 0.651, + "2010": 0.652, + "2011": 0.681, + "2012": 0.613, + "2013": 0.524, + "2014": 0.503, + "2015": 0.516, + "2016": 0.523, + "2017": 0.545, + "2018": 0.559, + "2019": 0.569, + "2020": 0.564, + "2021": 0.563 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr109", + "Region": "Al Raka-Raqqa", + "1990": 0.513, + "1991": 0.518, + "1992": 0.522, + "1993": 0.523, + "1994": 0.526, + "1995": 0.527, + "1996": 0.53, + "1997": 0.533, + "1998": 0.535, + "1999": 0.534, + "2000": 0.535, + "2001": 0.542, + "2002": 0.549, + "2003": 0.559, + "2004": 0.57, + "2005": 0.581, + "2006": 0.589, + "2007": 0.596, + "2008": 0.592, + "2009": 0.597, + "2010": 0.598, + "2011": 0.628, + "2012": 0.592, + "2013": 0.516, + "2014": 0.499, + "2015": 0.503, + "2016": 0.507, + "2017": 0.518, + "2018": 0.525, + "2019": 0.528, + "2020": 0.522, + "2021": 0.521 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr112", + "Region": "Al Swida - Sweida", + "1990": 0.61, + "1991": 0.615, + "1992": 0.621, + "1993": 0.622, + "1994": 0.626, + "1995": 0.628, + "1996": 0.631, + "1997": 0.635, + "1998": 0.637, + "1999": 0.636, + "2000": 0.637, + "2001": 0.646, + "2002": 0.654, + "2003": 0.667, + "2004": 0.68, + "2005": 0.694, + "2006": 0.704, + "2007": 0.714, + "2008": 0.708, + "2009": 0.715, + "2010": 0.715, + "2011": 0.749, + "2012": 0.705, + "2013": 0.621, + "2014": 0.599, + "2015": 0.603, + "2016": 0.607, + "2017": 0.621, + "2018": 0.629, + "2019": 0.633, + "2020": 0.626, + "2021": 0.626 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr101", + "Region": "Damascus", + "1990": 0.585, + "1991": 0.591, + "1992": 0.598, + "1993": 0.599, + "1994": 0.602, + "1995": 0.606, + "1996": 0.608, + "1997": 0.611, + "1998": 0.613, + "1999": 0.613, + "2000": 0.616, + "2001": 0.628, + "2002": 0.638, + "2003": 0.652, + "2004": 0.666, + "2005": 0.681, + "2006": 0.694, + "2007": 0.706, + "2008": 0.698, + "2009": 0.707, + "2010": 0.707, + "2011": 0.737, + "2012": 0.662, + "2013": 0.572, + "2014": 0.548, + "2015": 0.56, + "2016": 0.568, + "2017": 0.592, + "2018": 0.607, + "2019": 0.618, + "2020": 0.613, + "2021": 0.612 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr113", + "Region": "Daraa", + "1990": 0.571, + "1991": 0.576, + "1992": 0.581, + "1993": 0.582, + "1994": 0.586, + "1995": 0.588, + "1996": 0.591, + "1997": 0.594, + "1998": 0.596, + "1999": 0.595, + "2000": 0.596, + "2001": 0.605, + "2002": 0.612, + "2003": 0.624, + "2004": 0.637, + "2005": 0.65, + "2006": 0.66, + "2007": 0.669, + "2008": 0.663, + "2009": 0.669, + "2010": 0.67, + "2011": 0.701, + "2012": 0.66, + "2013": 0.582, + "2014": 0.561, + "2015": 0.564, + "2016": 0.568, + "2017": 0.581, + "2018": 0.589, + "2019": 0.593, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr110", + "Region": "Der El Zour - Deir Ezzor", + "1990": 0.541, + "1991": 0.546, + "1992": 0.551, + "1993": 0.552, + "1994": 0.555, + "1995": 0.556, + "1996": 0.559, + "1997": 0.562, + "1998": 0.564, + "1999": 0.563, + "2000": 0.564, + "2001": 0.572, + "2002": 0.579, + "2003": 0.59, + "2004": 0.602, + "2005": 0.614, + "2006": 0.622, + "2007": 0.63, + "2008": 0.626, + "2009": 0.631, + "2010": 0.632, + "2011": 0.663, + "2012": 0.624, + "2013": 0.547, + "2014": 0.529, + "2015": 0.532, + "2016": 0.536, + "2017": 0.548, + "2018": 0.555, + "2019": 0.559, + "2020": 0.553, + "2021": 0.552 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr107", + "Region": "Edlab Idleb", + "1990": 0.538, + "1991": 0.542, + "1992": 0.547, + "1993": 0.548, + "1994": 0.551, + "1995": 0.553, + "1996": 0.556, + "1997": 0.559, + "1998": 0.56, + "1999": 0.56, + "2000": 0.561, + "2001": 0.569, + "2002": 0.576, + "2003": 0.587, + "2004": 0.599, + "2005": 0.61, + "2006": 0.619, + "2007": 0.627, + "2008": 0.623, + "2009": 0.628, + "2010": 0.629, + "2011": 0.659, + "2012": 0.62, + "2013": 0.545, + "2014": 0.526, + "2015": 0.529, + "2016": 0.533, + "2017": 0.545, + "2018": 0.552, + "2019": 0.556, + "2020": 0.55, + "2021": 0.55 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr108", + "Region": "Halab - Aleppo", + "1990": 0.533, + "1991": 0.538, + "1992": 0.543, + "1993": 0.544, + "1994": 0.547, + "1995": 0.549, + "1996": 0.552, + "1997": 0.555, + "1998": 0.556, + "1999": 0.556, + "2000": 0.557, + "2001": 0.565, + "2002": 0.572, + "2003": 0.583, + "2004": 0.595, + "2005": 0.607, + "2006": 0.616, + "2007": 0.624, + "2008": 0.619, + "2009": 0.625, + "2010": 0.625, + "2011": 0.655, + "2012": 0.616, + "2013": 0.543, + "2014": 0.524, + "2015": 0.527, + "2016": 0.531, + "2017": 0.542, + "2018": 0.549, + "2019": 0.553, + "2020": 0.547, + "2021": 0.547 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr104", + "Region": "Hamaa", + "1990": 0.57, + "1991": 0.575, + "1992": 0.58, + "1993": 0.581, + "1994": 0.585, + "1995": 0.586, + "1996": 0.59, + "1997": 0.593, + "1998": 0.595, + "1999": 0.594, + "2000": 0.595, + "2001": 0.603, + "2002": 0.611, + "2003": 0.623, + "2004": 0.635, + "2005": 0.648, + "2006": 0.658, + "2007": 0.666, + "2008": 0.661, + "2009": 0.667, + "2010": 0.668, + "2011": 0.699, + "2012": 0.658, + "2013": 0.579, + "2014": 0.559, + "2015": 0.562, + "2016": 0.567, + "2017": 0.579, + "2018": 0.587, + "2019": 0.591, + "2020": 0.584, + "2021": 0.584 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr103", + "Region": "Homs", + "1990": 0.582, + "1991": 0.587, + "1992": 0.593, + "1993": 0.594, + "1994": 0.598, + "1995": 0.599, + "1996": 0.603, + "1997": 0.606, + "1998": 0.608, + "1999": 0.607, + "2000": 0.608, + "2001": 0.617, + "2002": 0.625, + "2003": 0.637, + "2004": 0.65, + "2005": 0.663, + "2006": 0.673, + "2007": 0.682, + "2008": 0.676, + "2009": 0.683, + "2010": 0.683, + "2011": 0.715, + "2012": 0.673, + "2013": 0.594, + "2014": 0.573, + "2015": 0.576, + "2016": 0.58, + "2017": 0.593, + "2018": 0.601, + "2019": 0.605, + "2020": 0.598, + "2021": 0.598 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr102", + "Region": "Rural Damascus", + "1990": 0.574, + "1991": 0.579, + "1992": 0.585, + "1993": 0.586, + "1994": 0.59, + "1995": 0.592, + "1996": 0.595, + "1997": 0.598, + "1998": 0.6, + "1999": 0.599, + "2000": 0.6, + "2001": 0.609, + "2002": 0.617, + "2003": 0.629, + "2004": 0.642, + "2005": 0.655, + "2006": 0.665, + "2007": 0.674, + "2008": 0.668, + "2009": 0.675, + "2010": 0.675, + "2011": 0.707, + "2012": 0.665, + "2013": 0.587, + "2014": 0.566, + "2015": 0.569, + "2016": 0.573, + "2017": 0.586, + "2018": 0.593, + "2019": 0.598, + "2020": 0.591, + "2021": 0.59 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr105", + "Region": "Tartous", + "1990": 0.601, + "1991": 0.606, + "1992": 0.611, + "1993": 0.612, + "1994": 0.616, + "1995": 0.618, + "1996": 0.621, + "1997": 0.625, + "1998": 0.626, + "1999": 0.626, + "2000": 0.627, + "2001": 0.636, + "2002": 0.644, + "2003": 0.656, + "2004": 0.669, + "2005": 0.683, + "2006": 0.693, + "2007": 0.702, + "2008": 0.697, + "2009": 0.703, + "2010": 0.704, + "2011": 0.737, + "2012": 0.694, + "2013": 0.611, + "2014": 0.59, + "2015": 0.593, + "2016": 0.598, + "2017": 0.611, + "2018": 0.619, + "2019": 0.623, + "2020": 0.616, + "2021": 0.615 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "National", + "GDLCODE": "TJKt", + "Region": "Total", + "1990": 0.628, + "1991": 0.622, + "1992": 0.57, + "1993": 0.542, + "1994": 0.547, + "1995": 0.547, + "1996": 0.531, + "1997": 0.54, + "1998": 0.547, + "1999": 0.553, + "2000": 0.56, + "2001": 0.569, + "2002": 0.579, + "2003": 0.594, + "2004": 0.606, + "2005": 0.612, + "2006": 0.622, + "2007": 0.625, + "2008": 0.639, + "2009": 0.633, + "2010": 0.636, + "2011": 0.635, + "2012": 0.643, + "2013": 0.656, + "2014": 0.656, + "2015": 0.657, + "2016": 0.66, + "2017": 0.665, + "2018": 0.671, + "2019": 0.676, + "2020": 0.664, + "2021": 0.685 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr104", + "Region": "DRS", + "1990": 0.606, + "1991": 0.6, + "1992": 0.55, + "1993": 0.522, + "1994": 0.526, + "1995": 0.527, + "1996": 0.51, + "1997": 0.519, + "1998": 0.526, + "1999": 0.532, + "2000": 0.539, + "2001": 0.548, + "2002": 0.558, + "2003": 0.573, + "2004": 0.586, + "2005": 0.592, + "2006": 0.604, + "2007": 0.609, + "2008": 0.624, + "2009": 0.62, + "2010": 0.624, + "2011": 0.625, + "2012": 0.635, + "2013": 0.648, + "2014": 0.648, + "2015": 0.65, + "2016": 0.653, + "2017": 0.659, + "2018": 0.664, + "2019": 0.669, + "2020": 0.658, + "2021": 0.678 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr101", + "Region": "Duchanbe", + "1990": 0.734, + "1991": 0.728, + "1992": 0.671, + "1993": 0.64, + "1994": 0.646, + "1995": 0.648, + "1996": 0.631, + "1997": 0.641, + "1998": 0.649, + "1999": 0.656, + "2000": 0.664, + "2001": 0.674, + "2002": 0.685, + "2003": 0.701, + "2004": 0.714, + "2005": 0.722, + "2006": 0.728, + "2007": 0.726, + "2008": 0.736, + "2009": 0.725, + "2010": 0.723, + "2011": 0.718, + "2012": 0.722, + "2013": 0.733, + "2014": 0.731, + "2015": 0.73, + "2016": 0.732, + "2017": 0.735, + "2018": 0.741, + "2019": 0.747, + "2020": 0.734, + "2021": 0.756 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr105", + "Region": "GBAO", + "1990": 0.621, + "1991": 0.612, + "1992": 0.559, + "1993": 0.528, + "1994": 0.529, + "1995": 0.527, + "1996": 0.508, + "1997": 0.516, + "1998": 0.522, + "1999": 0.527, + "2000": 0.533, + "2001": 0.546, + "2002": 0.56, + "2003": 0.579, + "2004": 0.595, + "2005": 0.605, + "2006": 0.618, + "2007": 0.624, + "2008": 0.64, + "2009": 0.636, + "2010": 0.642, + "2011": 0.644, + "2012": 0.655, + "2013": 0.667, + "2014": 0.666, + "2015": 0.666, + "2016": 0.668, + "2017": 0.673, + "2018": 0.679, + "2019": 0.685, + "2020": 0.673, + "2021": 0.693 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr102", + "Region": "Khatlon", + "1990": 0.611, + "1991": 0.605, + "1992": 0.554, + "1993": 0.526, + "1994": 0.53, + "1995": 0.53, + "1996": 0.514, + "1997": 0.522, + "1998": 0.53, + "1999": 0.535, + "2000": 0.543, + "2001": 0.551, + "2002": 0.56, + "2003": 0.574, + "2004": 0.586, + "2005": 0.591, + "2006": 0.601, + "2007": 0.603, + "2008": 0.616, + "2009": 0.609, + "2010": 0.611, + "2011": 0.609, + "2012": 0.617, + "2013": 0.631, + "2014": 0.632, + "2015": 0.635, + "2016": 0.639, + "2017": 0.646, + "2018": 0.651, + "2019": 0.657, + "2020": 0.645, + "2021": 0.665 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr103", + "Region": "Sughd (formerly Leninabad)", + "1990": 0.637, + "1991": 0.632, + "1992": 0.58, + "1993": 0.552, + "1994": 0.556, + "1995": 0.557, + "1996": 0.541, + "1997": 0.549, + "1998": 0.557, + "1999": 0.563, + "2000": 0.57, + "2001": 0.578, + "2002": 0.585, + "2003": 0.598, + "2004": 0.608, + "2005": 0.613, + "2006": 0.624, + "2007": 0.628, + "2008": 0.643, + "2009": 0.638, + "2010": 0.642, + "2011": 0.642, + "2012": 0.652, + "2013": 0.664, + "2014": 0.663, + "2015": 0.663, + "2016": 0.665, + "2017": 0.669, + "2018": 0.675, + "2019": 0.68, + "2020": 0.668, + "2021": 0.689 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "National", + "GDLCODE": "TZAt", + "Region": "Total", + "1990": 0.371, + "1991": 0.371, + "1992": 0.369, + "1993": 0.369, + "1994": 0.369, + "1995": 0.37, + "1996": 0.372, + "1997": 0.373, + "1998": 0.38, + "1999": 0.39, + "2000": 0.398, + "2001": 0.406, + "2002": 0.416, + "2003": 0.426, + "2004": 0.436, + "2005": 0.446, + "2006": 0.456, + "2007": 0.465, + "2008": 0.473, + "2009": 0.482, + "2010": 0.493, + "2011": 0.499, + "2012": 0.504, + "2013": 0.51, + "2014": 0.515, + "2015": 0.52, + "2016": 0.524, + "2017": 0.528, + "2018": 0.538, + "2019": 0.548, + "2020": 0.548, + "2021": 0.549 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr202", + "Region": " Arusha, Manyara", + "1990": 0.403, + "1991": 0.403, + "1992": 0.401, + "1993": 0.393, + "1994": 0.385, + "1995": 0.379, + "1996": 0.374, + "1997": 0.379, + "1998": 0.389, + "1999": 0.401, + "2000": 0.411, + "2001": 0.422, + "2002": 0.433, + "2003": 0.446, + "2004": 0.458, + "2005": 0.468, + "2006": 0.479, + "2007": 0.488, + "2008": 0.498, + "2009": 0.507, + "2010": 0.519, + "2011": 0.524, + "2012": 0.527, + "2013": 0.531, + "2014": 0.536, + "2015": 0.539, + "2016": 0.543, + "2017": 0.547, + "2018": 0.557, + "2019": 0.568, + "2020": 0.568, + "2021": 0.568 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr207", + "Region": " Dar Es Salam", + "1990": 0.431, + "1991": 0.431, + "1992": 0.429, + "1993": 0.436, + "1994": 0.442, + "1995": 0.45, + "1996": 0.458, + "1997": 0.463, + "1998": 0.474, + "1999": 0.488, + "2000": 0.494, + "2001": 0.501, + "2002": 0.509, + "2003": 0.519, + "2004": 0.528, + "2005": 0.537, + "2006": 0.546, + "2007": 0.554, + "2008": 0.562, + "2009": 0.571, + "2010": 0.581, + "2011": 0.59, + "2012": 0.597, + "2013": 0.605, + "2014": 0.613, + "2015": 0.62, + "2016": 0.625, + "2017": 0.63, + "2018": 0.641, + "2019": 0.654, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr201", + "Region": " Dodoma", + "1990": 0.339, + "1991": 0.339, + "1992": 0.337, + "1993": 0.34, + "1994": 0.341, + "1995": 0.345, + "1996": 0.348, + "1997": 0.346, + "1998": 0.349, + "1999": 0.354, + "2000": 0.365, + "2001": 0.377, + "2002": 0.389, + "2003": 0.403, + "2004": 0.415, + "2005": 0.42, + "2006": 0.426, + "2007": 0.43, + "2008": 0.434, + "2009": 0.438, + "2010": 0.443, + "2011": 0.45, + "2012": 0.454, + "2013": 0.46, + "2014": 0.465, + "2015": 0.47, + "2016": 0.474, + "2017": 0.477, + "2018": 0.486, + "2019": 0.496, + "2020": 0.496, + "2021": 0.497 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr211", + "Region": " Iringa, Njombe", + "1990": 0.371, + "1991": 0.37, + "1992": 0.368, + "1993": 0.366, + "1994": 0.362, + "1995": 0.36, + "1996": 0.358, + "1997": 0.369, + "1998": 0.386, + "1999": 0.406, + "2000": 0.411, + "2001": 0.416, + "2002": 0.423, + "2003": 0.43, + "2004": 0.437, + "2005": 0.448, + "2006": 0.46, + "2007": 0.469, + "2008": 0.479, + "2009": 0.49, + "2010": 0.502, + "2011": 0.512, + "2012": 0.521, + "2013": 0.53, + "2014": 0.539, + "2015": 0.547, + "2016": 0.551, + "2017": 0.554, + "2018": 0.565, + "2019": 0.577, + "2020": 0.577, + "2021": 0.577 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr218", + "Region": " Kagera", + "1990": 0.362, + "1991": 0.362, + "1992": 0.36, + "1993": 0.359, + "1994": 0.357, + "1995": 0.358, + "1996": 0.358, + "1997": 0.352, + "1998": 0.351, + "1999": 0.352, + "2000": 0.365, + "2001": 0.377, + "2002": 0.391, + "2003": 0.406, + "2004": 0.42, + "2005": 0.429, + "2006": 0.439, + "2007": 0.448, + "2008": 0.456, + "2009": 0.465, + "2010": 0.475, + "2011": 0.479, + "2012": 0.482, + "2013": 0.486, + "2014": 0.49, + "2015": 0.493, + "2016": 0.497, + "2017": 0.5, + "2018": 0.51, + "2019": 0.52, + "2020": 0.52, + "2021": 0.521 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr216", + "Region": " Kigoma", + "1990": 0.339, + "1991": 0.339, + "1992": 0.337, + "1993": 0.343, + "1994": 0.348, + "1995": 0.354, + "1996": 0.361, + "1997": 0.365, + "1998": 0.374, + "1999": 0.386, + "2000": 0.391, + "2001": 0.397, + "2002": 0.404, + "2003": 0.412, + "2004": 0.42, + "2005": 0.428, + "2006": 0.436, + "2007": 0.443, + "2008": 0.449, + "2009": 0.456, + "2010": 0.465, + "2011": 0.471, + "2012": 0.476, + "2013": 0.482, + "2014": 0.488, + "2015": 0.492, + "2016": 0.496, + "2017": 0.499, + "2018": 0.509, + "2019": 0.519, + "2020": 0.519, + "2021": 0.52 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr203", + "Region": " Kilimanjaro", + "1990": 0.466, + "1991": 0.466, + "1992": 0.464, + "1993": 0.462, + "1994": 0.46, + "1995": 0.46, + "1996": 0.46, + "1997": 0.468, + "1998": 0.483, + "1999": 0.501, + "2000": 0.502, + "2001": 0.503, + "2002": 0.506, + "2003": 0.51, + "2004": 0.513, + "2005": 0.526, + "2006": 0.54, + "2007": 0.552, + "2008": 0.563, + "2009": 0.576, + "2010": 0.59, + "2011": 0.595, + "2012": 0.598, + "2013": 0.601, + "2014": 0.605, + "2015": 0.607, + "2016": 0.611, + "2017": 0.615, + "2018": 0.627, + "2019": 0.639, + "2020": 0.64, + "2021": 0.64 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr208", + "Region": " Lindi", + "1990": 0.333, + "1991": 0.333, + "1992": 0.331, + "1993": 0.336, + "1994": 0.339, + "1995": 0.343, + "1996": 0.347, + "1997": 0.342, + "1998": 0.342, + "1999": 0.344, + "2000": 0.358, + "2001": 0.371, + "2002": 0.385, + "2003": 0.399, + "2004": 0.413, + "2005": 0.415, + "2006": 0.418, + "2007": 0.418, + "2008": 0.419, + "2009": 0.42, + "2010": 0.422, + "2011": 0.435, + "2012": 0.446, + "2013": 0.458, + "2014": 0.47, + "2015": 0.482, + "2016": 0.485, + "2017": 0.489, + "2018": 0.498, + "2019": 0.508, + "2020": 0.508, + "2021": 0.509 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr220", + "Region": " Mara", + "1990": 0.351, + "1991": 0.351, + "1992": 0.349, + "1993": 0.354, + "1994": 0.358, + "1995": 0.363, + "1996": 0.368, + "1997": 0.378, + "1998": 0.393, + "1999": 0.41, + "2000": 0.41, + "2001": 0.41, + "2002": 0.412, + "2003": 0.415, + "2004": 0.417, + "2005": 0.425, + "2006": 0.433, + "2007": 0.44, + "2008": 0.446, + "2009": 0.454, + "2010": 0.463, + "2011": 0.473, + "2012": 0.483, + "2013": 0.493, + "2014": 0.503, + "2015": 0.512, + "2016": 0.516, + "2017": 0.52, + "2018": 0.53, + "2019": 0.54, + "2020": 0.54, + "2021": 0.541 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr212", + "Region": " Mbeya", + "1990": 0.388, + "1991": 0.388, + "1992": 0.385, + "1993": 0.382, + "1994": 0.378, + "1995": 0.375, + "1996": 0.373, + "1997": 0.384, + "1998": 0.402, + "1999": 0.422, + "2000": 0.416, + "2001": 0.411, + "2002": 0.408, + "2003": 0.406, + "2004": 0.404, + "2005": 0.418, + "2006": 0.433, + "2007": 0.446, + "2008": 0.459, + "2009": 0.472, + "2010": 0.488, + "2011": 0.494, + "2012": 0.499, + "2013": 0.504, + "2014": 0.509, + "2015": 0.514, + "2016": 0.518, + "2017": 0.522, + "2018": 0.532, + "2019": 0.542, + "2020": 0.542, + "2021": 0.543 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr205", + "Region": " Morogoro", + "1990": 0.355, + "1991": 0.355, + "1992": 0.353, + "1993": 0.35, + "1994": 0.345, + "1995": 0.343, + "1996": 0.342, + "1997": 0.346, + "1998": 0.356, + "1999": 0.368, + "2000": 0.382, + "2001": 0.395, + "2002": 0.411, + "2003": 0.427, + "2004": 0.442, + "2005": 0.451, + "2006": 0.461, + "2007": 0.469, + "2008": 0.477, + "2009": 0.485, + "2010": 0.496, + "2011": 0.501, + "2012": 0.505, + "2013": 0.51, + "2014": 0.514, + "2015": 0.518, + "2016": 0.522, + "2017": 0.525, + "2018": 0.535, + "2019": 0.546, + "2020": 0.546, + "2021": 0.546 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr209", + "Region": " Mtwara", + "1990": 0.33, + "1991": 0.33, + "1992": 0.328, + "1993": 0.327, + "1994": 0.325, + "1995": 0.324, + "1996": 0.325, + "1997": 0.328, + "1998": 0.336, + "1999": 0.347, + "2000": 0.36, + "2001": 0.374, + "2002": 0.388, + "2003": 0.404, + "2004": 0.418, + "2005": 0.427, + "2006": 0.436, + "2007": 0.443, + "2008": 0.45, + "2009": 0.458, + "2010": 0.468, + "2011": 0.471, + "2012": 0.473, + "2013": 0.476, + "2014": 0.479, + "2015": 0.48, + "2016": 0.484, + "2017": 0.487, + "2018": 0.497, + "2019": 0.507, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr219", + "Region": " Mwanza, Geita", + "1990": 0.369, + "1991": 0.368, + "1992": 0.366, + "1993": 0.364, + "1994": 0.362, + "1995": 0.361, + "1996": 0.361, + "1997": 0.361, + "1998": 0.366, + "1999": 0.372, + "2000": 0.386, + "2001": 0.398, + "2002": 0.412, + "2003": 0.427, + "2004": 0.44, + "2005": 0.447, + "2006": 0.454, + "2007": 0.46, + "2008": 0.465, + "2009": 0.471, + "2010": 0.479, + "2011": 0.483, + "2012": 0.486, + "2013": 0.489, + "2014": 0.493, + "2015": 0.496, + "2016": 0.499, + "2017": 0.503, + "2018": 0.513, + "2019": 0.523, + "2020": 0.523, + "2021": 0.523 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr224", + "Region": " Pemba North", + "1990": 0.345, + "1991": 0.345, + "1992": 0.342, + "1993": 0.353, + "1994": 0.362, + "1995": 0.371, + "1996": 0.381, + "1997": 0.402, + "1998": 0.429, + "1999": 0.458, + "2000": 0.448, + "2001": 0.44, + "2002": 0.434, + "2003": 0.429, + "2004": 0.423, + "2005": 0.435, + "2006": 0.448, + "2007": 0.459, + "2008": 0.47, + "2009": 0.482, + "2010": 0.496, + "2011": 0.505, + "2012": 0.513, + "2013": 0.522, + "2014": 0.53, + "2015": 0.537, + "2016": 0.541, + "2017": 0.544, + "2018": 0.554, + "2019": 0.566, + "2020": 0.566, + "2021": 0.566 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr225", + "Region": " Pemba South", + "1990": 0.364, + "1991": 0.364, + "1992": 0.361, + "1993": 0.372, + "1994": 0.381, + "1995": 0.391, + "1996": 0.4, + "1997": 0.389, + "1998": 0.384, + "1999": 0.38, + "2000": 0.395, + "2001": 0.41, + "2002": 0.427, + "2003": 0.445, + "2004": 0.463, + "2005": 0.475, + "2006": 0.488, + "2007": 0.5, + "2008": 0.511, + "2009": 0.523, + "2010": 0.537, + "2011": 0.545, + "2012": 0.551, + "2013": 0.558, + "2014": 0.566, + "2015": 0.572, + "2016": 0.575, + "2017": 0.579, + "2018": 0.59, + "2019": 0.602, + "2020": 0.602, + "2021": 0.603 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr206", + "Region": " Pwani", + "1990": 0.337, + "1991": 0.336, + "1992": 0.335, + "1993": 0.343, + "1994": 0.35, + "1995": 0.358, + "1996": 0.366, + "1997": 0.353, + "1998": 0.344, + "1999": 0.335, + "2000": 0.353, + "2001": 0.37, + "2002": 0.388, + "2003": 0.406, + "2004": 0.422, + "2005": 0.434, + "2006": 0.446, + "2007": 0.457, + "2008": 0.468, + "2009": 0.48, + "2010": 0.493, + "2011": 0.495, + "2012": 0.495, + "2013": 0.496, + "2014": 0.497, + "2015": 0.497, + "2016": 0.501, + "2017": 0.504, + "2018": 0.514, + "2019": 0.524, + "2020": 0.524, + "2021": 0.525 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr215", + "Region": " Rukwa, Katavi", + "1990": 0.356, + "1991": 0.356, + "1992": 0.354, + "1993": 0.35, + "1994": 0.344, + "1995": 0.341, + "1996": 0.338, + "1997": 0.34, + "1998": 0.347, + "1999": 0.356, + "2000": 0.364, + "2001": 0.373, + "2002": 0.383, + "2003": 0.393, + "2004": 0.404, + "2005": 0.413, + "2006": 0.424, + "2007": 0.432, + "2008": 0.441, + "2009": 0.45, + "2010": 0.461, + "2011": 0.461, + "2012": 0.46, + "2013": 0.459, + "2014": 0.459, + "2015": 0.457, + "2016": 0.461, + "2017": 0.465, + "2018": 0.474, + "2019": 0.483, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr210", + "Region": " Ruvuma", + "1990": 0.388, + "1991": 0.388, + "1992": 0.386, + "1993": 0.388, + "1994": 0.388, + "1995": 0.391, + "1996": 0.394, + "1997": 0.395, + "1998": 0.401, + "1999": 0.41, + "2000": 0.414, + "2001": 0.419, + "2002": 0.425, + "2003": 0.433, + "2004": 0.44, + "2005": 0.455, + "2006": 0.47, + "2007": 0.483, + "2008": 0.496, + "2009": 0.51, + "2010": 0.525, + "2011": 0.526, + "2012": 0.526, + "2013": 0.526, + "2014": 0.526, + "2015": 0.525, + "2016": 0.53, + "2017": 0.533, + "2018": 0.544, + "2019": 0.554, + "2020": 0.554, + "2021": 0.555 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr217", + "Region": " Shinyanga, Simiyu", + "1990": 0.35, + "1991": 0.349, + "1992": 0.347, + "1993": 0.348, + "1994": 0.348, + "1995": 0.35, + "1996": 0.352, + "1997": 0.345, + "1998": 0.343, + "1999": 0.342, + "2000": 0.356, + "2001": 0.368, + "2002": 0.382, + "2003": 0.396, + "2004": 0.409, + "2005": 0.418, + "2006": 0.427, + "2007": 0.434, + "2008": 0.442, + "2009": 0.45, + "2010": 0.46, + "2011": 0.465, + "2012": 0.469, + "2013": 0.473, + "2014": 0.477, + "2015": 0.481, + "2016": 0.485, + "2017": 0.488, + "2018": 0.497, + "2019": 0.508, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr213", + "Region": " Singida", + "1990": 0.383, + "1991": 0.382, + "1992": 0.38, + "1993": 0.382, + "1994": 0.382, + "1995": 0.385, + "1996": 0.388, + "1997": 0.379, + "1998": 0.375, + "1999": 0.373, + "2000": 0.381, + "2001": 0.39, + "2002": 0.4, + "2003": 0.411, + "2004": 0.421, + "2005": 0.433, + "2006": 0.445, + "2007": 0.455, + "2008": 0.465, + "2009": 0.476, + "2010": 0.489, + "2011": 0.495, + "2012": 0.501, + "2013": 0.507, + "2014": 0.513, + "2015": 0.519, + "2016": 0.523, + "2017": 0.526, + "2018": 0.536, + "2019": 0.547, + "2020": 0.547, + "2021": 0.548 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr214", + "Region": " Tabora", + "1990": 0.351, + "1991": 0.35, + "1992": 0.348, + "1993": 0.353, + "1994": 0.357, + "1995": 0.362, + "1996": 0.368, + "1997": 0.35, + "1998": 0.335, + "1999": 0.32, + "2000": 0.328, + "2001": 0.336, + "2002": 0.345, + "2003": 0.356, + "2004": 0.366, + "2005": 0.379, + "2006": 0.394, + "2007": 0.406, + "2008": 0.419, + "2009": 0.433, + "2010": 0.448, + "2011": 0.45, + "2012": 0.452, + "2013": 0.453, + "2014": 0.455, + "2015": 0.456, + "2016": 0.46, + "2017": 0.463, + "2018": 0.472, + "2019": 0.482, + "2020": 0.482, + "2021": 0.482 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr204", + "Region": " Tanga", + "1990": 0.386, + "1991": 0.386, + "1992": 0.384, + "1993": 0.377, + "1994": 0.37, + "1995": 0.365, + "1996": 0.361, + "1997": 0.374, + "1998": 0.392, + "1999": 0.413, + "2000": 0.414, + "2001": 0.416, + "2002": 0.419, + "2003": 0.423, + "2004": 0.426, + "2005": 0.439, + "2006": 0.452, + "2007": 0.463, + "2008": 0.475, + "2009": 0.487, + "2010": 0.501, + "2011": 0.51, + "2012": 0.517, + "2013": 0.525, + "2014": 0.533, + "2015": 0.539, + "2016": 0.543, + "2017": 0.547, + "2018": 0.557, + "2019": 0.568, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr221", + "Region": " Zanzibar North", + "1990": 0.367, + "1991": 0.367, + "1992": 0.365, + "1993": 0.366, + "1994": 0.365, + "1995": 0.367, + "1996": 0.369, + "1997": 0.379, + "1998": 0.394, + "1999": 0.411, + "2000": 0.415, + "2001": 0.42, + "2002": 0.426, + "2003": 0.434, + "2004": 0.44, + "2005": 0.453, + "2006": 0.467, + "2007": 0.478, + "2008": 0.49, + "2009": 0.502, + "2010": 0.516, + "2011": 0.525, + "2012": 0.532, + "2013": 0.54, + "2014": 0.547, + "2015": 0.554, + "2016": 0.557, + "2017": 0.561, + "2018": 0.571, + "2019": 0.583, + "2020": 0.584, + "2021": 0.584 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr222", + "Region": " Zanzibar South", + "1990": 0.425, + "1991": 0.425, + "1992": 0.423, + "1993": 0.43, + "1994": 0.437, + "1995": 0.445, + "1996": 0.454, + "1997": 0.466, + "1998": 0.485, + "1999": 0.506, + "2000": 0.504, + "2001": 0.501, + "2002": 0.501, + "2003": 0.503, + "2004": 0.503, + "2005": 0.514, + "2006": 0.525, + "2007": 0.535, + "2008": 0.545, + "2009": 0.555, + "2010": 0.567, + "2011": 0.576, + "2012": 0.583, + "2013": 0.591, + "2014": 0.599, + "2015": 0.606, + "2016": 0.61, + "2017": 0.615, + "2018": 0.626, + "2019": 0.638, + "2020": 0.639, + "2021": 0.639 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr223", + "Region": " Zanzibar West", + "1990": 0.432, + "1991": 0.432, + "1992": 0.43, + "1993": 0.438, + "1994": 0.445, + "1995": 0.453, + "1996": 0.463, + "1997": 0.493, + "1998": 0.531, + "1999": 0.574, + "2000": 0.573, + "2001": 0.572, + "2002": 0.574, + "2003": 0.578, + "2004": 0.581, + "2005": 0.592, + "2006": 0.603, + "2007": 0.612, + "2008": 0.621, + "2009": 0.631, + "2010": 0.643, + "2011": 0.652, + "2012": 0.659, + "2013": 0.667, + "2014": 0.675, + "2015": 0.682, + "2016": 0.687, + "2017": 0.692, + "2018": 0.705, + "2019": 0.718, + "2020": 0.718, + "2021": 0.718 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "National", + "GDLCODE": "THAt", + "Region": "Total", + "1990": 0.576, + "1991": 0.585, + "1992": 0.595, + "1993": 0.604, + "1994": 0.613, + "1995": 0.619, + "1996": 0.628, + "1997": 0.635, + "1998": 0.64, + "1999": 0.646, + "2000": 0.653, + "2001": 0.664, + "2002": 0.676, + "2003": 0.687, + "2004": 0.697, + "2005": 0.706, + "2006": 0.712, + "2007": 0.724, + "2008": 0.727, + "2009": 0.73, + "2010": 0.737, + "2011": 0.743, + "2012": 0.746, + "2013": 0.747, + "2014": 0.778, + "2015": 0.781, + "2016": 0.785, + "2017": 0.79, + "2018": 0.795, + "2019": 0.804, + "2020": 0.802, + "2021": 0.8 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr101", + "Region": "Bangkok", + "1990": 0.621, + "1991": 0.631, + "1992": 0.641, + "1993": 0.651, + "1994": 0.66, + "1995": 0.667, + "1996": 0.676, + "1997": 0.684, + "1998": 0.689, + "1999": 0.695, + "2000": 0.702, + "2001": 0.715, + "2002": 0.728, + "2003": 0.741, + "2004": 0.752, + "2005": 0.76, + "2006": 0.767, + "2007": 0.778, + "2008": 0.781, + "2009": 0.784, + "2010": 0.79, + "2011": 0.796, + "2012": 0.798, + "2013": 0.799, + "2014": 0.829, + "2015": 0.832, + "2016": 0.835, + "2017": 0.84, + "2018": 0.839, + "2019": 0.843, + "2020": 0.841, + "2021": 0.839 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr102", + "Region": "Central", + "1990": 0.577, + "1991": 0.587, + "1992": 0.596, + "1993": 0.606, + "1994": 0.614, + "1995": 0.62, + "1996": 0.629, + "1997": 0.637, + "1998": 0.641, + "1999": 0.647, + "2000": 0.654, + "2001": 0.665, + "2002": 0.677, + "2003": 0.689, + "2004": 0.699, + "2005": 0.707, + "2006": 0.714, + "2007": 0.727, + "2008": 0.733, + "2009": 0.739, + "2010": 0.747, + "2011": 0.756, + "2012": 0.76, + "2013": 0.76, + "2014": 0.788, + "2015": 0.789, + "2016": 0.791, + "2017": 0.794, + "2018": 0.799, + "2019": 0.808, + "2020": 0.807, + "2021": 0.805 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr103", + "Region": "North", + "1990": 0.566, + "1991": 0.575, + "1992": 0.585, + "1993": 0.594, + "1994": 0.602, + "1995": 0.608, + "1996": 0.617, + "1997": 0.624, + "1998": 0.629, + "1999": 0.635, + "2000": 0.642, + "2001": 0.652, + "2002": 0.664, + "2003": 0.675, + "2004": 0.684, + "2005": 0.693, + "2006": 0.7, + "2007": 0.71, + "2008": 0.713, + "2009": 0.716, + "2010": 0.722, + "2011": 0.727, + "2012": 0.729, + "2013": 0.729, + "2014": 0.76, + "2015": 0.762, + "2016": 0.764, + "2017": 0.768, + "2018": 0.777, + "2019": 0.789, + "2020": 0.787, + "2021": 0.785 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr104", + "Region": "Northeast", + "1990": 0.563, + "1991": 0.573, + "1992": 0.582, + "1993": 0.591, + "1994": 0.599, + "1995": 0.606, + "1996": 0.614, + "1997": 0.622, + "1998": 0.626, + "1999": 0.633, + "2000": 0.639, + "2001": 0.65, + "2002": 0.661, + "2003": 0.672, + "2004": 0.682, + "2005": 0.69, + "2006": 0.697, + "2007": 0.707, + "2008": 0.708, + "2009": 0.711, + "2010": 0.715, + "2011": 0.72, + "2012": 0.721, + "2013": 0.724, + "2014": 0.757, + "2015": 0.761, + "2016": 0.766, + "2017": 0.774, + "2018": 0.777, + "2019": 0.784, + "2020": 0.783, + "2021": 0.781 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr105", + "Region": "South", + "1990": 0.562, + "1991": 0.572, + "1992": 0.581, + "1993": 0.59, + "1994": 0.598, + "1995": 0.605, + "1996": 0.613, + "1997": 0.621, + "1998": 0.625, + "1999": 0.631, + "2000": 0.638, + "2001": 0.649, + "2002": 0.66, + "2003": 0.672, + "2004": 0.681, + "2005": 0.69, + "2006": 0.696, + "2007": 0.71, + "2008": 0.715, + "2009": 0.721, + "2010": 0.73, + "2011": 0.739, + "2012": 0.744, + "2013": 0.744, + "2014": 0.773, + "2015": 0.774, + "2016": 0.776, + "2017": 0.779, + "2018": 0.784, + "2019": 0.793, + "2020": 0.792, + "2021": 0.79 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "National", + "GDLCODE": "TLSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.508, + "2003": 0.508, + "2004": 0.521, + "2005": 0.538, + "2006": 0.563, + "2007": 0.585, + "2008": 0.611, + "2009": 0.609, + "2010": 0.619, + "2011": 0.638, + "2012": 0.635, + "2013": 0.63, + "2014": 0.622, + "2015": 0.614, + "2016": 0.604, + "2017": 0.606, + "2018": 0.605, + "2019": 0.614, + "2020": 0.614, + "2021": 0.607 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr101", + "Region": "Aileu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.49, + "2003": 0.489, + "2004": 0.502, + "2005": 0.519, + "2006": 0.544, + "2007": 0.566, + "2008": 0.591, + "2009": 0.588, + "2010": 0.6, + "2011": 0.62, + "2012": 0.617, + "2013": 0.613, + "2014": 0.606, + "2015": 0.6, + "2016": 0.591, + "2017": 0.592, + "2018": 0.592, + "2019": 0.601, + "2020": 0.601, + "2021": 0.594 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr102", + "Region": "Ainaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.463, + "2003": 0.462, + "2004": 0.474, + "2005": 0.491, + "2006": 0.514, + "2007": 0.535, + "2008": 0.56, + "2009": 0.557, + "2010": 0.565, + "2011": 0.582, + "2012": 0.577, + "2013": 0.571, + "2014": 0.561, + "2015": 0.553, + "2016": 0.542, + "2017": 0.543, + "2018": 0.543, + "2019": 0.551, + "2020": 0.551, + "2021": 0.545 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr103", + "Region": "Baucau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.515, + "2003": 0.515, + "2004": 0.528, + "2005": 0.545, + "2006": 0.571, + "2007": 0.594, + "2008": 0.621, + "2009": 0.618, + "2010": 0.624, + "2011": 0.638, + "2012": 0.63, + "2013": 0.62, + "2014": 0.607, + "2015": 0.596, + "2016": 0.582, + "2017": 0.583, + "2018": 0.583, + "2019": 0.591, + "2020": 0.591, + "2021": 0.585 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr104", + "Region": "Bobonaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.477, + "2003": 0.476, + "2004": 0.488, + "2005": 0.505, + "2006": 0.528, + "2007": 0.549, + "2008": 0.574, + "2009": 0.571, + "2010": 0.583, + "2011": 0.604, + "2012": 0.603, + "2013": 0.599, + "2014": 0.593, + "2015": 0.588, + "2016": 0.581, + "2017": 0.582, + "2018": 0.581, + "2019": 0.59, + "2020": 0.59, + "2021": 0.584 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr105", + "Region": "Cova Lima", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.512, + "2003": 0.512, + "2004": 0.525, + "2005": 0.542, + "2006": 0.568, + "2007": 0.591, + "2008": 0.617, + "2009": 0.614, + "2010": 0.623, + "2011": 0.64, + "2012": 0.634, + "2013": 0.626, + "2014": 0.615, + "2015": 0.606, + "2016": 0.593, + "2017": 0.595, + "2018": 0.594, + "2019": 0.603, + "2020": 0.603, + "2021": 0.596 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr106", + "Region": "Dili", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.623, + "2003": 0.624, + "2004": 0.639, + "2005": 0.659, + "2006": 0.687, + "2007": 0.712, + "2008": 0.741, + "2009": 0.74, + "2010": 0.748, + "2011": 0.764, + "2012": 0.758, + "2013": 0.749, + "2014": 0.737, + "2015": 0.725, + "2016": 0.711, + "2017": 0.712, + "2018": 0.712, + "2019": 0.722, + "2020": 0.722, + "2021": 0.714 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr107", + "Region": "Ermera", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.442, + "2003": 0.442, + "2004": 0.453, + "2005": 0.468, + "2006": 0.491, + "2007": 0.511, + "2008": 0.534, + "2009": 0.531, + "2010": 0.543, + "2011": 0.563, + "2012": 0.562, + "2013": 0.559, + "2014": 0.553, + "2015": 0.548, + "2016": 0.54, + "2017": 0.541, + "2018": 0.541, + "2019": 0.549, + "2020": 0.549, + "2021": 0.543 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr109", + "Region": "Lautem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.515, + "2003": 0.514, + "2004": 0.528, + "2005": 0.545, + "2006": 0.571, + "2007": 0.594, + "2008": 0.621, + "2009": 0.618, + "2010": 0.625, + "2011": 0.64, + "2012": 0.632, + "2013": 0.622, + "2014": 0.61, + "2015": 0.598, + "2016": 0.584, + "2017": 0.585, + "2018": 0.585, + "2019": 0.593, + "2020": 0.593, + "2021": 0.587 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr108", + "Region": "Liquica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.48, + "2003": 0.48, + "2004": 0.493, + "2005": 0.509, + "2006": 0.532, + "2007": 0.553, + "2008": 0.578, + "2009": 0.575, + "2010": 0.592, + "2011": 0.617, + "2012": 0.62, + "2013": 0.621, + "2014": 0.618, + "2015": 0.616, + "2016": 0.61, + "2017": 0.611, + "2018": 0.611, + "2019": 0.62, + "2020": 0.62, + "2021": 0.613 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr111", + "Region": "Manatuto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.524, + "2003": 0.523, + "2004": 0.536, + "2005": 0.554, + "2006": 0.58, + "2007": 0.602, + "2008": 0.629, + "2009": 0.626, + "2010": 0.633, + "2011": 0.648, + "2012": 0.64, + "2013": 0.631, + "2014": 0.619, + "2015": 0.608, + "2016": 0.595, + "2017": 0.596, + "2018": 0.596, + "2019": 0.605, + "2020": 0.605, + "2021": 0.598 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr110", + "Region": "Manufahi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.493, + "2003": 0.492, + "2004": 0.505, + "2005": 0.522, + "2006": 0.547, + "2007": 0.569, + "2008": 0.595, + "2009": 0.592, + "2010": 0.603, + "2011": 0.623, + "2012": 0.621, + "2013": 0.617, + "2014": 0.61, + "2015": 0.604, + "2016": 0.596, + "2017": 0.597, + "2018": 0.597, + "2019": 0.605, + "2020": 0.605, + "2021": 0.599 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr112", + "Region": "Oecussi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.444, + "2003": 0.443, + "2004": 0.455, + "2005": 0.47, + "2006": 0.493, + "2007": 0.514, + "2008": 0.537, + "2009": 0.534, + "2010": 0.546, + "2011": 0.566, + "2012": 0.565, + "2013": 0.561, + "2014": 0.554, + "2015": 0.548, + "2016": 0.539, + "2017": 0.54, + "2018": 0.54, + "2019": 0.549, + "2020": 0.548, + "2021": 0.542 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr113", + "Region": "Viqueque", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.495, + "2003": 0.494, + "2004": 0.507, + "2005": 0.524, + "2006": 0.549, + "2007": 0.571, + "2008": 0.597, + "2009": 0.594, + "2010": 0.603, + "2011": 0.621, + "2012": 0.617, + "2013": 0.61, + "2014": 0.601, + "2015": 0.592, + "2016": 0.582, + "2017": 0.583, + "2018": 0.582, + "2019": 0.591, + "2020": 0.591, + "2021": 0.584 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "National", + "GDLCODE": "TGOt", + "Region": "Total", + "1990": 0.41, + "1991": 0.414, + "1992": 0.406, + "1993": 0.398, + "1994": 0.404, + "1995": 0.419, + "1996": 0.429, + "1997": 0.438, + "1998": 0.439, + "1999": 0.443, + "2000": 0.446, + "2001": 0.449, + "2002": 0.454, + "2003": 0.46, + "2004": 0.459, + "2005": 0.458, + "2006": 0.464, + "2007": 0.457, + "2008": 0.464, + "2009": 0.472, + "2010": 0.477, + "2011": 0.487, + "2012": 0.491, + "2013": 0.499, + "2014": 0.505, + "2015": 0.514, + "2016": 0.518, + "2017": 0.524, + "2018": 0.528, + "2019": 0.535, + "2020": 0.535, + "2021": 0.539 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr104", + "Region": "Centrale", + "1990": 0.398, + "1991": 0.402, + "1992": 0.394, + "1993": 0.386, + "1994": 0.391, + "1995": 0.406, + "1996": 0.416, + "1997": 0.425, + "1998": 0.426, + "1999": 0.429, + "2000": 0.43, + "2001": 0.433, + "2002": 0.436, + "2003": 0.441, + "2004": 0.439, + "2005": 0.436, + "2006": 0.441, + "2007": 0.436, + "2008": 0.444, + "2009": 0.453, + "2010": 0.46, + "2011": 0.472, + "2012": 0.476, + "2013": 0.485, + "2014": 0.493, + "2015": 0.502, + "2016": 0.506, + "2017": 0.512, + "2018": 0.516, + "2019": 0.523, + "2020": 0.523, + "2021": 0.527 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr105", + "Region": "Kara", + "1990": 0.387, + "1991": 0.391, + "1992": 0.383, + "1993": 0.375, + "1994": 0.38, + "1995": 0.395, + "1996": 0.404, + "1997": 0.413, + "1998": 0.414, + "1999": 0.417, + "2000": 0.419, + "2001": 0.422, + "2002": 0.426, + "2003": 0.43, + "2004": 0.429, + "2005": 0.427, + "2006": 0.431, + "2007": 0.425, + "2008": 0.431, + "2009": 0.438, + "2010": 0.443, + "2011": 0.453, + "2012": 0.455, + "2013": 0.461, + "2014": 0.466, + "2015": 0.478, + "2016": 0.484, + "2017": 0.493, + "2018": 0.497, + "2019": 0.504, + "2020": 0.504, + "2021": 0.508 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr101", + "Region": "Lome", + "1990": 0.51, + "1991": 0.516, + "1992": 0.509, + "1993": 0.501, + "1994": 0.508, + "1995": 0.524, + "1996": 0.536, + "1997": 0.546, + "1998": 0.548, + "1999": 0.554, + "2000": 0.558, + "2001": 0.563, + "2002": 0.57, + "2003": 0.578, + "2004": 0.579, + "2005": 0.58, + "2006": 0.587, + "2007": 0.576, + "2008": 0.578, + "2009": 0.581, + "2010": 0.58, + "2011": 0.585, + "2012": 0.585, + "2013": 0.59, + "2014": 0.593, + "2015": 0.595, + "2016": 0.591, + "2017": 0.589, + "2018": 0.594, + "2019": 0.602, + "2020": 0.603, + "2021": 0.607 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr102", + "Region": "Maritime", + "1990": 0.406, + "1991": 0.41, + "1992": 0.401, + "1993": 0.393, + "1994": 0.399, + "1995": 0.414, + "1996": 0.424, + "1997": 0.433, + "1998": 0.434, + "1999": 0.44, + "2000": 0.443, + "2001": 0.448, + "2002": 0.455, + "2003": 0.461, + "2004": 0.462, + "2005": 0.462, + "2006": 0.468, + "2007": 0.465, + "2008": 0.475, + "2009": 0.486, + "2010": 0.494, + "2011": 0.508, + "2012": 0.514, + "2013": 0.526, + "2014": 0.535, + "2015": 0.528, + "2016": 0.516, + "2017": 0.506, + "2018": 0.51, + "2019": 0.517, + "2020": 0.517, + "2021": 0.521 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr103", + "Region": "Plateaux", + "1990": 0.402, + "1991": 0.406, + "1992": 0.398, + "1993": 0.39, + "1994": 0.396, + "1995": 0.411, + "1996": 0.421, + "1997": 0.43, + "1998": 0.431, + "1999": 0.433, + "2000": 0.435, + "2001": 0.437, + "2002": 0.441, + "2003": 0.446, + "2004": 0.444, + "2005": 0.442, + "2006": 0.446, + "2007": 0.438, + "2008": 0.443, + "2009": 0.449, + "2010": 0.453, + "2011": 0.462, + "2012": 0.463, + "2013": 0.47, + "2014": 0.475, + "2015": 0.49, + "2016": 0.5, + "2017": 0.512, + "2018": 0.516, + "2019": 0.523, + "2020": 0.523, + "2021": 0.527 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr106", + "Region": "Savanes", + "1990": 0.323, + "1991": 0.327, + "1992": 0.319, + "1993": 0.312, + "1994": 0.316, + "1995": 0.329, + "1996": 0.338, + "1997": 0.345, + "1998": 0.346, + "1999": 0.345, + "2000": 0.344, + "2001": 0.343, + "2002": 0.344, + "2003": 0.345, + "2004": 0.341, + "2005": 0.336, + "2006": 0.337, + "2007": 0.339, + "2008": 0.352, + "2009": 0.365, + "2010": 0.377, + "2011": 0.394, + "2012": 0.402, + "2013": 0.415, + "2014": 0.425, + "2015": 0.437, + "2016": 0.444, + "2017": 0.453, + "2018": 0.457, + "2019": 0.462, + "2020": 0.463, + "2021": 0.466 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "National", + "GDLCODE": "TONt", + "Region": "Total", + "1990": null, + "1991": 0.652, + "1992": 0.656, + "1993": 0.663, + "1994": 0.672, + "1995": 0.676, + "1996": 0.678, + "1997": 0.68, + "1998": 0.685, + "1999": 0.688, + "2000": 0.685, + "2001": 0.688, + "2002": 0.694, + "2003": 0.701, + "2004": 0.702, + "2005": 0.702, + "2006": 0.703, + "2007": 0.704, + "2008": 0.709, + "2009": 0.708, + "2010": 0.713, + "2011": 0.72, + "2012": 0.723, + "2013": 0.725, + "2014": 0.727, + "2015": 0.73, + "2016": 0.735, + "2017": 0.74, + "2018": 0.742, + "2019": 0.744, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr104", + "Region": "Eua", + "1990": null, + "1991": 0.631, + "1992": 0.635, + "1993": 0.641, + "1994": 0.65, + "1995": 0.654, + "1996": 0.656, + "1997": 0.658, + "1998": 0.663, + "1999": 0.665, + "2000": 0.663, + "2001": 0.665, + "2002": 0.671, + "2003": 0.678, + "2004": 0.679, + "2005": 0.679, + "2006": 0.68, + "2007": 0.681, + "2008": 0.686, + "2009": 0.685, + "2010": 0.69, + "2011": 0.696, + "2012": 0.699, + "2013": 0.701, + "2014": 0.704, + "2015": 0.707, + "2016": 0.711, + "2017": 0.716, + "2018": 0.718, + "2019": 0.72, + "2020": 0.721, + "2021": 0.721 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr103", + "Region": "Ha-apai", + "1990": null, + "1991": 0.613, + "1992": 0.617, + "1993": 0.623, + "1994": 0.631, + "1995": 0.635, + "1996": 0.638, + "1997": 0.639, + "1998": 0.644, + "1999": 0.647, + "2000": 0.644, + "2001": 0.647, + "2002": 0.652, + "2003": 0.66, + "2004": 0.66, + "2005": 0.66, + "2006": 0.661, + "2007": 0.662, + "2008": 0.667, + "2009": 0.666, + "2010": 0.67, + "2011": 0.677, + "2012": 0.68, + "2013": 0.682, + "2014": 0.684, + "2015": 0.687, + "2016": 0.692, + "2017": 0.696, + "2018": 0.698, + "2019": 0.7, + "2020": 0.701, + "2021": 0.701 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr105", + "Region": "Ongo Niua", + "1990": null, + "1991": 0.616, + "1992": 0.62, + "1993": 0.626, + "1994": 0.635, + "1995": 0.639, + "1996": 0.641, + "1997": 0.643, + "1998": 0.647, + "1999": 0.65, + "2000": 0.647, + "2001": 0.65, + "2002": 0.656, + "2003": 0.664, + "2004": 0.664, + "2005": 0.664, + "2006": 0.665, + "2007": 0.666, + "2008": 0.671, + "2009": 0.67, + "2010": 0.674, + "2011": 0.681, + "2012": 0.684, + "2013": 0.686, + "2014": 0.688, + "2015": 0.691, + "2016": 0.696, + "2017": 0.701, + "2018": 0.702, + "2019": 0.705, + "2020": 0.706, + "2021": 0.705 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr101", + "Region": "Tongatapu", + "1990": null, + "1991": 0.661, + "1992": 0.665, + "1993": 0.671, + "1994": 0.681, + "1995": 0.685, + "1996": 0.687, + "1997": 0.689, + "1998": 0.694, + "1999": 0.697, + "2000": 0.694, + "2001": 0.697, + "2002": 0.703, + "2003": 0.711, + "2004": 0.711, + "2005": 0.711, + "2006": 0.712, + "2007": 0.713, + "2008": 0.719, + "2009": 0.718, + "2010": 0.722, + "2011": 0.729, + "2012": 0.732, + "2013": 0.735, + "2014": 0.737, + "2015": 0.74, + "2016": 0.745, + "2017": 0.749, + "2018": 0.751, + "2019": 0.754, + "2020": 0.754, + "2021": 0.754 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr102", + "Region": "Vava-u", + "1990": null, + "1991": 0.642, + "1992": 0.646, + "1993": 0.652, + "1994": 0.661, + "1995": 0.665, + "1996": 0.667, + "1997": 0.669, + "1998": 0.674, + "1999": 0.677, + "2000": 0.674, + "2001": 0.677, + "2002": 0.682, + "2003": 0.69, + "2004": 0.691, + "2005": 0.691, + "2006": 0.691, + "2007": 0.693, + "2008": 0.698, + "2009": 0.697, + "2010": 0.701, + "2011": 0.708, + "2012": 0.711, + "2013": 0.713, + "2014": 0.716, + "2015": 0.719, + "2016": 0.723, + "2017": 0.728, + "2018": 0.73, + "2019": 0.732, + "2020": 0.733, + "2021": 0.733 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "National", + "GDLCODE": "TTOt", + "Region": "Total", + "1990": 0.66, + "1991": 0.665, + "1992": 0.663, + "1993": 0.667, + "1994": 0.67, + "1995": 0.678, + "1996": 0.684, + "1997": 0.69, + "1998": 0.7, + "1999": 0.703, + "2000": 0.712, + "2001": 0.721, + "2002": 0.732, + "2003": 0.737, + "2004": 0.752, + "2005": 0.758, + "2006": 0.767, + "2007": 0.773, + "2008": 0.777, + "2009": 0.787, + "2010": 0.79, + "2011": 0.794, + "2012": 0.8, + "2013": 0.806, + "2014": 0.809, + "2015": 0.816, + "2016": 0.815, + "2017": 0.817, + "2018": 0.815, + "2019": 0.821, + "2020": 0.818, + "2021": 0.81 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr103", + "Region": "Central", + "1990": 0.661, + "1991": 0.666, + "1992": 0.664, + "1993": 0.668, + "1994": 0.671, + "1995": 0.679, + "1996": 0.685, + "1997": 0.692, + "1998": 0.701, + "1999": 0.704, + "2000": 0.713, + "2001": 0.722, + "2002": 0.733, + "2003": 0.738, + "2004": 0.753, + "2005": 0.759, + "2006": 0.768, + "2007": 0.775, + "2008": 0.78, + "2009": 0.791, + "2010": 0.796, + "2011": 0.8, + "2012": 0.806, + "2013": 0.813, + "2014": 0.816, + "2015": 0.823, + "2016": 0.821, + "2017": 0.823, + "2018": 0.822, + "2019": 0.827, + "2020": 0.824, + "2021": 0.816 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr102", + "Region": "East", + "1990": 0.643, + "1991": 0.647, + "1992": 0.646, + "1993": 0.649, + "1994": 0.652, + "1995": 0.66, + "1996": 0.666, + "1997": 0.672, + "1998": 0.682, + "1999": 0.685, + "2000": 0.693, + "2001": 0.702, + "2002": 0.712, + "2003": 0.718, + "2004": 0.732, + "2005": 0.738, + "2006": 0.747, + "2007": 0.752, + "2008": 0.754, + "2009": 0.763, + "2010": 0.766, + "2011": 0.768, + "2012": 0.774, + "2013": 0.78, + "2014": 0.783, + "2015": 0.79, + "2016": 0.788, + "2017": 0.79, + "2018": 0.788, + "2019": 0.794, + "2020": 0.791, + "2021": 0.783 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr101", + "Region": "North West", + "1990": 0.663, + "1991": 0.668, + "1992": 0.666, + "1993": 0.67, + "1994": 0.673, + "1995": 0.681, + "1996": 0.687, + "1997": 0.694, + "1998": 0.704, + "1999": 0.707, + "2000": 0.716, + "2001": 0.724, + "2002": 0.736, + "2003": 0.741, + "2004": 0.756, + "2005": 0.762, + "2006": 0.771, + "2007": 0.778, + "2008": 0.781, + "2009": 0.792, + "2010": 0.795, + "2011": 0.799, + "2012": 0.805, + "2013": 0.811, + "2014": 0.815, + "2015": 0.822, + "2016": 0.82, + "2017": 0.822, + "2018": 0.82, + "2019": 0.826, + "2020": 0.823, + "2021": 0.815 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr104", + "Region": "South West", + "1990": 0.659, + "1991": 0.664, + "1992": 0.662, + "1993": 0.666, + "1994": 0.669, + "1995": 0.677, + "1996": 0.682, + "1997": 0.689, + "1998": 0.699, + "1999": 0.702, + "2000": 0.711, + "2001": 0.719, + "2002": 0.73, + "2003": 0.736, + "2004": 0.75, + "2005": 0.756, + "2006": 0.765, + "2007": 0.771, + "2008": 0.773, + "2009": 0.783, + "2010": 0.786, + "2011": 0.788, + "2012": 0.795, + "2013": 0.801, + "2014": 0.804, + "2015": 0.811, + "2016": 0.809, + "2017": 0.811, + "2018": 0.81, + "2019": 0.815, + "2020": 0.812, + "2021": 0.804 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr105", + "Region": "Tobago", + "1990": 0.67, + "1991": 0.674, + "1992": 0.673, + "1993": 0.677, + "1994": 0.679, + "1995": 0.688, + "1996": 0.693, + "1997": 0.7, + "1998": 0.71, + "1999": 0.713, + "2000": 0.722, + "2001": 0.731, + "2002": 0.742, + "2003": 0.747, + "2004": 0.762, + "2005": 0.769, + "2006": 0.777, + "2007": 0.78, + "2008": 0.779, + "2009": 0.786, + "2010": 0.785, + "2011": 0.784, + "2012": 0.791, + "2013": 0.797, + "2014": 0.8, + "2015": 0.807, + "2016": 0.805, + "2017": 0.807, + "2018": 0.806, + "2019": 0.811, + "2020": 0.808, + "2021": 0.8 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "National", + "GDLCODE": "TUNt", + "Region": "Total", + "1990": 0.576, + "1991": 0.581, + "1992": 0.588, + "1993": 0.594, + "1994": 0.604, + "1995": 0.611, + "1996": 0.62, + "1997": 0.627, + "1998": 0.639, + "1999": 0.65, + "2000": 0.658, + "2001": 0.665, + "2002": 0.67, + "2003": 0.677, + "2004": 0.687, + "2005": 0.694, + "2006": 0.7, + "2007": 0.706, + "2008": 0.711, + "2009": 0.715, + "2010": 0.72, + "2011": 0.722, + "2012": 0.724, + "2013": 0.727, + "2014": 0.73, + "2015": 0.733, + "2016": 0.737, + "2017": 0.74, + "2018": 0.743, + "2019": 0.745, + "2020": 0.737, + "2021": 0.731 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr105", + "Region": "Centre Est (Sousse, Monastir, Mahdia, Sfax)", + "1990": 0.581, + "1991": 0.587, + "1992": 0.593, + "1993": 0.6, + "1994": 0.61, + "1995": 0.617, + "1996": 0.626, + "1997": 0.633, + "1998": 0.645, + "1999": 0.656, + "2000": 0.664, + "2001": 0.671, + "2002": 0.677, + "2003": 0.683, + "2004": 0.693, + "2005": 0.7, + "2006": 0.707, + "2007": 0.713, + "2008": 0.718, + "2009": 0.722, + "2010": 0.727, + "2011": 0.729, + "2012": 0.731, + "2013": 0.733, + "2014": 0.734, + "2015": 0.735, + "2016": 0.738, + "2017": 0.739, + "2018": 0.741, + "2019": 0.743, + "2020": 0.735, + "2021": 0.729 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr104", + "Region": "Centre Ouest (Kairouan, Kasserine, Sidi Bouzid)", + "1990": 0.515, + "1991": 0.519, + "1992": 0.525, + "1993": 0.53, + "1994": 0.539, + "1995": 0.546, + "1996": 0.554, + "1997": 0.56, + "1998": 0.57, + "1999": 0.58, + "2000": 0.587, + "2001": 0.594, + "2002": 0.598, + "2003": 0.604, + "2004": 0.613, + "2005": 0.619, + "2006": 0.625, + "2007": 0.63, + "2008": 0.634, + "2009": 0.637, + "2010": 0.641, + "2011": 0.644, + "2012": 0.645, + "2013": 0.651, + "2014": 0.656, + "2015": 0.662, + "2016": 0.668, + "2017": 0.674, + "2018": 0.679, + "2019": 0.681, + "2020": 0.674, + "2021": 0.668 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr101", + "Region": "Grand Tunis (Tunis, Ariana, Ben Arous, Manouba)", + "1990": 0.613, + "1991": 0.619, + "1992": 0.626, + "1993": 0.633, + "1994": 0.643, + "1995": 0.651, + "1996": 0.66, + "1997": 0.668, + "1998": 0.68, + "1999": 0.692, + "2000": 0.7, + "2001": 0.708, + "2002": 0.714, + "2003": 0.721, + "2004": 0.731, + "2005": 0.739, + "2006": 0.746, + "2007": 0.753, + "2008": 0.758, + "2009": 0.762, + "2010": 0.767, + "2011": 0.77, + "2012": 0.772, + "2013": 0.775, + "2014": 0.776, + "2015": 0.779, + "2016": 0.783, + "2017": 0.785, + "2018": 0.787, + "2019": 0.789, + "2020": 0.781, + "2021": 0.775 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr102", + "Region": "Nord Est (Nabeul, Zaghouan, Bizerte)", + "1990": 0.578, + "1991": 0.584, + "1992": 0.59, + "1993": 0.597, + "1994": 0.607, + "1995": 0.614, + "1996": 0.622, + "1997": 0.629, + "1998": 0.641, + "1999": 0.652, + "2000": 0.66, + "2001": 0.667, + "2002": 0.673, + "2003": 0.679, + "2004": 0.689, + "2005": 0.696, + "2006": 0.702, + "2007": 0.709, + "2008": 0.714, + "2009": 0.717, + "2010": 0.722, + "2011": 0.724, + "2012": 0.726, + "2013": 0.727, + "2014": 0.727, + "2015": 0.727, + "2016": 0.729, + "2017": 0.729, + "2018": 0.729, + "2019": 0.731, + "2020": 0.723, + "2021": 0.718 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr103", + "Region": "Nord Ouest (Beja, Jendouba, Kef, Siliana)", + "1990": 0.541, + "1991": 0.546, + "1992": 0.552, + "1993": 0.558, + "1994": 0.567, + "1995": 0.574, + "1996": 0.582, + "1997": 0.588, + "1998": 0.6, + "1999": 0.61, + "2000": 0.617, + "2001": 0.624, + "2002": 0.629, + "2003": 0.635, + "2004": 0.644, + "2005": 0.651, + "2006": 0.656, + "2007": 0.662, + "2008": 0.667, + "2009": 0.669, + "2010": 0.674, + "2011": 0.676, + "2012": 0.678, + "2013": 0.685, + "2014": 0.691, + "2015": 0.698, + "2016": 0.706, + "2017": 0.713, + "2018": 0.719, + "2019": 0.721, + "2020": 0.713, + "2021": 0.708 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr107", + "Region": "Sud Est (Gabes, Medinine, Tataouine)", + "1990": 0.568, + "1991": 0.573, + "1992": 0.58, + "1993": 0.586, + "1994": 0.596, + "1995": 0.603, + "1996": 0.612, + "1997": 0.619, + "1998": 0.63, + "1999": 0.641, + "2000": 0.649, + "2001": 0.656, + "2002": 0.661, + "2003": 0.668, + "2004": 0.678, + "2005": 0.685, + "2006": 0.691, + "2007": 0.697, + "2008": 0.702, + "2009": 0.706, + "2010": 0.71, + "2011": 0.713, + "2012": 0.715, + "2013": 0.719, + "2014": 0.723, + "2015": 0.728, + "2016": 0.733, + "2017": 0.737, + "2018": 0.742, + "2019": 0.743, + "2020": 0.736, + "2021": 0.73 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr106", + "Region": "Sud Ouest (Gafsa, Tozeur, Kebili)", + "1990": 0.574, + "1991": 0.58, + "1992": 0.586, + "1993": 0.592, + "1994": 0.602, + "1995": 0.609, + "1996": 0.618, + "1997": 0.625, + "1998": 0.637, + "1999": 0.648, + "2000": 0.656, + "2001": 0.663, + "2002": 0.668, + "2003": 0.675, + "2004": 0.684, + "2005": 0.692, + "2006": 0.698, + "2007": 0.704, + "2008": 0.709, + "2009": 0.712, + "2010": 0.717, + "2011": 0.72, + "2012": 0.722, + "2013": 0.724, + "2014": 0.726, + "2015": 0.729, + "2016": 0.733, + "2017": 0.735, + "2018": 0.737, + "2019": 0.739, + "2020": 0.731, + "2021": 0.726 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "National", + "GDLCODE": "TURt", + "Region": "Total", + "1990": 0.6, + "1991": 0.604, + "1992": 0.61, + "1993": 0.617, + "1994": 0.618, + "1995": 0.625, + "1996": 0.633, + "1997": 0.641, + "1998": 0.652, + "1999": 0.655, + "2000": 0.67, + "2001": 0.674, + "2002": 0.684, + "2003": 0.69, + "2004": 0.695, + "2005": 0.7, + "2006": 0.71, + "2007": 0.717, + "2008": 0.721, + "2009": 0.728, + "2010": 0.749, + "2011": 0.762, + "2012": 0.769, + "2013": 0.799, + "2014": 0.809, + "2015": 0.817, + "2016": 0.823, + "2017": 0.833, + "2018": 0.839, + "2019": 0.842, + "2020": 0.833, + "2021": 0.838 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr103", + "Region": "Aegean (Afyon, Aydin, Denizli, Izmir, Kutahya, Man", + "1990": 0.63, + "1991": 0.635, + "1992": 0.641, + "1993": 0.648, + "1994": 0.647, + "1995": 0.651, + "1996": 0.657, + "1997": 0.662, + "1998": 0.671, + "1999": 0.675, + "2000": 0.69, + "2001": 0.694, + "2002": 0.704, + "2003": 0.711, + "2004": 0.715, + "2005": 0.717, + "2006": 0.725, + "2007": 0.731, + "2008": 0.733, + "2009": 0.738, + "2010": 0.758, + "2011": 0.768, + "2012": 0.775, + "2013": 0.807, + "2014": 0.804, + "2015": 0.811, + "2016": 0.818, + "2017": 0.828, + "2018": 0.836, + "2019": 0.84, + "2020": 0.831, + "2021": 0.836 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr107", + "Region": "Central Anatolia (Kayseri, Kirsehir, Nevsehir, Nig", + "1990": 0.559, + "1991": 0.563, + "1992": 0.568, + "1993": 0.575, + "1994": 0.583, + "1995": 0.597, + "1996": 0.611, + "1997": 0.625, + "1998": 0.642, + "1999": 0.646, + "2000": 0.66, + "2001": 0.664, + "2002": 0.673, + "2003": 0.679, + "2004": 0.679, + "2005": 0.686, + "2006": 0.697, + "2007": 0.704, + "2008": 0.714, + "2009": 0.714, + "2010": 0.735, + "2011": 0.745, + "2012": 0.756, + "2013": 0.799, + "2014": 0.787, + "2015": 0.797, + "2016": 0.803, + "2017": 0.812, + "2018": 0.816, + "2019": 0.82, + "2020": 0.811, + "2021": 0.816 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr111", + "Region": "Central East Anatolia (Bingol, Bitlis, Elazig, Hak", + "1990": 0.485, + "1991": 0.488, + "1992": 0.493, + "1993": 0.499, + "1994": 0.5, + "1995": 0.507, + "1996": 0.514, + "1997": 0.521, + "1998": 0.531, + "1999": 0.547, + "2000": 0.572, + "2001": 0.587, + "2002": 0.607, + "2003": 0.622, + "2004": 0.605, + "2005": 0.615, + "2006": 0.624, + "2007": 0.629, + "2008": 0.634, + "2009": 0.645, + "2010": 0.674, + "2011": 0.692, + "2012": 0.702, + "2013": 0.748, + "2014": 0.74, + "2015": 0.747, + "2016": 0.754, + "2017": 0.763, + "2018": 0.769, + "2019": 0.777, + "2020": 0.768, + "2021": 0.773 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr109", + "Region": "East Black Sea (Artvin, Giresun, Gumushane, Ordu,", + "1990": 0.599, + "1991": 0.603, + "1992": 0.609, + "1993": 0.616, + "1994": 0.616, + "1995": 0.621, + "1996": 0.628, + "1997": 0.634, + "1998": 0.644, + "1999": 0.645, + "2000": 0.658, + "2001": 0.66, + "2002": 0.668, + "2003": 0.672, + "2004": 0.673, + "2005": 0.685, + "2006": 0.7, + "2007": 0.705, + "2008": 0.708, + "2009": 0.714, + "2010": 0.738, + "2011": 0.751, + "2012": 0.751, + "2013": 0.778, + "2014": 0.793, + "2015": 0.806, + "2016": 0.808, + "2017": 0.814, + "2018": 0.819, + "2019": 0.824, + "2020": 0.815, + "2021": 0.821 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr104", + "Region": "East Marmara (Bilecik, Bolu, Bursa, Duzce, Eskiseh", + "1990": 0.615, + "1991": 0.62, + "1992": 0.625, + "1993": 0.633, + "1994": 0.643, + "1995": 0.659, + "1996": 0.675, + "1997": 0.692, + "1998": 0.712, + "1999": 0.71, + "2000": 0.72, + "2001": 0.719, + "2002": 0.724, + "2003": 0.725, + "2004": 0.731, + "2005": 0.733, + "2006": 0.741, + "2007": 0.746, + "2008": 0.752, + "2009": 0.75, + "2010": 0.767, + "2011": 0.778, + "2012": 0.791, + "2013": 0.821, + "2014": 0.829, + "2015": 0.833, + "2016": 0.834, + "2017": 0.842, + "2018": 0.849, + "2019": 0.85, + "2020": 0.841, + "2021": 0.846 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr101", + "Region": "Istanbul", + "1990": 0.69, + "1991": 0.695, + "1992": 0.702, + "1993": 0.71, + "1994": 0.7, + "1995": 0.697, + "1996": 0.695, + "1997": 0.693, + "1998": 0.694, + "1999": 0.699, + "2000": 0.715, + "2001": 0.72, + "2002": 0.731, + "2003": 0.739, + "2004": 0.75, + "2005": 0.75, + "2006": 0.757, + "2007": 0.764, + "2008": 0.767, + "2009": 0.772, + "2010": 0.788, + "2011": 0.799, + "2012": 0.804, + "2013": 0.82, + "2014": 0.833, + "2015": 0.841, + "2016": 0.849, + "2017": 0.859, + "2018": 0.867, + "2019": 0.871, + "2020": 0.862, + "2021": 0.867 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr106", + "Region": "Mediterranean (Adana, Antalya, Burdur, Hatay, Ispa", + "1990": 0.611, + "1991": 0.615, + "1992": 0.621, + "1993": 0.628, + "1994": 0.63, + "1995": 0.638, + "1996": 0.646, + "1997": 0.655, + "1998": 0.667, + "1999": 0.665, + "2000": 0.675, + "2001": 0.673, + "2002": 0.678, + "2003": 0.68, + "2004": 0.681, + "2005": 0.687, + "2006": 0.697, + "2007": 0.703, + "2008": 0.699, + "2009": 0.712, + "2010": 0.736, + "2011": 0.75, + "2012": 0.754, + "2013": 0.786, + "2014": 0.784, + "2015": 0.791, + "2016": 0.795, + "2017": 0.804, + "2018": 0.813, + "2019": 0.819, + "2020": 0.81, + "2021": 0.815 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr110", + "Region": "North East Anatolia (Agri, Erzincan, Erzurum, Kars", + "1990": 0.494, + "1991": 0.497, + "1992": 0.502, + "1993": 0.508, + "1994": 0.508, + "1995": 0.513, + "1996": 0.518, + "1997": 0.523, + "1998": 0.53, + "1999": 0.548, + "2000": 0.575, + "2001": 0.591, + "2002": 0.613, + "2003": 0.63, + "2004": 0.621, + "2005": 0.629, + "2006": 0.642, + "2007": 0.65, + "2008": 0.659, + "2009": 0.664, + "2010": 0.69, + "2011": 0.7, + "2012": 0.71, + "2013": 0.733, + "2014": 0.756, + "2015": 0.77, + "2016": 0.785, + "2017": 0.792, + "2018": 0.793, + "2019": 0.8, + "2020": 0.792, + "2021": 0.797 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr112", + "Region": "South East Anatolia (Adiyaman, Diyarbakir, Gaziant", + "1990": 0.52, + "1991": 0.523, + "1992": 0.528, + "1993": 0.535, + "1994": 0.534, + "1995": 0.539, + "1996": 0.545, + "1997": 0.55, + "1998": 0.559, + "1999": 0.565, + "2000": 0.581, + "2001": 0.587, + "2002": 0.598, + "2003": 0.606, + "2004": 0.599, + "2005": 0.615, + "2006": 0.632, + "2007": 0.64, + "2008": 0.65, + "2009": 0.654, + "2010": 0.683, + "2011": 0.697, + "2012": 0.703, + "2013": 0.745, + "2014": 0.733, + "2015": 0.743, + "2016": 0.746, + "2017": 0.757, + "2018": 0.762, + "2019": 0.765, + "2020": 0.757, + "2021": 0.762 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr105", + "Region": "West Anatolia (Ankara, Konya, Karaman)", + "1990": 0.642, + "1991": 0.646, + "1992": 0.652, + "1993": 0.66, + "1994": 0.666, + "1995": 0.678, + "1996": 0.691, + "1997": 0.704, + "1998": 0.72, + "1999": 0.719, + "2000": 0.729, + "2001": 0.728, + "2002": 0.734, + "2003": 0.736, + "2004": 0.74, + "2005": 0.74, + "2006": 0.747, + "2007": 0.754, + "2008": 0.771, + "2009": 0.766, + "2010": 0.786, + "2011": 0.799, + "2012": 0.811, + "2013": 0.847, + "2014": 0.827, + "2015": 0.833, + "2016": 0.839, + "2017": 0.845, + "2018": 0.85, + "2019": 0.858, + "2020": 0.848, + "2021": 0.854 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr108", + "Region": "West Black Sea (Amasya, Cankiri, Corum, Kastamonu,", + "1990": 0.575, + "1991": 0.579, + "1992": 0.585, + "1993": 0.592, + "1994": 0.595, + "1995": 0.604, + "1996": 0.613, + "1997": 0.623, + "1998": 0.636, + "1999": 0.642, + "2000": 0.658, + "2001": 0.665, + "2002": 0.677, + "2003": 0.685, + "2004": 0.674, + "2005": 0.682, + "2006": 0.694, + "2007": 0.702, + "2008": 0.713, + "2009": 0.714, + "2010": 0.736, + "2011": 0.746, + "2012": 0.755, + "2013": 0.8, + "2014": 0.78, + "2015": 0.79, + "2016": 0.797, + "2017": 0.806, + "2018": 0.809, + "2019": 0.813, + "2020": 0.804, + "2021": 0.809 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr102", + "Region": "West Marmara (Balikesir, Canakkale, Edirne, Kirkla", + "1990": 0.563, + "1991": 0.567, + "1992": 0.572, + "1993": 0.579, + "1994": 0.592, + "1995": 0.61, + "1996": 0.628, + "1997": 0.647, + "1998": 0.668, + "1999": 0.672, + "2000": 0.686, + "2001": 0.689, + "2002": 0.699, + "2003": 0.705, + "2004": 0.718, + "2005": 0.721, + "2006": 0.727, + "2007": 0.734, + "2008": 0.728, + "2009": 0.743, + "2010": 0.764, + "2011": 0.776, + "2012": 0.792, + "2013": 0.826, + "2014": 0.808, + "2015": 0.814, + "2016": 0.822, + "2017": 0.83, + "2018": 0.836, + "2019": 0.842, + "2020": 0.833, + "2021": 0.838 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "National", + "GDLCODE": "TKMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.711, + "2011": 0.72, + "2012": 0.727, + "2013": 0.73, + "2014": 0.734, + "2015": 0.74, + "2016": 0.742, + "2017": 0.741, + "2018": 0.746, + "2019": 0.742, + "2020": 0.741, + "2021": 0.745 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr102", + "Region": "Akhal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.714, + "2011": 0.72, + "2012": 0.724, + "2013": 0.724, + "2014": 0.725, + "2015": 0.727, + "2016": 0.731, + "2017": 0.732, + "2018": 0.738, + "2019": 0.736, + "2020": 0.735, + "2021": 0.739 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr101", + "Region": "Ashgabat City", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.758, + "2011": 0.766, + "2012": 0.771, + "2013": 0.772, + "2014": 0.774, + "2015": 0.778, + "2016": 0.785, + "2017": 0.788, + "2018": 0.797, + "2019": 0.798, + "2020": 0.797, + "2021": 0.801 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr103", + "Region": "Balkan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.728, + "2011": 0.738, + "2012": 0.744, + "2013": 0.748, + "2014": 0.752, + "2015": 0.758, + "2016": 0.758, + "2017": 0.756, + "2018": 0.759, + "2019": 0.753, + "2020": 0.752, + "2021": 0.757 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr104", + "Region": "Dashoguz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.698, + "2011": 0.708, + "2012": 0.714, + "2013": 0.718, + "2014": 0.722, + "2015": 0.727, + "2016": 0.727, + "2017": 0.724, + "2018": 0.726, + "2019": 0.72, + "2020": 0.718, + "2021": 0.723 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr105", + "Region": "Lebap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.706, + "2011": 0.718, + "2012": 0.727, + "2013": 0.732, + "2014": 0.738, + "2015": 0.746, + "2016": 0.748, + "2017": 0.747, + "2018": 0.752, + "2019": 0.748, + "2020": 0.747, + "2021": 0.751 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr106", + "Region": "Mary", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.698, + "2011": 0.708, + "2012": 0.714, + "2013": 0.718, + "2014": 0.721, + "2015": 0.727, + "2016": 0.727, + "2017": 0.724, + "2018": 0.727, + "2019": 0.721, + "2020": 0.72, + "2021": 0.724 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "National", + "GDLCODE": "TUVt", + "Region": "Total", + "1990": 0.559, + "1991": 0.562, + "1992": 0.558, + "1993": 0.57, + "1994": 0.577, + "1995": 0.575, + "1996": 0.573, + "1997": 0.579, + "1998": 0.589, + "1999": 0.592, + "2000": 0.597, + "2001": 0.61, + "2002": 0.62, + "2003": 0.605, + "2004": 0.61, + "2005": 0.61, + "2006": 0.611, + "2007": 0.613, + "2008": 0.618, + "2009": 0.615, + "2010": 0.616, + "2011": 0.616, + "2012": 0.624, + "2013": 0.628, + "2014": 0.627, + "2015": 0.643, + "2016": 0.636, + "2017": 0.634, + "2018": 0.642, + "2019": 0.635, + "2020": 0.639, + "2021": 0.641 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr103", + "Region": "Funafuti", + "1990": 0.578, + "1991": 0.581, + "1992": 0.576, + "1993": 0.589, + "1994": 0.596, + "1995": 0.595, + "1996": 0.593, + "1997": 0.599, + "1998": 0.608, + "1999": 0.612, + "2000": 0.617, + "2001": 0.63, + "2002": 0.64, + "2003": 0.625, + "2004": 0.63, + "2005": 0.63, + "2006": 0.631, + "2007": 0.633, + "2008": 0.638, + "2009": 0.636, + "2010": 0.636, + "2011": 0.637, + "2012": 0.644, + "2013": 0.649, + "2014": 0.648, + "2015": 0.664, + "2016": 0.657, + "2017": 0.654, + "2018": 0.662, + "2019": 0.656, + "2020": 0.66, + "2021": 0.662 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "National", + "GDLCODE": "UGAt", + "Region": "Total", + "1990": 0.329, + "1991": 0.331, + "1992": 0.325, + "1993": 0.332, + "1994": 0.336, + "1995": 0.342, + "1996": 0.354, + "1997": 0.364, + "1998": 0.373, + "1999": 0.385, + "2000": 0.394, + "2001": 0.404, + "2002": 0.417, + "2003": 0.429, + "2004": 0.444, + "2005": 0.454, + "2006": 0.466, + "2007": 0.476, + "2008": 0.484, + "2009": 0.494, + "2010": 0.502, + "2011": 0.506, + "2012": 0.504, + "2013": 0.509, + "2014": 0.512, + "2015": 0.517, + "2016": 0.519, + "2017": 0.52, + "2018": 0.522, + "2019": 0.525, + "2020": 0.524, + "2021": 0.525 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr101", + "Region": "Central 1 (Central South)", + "1990": 0.34, + "1991": 0.341, + "1992": 0.336, + "1993": 0.343, + "1994": 0.347, + "1995": 0.354, + "1996": 0.365, + "1997": 0.375, + "1998": 0.384, + "1999": 0.396, + "2000": 0.405, + "2001": 0.415, + "2002": 0.428, + "2003": 0.441, + "2004": 0.456, + "2005": 0.466, + "2006": 0.479, + "2007": 0.489, + "2008": 0.497, + "2009": 0.507, + "2010": 0.516, + "2011": 0.519, + "2012": 0.525, + "2013": 0.539, + "2014": 0.551, + "2015": 0.564, + "2016": 0.575, + "2017": 0.576, + "2018": 0.579, + "2019": 0.582, + "2020": 0.581, + "2021": 0.582 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr102", + "Region": "Central 2 (Central North)", + "1990": 0.344, + "1991": 0.345, + "1992": 0.34, + "1993": 0.347, + "1994": 0.351, + "1995": 0.358, + "1996": 0.369, + "1997": 0.38, + "1998": 0.389, + "1999": 0.402, + "2000": 0.411, + "2001": 0.421, + "2002": 0.434, + "2003": 0.447, + "2004": 0.462, + "2005": 0.472, + "2006": 0.485, + "2007": 0.495, + "2008": 0.504, + "2009": 0.514, + "2010": 0.523, + "2011": 0.527, + "2012": 0.523, + "2013": 0.525, + "2014": 0.527, + "2015": 0.53, + "2016": 0.531, + "2017": 0.531, + "2018": 0.534, + "2019": 0.537, + "2020": 0.536, + "2021": 0.537 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr104", + "Region": "East Central (Busoga)", + "1990": 0.34, + "1991": 0.341, + "1992": 0.335, + "1993": 0.343, + "1994": 0.347, + "1995": 0.354, + "1996": 0.365, + "1997": 0.376, + "1998": 0.385, + "1999": 0.398, + "2000": 0.407, + "2001": 0.417, + "2002": 0.43, + "2003": 0.443, + "2004": 0.458, + "2005": 0.468, + "2006": 0.481, + "2007": 0.487, + "2008": 0.492, + "2009": 0.499, + "2010": 0.504, + "2011": 0.505, + "2012": 0.503, + "2013": 0.508, + "2014": 0.512, + "2015": 0.517, + "2016": 0.52, + "2017": 0.52, + "2018": 0.523, + "2019": 0.525, + "2020": 0.525, + "2021": 0.526 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr105", + "Region": "Eastern (Bukedi, Bugishu, Teso)", + "1990": 0.333, + "1991": 0.335, + "1992": 0.329, + "1993": 0.336, + "1994": 0.34, + "1995": 0.347, + "1996": 0.358, + "1997": 0.369, + "1998": 0.378, + "1999": 0.391, + "2000": 0.4, + "2001": 0.41, + "2002": 0.423, + "2003": 0.436, + "2004": 0.451, + "2005": 0.461, + "2006": 0.473, + "2007": 0.481, + "2008": 0.487, + "2009": 0.494, + "2010": 0.501, + "2011": 0.503, + "2012": 0.502, + "2013": 0.507, + "2014": 0.511, + "2015": 0.515, + "2016": 0.518, + "2017": 0.519, + "2018": 0.521, + "2019": 0.524, + "2020": 0.523, + "2021": 0.524 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr103", + "Region": "Kampala", + "1990": 0.438, + "1991": 0.441, + "1992": 0.436, + "1993": 0.444, + "1994": 0.449, + "1995": 0.457, + "1996": 0.469, + "1997": 0.481, + "1998": 0.491, + "1999": 0.505, + "2000": 0.515, + "2001": 0.527, + "2002": 0.541, + "2003": 0.557, + "2004": 0.574, + "2005": 0.588, + "2006": 0.603, + "2007": 0.612, + "2008": 0.62, + "2009": 0.63, + "2010": 0.639, + "2011": 0.637, + "2012": 0.627, + "2013": 0.628, + "2014": 0.628, + "2015": 0.628, + "2016": 0.626, + "2017": 0.628, + "2018": 0.632, + "2019": 0.634, + "2020": 0.634, + "2021": 0.635 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr106", + "Region": "North (Karamoja, Lango, Acholi)", + "1990": 0.292, + "1991": 0.293, + "1992": 0.287, + "1993": 0.294, + "1994": 0.297, + "1995": 0.303, + "1996": 0.314, + "1997": 0.323, + "1998": 0.332, + "1999": 0.343, + "2000": 0.351, + "2001": 0.36, + "2002": 0.372, + "2003": 0.383, + "2004": 0.397, + "2005": 0.405, + "2006": 0.417, + "2007": 0.425, + "2008": 0.433, + "2009": 0.442, + "2010": 0.449, + "2011": 0.453, + "2012": 0.452, + "2013": 0.457, + "2014": 0.461, + "2015": 0.465, + "2016": 0.467, + "2017": 0.468, + "2018": 0.47, + "2019": 0.472, + "2020": 0.472, + "2021": 0.473 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr109", + "Region": "Southwest (Ankole, Kigezi)", + "1990": 0.314, + "1991": 0.315, + "1992": 0.31, + "1993": 0.317, + "1994": 0.32, + "1995": 0.326, + "1996": 0.337, + "1997": 0.347, + "1998": 0.356, + "1999": 0.368, + "2000": 0.376, + "2001": 0.386, + "2002": 0.399, + "2003": 0.411, + "2004": 0.425, + "2005": 0.434, + "2006": 0.446, + "2007": 0.455, + "2008": 0.462, + "2009": 0.471, + "2010": 0.478, + "2011": 0.482, + "2012": 0.484, + "2013": 0.491, + "2014": 0.498, + "2015": 0.504, + "2016": 0.51, + "2017": 0.51, + "2018": 0.513, + "2019": 0.515, + "2020": 0.515, + "2021": 0.515 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr107", + "Region": "West Nile", + "1990": 0.308, + "1991": 0.309, + "1992": 0.304, + "1993": 0.311, + "1994": 0.314, + "1995": 0.32, + "1996": 0.331, + "1997": 0.341, + "1998": 0.35, + "1999": 0.362, + "2000": 0.37, + "2001": 0.38, + "2002": 0.393, + "2003": 0.405, + "2004": 0.419, + "2005": 0.428, + "2006": 0.44, + "2007": 0.446, + "2008": 0.452, + "2009": 0.458, + "2010": 0.463, + "2011": 0.464, + "2012": 0.463, + "2013": 0.467, + "2014": 0.471, + "2015": 0.475, + "2016": 0.477, + "2017": 0.478, + "2018": 0.48, + "2019": 0.482, + "2020": 0.482, + "2021": 0.483 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr108", + "Region": "Western (Bunyoro, Tooro)", + "1990": 0.316, + "1991": 0.317, + "1992": 0.311, + "1993": 0.318, + "1994": 0.321, + "1995": 0.328, + "1996": 0.339, + "1997": 0.349, + "1998": 0.358, + "1999": 0.37, + "2000": 0.378, + "2001": 0.388, + "2002": 0.401, + "2003": 0.413, + "2004": 0.427, + "2005": 0.436, + "2006": 0.448, + "2007": 0.459, + "2008": 0.468, + "2009": 0.479, + "2010": 0.489, + "2011": 0.494, + "2012": 0.489, + "2013": 0.49, + "2014": 0.49, + "2015": 0.491, + "2016": 0.49, + "2017": 0.491, + "2018": 0.493, + "2019": 0.495, + "2020": 0.495, + "2021": 0.496 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "National", + "GDLCODE": "UKRt", + "Region": "Total", + "1990": 0.729, + "1991": 0.723, + "1992": 0.715, + "1993": 0.703, + "1994": 0.689, + "1995": 0.684, + "1996": 0.685, + "1997": 0.689, + "1998": 0.696, + "1999": 0.698, + "2000": 0.7, + "2001": 0.715, + "2002": 0.722, + "2003": 0.732, + "2004": 0.74, + "2005": 0.743, + "2006": 0.751, + "2007": 0.757, + "2008": 0.761, + "2009": 0.758, + "2010": 0.764, + "2011": 0.769, + "2012": 0.773, + "2013": 0.773, + "2014": 0.773, + "2015": 0.774, + "2016": 0.779, + "2017": 0.782, + "2018": 0.783, + "2019": 0.786, + "2020": 0.775, + "2021": 0.773 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr102", + "Region": "Central", + "1990": 0.714, + "1991": 0.708, + "1992": 0.7, + "1993": 0.688, + "1994": 0.675, + "1995": 0.67, + "1996": 0.67, + "1997": 0.675, + "1998": 0.681, + "1999": 0.684, + "2000": 0.685, + "2001": 0.7, + "2002": 0.708, + "2003": 0.717, + "2004": 0.725, + "2005": 0.728, + "2006": 0.735, + "2007": 0.74, + "2008": 0.746, + "2009": 0.745, + "2010": 0.752, + "2011": 0.76, + "2012": 0.765, + "2013": 0.765, + "2014": 0.766, + "2015": 0.767, + "2016": 0.771, + "2017": 0.775, + "2018": 0.775, + "2019": 0.778, + "2020": 0.767, + "2021": 0.765 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr103", + "Region": "East", + "1990": 0.739, + "1991": 0.733, + "1992": 0.725, + "1993": 0.713, + "1994": 0.7, + "1995": 0.695, + "1996": 0.695, + "1997": 0.7, + "1998": 0.706, + "1999": 0.708, + "2000": 0.71, + "2001": 0.725, + "2002": 0.733, + "2003": 0.742, + "2004": 0.75, + "2005": 0.754, + "2006": 0.762, + "2007": 0.768, + "2008": 0.771, + "2009": 0.768, + "2010": 0.772, + "2011": 0.777, + "2012": 0.78, + "2013": 0.779, + "2014": 0.78, + "2015": 0.781, + "2016": 0.785, + "2017": 0.789, + "2018": 0.79, + "2019": 0.792, + "2020": 0.782, + "2021": 0.779 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr101", + "Region": "North", + "1990": 0.745, + "1991": 0.739, + "1992": 0.73, + "1993": 0.718, + "1994": 0.705, + "1995": 0.7, + "1996": 0.7, + "1997": 0.705, + "1998": 0.711, + "1999": 0.714, + "2000": 0.715, + "2001": 0.731, + "2002": 0.739, + "2003": 0.748, + "2004": 0.756, + "2005": 0.759, + "2006": 0.762, + "2007": 0.762, + "2008": 0.765, + "2009": 0.762, + "2010": 0.767, + "2011": 0.773, + "2012": 0.776, + "2013": 0.776, + "2014": 0.776, + "2015": 0.777, + "2016": 0.781, + "2017": 0.785, + "2018": 0.786, + "2019": 0.789, + "2020": 0.778, + "2021": 0.775 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr104", + "Region": "South", + "1990": 0.718, + "1991": 0.712, + "1992": 0.704, + "1993": 0.692, + "1994": 0.679, + "1995": 0.674, + "1996": 0.675, + "1997": 0.679, + "1998": 0.686, + "1999": 0.688, + "2000": 0.689, + "2001": 0.704, + "2002": 0.712, + "2003": 0.721, + "2004": 0.729, + "2005": 0.732, + "2006": 0.748, + "2007": 0.762, + "2008": 0.766, + "2009": 0.764, + "2010": 0.769, + "2011": 0.775, + "2012": 0.778, + "2013": 0.778, + "2014": 0.779, + "2015": 0.78, + "2016": 0.784, + "2017": 0.788, + "2018": 0.788, + "2019": 0.791, + "2020": 0.781, + "2021": 0.778 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr105", + "Region": "West", + "1990": 0.717, + "1991": 0.711, + "1992": 0.702, + "1993": 0.69, + "1994": 0.677, + "1995": 0.672, + "1996": 0.672, + "1997": 0.677, + "1998": 0.683, + "1999": 0.686, + "2000": 0.687, + "2001": 0.702, + "2002": 0.71, + "2003": 0.719, + "2004": 0.727, + "2005": 0.73, + "2006": 0.737, + "2007": 0.741, + "2008": 0.745, + "2009": 0.744, + "2010": 0.75, + "2011": 0.756, + "2012": 0.76, + "2013": 0.76, + "2014": 0.76, + "2015": 0.761, + "2016": 0.765, + "2017": 0.769, + "2018": 0.77, + "2019": 0.773, + "2020": 0.762, + "2021": 0.76 + }, + { + "Country": "United Arab Emirates", + "Continent": "Asia/Pacific", + "ISO_Code": "ARE", + "Level": "National", + "GDLCODE": "AREt", + "Region": "Total", + "1990": 0.728, + "1991": 0.739, + "1992": 0.742, + "1993": 0.748, + "1994": 0.755, + "1995": 0.762, + "1996": 0.767, + "1997": 0.773, + "1998": 0.779, + "1999": 0.787, + "2000": 0.796, + "2001": 0.8, + "2002": 0.804, + "2003": 0.814, + "2004": 0.818, + "2005": 0.822, + "2006": 0.827, + "2007": 0.831, + "2008": 0.834, + "2009": 0.833, + "2010": 0.835, + "2011": 0.84, + "2012": 0.846, + "2013": 0.852, + "2014": 0.859, + "2015": 0.865, + "2016": 0.87, + "2017": 0.897, + "2018": 0.909, + "2019": 0.92, + "2020": 0.912, + "2021": 0.911 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "National", + "GDLCODE": "GBRt", + "Region": "Total", + "1990": 0.804, + "1991": 0.809, + "1992": 0.816, + "1993": 0.82, + "1994": 0.828, + "1995": 0.828, + "1996": 0.834, + "1997": 0.842, + "1998": 0.848, + "1999": 0.855, + "2000": 0.862, + "2001": 0.868, + "2002": 0.873, + "2003": 0.878, + "2004": 0.889, + "2005": 0.895, + "2006": 0.894, + "2007": 0.897, + "2008": 0.9, + "2009": 0.906, + "2010": 0.912, + "2011": 0.908, + "2012": 0.909, + "2013": 0.922, + "2014": 0.924, + "2015": 0.924, + "2016": 0.927, + "2017": 0.93, + "2018": 0.929, + "2019": 0.935, + "2020": 0.924, + "2021": 0.929 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr104", + "Region": "East Midlands", + "1990": 0.793, + "1991": 0.797, + "1992": 0.804, + "1993": 0.808, + "1994": 0.816, + "1995": 0.816, + "1996": 0.822, + "1997": 0.83, + "1998": 0.836, + "1999": 0.842, + "2000": 0.851, + "2001": 0.857, + "2002": 0.861, + "2003": 0.866, + "2004": 0.878, + "2005": 0.883, + "2006": 0.883, + "2007": 0.885, + "2008": 0.887, + "2009": 0.892, + "2010": 0.899, + "2011": 0.895, + "2012": 0.894, + "2013": 0.909, + "2014": 0.91, + "2015": 0.908, + "2016": 0.913, + "2017": 0.915, + "2018": 0.913, + "2019": 0.92, + "2020": 0.909, + "2021": 0.914 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr106", + "Region": "East of England", + "1990": 0.801, + "1991": 0.806, + "1992": 0.813, + "1993": 0.816, + "1994": 0.824, + "1995": 0.824, + "1996": 0.83, + "1997": 0.838, + "1998": 0.845, + "1999": 0.852, + "2000": 0.86, + "2001": 0.867, + "2002": 0.871, + "2003": 0.876, + "2004": 0.887, + "2005": 0.89, + "2006": 0.889, + "2007": 0.892, + "2008": 0.895, + "2009": 0.899, + "2010": 0.904, + "2011": 0.899, + "2012": 0.902, + "2013": 0.914, + "2014": 0.916, + "2015": 0.914, + "2016": 0.916, + "2017": 0.919, + "2018": 0.917, + "2019": 0.923, + "2020": 0.912, + "2021": 0.917 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr107", + "Region": "London", + "1990": 0.87, + "1991": 0.874, + "1992": 0.882, + "1993": 0.886, + "1994": 0.891, + "1995": 0.891, + "1996": 0.896, + "1997": 0.904, + "1998": 0.91, + "1999": 0.916, + "2000": 0.924, + "2001": 0.929, + "2002": 0.932, + "2003": 0.936, + "2004": 0.944, + "2005": 0.951, + "2006": 0.948, + "2007": 0.948, + "2008": 0.953, + "2009": 0.954, + "2010": 0.957, + "2011": 0.952, + "2012": 0.955, + "2013": 0.967, + "2014": 0.968, + "2015": 0.965, + "2016": 0.971, + "2017": 0.972, + "2018": 0.971, + "2019": 0.978, + "2020": 0.972, + "2021": 0.973 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr101", + "Region": "North East", + "1990": 0.782, + "1991": 0.786, + "1992": 0.794, + "1993": 0.797, + "1994": 0.806, + "1995": 0.806, + "1996": 0.812, + "1997": 0.82, + "1998": 0.827, + "1999": 0.833, + "2000": 0.842, + "2001": 0.848, + "2002": 0.853, + "2003": 0.859, + "2004": 0.868, + "2005": 0.877, + "2006": 0.876, + "2007": 0.877, + "2008": 0.88, + "2009": 0.885, + "2010": 0.892, + "2011": 0.887, + "2012": 0.887, + "2013": 0.898, + "2014": 0.899, + "2015": 0.902, + "2016": 0.903, + "2017": 0.905, + "2018": 0.902, + "2019": 0.907, + "2020": 0.896, + "2021": 0.901 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr102", + "Region": "North West", + "1990": 0.791, + "1991": 0.796, + "1992": 0.803, + "1993": 0.806, + "1994": 0.815, + "1995": 0.815, + "1996": 0.82, + "1997": 0.828, + "1998": 0.835, + "1999": 0.841, + "2000": 0.85, + "2001": 0.854, + "2002": 0.859, + "2003": 0.864, + "2004": 0.876, + "2005": 0.882, + "2006": 0.882, + "2007": 0.884, + "2008": 0.887, + "2009": 0.893, + "2010": 0.899, + "2011": 0.893, + "2012": 0.895, + "2013": 0.907, + "2014": 0.911, + "2015": 0.912, + "2016": 0.914, + "2017": 0.917, + "2018": 0.916, + "2019": 0.922, + "2020": 0.91, + "2021": 0.915 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr112", + "Region": "Northern Ireland", + "1990": 0.782, + "1991": 0.786, + "1992": 0.793, + "1993": 0.797, + "1994": 0.804, + "1995": 0.804, + "1996": 0.81, + "1997": 0.818, + "1998": 0.825, + "1999": 0.832, + "2000": 0.841, + "2001": 0.849, + "2002": 0.855, + "2003": 0.861, + "2004": 0.87, + "2005": 0.878, + "2006": 0.876, + "2007": 0.878, + "2008": 0.88, + "2009": 0.882, + "2010": 0.887, + "2011": 0.882, + "2012": 0.884, + "2013": 0.896, + "2014": 0.891, + "2015": 0.893, + "2016": 0.893, + "2017": 0.895, + "2018": 0.897, + "2019": 0.902, + "2020": 0.891, + "2021": 0.896 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr111", + "Region": "Scotland", + "1990": 0.801, + "1991": 0.805, + "1992": 0.812, + "1993": 0.816, + "1994": 0.821, + "1995": 0.82, + "1996": 0.826, + "1997": 0.833, + "1998": 0.839, + "1999": 0.844, + "2000": 0.851, + "2001": 0.857, + "2002": 0.861, + "2003": 0.864, + "2004": 0.876, + "2005": 0.883, + "2006": 0.882, + "2007": 0.886, + "2008": 0.891, + "2009": 0.899, + "2010": 0.9, + "2011": 0.896, + "2012": 0.896, + "2013": 0.911, + "2014": 0.914, + "2015": 0.915, + "2016": 0.921, + "2017": 0.924, + "2018": 0.925, + "2019": 0.928, + "2020": 0.916, + "2021": 0.921 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr108", + "Region": "South East", + "1990": 0.817, + "1991": 0.821, + "1992": 0.829, + "1993": 0.832, + "1994": 0.841, + "1995": 0.841, + "1996": 0.847, + "1997": 0.855, + "1998": 0.862, + "1999": 0.868, + "2000": 0.877, + "2001": 0.882, + "2002": 0.888, + "2003": 0.892, + "2004": 0.903, + "2005": 0.909, + "2006": 0.908, + "2007": 0.91, + "2008": 0.916, + "2009": 0.92, + "2010": 0.925, + "2011": 0.921, + "2012": 0.923, + "2013": 0.935, + "2014": 0.938, + "2015": 0.937, + "2016": 0.938, + "2017": 0.941, + "2018": 0.941, + "2019": 0.948, + "2020": 0.937, + "2021": 0.942 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr109", + "Region": "South West", + "1990": 0.81, + "1991": 0.815, + "1992": 0.822, + "1993": 0.826, + "1994": 0.834, + "1995": 0.834, + "1996": 0.839, + "1997": 0.847, + "1998": 0.854, + "1999": 0.86, + "2000": 0.868, + "2001": 0.874, + "2002": 0.878, + "2003": 0.883, + "2004": 0.894, + "2005": 0.898, + "2006": 0.898, + "2007": 0.899, + "2008": 0.903, + "2009": 0.907, + "2010": 0.914, + "2011": 0.908, + "2012": 0.91, + "2013": 0.919, + "2014": 0.925, + "2015": 0.923, + "2016": 0.923, + "2017": 0.929, + "2018": 0.926, + "2019": 0.931, + "2020": 0.92, + "2021": 0.925 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr110", + "Region": "Wales", + "1990": 0.781, + "1991": 0.785, + "1992": 0.792, + "1993": 0.795, + "1994": 0.804, + "1995": 0.803, + "1996": 0.808, + "1997": 0.816, + "1998": 0.822, + "1999": 0.827, + "2000": 0.837, + "2001": 0.841, + "2002": 0.848, + "2003": 0.853, + "2004": 0.863, + "2005": 0.868, + "2006": 0.868, + "2007": 0.868, + "2008": 0.872, + "2009": 0.878, + "2010": 0.883, + "2011": 0.881, + "2012": 0.88, + "2013": 0.892, + "2014": 0.891, + "2015": 0.893, + "2016": 0.89, + "2017": 0.898, + "2018": 0.897, + "2019": 0.904, + "2020": 0.893, + "2021": 0.898 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr105", + "Region": "West Midlands", + "1990": 0.791, + "1991": 0.796, + "1992": 0.803, + "1993": 0.806, + "1994": 0.815, + "1995": 0.814, + "1996": 0.82, + "1997": 0.828, + "1998": 0.834, + "1999": 0.841, + "2000": 0.849, + "2001": 0.855, + "2002": 0.86, + "2003": 0.863, + "2004": 0.876, + "2005": 0.88, + "2006": 0.878, + "2007": 0.88, + "2008": 0.883, + "2009": 0.887, + "2010": 0.892, + "2011": 0.889, + "2012": 0.89, + "2013": 0.902, + "2014": 0.906, + "2015": 0.908, + "2016": 0.91, + "2017": 0.914, + "2018": 0.913, + "2019": 0.919, + "2020": 0.908, + "2021": 0.913 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr103", + "Region": "Yorkshire and The Humber", + "1990": 0.794, + "1991": 0.798, + "1992": 0.805, + "1993": 0.809, + "1994": 0.817, + "1995": 0.817, + "1996": 0.822, + "1997": 0.831, + "1998": 0.837, + "1999": 0.844, + "2000": 0.852, + "2001": 0.857, + "2002": 0.861, + "2003": 0.868, + "2004": 0.878, + "2005": 0.882, + "2006": 0.881, + "2007": 0.883, + "2008": 0.887, + "2009": 0.893, + "2010": 0.895, + "2011": 0.89, + "2012": 0.891, + "2013": 0.904, + "2014": 0.906, + "2015": 0.906, + "2016": 0.908, + "2017": 0.911, + "2018": 0.91, + "2019": 0.914, + "2020": 0.903, + "2021": 0.908 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "National", + "GDLCODE": "USAt", + "Region": "Total", + "1990": 0.872, + "1991": 0.873, + "1992": 0.877, + "1993": 0.88, + "1994": 0.884, + "1995": 0.885, + "1996": 0.887, + "1997": 0.889, + "1998": 0.893, + "1999": 0.889, + "2000": 0.891, + "2001": 0.892, + "2002": 0.893, + "2003": 0.895, + "2004": 0.898, + "2005": 0.9, + "2006": 0.904, + "2007": 0.906, + "2008": 0.906, + "2009": 0.908, + "2010": 0.911, + "2011": 0.913, + "2012": 0.916, + "2013": 0.917, + "2014": 0.919, + "2015": 0.92, + "2016": 0.922, + "2017": 0.924, + "2018": 0.927, + "2019": 0.93, + "2020": 0.92, + "2021": 0.921 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr101", + "Region": "Alabama", + "1990": 0.834, + "1991": 0.835, + "1992": 0.839, + "1993": 0.843, + "1994": 0.846, + "1995": 0.847, + "1996": 0.85, + "1997": 0.852, + "1998": 0.855, + "1999": 0.851, + "2000": 0.853, + "2001": 0.854, + "2002": 0.855, + "2003": 0.857, + "2004": 0.861, + "2005": 0.863, + "2006": 0.866, + "2007": 0.867, + "2008": 0.867, + "2009": 0.868, + "2010": 0.871, + "2011": 0.873, + "2012": 0.876, + "2013": 0.878, + "2014": 0.879, + "2015": 0.88, + "2016": 0.882, + "2017": 0.884, + "2018": 0.886, + "2019": 0.889, + "2020": 0.879, + "2021": 0.881 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr102", + "Region": "Alaska", + "1990": 0.912, + "1991": 0.912, + "1992": 0.915, + "1993": 0.917, + "1994": 0.92, + "1995": 0.92, + "1996": 0.921, + "1997": 0.922, + "1998": 0.921, + "1999": 0.914, + "2000": 0.913, + "2001": 0.915, + "2002": 0.916, + "2003": 0.916, + "2004": 0.919, + "2005": 0.921, + "2006": 0.926, + "2007": 0.929, + "2008": 0.93, + "2009": 0.932, + "2010": 0.933, + "2011": 0.933, + "2012": 0.934, + "2013": 0.934, + "2014": 0.934, + "2015": 0.933, + "2016": 0.935, + "2017": 0.936, + "2018": 0.938, + "2019": 0.939, + "2020": 0.931, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr103", + "Region": "Arizona", + "1990": 0.873, + "1991": 0.873, + "1992": 0.876, + "1993": 0.879, + "1994": 0.882, + "1995": 0.882, + "1996": 0.884, + "1997": 0.885, + "1998": 0.89, + "1999": 0.886, + "2000": 0.888, + "2001": 0.888, + "2002": 0.888, + "2003": 0.89, + "2004": 0.893, + "2005": 0.895, + "2006": 0.9, + "2007": 0.902, + "2008": 0.901, + "2009": 0.9, + "2010": 0.903, + "2011": 0.904, + "2012": 0.906, + "2013": 0.907, + "2014": 0.907, + "2015": 0.907, + "2016": 0.909, + "2017": 0.911, + "2018": 0.914, + "2019": 0.916, + "2020": 0.907, + "2021": 0.908 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr104", + "Region": "Arkansas", + "1990": 0.833, + "1991": 0.835, + "1992": 0.839, + "1993": 0.842, + "1994": 0.846, + "1995": 0.847, + "1996": 0.85, + "1997": 0.851, + "1998": 0.854, + "1999": 0.851, + "2000": 0.853, + "2001": 0.853, + "2002": 0.855, + "2003": 0.857, + "2004": 0.861, + "2005": 0.862, + "2006": 0.865, + "2007": 0.866, + "2008": 0.867, + "2009": 0.868, + "2010": 0.872, + "2011": 0.874, + "2012": 0.876, + "2013": 0.878, + "2014": 0.88, + "2015": 0.88, + "2016": 0.882, + "2017": 0.884, + "2018": 0.886, + "2019": 0.889, + "2020": 0.879, + "2021": 0.881 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr105", + "Region": "California", + "1990": 0.879, + "1991": 0.879, + "1992": 0.883, + "1993": 0.886, + "1994": 0.889, + "1995": 0.889, + "1996": 0.891, + "1997": 0.893, + "1998": 0.897, + "1999": 0.893, + "2000": 0.897, + "2001": 0.897, + "2002": 0.898, + "2003": 0.9, + "2004": 0.905, + "2005": 0.907, + "2006": 0.912, + "2007": 0.914, + "2008": 0.915, + "2009": 0.915, + "2010": 0.918, + "2011": 0.92, + "2012": 0.923, + "2013": 0.925, + "2014": 0.927, + "2015": 0.929, + "2016": 0.932, + "2017": 0.934, + "2018": 0.937, + "2019": 0.939, + "2020": 0.929, + "2021": 0.931 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr106", + "Region": "Colorado", + "1990": 0.903, + "1991": 0.903, + "1992": 0.907, + "1993": 0.91, + "1994": 0.912, + "1995": 0.913, + "1996": 0.915, + "1997": 0.916, + "1998": 0.922, + "1999": 0.918, + "2000": 0.921, + "2001": 0.921, + "2002": 0.92, + "2003": 0.92, + "2004": 0.922, + "2005": 0.923, + "2006": 0.926, + "2007": 0.929, + "2008": 0.929, + "2009": 0.93, + "2010": 0.933, + "2011": 0.934, + "2012": 0.937, + "2013": 0.939, + "2014": 0.941, + "2015": 0.942, + "2016": 0.943, + "2017": 0.946, + "2018": 0.948, + "2019": 0.951, + "2020": 0.941, + "2021": 0.942 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr107", + "Region": "Connecticut", + "1990": 0.906, + "1991": 0.907, + "1992": 0.911, + "1993": 0.914, + "1994": 0.917, + "1995": 0.918, + "1996": 0.92, + "1997": 0.922, + "1998": 0.926, + "1999": 0.921, + "2000": 0.925, + "2001": 0.927, + "2002": 0.927, + "2003": 0.928, + "2004": 0.934, + "2005": 0.936, + "2006": 0.939, + "2007": 0.941, + "2008": 0.943, + "2009": 0.945, + "2010": 0.947, + "2011": 0.948, + "2012": 0.95, + "2013": 0.95, + "2014": 0.951, + "2015": 0.951, + "2016": 0.953, + "2017": 0.954, + "2018": 0.956, + "2019": 0.958, + "2020": 0.95, + "2021": 0.948 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr108", + "Region": "Delaware", + "1990": 0.89, + "1991": 0.892, + "1992": 0.896, + "1993": 0.9, + "1994": 0.903, + "1995": 0.905, + "1996": 0.907, + "1997": 0.909, + "1998": 0.915, + "1999": 0.912, + "2000": 0.913, + "2001": 0.913, + "2002": 0.913, + "2003": 0.914, + "2004": 0.915, + "2005": 0.915, + "2006": 0.918, + "2007": 0.92, + "2008": 0.919, + "2009": 0.923, + "2010": 0.925, + "2011": 0.927, + "2012": 0.929, + "2013": 0.929, + "2014": 0.932, + "2015": 0.933, + "2016": 0.934, + "2017": 0.935, + "2018": 0.937, + "2019": 0.939, + "2020": 0.931, + "2021": 0.929 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr109", + "Region": "District of Columbia", + "1990": 0.867, + "1991": 0.87, + "1992": 0.874, + "1993": 0.877, + "1994": 0.88, + "1995": 0.88, + "1996": 0.885, + "1997": 0.888, + "1998": 0.894, + "1999": 0.891, + "2000": 0.896, + "2001": 0.897, + "2002": 0.899, + "2003": 0.901, + "2004": 0.905, + "2005": 0.906, + "2006": 0.913, + "2007": 0.918, + "2008": 0.923, + "2009": 0.929, + "2010": 0.935, + "2011": 0.936, + "2012": 0.939, + "2013": 0.941, + "2014": 0.942, + "2015": 0.943, + "2016": 0.945, + "2017": 0.946, + "2018": 0.947, + "2019": 0.949, + "2020": 0.941, + "2021": 0.94 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr110", + "Region": "Florida", + "1990": 0.867, + "1991": 0.868, + "1992": 0.872, + "1993": 0.875, + "1994": 0.879, + "1995": 0.88, + "1996": 0.882, + "1997": 0.884, + "1998": 0.889, + "1999": 0.884, + "2000": 0.887, + "2001": 0.889, + "2002": 0.89, + "2003": 0.892, + "2004": 0.895, + "2005": 0.897, + "2006": 0.901, + "2007": 0.902, + "2008": 0.9, + "2009": 0.9, + "2010": 0.902, + "2011": 0.903, + "2012": 0.905, + "2013": 0.907, + "2014": 0.909, + "2015": 0.91, + "2016": 0.912, + "2017": 0.914, + "2018": 0.917, + "2019": 0.919, + "2020": 0.909, + "2021": 0.911 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr111", + "Region": "Georgia", + "1990": 0.854, + "1991": 0.856, + "1992": 0.86, + "1993": 0.865, + "1994": 0.868, + "1995": 0.87, + "1996": 0.873, + "1997": 0.875, + "1998": 0.88, + "1999": 0.877, + "2000": 0.88, + "2001": 0.881, + "2002": 0.881, + "2003": 0.882, + "2004": 0.886, + "2005": 0.888, + "2006": 0.89, + "2007": 0.892, + "2008": 0.89, + "2009": 0.891, + "2010": 0.894, + "2011": 0.896, + "2012": 0.898, + "2013": 0.9, + "2014": 0.902, + "2015": 0.903, + "2016": 0.905, + "2017": 0.908, + "2018": 0.91, + "2019": 0.913, + "2020": 0.903, + "2021": 0.904 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr112", + "Region": "Hawaii", + "1990": 0.899, + "1991": 0.9, + "1992": 0.903, + "1993": 0.906, + "1994": 0.909, + "1995": 0.91, + "1996": 0.912, + "1997": 0.913, + "1998": 0.914, + "1999": 0.909, + "2000": 0.911, + "2001": 0.911, + "2002": 0.912, + "2003": 0.915, + "2004": 0.919, + "2005": 0.921, + "2006": 0.925, + "2007": 0.927, + "2008": 0.928, + "2009": 0.928, + "2010": 0.932, + "2011": 0.933, + "2012": 0.936, + "2013": 0.937, + "2014": 0.938, + "2015": 0.939, + "2016": 0.941, + "2017": 0.943, + "2018": 0.946, + "2019": 0.949, + "2020": 0.939, + "2021": 0.94 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr113", + "Region": "Idaho", + "1990": 0.868, + "1991": 0.869, + "1992": 0.872, + "1993": 0.876, + "1994": 0.878, + "1995": 0.879, + "1996": 0.881, + "1997": 0.882, + "1998": 0.886, + "1999": 0.883, + "2000": 0.888, + "2001": 0.886, + "2002": 0.886, + "2003": 0.886, + "2004": 0.889, + "2005": 0.89, + "2006": 0.895, + "2007": 0.897, + "2008": 0.897, + "2009": 0.897, + "2010": 0.9, + "2011": 0.901, + "2012": 0.902, + "2013": 0.904, + "2014": 0.906, + "2015": 0.906, + "2016": 0.908, + "2017": 0.91, + "2018": 0.912, + "2019": 0.915, + "2020": 0.905, + "2021": 0.907 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr114", + "Region": "Illinois", + "1990": 0.877, + "1991": 0.879, + "1992": 0.882, + "1993": 0.886, + "1994": 0.889, + "1995": 0.89, + "1996": 0.893, + "1997": 0.895, + "1998": 0.899, + "1999": 0.894, + "2000": 0.897, + "2001": 0.898, + "2002": 0.899, + "2003": 0.901, + "2004": 0.905, + "2005": 0.907, + "2006": 0.912, + "2007": 0.915, + "2008": 0.914, + "2009": 0.916, + "2010": 0.92, + "2011": 0.922, + "2012": 0.925, + "2013": 0.926, + "2014": 0.927, + "2015": 0.928, + "2016": 0.93, + "2017": 0.932, + "2018": 0.935, + "2019": 0.937, + "2020": 0.928, + "2021": 0.929 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr115", + "Region": "Indiana", + "1990": 0.865, + "1991": 0.866, + "1992": 0.869, + "1993": 0.873, + "1994": 0.875, + "1995": 0.876, + "1996": 0.878, + "1997": 0.88, + "1998": 0.885, + "1999": 0.88, + "2000": 0.882, + "2001": 0.881, + "2002": 0.882, + "2003": 0.884, + "2004": 0.887, + "2005": 0.887, + "2006": 0.89, + "2007": 0.893, + "2008": 0.893, + "2009": 0.893, + "2010": 0.898, + "2011": 0.9, + "2012": 0.902, + "2013": 0.904, + "2014": 0.906, + "2015": 0.906, + "2016": 0.908, + "2017": 0.91, + "2018": 0.913, + "2019": 0.916, + "2020": 0.906, + "2021": 0.907 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr116", + "Region": "Iowa", + "1990": 0.88, + "1991": 0.881, + "1992": 0.885, + "1993": 0.888, + "1994": 0.892, + "1995": 0.893, + "1996": 0.895, + "1997": 0.896, + "1998": 0.899, + "1999": 0.893, + "2000": 0.897, + "2001": 0.896, + "2002": 0.898, + "2003": 0.9, + "2004": 0.906, + "2005": 0.907, + "2006": 0.91, + "2007": 0.913, + "2008": 0.913, + "2009": 0.914, + "2010": 0.917, + "2011": 0.92, + "2012": 0.924, + "2013": 0.925, + "2014": 0.928, + "2015": 0.929, + "2016": 0.931, + "2017": 0.933, + "2018": 0.936, + "2019": 0.938, + "2020": 0.928, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr117", + "Region": "Kansas", + "1990": 0.884, + "1991": 0.885, + "1992": 0.888, + "1993": 0.892, + "1994": 0.894, + "1995": 0.895, + "1996": 0.897, + "1997": 0.898, + "1998": 0.901, + "1999": 0.895, + "2000": 0.897, + "2001": 0.897, + "2002": 0.897, + "2003": 0.898, + "2004": 0.899, + "2005": 0.9, + "2006": 0.905, + "2007": 0.909, + "2008": 0.91, + "2009": 0.91, + "2010": 0.913, + "2011": 0.916, + "2012": 0.918, + "2013": 0.919, + "2014": 0.921, + "2015": 0.921, + "2016": 0.923, + "2017": 0.925, + "2018": 0.928, + "2019": 0.93, + "2020": 0.921, + "2021": 0.922 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr118", + "Region": "Kentucky", + "1990": 0.836, + "1991": 0.838, + "1992": 0.842, + "1993": 0.846, + "1994": 0.849, + "1995": 0.851, + "1996": 0.854, + "1997": 0.856, + "1998": 0.86, + "1999": 0.856, + "2000": 0.855, + "2001": 0.856, + "2002": 0.858, + "2003": 0.859, + "2004": 0.862, + "2005": 0.864, + "2006": 0.868, + "2007": 0.869, + "2008": 0.87, + "2009": 0.871, + "2010": 0.875, + "2011": 0.877, + "2012": 0.88, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.888, + "2018": 0.89, + "2019": 0.893, + "2020": 0.883, + "2021": 0.884 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr119", + "Region": "Louisiana", + "1990": 0.844, + "1991": 0.846, + "1992": 0.849, + "1993": 0.853, + "1994": 0.856, + "1995": 0.857, + "1996": 0.86, + "1997": 0.861, + "1998": 0.865, + "1999": 0.86, + "2000": 0.86, + "2001": 0.861, + "2002": 0.862, + "2003": 0.864, + "2004": 0.868, + "2005": 0.87, + "2006": 0.876, + "2007": 0.876, + "2008": 0.877, + "2009": 0.881, + "2010": 0.886, + "2011": 0.885, + "2012": 0.887, + "2013": 0.886, + "2014": 0.888, + "2015": 0.888, + "2016": 0.889, + "2017": 0.891, + "2018": 0.894, + "2019": 0.896, + "2020": 0.887, + "2021": 0.888 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr120", + "Region": "Maine", + "1990": 0.87, + "1991": 0.871, + "1992": 0.875, + "1993": 0.879, + "1994": 0.882, + "1995": 0.884, + "1996": 0.886, + "1997": 0.888, + "1998": 0.891, + "1999": 0.887, + "2000": 0.89, + "2001": 0.892, + "2002": 0.892, + "2003": 0.894, + "2004": 0.897, + "2005": 0.897, + "2006": 0.901, + "2007": 0.902, + "2008": 0.903, + "2009": 0.905, + "2010": 0.908, + "2011": 0.909, + "2012": 0.912, + "2013": 0.913, + "2014": 0.915, + "2015": 0.916, + "2016": 0.918, + "2017": 0.92, + "2018": 0.923, + "2019": 0.925, + "2020": 0.916, + "2021": 0.917 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr121", + "Region": "Maryland", + "1990": 0.881, + "1991": 0.882, + "1992": 0.886, + "1993": 0.889, + "1994": 0.892, + "1995": 0.893, + "1996": 0.895, + "1997": 0.897, + "1998": 0.902, + "1999": 0.897, + "2000": 0.9, + "2001": 0.902, + "2002": 0.904, + "2003": 0.905, + "2004": 0.91, + "2005": 0.912, + "2006": 0.916, + "2007": 0.919, + "2008": 0.92, + "2009": 0.923, + "2010": 0.927, + "2011": 0.929, + "2012": 0.931, + "2013": 0.933, + "2014": 0.934, + "2015": 0.935, + "2016": 0.937, + "2017": 0.939, + "2018": 0.942, + "2019": 0.944, + "2020": 0.935, + "2021": 0.936 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr122", + "Region": "Massachusetts", + "1990": 0.898, + "1991": 0.899, + "1992": 0.903, + "1993": 0.907, + "1994": 0.91, + "1995": 0.912, + "1996": 0.914, + "1997": 0.916, + "1998": 0.92, + "1999": 0.916, + "2000": 0.921, + "2001": 0.923, + "2002": 0.923, + "2003": 0.925, + "2004": 0.929, + "2005": 0.93, + "2006": 0.935, + "2007": 0.938, + "2008": 0.939, + "2009": 0.941, + "2010": 0.945, + "2011": 0.948, + "2012": 0.95, + "2013": 0.951, + "2014": 0.952, + "2015": 0.953, + "2016": 0.954, + "2017": 0.955, + "2018": 0.957, + "2019": 0.959, + "2020": 0.951, + "2021": 0.949 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr123", + "Region": "Michigan", + "1990": 0.87, + "1991": 0.871, + "1992": 0.875, + "1993": 0.879, + "1994": 0.883, + "1995": 0.884, + "1996": 0.886, + "1997": 0.888, + "1998": 0.891, + "1999": 0.887, + "2000": 0.889, + "2001": 0.889, + "2002": 0.89, + "2003": 0.892, + "2004": 0.894, + "2005": 0.895, + "2006": 0.898, + "2007": 0.899, + "2008": 0.897, + "2009": 0.896, + "2010": 0.902, + "2011": 0.904, + "2012": 0.907, + "2013": 0.909, + "2014": 0.91, + "2015": 0.912, + "2016": 0.914, + "2017": 0.916, + "2018": 0.919, + "2019": 0.921, + "2020": 0.912, + "2021": 0.913 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr124", + "Region": "Minnesota", + "1990": 0.897, + "1991": 0.898, + "1992": 0.902, + "1993": 0.905, + "1994": 0.908, + "1995": 0.909, + "1996": 0.912, + "1997": 0.913, + "1998": 0.918, + "1999": 0.913, + "2000": 0.916, + "2001": 0.917, + "2002": 0.919, + "2003": 0.921, + "2004": 0.925, + "2005": 0.927, + "2006": 0.929, + "2007": 0.931, + "2008": 0.932, + "2009": 0.932, + "2010": 0.936, + "2011": 0.939, + "2012": 0.942, + "2013": 0.944, + "2014": 0.946, + "2015": 0.947, + "2016": 0.948, + "2017": 0.951, + "2018": 0.953, + "2019": 0.956, + "2020": 0.946, + "2021": 0.947 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr125", + "Region": "Mississippi", + "1990": 0.82, + "1991": 0.821, + "1992": 0.825, + "1993": 0.828, + "1994": 0.831, + "1995": 0.832, + "1996": 0.835, + "1997": 0.837, + "1998": 0.84, + "1999": 0.836, + "2000": 0.837, + "2001": 0.838, + "2002": 0.838, + "2003": 0.841, + "2004": 0.844, + "2005": 0.845, + "2006": 0.849, + "2007": 0.852, + "2008": 0.854, + "2009": 0.855, + "2010": 0.858, + "2011": 0.859, + "2012": 0.862, + "2013": 0.864, + "2014": 0.865, + "2015": 0.865, + "2016": 0.867, + "2017": 0.869, + "2018": 0.872, + "2019": 0.874, + "2020": 0.865, + "2021": 0.866 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr126", + "Region": "Missouri", + "1990": 0.866, + "1991": 0.867, + "1992": 0.871, + "1993": 0.875, + "1994": 0.878, + "1995": 0.879, + "1996": 0.881, + "1997": 0.883, + "1998": 0.886, + "1999": 0.882, + "2000": 0.884, + "2001": 0.884, + "2002": 0.884, + "2003": 0.885, + "2004": 0.888, + "2005": 0.889, + "2006": 0.892, + "2007": 0.893, + "2008": 0.895, + "2009": 0.896, + "2010": 0.899, + "2011": 0.9, + "2012": 0.903, + "2013": 0.905, + "2014": 0.906, + "2015": 0.907, + "2016": 0.909, + "2017": 0.911, + "2018": 0.913, + "2019": 0.916, + "2020": 0.906, + "2021": 0.907 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr127", + "Region": "Montana", + "1990": 0.872, + "1991": 0.873, + "1992": 0.877, + "1993": 0.88, + "1994": 0.883, + "1995": 0.884, + "1996": 0.886, + "1997": 0.887, + "1998": 0.891, + "1999": 0.885, + "2000": 0.887, + "2001": 0.888, + "2002": 0.889, + "2003": 0.891, + "2004": 0.894, + "2005": 0.896, + "2006": 0.9, + "2007": 0.904, + "2008": 0.905, + "2009": 0.907, + "2010": 0.911, + "2011": 0.913, + "2012": 0.914, + "2013": 0.914, + "2014": 0.915, + "2015": 0.916, + "2016": 0.917, + "2017": 0.919, + "2018": 0.921, + "2019": 0.924, + "2020": 0.914, + "2021": 0.916 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr128", + "Region": "Nebraska", + "1990": 0.886, + "1991": 0.887, + "1992": 0.891, + "1993": 0.894, + "1994": 0.897, + "1995": 0.898, + "1996": 0.9, + "1997": 0.901, + "1998": 0.904, + "1999": 0.898, + "2000": 0.901, + "2001": 0.902, + "2002": 0.903, + "2003": 0.905, + "2004": 0.908, + "2005": 0.909, + "2006": 0.913, + "2007": 0.916, + "2008": 0.917, + "2009": 0.92, + "2010": 0.925, + "2011": 0.928, + "2012": 0.929, + "2013": 0.931, + "2014": 0.933, + "2015": 0.933, + "2016": 0.934, + "2017": 0.937, + "2018": 0.939, + "2019": 0.942, + "2020": 0.932, + "2021": 0.933 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr129", + "Region": "Nevada", + "1990": 0.88, + "1991": 0.88, + "1992": 0.883, + "1993": 0.886, + "1994": 0.889, + "1995": 0.889, + "1996": 0.891, + "1997": 0.892, + "1998": 0.894, + "1999": 0.889, + "2000": 0.889, + "2001": 0.888, + "2002": 0.888, + "2003": 0.888, + "2004": 0.892, + "2005": 0.894, + "2006": 0.898, + "2007": 0.899, + "2008": 0.897, + "2009": 0.896, + "2010": 0.9, + "2011": 0.901, + "2012": 0.901, + "2013": 0.902, + "2014": 0.902, + "2015": 0.903, + "2016": 0.905, + "2017": 0.907, + "2018": 0.909, + "2019": 0.912, + "2020": 0.902, + "2021": 0.904 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr130", + "Region": "New Hampshire", + "1990": 0.891, + "1991": 0.893, + "1992": 0.897, + "1993": 0.901, + "1994": 0.904, + "1995": 0.905, + "1996": 0.908, + "1997": 0.909, + "1998": 0.914, + "1999": 0.908, + "2000": 0.912, + "2001": 0.913, + "2002": 0.913, + "2003": 0.915, + "2004": 0.918, + "2005": 0.919, + "2006": 0.923, + "2007": 0.925, + "2008": 0.926, + "2009": 0.929, + "2010": 0.933, + "2011": 0.935, + "2012": 0.937, + "2013": 0.939, + "2014": 0.94, + "2015": 0.941, + "2016": 0.944, + "2017": 0.946, + "2018": 0.949, + "2019": 0.952, + "2020": 0.942, + "2021": 0.943 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr131", + "Region": "New Jersey", + "1990": 0.888, + "1991": 0.89, + "1992": 0.894, + "1993": 0.898, + "1994": 0.901, + "1995": 0.903, + "1996": 0.906, + "1997": 0.908, + "1998": 0.912, + "1999": 0.907, + "2000": 0.911, + "2001": 0.913, + "2002": 0.915, + "2003": 0.917, + "2004": 0.921, + "2005": 0.923, + "2006": 0.927, + "2007": 0.929, + "2008": 0.93, + "2009": 0.932, + "2010": 0.935, + "2011": 0.935, + "2012": 0.938, + "2013": 0.94, + "2014": 0.941, + "2015": 0.942, + "2016": 0.944, + "2017": 0.946, + "2018": 0.949, + "2019": 0.951, + "2020": 0.941, + "2021": 0.943 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr132", + "Region": "New Mexico", + "1990": 0.868, + "1991": 0.868, + "1992": 0.872, + "1993": 0.875, + "1994": 0.877, + "1995": 0.878, + "1996": 0.88, + "1997": 0.881, + "1998": 0.883, + "1999": 0.879, + "2000": 0.88, + "2001": 0.881, + "2002": 0.881, + "2003": 0.883, + "2004": 0.887, + "2005": 0.886, + "2006": 0.889, + "2007": 0.89, + "2008": 0.89, + "2009": 0.892, + "2010": 0.893, + "2011": 0.895, + "2012": 0.897, + "2013": 0.897, + "2014": 0.9, + "2015": 0.901, + "2016": 0.902, + "2017": 0.904, + "2018": 0.907, + "2019": 0.909, + "2020": 0.9, + "2021": 0.901 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr133", + "Region": "New York", + "1990": 0.88, + "1991": 0.882, + "1992": 0.886, + "1993": 0.89, + "1994": 0.894, + "1995": 0.895, + "1996": 0.898, + "1997": 0.901, + "1998": 0.906, + "1999": 0.903, + "2000": 0.906, + "2001": 0.909, + "2002": 0.91, + "2003": 0.912, + "2004": 0.917, + "2005": 0.92, + "2006": 0.924, + "2007": 0.926, + "2008": 0.925, + "2009": 0.929, + "2010": 0.933, + "2011": 0.935, + "2012": 0.938, + "2013": 0.939, + "2014": 0.941, + "2015": 0.941, + "2016": 0.943, + "2017": 0.944, + "2018": 0.946, + "2019": 0.947, + "2020": 0.939, + "2021": 0.938 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr134", + "Region": "North Carolina", + "1990": 0.854, + "1991": 0.856, + "1992": 0.86, + "1993": 0.864, + "1994": 0.867, + "1995": 0.869, + "1996": 0.872, + "1997": 0.874, + "1998": 0.878, + "1999": 0.875, + "2000": 0.877, + "2001": 0.878, + "2002": 0.879, + "2003": 0.88, + "2004": 0.884, + "2005": 0.886, + "2006": 0.891, + "2007": 0.893, + "2008": 0.894, + "2009": 0.895, + "2010": 0.898, + "2011": 0.9, + "2012": 0.902, + "2013": 0.903, + "2014": 0.905, + "2015": 0.906, + "2016": 0.908, + "2017": 0.91, + "2018": 0.913, + "2019": 0.915, + "2020": 0.906, + "2021": 0.907 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr135", + "Region": "North Dakota", + "1990": 0.87, + "1991": 0.871, + "1992": 0.875, + "1993": 0.879, + "1994": 0.882, + "1995": 0.883, + "1996": 0.885, + "1997": 0.887, + "1998": 0.892, + "1999": 0.886, + "2000": 0.889, + "2001": 0.892, + "2002": 0.895, + "2003": 0.899, + "2004": 0.902, + "2005": 0.904, + "2006": 0.909, + "2007": 0.913, + "2008": 0.919, + "2009": 0.923, + "2010": 0.929, + "2011": 0.934, + "2012": 0.942, + "2013": 0.943, + "2014": 0.943, + "2015": 0.943, + "2016": 0.945, + "2017": 0.946, + "2018": 0.948, + "2019": 0.949, + "2020": 0.941, + "2021": 0.94 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr136", + "Region": "Ohio", + "1990": 0.869, + "1991": 0.871, + "1992": 0.874, + "1993": 0.878, + "1994": 0.881, + "1995": 0.882, + "1996": 0.885, + "1997": 0.886, + "1998": 0.891, + "1999": 0.886, + "2000": 0.888, + "2001": 0.888, + "2002": 0.889, + "2003": 0.89, + "2004": 0.893, + "2005": 0.893, + "2006": 0.896, + "2007": 0.898, + "2008": 0.898, + "2009": 0.898, + "2010": 0.902, + "2011": 0.906, + "2012": 0.908, + "2013": 0.91, + "2014": 0.912, + "2015": 0.913, + "2016": 0.915, + "2017": 0.917, + "2018": 0.92, + "2019": 0.922, + "2020": 0.913, + "2021": 0.914 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr137", + "Region": "Oklahoma", + "1990": 0.857, + "1991": 0.858, + "1992": 0.861, + "1993": 0.864, + "1994": 0.866, + "1995": 0.866, + "1996": 0.868, + "1997": 0.869, + "1998": 0.871, + "1999": 0.865, + "2000": 0.867, + "2001": 0.869, + "2002": 0.869, + "2003": 0.87, + "2004": 0.873, + "2005": 0.874, + "2006": 0.879, + "2007": 0.88, + "2008": 0.881, + "2009": 0.881, + "2010": 0.883, + "2011": 0.886, + "2012": 0.89, + "2013": 0.893, + "2014": 0.896, + "2015": 0.897, + "2016": 0.897, + "2017": 0.899, + "2018": 0.901, + "2019": 0.904, + "2020": 0.894, + "2021": 0.896 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr138", + "Region": "Oregon", + "1990": 0.879, + "1991": 0.88, + "1992": 0.883, + "1993": 0.886, + "1994": 0.889, + "1995": 0.889, + "1996": 0.891, + "1997": 0.892, + "1998": 0.896, + "1999": 0.89, + "2000": 0.895, + "2001": 0.894, + "2002": 0.895, + "2003": 0.896, + "2004": 0.902, + "2005": 0.903, + "2006": 0.91, + "2007": 0.913, + "2008": 0.916, + "2009": 0.918, + "2010": 0.923, + "2011": 0.926, + "2012": 0.926, + "2013": 0.926, + "2014": 0.928, + "2015": 0.929, + "2016": 0.932, + "2017": 0.934, + "2018": 0.936, + "2019": 0.939, + "2020": 0.929, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr139", + "Region": "Pennsylvania", + "1990": 0.868, + "1991": 0.869, + "1992": 0.873, + "1993": 0.877, + "1994": 0.88, + "1995": 0.882, + "1996": 0.884, + "1997": 0.886, + "1998": 0.891, + "1999": 0.886, + "2000": 0.889, + "2001": 0.891, + "2002": 0.891, + "2003": 0.893, + "2004": 0.897, + "2005": 0.898, + "2006": 0.902, + "2007": 0.905, + "2008": 0.907, + "2009": 0.909, + "2010": 0.913, + "2011": 0.914, + "2012": 0.917, + "2013": 0.919, + "2014": 0.92, + "2015": 0.922, + "2016": 0.924, + "2017": 0.926, + "2018": 0.929, + "2019": 0.931, + "2020": 0.921, + "2021": 0.923 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr140", + "Region": "Rhode Island", + "1990": 0.87, + "1991": 0.871, + "1992": 0.875, + "1993": 0.879, + "1994": 0.883, + "1995": 0.884, + "1996": 0.886, + "1997": 0.888, + "1998": 0.891, + "1999": 0.886, + "2000": 0.889, + "2001": 0.891, + "2002": 0.893, + "2003": 0.896, + "2004": 0.901, + "2005": 0.903, + "2006": 0.906, + "2007": 0.907, + "2008": 0.906, + "2009": 0.908, + "2010": 0.911, + "2011": 0.914, + "2012": 0.917, + "2013": 0.92, + "2014": 0.923, + "2015": 0.924, + "2016": 0.926, + "2017": 0.928, + "2018": 0.931, + "2019": 0.934, + "2020": 0.924, + "2021": 0.925 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr141", + "Region": "South Carolina", + "1990": 0.838, + "1991": 0.84, + "1992": 0.844, + "1993": 0.848, + "1994": 0.852, + "1995": 0.854, + "1996": 0.857, + "1997": 0.859, + "1998": 0.863, + "1999": 0.859, + "2000": 0.861, + "2001": 0.862, + "2002": 0.864, + "2003": 0.866, + "2004": 0.869, + "2005": 0.87, + "2006": 0.874, + "2007": 0.877, + "2008": 0.877, + "2009": 0.878, + "2010": 0.881, + "2011": 0.884, + "2012": 0.886, + "2013": 0.889, + "2014": 0.891, + "2015": 0.892, + "2016": 0.894, + "2017": 0.896, + "2018": 0.899, + "2019": 0.901, + "2020": 0.892, + "2021": 0.893 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr142", + "Region": "South Dakota", + "1990": 0.864, + "1991": 0.866, + "1992": 0.87, + "1993": 0.873, + "1994": 0.877, + "1995": 0.878, + "1996": 0.88, + "1997": 0.882, + "1998": 0.888, + "1999": 0.884, + "2000": 0.888, + "2001": 0.89, + "2002": 0.895, + "2003": 0.896, + "2004": 0.9, + "2005": 0.901, + "2006": 0.905, + "2007": 0.909, + "2008": 0.912, + "2009": 0.916, + "2010": 0.919, + "2011": 0.923, + "2012": 0.924, + "2013": 0.925, + "2014": 0.925, + "2015": 0.926, + "2016": 0.928, + "2017": 0.93, + "2018": 0.933, + "2019": 0.935, + "2020": 0.925, + "2021": 0.927 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr143", + "Region": "Tennessee", + "1990": 0.845, + "1991": 0.846, + "1992": 0.85, + "1993": 0.854, + "1994": 0.857, + "1995": 0.858, + "1996": 0.861, + "1997": 0.863, + "1998": 0.867, + "1999": 0.863, + "2000": 0.864, + "2001": 0.865, + "2002": 0.866, + "2003": 0.868, + "2004": 0.872, + "2005": 0.873, + "2006": 0.877, + "2007": 0.878, + "2008": 0.879, + "2009": 0.88, + "2010": 0.883, + "2011": 0.886, + "2012": 0.889, + "2013": 0.891, + "2014": 0.893, + "2015": 0.895, + "2016": 0.897, + "2017": 0.899, + "2018": 0.901, + "2019": 0.904, + "2020": 0.894, + "2021": 0.895 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr144", + "Region": "Texas", + "1990": 0.864, + "1991": 0.865, + "1992": 0.868, + "1993": 0.872, + "1994": 0.875, + "1995": 0.876, + "1996": 0.878, + "1997": 0.879, + "1998": 0.883, + "1999": 0.878, + "2000": 0.879, + "2001": 0.881, + "2002": 0.881, + "2003": 0.881, + "2004": 0.884, + "2005": 0.885, + "2006": 0.89, + "2007": 0.893, + "2008": 0.893, + "2009": 0.895, + "2010": 0.898, + "2011": 0.901, + "2012": 0.905, + "2013": 0.908, + "2014": 0.91, + "2015": 0.912, + "2016": 0.913, + "2017": 0.915, + "2018": 0.917, + "2019": 0.92, + "2020": 0.91, + "2021": 0.911 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr145", + "Region": "Utah", + "1990": 0.895, + "1991": 0.895, + "1992": 0.898, + "1993": 0.901, + "1994": 0.904, + "1995": 0.904, + "1996": 0.905, + "1997": 0.906, + "1998": 0.909, + "1999": 0.904, + "2000": 0.905, + "2001": 0.905, + "2002": 0.905, + "2003": 0.905, + "2004": 0.908, + "2005": 0.91, + "2006": 0.916, + "2007": 0.919, + "2008": 0.917, + "2009": 0.918, + "2010": 0.92, + "2011": 0.922, + "2012": 0.924, + "2013": 0.926, + "2014": 0.928, + "2015": 0.929, + "2016": 0.931, + "2017": 0.933, + "2018": 0.936, + "2019": 0.938, + "2020": 0.929, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr146", + "Region": "Vermont", + "1990": 0.877, + "1991": 0.879, + "1992": 0.883, + "1993": 0.887, + "1994": 0.89, + "1995": 0.892, + "1996": 0.894, + "1997": 0.896, + "1998": 0.899, + "1999": 0.896, + "2000": 0.899, + "2001": 0.902, + "2002": 0.903, + "2003": 0.906, + "2004": 0.91, + "2005": 0.912, + "2006": 0.915, + "2007": 0.917, + "2008": 0.918, + "2009": 0.921, + "2010": 0.925, + "2011": 0.928, + "2012": 0.931, + "2013": 0.932, + "2014": 0.934, + "2015": 0.934, + "2016": 0.936, + "2017": 0.938, + "2018": 0.941, + "2019": 0.943, + "2020": 0.934, + "2021": 0.935 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr147", + "Region": "Virginia", + "1990": 0.875, + "1991": 0.877, + "1992": 0.881, + "1993": 0.885, + "1994": 0.888, + "1995": 0.889, + "1996": 0.892, + "1997": 0.894, + "1998": 0.899, + "1999": 0.895, + "2000": 0.897, + "2001": 0.9, + "2002": 0.9, + "2003": 0.903, + "2004": 0.907, + "2005": 0.91, + "2006": 0.914, + "2007": 0.916, + "2008": 0.916, + "2009": 0.919, + "2010": 0.922, + "2011": 0.924, + "2012": 0.926, + "2013": 0.928, + "2014": 0.929, + "2015": 0.93, + "2016": 0.932, + "2017": 0.934, + "2018": 0.936, + "2019": 0.939, + "2020": 0.929, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr148", + "Region": "Washington", + "1990": 0.9, + "1991": 0.901, + "1992": 0.905, + "1993": 0.908, + "1994": 0.911, + "1995": 0.912, + "1996": 0.913, + "1997": 0.915, + "1998": 0.919, + "1999": 0.915, + "2000": 0.915, + "2001": 0.914, + "2002": 0.914, + "2003": 0.914, + "2004": 0.916, + "2005": 0.919, + "2006": 0.923, + "2007": 0.927, + "2008": 0.927, + "2009": 0.928, + "2010": 0.931, + "2011": 0.932, + "2012": 0.935, + "2013": 0.937, + "2014": 0.938, + "2015": 0.939, + "2016": 0.942, + "2017": 0.944, + "2018": 0.946, + "2019": 0.949, + "2020": 0.939, + "2021": 0.94 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr149", + "Region": "West Virginia", + "1990": 0.83, + "1991": 0.832, + "1992": 0.836, + "1993": 0.84, + "1994": 0.843, + "1995": 0.845, + "1996": 0.847, + "1997": 0.849, + "1998": 0.853, + "1999": 0.849, + "2000": 0.85, + "2001": 0.852, + "2002": 0.852, + "2003": 0.853, + "2004": 0.856, + "2005": 0.858, + "2006": 0.861, + "2007": 0.862, + "2008": 0.863, + "2009": 0.866, + "2010": 0.869, + "2011": 0.871, + "2012": 0.873, + "2013": 0.874, + "2014": 0.876, + "2015": 0.877, + "2016": 0.878, + "2017": 0.88, + "2018": 0.883, + "2019": 0.885, + "2020": 0.876, + "2021": 0.877 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr150", + "Region": "Wisconsin", + "1990": 0.88, + "1991": 0.881, + "1992": 0.885, + "1993": 0.889, + "1994": 0.892, + "1995": 0.893, + "1996": 0.896, + "1997": 0.897, + "1998": 0.901, + "1999": 0.896, + "2000": 0.898, + "2001": 0.9, + "2002": 0.901, + "2003": 0.903, + "2004": 0.906, + "2005": 0.908, + "2006": 0.912, + "2007": 0.913, + "2008": 0.913, + "2009": 0.915, + "2010": 0.918, + "2011": 0.921, + "2012": 0.924, + "2013": 0.926, + "2014": 0.928, + "2015": 0.928, + "2016": 0.93, + "2017": 0.932, + "2018": 0.935, + "2019": 0.937, + "2020": 0.928, + "2021": 0.929 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr151", + "Region": "Wyoming", + "1990": 0.893, + "1991": 0.894, + "1992": 0.897, + "1993": 0.9, + "1994": 0.903, + "1995": 0.904, + "1996": 0.906, + "1997": 0.907, + "1998": 0.91, + "1999": 0.905, + "2000": 0.906, + "2001": 0.91, + "2002": 0.91, + "2003": 0.911, + "2004": 0.914, + "2005": 0.915, + "2006": 0.923, + "2007": 0.926, + "2008": 0.928, + "2009": 0.931, + "2010": 0.932, + "2011": 0.933, + "2012": 0.932, + "2013": 0.933, + "2014": 0.934, + "2015": 0.934, + "2016": 0.934, + "2017": 0.936, + "2018": 0.939, + "2019": 0.941, + "2020": 0.931, + "2021": 0.932 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "National", + "GDLCODE": "URYt", + "Region": "Total", + "1990": 0.701, + "1991": 0.705, + "1992": 0.708, + "1993": 0.711, + "1994": 0.716, + "1995": 0.717, + "1996": 0.723, + "1997": 0.735, + "1998": 0.744, + "1999": 0.747, + "2000": 0.753, + "2001": 0.76, + "2002": 0.764, + "2003": 0.77, + "2004": 0.77, + "2005": 0.768, + "2006": 0.768, + "2007": 0.771, + "2008": 0.774, + "2009": 0.78, + "2010": 0.787, + "2011": 0.794, + "2012": 0.798, + "2013": 0.805, + "2014": 0.808, + "2015": 0.811, + "2016": 0.815, + "2017": 0.819, + "2018": 0.819, + "2019": 0.821, + "2020": 0.821, + "2021": 0.809 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr105", + "Region": "Centro (Durazno and Tacuarembo)", + "1990": 0.666, + "1991": 0.67, + "1992": 0.673, + "1993": 0.676, + "1994": 0.681, + "1995": 0.682, + "1996": 0.687, + "1997": 0.698, + "1998": 0.707, + "1999": 0.71, + "2000": 0.716, + "2001": 0.722, + "2002": 0.726, + "2003": 0.731, + "2004": 0.732, + "2005": 0.73, + "2006": 0.731, + "2007": 0.733, + "2008": 0.738, + "2009": 0.745, + "2010": 0.754, + "2011": 0.763, + "2012": 0.768, + "2013": 0.78, + "2014": 0.783, + "2015": 0.785, + "2016": 0.79, + "2017": 0.793, + "2018": 0.793, + "2019": 0.795, + "2020": 0.796, + "2021": 0.784 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr106", + "Region": "Centro Sur (Flores, Florida and Lavalleja)", + "1990": 0.701, + "1991": 0.706, + "1992": 0.708, + "1993": 0.711, + "1994": 0.717, + "1995": 0.718, + "1996": 0.724, + "1997": 0.735, + "1998": 0.744, + "1999": 0.747, + "2000": 0.753, + "2001": 0.76, + "2002": 0.764, + "2003": 0.77, + "2004": 0.77, + "2005": 0.769, + "2006": 0.77, + "2007": 0.771, + "2008": 0.775, + "2009": 0.782, + "2010": 0.79, + "2011": 0.798, + "2012": 0.802, + "2013": 0.804, + "2014": 0.807, + "2015": 0.81, + "2016": 0.814, + "2017": 0.817, + "2018": 0.817, + "2019": 0.818, + "2020": 0.819, + "2021": 0.807 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr103", + "Region": "Costa Este (Canelones, Maldonado and Rocha)", + "1990": 0.702, + "1991": 0.706, + "1992": 0.709, + "1993": 0.712, + "1994": 0.717, + "1995": 0.718, + "1996": 0.724, + "1997": 0.735, + "1998": 0.745, + "1999": 0.748, + "2000": 0.754, + "2001": 0.76, + "2002": 0.764, + "2003": 0.771, + "2004": 0.771, + "2005": 0.769, + "2006": 0.77, + "2007": 0.772, + "2008": 0.775, + "2009": 0.781, + "2010": 0.788, + "2011": 0.794, + "2012": 0.798, + "2013": 0.807, + "2014": 0.811, + "2015": 0.813, + "2016": 0.818, + "2017": 0.822, + "2018": 0.821, + "2019": 0.823, + "2020": 0.824, + "2021": 0.812 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr107", + "Region": "Litoral Norte (Paysandu, Salto and Rio Negro)", + "1990": 0.664, + "1991": 0.668, + "1992": 0.67, + "1993": 0.673, + "1994": 0.678, + "1995": 0.679, + "1996": 0.685, + "1997": 0.696, + "1998": 0.705, + "1999": 0.708, + "2000": 0.713, + "2001": 0.72, + "2002": 0.723, + "2003": 0.729, + "2004": 0.729, + "2005": 0.727, + "2006": 0.727, + "2007": 0.73, + "2008": 0.734, + "2009": 0.741, + "2010": 0.748, + "2011": 0.756, + "2012": 0.76, + "2013": 0.765, + "2014": 0.768, + "2015": 0.771, + "2016": 0.775, + "2017": 0.779, + "2018": 0.778, + "2019": 0.78, + "2020": 0.781, + "2021": 0.769 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr104", + "Region": "Litoral Sur (Soriano, Colonia and San Jose)", + "1990": 0.68, + "1991": 0.684, + "1992": 0.686, + "1993": 0.689, + "1994": 0.694, + "1995": 0.696, + "1996": 0.701, + "1997": 0.712, + "1998": 0.721, + "1999": 0.725, + "2000": 0.731, + "2001": 0.737, + "2002": 0.741, + "2003": 0.747, + "2004": 0.746, + "2005": 0.745, + "2006": 0.745, + "2007": 0.747, + "2008": 0.75, + "2009": 0.756, + "2010": 0.762, + "2011": 0.768, + "2012": 0.772, + "2013": 0.773, + "2014": 0.776, + "2015": 0.778, + "2016": 0.783, + "2017": 0.786, + "2018": 0.786, + "2019": 0.788, + "2020": 0.789, + "2021": 0.777 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr101", + "Region": "Montevideo and Metropolitan area", + "1990": 0.722, + "1991": 0.726, + "1992": 0.729, + "1993": 0.732, + "1994": 0.738, + "1995": 0.739, + "1996": 0.745, + "1997": 0.757, + "1998": 0.766, + "1999": 0.77, + "2000": 0.776, + "2001": 0.783, + "2002": 0.787, + "2003": 0.793, + "2004": 0.793, + "2005": 0.791, + "2006": 0.791, + "2007": 0.793, + "2008": 0.796, + "2009": 0.801, + "2010": 0.807, + "2011": 0.814, + "2012": 0.817, + "2013": 0.821, + "2014": 0.825, + "2015": 0.827, + "2016": 0.831, + "2017": 0.836, + "2018": 0.835, + "2019": 0.837, + "2020": 0.838, + "2021": 0.826 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr102", + "Region": "Norte (Artigas, Rivera, Cerro Largo and Trienta y Tres)", + "1990": 0.671, + "1991": 0.675, + "1992": 0.678, + "1993": 0.681, + "1994": 0.686, + "1995": 0.687, + "1996": 0.693, + "1997": 0.704, + "1998": 0.713, + "1999": 0.716, + "2000": 0.721, + "2001": 0.727, + "2002": 0.731, + "2003": 0.737, + "2004": 0.737, + "2005": 0.736, + "2006": 0.736, + "2007": 0.738, + "2008": 0.743, + "2009": 0.75, + "2010": 0.758, + "2011": 0.765, + "2012": 0.77, + "2013": 0.774, + "2014": 0.777, + "2015": 0.779, + "2016": 0.784, + "2017": 0.787, + "2018": 0.787, + "2019": 0.789, + "2020": 0.79, + "2021": 0.778 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "National", + "GDLCODE": "UZBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.607, + "2001": 0.614, + "2002": 0.621, + "2003": 0.627, + "2004": 0.634, + "2005": 0.639, + "2006": 0.644, + "2007": 0.656, + "2008": 0.659, + "2009": 0.665, + "2010": 0.673, + "2011": 0.68, + "2012": 0.687, + "2013": 0.693, + "2014": 0.698, + "2015": 0.701, + "2016": 0.709, + "2017": 0.715, + "2018": 0.72, + "2019": 0.726, + "2020": 0.721, + "2021": 0.727 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr102", + "Region": "Central (Navoi, Bukhara, Samarkand)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.597, + "2001": 0.604, + "2002": 0.612, + "2003": 0.619, + "2004": 0.626, + "2005": 0.632, + "2006": 0.637, + "2007": 0.649, + "2008": 0.652, + "2009": 0.658, + "2010": 0.666, + "2011": 0.673, + "2012": 0.68, + "2013": 0.686, + "2014": 0.691, + "2015": 0.694, + "2016": 0.702, + "2017": 0.708, + "2018": 0.713, + "2019": 0.719, + "2020": 0.714, + "2021": 0.719 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr104", + "Region": "Central-East (Dzhizak, Syrdarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.615, + "2001": 0.624, + "2002": 0.633, + "2003": 0.641, + "2004": 0.65, + "2005": 0.657, + "2006": 0.663, + "2007": 0.675, + "2008": 0.679, + "2009": 0.685, + "2010": 0.693, + "2011": 0.7, + "2012": 0.708, + "2013": 0.713, + "2014": 0.718, + "2015": 0.722, + "2016": 0.73, + "2017": 0.736, + "2018": 0.742, + "2019": 0.747, + "2020": 0.743, + "2021": 0.748 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr105", + "Region": "East (Namangan, Fergana, Andizhan)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.6, + "2001": 0.606, + "2002": 0.613, + "2003": 0.62, + "2004": 0.627, + "2005": 0.632, + "2006": 0.637, + "2007": 0.648, + "2008": 0.652, + "2009": 0.658, + "2010": 0.666, + "2011": 0.673, + "2012": 0.68, + "2013": 0.685, + "2014": 0.69, + "2015": 0.694, + "2016": 0.702, + "2017": 0.707, + "2018": 0.713, + "2019": 0.719, + "2020": 0.714, + "2021": 0.719 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr103", + "Region": "South (Kashkadarya, Surkhandarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.587, + "2001": 0.592, + "2002": 0.597, + "2003": 0.602, + "2004": 0.607, + "2005": 0.61, + "2006": 0.613, + "2007": 0.625, + "2008": 0.628, + "2009": 0.634, + "2010": 0.642, + "2011": 0.649, + "2012": 0.656, + "2013": 0.661, + "2014": 0.666, + "2015": 0.67, + "2016": 0.677, + "2017": 0.683, + "2018": 0.688, + "2019": 0.694, + "2020": 0.689, + "2021": 0.694 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr106", + "Region": "Tashkent", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.661, + "2001": 0.672, + "2002": 0.684, + "2003": 0.695, + "2004": 0.706, + "2005": 0.716, + "2006": 0.725, + "2007": 0.737, + "2008": 0.741, + "2009": 0.747, + "2010": 0.756, + "2011": 0.763, + "2012": 0.771, + "2013": 0.777, + "2014": 0.782, + "2015": 0.786, + "2016": 0.795, + "2017": 0.8, + "2018": 0.806, + "2019": 0.813, + "2020": 0.807, + "2021": 0.813 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr101", + "Region": "West (Karakalpakstan, Khorezm)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.603, + "2001": 0.61, + "2002": 0.618, + "2003": 0.625, + "2004": 0.632, + "2005": 0.638, + "2006": 0.643, + "2007": 0.654, + "2008": 0.658, + "2009": 0.664, + "2010": 0.672, + "2011": 0.679, + "2012": 0.686, + "2013": 0.691, + "2014": 0.696, + "2015": 0.7, + "2016": 0.708, + "2017": 0.713, + "2018": 0.719, + "2019": 0.725, + "2020": 0.72, + "2021": 0.725 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "National", + "GDLCODE": "VUTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.578, + "2006": 0.584, + "2007": 0.585, + "2008": 0.591, + "2009": 0.591, + "2010": 0.591, + "2011": 0.593, + "2012": 0.59, + "2013": 0.593, + "2014": 0.595, + "2015": 0.595, + "2016": 0.596, + "2017": 0.599, + "2018": 0.603, + "2019": 0.611, + "2020": 0.608, + "2021": 0.607 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr108", + "Region": "Luganville", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.668, + "2006": 0.674, + "2007": 0.676, + "2008": 0.682, + "2009": 0.682, + "2010": 0.683, + "2011": 0.684, + "2012": 0.682, + "2013": 0.685, + "2014": 0.687, + "2015": 0.687, + "2016": 0.689, + "2017": 0.692, + "2018": 0.696, + "2019": 0.704, + "2020": 0.702, + "2021": 0.701 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr103", + "Region": "Malampa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.554, + "2006": 0.56, + "2007": 0.562, + "2008": 0.567, + "2009": 0.567, + "2010": 0.568, + "2011": 0.569, + "2012": 0.567, + "2013": 0.569, + "2014": 0.572, + "2015": 0.571, + "2016": 0.573, + "2017": 0.575, + "2018": 0.579, + "2019": 0.587, + "2020": 0.584, + "2021": 0.583 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr104", + "Region": "Penama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.519, + "2006": 0.524, + "2007": 0.526, + "2008": 0.531, + "2009": 0.531, + "2010": 0.531, + "2011": 0.533, + "2012": 0.53, + "2013": 0.533, + "2014": 0.535, + "2015": 0.535, + "2016": 0.536, + "2017": 0.538, + "2018": 0.542, + "2019": 0.549, + "2020": 0.546, + "2021": 0.545 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr107", + "Region": "Port Vila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.683, + "2006": 0.69, + "2007": 0.692, + "2008": 0.697, + "2009": 0.697, + "2010": 0.698, + "2011": 0.7, + "2012": 0.698, + "2013": 0.7, + "2014": 0.703, + "2015": 0.702, + "2016": 0.703, + "2017": 0.707, + "2018": 0.711, + "2019": 0.72, + "2020": 0.717, + "2021": 0.716 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr105", + "Region": "Sanma", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.54, + "2006": 0.546, + "2007": 0.547, + "2008": 0.553, + "2009": 0.553, + "2010": 0.553, + "2011": 0.555, + "2012": 0.552, + "2013": 0.555, + "2014": 0.557, + "2015": 0.557, + "2016": 0.558, + "2017": 0.56, + "2018": 0.564, + "2019": 0.572, + "2020": 0.569, + "2021": 0.568 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr102", + "Region": "Shefa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.572, + "2006": 0.578, + "2007": 0.58, + "2008": 0.585, + "2009": 0.585, + "2010": 0.586, + "2011": 0.587, + "2012": 0.585, + "2013": 0.587, + "2014": 0.589, + "2015": 0.589, + "2016": 0.59, + "2017": 0.593, + "2018": 0.597, + "2019": 0.604, + "2020": 0.602, + "2021": 0.601 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr101", + "Region": "Tafea", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.531, + "2006": 0.536, + "2007": 0.538, + "2008": 0.543, + "2009": 0.543, + "2010": 0.543, + "2011": 0.545, + "2012": 0.543, + "2013": 0.545, + "2014": 0.547, + "2015": 0.547, + "2016": 0.548, + "2017": 0.551, + "2018": 0.555, + "2019": 0.561, + "2020": 0.559, + "2021": 0.558 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr106", + "Region": "Torba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.52, + "2006": 0.526, + "2007": 0.527, + "2008": 0.533, + "2009": 0.533, + "2010": 0.533, + "2011": 0.534, + "2012": 0.532, + "2013": 0.534, + "2014": 0.537, + "2015": 0.536, + "2016": 0.538, + "2017": 0.54, + "2018": 0.544, + "2019": 0.551, + "2020": 0.548, + "2021": 0.547 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "National", + "GDLCODE": "VENt", + "Region": "Total", + "1990": 0.659, + "1991": 0.669, + "1992": 0.675, + "1993": 0.676, + "1994": 0.675, + "1995": 0.679, + "1996": 0.679, + "1997": 0.685, + "1998": 0.686, + "1999": 0.682, + "2000": 0.684, + "2001": 0.689, + "2002": 0.699, + "2003": 0.693, + "2004": 0.707, + "2005": 0.721, + "2006": 0.732, + "2007": 0.749, + "2008": 0.756, + "2009": 0.756, + "2010": 0.755, + "2011": 0.762, + "2012": 0.767, + "2013": 0.774, + "2014": 0.77, + "2015": 0.767, + "2016": 0.757, + "2017": 0.744, + "2018": 0.738, + "2019": 0.721, + "2020": 0.695, + "2021": 0.691 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr110", + "Region": "Amacuros Delta Federal Territory", + "1990": 0.646, + "1991": 0.656, + "1992": 0.661, + "1993": 0.663, + "1994": 0.662, + "1995": 0.665, + "1996": 0.666, + "1997": 0.671, + "1998": 0.672, + "1999": 0.668, + "2000": 0.671, + "2001": 0.675, + "2002": 0.685, + "2003": 0.679, + "2004": 0.693, + "2005": 0.706, + "2006": 0.718, + "2007": 0.734, + "2008": 0.741, + "2009": 0.741, + "2010": 0.74, + "2011": 0.747, + "2012": 0.752, + "2013": 0.759, + "2014": 0.755, + "2015": 0.752, + "2016": 0.742, + "2017": 0.728, + "2018": 0.723, + "2019": 0.705, + "2020": 0.679, + "2021": 0.676 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr102", + "Region": "Amazonas Federal Territory", + "1990": 0.642, + "1991": 0.651, + "1992": 0.657, + "1993": 0.658, + "1994": 0.657, + "1995": 0.66, + "1996": 0.661, + "1997": 0.667, + "1998": 0.667, + "1999": 0.663, + "2000": 0.666, + "2001": 0.67, + "2002": 0.68, + "2003": 0.675, + "2004": 0.688, + "2005": 0.701, + "2006": 0.713, + "2007": 0.729, + "2008": 0.736, + "2009": 0.736, + "2010": 0.735, + "2011": 0.742, + "2012": 0.747, + "2013": 0.753, + "2014": 0.75, + "2015": 0.747, + "2016": 0.737, + "2017": 0.724, + "2018": 0.718, + "2019": 0.701, + "2020": 0.675, + "2021": 0.672 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr103", + "Region": "Anzoategui", + "1990": 0.669, + "1991": 0.679, + "1992": 0.685, + "1993": 0.686, + "1994": 0.685, + "1995": 0.689, + "1996": 0.689, + "1997": 0.695, + "1998": 0.696, + "1999": 0.692, + "2000": 0.695, + "2001": 0.699, + "2002": 0.71, + "2003": 0.704, + "2004": 0.718, + "2005": 0.732, + "2006": 0.743, + "2007": 0.761, + "2008": 0.767, + "2009": 0.768, + "2010": 0.766, + "2011": 0.774, + "2012": 0.779, + "2013": 0.786, + "2014": 0.782, + "2015": 0.779, + "2016": 0.77, + "2017": 0.756, + "2018": 0.751, + "2019": 0.733, + "2020": 0.707, + "2021": 0.703 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr104", + "Region": "Apure", + "1990": 0.598, + "1991": 0.607, + "1992": 0.612, + "1993": 0.613, + "1994": 0.612, + "1995": 0.615, + "1996": 0.615, + "1997": 0.62, + "1998": 0.621, + "1999": 0.617, + "2000": 0.619, + "2001": 0.623, + "2002": 0.633, + "2003": 0.627, + "2004": 0.64, + "2005": 0.653, + "2006": 0.663, + "2007": 0.679, + "2008": 0.685, + "2009": 0.685, + "2010": 0.683, + "2011": 0.689, + "2012": 0.694, + "2013": 0.7, + "2014": 0.697, + "2015": 0.694, + "2016": 0.683, + "2017": 0.67, + "2018": 0.665, + "2019": 0.647, + "2020": 0.622, + "2021": 0.619 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr105", + "Region": "Aragua", + "1990": 0.683, + "1991": 0.693, + "1992": 0.698, + "1993": 0.7, + "1994": 0.699, + "1995": 0.703, + "1996": 0.703, + "1997": 0.709, + "1998": 0.71, + "1999": 0.706, + "2000": 0.709, + "2001": 0.713, + "2002": 0.724, + "2003": 0.718, + "2004": 0.733, + "2005": 0.746, + "2006": 0.758, + "2007": 0.776, + "2008": 0.782, + "2009": 0.783, + "2010": 0.781, + "2011": 0.789, + "2012": 0.795, + "2013": 0.801, + "2014": 0.798, + "2015": 0.795, + "2016": 0.785, + "2017": 0.771, + "2018": 0.766, + "2019": 0.748, + "2020": 0.721, + "2021": 0.718 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr106", + "Region": "Barinas", + "1990": 0.614, + "1991": 0.623, + "1992": 0.628, + "1993": 0.629, + "1994": 0.628, + "1995": 0.631, + "1996": 0.631, + "1997": 0.637, + "1998": 0.637, + "1999": 0.633, + "2000": 0.635, + "2001": 0.64, + "2002": 0.649, + "2003": 0.644, + "2004": 0.657, + "2005": 0.67, + "2006": 0.681, + "2007": 0.697, + "2008": 0.703, + "2009": 0.703, + "2010": 0.701, + "2011": 0.707, + "2012": 0.712, + "2013": 0.719, + "2014": 0.715, + "2015": 0.712, + "2016": 0.701, + "2017": 0.688, + "2018": 0.683, + "2019": 0.665, + "2020": 0.641, + "2021": 0.637 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr107", + "Region": "Bolivar", + "1990": 0.661, + "1991": 0.671, + "1992": 0.676, + "1993": 0.677, + "1994": 0.677, + "1995": 0.68, + "1996": 0.681, + "1997": 0.687, + "1998": 0.688, + "1999": 0.684, + "2000": 0.687, + "2001": 0.691, + "2002": 0.701, + "2003": 0.696, + "2004": 0.71, + "2005": 0.723, + "2006": 0.734, + "2007": 0.751, + "2008": 0.758, + "2009": 0.758, + "2010": 0.757, + "2011": 0.765, + "2012": 0.77, + "2013": 0.777, + "2014": 0.773, + "2015": 0.77, + "2016": 0.761, + "2017": 0.748, + "2018": 0.742, + "2019": 0.725, + "2020": 0.699, + "2021": 0.695 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr108", + "Region": "Carabobo", + "1990": 0.677, + "1991": 0.687, + "1992": 0.693, + "1993": 0.694, + "1994": 0.693, + "1995": 0.697, + "1996": 0.698, + "1997": 0.704, + "1998": 0.704, + "1999": 0.701, + "2000": 0.703, + "2001": 0.708, + "2002": 0.718, + "2003": 0.713, + "2004": 0.727, + "2005": 0.74, + "2006": 0.752, + "2007": 0.77, + "2008": 0.776, + "2009": 0.777, + "2010": 0.776, + "2011": 0.783, + "2012": 0.789, + "2013": 0.795, + "2014": 0.792, + "2015": 0.789, + "2016": 0.779, + "2017": 0.766, + "2018": 0.76, + "2019": 0.743, + "2020": 0.716, + "2021": 0.713 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr109", + "Region": "Cojedes", + "1990": 0.64, + "1991": 0.65, + "1992": 0.655, + "1993": 0.656, + "1994": 0.655, + "1995": 0.659, + "1996": 0.659, + "1997": 0.664, + "1998": 0.665, + "1999": 0.661, + "2000": 0.663, + "2001": 0.668, + "2002": 0.678, + "2003": 0.672, + "2004": 0.686, + "2005": 0.699, + "2006": 0.71, + "2007": 0.727, + "2008": 0.733, + "2009": 0.734, + "2010": 0.732, + "2011": 0.739, + "2012": 0.744, + "2013": 0.75, + "2014": 0.747, + "2015": 0.743, + "2016": 0.733, + "2017": 0.72, + "2018": 0.714, + "2019": 0.697, + "2020": 0.671, + "2021": 0.668 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr111", + "Region": "Falcon", + "1990": 0.652, + "1991": 0.661, + "1992": 0.667, + "1993": 0.668, + "1994": 0.667, + "1995": 0.67, + "1996": 0.671, + "1997": 0.676, + "1998": 0.677, + "1999": 0.673, + "2000": 0.676, + "2001": 0.68, + "2002": 0.69, + "2003": 0.685, + "2004": 0.699, + "2005": 0.712, + "2006": 0.723, + "2007": 0.74, + "2008": 0.747, + "2009": 0.747, + "2010": 0.745, + "2011": 0.752, + "2012": 0.757, + "2013": 0.764, + "2014": 0.76, + "2015": 0.757, + "2016": 0.747, + "2017": 0.733, + "2018": 0.728, + "2019": 0.71, + "2020": 0.684, + "2021": 0.681 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr101", + "Region": "Federal District", + "1990": 0.698, + "1991": 0.709, + "1992": 0.714, + "1993": 0.716, + "1994": 0.715, + "1995": 0.719, + "1996": 0.72, + "1997": 0.726, + "1998": 0.727, + "1999": 0.723, + "2000": 0.726, + "2001": 0.73, + "2002": 0.741, + "2003": 0.735, + "2004": 0.75, + "2005": 0.764, + "2006": 0.776, + "2007": 0.794, + "2008": 0.801, + "2009": 0.801, + "2010": 0.8, + "2011": 0.808, + "2012": 0.814, + "2013": 0.82, + "2014": 0.817, + "2015": 0.814, + "2016": 0.804, + "2017": 0.791, + "2018": 0.785, + "2019": 0.767, + "2020": 0.741, + "2021": 0.737 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr112", + "Region": "Guarico", + "1990": 0.628, + "1991": 0.638, + "1992": 0.643, + "1993": 0.644, + "1994": 0.643, + "1995": 0.646, + "1996": 0.646, + "1997": 0.652, + "1998": 0.652, + "1999": 0.648, + "2000": 0.65, + "2001": 0.655, + "2002": 0.665, + "2003": 0.659, + "2004": 0.673, + "2005": 0.685, + "2006": 0.697, + "2007": 0.713, + "2008": 0.719, + "2009": 0.72, + "2010": 0.717, + "2011": 0.724, + "2012": 0.729, + "2013": 0.735, + "2014": 0.732, + "2015": 0.729, + "2016": 0.718, + "2017": 0.705, + "2018": 0.699, + "2019": 0.681, + "2020": 0.656, + "2021": 0.653 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr113", + "Region": "Lara", + "1990": 0.643, + "1991": 0.652, + "1992": 0.658, + "1993": 0.659, + "1994": 0.658, + "1995": 0.661, + "1996": 0.661, + "1997": 0.667, + "1998": 0.668, + "1999": 0.664, + "2000": 0.666, + "2001": 0.671, + "2002": 0.681, + "2003": 0.675, + "2004": 0.689, + "2005": 0.702, + "2006": 0.713, + "2007": 0.73, + "2008": 0.736, + "2009": 0.737, + "2010": 0.735, + "2011": 0.742, + "2012": 0.747, + "2013": 0.753, + "2014": 0.75, + "2015": 0.747, + "2016": 0.736, + "2017": 0.723, + "2018": 0.717, + "2019": 0.7, + "2020": 0.674, + "2021": 0.671 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr114", + "Region": "Merida", + "1990": 0.652, + "1991": 0.662, + "1992": 0.667, + "1993": 0.668, + "1994": 0.667, + "1995": 0.671, + "1996": 0.671, + "1997": 0.676, + "1998": 0.677, + "1999": 0.673, + "2000": 0.675, + "2001": 0.68, + "2002": 0.69, + "2003": 0.684, + "2004": 0.698, + "2005": 0.712, + "2006": 0.723, + "2007": 0.74, + "2008": 0.747, + "2009": 0.747, + "2010": 0.744, + "2011": 0.751, + "2012": 0.756, + "2013": 0.763, + "2014": 0.759, + "2015": 0.756, + "2016": 0.745, + "2017": 0.731, + "2018": 0.726, + "2019": 0.708, + "2020": 0.683, + "2021": 0.679 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr115", + "Region": "Miranda", + "1990": 0.686, + "1991": 0.696, + "1992": 0.702, + "1993": 0.703, + "1994": 0.703, + "1995": 0.707, + "1996": 0.707, + "1997": 0.713, + "1998": 0.714, + "1999": 0.71, + "2000": 0.713, + "2001": 0.717, + "2002": 0.728, + "2003": 0.723, + "2004": 0.737, + "2005": 0.751, + "2006": 0.762, + "2007": 0.78, + "2008": 0.787, + "2009": 0.787, + "2010": 0.786, + "2011": 0.794, + "2012": 0.8, + "2013": 0.806, + "2014": 0.803, + "2015": 0.8, + "2016": 0.79, + "2017": 0.777, + "2018": 0.772, + "2019": 0.754, + "2020": 0.728, + "2021": 0.724 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr116", + "Region": "Monagas", + "1990": 0.651, + "1991": 0.661, + "1992": 0.666, + "1993": 0.668, + "1994": 0.667, + "1995": 0.67, + "1996": 0.671, + "1997": 0.677, + "1998": 0.677, + "1999": 0.673, + "2000": 0.676, + "2001": 0.68, + "2002": 0.69, + "2003": 0.685, + "2004": 0.699, + "2005": 0.712, + "2006": 0.723, + "2007": 0.74, + "2008": 0.747, + "2009": 0.747, + "2010": 0.745, + "2011": 0.753, + "2012": 0.758, + "2013": 0.764, + "2014": 0.761, + "2015": 0.758, + "2016": 0.748, + "2017": 0.735, + "2018": 0.729, + "2019": 0.711, + "2020": 0.686, + "2021": 0.682 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr117", + "Region": "Nueva Esparta", + "1990": 0.676, + "1991": 0.686, + "1992": 0.691, + "1993": 0.693, + "1994": 0.692, + "1995": 0.696, + "1996": 0.696, + "1997": 0.703, + "1998": 0.703, + "1999": 0.699, + "2000": 0.702, + "2001": 0.707, + "2002": 0.717, + "2003": 0.711, + "2004": 0.726, + "2005": 0.739, + "2006": 0.751, + "2007": 0.768, + "2008": 0.775, + "2009": 0.775, + "2010": 0.774, + "2011": 0.782, + "2012": 0.787, + "2013": 0.794, + "2014": 0.79, + "2015": 0.787, + "2016": 0.778, + "2017": 0.765, + "2018": 0.759, + "2019": 0.742, + "2020": 0.716, + "2021": 0.712 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr118", + "Region": "Portuguesa", + "1990": 0.613, + "1991": 0.623, + "1992": 0.627, + "1993": 0.628, + "1994": 0.628, + "1995": 0.631, + "1996": 0.631, + "1997": 0.636, + "1998": 0.637, + "1999": 0.633, + "2000": 0.635, + "2001": 0.639, + "2002": 0.649, + "2003": 0.644, + "2004": 0.657, + "2005": 0.669, + "2006": 0.68, + "2007": 0.696, + "2008": 0.702, + "2009": 0.703, + "2010": 0.701, + "2011": 0.707, + "2012": 0.712, + "2013": 0.718, + "2014": 0.715, + "2015": 0.712, + "2016": 0.701, + "2017": 0.688, + "2018": 0.683, + "2019": 0.666, + "2020": 0.641, + "2021": 0.638 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr119", + "Region": "Sucre", + "1990": 0.636, + "1991": 0.645, + "1992": 0.65, + "1993": 0.651, + "1994": 0.65, + "1995": 0.653, + "1996": 0.654, + "1997": 0.659, + "1998": 0.659, + "1999": 0.655, + "2000": 0.658, + "2001": 0.662, + "2002": 0.672, + "2003": 0.667, + "2004": 0.68, + "2005": 0.693, + "2006": 0.705, + "2007": 0.721, + "2008": 0.728, + "2009": 0.728, + "2010": 0.725, + "2011": 0.732, + "2012": 0.737, + "2013": 0.743, + "2014": 0.74, + "2015": 0.736, + "2016": 0.726, + "2017": 0.712, + "2018": 0.706, + "2019": 0.689, + "2020": 0.663, + "2021": 0.66 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr120", + "Region": "Tachira", + "1990": 0.659, + "1991": 0.669, + "1992": 0.675, + "1993": 0.676, + "1994": 0.675, + "1995": 0.678, + "1996": 0.678, + "1997": 0.684, + "1998": 0.685, + "1999": 0.681, + "2000": 0.683, + "2001": 0.688, + "2002": 0.698, + "2003": 0.693, + "2004": 0.707, + "2005": 0.72, + "2006": 0.731, + "2007": 0.748, + "2008": 0.755, + "2009": 0.755, + "2010": 0.753, + "2011": 0.76, + "2012": 0.766, + "2013": 0.772, + "2014": 0.768, + "2015": 0.765, + "2016": 0.755, + "2017": 0.741, + "2018": 0.735, + "2019": 0.718, + "2020": 0.692, + "2021": 0.689 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr121", + "Region": "Trujillo", + "1990": 0.635, + "1991": 0.645, + "1992": 0.65, + "1993": 0.651, + "1994": 0.65, + "1995": 0.653, + "1996": 0.653, + "1997": 0.659, + "1998": 0.659, + "1999": 0.655, + "2000": 0.657, + "2001": 0.662, + "2002": 0.672, + "2003": 0.666, + "2004": 0.68, + "2005": 0.693, + "2006": 0.704, + "2007": 0.721, + "2008": 0.727, + "2009": 0.727, + "2010": 0.725, + "2011": 0.731, + "2012": 0.737, + "2013": 0.743, + "2014": 0.739, + "2015": 0.736, + "2016": 0.725, + "2017": 0.711, + "2018": 0.706, + "2019": 0.688, + "2020": 0.663, + "2021": 0.66 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr124", + "Region": "Vargas", + "1990": 0.677, + "1991": 0.687, + "1992": 0.692, + "1993": 0.694, + "1994": 0.693, + "1995": 0.697, + "1996": 0.697, + "1997": 0.703, + "1998": 0.704, + "1999": 0.7, + "2000": 0.703, + "2001": 0.707, + "2002": 0.718, + "2003": 0.712, + "2004": 0.726, + "2005": 0.74, + "2006": 0.752, + "2007": 0.769, + "2008": 0.776, + "2009": 0.776, + "2010": 0.775, + "2011": 0.783, + "2012": 0.788, + "2013": 0.795, + "2014": 0.791, + "2015": 0.788, + "2016": 0.778, + "2017": 0.765, + "2018": 0.76, + "2019": 0.742, + "2020": 0.716, + "2021": 0.712 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr122", + "Region": "Yaracuy", + "1990": 0.631, + "1991": 0.64, + "1992": 0.646, + "1993": 0.647, + "1994": 0.646, + "1995": 0.649, + "1996": 0.649, + "1997": 0.655, + "1998": 0.655, + "1999": 0.651, + "2000": 0.654, + "2001": 0.658, + "2002": 0.668, + "2003": 0.662, + "2004": 0.676, + "2005": 0.689, + "2006": 0.7, + "2007": 0.716, + "2008": 0.723, + "2009": 0.723, + "2010": 0.721, + "2011": 0.728, + "2012": 0.733, + "2013": 0.739, + "2014": 0.736, + "2015": 0.732, + "2016": 0.722, + "2017": 0.709, + "2018": 0.703, + "2019": 0.686, + "2020": 0.661, + "2021": 0.657 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr123", + "Region": "Zulia", + "1990": 0.646, + "1991": 0.656, + "1992": 0.661, + "1993": 0.663, + "1994": 0.662, + "1995": 0.665, + "1996": 0.666, + "1997": 0.671, + "1998": 0.672, + "1999": 0.668, + "2000": 0.671, + "2001": 0.675, + "2002": 0.685, + "2003": 0.68, + "2004": 0.693, + "2005": 0.706, + "2006": 0.718, + "2007": 0.734, + "2008": 0.741, + "2009": 0.741, + "2010": 0.74, + "2011": 0.747, + "2012": 0.752, + "2013": 0.759, + "2014": 0.755, + "2015": 0.752, + "2016": 0.742, + "2017": 0.729, + "2018": 0.724, + "2019": 0.706, + "2020": 0.681, + "2021": 0.677 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "National", + "GDLCODE": "VNMt", + "Region": "Total", + "1990": 0.482, + "1991": 0.493, + "1992": 0.504, + "1993": 0.515, + "1994": 0.526, + "1995": 0.539, + "1996": 0.55, + "1997": 0.56, + "1998": 0.569, + "1999": 0.578, + "2000": 0.588, + "2001": 0.598, + "2002": 0.608, + "2003": 0.617, + "2004": 0.625, + "2005": 0.633, + "2006": 0.641, + "2007": 0.648, + "2008": 0.653, + "2009": 0.658, + "2010": 0.663, + "2011": 0.668, + "2012": 0.672, + "2013": 0.676, + "2014": 0.68, + "2015": 0.684, + "2016": 0.688, + "2017": 0.692, + "2018": 0.697, + "2019": 0.703, + "2020": 0.71, + "2021": 0.703 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr104", + "Region": "Central Highlands", + "1990": 0.462, + "1991": 0.472, + "1992": 0.483, + "1993": 0.494, + "1994": 0.504, + "1995": 0.517, + "1996": 0.527, + "1997": 0.537, + "1998": 0.543, + "1999": 0.549, + "2000": 0.555, + "2001": 0.562, + "2002": 0.568, + "2003": 0.581, + "2004": 0.594, + "2005": 0.607, + "2006": 0.619, + "2007": 0.624, + "2008": 0.627, + "2009": 0.63, + "2010": 0.633, + "2011": 0.633, + "2012": 0.633, + "2013": 0.633, + "2014": 0.632, + "2015": 0.637, + "2016": 0.642, + "2017": 0.647, + "2018": 0.653, + "2019": 0.66, + "2020": 0.667, + "2021": 0.662 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr106", + "Region": "Mekong River Delta", + "1990": 0.438, + "1991": 0.448, + "1992": 0.458, + "1993": 0.468, + "1994": 0.478, + "1995": 0.491, + "1996": 0.5, + "1997": 0.51, + "1998": 0.519, + "1999": 0.529, + "2000": 0.539, + "2001": 0.549, + "2002": 0.559, + "2003": 0.57, + "2004": 0.581, + "2005": 0.593, + "2006": 0.604, + "2007": 0.609, + "2008": 0.614, + "2009": 0.618, + "2010": 0.622, + "2011": 0.628, + "2012": 0.633, + "2013": 0.639, + "2014": 0.644, + "2015": 0.647, + "2016": 0.651, + "2017": 0.654, + "2018": 0.659, + "2019": 0.663, + "2020": 0.67, + "2021": 0.663 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr103", + "Region": "North Central Coast and South Central Coast", + "1990": 0.48, + "1991": 0.491, + "1992": 0.502, + "1993": 0.513, + "1994": 0.524, + "1995": 0.537, + "1996": 0.548, + "1997": 0.558, + "1998": 0.568, + "1999": 0.578, + "2000": 0.588, + "2001": 0.599, + "2002": 0.609, + "2003": 0.619, + "2004": 0.629, + "2005": 0.638, + "2006": 0.647, + "2007": 0.65, + "2008": 0.651, + "2009": 0.653, + "2010": 0.653, + "2011": 0.661, + "2012": 0.668, + "2013": 0.675, + "2014": 0.682, + "2015": 0.687, + "2016": 0.692, + "2017": 0.697, + "2018": 0.703, + "2019": 0.709, + "2020": 0.717, + "2021": 0.711 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr102", + "Region": "North East, North West", + "1990": 0.449, + "1991": 0.459, + "1992": 0.47, + "1993": 0.481, + "1994": 0.491, + "1995": 0.504, + "1996": 0.514, + "1997": 0.523, + "1998": 0.532, + "1999": 0.54, + "2000": 0.55, + "2001": 0.559, + "2002": 0.568, + "2003": 0.575, + "2004": 0.582, + "2005": 0.589, + "2006": 0.596, + "2007": 0.607, + "2008": 0.618, + "2009": 0.628, + "2010": 0.638, + "2011": 0.638, + "2012": 0.637, + "2013": 0.636, + "2014": 0.636, + "2015": 0.64, + "2016": 0.645, + "2017": 0.649, + "2018": 0.655, + "2019": 0.661, + "2020": 0.668, + "2021": 0.662 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr101", + "Region": "Red River Delta", + "1990": 0.515, + "1991": 0.526, + "1992": 0.538, + "1993": 0.549, + "1994": 0.561, + "1995": 0.575, + "1996": 0.586, + "1997": 0.597, + "1998": 0.607, + "1999": 0.616, + "2000": 0.627, + "2001": 0.638, + "2002": 0.648, + "2003": 0.653, + "2004": 0.657, + "2005": 0.661, + "2006": 0.664, + "2007": 0.676, + "2008": 0.687, + "2009": 0.698, + "2010": 0.707, + "2011": 0.712, + "2012": 0.715, + "2013": 0.719, + "2014": 0.722, + "2015": 0.726, + "2016": 0.73, + "2017": 0.734, + "2018": 0.739, + "2019": 0.745, + "2020": 0.752, + "2021": 0.744 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr105", + "Region": "South East", + "1990": 0.535, + "1991": 0.547, + "1992": 0.559, + "1993": 0.571, + "1994": 0.582, + "1995": 0.597, + "1996": 0.608, + "1997": 0.619, + "1998": 0.626, + "1999": 0.634, + "2000": 0.642, + "2001": 0.651, + "2002": 0.659, + "2003": 0.668, + "2004": 0.677, + "2005": 0.685, + "2006": 0.693, + "2007": 0.696, + "2008": 0.697, + "2009": 0.698, + "2010": 0.698, + "2011": 0.702, + "2012": 0.706, + "2013": 0.709, + "2014": 0.713, + "2015": 0.713, + "2016": 0.714, + "2017": 0.716, + "2018": 0.718, + "2019": 0.72, + "2020": 0.724, + "2021": 0.714 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "National", + "GDLCODE": "YEMt", + "Region": "Total", + "1990": 0.383, + "1991": 0.386, + "1992": 0.391, + "1993": 0.397, + "1994": 0.399, + "1995": 0.409, + "1996": 0.419, + "1997": 0.427, + "1998": 0.435, + "1999": 0.441, + "2000": 0.45, + "2001": 0.46, + "2002": 0.468, + "2003": 0.476, + "2004": 0.483, + "2005": 0.489, + "2006": 0.494, + "2007": 0.498, + "2008": 0.501, + "2009": 0.506, + "2010": 0.51, + "2011": 0.509, + "2012": 0.512, + "2013": 0.513, + "2014": 0.505, + "2015": 0.477, + "2016": 0.467, + "2017": 0.459, + "2018": 0.459, + "2019": 0.461, + "2020": 0.46, + "2021": 0.455 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr102", + "Region": "Abyan, Aden (town and countryside), Lahej, Ad Dali (Al Dhalih)", + "1990": 0.437, + "1991": 0.442, + "1992": 0.448, + "1993": 0.455, + "1994": 0.459, + "1995": 0.471, + "1996": 0.483, + "1997": 0.493, + "1998": 0.504, + "1999": 0.512, + "2000": 0.524, + "2001": 0.536, + "2002": 0.547, + "2003": 0.558, + "2004": 0.567, + "2005": 0.575, + "2006": 0.582, + "2007": 0.581, + "2008": 0.579, + "2009": 0.579, + "2010": 0.578, + "2011": 0.572, + "2012": 0.57, + "2013": 0.566, + "2014": 0.558, + "2015": 0.528, + "2016": 0.518, + "2017": 0.51, + "2018": 0.51, + "2019": 0.512, + "2020": 0.511, + "2021": 0.506 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr104", + "Region": "Beida (Al Bayda), Dhamar, Raimah", + "1990": 0.369, + "1991": 0.372, + "1992": 0.377, + "1993": 0.382, + "1994": 0.384, + "1995": 0.393, + "1996": 0.402, + "1997": 0.41, + "1998": 0.412, + "1999": 0.413, + "2000": 0.417, + "2001": 0.421, + "2002": 0.423, + "2003": 0.426, + "2004": 0.427, + "2005": 0.428, + "2006": 0.428, + "2007": 0.434, + "2008": 0.439, + "2009": 0.446, + "2010": 0.452, + "2011": 0.454, + "2012": 0.459, + "2013": 0.463, + "2014": 0.455, + "2015": 0.429, + "2016": 0.42, + "2017": 0.412, + "2018": 0.411, + "2019": 0.413, + "2020": 0.413, + "2021": 0.408 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr107", + "Region": "Hajja, Sada, Amran (Omran)", + "1990": 0.325, + "1991": 0.328, + "1992": 0.332, + "1993": 0.336, + "1994": 0.338, + "1995": 0.347, + "1996": 0.355, + "1997": 0.362, + "1998": 0.369, + "1999": 0.375, + "2000": 0.385, + "2001": 0.393, + "2002": 0.401, + "2003": 0.409, + "2004": 0.415, + "2005": 0.421, + "2006": 0.426, + "2007": 0.43, + "2008": 0.434, + "2009": 0.44, + "2010": 0.444, + "2011": 0.444, + "2012": 0.448, + "2013": 0.451, + "2014": 0.443, + "2015": 0.416, + "2016": 0.407, + "2017": 0.399, + "2018": 0.398, + "2019": 0.4, + "2020": 0.4, + "2021": 0.395 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr108", + "Region": "Hodeida (Al Hudaydah), Mahweit (Al Mahwit)", + "1990": 0.333, + "1991": 0.335, + "1992": 0.339, + "1993": 0.343, + "1994": 0.345, + "1995": 0.354, + "1996": 0.362, + "1997": 0.369, + "1998": 0.375, + "1999": 0.38, + "2000": 0.388, + "2001": 0.395, + "2002": 0.402, + "2003": 0.409, + "2004": 0.414, + "2005": 0.419, + "2006": 0.423, + "2007": 0.43, + "2008": 0.436, + "2009": 0.443, + "2010": 0.45, + "2011": 0.452, + "2012": 0.458, + "2013": 0.463, + "2014": 0.455, + "2015": 0.428, + "2016": 0.419, + "2017": 0.41, + "2018": 0.41, + "2019": 0.412, + "2020": 0.412, + "2021": 0.406 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr101", + "Region": "Ibb", + "1990": 0.362, + "1991": 0.364, + "1992": 0.369, + "1993": 0.373, + "1994": 0.375, + "1995": 0.384, + "1996": 0.393, + "1997": 0.4, + "1998": 0.412, + "1999": 0.423, + "2000": 0.437, + "2001": 0.451, + "2002": 0.463, + "2003": 0.476, + "2004": 0.487, + "2005": 0.498, + "2006": 0.507, + "2007": 0.508, + "2008": 0.508, + "2009": 0.51, + "2010": 0.511, + "2011": 0.508, + "2012": 0.508, + "2013": 0.508, + "2014": 0.5, + "2015": 0.472, + "2016": 0.462, + "2017": 0.454, + "2018": 0.454, + "2019": 0.456, + "2020": 0.455, + "2021": 0.45 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr106", + "Region": "Jawf, Hadramet, Shabda (Shabwah), Marib, Mohra (Al Mahrah)", + "1990": 0.413, + "1991": 0.417, + "1992": 0.423, + "1993": 0.43, + "1994": 0.433, + "1995": 0.444, + "1996": 0.455, + "1997": 0.464, + "1998": 0.47, + "1999": 0.475, + "2000": 0.482, + "2001": 0.49, + "2002": 0.497, + "2003": 0.503, + "2004": 0.508, + "2005": 0.512, + "2006": 0.515, + "2007": 0.523, + "2008": 0.53, + "2009": 0.54, + "2010": 0.548, + "2011": 0.552, + "2012": 0.56, + "2013": 0.565, + "2014": 0.557, + "2015": 0.528, + "2016": 0.518, + "2017": 0.51, + "2018": 0.51, + "2019": 0.512, + "2020": 0.512, + "2021": 0.506 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr103", + "Region": "Sana a (capital; Al Amana), Sana a (governorate)", + "1990": 0.413, + "1991": 0.416, + "1992": 0.422, + "1993": 0.428, + "1994": 0.431, + "1995": 0.442, + "1996": 0.452, + "1997": 0.46, + "1998": 0.473, + "1999": 0.485, + "2000": 0.499, + "2001": 0.514, + "2002": 0.527, + "2003": 0.541, + "2004": 0.553, + "2005": 0.564, + "2006": 0.574, + "2007": 0.576, + "2008": 0.577, + "2009": 0.581, + "2010": 0.583, + "2011": 0.581, + "2012": 0.582, + "2013": 0.581, + "2014": 0.573, + "2015": 0.543, + "2016": 0.534, + "2017": 0.525, + "2018": 0.525, + "2019": 0.528, + "2020": 0.527, + "2021": 0.521 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr105", + "Region": "Taiz", + "1990": 0.416, + "1991": 0.419, + "1992": 0.424, + "1993": 0.43, + "1994": 0.433, + "1995": 0.443, + "1996": 0.454, + "1997": 0.462, + "1998": 0.47, + "1999": 0.475, + "2000": 0.484, + "2001": 0.493, + "2002": 0.501, + "2003": 0.509, + "2004": 0.516, + "2005": 0.521, + "2006": 0.526, + "2007": 0.529, + "2008": 0.53, + "2009": 0.533, + "2010": 0.534, + "2011": 0.531, + "2012": 0.532, + "2013": 0.531, + "2014": 0.523, + "2015": 0.493, + "2016": 0.483, + "2017": 0.474, + "2018": 0.474, + "2019": 0.476, + "2020": 0.475, + "2021": 0.47 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "National", + "GDLCODE": "ZMBt", + "Region": "Total", + "1990": 0.412, + "1991": 0.408, + "1992": 0.408, + "1993": 0.414, + "1994": 0.411, + "1995": 0.413, + "1996": 0.414, + "1997": 0.413, + "1998": 0.411, + "1999": 0.413, + "2000": 0.418, + "2001": 0.425, + "2002": 0.434, + "2003": 0.448, + "2004": 0.459, + "2005": 0.472, + "2006": 0.484, + "2007": 0.495, + "2008": 0.506, + "2009": 0.519, + "2010": 0.529, + "2011": 0.534, + "2012": 0.548, + "2013": 0.554, + "2014": 0.557, + "2015": 0.562, + "2016": 0.564, + "2017": 0.568, + "2018": 0.572, + "2019": 0.575, + "2020": 0.57, + "2021": 0.565 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr101", + "Region": "Central", + "1990": 0.422, + "1991": 0.418, + "1992": 0.418, + "1993": 0.424, + "1994": 0.421, + "1995": 0.423, + "1996": 0.424, + "1997": 0.421, + "1998": 0.416, + "1999": 0.416, + "2000": 0.418, + "2001": 0.423, + "2002": 0.429, + "2003": 0.445, + "2004": 0.459, + "2005": 0.474, + "2006": 0.488, + "2007": 0.501, + "2008": 0.509, + "2009": 0.519, + "2010": 0.525, + "2011": 0.527, + "2012": 0.538, + "2013": 0.541, + "2014": 0.541, + "2015": 0.55, + "2016": 0.554, + "2017": 0.561, + "2018": 0.568, + "2019": 0.571, + "2020": 0.566, + "2021": 0.561 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr102", + "Region": "Copperbelt", + "1990": 0.486, + "1991": 0.482, + "1992": 0.482, + "1993": 0.488, + "1994": 0.486, + "1995": 0.489, + "1996": 0.489, + "1997": 0.49, + "1998": 0.488, + "1999": 0.492, + "2000": 0.498, + "2001": 0.508, + "2002": 0.519, + "2003": 0.529, + "2004": 0.537, + "2005": 0.546, + "2006": 0.554, + "2007": 0.561, + "2008": 0.574, + "2009": 0.59, + "2010": 0.601, + "2011": 0.609, + "2012": 0.625, + "2013": 0.633, + "2014": 0.637, + "2015": 0.639, + "2016": 0.637, + "2017": 0.638, + "2018": 0.638, + "2019": 0.641, + "2020": 0.636, + "2021": 0.631 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr103", + "Region": "Eastern", + "1990": 0.334, + "1991": 0.331, + "1992": 0.33, + "1993": 0.335, + "1994": 0.332, + "1995": 0.334, + "1996": 0.334, + "1997": 0.34, + "1998": 0.344, + "1999": 0.352, + "2000": 0.361, + "2001": 0.374, + "2002": 0.387, + "2003": 0.4, + "2004": 0.41, + "2005": 0.421, + "2006": 0.432, + "2007": 0.442, + "2008": 0.449, + "2009": 0.458, + "2010": 0.463, + "2011": 0.465, + "2012": 0.474, + "2013": 0.477, + "2014": 0.476, + "2015": 0.488, + "2016": 0.495, + "2017": 0.505, + "2018": 0.515, + "2019": 0.517, + "2020": 0.513, + "2021": 0.509 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr104", + "Region": "Luapula", + "1990": 0.363, + "1991": 0.359, + "1992": 0.358, + "1993": 0.363, + "1994": 0.36, + "1995": 0.362, + "1996": 0.363, + "1997": 0.359, + "1998": 0.354, + "1999": 0.353, + "2000": 0.355, + "2001": 0.359, + "2002": 0.363, + "2003": 0.383, + "2004": 0.4, + "2005": 0.418, + "2006": 0.436, + "2007": 0.453, + "2008": 0.461, + "2009": 0.472, + "2010": 0.479, + "2011": 0.482, + "2012": 0.493, + "2013": 0.497, + "2014": 0.497, + "2015": 0.499, + "2016": 0.497, + "2017": 0.498, + "2018": 0.498, + "2019": 0.501, + "2020": 0.496, + "2021": 0.492 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr105", + "Region": "Lusaka", + "1990": 0.484, + "1991": 0.48, + "1992": 0.481, + "1993": 0.487, + "1994": 0.485, + "1995": 0.488, + "1996": 0.488, + "1997": 0.487, + "1998": 0.483, + "1999": 0.485, + "2000": 0.489, + "2001": 0.497, + "2002": 0.505, + "2003": 0.518, + "2004": 0.529, + "2005": 0.541, + "2006": 0.552, + "2007": 0.562, + "2008": 0.575, + "2009": 0.591, + "2010": 0.602, + "2011": 0.61, + "2012": 0.625, + "2013": 0.634, + "2014": 0.638, + "2015": 0.641, + "2016": 0.64, + "2017": 0.642, + "2018": 0.643, + "2019": 0.646, + "2020": 0.641, + "2021": 0.636 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr107", + "Region": "North-Western", + "1990": 0.392, + "1991": 0.388, + "1992": 0.387, + "1993": 0.392, + "1994": 0.389, + "1995": 0.391, + "1996": 0.392, + "1997": 0.395, + "1998": 0.397, + "1999": 0.403, + "2000": 0.411, + "2001": 0.422, + "2002": 0.433, + "2003": 0.444, + "2004": 0.452, + "2005": 0.461, + "2006": 0.47, + "2007": 0.477, + "2008": 0.487, + "2009": 0.5, + "2010": 0.508, + "2011": 0.512, + "2012": 0.526, + "2013": 0.531, + "2014": 0.533, + "2015": 0.55, + "2016": 0.562, + "2017": 0.578, + "2018": 0.593, + "2019": 0.595, + "2020": 0.59, + "2021": 0.586 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr106", + "Region": "Northern", + "1990": 0.376, + "1991": 0.372, + "1992": 0.371, + "1993": 0.377, + "1994": 0.373, + "1995": 0.376, + "1996": 0.376, + "1997": 0.378, + "1998": 0.377, + "1999": 0.381, + "2000": 0.387, + "2001": 0.395, + "2002": 0.405, + "2003": 0.416, + "2004": 0.424, + "2005": 0.434, + "2006": 0.443, + "2007": 0.451, + "2008": 0.461, + "2009": 0.474, + "2010": 0.482, + "2011": 0.487, + "2012": 0.5, + "2013": 0.506, + "2014": 0.508, + "2015": 0.514, + "2016": 0.517, + "2017": 0.522, + "2018": 0.527, + "2019": 0.529, + "2020": 0.524, + "2021": 0.52 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr108", + "Region": "Southern", + "1990": 0.415, + "1991": 0.412, + "1992": 0.412, + "1993": 0.417, + "1994": 0.414, + "1995": 0.417, + "1996": 0.418, + "1997": 0.415, + "1998": 0.411, + "1999": 0.411, + "2000": 0.414, + "2001": 0.42, + "2002": 0.426, + "2003": 0.446, + "2004": 0.464, + "2005": 0.483, + "2006": 0.501, + "2007": 0.518, + "2008": 0.526, + "2009": 0.537, + "2010": 0.543, + "2011": 0.545, + "2012": 0.556, + "2013": 0.559, + "2014": 0.559, + "2015": 0.563, + "2016": 0.563, + "2017": 0.566, + "2018": 0.569, + "2019": 0.572, + "2020": 0.567, + "2021": 0.562 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr109", + "Region": "Western", + "1990": 0.37, + "1991": 0.366, + "1992": 0.365, + "1993": 0.37, + "1994": 0.367, + "1995": 0.368, + "1996": 0.369, + "1997": 0.365, + "1998": 0.359, + "1999": 0.357, + "2000": 0.358, + "2001": 0.36, + "2002": 0.364, + "2003": 0.38, + "2004": 0.393, + "2005": 0.408, + "2006": 0.422, + "2007": 0.435, + "2008": 0.446, + "2009": 0.46, + "2010": 0.47, + "2011": 0.476, + "2012": 0.491, + "2013": 0.498, + "2014": 0.501, + "2015": 0.509, + "2016": 0.512, + "2017": 0.518, + "2018": 0.524, + "2019": 0.526, + "2020": 0.521, + "2021": 0.517 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "National", + "GDLCODE": "ZWEt", + "Region": "Total", + "1990": 0.509, + "1991": 0.512, + "1992": 0.498, + "1993": 0.491, + "1994": 0.486, + "1995": 0.477, + "1996": 0.476, + "1997": 0.472, + "1998": 0.466, + "1999": 0.457, + "2000": 0.452, + "2001": 0.441, + "2002": 0.452, + "2003": 0.439, + "2004": 0.446, + "2005": 0.448, + "2006": 0.452, + "2007": 0.454, + "2008": 0.454, + "2009": 0.486, + "2010": 0.512, + "2011": 0.535, + "2012": 0.557, + "2013": 0.567, + "2014": 0.576, + "2015": 0.582, + "2016": 0.588, + "2017": 0.594, + "2018": 0.602, + "2019": 0.601, + "2020": 0.6, + "2021": 0.593 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr110", + "Region": "Bulawayo", + "1990": 0.622, + "1991": 0.626, + "1992": 0.611, + "1993": 0.603, + "1994": 0.598, + "1995": 0.584, + "1996": 0.579, + "1997": 0.571, + "1998": 0.561, + "1999": 0.548, + "2000": 0.544, + "2001": 0.531, + "2002": 0.545, + "2003": 0.531, + "2004": 0.54, + "2005": 0.543, + "2006": 0.548, + "2007": 0.548, + "2008": 0.546, + "2009": 0.576, + "2010": 0.601, + "2011": 0.623, + "2012": 0.651, + "2013": 0.667, + "2014": 0.682, + "2015": 0.693, + "2016": 0.696, + "2017": 0.7, + "2018": 0.706, + "2019": 0.703, + "2020": 0.702, + "2021": 0.693 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr109", + "Region": "Harare", + "1990": 0.623, + "1991": 0.627, + "1992": 0.612, + "1993": 0.604, + "1994": 0.598, + "1995": 0.584, + "1996": 0.578, + "1997": 0.57, + "1998": 0.56, + "1999": 0.546, + "2000": 0.539, + "2001": 0.523, + "2002": 0.534, + "2003": 0.518, + "2004": 0.524, + "2005": 0.524, + "2006": 0.526, + "2007": 0.525, + "2008": 0.522, + "2009": 0.552, + "2010": 0.576, + "2011": 0.597, + "2012": 0.625, + "2013": 0.641, + "2014": 0.656, + "2015": 0.667, + "2016": 0.67, + "2017": 0.673, + "2018": 0.678, + "2019": 0.674, + "2020": 0.673, + "2021": 0.665 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr101", + "Region": "Manicaland", + "1990": 0.471, + "1991": 0.474, + "1992": 0.46, + "1993": 0.454, + "1994": 0.449, + "1995": 0.438, + "1996": 0.434, + "1997": 0.428, + "1998": 0.419, + "1999": 0.408, + "2000": 0.406, + "2001": 0.398, + "2002": 0.412, + "2003": 0.402, + "2004": 0.412, + "2005": 0.416, + "2006": 0.423, + "2007": 0.427, + "2008": 0.429, + "2009": 0.463, + "2010": 0.491, + "2011": 0.516, + "2012": 0.532, + "2013": 0.537, + "2014": 0.541, + "2015": 0.541, + "2016": 0.554, + "2017": 0.568, + "2018": 0.584, + "2019": 0.591, + "2020": 0.589, + "2021": 0.583 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr102", + "Region": "Mashonaland Central", + "1990": 0.45, + "1991": 0.453, + "1992": 0.439, + "1993": 0.433, + "1994": 0.428, + "1995": 0.422, + "1996": 0.422, + "1997": 0.421, + "1998": 0.417, + "1999": 0.41, + "2000": 0.406, + "2001": 0.396, + "2002": 0.407, + "2003": 0.396, + "2004": 0.403, + "2005": 0.405, + "2006": 0.409, + "2007": 0.413, + "2008": 0.414, + "2009": 0.447, + "2010": 0.472, + "2011": 0.496, + "2012": 0.516, + "2013": 0.524, + "2014": 0.532, + "2015": 0.537, + "2016": 0.539, + "2017": 0.542, + "2018": 0.547, + "2019": 0.542, + "2020": 0.541, + "2021": 0.535 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr103", + "Region": "Mashonaland East", + "1990": 0.495, + "1991": 0.498, + "1992": 0.484, + "1993": 0.477, + "1994": 0.473, + "1995": 0.46, + "1996": 0.455, + "1997": 0.447, + "1998": 0.438, + "1999": 0.426, + "2000": 0.424, + "2001": 0.416, + "2002": 0.431, + "2003": 0.421, + "2004": 0.431, + "2005": 0.436, + "2006": 0.443, + "2007": 0.447, + "2008": 0.45, + "2009": 0.485, + "2010": 0.513, + "2011": 0.539, + "2012": 0.553, + "2013": 0.556, + "2014": 0.558, + "2015": 0.556, + "2016": 0.565, + "2017": 0.575, + "2018": 0.586, + "2019": 0.588, + "2020": 0.587, + "2021": 0.581 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr104", + "Region": "Mashonaland West", + "1990": 0.458, + "1991": 0.461, + "1992": 0.448, + "1993": 0.441, + "1994": 0.436, + "1995": 0.432, + "1996": 0.435, + "1997": 0.436, + "1998": 0.435, + "1999": 0.432, + "2000": 0.428, + "2001": 0.418, + "2002": 0.43, + "2003": 0.419, + "2004": 0.427, + "2005": 0.429, + "2006": 0.434, + "2007": 0.435, + "2008": 0.434, + "2009": 0.464, + "2010": 0.488, + "2011": 0.509, + "2012": 0.532, + "2013": 0.545, + "2014": 0.556, + "2015": 0.565, + "2016": 0.566, + "2017": 0.569, + "2018": 0.572, + "2019": 0.567, + "2020": 0.566, + "2021": 0.559 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr108", + "Region": "Masvingo", + "1990": 0.48, + "1991": 0.483, + "1992": 0.469, + "1993": 0.462, + "1994": 0.457, + "1995": 0.452, + "1996": 0.454, + "1997": 0.454, + "1998": 0.452, + "1999": 0.447, + "2000": 0.44, + "2001": 0.428, + "2002": 0.436, + "2003": 0.422, + "2004": 0.427, + "2005": 0.426, + "2006": 0.428, + "2007": 0.43, + "2008": 0.429, + "2009": 0.461, + "2010": 0.485, + "2011": 0.507, + "2012": 0.535, + "2013": 0.552, + "2014": 0.568, + "2015": 0.58, + "2016": 0.585, + "2017": 0.591, + "2018": 0.598, + "2019": 0.596, + "2020": 0.595, + "2021": 0.588 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr105", + "Region": "Matebeleland North", + "1990": 0.458, + "1991": 0.461, + "1992": 0.448, + "1993": 0.441, + "1994": 0.437, + "1995": 0.436, + "1996": 0.443, + "1997": 0.447, + "1998": 0.449, + "1999": 0.448, + "2000": 0.437, + "2001": 0.422, + "2002": 0.427, + "2003": 0.409, + "2004": 0.411, + "2005": 0.407, + "2006": 0.405, + "2007": 0.412, + "2008": 0.417, + "2009": 0.454, + "2010": 0.484, + "2011": 0.511, + "2012": 0.53, + "2013": 0.538, + "2014": 0.545, + "2015": 0.548, + "2016": 0.549, + "2017": 0.551, + "2018": 0.554, + "2019": 0.548, + "2020": 0.547, + "2021": 0.541 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr106", + "Region": "Matebeleland South", + "1990": 0.471, + "1991": 0.474, + "1992": 0.46, + "1993": 0.454, + "1994": 0.449, + "1995": 0.445, + "1996": 0.447, + "1997": 0.447, + "1998": 0.446, + "1999": 0.441, + "2000": 0.438, + "2001": 0.43, + "2002": 0.442, + "2003": 0.432, + "2004": 0.44, + "2005": 0.444, + "2006": 0.45, + "2007": 0.451, + "2008": 0.449, + "2009": 0.481, + "2010": 0.505, + "2011": 0.526, + "2012": 0.544, + "2013": 0.55, + "2014": 0.555, + "2015": 0.557, + "2016": 0.566, + "2017": 0.577, + "2018": 0.589, + "2019": 0.592, + "2020": 0.591, + "2021": 0.585 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr107", + "Region": "Midlands", + "1990": 0.51, + "1991": 0.513, + "1992": 0.499, + "1993": 0.492, + "1994": 0.487, + "1995": 0.475, + "1996": 0.47, + "1997": 0.463, + "1998": 0.454, + "1999": 0.442, + "2000": 0.439, + "2001": 0.429, + "2002": 0.441, + "2003": 0.43, + "2004": 0.438, + "2005": 0.441, + "2006": 0.446, + "2007": 0.448, + "2008": 0.448, + "2009": 0.481, + "2010": 0.506, + "2011": 0.529, + "2012": 0.552, + "2013": 0.563, + "2014": 0.574, + "2015": 0.581, + "2016": 0.586, + "2017": 0.591, + "2018": 0.599, + "2019": 0.598, + "2020": 0.597, + "2021": 0.59 + } +] diff --git a/public/gdl-data/education.json b/public/gdl-data/education.json new file mode 100644 index 0000000..c3f3ba8 --- /dev/null +++ b/public/gdl-data/education.json @@ -0,0 +1,78962 @@ +[ + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "National", + "GDLCODE": "AFGt", + "Region": "Total", + "1990": 0.102, + "1991": 0.112, + "1992": 0.122, + "1993": 0.132, + "1994": 0.142, + "1995": 0.152, + "1996": 0.162, + "1997": 0.171, + "1998": 0.181, + "1999": 0.191, + "2000": 0.201, + "2001": 0.211, + "2002": 0.221, + "2003": 0.231, + "2004": 0.26, + "2005": 0.269, + "2006": 0.279, + "2007": 0.29, + "2008": 0.3, + "2009": 0.31, + "2010": 0.32, + "2011": 0.33, + "2012": 0.34, + "2013": 0.35, + "2014": 0.36, + "2015": 0.362, + "2016": 0.365, + "2017": 0.368, + "2018": 0.372, + "2019": 0.377, + "2020": 0.38, + "2021": 0.385 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr101", + "Region": "Central (Kabul Wardak Kapisa Logar Parwan Panjsher)", + "1990": 0.164, + "1991": 0.179, + "1992": 0.194, + "1993": 0.209, + "1994": 0.224, + "1995": 0.239, + "1996": 0.253, + "1997": 0.268, + "1998": 0.282, + "1999": 0.296, + "2000": 0.311, + "2001": 0.326, + "2002": 0.342, + "2003": 0.358, + "2004": 0.399, + "2005": 0.413, + "2006": 0.429, + "2007": 0.445, + "2008": 0.461, + "2009": 0.477, + "2010": 0.493, + "2011": 0.492, + "2012": 0.493, + "2013": 0.494, + "2014": 0.495, + "2015": 0.487, + "2016": 0.492, + "2017": 0.498, + "2018": 0.504, + "2019": 0.511, + "2020": 0.517, + "2021": 0.524 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr102", + "Region": "Central Highlands (Bamyan Daikundi)", + "1990": 0.126, + "1991": 0.14, + "1992": 0.153, + "1993": 0.167, + "1994": 0.18, + "1995": 0.194, + "1996": 0.207, + "1997": 0.22, + "1998": 0.233, + "1999": 0.247, + "2000": 0.26, + "2001": 0.274, + "2002": 0.287, + "2003": 0.301, + "2004": 0.341, + "2005": 0.353, + "2006": 0.366, + "2007": 0.379, + "2008": 0.392, + "2009": 0.405, + "2010": 0.418, + "2011": 0.414, + "2012": 0.41, + "2013": 0.407, + "2014": 0.404, + "2015": 0.392, + "2016": 0.394, + "2017": 0.396, + "2018": 0.399, + "2019": 0.403, + "2020": 0.405, + "2021": 0.408 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr103", + "Region": "East (Nangarhar Kunar Laghman Nooristan)", + "1990": 0.11, + "1991": 0.121, + "1992": 0.131, + "1993": 0.142, + "1994": 0.152, + "1995": 0.163, + "1996": 0.173, + "1997": 0.183, + "1998": 0.193, + "1999": 0.203, + "2000": 0.214, + "2001": 0.224, + "2002": 0.235, + "2003": 0.246, + "2004": 0.276, + "2005": 0.286, + "2006": 0.296, + "2007": 0.307, + "2008": 0.318, + "2009": 0.329, + "2010": 0.34, + "2011": 0.345, + "2012": 0.35, + "2013": 0.356, + "2014": 0.361, + "2015": 0.359, + "2016": 0.363, + "2017": 0.367, + "2018": 0.371, + "2019": 0.376, + "2020": 0.38, + "2021": 0.385 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr104", + "Region": "North (Samangan Sar-e-Pul Balkh Jawzjan Faryab)", + "1990": 0.097, + "1991": 0.107, + "1992": 0.117, + "1993": 0.127, + "1994": 0.138, + "1995": 0.148, + "1996": 0.158, + "1997": 0.168, + "1998": 0.178, + "1999": 0.188, + "2000": 0.198, + "2001": 0.208, + "2002": 0.219, + "2003": 0.229, + "2004": 0.259, + "2005": 0.269, + "2006": 0.278, + "2007": 0.288, + "2008": 0.298, + "2009": 0.308, + "2010": 0.318, + "2011": 0.336, + "2012": 0.354, + "2013": 0.371, + "2014": 0.389, + "2015": 0.396, + "2016": 0.4, + "2017": 0.403, + "2018": 0.407, + "2019": 0.412, + "2020": 0.416, + "2021": 0.42 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr105", + "Region": "North East (Baghlan Takhar Badakhshan Kunduz)", + "1990": 0.094, + "1991": 0.104, + "1992": 0.113, + "1993": 0.123, + "1994": 0.133, + "1995": 0.143, + "1996": 0.152, + "1997": 0.161, + "1998": 0.171, + "1999": 0.18, + "2000": 0.19, + "2001": 0.2, + "2002": 0.21, + "2003": 0.22, + "2004": 0.248, + "2005": 0.257, + "2006": 0.266, + "2007": 0.276, + "2008": 0.285, + "2009": 0.295, + "2010": 0.304, + "2011": 0.308, + "2012": 0.313, + "2013": 0.317, + "2014": 0.322, + "2015": 0.319, + "2016": 0.322, + "2017": 0.325, + "2018": 0.327, + "2019": 0.332, + "2020": 0.334, + "2021": 0.338 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr106", + "Region": "South (Uruzgan Helmand Zabul Nimroz Kandahar)", + "1990": 0.045, + "1991": 0.049, + "1992": 0.053, + "1993": 0.057, + "1994": 0.062, + "1995": 0.066, + "1996": 0.07, + "1997": 0.074, + "1998": 0.078, + "1999": 0.082, + "2000": 0.086, + "2001": 0.09, + "2002": 0.094, + "2003": 0.099, + "2004": 0.11, + "2005": 0.114, + "2006": 0.118, + "2007": 0.123, + "2008": 0.127, + "2009": 0.132, + "2010": 0.136, + "2011": 0.156, + "2012": 0.175, + "2013": 0.194, + "2014": 0.213, + "2015": 0.227, + "2016": 0.229, + "2017": 0.231, + "2018": 0.233, + "2019": 0.237, + "2020": 0.239, + "2021": 0.242 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr107", + "Region": "South East (Ghazni Paktya Paktika Khost)", + "1990": 0.106, + "1991": 0.117, + "1992": 0.127, + "1993": 0.137, + "1994": 0.148, + "1995": 0.158, + "1996": 0.168, + "1997": 0.178, + "1998": 0.188, + "1999": 0.198, + "2000": 0.208, + "2001": 0.218, + "2002": 0.229, + "2003": 0.24, + "2004": 0.269, + "2005": 0.278, + "2006": 0.289, + "2007": 0.299, + "2008": 0.31, + "2009": 0.32, + "2010": 0.331, + "2011": 0.336, + "2012": 0.342, + "2013": 0.348, + "2014": 0.354, + "2015": 0.352, + "2016": 0.355, + "2017": 0.357, + "2018": 0.36, + "2019": 0.364, + "2020": 0.367, + "2021": 0.37 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr108", + "Region": "West (Ghor Herat Badghis Farah)", + "1990": 0.088, + "1991": 0.097, + "1992": 0.106, + "1993": 0.116, + "1994": 0.125, + "1995": 0.134, + "1996": 0.143, + "1997": 0.152, + "1998": 0.161, + "1999": 0.17, + "2000": 0.179, + "2001": 0.189, + "2002": 0.198, + "2003": 0.208, + "2004": 0.235, + "2005": 0.243, + "2006": 0.252, + "2007": 0.261, + "2008": 0.27, + "2009": 0.279, + "2010": 0.288, + "2011": 0.294, + "2012": 0.301, + "2013": 0.307, + "2014": 0.314, + "2015": 0.313, + "2016": 0.316, + "2017": 0.318, + "2018": 0.32, + "2019": 0.324, + "2020": 0.327, + "2021": 0.33 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "National", + "GDLCODE": "ALBt", + "Region": "Total", + "1990": 0.567, + "1991": 0.572, + "1992": 0.541, + "1993": 0.526, + "1994": 0.525, + "1995": 0.527, + "1996": 0.538, + "1997": 0.555, + "1998": 0.569, + "1999": 0.579, + "2000": 0.586, + "2001": 0.591, + "2002": 0.594, + "2003": 0.601, + "2004": 0.603, + "2005": 0.62, + "2006": 0.627, + "2007": 0.639, + "2008": 0.646, + "2009": 0.656, + "2010": 0.682, + "2011": 0.709, + "2012": 0.739, + "2013": 0.754, + "2014": 0.769, + "2015": 0.77, + "2016": 0.769, + "2017": 0.775, + "2018": 0.778, + "2019": 0.788, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr201", + "Region": " Berat", + "1990": 0.567, + "1991": 0.571, + "1992": 0.54, + "1993": 0.525, + "1994": 0.524, + "1995": 0.526, + "1996": 0.537, + "1997": 0.554, + "1998": 0.568, + "1999": 0.578, + "2000": 0.585, + "2001": 0.59, + "2002": 0.592, + "2003": 0.6, + "2004": 0.602, + "2005": 0.619, + "2006": 0.625, + "2007": 0.638, + "2008": 0.645, + "2009": 0.654, + "2010": 0.677, + "2011": 0.7, + "2012": 0.727, + "2013": 0.738, + "2014": 0.749, + "2015": 0.746, + "2016": 0.741, + "2017": 0.743, + "2018": 0.746, + "2019": 0.755, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr202", + "Region": " Diber", + "1990": 0.528, + "1991": 0.532, + "1992": 0.504, + "1993": 0.49, + "1994": 0.489, + "1995": 0.491, + "1996": 0.502, + "1997": 0.518, + "1998": 0.531, + "1999": 0.54, + "2000": 0.546, + "2001": 0.551, + "2002": 0.553, + "2003": 0.561, + "2004": 0.562, + "2005": 0.578, + "2006": 0.573, + "2007": 0.574, + "2008": 0.568, + "2009": 0.566, + "2010": 0.588, + "2011": 0.61, + "2012": 0.636, + "2013": 0.649, + "2014": 0.661, + "2015": 0.662, + "2016": 0.66, + "2017": 0.665, + "2018": 0.668, + "2019": 0.676, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr203", + "Region": " Durres", + "1990": 0.544, + "1991": 0.548, + "1992": 0.52, + "1993": 0.506, + "1994": 0.505, + "1995": 0.507, + "1996": 0.518, + "1997": 0.535, + "1998": 0.548, + "1999": 0.558, + "2000": 0.565, + "2001": 0.57, + "2002": 0.572, + "2003": 0.58, + "2004": 0.581, + "2005": 0.597, + "2006": 0.602, + "2007": 0.613, + "2008": 0.618, + "2009": 0.626, + "2010": 0.655, + "2011": 0.685, + "2012": 0.72, + "2013": 0.739, + "2014": 0.758, + "2015": 0.763, + "2016": 0.766, + "2017": 0.776, + "2018": 0.779, + "2019": 0.789, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr204", + "Region": " Elbasan", + "1990": 0.561, + "1991": 0.565, + "1992": 0.535, + "1993": 0.52, + "1994": 0.519, + "1995": 0.521, + "1996": 0.532, + "1997": 0.549, + "1998": 0.563, + "1999": 0.572, + "2000": 0.579, + "2001": 0.584, + "2002": 0.587, + "2003": 0.594, + "2004": 0.596, + "2005": 0.613, + "2006": 0.608, + "2007": 0.608, + "2008": 0.603, + "2009": 0.6, + "2010": 0.629, + "2011": 0.658, + "2012": 0.692, + "2013": 0.711, + "2014": 0.731, + "2015": 0.736, + "2016": 0.738, + "2017": 0.749, + "2018": 0.751, + "2019": 0.76, + "2020": 0.749, + "2021": 0.749 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr205", + "Region": " Fier", + "1990": 0.57, + "1991": 0.574, + "1992": 0.544, + "1993": 0.528, + "1994": 0.527, + "1995": 0.529, + "1996": 0.54, + "1997": 0.558, + "1998": 0.572, + "1999": 0.581, + "2000": 0.588, + "2001": 0.593, + "2002": 0.596, + "2003": 0.603, + "2004": 0.605, + "2005": 0.622, + "2006": 0.622, + "2007": 0.627, + "2008": 0.627, + "2009": 0.629, + "2010": 0.652, + "2011": 0.675, + "2012": 0.702, + "2013": 0.714, + "2014": 0.726, + "2015": 0.725, + "2016": 0.721, + "2017": 0.725, + "2018": 0.728, + "2019": 0.737, + "2020": 0.727, + "2021": 0.727 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr206", + "Region": " Gjirokaster", + "1990": 0.599, + "1991": 0.604, + "1992": 0.57, + "1993": 0.553, + "1994": 0.551, + "1995": 0.554, + "1996": 0.565, + "1997": 0.582, + "1998": 0.597, + "1999": 0.606, + "2000": 0.612, + "2001": 0.617, + "2002": 0.62, + "2003": 0.628, + "2004": 0.63, + "2005": 0.649, + "2006": 0.649, + "2007": 0.657, + "2008": 0.658, + "2009": 0.661, + "2010": 0.687, + "2011": 0.713, + "2012": 0.742, + "2013": 0.756, + "2014": 0.768, + "2015": 0.767, + "2016": 0.764, + "2017": 0.768, + "2018": 0.771, + "2019": 0.781, + "2020": 0.771, + "2021": 0.771 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr207", + "Region": " Korce", + "1990": 0.559, + "1991": 0.563, + "1992": 0.532, + "1993": 0.517, + "1994": 0.516, + "1995": 0.518, + "1996": 0.529, + "1997": 0.546, + "1998": 0.559, + "1999": 0.569, + "2000": 0.575, + "2001": 0.58, + "2002": 0.582, + "2003": 0.59, + "2004": 0.591, + "2005": 0.608, + "2006": 0.617, + "2007": 0.633, + "2008": 0.642, + "2009": 0.654, + "2010": 0.678, + "2011": 0.702, + "2012": 0.731, + "2013": 0.744, + "2014": 0.757, + "2015": 0.756, + "2016": 0.753, + "2017": 0.757, + "2018": 0.76, + "2019": 0.769, + "2020": 0.759, + "2021": 0.759 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr208", + "Region": " Kukes", + "1990": 0.499, + "1991": 0.502, + "1992": 0.476, + "1993": 0.464, + "1994": 0.463, + "1995": 0.464, + "1996": 0.474, + "1997": 0.49, + "1998": 0.502, + "1999": 0.511, + "2000": 0.517, + "2001": 0.522, + "2002": 0.524, + "2003": 0.531, + "2004": 0.532, + "2005": 0.547, + "2006": 0.562, + "2007": 0.582, + "2008": 0.597, + "2009": 0.615, + "2010": 0.631, + "2011": 0.645, + "2012": 0.663, + "2013": 0.666, + "2014": 0.67, + "2015": 0.662, + "2016": 0.653, + "2017": 0.65, + "2018": 0.653, + "2019": 0.662, + "2020": 0.654, + "2021": 0.654 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr209", + "Region": " Lezhe", + "1990": 0.519, + "1991": 0.523, + "1992": 0.495, + "1993": 0.481, + "1994": 0.48, + "1995": 0.482, + "1996": 0.492, + "1997": 0.507, + "1998": 0.52, + "1999": 0.529, + "2000": 0.535, + "2001": 0.539, + "2002": 0.542, + "2003": 0.549, + "2004": 0.55, + "2005": 0.566, + "2006": 0.572, + "2007": 0.584, + "2008": 0.591, + "2009": 0.6, + "2010": 0.625, + "2011": 0.65, + "2012": 0.678, + "2013": 0.692, + "2014": 0.706, + "2015": 0.708, + "2016": 0.707, + "2017": 0.713, + "2018": 0.715, + "2019": 0.724, + "2020": 0.715, + "2021": 0.715 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr210", + "Region": " Shkoder", + "1990": 0.566, + "1991": 0.57, + "1992": 0.54, + "1993": 0.525, + "1994": 0.524, + "1995": 0.526, + "1996": 0.537, + "1997": 0.554, + "1998": 0.567, + "1999": 0.577, + "2000": 0.584, + "2001": 0.589, + "2002": 0.591, + "2003": 0.599, + "2004": 0.601, + "2005": 0.618, + "2006": 0.618, + "2007": 0.624, + "2008": 0.624, + "2009": 0.627, + "2010": 0.651, + "2011": 0.675, + "2012": 0.703, + "2013": 0.716, + "2014": 0.728, + "2015": 0.728, + "2016": 0.725, + "2017": 0.729, + "2018": 0.732, + "2019": 0.741, + "2020": 0.731, + "2021": 0.731 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr211", + "Region": " Tirana", + "1990": 0.616, + "1991": 0.621, + "1992": 0.588, + "1993": 0.572, + "1994": 0.571, + "1995": 0.573, + "1996": 0.585, + "1997": 0.604, + "1998": 0.619, + "1999": 0.63, + "2000": 0.637, + "2001": 0.642, + "2002": 0.645, + "2003": 0.654, + "2004": 0.655, + "2005": 0.674, + "2006": 0.689, + "2007": 0.712, + "2008": 0.727, + "2009": 0.747, + "2010": 0.772, + "2011": 0.798, + "2012": 0.829, + "2013": 0.842, + "2014": 0.854, + "2015": 0.852, + "2016": 0.847, + "2017": 0.851, + "2018": 0.854, + "2019": 0.865, + "2020": 0.854, + "2021": 0.854 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr212", + "Region": " Vlore", + "1990": 0.593, + "1991": 0.598, + "1992": 0.566, + "1993": 0.55, + "1994": 0.549, + "1995": 0.551, + "1996": 0.563, + "1997": 0.581, + "1998": 0.595, + "1999": 0.605, + "2000": 0.612, + "2001": 0.618, + "2002": 0.62, + "2003": 0.629, + "2004": 0.63, + "2005": 0.648, + "2006": 0.649, + "2007": 0.656, + "2008": 0.656, + "2009": 0.66, + "2010": 0.688, + "2011": 0.717, + "2012": 0.75, + "2013": 0.767, + "2014": 0.784, + "2015": 0.787, + "2016": 0.787, + "2017": 0.795, + "2018": 0.797, + "2019": 0.807, + "2020": 0.797, + "2021": 0.797 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "National", + "GDLCODE": "DZAt", + "Region": "Total", + "1990": 0.422, + "1991": 0.431, + "1992": 0.441, + "1993": 0.449, + "1994": 0.458, + "1995": 0.465, + "1996": 0.475, + "1997": 0.488, + "1998": 0.501, + "1999": 0.514, + "2000": 0.526, + "2001": 0.534, + "2002": 0.546, + "2003": 0.555, + "2004": 0.567, + "2005": 0.575, + "2006": 0.585, + "2007": 0.594, + "2008": 0.609, + "2009": 0.625, + "2010": 0.639, + "2011": 0.65, + "2012": 0.652, + "2013": 0.654, + "2014": 0.658, + "2015": 0.661, + "2016": 0.665, + "2017": 0.668, + "2018": 0.672, + "2019": 0.675, + "2020": 0.675, + "2021": 0.675 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr104", + "Region": "Hauts Plateaux Centre (Djelfa, Laghouat, MSila)", + "1990": 0.382, + "1991": 0.389, + "1992": 0.398, + "1993": 0.404, + "1994": 0.412, + "1995": 0.417, + "1996": 0.426, + "1997": 0.438, + "1998": 0.449, + "1999": 0.461, + "2000": 0.471, + "2001": 0.478, + "2002": 0.49, + "2003": 0.499, + "2004": 0.511, + "2005": 0.52, + "2006": 0.529, + "2007": 0.538, + "2008": 0.554, + "2009": 0.57, + "2010": 0.584, + "2011": 0.595, + "2012": 0.598, + "2013": 0.6, + "2014": 0.603, + "2015": 0.606, + "2016": 0.609, + "2017": 0.611, + "2018": 0.614, + "2019": 0.617, + "2020": 0.617, + "2021": 0.617 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr105", + "Region": "Hauts Plateaux Est (Setif, Batna, Khenchela, Bordj Bou Arreridj, Oum El Bouaghi, Tebessa)", + "1990": 0.413, + "1991": 0.421, + "1992": 0.431, + "1993": 0.438, + "1994": 0.446, + "1995": 0.452, + "1996": 0.462, + "1997": 0.475, + "1998": 0.487, + "1999": 0.5, + "2000": 0.51, + "2001": 0.519, + "2002": 0.531, + "2003": 0.541, + "2004": 0.553, + "2005": 0.563, + "2006": 0.573, + "2007": 0.582, + "2008": 0.598, + "2009": 0.615, + "2010": 0.629, + "2011": 0.641, + "2012": 0.644, + "2013": 0.646, + "2014": 0.648, + "2015": 0.65, + "2016": 0.652, + "2017": 0.654, + "2018": 0.657, + "2019": 0.659, + "2020": 0.659, + "2021": 0.659 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr106", + "Region": "Hauts Plateaux Ouest (Tiaret, Saida, Tissemsilt, Naama, El Bayadh)", + "1990": 0.396, + "1991": 0.404, + "1992": 0.413, + "1993": 0.42, + "1994": 0.428, + "1995": 0.434, + "1996": 0.443, + "1997": 0.455, + "1998": 0.467, + "1999": 0.48, + "2000": 0.49, + "2001": 0.498, + "2002": 0.51, + "2003": 0.518, + "2004": 0.529, + "2005": 0.537, + "2006": 0.545, + "2007": 0.553, + "2008": 0.568, + "2009": 0.583, + "2010": 0.596, + "2011": 0.607, + "2012": 0.609, + "2013": 0.61, + "2014": 0.614, + "2015": 0.617, + "2016": 0.621, + "2017": 0.625, + "2018": 0.628, + "2019": 0.632, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr101", + "Region": "Nord Centre (Alger, Blida, Boumerdes, Tipaza, Bouira, Medea, Tizi-Ouzou, Bejaia, Chlef, Ain Defla)", + "1990": 0.453, + "1991": 0.463, + "1992": 0.474, + "1993": 0.482, + "1994": 0.493, + "1995": 0.5, + "1996": 0.512, + "1997": 0.526, + "1998": 0.54, + "1999": 0.554, + "2000": 0.566, + "2001": 0.575, + "2002": 0.588, + "2003": 0.595, + "2004": 0.604, + "2005": 0.611, + "2006": 0.619, + "2007": 0.625, + "2008": 0.639, + "2009": 0.653, + "2010": 0.665, + "2011": 0.675, + "2012": 0.674, + "2013": 0.674, + "2014": 0.681, + "2015": 0.688, + "2016": 0.694, + "2017": 0.701, + "2018": 0.707, + "2019": 0.714, + "2020": 0.714, + "2021": 0.714 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr102", + "Region": "Nord Est (Annaba, Constantine, Skikda, Jijel, Mila, Souk Ahras, El Tarf, Guelma)", + "1990": 0.426, + "1991": 0.435, + "1992": 0.445, + "1993": 0.454, + "1994": 0.463, + "1995": 0.47, + "1996": 0.481, + "1997": 0.494, + "1998": 0.508, + "1999": 0.521, + "2000": 0.532, + "2001": 0.541, + "2002": 0.553, + "2003": 0.565, + "2004": 0.579, + "2005": 0.59, + "2006": 0.603, + "2007": 0.614, + "2008": 0.633, + "2009": 0.651, + "2010": 0.669, + "2011": 0.683, + "2012": 0.687, + "2013": 0.692, + "2014": 0.693, + "2015": 0.695, + "2016": 0.696, + "2017": 0.698, + "2018": 0.7, + "2019": 0.702, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr103", + "Region": "Nord Ouest (Oran, Tlemcen, Mostaganem, Ain Temouchent, Relizane, Sidi Bel Abbes, Mascara)", + "1990": 0.392, + "1991": 0.4, + "1992": 0.409, + "1993": 0.416, + "1994": 0.425, + "1995": 0.432, + "1996": 0.441, + "1997": 0.453, + "1998": 0.465, + "1999": 0.477, + "2000": 0.488, + "2001": 0.496, + "2002": 0.507, + "2003": 0.517, + "2004": 0.53, + "2005": 0.54, + "2006": 0.551, + "2007": 0.56, + "2008": 0.576, + "2009": 0.593, + "2010": 0.608, + "2011": 0.62, + "2012": 0.624, + "2013": 0.627, + "2014": 0.629, + "2015": 0.632, + "2016": 0.634, + "2017": 0.636, + "2018": 0.638, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr107", + "Region": "Sud (Bechar, Tindouf, Adrar, Ghardaia, Biskra, El Oued, Ouargla, Tamanrasset,Illizi)", + "1990": 0.423, + "1991": 0.432, + "1992": 0.442, + "1993": 0.449, + "1994": 0.458, + "1995": 0.465, + "1996": 0.476, + "1997": 0.489, + "1998": 0.501, + "1999": 0.514, + "2000": 0.526, + "2001": 0.534, + "2002": 0.546, + "2003": 0.555, + "2004": 0.566, + "2005": 0.574, + "2006": 0.583, + "2007": 0.591, + "2008": 0.606, + "2009": 0.621, + "2010": 0.634, + "2011": 0.645, + "2012": 0.646, + "2013": 0.648, + "2014": 0.65, + "2015": 0.653, + "2016": 0.656, + "2017": 0.659, + "2018": 0.662, + "2019": 0.665, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "Andorra", + "Continent": "Europe", + "ISO_Code": "AND", + "Level": "National", + "GDLCODE": "ANDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.627, + "2001": 0.63, + "2002": 0.639, + "2003": 0.639, + "2004": 0.656, + "2005": 0.637, + "2006": 0.658, + "2007": 0.659, + "2008": 0.673, + "2009": 0.674, + "2010": 0.675, + "2011": 0.676, + "2012": 0.729, + "2013": 0.719, + "2014": 0.73, + "2015": 0.717, + "2016": 0.721, + "2017": 0.714, + "2018": 0.721, + "2019": 0.721, + "2020": 0.721, + "2021": 0.721 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "National", + "GDLCODE": "AGOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.23, + "2000": 0.242, + "2001": 0.255, + "2002": 0.267, + "2003": 0.28, + "2004": 0.292, + "2005": 0.305, + "2006": 0.317, + "2007": 0.33, + "2008": 0.342, + "2009": 0.355, + "2010": 0.367, + "2011": 0.395, + "2012": 0.41, + "2013": 0.426, + "2014": 0.442, + "2015": 0.48, + "2016": 0.519, + "2017": 0.519, + "2018": 0.519, + "2019": 0.519, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr218", + "Region": " Bengo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.175, + "2000": 0.186, + "2001": 0.196, + "2002": 0.207, + "2003": 0.218, + "2004": 0.229, + "2005": 0.239, + "2006": 0.25, + "2007": 0.261, + "2008": 0.271, + "2009": 0.282, + "2010": 0.293, + "2011": 0.316, + "2012": 0.335, + "2013": 0.354, + "2014": 0.374, + "2015": 0.411, + "2016": 0.451, + "2017": 0.451, + "2018": 0.451, + "2019": 0.451, + "2020": 0.451, + "2021": 0.451 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr209", + "Region": " Benguela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.256, + "2000": 0.268, + "2001": 0.281, + "2002": 0.294, + "2003": 0.306, + "2004": 0.319, + "2005": 0.332, + "2006": 0.345, + "2007": 0.357, + "2008": 0.37, + "2009": 0.383, + "2010": 0.395, + "2011": 0.423, + "2012": 0.429, + "2013": 0.435, + "2014": 0.44, + "2015": 0.466, + "2016": 0.488, + "2017": 0.488, + "2018": 0.488, + "2019": 0.488, + "2020": 0.488, + "2021": 0.488 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr211", + "Region": " Bie", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.139, + "2000": 0.149, + "2001": 0.159, + "2002": 0.169, + "2003": 0.18, + "2004": 0.19, + "2005": 0.2, + "2006": 0.21, + "2007": 0.221, + "2008": 0.231, + "2009": 0.241, + "2010": 0.251, + "2011": 0.274, + "2012": 0.293, + "2013": 0.312, + "2014": 0.331, + "2015": 0.361, + "2016": 0.394, + "2017": 0.394, + "2018": 0.394, + "2019": 0.394, + "2020": 0.394, + "2021": 0.394 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr201", + "Region": " Cabinda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.288, + "2000": 0.302, + "2001": 0.317, + "2002": 0.331, + "2003": 0.346, + "2004": 0.361, + "2005": 0.375, + "2006": 0.39, + "2007": 0.405, + "2008": 0.419, + "2009": 0.434, + "2010": 0.449, + "2011": 0.48, + "2012": 0.501, + "2013": 0.522, + "2014": 0.542, + "2015": 0.595, + "2016": 0.649, + "2017": 0.649, + "2018": 0.649, + "2019": 0.649, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr216", + "Region": " Cunene", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.189, + "2000": 0.2, + "2001": 0.212, + "2002": 0.223, + "2003": 0.234, + "2004": 0.246, + "2005": 0.257, + "2006": 0.268, + "2007": 0.279, + "2008": 0.291, + "2009": 0.302, + "2010": 0.313, + "2011": 0.338, + "2012": 0.349, + "2013": 0.359, + "2014": 0.369, + "2015": 0.393, + "2016": 0.415, + "2017": 0.415, + "2018": 0.415, + "2019": 0.415, + "2020": 0.415, + "2021": 0.415 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr210", + "Region": " Huambo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.18, + "2000": 0.191, + "2001": 0.202, + "2002": 0.214, + "2003": 0.225, + "2004": 0.236, + "2005": 0.248, + "2006": 0.259, + "2007": 0.27, + "2008": 0.282, + "2009": 0.293, + "2010": 0.305, + "2011": 0.33, + "2012": 0.348, + "2013": 0.366, + "2014": 0.384, + "2015": 0.419, + "2016": 0.455, + "2017": 0.455, + "2018": 0.455, + "2019": 0.455, + "2020": 0.455, + "2021": 0.455 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr215", + "Region": " Huila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.217, + "2000": 0.229, + "2001": 0.24, + "2002": 0.252, + "2003": 0.264, + "2004": 0.276, + "2005": 0.288, + "2006": 0.3, + "2007": 0.312, + "2008": 0.323, + "2009": 0.335, + "2010": 0.347, + "2011": 0.373, + "2012": 0.382, + "2013": 0.391, + "2014": 0.399, + "2015": 0.425, + "2016": 0.448, + "2017": 0.448, + "2018": 0.448, + "2019": 0.448, + "2020": 0.448, + "2021": 0.448 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr213", + "Region": " Kuando Kubango", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.123, + "2000": 0.132, + "2001": 0.142, + "2002": 0.151, + "2003": 0.16, + "2004": 0.17, + "2005": 0.179, + "2006": 0.189, + "2007": 0.198, + "2008": 0.208, + "2009": 0.217, + "2010": 0.227, + "2011": 0.248, + "2012": 0.268, + "2013": 0.289, + "2014": 0.309, + "2015": 0.342, + "2016": 0.377, + "2017": 0.377, + "2018": 0.377, + "2019": 0.377, + "2020": 0.377, + "2021": 0.377 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr205", + "Region": " Kuanza Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.174, + "2000": 0.185, + "2001": 0.197, + "2002": 0.209, + "2003": 0.22, + "2004": 0.232, + "2005": 0.243, + "2006": 0.255, + "2007": 0.267, + "2008": 0.278, + "2009": 0.29, + "2010": 0.301, + "2011": 0.327, + "2012": 0.347, + "2013": 0.368, + "2014": 0.389, + "2015": 0.426, + "2016": 0.465, + "2017": 0.465, + "2018": 0.465, + "2019": 0.465, + "2020": 0.465, + "2021": 0.465 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr206", + "Region": " Kuanza Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.142, + "2000": 0.151, + "2001": 0.159, + "2002": 0.168, + "2003": 0.176, + "2004": 0.185, + "2005": 0.194, + "2006": 0.202, + "2007": 0.211, + "2008": 0.219, + "2009": 0.228, + "2010": 0.236, + "2011": 0.255, + "2012": 0.266, + "2013": 0.276, + "2014": 0.287, + "2015": 0.309, + "2016": 0.331, + "2017": 0.331, + "2018": 0.331, + "2019": 0.331, + "2020": 0.331, + "2021": 0.331 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr204", + "Region": " Luanda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.319, + "2000": 0.334, + "2001": 0.349, + "2002": 0.364, + "2003": 0.379, + "2004": 0.394, + "2005": 0.408, + "2006": 0.423, + "2007": 0.438, + "2008": 0.453, + "2009": 0.468, + "2010": 0.483, + "2011": 0.515, + "2012": 0.529, + "2013": 0.544, + "2014": 0.559, + "2015": 0.607, + "2016": 0.654, + "2017": 0.654, + "2018": 0.654, + "2019": 0.654, + "2020": 0.654, + "2021": 0.654 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr208", + "Region": " Lunda Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.115, + "2000": 0.124, + "2001": 0.133, + "2002": 0.142, + "2003": 0.151, + "2004": 0.16, + "2005": 0.169, + "2006": 0.178, + "2007": 0.187, + "2008": 0.196, + "2009": 0.205, + "2010": 0.214, + "2011": 0.234, + "2012": 0.258, + "2013": 0.282, + "2014": 0.306, + "2015": 0.345, + "2016": 0.388, + "2017": 0.388, + "2018": 0.388, + "2019": 0.388, + "2020": 0.388, + "2021": 0.388 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr217", + "Region": " Lunda Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.141, + "2000": 0.153, + "2001": 0.164, + "2002": 0.176, + "2003": 0.188, + "2004": 0.2, + "2005": 0.212, + "2006": 0.224, + "2007": 0.236, + "2008": 0.248, + "2009": 0.26, + "2010": 0.272, + "2011": 0.299, + "2012": 0.329, + "2013": 0.359, + "2014": 0.39, + "2015": 0.436, + "2016": 0.489, + "2017": 0.489, + "2018": 0.489, + "2019": 0.489, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr207", + "Region": " Malange", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.158, + "2000": 0.17, + "2001": 0.181, + "2002": 0.193, + "2003": 0.204, + "2004": 0.216, + "2005": 0.227, + "2006": 0.239, + "2007": 0.251, + "2008": 0.262, + "2009": 0.274, + "2010": 0.285, + "2011": 0.311, + "2012": 0.334, + "2013": 0.358, + "2014": 0.382, + "2015": 0.421, + "2016": 0.464, + "2017": 0.464, + "2018": 0.464, + "2019": 0.464, + "2020": 0.464, + "2021": 0.464 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr212", + "Region": " Moxico", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.155, + "2000": 0.165, + "2001": 0.175, + "2002": 0.185, + "2003": 0.195, + "2004": 0.205, + "2005": 0.215, + "2006": 0.225, + "2007": 0.235, + "2008": 0.245, + "2009": 0.255, + "2010": 0.265, + "2011": 0.288, + "2012": 0.303, + "2013": 0.319, + "2014": 0.335, + "2015": 0.365, + "2016": 0.396, + "2017": 0.396, + "2018": 0.396, + "2019": 0.396, + "2020": 0.396, + "2021": 0.396 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr214", + "Region": " Namibe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.238, + "2000": 0.252, + "2001": 0.265, + "2002": 0.278, + "2003": 0.292, + "2004": 0.305, + "2005": 0.319, + "2006": 0.332, + "2007": 0.346, + "2008": 0.359, + "2009": 0.373, + "2010": 0.386, + "2011": 0.416, + "2012": 0.432, + "2013": 0.448, + "2014": 0.465, + "2015": 0.503, + "2016": 0.541, + "2017": 0.541, + "2018": 0.541, + "2019": 0.541, + "2020": 0.541, + "2021": 0.541 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr203", + "Region": " Uige", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.217, + "2000": 0.229, + "2001": 0.241, + "2002": 0.254, + "2003": 0.266, + "2004": 0.279, + "2005": 0.291, + "2006": 0.304, + "2007": 0.316, + "2008": 0.328, + "2009": 0.341, + "2010": 0.353, + "2011": 0.38, + "2012": 0.393, + "2013": 0.405, + "2014": 0.417, + "2015": 0.446, + "2016": 0.473, + "2017": 0.473, + "2018": 0.473, + "2019": 0.473, + "2020": 0.473, + "2021": 0.473 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr202", + "Region": " Zaire", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.19, + "2000": 0.202, + "2001": 0.214, + "2002": 0.226, + "2003": 0.238, + "2004": 0.249, + "2005": 0.261, + "2006": 0.273, + "2007": 0.285, + "2008": 0.297, + "2009": 0.309, + "2010": 0.321, + "2011": 0.347, + "2012": 0.376, + "2013": 0.407, + "2014": 0.437, + "2015": 0.494, + "2016": 0.556, + "2017": 0.556, + "2018": 0.556, + "2019": 0.556, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Antigua and Barbuda", + "Continent": "America", + "ISO_Code": "ATG", + "Level": "National", + "GDLCODE": "ATGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": 0.734, + "2008": 0.731, + "2009": 0.728, + "2010": 0.724, + "2011": 0.708, + "2012": 0.714, + "2013": 0.713, + "2014": 0.711, + "2015": 0.71, + "2016": 0.709, + "2017": 0.708, + "2018": 0.706, + "2019": 0.704, + "2020": 0.704, + "2021": 0.704 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "National", + "GDLCODE": "ARGt", + "Region": "Total", + "1990": 0.64, + "1991": 0.641, + "1992": 0.642, + "1993": 0.643, + "1994": 0.644, + "1995": 0.652, + "1996": 0.66, + "1997": 0.668, + "1998": 0.676, + "1999": 0.708, + "2000": 0.725, + "2001": 0.745, + "2002": 0.765, + "2003": 0.78, + "2004": 0.784, + "2005": 0.78, + "2006": 0.788, + "2007": 0.793, + "2008": 0.801, + "2009": 0.815, + "2010": 0.825, + "2011": 0.834, + "2012": 0.835, + "2013": 0.838, + "2014": 0.843, + "2015": 0.848, + "2016": 0.855, + "2017": 0.858, + "2018": 0.861, + "2019": 0.868, + "2020": 0.868, + "2021": 0.868 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr104", + "Region": "Cuyo", + "1990": 0.637, + "1991": 0.638, + "1992": 0.639, + "1993": 0.64, + "1994": 0.641, + "1995": 0.649, + "1996": 0.657, + "1997": 0.665, + "1998": 0.673, + "1999": 0.705, + "2000": 0.722, + "2001": 0.742, + "2002": 0.762, + "2003": 0.776, + "2004": 0.781, + "2005": 0.777, + "2006": 0.785, + "2007": 0.789, + "2008": 0.797, + "2009": 0.811, + "2010": 0.821, + "2011": 0.83, + "2012": 0.831, + "2013": 0.833, + "2014": 0.838, + "2015": 0.842, + "2016": 0.849, + "2017": 0.851, + "2018": 0.854, + "2019": 0.861, + "2020": 0.861, + "2021": 0.861 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr101", + "Region": "Gran Buenos Aires", + "1990": 0.648, + "1991": 0.649, + "1992": 0.65, + "1993": 0.651, + "1994": 0.652, + "1995": 0.66, + "1996": 0.668, + "1997": 0.676, + "1998": 0.684, + "1999": 0.716, + "2000": 0.734, + "2001": 0.754, + "2002": 0.775, + "2003": 0.79, + "2004": 0.794, + "2005": 0.79, + "2006": 0.798, + "2007": 0.803, + "2008": 0.811, + "2009": 0.825, + "2010": 0.835, + "2011": 0.844, + "2012": 0.845, + "2013": 0.848, + "2014": 0.853, + "2015": 0.857, + "2016": 0.864, + "2017": 0.866, + "2018": 0.869, + "2019": 0.876, + "2020": 0.876, + "2021": 0.876 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr103", + "Region": "NEA", + "1990": 0.605, + "1991": 0.606, + "1992": 0.607, + "1993": 0.608, + "1994": 0.609, + "1995": 0.616, + "1996": 0.624, + "1997": 0.632, + "1998": 0.639, + "1999": 0.67, + "2000": 0.686, + "2001": 0.706, + "2002": 0.725, + "2003": 0.738, + "2004": 0.742, + "2005": 0.738, + "2006": 0.745, + "2007": 0.749, + "2008": 0.757, + "2009": 0.77, + "2010": 0.78, + "2011": 0.788, + "2012": 0.791, + "2013": 0.796, + "2014": 0.803, + "2015": 0.809, + "2016": 0.818, + "2017": 0.822, + "2018": 0.826, + "2019": 0.835, + "2020": 0.837, + "2021": 0.837 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr102", + "Region": "NOA", + "1990": 0.632, + "1991": 0.633, + "1992": 0.634, + "1993": 0.635, + "1994": 0.636, + "1995": 0.644, + "1996": 0.652, + "1997": 0.66, + "1998": 0.668, + "1999": 0.699, + "2000": 0.717, + "2001": 0.736, + "2002": 0.756, + "2003": 0.771, + "2004": 0.775, + "2005": 0.771, + "2006": 0.779, + "2007": 0.783, + "2008": 0.791, + "2009": 0.805, + "2010": 0.815, + "2011": 0.824, + "2012": 0.827, + "2013": 0.832, + "2014": 0.84, + "2015": 0.846, + "2016": 0.856, + "2017": 0.861, + "2018": 0.866, + "2019": 0.874, + "2020": 0.875, + "2021": 0.875 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr105", + "Region": "Pampeana", + "1990": 0.643, + "1991": 0.644, + "1992": 0.645, + "1993": 0.646, + "1994": 0.647, + "1995": 0.655, + "1996": 0.663, + "1997": 0.671, + "1998": 0.679, + "1999": 0.711, + "2000": 0.729, + "2001": 0.749, + "2002": 0.769, + "2003": 0.784, + "2004": 0.788, + "2005": 0.784, + "2006": 0.792, + "2007": 0.796, + "2008": 0.805, + "2009": 0.819, + "2010": 0.829, + "2011": 0.838, + "2012": 0.838, + "2013": 0.84, + "2014": 0.844, + "2015": 0.847, + "2016": 0.854, + "2017": 0.855, + "2018": 0.857, + "2019": 0.864, + "2020": 0.863, + "2021": 0.863 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr106", + "Region": "Patagonia", + "1990": 0.637, + "1991": 0.638, + "1992": 0.639, + "1993": 0.64, + "1994": 0.641, + "1995": 0.649, + "1996": 0.657, + "1997": 0.665, + "1998": 0.673, + "1999": 0.704, + "2000": 0.721, + "2001": 0.741, + "2002": 0.761, + "2003": 0.776, + "2004": 0.781, + "2005": 0.777, + "2006": 0.785, + "2007": 0.789, + "2008": 0.798, + "2009": 0.811, + "2010": 0.821, + "2011": 0.83, + "2012": 0.831, + "2013": 0.833, + "2014": 0.838, + "2015": 0.842, + "2016": 0.849, + "2017": 0.851, + "2018": 0.853, + "2019": 0.86, + "2020": 0.859, + "2021": 0.859 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "National", + "GDLCODE": "ARMt", + "Region": "Total", + "1990": 0.63, + "1991": 0.63, + "1992": 0.63, + "1993": 0.636, + "1994": 0.63, + "1995": 0.626, + "1996": 0.623, + "1997": 0.635, + "1998": 0.656, + "1999": 0.663, + "2000": 0.66, + "2001": 0.653, + "2002": 0.656, + "2003": 0.66, + "2004": 0.663, + "2005": 0.675, + "2006": 0.693, + "2007": 0.714, + "2008": 0.711, + "2009": 0.728, + "2010": 0.734, + "2011": 0.738, + "2012": 0.741, + "2013": 0.744, + "2014": 0.747, + "2015": 0.746, + "2016": 0.74, + "2017": 0.735, + "2018": 0.738, + "2019": 0.74, + "2020": 0.742, + "2021": 0.742 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr101", + "Region": "Aragatsotn", + "1990": 0.585, + "1991": 0.585, + "1992": 0.585, + "1993": 0.591, + "1994": 0.586, + "1995": 0.582, + "1996": 0.579, + "1997": 0.591, + "1998": 0.609, + "1999": 0.616, + "2000": 0.614, + "2001": 0.605, + "2002": 0.607, + "2003": 0.609, + "2004": 0.61, + "2005": 0.62, + "2006": 0.634, + "2007": 0.652, + "2008": 0.648, + "2009": 0.662, + "2010": 0.666, + "2011": 0.676, + "2012": 0.685, + "2013": 0.695, + "2014": 0.704, + "2015": 0.71, + "2016": 0.711, + "2017": 0.706, + "2018": 0.708, + "2019": 0.711, + "2020": 0.713, + "2021": 0.713 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr102", + "Region": "Ararat", + "1990": 0.583, + "1991": 0.583, + "1992": 0.583, + "1993": 0.589, + "1994": 0.584, + "1995": 0.58, + "1996": 0.577, + "1997": 0.588, + "1998": 0.607, + "1999": 0.614, + "2000": 0.612, + "2001": 0.604, + "2002": 0.605, + "2003": 0.607, + "2004": 0.609, + "2005": 0.62, + "2006": 0.634, + "2007": 0.653, + "2008": 0.649, + "2009": 0.664, + "2010": 0.668, + "2011": 0.673, + "2012": 0.678, + "2013": 0.683, + "2014": 0.688, + "2015": 0.689, + "2016": 0.686, + "2017": 0.681, + "2018": 0.683, + "2019": 0.686, + "2020": 0.688, + "2021": 0.688 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr103", + "Region": "Armavir", + "1990": 0.581, + "1991": 0.581, + "1992": 0.581, + "1993": 0.587, + "1994": 0.582, + "1995": 0.578, + "1996": 0.575, + "1997": 0.586, + "1998": 0.605, + "1999": 0.612, + "2000": 0.609, + "2001": 0.605, + "2002": 0.611, + "2003": 0.616, + "2004": 0.622, + "2005": 0.636, + "2006": 0.655, + "2007": 0.678, + "2008": 0.677, + "2009": 0.696, + "2010": 0.704, + "2011": 0.702, + "2012": 0.7, + "2013": 0.697, + "2014": 0.695, + "2015": 0.689, + "2016": 0.678, + "2017": 0.674, + "2018": 0.676, + "2019": 0.678, + "2020": 0.68, + "2021": 0.68 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr104", + "Region": "Gegharkunik", + "1990": 0.59, + "1991": 0.59, + "1992": 0.59, + "1993": 0.597, + "1994": 0.59, + "1995": 0.587, + "1996": 0.583, + "1997": 0.595, + "1998": 0.614, + "1999": 0.622, + "2000": 0.619, + "2001": 0.61, + "2002": 0.611, + "2003": 0.612, + "2004": 0.614, + "2005": 0.624, + "2006": 0.638, + "2007": 0.657, + "2008": 0.652, + "2009": 0.666, + "2010": 0.67, + "2011": 0.672, + "2012": 0.673, + "2013": 0.675, + "2014": 0.676, + "2015": 0.675, + "2016": 0.669, + "2017": 0.664, + "2018": 0.666, + "2019": 0.668, + "2020": 0.67, + "2021": 0.67 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr106", + "Region": "Kotayk", + "1990": 0.628, + "1991": 0.628, + "1992": 0.628, + "1993": 0.635, + "1994": 0.628, + "1995": 0.624, + "1996": 0.621, + "1997": 0.633, + "1998": 0.654, + "1999": 0.661, + "2000": 0.658, + "2001": 0.649, + "2002": 0.651, + "2003": 0.653, + "2004": 0.655, + "2005": 0.666, + "2006": 0.682, + "2007": 0.702, + "2008": 0.697, + "2009": 0.713, + "2010": 0.717, + "2011": 0.724, + "2012": 0.73, + "2013": 0.737, + "2014": 0.743, + "2015": 0.746, + "2016": 0.743, + "2017": 0.738, + "2018": 0.74, + "2019": 0.743, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr105", + "Region": "Lori", + "1990": 0.6, + "1991": 0.6, + "1992": 0.6, + "1993": 0.607, + "1994": 0.601, + "1995": 0.598, + "1996": 0.594, + "1997": 0.606, + "1998": 0.625, + "1999": 0.632, + "2000": 0.63, + "2001": 0.624, + "2002": 0.629, + "2003": 0.633, + "2004": 0.638, + "2005": 0.651, + "2006": 0.669, + "2007": 0.691, + "2008": 0.689, + "2009": 0.707, + "2010": 0.714, + "2011": 0.715, + "2012": 0.715, + "2013": 0.715, + "2014": 0.715, + "2015": 0.712, + "2016": 0.704, + "2017": 0.699, + "2018": 0.702, + "2019": 0.704, + "2020": 0.706, + "2021": 0.706 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr107", + "Region": "Shirak", + "1990": 0.655, + "1991": 0.655, + "1992": 0.655, + "1993": 0.662, + "1994": 0.655, + "1995": 0.651, + "1996": 0.647, + "1997": 0.66, + "1998": 0.681, + "1999": 0.689, + "2000": 0.687, + "2001": 0.675, + "2002": 0.675, + "2003": 0.674, + "2004": 0.674, + "2005": 0.683, + "2006": 0.697, + "2007": 0.715, + "2008": 0.708, + "2009": 0.722, + "2010": 0.724, + "2011": 0.728, + "2012": 0.732, + "2013": 0.735, + "2014": 0.739, + "2015": 0.739, + "2016": 0.734, + "2017": 0.729, + "2018": 0.731, + "2019": 0.734, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr108", + "Region": "Syunik", + "1990": 0.646, + "1991": 0.646, + "1992": 0.646, + "1993": 0.653, + "1994": 0.646, + "1995": 0.642, + "1996": 0.638, + "1997": 0.651, + "1998": 0.673, + "1999": 0.68, + "2000": 0.677, + "2001": 0.666, + "2002": 0.666, + "2003": 0.667, + "2004": 0.667, + "2005": 0.677, + "2006": 0.691, + "2007": 0.709, + "2008": 0.703, + "2009": 0.717, + "2010": 0.72, + "2011": 0.723, + "2012": 0.725, + "2013": 0.728, + "2014": 0.73, + "2015": 0.729, + "2016": 0.724, + "2017": 0.718, + "2018": 0.721, + "2019": 0.723, + "2020": 0.725, + "2021": 0.725 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr110", + "Region": "Tavush", + "1990": 0.598, + "1991": 0.598, + "1992": 0.598, + "1993": 0.604, + "1994": 0.598, + "1995": 0.594, + "1996": 0.591, + "1997": 0.603, + "1998": 0.622, + "1999": 0.629, + "2000": 0.627, + "2001": 0.619, + "2002": 0.623, + "2003": 0.626, + "2004": 0.629, + "2005": 0.641, + "2006": 0.657, + "2007": 0.678, + "2008": 0.675, + "2009": 0.691, + "2010": 0.697, + "2011": 0.701, + "2012": 0.705, + "2013": 0.71, + "2014": 0.714, + "2015": 0.714, + "2016": 0.71, + "2017": 0.705, + "2018": 0.707, + "2019": 0.71, + "2020": 0.712, + "2021": 0.712 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr109", + "Region": "Vayots Dzor", + "1990": 0.598, + "1991": 0.599, + "1992": 0.599, + "1993": 0.605, + "1994": 0.599, + "1995": 0.596, + "1996": 0.592, + "1997": 0.604, + "1998": 0.623, + "1999": 0.63, + "2000": 0.628, + "2001": 0.621, + "2002": 0.625, + "2003": 0.629, + "2004": 0.632, + "2005": 0.645, + "2006": 0.661, + "2007": 0.682, + "2008": 0.679, + "2009": 0.696, + "2010": 0.703, + "2011": 0.71, + "2012": 0.716, + "2013": 0.723, + "2014": 0.729, + "2015": 0.732, + "2016": 0.731, + "2017": 0.725, + "2018": 0.728, + "2019": 0.73, + "2020": 0.732, + "2021": 0.732 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr111", + "Region": "Yerevan", + "1990": 0.678, + "1991": 0.678, + "1992": 0.678, + "1993": 0.685, + "1994": 0.679, + "1995": 0.675, + "1996": 0.671, + "1997": 0.684, + "1998": 0.706, + "1999": 0.714, + "2000": 0.711, + "2001": 0.704, + "2002": 0.708, + "2003": 0.713, + "2004": 0.717, + "2005": 0.731, + "2006": 0.75, + "2007": 0.774, + "2008": 0.771, + "2009": 0.791, + "2010": 0.798, + "2011": 0.804, + "2012": 0.81, + "2013": 0.815, + "2014": 0.821, + "2015": 0.823, + "2016": 0.819, + "2017": 0.813, + "2018": 0.816, + "2019": 0.819, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "National", + "GDLCODE": "AUSt", + "Region": "Total", + "1990": 0.861, + "1991": 0.861, + "1992": 0.861, + "1993": 0.861, + "1994": 0.861, + "1995": 0.878, + "1996": 0.878, + "1997": 0.877, + "1998": 0.877, + "1999": 0.877, + "2000": 0.876, + "2001": 0.878, + "2002": 0.88, + "2003": 0.882, + "2004": 0.884, + "2005": 0.885, + "2006": 0.888, + "2007": 0.89, + "2008": 0.898, + "2009": 0.9, + "2010": 0.901, + "2011": 0.904, + "2012": 0.91, + "2013": 0.901, + "2014": 0.906, + "2015": 0.908, + "2016": 0.912, + "2017": 0.914, + "2018": 0.918, + "2019": 0.922, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr108", + "Region": "Australian Capital Territory", + "1990": 0.906, + "1991": 0.907, + "1992": 0.908, + "1993": 0.908, + "1994": 0.909, + "1995": 0.91, + "1996": 0.91, + "1997": 0.909, + "1998": 0.909, + "1999": 0.909, + "2000": 0.908, + "2001": 0.91, + "2002": 0.912, + "2003": 0.914, + "2004": 0.916, + "2005": 0.918, + "2006": 0.921, + "2007": 0.923, + "2008": 0.932, + "2009": 0.933, + "2010": 0.935, + "2011": 0.938, + "2012": 0.945, + "2013": 0.935, + "2014": 0.94, + "2015": 0.943, + "2016": 0.947, + "2017": 0.949, + "2018": 0.954, + "2019": 0.958, + "2020": 0.96, + "2021": 0.96 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr101", + "Region": "New South Wales", + "1990": 0.868, + "1991": 0.868, + "1992": 0.868, + "1993": 0.867, + "1994": 0.867, + "1995": 0.881, + "1996": 0.88, + "1997": 0.88, + "1998": 0.88, + "1999": 0.879, + "2000": 0.879, + "2001": 0.881, + "2002": 0.883, + "2003": 0.885, + "2004": 0.887, + "2005": 0.888, + "2006": 0.891, + "2007": 0.893, + "2008": 0.901, + "2009": 0.903, + "2010": 0.904, + "2011": 0.907, + "2012": 0.913, + "2013": 0.904, + "2014": 0.909, + "2015": 0.911, + "2016": 0.915, + "2017": 0.917, + "2018": 0.922, + "2019": 0.925, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr107", + "Region": "Northern Territory", + "1990": 0.853, + "1991": 0.853, + "1992": 0.853, + "1993": 0.853, + "1994": 0.853, + "1995": 0.874, + "1996": 0.874, + "1997": 0.874, + "1998": 0.873, + "1999": 0.873, + "2000": 0.873, + "2001": 0.874, + "2002": 0.876, + "2003": 0.878, + "2004": 0.88, + "2005": 0.881, + "2006": 0.884, + "2007": 0.887, + "2008": 0.894, + "2009": 0.896, + "2010": 0.897, + "2011": 0.9, + "2012": 0.906, + "2013": 0.897, + "2014": 0.902, + "2015": 0.904, + "2016": 0.908, + "2017": 0.91, + "2018": 0.914, + "2019": 0.918, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr103", + "Region": "Queensland", + "1990": 0.847, + "1991": 0.847, + "1992": 0.847, + "1993": 0.847, + "1994": 0.847, + "1995": 0.872, + "1996": 0.872, + "1997": 0.871, + "1998": 0.871, + "1999": 0.871, + "2000": 0.87, + "2001": 0.872, + "2002": 0.874, + "2003": 0.876, + "2004": 0.878, + "2005": 0.879, + "2006": 0.882, + "2007": 0.884, + "2008": 0.892, + "2009": 0.893, + "2010": 0.895, + "2011": 0.897, + "2012": 0.903, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.905, + "2017": 0.907, + "2018": 0.912, + "2019": 0.915, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr104", + "Region": "South Australia", + "1990": 0.846, + "1991": 0.846, + "1992": 0.846, + "1993": 0.846, + "1994": 0.846, + "1995": 0.871, + "1996": 0.871, + "1997": 0.871, + "1998": 0.87, + "1999": 0.87, + "2000": 0.87, + "2001": 0.871, + "2002": 0.873, + "2003": 0.875, + "2004": 0.877, + "2005": 0.878, + "2006": 0.881, + "2007": 0.883, + "2008": 0.891, + "2009": 0.892, + "2010": 0.894, + "2011": 0.897, + "2012": 0.903, + "2013": 0.893, + "2014": 0.898, + "2015": 0.901, + "2016": 0.904, + "2017": 0.907, + "2018": 0.911, + "2019": 0.914, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr106", + "Region": "Tasmania", + "1990": 0.824, + "1991": 0.824, + "1992": 0.824, + "1993": 0.824, + "1994": 0.823, + "1995": 0.861, + "1996": 0.861, + "1997": 0.861, + "1998": 0.86, + "1999": 0.86, + "2000": 0.86, + "2001": 0.862, + "2002": 0.863, + "2003": 0.865, + "2004": 0.867, + "2005": 0.868, + "2006": 0.871, + "2007": 0.873, + "2008": 0.881, + "2009": 0.882, + "2010": 0.884, + "2011": 0.886, + "2012": 0.892, + "2013": 0.883, + "2014": 0.888, + "2015": 0.89, + "2016": 0.894, + "2017": 0.896, + "2018": 0.9, + "2019": 0.903, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr102", + "Region": "Victoria", + "1990": 0.868, + "1991": 0.868, + "1992": 0.868, + "1993": 0.867, + "1994": 0.867, + "1995": 0.881, + "1996": 0.88, + "1997": 0.88, + "1998": 0.88, + "1999": 0.879, + "2000": 0.879, + "2001": 0.881, + "2002": 0.883, + "2003": 0.885, + "2004": 0.887, + "2005": 0.888, + "2006": 0.891, + "2007": 0.893, + "2008": 0.901, + "2009": 0.903, + "2010": 0.904, + "2011": 0.907, + "2012": 0.913, + "2013": 0.904, + "2014": 0.909, + "2015": 0.911, + "2016": 0.915, + "2017": 0.917, + "2018": 0.922, + "2019": 0.925, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr105", + "Region": "Western Australia", + "1990": 0.86, + "1991": 0.859, + "1992": 0.859, + "1993": 0.859, + "1994": 0.859, + "1995": 0.877, + "1996": 0.877, + "1997": 0.876, + "1998": 0.876, + "1999": 0.876, + "2000": 0.875, + "2001": 0.877, + "2002": 0.879, + "2003": 0.881, + "2004": 0.883, + "2005": 0.884, + "2006": 0.887, + "2007": 0.89, + "2008": 0.897, + "2009": 0.899, + "2010": 0.9, + "2011": 0.903, + "2012": 0.909, + "2013": 0.9, + "2014": 0.905, + "2015": 0.907, + "2016": 0.911, + "2017": 0.913, + "2018": 0.918, + "2019": 0.921, + "2020": 0.923, + "2021": 0.923 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "National", + "GDLCODE": "AUTt", + "Region": "Total", + "1990": 0.727, + "1991": 0.735, + "1992": 0.747, + "1993": 0.755, + "1994": 0.762, + "1995": 0.768, + "1996": 0.773, + "1997": 0.778, + "1998": 0.785, + "1999": 0.789, + "2000": 0.794, + "2001": 0.799, + "2002": 0.804, + "2003": 0.808, + "2004": 0.813, + "2005": 0.818, + "2006": 0.819, + "2007": 0.82, + "2008": 0.82, + "2009": 0.827, + "2010": 0.835, + "2011": 0.836, + "2012": 0.839, + "2013": 0.833, + "2014": 0.841, + "2015": 0.846, + "2016": 0.851, + "2017": 0.852, + "2018": 0.853, + "2019": 0.853, + "2020": 0.853, + "2021": 0.853 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr101", + "Region": "Burgenland", + "1990": 0.672, + "1991": 0.68, + "1992": 0.69, + "1993": 0.698, + "1994": 0.704, + "1995": 0.71, + "1996": 0.714, + "1997": 0.719, + "1998": 0.726, + "1999": 0.73, + "2000": 0.734, + "2001": 0.739, + "2002": 0.743, + "2003": 0.75, + "2004": 0.752, + "2005": 0.757, + "2006": 0.764, + "2007": 0.762, + "2008": 0.763, + "2009": 0.771, + "2010": 0.776, + "2011": 0.777, + "2012": 0.777, + "2013": 0.774, + "2014": 0.784, + "2015": 0.796, + "2016": 0.797, + "2017": 0.801, + "2018": 0.804, + "2019": 0.803, + "2020": 0.803, + "2021": 0.803 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr104", + "Region": "Karnten", + "1990": 0.71, + "1991": 0.718, + "1992": 0.729, + "1993": 0.737, + "1994": 0.744, + "1995": 0.75, + "1996": 0.754, + "1997": 0.759, + "1998": 0.766, + "1999": 0.771, + "2000": 0.775, + "2001": 0.783, + "2002": 0.791, + "2003": 0.794, + "2004": 0.797, + "2005": 0.801, + "2006": 0.802, + "2007": 0.805, + "2008": 0.804, + "2009": 0.811, + "2010": 0.816, + "2011": 0.817, + "2012": 0.82, + "2013": 0.812, + "2014": 0.825, + "2015": 0.826, + "2016": 0.833, + "2017": 0.833, + "2018": 0.835, + "2019": 0.831, + "2020": 0.831, + "2021": 0.831 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr102", + "Region": "Niederosterreich", + "1990": 0.666, + "1991": 0.673, + "1992": 0.683, + "1993": 0.691, + "1994": 0.697, + "1995": 0.703, + "1996": 0.707, + "1997": 0.712, + "1998": 0.718, + "1999": 0.722, + "2000": 0.727, + "2001": 0.732, + "2002": 0.737, + "2003": 0.739, + "2004": 0.747, + "2005": 0.751, + "2006": 0.75, + "2007": 0.751, + "2008": 0.752, + "2009": 0.76, + "2010": 0.767, + "2011": 0.765, + "2012": 0.766, + "2013": 0.761, + "2014": 0.775, + "2015": 0.782, + "2016": 0.785, + "2017": 0.79, + "2018": 0.793, + "2019": 0.79, + "2020": 0.79, + "2021": 0.79 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr106", + "Region": "Oberosterreich", + "1990": 0.698, + "1991": 0.706, + "1992": 0.717, + "1993": 0.725, + "1994": 0.732, + "1995": 0.738, + "1996": 0.742, + "1997": 0.747, + "1998": 0.754, + "1999": 0.758, + "2000": 0.763, + "2001": 0.767, + "2002": 0.772, + "2003": 0.777, + "2004": 0.779, + "2005": 0.784, + "2006": 0.786, + "2007": 0.789, + "2008": 0.788, + "2009": 0.792, + "2010": 0.801, + "2011": 0.801, + "2012": 0.805, + "2013": 0.798, + "2014": 0.807, + "2015": 0.812, + "2016": 0.819, + "2017": 0.819, + "2018": 0.818, + "2019": 0.823, + "2020": 0.823, + "2021": 0.823 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr107", + "Region": "Salzburg", + "1990": 0.746, + "1991": 0.754, + "1992": 0.766, + "1993": 0.775, + "1994": 0.782, + "1995": 0.788, + "1996": 0.793, + "1997": 0.798, + "1998": 0.805, + "1999": 0.81, + "2000": 0.815, + "2001": 0.818, + "2002": 0.821, + "2003": 0.827, + "2004": 0.832, + "2005": 0.838, + "2006": 0.838, + "2007": 0.84, + "2008": 0.84, + "2009": 0.848, + "2010": 0.855, + "2011": 0.857, + "2012": 0.859, + "2013": 0.854, + "2014": 0.858, + "2015": 0.864, + "2016": 0.871, + "2017": 0.869, + "2018": 0.869, + "2019": 0.868, + "2020": 0.868, + "2021": 0.868 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr105", + "Region": "Steiermark", + "1990": 0.727, + "1991": 0.735, + "1992": 0.747, + "1993": 0.755, + "1994": 0.762, + "1995": 0.768, + "1996": 0.773, + "1997": 0.778, + "1998": 0.785, + "1999": 0.789, + "2000": 0.794, + "2001": 0.801, + "2002": 0.804, + "2003": 0.812, + "2004": 0.815, + "2005": 0.822, + "2006": 0.823, + "2007": 0.824, + "2008": 0.822, + "2009": 0.829, + "2010": 0.834, + "2011": 0.838, + "2012": 0.842, + "2013": 0.833, + "2014": 0.84, + "2015": 0.847, + "2016": 0.85, + "2017": 0.851, + "2018": 0.854, + "2019": 0.856, + "2020": 0.856, + "2021": 0.856 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr108", + "Region": "Tirol", + "1990": 0.737, + "1991": 0.745, + "1992": 0.757, + "1993": 0.765, + "1994": 0.772, + "1995": 0.778, + "1996": 0.783, + "1997": 0.788, + "1998": 0.795, + "1999": 0.8, + "2000": 0.805, + "2001": 0.81, + "2002": 0.818, + "2003": 0.821, + "2004": 0.824, + "2005": 0.827, + "2006": 0.827, + "2007": 0.831, + "2008": 0.83, + "2009": 0.836, + "2010": 0.843, + "2011": 0.847, + "2012": 0.851, + "2013": 0.844, + "2014": 0.85, + "2015": 0.853, + "2016": 0.861, + "2017": 0.864, + "2018": 0.866, + "2019": 0.864, + "2020": 0.864, + "2021": 0.864 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr109", + "Region": "Vorarlberg", + "1990": 0.68, + "1991": 0.688, + "1992": 0.698, + "1993": 0.706, + "1994": 0.712, + "1995": 0.718, + "1996": 0.722, + "1997": 0.727, + "1998": 0.734, + "1999": 0.738, + "2000": 0.743, + "2001": 0.748, + "2002": 0.749, + "2003": 0.754, + "2004": 0.758, + "2005": 0.762, + "2006": 0.765, + "2007": 0.767, + "2008": 0.765, + "2009": 0.771, + "2010": 0.775, + "2011": 0.778, + "2012": 0.784, + "2013": 0.78, + "2014": 0.784, + "2015": 0.791, + "2016": 0.792, + "2017": 0.795, + "2018": 0.794, + "2019": 0.793, + "2020": 0.793, + "2021": 0.793 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr103", + "Region": "Wien", + "1990": 0.808, + "1991": 0.817, + "1992": 0.83, + "1993": 0.84, + "1994": 0.847, + "1995": 0.854, + "1996": 0.859, + "1997": 0.865, + "1998": 0.872, + "1999": 0.878, + "2000": 0.883, + "2001": 0.884, + "2002": 0.885, + "2003": 0.888, + "2004": 0.894, + "2005": 0.895, + "2006": 0.896, + "2007": 0.893, + "2008": 0.893, + "2009": 0.9, + "2010": 0.904, + "2011": 0.902, + "2012": 0.904, + "2013": 0.909, + "2014": 0.915, + "2015": 0.915, + "2016": 0.917, + "2017": 0.92, + "2018": 0.921, + "2019": 0.921, + "2020": 0.921, + "2021": 0.921 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "National", + "GDLCODE": "AZEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.615, + "1996": 0.609, + "1997": 0.608, + "1998": 0.615, + "1999": 0.622, + "2000": 0.629, + "2001": 0.636, + "2002": 0.642, + "2003": 0.649, + "2004": 0.656, + "2005": 0.663, + "2006": 0.67, + "2007": 0.677, + "2008": 0.682, + "2009": 0.677, + "2010": 0.682, + "2011": 0.687, + "2012": 0.691, + "2013": 0.696, + "2014": 0.701, + "2015": 0.705, + "2016": 0.712, + "2017": 0.717, + "2018": 0.721, + "2019": 0.726, + "2020": 0.726, + "2021": 0.726 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr102", + "Region": "Absheron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.657, + "1996": 0.65, + "1997": 0.65, + "1998": 0.657, + "1999": 0.664, + "2000": 0.672, + "2001": 0.679, + "2002": 0.686, + "2003": 0.694, + "2004": 0.701, + "2005": 0.708, + "2006": 0.716, + "2007": 0.723, + "2008": 0.728, + "2009": 0.723, + "2010": 0.729, + "2011": 0.734, + "2012": 0.739, + "2013": 0.744, + "2014": 0.749, + "2015": 0.754, + "2016": 0.762, + "2017": 0.766, + "2018": 0.771, + "2019": 0.776, + "2020": 0.777, + "2021": 0.777 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr107", + "Region": "Aran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.572, + "1996": 0.567, + "1997": 0.566, + "1998": 0.573, + "1999": 0.579, + "2000": 0.585, + "2001": 0.592, + "2002": 0.598, + "2003": 0.604, + "2004": 0.611, + "2005": 0.617, + "2006": 0.623, + "2007": 0.63, + "2008": 0.634, + "2009": 0.63, + "2010": 0.635, + "2011": 0.639, + "2012": 0.643, + "2013": 0.648, + "2014": 0.652, + "2015": 0.656, + "2016": 0.663, + "2017": 0.667, + "2018": 0.671, + "2019": 0.675, + "2020": 0.676, + "2021": 0.676 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr101", + "Region": "Baku", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.68, + "1996": 0.673, + "1997": 0.672, + "1998": 0.68, + "1999": 0.687, + "2000": 0.695, + "2001": 0.702, + "2002": 0.71, + "2003": 0.718, + "2004": 0.725, + "2005": 0.733, + "2006": 0.74, + "2007": 0.748, + "2008": 0.753, + "2009": 0.748, + "2010": 0.754, + "2011": 0.759, + "2012": 0.764, + "2013": 0.769, + "2014": 0.774, + "2015": 0.779, + "2016": 0.787, + "2017": 0.792, + "2018": 0.797, + "2019": 0.802, + "2020": 0.803, + "2021": 0.803 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr109", + "Region": "Dakhlik Shirvan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.563, + "1996": 0.557, + "1997": 0.557, + "1998": 0.563, + "1999": 0.569, + "2000": 0.575, + "2001": 0.582, + "2002": 0.588, + "2003": 0.594, + "2004": 0.6, + "2005": 0.607, + "2006": 0.613, + "2007": 0.619, + "2008": 0.624, + "2009": 0.619, + "2010": 0.624, + "2011": 0.628, + "2012": 0.632, + "2013": 0.636, + "2014": 0.641, + "2015": 0.645, + "2016": 0.651, + "2017": 0.655, + "2018": 0.659, + "2019": 0.663, + "2020": 0.664, + "2021": 0.664 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr103", + "Region": "Ganja Gazakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.599, + "1996": 0.593, + "1997": 0.593, + "1998": 0.6, + "1999": 0.606, + "2000": 0.613, + "2001": 0.619, + "2002": 0.626, + "2003": 0.633, + "2004": 0.639, + "2005": 0.646, + "2006": 0.653, + "2007": 0.659, + "2008": 0.664, + "2009": 0.66, + "2010": 0.665, + "2011": 0.669, + "2012": 0.674, + "2013": 0.678, + "2014": 0.683, + "2015": 0.687, + "2016": 0.694, + "2017": 0.699, + "2018": 0.703, + "2019": 0.707, + "2020": 0.708, + "2021": 0.708 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr106", + "Region": "Guba Khachmaz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.571, + "1996": 0.565, + "1997": 0.565, + "1998": 0.571, + "1999": 0.577, + "2000": 0.584, + "2001": 0.59, + "2002": 0.596, + "2003": 0.603, + "2004": 0.609, + "2005": 0.615, + "2006": 0.622, + "2007": 0.628, + "2008": 0.633, + "2009": 0.628, + "2010": 0.633, + "2011": 0.637, + "2012": 0.642, + "2013": 0.646, + "2014": 0.65, + "2015": 0.655, + "2016": 0.661, + "2017": 0.665, + "2018": 0.669, + "2019": 0.674, + "2020": 0.674, + "2021": 0.674 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr105", + "Region": "Lankaran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.558, + "1996": 0.553, + "1997": 0.552, + "1998": 0.558, + "1999": 0.564, + "2000": 0.571, + "2001": 0.577, + "2002": 0.583, + "2003": 0.589, + "2004": 0.595, + "2005": 0.601, + "2006": 0.608, + "2007": 0.614, + "2008": 0.618, + "2009": 0.614, + "2010": 0.618, + "2011": 0.623, + "2012": 0.627, + "2013": 0.631, + "2014": 0.635, + "2015": 0.639, + "2016": 0.646, + "2017": 0.65, + "2018": 0.654, + "2019": 0.658, + "2020": 0.658, + "2021": 0.658 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr104", + "Region": "Shaki Zaqatala", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.611, + "1996": 0.605, + "1997": 0.605, + "1998": 0.611, + "1999": 0.618, + "2000": 0.625, + "2001": 0.631, + "2002": 0.638, + "2003": 0.645, + "2004": 0.652, + "2005": 0.658, + "2006": 0.665, + "2007": 0.672, + "2008": 0.677, + "2009": 0.672, + "2010": 0.677, + "2011": 0.682, + "2012": 0.686, + "2013": 0.691, + "2014": 0.696, + "2015": 0.7, + "2016": 0.707, + "2017": 0.711, + "2018": 0.716, + "2019": 0.72, + "2020": 0.721, + "2021": 0.721 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr108", + "Region": "Yukhari Karabakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.582, + "1996": 0.576, + "1997": 0.576, + "1998": 0.582, + "1999": 0.589, + "2000": 0.595, + "2001": 0.602, + "2002": 0.608, + "2003": 0.615, + "2004": 0.621, + "2005": 0.628, + "2006": 0.634, + "2007": 0.641, + "2008": 0.646, + "2009": 0.642, + "2010": 0.647, + "2011": 0.651, + "2012": 0.656, + "2013": 0.66, + "2014": 0.665, + "2015": 0.669, + "2016": 0.676, + "2017": 0.681, + "2018": 0.685, + "2019": 0.689, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "Bahamas", + "Continent": "America", + "ISO_Code": "BHS", + "Level": "National", + "GDLCODE": "BHSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.703, + "2001": 0.708, + "2002": 0.713, + "2003": 0.717, + "2004": 0.722, + "2005": 0.727, + "2006": 0.732, + "2007": 0.731, + "2008": 0.733, + "2009": 0.737, + "2010": 0.742, + "2011": 0.746, + "2012": 0.751, + "2013": 0.755, + "2014": 0.76, + "2015": 0.764, + "2016": 0.769, + "2017": 0.772, + "2018": 0.775, + "2019": 0.78, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Bahrain", + "Continent": "Asia/Pacific", + "ISO_Code": "BHR", + "Level": "National", + "GDLCODE": "BHRt", + "Region": "Total", + "1990": 0.556, + "1991": 0.557, + "1992": 0.56, + "1993": 0.577, + "1994": 0.587, + "1995": 0.599, + "1996": 0.607, + "1997": 0.613, + "1998": 0.62, + "1999": 0.626, + "2000": 0.638, + "2001": 0.65, + "2002": 0.651, + "2003": 0.652, + "2004": 0.644, + "2005": 0.637, + "2006": 0.639, + "2007": 0.64, + "2008": 0.641, + "2009": 0.642, + "2010": 0.643, + "2011": 0.652, + "2012": 0.653, + "2013": 0.665, + "2014": 0.677, + "2015": 0.748, + "2016": 0.765, + "2017": 0.776, + "2018": 0.803, + "2019": 0.813, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "National", + "GDLCODE": "BGDt", + "Region": "Total", + "1990": 0.272, + "1991": 0.281, + "1992": 0.289, + "1993": 0.298, + "1994": 0.307, + "1995": 0.316, + "1996": 0.324, + "1997": 0.332, + "1998": 0.341, + "1999": 0.349, + "2000": 0.358, + "2001": 0.367, + "2002": 0.375, + "2003": 0.383, + "2004": 0.391, + "2005": 0.399, + "2006": 0.405, + "2007": 0.409, + "2008": 0.406, + "2009": 0.424, + "2010": 0.435, + "2011": 0.446, + "2012": 0.458, + "2013": 0.458, + "2014": 0.471, + "2015": 0.505, + "2016": 0.518, + "2017": 0.531, + "2018": 0.547, + "2019": 0.558, + "2020": 0.592, + "2021": 0.592 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr214", + "Region": " Bagerhat, Khulna, Satkhira", + "1990": 0.276, + "1991": 0.285, + "1992": 0.293, + "1993": 0.302, + "1994": 0.311, + "1995": 0.32, + "1996": 0.329, + "1997": 0.339, + "1998": 0.35, + "1999": 0.361, + "2000": 0.371, + "2001": 0.383, + "2002": 0.394, + "2003": 0.404, + "2004": 0.415, + "2005": 0.424, + "2006": 0.431, + "2007": 0.436, + "2008": 0.434, + "2009": 0.455, + "2010": 0.467, + "2011": 0.48, + "2012": 0.485, + "2013": 0.478, + "2014": 0.484, + "2015": 0.525, + "2016": 0.546, + "2017": 0.567, + "2018": 0.591, + "2019": 0.609, + "2020": 0.647, + "2021": 0.647 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr204", + "Region": " Bandarban, Cox s Bazar", + "1990": 0.251, + "1991": 0.259, + "1992": 0.267, + "1993": 0.275, + "1994": 0.284, + "1995": 0.292, + "1996": 0.299, + "1997": 0.301, + "1998": 0.303, + "1999": 0.304, + "2000": 0.305, + "2001": 0.307, + "2002": 0.307, + "2003": 0.307, + "2004": 0.307, + "2005": 0.314, + "2006": 0.32, + "2007": 0.324, + "2008": 0.322, + "2009": 0.339, + "2010": 0.349, + "2011": 0.36, + "2012": 0.373, + "2013": 0.378, + "2014": 0.391, + "2015": 0.422, + "2016": 0.438, + "2017": 0.454, + "2018": 0.473, + "2019": 0.487, + "2020": 0.513, + "2021": 0.513 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr202", + "Region": " Barguna, Bhola, Patuakhali", + "1990": 0.366, + "1991": 0.378, + "1992": 0.39, + "1993": 0.402, + "1994": 0.414, + "1995": 0.425, + "1996": 0.437, + "1997": 0.435, + "1998": 0.434, + "1999": 0.431, + "2000": 0.429, + "2001": 0.427, + "2002": 0.423, + "2003": 0.419, + "2004": 0.414, + "2005": 0.42, + "2006": 0.423, + "2007": 0.424, + "2008": 0.418, + "2009": 0.435, + "2010": 0.443, + "2011": 0.452, + "2012": 0.454, + "2013": 0.446, + "2014": 0.449, + "2015": 0.484, + "2016": 0.499, + "2017": 0.515, + "2018": 0.534, + "2019": 0.547, + "2020": 0.579, + "2021": 0.579 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr201", + "Region": " Barisal, Jhalokati, Pirojpur", + "1990": 0.299, + "1991": 0.309, + "1992": 0.319, + "1993": 0.328, + "1994": 0.338, + "1995": 0.348, + "1996": 0.357, + "1997": 0.367, + "1998": 0.378, + "1999": 0.388, + "2000": 0.399, + "2001": 0.41, + "2002": 0.421, + "2003": 0.431, + "2004": 0.441, + "2005": 0.449, + "2006": 0.455, + "2007": 0.458, + "2008": 0.453, + "2009": 0.472, + "2010": 0.483, + "2011": 0.494, + "2012": 0.524, + "2013": 0.54, + "2014": 0.57, + "2015": 0.601, + "2016": 0.603, + "2017": 0.606, + "2018": 0.611, + "2019": 0.611, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr219", + "Region": " Bogra, Gaibandha, Jaypurhat", + "1990": 0.267, + "1991": 0.276, + "1992": 0.285, + "1993": 0.293, + "1994": 0.302, + "1995": 0.31, + "1996": 0.319, + "1997": 0.327, + "1998": 0.335, + "1999": 0.343, + "2000": 0.351, + "2001": 0.36, + "2002": 0.367, + "2003": 0.375, + "2004": 0.383, + "2005": 0.392, + "2006": 0.398, + "2007": 0.403, + "2008": 0.4, + "2009": 0.42, + "2010": 0.432, + "2011": 0.443, + "2012": 0.463, + "2013": 0.471, + "2014": 0.491, + "2015": 0.524, + "2016": 0.535, + "2017": 0.546, + "2018": 0.561, + "2019": 0.57, + "2020": 0.602, + "2021": 0.602 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr207", + "Region": " Brahmanbaria, Chandpur, Comilla", + "1990": 0.271, + "1991": 0.28, + "1992": 0.289, + "1993": 0.298, + "1994": 0.306, + "1995": 0.315, + "1996": 0.324, + "1997": 0.333, + "1998": 0.343, + "1999": 0.352, + "2000": 0.362, + "2001": 0.372, + "2002": 0.381, + "2003": 0.39, + "2004": 0.399, + "2005": 0.409, + "2006": 0.416, + "2007": 0.421, + "2008": 0.419, + "2009": 0.439, + "2010": 0.451, + "2011": 0.463, + "2012": 0.472, + "2013": 0.469, + "2014": 0.479, + "2015": 0.51, + "2016": 0.518, + "2017": 0.527, + "2018": 0.538, + "2019": 0.544, + "2020": 0.578, + "2021": 0.578 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr203", + "Region": " Chittagong", + "1990": 0.346, + "1991": 0.358, + "1992": 0.369, + "1993": 0.38, + "1994": 0.391, + "1995": 0.402, + "1996": 0.413, + "1997": 0.413, + "1998": 0.412, + "1999": 0.412, + "2000": 0.41, + "2001": 0.41, + "2002": 0.407, + "2003": 0.404, + "2004": 0.401, + "2005": 0.412, + "2006": 0.421, + "2007": 0.429, + "2008": 0.43, + "2009": 0.451, + "2010": 0.465, + "2011": 0.48, + "2012": 0.495, + "2013": 0.496, + "2014": 0.513, + "2015": 0.551, + "2016": 0.562, + "2017": 0.574, + "2018": 0.589, + "2019": 0.599, + "2020": 0.637, + "2021": 0.637 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr216", + "Region": " Chuadanga, Jhenaidah, Kushtia, Meherpur", + "1990": 0.256, + "1991": 0.264, + "1992": 0.272, + "1993": 0.281, + "1994": 0.289, + "1995": 0.297, + "1996": 0.305, + "1997": 0.314, + "1998": 0.324, + "1999": 0.333, + "2000": 0.342, + "2001": 0.352, + "2002": 0.361, + "2003": 0.37, + "2004": 0.379, + "2005": 0.39, + "2006": 0.399, + "2007": 0.406, + "2008": 0.405, + "2009": 0.427, + "2010": 0.442, + "2011": 0.456, + "2012": 0.461, + "2013": 0.456, + "2014": 0.462, + "2015": 0.5, + "2016": 0.519, + "2017": 0.538, + "2018": 0.561, + "2019": 0.578, + "2020": 0.611, + "2021": 0.611 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr208", + "Region": " Dhaka", + "1990": 0.422, + "1991": 0.436, + "1992": 0.45, + "1993": 0.463, + "1994": 0.477, + "1995": 0.49, + "1996": 0.503, + "1997": 0.505, + "1998": 0.507, + "1999": 0.508, + "2000": 0.509, + "2001": 0.511, + "2002": 0.51, + "2003": 0.509, + "2004": 0.508, + "2005": 0.515, + "2006": 0.519, + "2007": 0.522, + "2008": 0.518, + "2009": 0.535, + "2010": 0.545, + "2011": 0.555, + "2012": 0.55, + "2013": 0.529, + "2014": 0.526, + "2015": 0.577, + "2016": 0.595, + "2017": 0.615, + "2018": 0.637, + "2019": 0.655, + "2020": 0.701, + "2021": 0.701 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr220", + "Region": " Dinajpur, Nilphamari, Panchagarh, Thakurgaon", + "1990": 0.24, + "1991": 0.248, + "1992": 0.256, + "1993": 0.264, + "1994": 0.271, + "1995": 0.279, + "1996": 0.287, + "1997": 0.3, + "1998": 0.313, + "1999": 0.327, + "2000": 0.341, + "2001": 0.356, + "2002": 0.37, + "2003": 0.385, + "2004": 0.399, + "2005": 0.404, + "2006": 0.406, + "2007": 0.407, + "2008": 0.4, + "2009": 0.416, + "2010": 0.424, + "2011": 0.432, + "2012": 0.452, + "2013": 0.462, + "2014": 0.483, + "2015": 0.519, + "2016": 0.532, + "2017": 0.546, + "2018": 0.564, + "2019": 0.576, + "2020": 0.609, + "2021": 0.609 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr212", + "Region": " Faridpur, Manikganj, Rajbari", + "1990": 0.261, + "1991": 0.269, + "1992": 0.278, + "1993": 0.286, + "1994": 0.294, + "1995": 0.303, + "1996": 0.311, + "1997": 0.324, + "1998": 0.337, + "1999": 0.35, + "2000": 0.363, + "2001": 0.377, + "2002": 0.39, + "2003": 0.404, + "2004": 0.417, + "2005": 0.414, + "2006": 0.408, + "2007": 0.401, + "2008": 0.386, + "2009": 0.394, + "2010": 0.394, + "2011": 0.394, + "2012": 0.417, + "2013": 0.43, + "2014": 0.453, + "2015": 0.483, + "2016": 0.496, + "2017": 0.509, + "2018": 0.525, + "2019": 0.536, + "2020": 0.566, + "2021": 0.566 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr206", + "Region": " Feni, Lakshmipur, Noakhali", + "1990": 0.276, + "1991": 0.285, + "1992": 0.294, + "1993": 0.303, + "1994": 0.312, + "1995": 0.321, + "1996": 0.329, + "1997": 0.334, + "1998": 0.339, + "1999": 0.344, + "2000": 0.349, + "2001": 0.354, + "2002": 0.357, + "2003": 0.361, + "2004": 0.365, + "2005": 0.371, + "2006": 0.377, + "2007": 0.38, + "2008": 0.377, + "2009": 0.394, + "2010": 0.403, + "2011": 0.413, + "2012": 0.425, + "2013": 0.425, + "2014": 0.437, + "2015": 0.476, + "2016": 0.495, + "2017": 0.514, + "2018": 0.536, + "2019": 0.553, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr209", + "Region": " Gazipur, Narayanganj, Narsingdi", + "1990": 0.27, + "1991": 0.279, + "1992": 0.287, + "1993": 0.296, + "1994": 0.305, + "1995": 0.313, + "1996": 0.322, + "1997": 0.329, + "1998": 0.337, + "1999": 0.345, + "2000": 0.353, + "2001": 0.361, + "2002": 0.369, + "2003": 0.376, + "2004": 0.383, + "2005": 0.391, + "2006": 0.398, + "2007": 0.401, + "2008": 0.399, + "2009": 0.416, + "2010": 0.427, + "2011": 0.437, + "2012": 0.462, + "2013": 0.474, + "2014": 0.499, + "2015": 0.531, + "2016": 0.535, + "2017": 0.541, + "2018": 0.549, + "2019": 0.552, + "2020": 0.588, + "2021": 0.588 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr213", + "Region": " Gopalganj, Madaripur, Munshiganj, Shariatpur", + "1990": 0.249, + "1991": 0.257, + "1992": 0.265, + "1993": 0.273, + "1994": 0.281, + "1995": 0.289, + "1996": 0.297, + "1997": 0.313, + "1998": 0.33, + "1999": 0.347, + "2000": 0.365, + "2001": 0.384, + "2002": 0.401, + "2003": 0.419, + "2004": 0.438, + "2005": 0.441, + "2006": 0.441, + "2007": 0.44, + "2008": 0.431, + "2009": 0.446, + "2010": 0.452, + "2011": 0.458, + "2012": 0.477, + "2013": 0.484, + "2014": 0.503, + "2015": 0.526, + "2016": 0.526, + "2017": 0.527, + "2018": 0.53, + "2019": 0.528, + "2020": 0.558, + "2021": 0.558 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr223", + "Region": " Habiganj, Sunamganj", + "1990": 0.17, + "1991": 0.176, + "1992": 0.182, + "1993": 0.187, + "1994": 0.193, + "1995": 0.198, + "1996": 0.203, + "1997": 0.212, + "1998": 0.221, + "1999": 0.23, + "2000": 0.239, + "2001": 0.248, + "2002": 0.257, + "2003": 0.266, + "2004": 0.275, + "2005": 0.29, + "2006": 0.304, + "2007": 0.316, + "2008": 0.322, + "2009": 0.345, + "2010": 0.362, + "2011": 0.38, + "2012": 0.381, + "2013": 0.374, + "2014": 0.376, + "2015": 0.406, + "2016": 0.422, + "2017": 0.439, + "2018": 0.458, + "2019": 0.472, + "2020": 0.498, + "2021": 0.498 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr210", + "Region": " Jamalpur, Sherpur, Tangail", + "1990": 0.24, + "1991": 0.248, + "1992": 0.255, + "1993": 0.263, + "1994": 0.271, + "1995": 0.279, + "1996": 0.286, + "1997": 0.293, + "1998": 0.299, + "1999": 0.306, + "2000": 0.312, + "2001": 0.32, + "2002": 0.326, + "2003": 0.332, + "2004": 0.338, + "2005": 0.352, + "2006": 0.364, + "2007": 0.373, + "2008": 0.375, + "2009": 0.399, + "2010": 0.415, + "2011": 0.431, + "2012": 0.433, + "2013": 0.426, + "2014": 0.429, + "2015": 0.461, + "2016": 0.478, + "2017": 0.495, + "2018": 0.515, + "2019": 0.53, + "2020": 0.559, + "2021": 0.559 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr215", + "Region": " Jessore, Magura, Narail", + "1990": 0.304, + "1991": 0.314, + "1992": 0.324, + "1993": 0.333, + "1994": 0.343, + "1995": 0.353, + "1996": 0.362, + "1997": 0.373, + "1998": 0.385, + "1999": 0.396, + "2000": 0.407, + "2001": 0.419, + "2002": 0.43, + "2003": 0.441, + "2004": 0.452, + "2005": 0.454, + "2006": 0.455, + "2007": 0.453, + "2008": 0.444, + "2009": 0.458, + "2010": 0.465, + "2011": 0.471, + "2012": 0.484, + "2013": 0.485, + "2014": 0.499, + "2015": 0.536, + "2016": 0.551, + "2017": 0.566, + "2018": 0.583, + "2019": 0.596, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr205", + "Region": " Khagrachhari, Rangamati (Chattagram)", + "1990": 0.258, + "1991": 0.267, + "1992": 0.275, + "1993": 0.283, + "1994": 0.292, + "1995": 0.3, + "1996": 0.308, + "1997": 0.322, + "1998": 0.337, + "1999": 0.351, + "2000": 0.366, + "2001": 0.382, + "2002": 0.397, + "2003": 0.412, + "2004": 0.428, + "2005": 0.434, + "2006": 0.438, + "2007": 0.44, + "2008": 0.435, + "2009": 0.453, + "2010": 0.463, + "2011": 0.473, + "2012": 0.485, + "2013": 0.486, + "2014": 0.499, + "2015": 0.522, + "2016": 0.523, + "2017": 0.525, + "2018": 0.53, + "2019": 0.529, + "2020": 0.559, + "2021": 0.559 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr211", + "Region": " Kishoreganj, Mymensingh, Netrakona", + "1990": 0.222, + "1991": 0.229, + "1992": 0.236, + "1993": 0.243, + "1994": 0.25, + "1995": 0.258, + "1996": 0.265, + "1997": 0.272, + "1998": 0.28, + "1999": 0.288, + "2000": 0.296, + "2001": 0.305, + "2002": 0.313, + "2003": 0.32, + "2004": 0.328, + "2005": 0.334, + "2006": 0.339, + "2007": 0.342, + "2008": 0.338, + "2009": 0.354, + "2010": 0.363, + "2011": 0.372, + "2012": 0.387, + "2013": 0.393, + "2014": 0.408, + "2015": 0.438, + "2016": 0.452, + "2017": 0.466, + "2018": 0.482, + "2019": 0.494, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr221", + "Region": " Kurigram, Lalmonirhat, Rangpur", + "1990": 0.215, + "1991": 0.221, + "1992": 0.228, + "1993": 0.235, + "1994": 0.242, + "1995": 0.249, + "1996": 0.256, + "1997": 0.267, + "1998": 0.278, + "1999": 0.289, + "2000": 0.301, + "2001": 0.313, + "2002": 0.324, + "2003": 0.336, + "2004": 0.348, + "2005": 0.359, + "2006": 0.369, + "2007": 0.377, + "2008": 0.377, + "2009": 0.399, + "2010": 0.414, + "2011": 0.428, + "2012": 0.439, + "2013": 0.441, + "2014": 0.453, + "2015": 0.485, + "2016": 0.498, + "2017": 0.512, + "2018": 0.529, + "2019": 0.54, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr222", + "Region": " Maulvibazar, Sylhet", + "1990": 0.229, + "1991": 0.236, + "1992": 0.243, + "1993": 0.251, + "1994": 0.258, + "1995": 0.266, + "1996": 0.273, + "1997": 0.282, + "1998": 0.292, + "1999": 0.302, + "2000": 0.312, + "2001": 0.322, + "2002": 0.332, + "2003": 0.341, + "2004": 0.351, + "2005": 0.363, + "2006": 0.374, + "2007": 0.382, + "2008": 0.383, + "2009": 0.406, + "2010": 0.421, + "2011": 0.436, + "2012": 0.442, + "2013": 0.437, + "2014": 0.444, + "2015": 0.477, + "2016": 0.49, + "2017": 0.503, + "2018": 0.519, + "2019": 0.531, + "2020": 0.562, + "2021": 0.562 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr217", + "Region": " Naogaon, Nawabganj, Rajshahi", + "1990": 0.273, + "1991": 0.282, + "1992": 0.29, + "1993": 0.299, + "1994": 0.308, + "1995": 0.317, + "1996": 0.325, + "1997": 0.334, + "1998": 0.343, + "1999": 0.352, + "2000": 0.36, + "2001": 0.37, + "2002": 0.379, + "2003": 0.387, + "2004": 0.396, + "2005": 0.401, + "2006": 0.404, + "2007": 0.404, + "2008": 0.398, + "2009": 0.414, + "2010": 0.422, + "2011": 0.43, + "2012": 0.433, + "2013": 0.427, + "2014": 0.432, + "2015": 0.475, + "2016": 0.5, + "2017": 0.526, + "2018": 0.554, + "2019": 0.577, + "2020": 0.612, + "2021": 0.612 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr218", + "Region": " Natore, Pabna, Sirajganj", + "1990": 0.207, + "1991": 0.214, + "1992": 0.221, + "1993": 0.228, + "1994": 0.234, + "1995": 0.241, + "1996": 0.248, + "1997": 0.263, + "1998": 0.279, + "1999": 0.296, + "2000": 0.312, + "2001": 0.33, + "2002": 0.347, + "2003": 0.365, + "2004": 0.383, + "2005": 0.387, + "2006": 0.389, + "2007": 0.39, + "2008": 0.383, + "2009": 0.398, + "2010": 0.405, + "2011": 0.412, + "2012": 0.432, + "2013": 0.441, + "2014": 0.461, + "2015": 0.493, + "2016": 0.504, + "2017": 0.515, + "2018": 0.53, + "2019": 0.539, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "National", + "GDLCODE": "BRBt", + "Region": "Total", + "1990": 0.634, + "1991": 0.642, + "1992": 0.65, + "1993": 0.658, + "1994": 0.666, + "1995": 0.674, + "1996": 0.678, + "1997": 0.682, + "1998": 0.685, + "1999": 0.689, + "2000": 0.69, + "2001": 0.692, + "2002": 0.701, + "2003": 0.71, + "2004": 0.72, + "2005": 0.729, + "2006": 0.736, + "2007": 0.743, + "2008": 0.752, + "2009": 0.761, + "2010": 0.752, + "2011": 0.747, + "2012": 0.748, + "2013": 0.75, + "2014": 0.752, + "2015": 0.754, + "2016": 0.756, + "2017": 0.759, + "2018": 0.762, + "2019": 0.765, + "2020": 0.765, + "2021": 0.765 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr102", + "Region": "Christ Church and St. Philip", + "1990": 0.644, + "1991": 0.652, + "1992": 0.66, + "1993": 0.669, + "1994": 0.677, + "1995": 0.685, + "1996": 0.689, + "1997": 0.692, + "1998": 0.696, + "1999": 0.7, + "2000": 0.7, + "2001": 0.703, + "2002": 0.712, + "2003": 0.722, + "2004": 0.731, + "2005": 0.741, + "2006": 0.747, + "2007": 0.754, + "2008": 0.763, + "2009": 0.772, + "2010": 0.763, + "2011": 0.758, + "2012": 0.76, + "2013": 0.762, + "2014": 0.763, + "2015": 0.765, + "2016": 0.768, + "2017": 0.771, + "2018": 0.774, + "2019": 0.777, + "2020": 0.777, + "2021": 0.777 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr101", + "Region": "St Michael", + "1990": 0.622, + "1991": 0.63, + "1992": 0.638, + "1993": 0.646, + "1994": 0.654, + "1995": 0.662, + "1996": 0.666, + "1997": 0.669, + "1998": 0.673, + "1999": 0.676, + "2000": 0.677, + "2001": 0.679, + "2002": 0.688, + "2003": 0.697, + "2004": 0.707, + "2005": 0.716, + "2006": 0.722, + "2007": 0.729, + "2008": 0.738, + "2009": 0.747, + "2010": 0.738, + "2011": 0.733, + "2012": 0.735, + "2013": 0.736, + "2014": 0.738, + "2015": 0.74, + "2016": 0.743, + "2017": 0.745, + "2018": 0.748, + "2019": 0.751, + "2020": 0.751, + "2021": 0.751 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr103", + "Region": "St. James, St. George, and St. Thomas", + "1990": 0.658, + "1991": 0.667, + "1992": 0.675, + "1993": 0.684, + "1994": 0.692, + "1995": 0.701, + "1996": 0.704, + "1997": 0.708, + "1998": 0.712, + "1999": 0.715, + "2000": 0.716, + "2001": 0.718, + "2002": 0.728, + "2003": 0.738, + "2004": 0.748, + "2005": 0.757, + "2006": 0.764, + "2007": 0.771, + "2008": 0.781, + "2009": 0.79, + "2010": 0.781, + "2011": 0.775, + "2012": 0.777, + "2013": 0.779, + "2014": 0.781, + "2015": 0.783, + "2016": 0.786, + "2017": 0.789, + "2018": 0.791, + "2019": 0.794, + "2020": 0.794, + "2021": 0.794 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr104", + "Region": "St. Lucy, St. Peter, St. Andrew, St. Joseph, and St. John", + "1990": 0.619, + "1991": 0.627, + "1992": 0.635, + "1993": 0.642, + "1994": 0.65, + "1995": 0.658, + "1996": 0.662, + "1997": 0.666, + "1998": 0.669, + "1999": 0.673, + "2000": 0.674, + "2001": 0.675, + "2002": 0.685, + "2003": 0.694, + "2004": 0.703, + "2005": 0.712, + "2006": 0.719, + "2007": 0.726, + "2008": 0.735, + "2009": 0.744, + "2010": 0.735, + "2011": 0.73, + "2012": 0.731, + "2013": 0.733, + "2014": 0.735, + "2015": 0.737, + "2016": 0.739, + "2017": 0.742, + "2018": 0.745, + "2019": 0.747, + "2020": 0.747, + "2021": 0.747 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "National", + "GDLCODE": "BLRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.681, + "1996": 0.693, + "1997": 0.698, + "1998": 0.699, + "1999": 0.709, + "2000": 0.719, + "2001": 0.729, + "2002": 0.739, + "2003": 0.749, + "2004": 0.759, + "2005": 0.769, + "2006": 0.78, + "2007": 0.79, + "2008": 0.8, + "2009": 0.806, + "2010": 0.809, + "2011": 0.816, + "2012": 0.823, + "2013": 0.822, + "2014": 0.823, + "2015": 0.824, + "2016": 0.828, + "2017": 0.831, + "2018": 0.83, + "2019": 0.828, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr101", + "Region": "Brest region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.665, + "1996": 0.677, + "1997": 0.681, + "1998": 0.682, + "1999": 0.692, + "2000": 0.702, + "2001": 0.712, + "2002": 0.722, + "2003": 0.732, + "2004": 0.742, + "2005": 0.752, + "2006": 0.76, + "2007": 0.768, + "2008": 0.777, + "2009": 0.781, + "2010": 0.783, + "2011": 0.788, + "2012": 0.793, + "2013": 0.795, + "2014": 0.798, + "2015": 0.802, + "2016": 0.808, + "2017": 0.814, + "2018": 0.815, + "2019": 0.817, + "2020": 0.815, + "2021": 0.815 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr103", + "Region": "Gomel region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.667, + "1996": 0.679, + "1997": 0.683, + "1998": 0.684, + "1999": 0.694, + "2000": 0.704, + "2001": 0.714, + "2002": 0.724, + "2003": 0.734, + "2004": 0.744, + "2005": 0.754, + "2006": 0.766, + "2007": 0.779, + "2008": 0.792, + "2009": 0.8, + "2010": 0.806, + "2011": 0.815, + "2012": 0.824, + "2013": 0.824, + "2014": 0.825, + "2015": 0.826, + "2016": 0.83, + "2017": 0.833, + "2018": 0.831, + "2019": 0.83, + "2020": 0.828, + "2021": 0.828 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr104", + "Region": "Grodno region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.675, + "1996": 0.687, + "1997": 0.691, + "1998": 0.692, + "1999": 0.702, + "2000": 0.712, + "2001": 0.722, + "2002": 0.732, + "2003": 0.743, + "2004": 0.753, + "2005": 0.763, + "2006": 0.773, + "2007": 0.783, + "2008": 0.794, + "2009": 0.799, + "2010": 0.803, + "2011": 0.81, + "2012": 0.816, + "2013": 0.814, + "2014": 0.813, + "2015": 0.813, + "2016": 0.815, + "2017": 0.816, + "2018": 0.812, + "2019": 0.809, + "2020": 0.807, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr105", + "Region": "Minsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.707, + "1996": 0.72, + "1997": 0.725, + "1998": 0.726, + "1999": 0.736, + "2000": 0.747, + "2001": 0.757, + "2002": 0.768, + "2003": 0.778, + "2004": 0.789, + "2005": 0.799, + "2006": 0.809, + "2007": 0.819, + "2008": 0.829, + "2009": 0.834, + "2010": 0.837, + "2011": 0.843, + "2012": 0.849, + "2013": 0.848, + "2014": 0.848, + "2015": 0.849, + "2016": 0.852, + "2017": 0.855, + "2018": 0.852, + "2019": 0.85, + "2020": 0.848, + "2021": 0.848 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr106", + "Region": "Mogilev region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.668, + "1996": 0.68, + "1997": 0.684, + "1998": 0.685, + "1999": 0.695, + "2000": 0.705, + "2001": 0.715, + "2002": 0.725, + "2003": 0.735, + "2004": 0.745, + "2005": 0.755, + "2006": 0.763, + "2007": 0.772, + "2008": 0.78, + "2009": 0.784, + "2010": 0.786, + "2011": 0.791, + "2012": 0.795, + "2013": 0.796, + "2014": 0.797, + "2015": 0.799, + "2016": 0.803, + "2017": 0.807, + "2018": 0.806, + "2019": 0.805, + "2020": 0.803, + "2021": 0.803 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr102", + "Region": "Vitebsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.659, + "1996": 0.67, + "1997": 0.675, + "1998": 0.676, + "1999": 0.685, + "2000": 0.695, + "2001": 0.705, + "2002": 0.715, + "2003": 0.724, + "2004": 0.734, + "2005": 0.744, + "2006": 0.756, + "2007": 0.769, + "2008": 0.782, + "2009": 0.79, + "2010": 0.796, + "2011": 0.805, + "2012": 0.814, + "2013": 0.813, + "2014": 0.812, + "2015": 0.812, + "2016": 0.815, + "2017": 0.816, + "2018": 0.813, + "2019": 0.811, + "2020": 0.809, + "2021": 0.809 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "National", + "GDLCODE": "BELt", + "Region": "Total", + "1990": 0.703, + "1991": 0.709, + "1992": 0.748, + "1993": 0.787, + "1994": 0.8, + "1995": 0.817, + "1996": 0.829, + "1997": 0.833, + "1998": 0.837, + "1999": 0.841, + "2000": 0.849, + "2001": 0.855, + "2002": 0.858, + "2003": 0.861, + "2004": 0.864, + "2005": 0.868, + "2006": 0.868, + "2007": 0.871, + "2008": 0.873, + "2009": 0.877, + "2010": 0.881, + "2011": 0.882, + "2012": 0.883, + "2013": 0.885, + "2014": 0.888, + "2015": 0.896, + "2016": 0.9, + "2017": 0.908, + "2018": 0.91, + "2019": 0.913, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr101", + "Region": "Bruxelles - Brussel", + "1990": 0.769, + "1991": 0.776, + "1992": 0.819, + "1993": 0.846, + "1994": 0.851, + "1995": 0.856, + "1996": 0.859, + "1997": 0.862, + "1998": 0.865, + "1999": 0.868, + "2000": 0.871, + "2001": 0.868, + "2002": 0.875, + "2003": 0.88, + "2004": 0.883, + "2005": 0.886, + "2006": 0.884, + "2007": 0.885, + "2008": 0.883, + "2009": 0.89, + "2010": 0.889, + "2011": 0.891, + "2012": 0.892, + "2013": 0.889, + "2014": 0.893, + "2015": 0.902, + "2016": 0.907, + "2017": 0.914, + "2018": 0.917, + "2019": 0.917, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr102", + "Region": "Prov. Antwerpen", + "1990": 0.714, + "1991": 0.72, + "1992": 0.759, + "1993": 0.799, + "1994": 0.813, + "1995": 0.829, + "1996": 0.841, + "1997": 0.844, + "1998": 0.847, + "1999": 0.85, + "2000": 0.853, + "2001": 0.859, + "2002": 0.859, + "2003": 0.861, + "2004": 0.864, + "2005": 0.866, + "2006": 0.87, + "2007": 0.869, + "2008": 0.876, + "2009": 0.877, + "2010": 0.884, + "2011": 0.882, + "2012": 0.886, + "2013": 0.885, + "2014": 0.893, + "2015": 0.9, + "2016": 0.896, + "2017": 0.906, + "2018": 0.91, + "2019": 0.912, + "2020": 0.912, + "2021": 0.912 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr107", + "Region": "Prov. Brabant Wallon", + "1990": 0.662, + "1991": 0.668, + "1992": 0.701, + "1993": 0.735, + "1994": 0.747, + "1995": 0.761, + "1996": 0.772, + "1997": 0.776, + "1998": 0.78, + "1999": 0.785, + "2000": 0.792, + "2001": 0.807, + "2002": 0.813, + "2003": 0.822, + "2004": 0.815, + "2005": 0.83, + "2006": 0.834, + "2007": 0.838, + "2008": 0.84, + "2009": 0.846, + "2010": 0.85, + "2011": 0.866, + "2012": 0.859, + "2013": 0.864, + "2014": 0.877, + "2015": 0.893, + "2016": 0.883, + "2017": 0.892, + "2018": 0.912, + "2019": 0.909, + "2020": 0.909, + "2021": 0.909 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr108", + "Region": "Prov. Hainaut", + "1990": 0.667, + "1991": 0.672, + "1992": 0.709, + "1993": 0.746, + "1994": 0.758, + "1995": 0.774, + "1996": 0.785, + "1997": 0.789, + "1998": 0.793, + "1999": 0.797, + "2000": 0.805, + "2001": 0.818, + "2002": 0.821, + "2003": 0.831, + "2004": 0.827, + "2005": 0.836, + "2006": 0.84, + "2007": 0.847, + "2008": 0.85, + "2009": 0.851, + "2010": 0.862, + "2011": 0.86, + "2012": 0.863, + "2013": 0.867, + "2014": 0.868, + "2015": 0.873, + "2016": 0.881, + "2017": 0.885, + "2018": 0.888, + "2019": 0.892, + "2020": 0.892, + "2021": 0.892 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr109", + "Region": "Prov. Liege", + "1990": 0.65, + "1991": 0.655, + "1992": 0.69, + "1993": 0.725, + "1994": 0.737, + "1995": 0.752, + "1996": 0.763, + "1997": 0.767, + "1998": 0.771, + "1999": 0.775, + "2000": 0.782, + "2001": 0.799, + "2002": 0.804, + "2003": 0.817, + "2004": 0.808, + "2005": 0.824, + "2006": 0.829, + "2007": 0.833, + "2008": 0.831, + "2009": 0.837, + "2010": 0.84, + "2011": 0.845, + "2012": 0.847, + "2013": 0.853, + "2014": 0.865, + "2015": 0.878, + "2016": 0.878, + "2017": 0.88, + "2018": 0.894, + "2019": 0.902, + "2020": 0.902, + "2021": 0.902 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr103", + "Region": "Prov. Limburg", + "1990": 0.688, + "1991": 0.693, + "1992": 0.732, + "1993": 0.77, + "1994": 0.783, + "1995": 0.799, + "1996": 0.811, + "1997": 0.815, + "1998": 0.819, + "1999": 0.823, + "2000": 0.831, + "2001": 0.846, + "2002": 0.849, + "2003": 0.849, + "2004": 0.859, + "2005": 0.855, + "2006": 0.86, + "2007": 0.863, + "2008": 0.865, + "2009": 0.868, + "2010": 0.87, + "2011": 0.873, + "2012": 0.875, + "2013": 0.873, + "2014": 0.88, + "2015": 0.889, + "2016": 0.892, + "2017": 0.901, + "2018": 0.904, + "2019": 0.907, + "2020": 0.907, + "2021": 0.907 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr110", + "Region": "Prov. Luxembourg", + "1990": 0.667, + "1991": 0.673, + "1992": 0.709, + "1993": 0.745, + "1994": 0.757, + "1995": 0.772, + "1996": 0.784, + "1997": 0.788, + "1998": 0.792, + "1999": 0.796, + "2000": 0.804, + "2001": 0.815, + "2002": 0.818, + "2003": 0.824, + "2004": 0.823, + "2005": 0.833, + "2006": 0.851, + "2007": 0.846, + "2008": 0.851, + "2009": 0.854, + "2010": 0.857, + "2011": 0.859, + "2012": 0.868, + "2013": 0.865, + "2014": 0.885, + "2015": 0.897, + "2016": 0.895, + "2017": 0.9, + "2018": 0.91, + "2019": 0.914, + "2020": 0.914, + "2021": 0.914 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr111", + "Region": "Prov. Namur", + "1990": 0.68, + "1991": 0.686, + "1992": 0.723, + "1993": 0.76, + "1994": 0.773, + "1995": 0.789, + "1996": 0.8, + "1997": 0.804, + "1998": 0.808, + "1999": 0.813, + "2000": 0.82, + "2001": 0.835, + "2002": 0.838, + "2003": 0.846, + "2004": 0.844, + "2005": 0.859, + "2006": 0.864, + "2007": 0.869, + "2008": 0.868, + "2009": 0.875, + "2010": 0.878, + "2011": 0.879, + "2012": 0.884, + "2013": 0.881, + "2014": 0.888, + "2015": 0.896, + "2016": 0.897, + "2017": 0.909, + "2018": 0.908, + "2019": 0.906, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr104", + "Region": "Prov. Oost-Vlaanderen", + "1990": 0.747, + "1991": 0.753, + "1992": 0.796, + "1993": 0.825, + "1994": 0.83, + "1995": 0.835, + "1996": 0.837, + "1997": 0.84, + "1998": 0.843, + "1999": 0.846, + "2000": 0.849, + "2001": 0.85, + "2002": 0.858, + "2003": 0.857, + "2004": 0.862, + "2005": 0.867, + "2006": 0.868, + "2007": 0.869, + "2008": 0.872, + "2009": 0.879, + "2010": 0.881, + "2011": 0.885, + "2012": 0.883, + "2013": 0.89, + "2014": 0.888, + "2015": 0.898, + "2016": 0.905, + "2017": 0.914, + "2018": 0.917, + "2019": 0.918, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr105", + "Region": "Prov. Vlaams-Brabant", + "1990": 0.693, + "1991": 0.699, + "1992": 0.736, + "1993": 0.773, + "1994": 0.786, + "1995": 0.802, + "1996": 0.813, + "1997": 0.818, + "1998": 0.822, + "1999": 0.826, + "2000": 0.834, + "2001": 0.851, + "2002": 0.854, + "2003": 0.865, + "2004": 0.865, + "2005": 0.875, + "2006": 0.88, + "2007": 0.884, + "2008": 0.885, + "2009": 0.896, + "2010": 0.899, + "2011": 0.898, + "2012": 0.903, + "2013": 0.908, + "2014": 0.91, + "2015": 0.916, + "2016": 0.924, + "2017": 0.934, + "2018": 0.912, + "2019": 0.917, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr106", + "Region": "Prov. West-Vlaanderen", + "1990": 0.676, + "1991": 0.682, + "1992": 0.719, + "1993": 0.756, + "1994": 0.768, + "1995": 0.784, + "1996": 0.795, + "1997": 0.799, + "1998": 0.803, + "1999": 0.807, + "2000": 0.815, + "2001": 0.831, + "2002": 0.835, + "2003": 0.841, + "2004": 0.835, + "2005": 0.853, + "2006": 0.859, + "2007": 0.86, + "2008": 0.866, + "2009": 0.868, + "2010": 0.873, + "2011": 0.879, + "2012": 0.879, + "2013": 0.881, + "2014": 0.882, + "2015": 0.89, + "2016": 0.897, + "2017": 0.904, + "2018": 0.906, + "2019": 0.91, + "2020": 0.91, + "2021": 0.91 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "National", + "GDLCODE": "BLZt", + "Region": "Total", + "1990": 0.458, + "1991": 0.468, + "1992": 0.479, + "1993": 0.489, + "1994": 0.499, + "1995": 0.51, + "1996": 0.52, + "1997": 0.531, + "1998": 0.542, + "1999": 0.552, + "2000": 0.563, + "2001": 0.574, + "2002": 0.589, + "2003": 0.605, + "2004": 0.619, + "2005": 0.609, + "2006": 0.64, + "2007": 0.655, + "2008": 0.67, + "2009": 0.679, + "2010": 0.695, + "2011": 0.691, + "2012": 0.697, + "2013": 0.688, + "2014": 0.682, + "2015": 0.678, + "2016": 0.69, + "2017": 0.676, + "2018": 0.671, + "2019": 0.665, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr102", + "Region": "Belize", + "1990": 0.52, + "1991": 0.531, + "1992": 0.543, + "1993": 0.555, + "1994": 0.567, + "1995": 0.579, + "1996": 0.591, + "1997": 0.603, + "1998": 0.615, + "1999": 0.628, + "2000": 0.64, + "2001": 0.653, + "2002": 0.67, + "2003": 0.687, + "2004": 0.703, + "2005": 0.693, + "2006": 0.729, + "2007": 0.747, + "2008": 0.766, + "2009": 0.778, + "2010": 0.799, + "2011": 0.795, + "2012": 0.801, + "2013": 0.79, + "2014": 0.783, + "2015": 0.778, + "2016": 0.791, + "2017": 0.774, + "2018": 0.769, + "2019": 0.762, + "2020": 0.751, + "2021": 0.751 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr103", + "Region": "Cayo", + "1990": 0.433, + "1991": 0.442, + "1992": 0.451, + "1993": 0.461, + "1994": 0.47, + "1995": 0.48, + "1996": 0.49, + "1997": 0.5, + "1998": 0.51, + "1999": 0.52, + "2000": 0.53, + "2001": 0.54, + "2002": 0.554, + "2003": 0.568, + "2004": 0.582, + "2005": 0.572, + "2006": 0.6, + "2007": 0.603, + "2008": 0.604, + "2009": 0.599, + "2010": 0.6, + "2011": 0.585, + "2012": 0.592, + "2013": 0.584, + "2014": 0.579, + "2015": 0.577, + "2016": 0.59, + "2017": 0.577, + "2018": 0.574, + "2019": 0.57, + "2020": 0.562, + "2021": 0.562 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr101", + "Region": "Corozal, Orange Walk", + "1990": 0.433, + "1991": 0.442, + "1992": 0.452, + "1993": 0.462, + "1994": 0.471, + "1995": 0.481, + "1996": 0.491, + "1997": 0.501, + "1998": 0.511, + "1999": 0.521, + "2000": 0.532, + "2001": 0.542, + "2002": 0.556, + "2003": 0.571, + "2004": 0.584, + "2005": 0.575, + "2006": 0.604, + "2007": 0.611, + "2008": 0.617, + "2009": 0.617, + "2010": 0.623, + "2011": 0.612, + "2012": 0.617, + "2013": 0.608, + "2014": 0.603, + "2015": 0.6, + "2016": 0.611, + "2017": 0.598, + "2018": 0.594, + "2019": 0.589, + "2020": 0.581, + "2021": 0.581 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr104", + "Region": "Stann Creek, Toledo", + "1990": 0.426, + "1991": 0.436, + "1992": 0.445, + "1993": 0.455, + "1994": 0.464, + "1995": 0.474, + "1996": 0.483, + "1997": 0.493, + "1998": 0.503, + "1999": 0.513, + "2000": 0.523, + "2001": 0.533, + "2002": 0.547, + "2003": 0.561, + "2004": 0.574, + "2005": 0.565, + "2006": 0.594, + "2007": 0.617, + "2008": 0.64, + "2009": 0.658, + "2010": 0.684, + "2011": 0.692, + "2012": 0.698, + "2013": 0.689, + "2014": 0.683, + "2015": 0.679, + "2016": 0.692, + "2017": 0.678, + "2018": 0.673, + "2019": 0.668, + "2020": 0.658, + "2021": 0.658 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "National", + "GDLCODE": "BENt", + "Region": "Total", + "1990": 0.196, + "1991": 0.202, + "1992": 0.208, + "1993": 0.214, + "1994": 0.22, + "1995": 0.226, + "1996": 0.232, + "1997": 0.238, + "1998": 0.244, + "1999": 0.253, + "2000": 0.263, + "2001": 0.285, + "2002": 0.301, + "2003": 0.314, + "2004": 0.327, + "2005": 0.34, + "2006": 0.353, + "2007": 0.367, + "2008": 0.38, + "2009": 0.393, + "2010": 0.407, + "2011": 0.422, + "2012": 0.443, + "2013": 0.463, + "2014": 0.468, + "2015": 0.48, + "2016": 0.479, + "2017": 0.471, + "2018": 0.463, + "2019": 0.455, + "2020": 0.443, + "2021": 0.443 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr101", + "Region": "Atacora (incl Donga)", + "1990": 0.146, + "1991": 0.15, + "1992": 0.154, + "1993": 0.158, + "1994": 0.163, + "1995": 0.167, + "1996": 0.171, + "1997": 0.17, + "1998": 0.169, + "1999": 0.171, + "2000": 0.173, + "2001": 0.184, + "2002": 0.203, + "2003": 0.221, + "2004": 0.238, + "2005": 0.255, + "2006": 0.273, + "2007": 0.277, + "2008": 0.282, + "2009": 0.287, + "2010": 0.291, + "2011": 0.297, + "2012": 0.321, + "2013": 0.346, + "2014": 0.36, + "2015": 0.379, + "2016": 0.39, + "2017": 0.394, + "2018": 0.398, + "2019": 0.389, + "2020": 0.377, + "2021": 0.377 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr102", + "Region": "Atlantique (incl Littoral (Cotonou))", + "1990": 0.321, + "1991": 0.331, + "1992": 0.342, + "1993": 0.353, + "1994": 0.364, + "1995": 0.375, + "1996": 0.387, + "1997": 0.389, + "1998": 0.391, + "1999": 0.397, + "2000": 0.406, + "2001": 0.429, + "2002": 0.443, + "2003": 0.453, + "2004": 0.463, + "2005": 0.473, + "2006": 0.483, + "2007": 0.498, + "2008": 0.513, + "2009": 0.528, + "2010": 0.543, + "2011": 0.563, + "2012": 0.594, + "2013": 0.627, + "2014": 0.642, + "2015": 0.665, + "2016": 0.674, + "2017": 0.674, + "2018": 0.673, + "2019": 0.665, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr103", + "Region": "Borgou (incl Alibori)", + "1990": 0.122, + "1991": 0.126, + "1992": 0.129, + "1993": 0.133, + "1994": 0.137, + "1995": 0.141, + "1996": 0.144, + "1997": 0.158, + "1998": 0.17, + "1999": 0.184, + "2000": 0.199, + "2001": 0.223, + "2002": 0.225, + "2003": 0.224, + "2004": 0.222, + "2005": 0.221, + "2006": 0.22, + "2007": 0.231, + "2008": 0.242, + "2009": 0.253, + "2010": 0.264, + "2011": 0.277, + "2012": 0.287, + "2013": 0.297, + "2014": 0.295, + "2015": 0.298, + "2016": 0.293, + "2017": 0.283, + "2018": 0.273, + "2019": 0.268, + "2020": 0.261, + "2021": 0.261 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr104", + "Region": "Mono (incl Couffo)", + "1990": 0.184, + "1991": 0.189, + "1992": 0.194, + "1993": 0.199, + "1994": 0.205, + "1995": 0.21, + "1996": 0.215, + "1997": 0.223, + "1998": 0.231, + "1999": 0.241, + "2000": 0.252, + "2001": 0.276, + "2002": 0.296, + "2003": 0.312, + "2004": 0.328, + "2005": 0.344, + "2006": 0.361, + "2007": 0.376, + "2008": 0.391, + "2009": 0.406, + "2010": 0.421, + "2011": 0.437, + "2012": 0.463, + "2013": 0.489, + "2014": 0.498, + "2015": 0.514, + "2016": 0.518, + "2017": 0.513, + "2018": 0.509, + "2019": 0.499, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr105", + "Region": "Queme (incl Plateau)", + "1990": 0.214, + "1991": 0.22, + "1992": 0.226, + "1993": 0.232, + "1994": 0.239, + "1995": 0.245, + "1996": 0.251, + "1997": 0.255, + "1998": 0.258, + "1999": 0.265, + "2000": 0.274, + "2001": 0.294, + "2002": 0.314, + "2003": 0.331, + "2004": 0.347, + "2005": 0.363, + "2006": 0.38, + "2007": 0.39, + "2008": 0.401, + "2009": 0.412, + "2010": 0.423, + "2011": 0.436, + "2012": 0.462, + "2013": 0.49, + "2014": 0.501, + "2015": 0.52, + "2016": 0.526, + "2017": 0.524, + "2018": 0.522, + "2019": 0.512, + "2020": 0.497, + "2021": 0.497 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr106", + "Region": "Zou (incl Collines)", + "1990": 0.175, + "1991": 0.18, + "1992": 0.185, + "1993": 0.19, + "1994": 0.196, + "1995": 0.201, + "1996": 0.206, + "1997": 0.209, + "1998": 0.212, + "1999": 0.218, + "2000": 0.225, + "2001": 0.242, + "2002": 0.263, + "2003": 0.283, + "2004": 0.302, + "2005": 0.321, + "2006": 0.34, + "2007": 0.354, + "2008": 0.368, + "2009": 0.382, + "2010": 0.396, + "2011": 0.412, + "2012": 0.439, + "2013": 0.467, + "2014": 0.48, + "2015": 0.499, + "2016": 0.507, + "2017": 0.506, + "2018": 0.505, + "2019": 0.494, + "2020": 0.48, + "2021": 0.48 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "National", + "GDLCODE": "BTNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.401, + "2011": 0.413, + "2012": 0.422, + "2013": 0.434, + "2014": 0.449, + "2015": 0.465, + "2016": 0.48, + "2017": 0.496, + "2018": 0.517, + "2019": 0.54, + "2020": 0.54, + "2021": 0.54 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr101", + "Region": "Bumthang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.41, + "2011": 0.422, + "2012": 0.432, + "2013": 0.443, + "2014": 0.459, + "2015": 0.474, + "2016": 0.49, + "2017": 0.505, + "2018": 0.526, + "2019": 0.549, + "2020": 0.549, + "2021": 0.549 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr102", + "Region": "Chukha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.453, + "2011": 0.464, + "2012": 0.473, + "2013": 0.49, + "2014": 0.512, + "2015": 0.534, + "2016": 0.556, + "2017": 0.578, + "2018": 0.607, + "2019": 0.64, + "2020": 0.64, + "2021": 0.64 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr103", + "Region": "Dagana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.361, + "2011": 0.372, + "2012": 0.382, + "2013": 0.389, + "2014": 0.4, + "2015": 0.411, + "2016": 0.422, + "2017": 0.434, + "2018": 0.448, + "2019": 0.464, + "2020": 0.464, + "2021": 0.464 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr104", + "Region": "Gasa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.295, + "2011": 0.304, + "2012": 0.311, + "2013": 0.319, + "2014": 0.33, + "2015": 0.341, + "2016": 0.352, + "2017": 0.363, + "2018": 0.378, + "2019": 0.394, + "2020": 0.394, + "2021": 0.394 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr105", + "Region": "Haa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.416, + "2011": 0.428, + "2012": 0.438, + "2013": 0.449, + "2014": 0.465, + "2015": 0.48, + "2016": 0.495, + "2017": 0.511, + "2018": 0.531, + "2019": 0.554, + "2020": 0.554, + "2021": 0.554 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr106", + "Region": "Lhuntse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.334, + "2011": 0.346, + "2012": 0.356, + "2013": 0.359, + "2014": 0.367, + "2015": 0.374, + "2016": 0.382, + "2017": 0.39, + "2018": 0.399, + "2019": 0.409, + "2020": 0.409, + "2021": 0.409 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr107", + "Region": "Mongar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.357, + "2011": 0.368, + "2012": 0.378, + "2013": 0.384, + "2014": 0.395, + "2015": 0.406, + "2016": 0.416, + "2017": 0.427, + "2018": 0.441, + "2019": 0.456, + "2020": 0.456, + "2021": 0.456 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr108", + "Region": "Paro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.429, + "2011": 0.441, + "2012": 0.45, + "2013": 0.464, + "2014": 0.482, + "2015": 0.499, + "2016": 0.517, + "2017": 0.535, + "2018": 0.559, + "2019": 0.586, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr109", + "Region": "Pemagatshel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.392, + "2011": 0.405, + "2012": 0.417, + "2013": 0.421, + "2014": 0.43, + "2015": 0.439, + "2016": 0.448, + "2017": 0.457, + "2018": 0.469, + "2019": 0.481, + "2020": 0.481, + "2021": 0.481 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr110", + "Region": "Punakha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.387, + "2011": 0.398, + "2012": 0.407, + "2013": 0.418, + "2014": 0.433, + "2015": 0.448, + "2016": 0.463, + "2017": 0.478, + "2018": 0.498, + "2019": 0.52, + "2020": 0.52, + "2021": 0.52 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr111", + "Region": "Samdrup jongkhar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.386, + "2011": 0.398, + "2012": 0.409, + "2013": 0.416, + "2014": 0.428, + "2015": 0.439, + "2016": 0.451, + "2017": 0.463, + "2018": 0.478, + "2019": 0.495, + "2020": 0.495, + "2021": 0.495 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr112", + "Region": "Samtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.375, + "2011": 0.387, + "2012": 0.396, + "2013": 0.405, + "2014": 0.417, + "2015": 0.43, + "2016": 0.442, + "2017": 0.455, + "2018": 0.471, + "2019": 0.489, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr113", + "Region": "Sarpang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.421, + "2011": 0.433, + "2012": 0.443, + "2013": 0.456, + "2014": 0.473, + "2015": 0.49, + "2016": 0.507, + "2017": 0.524, + "2018": 0.547, + "2019": 0.573, + "2020": 0.573, + "2021": 0.573 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr114", + "Region": "Thimphu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.52, + "2011": 0.531, + "2012": 0.539, + "2013": 0.566, + "2014": 0.599, + "2015": 0.631, + "2016": 0.663, + "2017": 0.696, + "2018": 0.74, + "2019": 0.79, + "2020": 0.79, + "2021": 0.79 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr115", + "Region": "Trashigang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.339, + "2011": 0.351, + "2012": 0.36, + "2013": 0.365, + "2014": 0.373, + "2015": 0.382, + "2016": 0.391, + "2017": 0.399, + "2018": 0.41, + "2019": 0.422, + "2020": 0.422, + "2021": 0.422 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr116", + "Region": "Trashiyangtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.32, + "2011": 0.331, + "2012": 0.339, + "2013": 0.345, + "2014": 0.354, + "2015": 0.363, + "2016": 0.373, + "2017": 0.382, + "2018": 0.394, + "2019": 0.408, + "2020": 0.408, + "2021": 0.408 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr117", + "Region": "Trongsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.374, + "2011": 0.386, + "2012": 0.395, + "2013": 0.404, + "2014": 0.417, + "2015": 0.43, + "2016": 0.443, + "2017": 0.456, + "2018": 0.473, + "2019": 0.492, + "2020": 0.492, + "2021": 0.492 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr118", + "Region": "Tsirang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.384, + "2011": 0.396, + "2012": 0.406, + "2013": 0.414, + "2014": 0.427, + "2015": 0.439, + "2016": 0.452, + "2017": 0.465, + "2018": 0.481, + "2019": 0.5, + "2020": 0.5, + "2021": 0.5 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr119", + "Region": "Wangdi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.33, + "2011": 0.34, + "2012": 0.349, + "2013": 0.356, + "2014": 0.366, + "2015": 0.376, + "2016": 0.386, + "2017": 0.397, + "2018": 0.41, + "2019": 0.425, + "2020": 0.425, + "2021": 0.425 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr120", + "Region": "Zhemgang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.365, + "2011": 0.377, + "2012": 0.387, + "2013": 0.393, + "2014": 0.403, + "2015": 0.413, + "2016": 0.423, + "2017": 0.433, + "2018": 0.446, + "2019": 0.46, + "2020": 0.46, + "2021": 0.46 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "National", + "GDLCODE": "BOLt", + "Region": "Total", + "1990": 0.522, + "1991": 0.535, + "1992": 0.548, + "1993": 0.562, + "1994": 0.577, + "1995": 0.597, + "1996": 0.618, + "1997": 0.638, + "1998": 0.659, + "1999": 0.652, + "2000": 0.646, + "2001": 0.639, + "2002": 0.626, + "2003": 0.614, + "2004": 0.601, + "2005": 0.619, + "2006": 0.617, + "2007": 0.631, + "2008": 0.638, + "2009": 0.646, + "2010": 0.653, + "2011": 0.66, + "2012": 0.672, + "2013": 0.686, + "2014": 0.679, + "2015": 0.686, + "2016": 0.708, + "2017": 0.727, + "2018": 0.738, + "2019": 0.744, + "2020": 0.743, + "2021": 0.743 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr108", + "Region": "Beni", + "1990": 0.494, + "1991": 0.507, + "1992": 0.52, + "1993": 0.533, + "1994": 0.546, + "1995": 0.565, + "1996": 0.584, + "1997": 0.604, + "1998": 0.623, + "1999": 0.636, + "2000": 0.649, + "2001": 0.662, + "2002": 0.669, + "2003": 0.676, + "2004": 0.651, + "2005": 0.66, + "2006": 0.647, + "2007": 0.652, + "2008": 0.65, + "2009": 0.659, + "2010": 0.667, + "2011": 0.674, + "2012": 0.687, + "2013": 0.702, + "2014": 0.697, + "2015": 0.704, + "2016": 0.727, + "2017": 0.746, + "2018": 0.758, + "2019": 0.765, + "2020": 0.763, + "2021": 0.763 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr101", + "Region": "Chuquisaca", + "1990": 0.458, + "1991": 0.47, + "1992": 0.482, + "1993": 0.495, + "1994": 0.507, + "1995": 0.526, + "1996": 0.545, + "1997": 0.564, + "1998": 0.583, + "1999": 0.582, + "2000": 0.581, + "2001": 0.58, + "2002": 0.575, + "2003": 0.569, + "2004": 0.555, + "2005": 0.572, + "2006": 0.568, + "2007": 0.579, + "2008": 0.582, + "2009": 0.588, + "2010": 0.593, + "2011": 0.598, + "2012": 0.609, + "2013": 0.621, + "2014": 0.612, + "2015": 0.617, + "2016": 0.637, + "2017": 0.654, + "2018": 0.663, + "2019": 0.667, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr103", + "Region": "Cochabamba", + "1990": 0.55, + "1991": 0.564, + "1992": 0.579, + "1993": 0.593, + "1994": 0.608, + "1995": 0.63, + "1996": 0.652, + "1997": 0.673, + "1998": 0.695, + "1999": 0.688, + "2000": 0.681, + "2001": 0.674, + "2002": 0.661, + "2003": 0.649, + "2004": 0.624, + "2005": 0.633, + "2006": 0.62, + "2007": 0.625, + "2008": 0.621, + "2009": 0.629, + "2010": 0.636, + "2011": 0.642, + "2012": 0.654, + "2013": 0.667, + "2014": 0.66, + "2015": 0.666, + "2016": 0.688, + "2017": 0.706, + "2018": 0.717, + "2019": 0.722, + "2020": 0.721, + "2021": 0.721 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr102", + "Region": "La Paz", + "1990": 0.543, + "1991": 0.557, + "1992": 0.571, + "1993": 0.585, + "1994": 0.6, + "1995": 0.622, + "1996": 0.643, + "1997": 0.664, + "1998": 0.686, + "1999": 0.663, + "2000": 0.64, + "2001": 0.617, + "2002": 0.588, + "2003": 0.559, + "2004": 0.565, + "2005": 0.597, + "2006": 0.61, + "2007": 0.639, + "2008": 0.66, + "2009": 0.669, + "2010": 0.676, + "2011": 0.683, + "2012": 0.696, + "2013": 0.71, + "2014": 0.704, + "2015": 0.711, + "2016": 0.734, + "2017": 0.753, + "2018": 0.765, + "2019": 0.771, + "2020": 0.77, + "2021": 0.77 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr104", + "Region": "Oruro", + "1990": 0.578, + "1991": 0.592, + "1992": 0.608, + "1993": 0.623, + "1994": 0.639, + "1995": 0.662, + "1996": 0.685, + "1997": 0.708, + "1998": 0.731, + "1999": 0.734, + "2000": 0.737, + "2001": 0.741, + "2002": 0.738, + "2003": 0.735, + "2004": 0.697, + "2005": 0.696, + "2006": 0.673, + "2007": 0.669, + "2008": 0.657, + "2009": 0.665, + "2010": 0.672, + "2011": 0.679, + "2012": 0.692, + "2013": 0.706, + "2014": 0.699, + "2015": 0.706, + "2016": 0.729, + "2017": 0.748, + "2018": 0.76, + "2019": 0.766, + "2020": 0.765, + "2021": 0.765 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr109", + "Region": "Pando", + "1990": 0.437, + "1991": 0.448, + "1992": 0.459, + "1993": 0.47, + "1994": 0.482, + "1995": 0.498, + "1996": 0.514, + "1997": 0.531, + "1998": 0.547, + "1999": 0.568, + "2000": 0.589, + "2001": 0.61, + "2002": 0.625, + "2003": 0.639, + "2004": 0.629, + "2005": 0.648, + "2006": 0.647, + "2007": 0.664, + "2008": 0.673, + "2009": 0.683, + "2010": 0.692, + "2011": 0.7, + "2012": 0.714, + "2013": 0.729, + "2014": 0.725, + "2015": 0.733, + "2016": 0.756, + "2017": 0.777, + "2018": 0.789, + "2019": 0.797, + "2020": 0.795, + "2021": 0.795 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr105", + "Region": "Potosi", + "1990": 0.448, + "1991": 0.46, + "1992": 0.472, + "1993": 0.485, + "1994": 0.498, + "1995": 0.517, + "1996": 0.536, + "1997": 0.554, + "1998": 0.573, + "1999": 0.559, + "2000": 0.545, + "2001": 0.531, + "2002": 0.513, + "2003": 0.495, + "2004": 0.493, + "2005": 0.517, + "2006": 0.523, + "2007": 0.542, + "2008": 0.554, + "2009": 0.56, + "2010": 0.564, + "2011": 0.569, + "2012": 0.579, + "2013": 0.591, + "2014": 0.583, + "2015": 0.587, + "2016": 0.607, + "2017": 0.623, + "2018": 0.632, + "2019": 0.636, + "2020": 0.635, + "2021": 0.635 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr107", + "Region": "Santa Cruz", + "1990": 0.528, + "1991": 0.541, + "1992": 0.555, + "1993": 0.569, + "1994": 0.583, + "1995": 0.603, + "1996": 0.623, + "1997": 0.644, + "1998": 0.664, + "1999": 0.667, + "2000": 0.67, + "2001": 0.673, + "2002": 0.669, + "2003": 0.666, + "2004": 0.649, + "2005": 0.665, + "2006": 0.659, + "2007": 0.672, + "2008": 0.677, + "2009": 0.687, + "2010": 0.695, + "2011": 0.703, + "2012": 0.716, + "2013": 0.731, + "2014": 0.727, + "2015": 0.734, + "2016": 0.758, + "2017": 0.778, + "2018": 0.791, + "2019": 0.798, + "2020": 0.796, + "2021": 0.796 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr106", + "Region": "Tarija", + "1990": 0.484, + "1991": 0.496, + "1992": 0.509, + "1993": 0.522, + "1994": 0.535, + "1995": 0.554, + "1996": 0.573, + "1997": 0.592, + "1998": 0.611, + "1999": 0.615, + "2000": 0.619, + "2001": 0.623, + "2002": 0.622, + "2003": 0.621, + "2004": 0.602, + "2005": 0.616, + "2006": 0.608, + "2007": 0.617, + "2008": 0.619, + "2009": 0.627, + "2010": 0.633, + "2011": 0.64, + "2012": 0.652, + "2013": 0.665, + "2014": 0.658, + "2015": 0.664, + "2016": 0.686, + "2017": 0.704, + "2018": 0.715, + "2019": 0.721, + "2020": 0.719, + "2021": 0.719 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "National", + "GDLCODE": "BIHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.529, + "2001": 0.535, + "2002": 0.542, + "2003": 0.548, + "2004": 0.554, + "2005": 0.56, + "2006": 0.566, + "2007": 0.579, + "2008": 0.592, + "2009": 0.599, + "2010": 0.609, + "2011": 0.627, + "2012": 0.657, + "2013": 0.676, + "2014": 0.696, + "2015": 0.697, + "2016": 0.708, + "2017": 0.708, + "2018": 0.71, + "2019": 0.722, + "2020": 0.735, + "2021": 0.735 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr103", + "Region": "Central Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.556, + "2001": 0.562, + "2002": 0.569, + "2003": 0.575, + "2004": 0.581, + "2005": 0.588, + "2006": 0.594, + "2007": 0.601, + "2008": 0.608, + "2009": 0.609, + "2010": 0.614, + "2011": 0.625, + "2012": 0.655, + "2013": 0.675, + "2014": 0.696, + "2015": 0.697, + "2016": 0.708, + "2017": 0.708, + "2018": 0.71, + "2019": 0.723, + "2020": 0.735, + "2021": 0.735 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr102", + "Region": "Northern Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.532, + "2001": 0.538, + "2002": 0.545, + "2003": 0.551, + "2004": 0.557, + "2005": 0.563, + "2006": 0.569, + "2007": 0.581, + "2008": 0.593, + "2009": 0.599, + "2010": 0.608, + "2011": 0.624, + "2012": 0.654, + "2013": 0.673, + "2014": 0.692, + "2015": 0.693, + "2016": 0.704, + "2017": 0.703, + "2018": 0.705, + "2019": 0.717, + "2020": 0.729, + "2021": 0.729 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr105", + "Region": "Republica Srpska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.515, + "2001": 0.521, + "2002": 0.527, + "2003": 0.533, + "2004": 0.539, + "2005": 0.545, + "2006": 0.551, + "2007": 0.567, + "2008": 0.583, + "2009": 0.593, + "2010": 0.606, + "2011": 0.627, + "2012": 0.656, + "2013": 0.676, + "2014": 0.695, + "2015": 0.696, + "2016": 0.707, + "2017": 0.706, + "2018": 0.708, + "2019": 0.72, + "2020": 0.732, + "2021": 0.732 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr101", + "Region": "Western Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.498, + "2001": 0.504, + "2002": 0.509, + "2003": 0.515, + "2004": 0.521, + "2005": 0.527, + "2006": 0.533, + "2007": 0.545, + "2008": 0.558, + "2009": 0.565, + "2010": 0.575, + "2011": 0.592, + "2012": 0.621, + "2013": 0.641, + "2014": 0.66, + "2015": 0.661, + "2016": 0.672, + "2017": 0.672, + "2018": 0.674, + "2019": 0.686, + "2020": 0.698, + "2021": 0.698 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr104", + "Region": "Western herzegovina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.527, + "2001": 0.533, + "2002": 0.539, + "2003": 0.545, + "2004": 0.552, + "2005": 0.558, + "2006": 0.564, + "2007": 0.586, + "2008": 0.608, + "2009": 0.624, + "2010": 0.644, + "2011": 0.671, + "2012": 0.703, + "2013": 0.724, + "2014": 0.745, + "2015": 0.746, + "2016": 0.758, + "2017": 0.758, + "2018": 0.76, + "2019": 0.773, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "National", + "GDLCODE": "BWAt", + "Region": "Total", + "1990": 0.484, + "1991": 0.493, + "1992": 0.502, + "1993": 0.511, + "1994": 0.518, + "1995": 0.539, + "1996": 0.551, + "1997": 0.564, + "1998": 0.576, + "1999": 0.593, + "2000": 0.603, + "2001": 0.609, + "2002": 0.608, + "2003": 0.614, + "2004": 0.618, + "2005": 0.623, + "2006": 0.63, + "2007": 0.632, + "2008": 0.633, + "2009": 0.636, + "2010": 0.64, + "2011": 0.647, + "2012": 0.654, + "2013": 0.662, + "2014": 0.669, + "2015": 0.676, + "2016": 0.679, + "2017": 0.681, + "2018": 0.683, + "2019": 0.685, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr101", + "Region": "Central", + "1990": 0.458, + "1991": 0.466, + "1992": 0.474, + "1993": 0.481, + "1994": 0.487, + "1995": 0.507, + "1996": 0.518, + "1997": 0.53, + "1998": 0.541, + "1999": 0.557, + "2000": 0.567, + "2001": 0.571, + "2002": 0.569, + "2003": 0.574, + "2004": 0.577, + "2005": 0.58, + "2006": 0.587, + "2007": 0.588, + "2008": 0.587, + "2009": 0.59, + "2010": 0.592, + "2011": 0.598, + "2012": 0.609, + "2013": 0.621, + "2014": 0.627, + "2015": 0.634, + "2016": 0.636, + "2017": 0.638, + "2018": 0.64, + "2019": 0.642, + "2020": 0.642, + "2021": 0.642 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr110", + "Region": "Chobe", + "1990": 0.325, + "1991": 0.337, + "1992": 0.349, + "1993": 0.361, + "1994": 0.372, + "1995": 0.386, + "1996": 0.396, + "1997": 0.406, + "1998": 0.416, + "1999": 0.427, + "2000": 0.436, + "2001": 0.643, + "2002": 0.636, + "2003": 0.637, + "2004": 0.636, + "2005": 0.636, + "2006": 0.639, + "2007": 0.636, + "2008": 0.633, + "2009": 0.632, + "2010": 0.631, + "2011": 0.635, + "2012": 0.635, + "2013": 0.635, + "2014": 0.642, + "2015": 0.65, + "2016": 0.652, + "2017": 0.655, + "2018": 0.657, + "2019": 0.66, + "2020": 0.66, + "2021": 0.66 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr102", + "Region": "Ghanzi", + "1990": 0.442, + "1991": 0.451, + "1992": 0.461, + "1993": 0.471, + "1994": 0.479, + "1995": 0.498, + "1996": 0.51, + "1997": 0.521, + "1998": 0.533, + "1999": 0.548, + "2000": 0.559, + "2001": 0.469, + "2002": 0.47, + "2003": 0.478, + "2004": 0.483, + "2005": 0.488, + "2006": 0.497, + "2007": 0.5, + "2008": 0.502, + "2009": 0.507, + "2010": 0.511, + "2011": 0.519, + "2012": 0.539, + "2013": 0.559, + "2014": 0.566, + "2015": 0.573, + "2016": 0.575, + "2017": 0.577, + "2018": 0.579, + "2019": 0.581, + "2020": 0.581, + "2021": 0.581 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr103", + "Region": "Kgalagadi", + "1990": 0.483, + "1991": 0.493, + "1992": 0.502, + "1993": 0.512, + "1994": 0.52, + "1995": 0.54, + "1996": 0.553, + "1997": 0.565, + "1998": 0.578, + "1999": 0.595, + "2000": 0.605, + "2001": 0.548, + "2002": 0.545, + "2003": 0.548, + "2004": 0.55, + "2005": 0.552, + "2006": 0.557, + "2007": 0.557, + "2008": 0.556, + "2009": 0.557, + "2010": 0.558, + "2011": 0.563, + "2012": 0.583, + "2013": 0.603, + "2014": 0.61, + "2015": 0.616, + "2016": 0.619, + "2017": 0.621, + "2018": 0.623, + "2019": 0.625, + "2020": 0.625, + "2021": 0.625 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr104", + "Region": "Kgatleng", + "1990": 0.484, + "1991": 0.493, + "1992": 0.501, + "1993": 0.51, + "1994": 0.516, + "1995": 0.537, + "1996": 0.549, + "1997": 0.561, + "1998": 0.574, + "1999": 0.591, + "2000": 0.601, + "2001": 0.604, + "2002": 0.604, + "2003": 0.611, + "2004": 0.617, + "2005": 0.623, + "2006": 0.632, + "2007": 0.635, + "2008": 0.637, + "2009": 0.641, + "2010": 0.646, + "2011": 0.654, + "2012": 0.664, + "2013": 0.674, + "2014": 0.681, + "2015": 0.689, + "2016": 0.691, + "2017": 0.693, + "2018": 0.695, + "2019": 0.697, + "2020": 0.697, + "2021": 0.697 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr105", + "Region": "Kweneng", + "1990": 0.455, + "1991": 0.463, + "1992": 0.472, + "1993": 0.48, + "1994": 0.486, + "1995": 0.505, + "1996": 0.517, + "1997": 0.529, + "1998": 0.54, + "1999": 0.556, + "2000": 0.566, + "2001": 0.57, + "2002": 0.571, + "2003": 0.58, + "2004": 0.586, + "2005": 0.593, + "2006": 0.603, + "2007": 0.606, + "2008": 0.609, + "2009": 0.615, + "2010": 0.62, + "2011": 0.629, + "2012": 0.626, + "2013": 0.622, + "2014": 0.629, + "2015": 0.635, + "2016": 0.637, + "2017": 0.639, + "2018": 0.641, + "2019": 0.643, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr106", + "Region": "North-East", + "1990": 0.555, + "1991": 0.567, + "1992": 0.578, + "1993": 0.589, + "1994": 0.599, + "1995": 0.622, + "1996": 0.637, + "1997": 0.652, + "1998": 0.666, + "1999": 0.685, + "2000": 0.698, + "2001": 0.674, + "2002": 0.67, + "2003": 0.675, + "2004": 0.678, + "2005": 0.681, + "2006": 0.687, + "2007": 0.687, + "2008": 0.687, + "2009": 0.689, + "2010": 0.691, + "2011": 0.698, + "2012": 0.689, + "2013": 0.68, + "2014": 0.688, + "2015": 0.696, + "2016": 0.698, + "2017": 0.7, + "2018": 0.703, + "2019": 0.705, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr107", + "Region": "North-West, Ngamiland", + "1990": 0.473, + "1991": 0.481, + "1992": 0.49, + "1993": 0.498, + "1994": 0.504, + "1995": 0.524, + "1996": 0.536, + "1997": 0.548, + "1998": 0.56, + "1999": 0.577, + "2000": 0.587, + "2001": 0.537, + "2002": 0.536, + "2003": 0.542, + "2004": 0.545, + "2005": 0.549, + "2006": 0.556, + "2007": 0.557, + "2008": 0.558, + "2009": 0.561, + "2010": 0.564, + "2011": 0.57, + "2012": 0.598, + "2013": 0.626, + "2014": 0.634, + "2015": 0.641, + "2016": 0.643, + "2017": 0.645, + "2018": 0.648, + "2019": 0.65, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr108", + "Region": "South-East", + "1990": 0.576, + "1991": 0.588, + "1992": 0.601, + "1993": 0.613, + "1994": 0.624, + "1995": 0.648, + "1996": 0.663, + "1997": 0.679, + "1998": 0.694, + "1999": 0.714, + "2000": 0.727, + "2001": 0.762, + "2002": 0.76, + "2003": 0.766, + "2004": 0.77, + "2005": 0.774, + "2006": 0.782, + "2007": 0.783, + "2008": 0.784, + "2009": 0.787, + "2010": 0.791, + "2011": 0.8, + "2012": 0.808, + "2013": 0.817, + "2014": 0.827, + "2015": 0.837, + "2016": 0.84, + "2017": 0.843, + "2018": 0.846, + "2019": 0.849, + "2020": 0.849, + "2021": 0.849 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr109", + "Region": "Southern", + "1990": 0.415, + "1991": 0.421, + "1992": 0.427, + "1993": 0.434, + "1994": 0.438, + "1995": 0.456, + "1996": 0.466, + "1997": 0.476, + "1998": 0.486, + "1999": 0.501, + "2000": 0.509, + "2001": 0.553, + "2002": 0.551, + "2003": 0.557, + "2004": 0.561, + "2005": 0.566, + "2006": 0.573, + "2007": 0.575, + "2008": 0.576, + "2009": 0.579, + "2010": 0.582, + "2011": 0.589, + "2012": 0.609, + "2013": 0.63, + "2014": 0.636, + "2015": 0.643, + "2016": 0.645, + "2017": 0.647, + "2018": 0.649, + "2019": 0.652, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "National", + "GDLCODE": "BRAt", + "Region": "Total", + "1990": 0.459, + "1991": 0.47, + "1992": 0.481, + "1993": 0.492, + "1994": 0.503, + "1995": 0.514, + "1996": 0.526, + "1997": 0.538, + "1998": 0.55, + "1999": 0.562, + "2000": 0.574, + "2001": 0.586, + "2002": 0.598, + "2003": 0.583, + "2004": 0.584, + "2005": 0.588, + "2006": 0.587, + "2007": 0.586, + "2008": 0.606, + "2009": 0.608, + "2010": 0.614, + "2011": 0.62, + "2012": 0.628, + "2013": 0.668, + "2014": 0.674, + "2015": 0.677, + "2016": 0.687, + "2017": 0.692, + "2018": 0.702, + "2019": 0.704, + "2020": 0.704, + "2021": 0.704 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr102", + "Region": "Acre", + "1990": 0.402, + "1991": 0.412, + "1992": 0.421, + "1993": 0.43, + "1994": 0.44, + "1995": 0.449, + "1996": 0.459, + "1997": 0.47, + "1998": 0.48, + "1999": 0.49, + "2000": 0.5, + "2001": 0.515, + "2002": 0.53, + "2003": 0.52, + "2004": 0.526, + "2005": 0.533, + "2006": 0.536, + "2007": 0.539, + "2008": 0.562, + "2009": 0.568, + "2010": 0.577, + "2011": 0.583, + "2012": 0.589, + "2013": 0.628, + "2014": 0.634, + "2015": 0.636, + "2016": 0.646, + "2017": 0.65, + "2018": 0.66, + "2019": 0.661, + "2020": 0.661, + "2021": 0.661 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr114", + "Region": "Alagoas", + "1990": 0.408, + "1991": 0.417, + "1992": 0.426, + "1993": 0.436, + "1994": 0.445, + "1995": 0.454, + "1996": 0.464, + "1997": 0.474, + "1998": 0.484, + "1999": 0.494, + "2000": 0.504, + "2001": 0.518, + "2002": 0.531, + "2003": 0.518, + "2004": 0.521, + "2005": 0.526, + "2006": 0.527, + "2007": 0.528, + "2008": 0.549, + "2009": 0.553, + "2010": 0.561, + "2011": 0.566, + "2012": 0.572, + "2013": 0.611, + "2014": 0.617, + "2015": 0.619, + "2016": 0.627, + "2017": 0.631, + "2018": 0.64, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr106", + "Region": "Amapa", + "1990": 0.482, + "1991": 0.493, + "1992": 0.505, + "1993": 0.516, + "1994": 0.528, + "1995": 0.539, + "1996": 0.551, + "1997": 0.564, + "1998": 0.576, + "1999": 0.589, + "2000": 0.601, + "2001": 0.611, + "2002": 0.622, + "2003": 0.604, + "2004": 0.603, + "2005": 0.605, + "2006": 0.603, + "2007": 0.6, + "2008": 0.618, + "2009": 0.619, + "2010": 0.623, + "2011": 0.63, + "2012": 0.637, + "2013": 0.677, + "2014": 0.684, + "2015": 0.687, + "2016": 0.697, + "2017": 0.702, + "2018": 0.713, + "2019": 0.715, + "2020": 0.715, + "2021": 0.715 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr103", + "Region": "Amazonas", + "1990": 0.417, + "1991": 0.427, + "1992": 0.437, + "1993": 0.447, + "1994": 0.457, + "1995": 0.468, + "1996": 0.478, + "1997": 0.489, + "1998": 0.5, + "1999": 0.511, + "2000": 0.522, + "2001": 0.538, + "2002": 0.554, + "2003": 0.544, + "2004": 0.55, + "2005": 0.558, + "2006": 0.562, + "2007": 0.565, + "2008": 0.588, + "2009": 0.595, + "2010": 0.605, + "2011": 0.611, + "2012": 0.618, + "2013": 0.658, + "2014": 0.664, + "2015": 0.667, + "2016": 0.676, + "2017": 0.681, + "2018": 0.692, + "2019": 0.693, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr116", + "Region": "Bahia", + "1990": 0.438, + "1991": 0.448, + "1992": 0.458, + "1993": 0.468, + "1994": 0.478, + "1995": 0.488, + "1996": 0.499, + "1997": 0.51, + "1998": 0.52, + "1999": 0.531, + "2000": 0.542, + "2001": 0.554, + "2002": 0.567, + "2003": 0.552, + "2004": 0.553, + "2005": 0.557, + "2006": 0.557, + "2007": 0.557, + "2008": 0.577, + "2009": 0.58, + "2010": 0.587, + "2011": 0.592, + "2012": 0.599, + "2013": 0.638, + "2014": 0.645, + "2015": 0.647, + "2016": 0.656, + "2017": 0.66, + "2018": 0.67, + "2019": 0.671, + "2020": 0.671, + "2021": 0.671 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr110", + "Region": "Ceara", + "1990": 0.438, + "1991": 0.448, + "1992": 0.458, + "1993": 0.468, + "1994": 0.478, + "1995": 0.488, + "1996": 0.498, + "1997": 0.509, + "1998": 0.519, + "1999": 0.53, + "2000": 0.541, + "2001": 0.552, + "2002": 0.563, + "2003": 0.546, + "2004": 0.547, + "2005": 0.549, + "2006": 0.547, + "2007": 0.546, + "2008": 0.564, + "2009": 0.567, + "2010": 0.571, + "2011": 0.577, + "2012": 0.583, + "2013": 0.622, + "2014": 0.628, + "2015": 0.63, + "2016": 0.639, + "2017": 0.643, + "2018": 0.653, + "2019": 0.654, + "2020": 0.654, + "2021": 0.654 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr127", + "Region": "Distrito Federal", + "1990": 0.55, + "1991": 0.563, + "1992": 0.577, + "1993": 0.591, + "1994": 0.605, + "1995": 0.618, + "1996": 0.633, + "1997": 0.648, + "1998": 0.663, + "1999": 0.678, + "2000": 0.693, + "2001": 0.704, + "2002": 0.715, + "2003": 0.696, + "2004": 0.694, + "2005": 0.696, + "2006": 0.693, + "2007": 0.69, + "2008": 0.708, + "2009": 0.708, + "2010": 0.712, + "2011": 0.72, + "2012": 0.729, + "2013": 0.772, + "2014": 0.78, + "2015": 0.784, + "2016": 0.796, + "2017": 0.803, + "2018": 0.815, + "2019": 0.818, + "2020": 0.818, + "2021": 0.818 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr118", + "Region": "Espirito Santo", + "1990": 0.453, + "1991": 0.464, + "1992": 0.475, + "1993": 0.486, + "1994": 0.497, + "1995": 0.508, + "1996": 0.52, + "1997": 0.532, + "1998": 0.544, + "1999": 0.556, + "2000": 0.567, + "2001": 0.58, + "2002": 0.592, + "2003": 0.578, + "2004": 0.58, + "2005": 0.584, + "2006": 0.584, + "2007": 0.584, + "2008": 0.604, + "2009": 0.607, + "2010": 0.613, + "2011": 0.619, + "2012": 0.626, + "2013": 0.666, + "2014": 0.673, + "2015": 0.676, + "2016": 0.686, + "2017": 0.69, + "2018": 0.701, + "2019": 0.703, + "2020": 0.703, + "2021": 0.703 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr126", + "Region": "Goias", + "1990": 0.462, + "1991": 0.473, + "1992": 0.484, + "1993": 0.495, + "1994": 0.506, + "1995": 0.517, + "1996": 0.528, + "1997": 0.54, + "1998": 0.552, + "1999": 0.564, + "2000": 0.576, + "2001": 0.588, + "2002": 0.6, + "2003": 0.585, + "2004": 0.586, + "2005": 0.59, + "2006": 0.589, + "2007": 0.588, + "2008": 0.608, + "2009": 0.61, + "2010": 0.616, + "2011": 0.623, + "2012": 0.63, + "2013": 0.67, + "2014": 0.677, + "2015": 0.679, + "2016": 0.689, + "2017": 0.694, + "2018": 0.705, + "2019": 0.706, + "2020": 0.706, + "2021": 0.706 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr108", + "Region": "Maranhao", + "1990": 0.41, + "1991": 0.419, + "1992": 0.429, + "1993": 0.438, + "1994": 0.447, + "1995": 0.456, + "1996": 0.466, + "1997": 0.476, + "1998": 0.486, + "1999": 0.496, + "2000": 0.506, + "2001": 0.519, + "2002": 0.532, + "2003": 0.519, + "2004": 0.521, + "2005": 0.526, + "2006": 0.527, + "2007": 0.528, + "2008": 0.548, + "2009": 0.553, + "2010": 0.56, + "2011": 0.566, + "2012": 0.571, + "2013": 0.61, + "2014": 0.616, + "2015": 0.618, + "2016": 0.626, + "2017": 0.63, + "2018": 0.64, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr125", + "Region": "Mato Grosso", + "1990": 0.438, + "1991": 0.449, + "1992": 0.459, + "1993": 0.47, + "1994": 0.48, + "1995": 0.491, + "1996": 0.502, + "1997": 0.513, + "1998": 0.525, + "1999": 0.536, + "2000": 0.547, + "2001": 0.561, + "2002": 0.574, + "2003": 0.561, + "2004": 0.564, + "2005": 0.57, + "2006": 0.571, + "2007": 0.572, + "2008": 0.592, + "2009": 0.597, + "2010": 0.604, + "2011": 0.61, + "2012": 0.617, + "2013": 0.657, + "2014": 0.663, + "2015": 0.666, + "2016": 0.676, + "2017": 0.68, + "2018": 0.691, + "2019": 0.692, + "2020": 0.692, + "2021": 0.692 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr124", + "Region": "Mato Grosso do Sul", + "1990": 0.443, + "1991": 0.454, + "1992": 0.464, + "1993": 0.475, + "1994": 0.486, + "1995": 0.497, + "1996": 0.508, + "1997": 0.52, + "1998": 0.531, + "1999": 0.543, + "2000": 0.554, + "2001": 0.568, + "2002": 0.582, + "2003": 0.57, + "2004": 0.573, + "2005": 0.579, + "2006": 0.58, + "2007": 0.582, + "2008": 0.604, + "2009": 0.608, + "2010": 0.616, + "2011": 0.622, + "2012": 0.63, + "2013": 0.669, + "2014": 0.676, + "2015": 0.679, + "2016": 0.689, + "2017": 0.694, + "2018": 0.704, + "2019": 0.706, + "2020": 0.706, + "2021": 0.706 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr117", + "Region": "Minas Gerais", + "1990": 0.451, + "1991": 0.461, + "1992": 0.472, + "1993": 0.483, + "1994": 0.494, + "1995": 0.504, + "1996": 0.516, + "1997": 0.527, + "1998": 0.539, + "1999": 0.55, + "2000": 0.562, + "2001": 0.574, + "2002": 0.586, + "2003": 0.571, + "2004": 0.572, + "2005": 0.576, + "2006": 0.575, + "2007": 0.574, + "2008": 0.593, + "2009": 0.596, + "2010": 0.602, + "2011": 0.608, + "2012": 0.615, + "2013": 0.654, + "2014": 0.661, + "2015": 0.663, + "2016": 0.673, + "2017": 0.678, + "2018": 0.688, + "2019": 0.69, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr105", + "Region": "Para", + "1990": 0.428, + "1991": 0.438, + "1992": 0.448, + "1993": 0.458, + "1994": 0.468, + "1995": 0.478, + "1996": 0.489, + "1997": 0.5, + "1998": 0.511, + "1999": 0.521, + "2000": 0.532, + "2001": 0.545, + "2002": 0.558, + "2003": 0.545, + "2004": 0.547, + "2005": 0.552, + "2006": 0.552, + "2007": 0.553, + "2008": 0.573, + "2009": 0.577, + "2010": 0.584, + "2011": 0.59, + "2012": 0.596, + "2013": 0.636, + "2014": 0.642, + "2015": 0.644, + "2016": 0.653, + "2017": 0.658, + "2018": 0.668, + "2019": 0.669, + "2020": 0.669, + "2021": 0.669 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr112", + "Region": "Paraiba", + "1990": 0.432, + "1991": 0.442, + "1992": 0.452, + "1993": 0.462, + "1994": 0.472, + "1995": 0.481, + "1996": 0.492, + "1997": 0.502, + "1998": 0.513, + "1999": 0.523, + "2000": 0.534, + "2001": 0.546, + "2002": 0.559, + "2003": 0.544, + "2004": 0.546, + "2005": 0.55, + "2006": 0.549, + "2007": 0.549, + "2008": 0.569, + "2009": 0.573, + "2010": 0.58, + "2011": 0.585, + "2012": 0.591, + "2013": 0.631, + "2014": 0.637, + "2015": 0.639, + "2016": 0.648, + "2017": 0.652, + "2018": 0.662, + "2019": 0.663, + "2020": 0.663, + "2021": 0.663 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr121", + "Region": "Parana", + "1990": 0.455, + "1991": 0.466, + "1992": 0.477, + "1993": 0.488, + "1994": 0.498, + "1995": 0.509, + "1996": 0.521, + "1997": 0.533, + "1998": 0.545, + "1999": 0.557, + "2000": 0.569, + "2001": 0.582, + "2002": 0.595, + "2003": 0.581, + "2004": 0.584, + "2005": 0.588, + "2006": 0.589, + "2007": 0.589, + "2008": 0.61, + "2009": 0.613, + "2010": 0.62, + "2011": 0.627, + "2012": 0.634, + "2013": 0.674, + "2014": 0.681, + "2015": 0.684, + "2016": 0.694, + "2017": 0.699, + "2018": 0.709, + "2019": 0.711, + "2020": 0.711, + "2021": 0.711 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr113", + "Region": "Pernambuco", + "1990": 0.437, + "1991": 0.447, + "1992": 0.457, + "1993": 0.467, + "1994": 0.478, + "1995": 0.488, + "1996": 0.499, + "1997": 0.51, + "1998": 0.521, + "1999": 0.532, + "2000": 0.543, + "2001": 0.555, + "2002": 0.567, + "2003": 0.552, + "2004": 0.553, + "2005": 0.557, + "2006": 0.556, + "2007": 0.556, + "2008": 0.575, + "2009": 0.578, + "2010": 0.584, + "2011": 0.589, + "2012": 0.596, + "2013": 0.635, + "2014": 0.641, + "2015": 0.644, + "2016": 0.653, + "2017": 0.657, + "2018": 0.667, + "2019": 0.668, + "2020": 0.668, + "2021": 0.668 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr109", + "Region": "Piaui", + "1990": 0.422, + "1991": 0.431, + "1992": 0.441, + "1993": 0.45, + "1994": 0.46, + "1995": 0.47, + "1996": 0.48, + "1997": 0.49, + "1998": 0.5, + "1999": 0.51, + "2000": 0.52, + "2001": 0.534, + "2002": 0.548, + "2003": 0.535, + "2004": 0.538, + "2005": 0.543, + "2006": 0.544, + "2007": 0.544, + "2008": 0.566, + "2009": 0.571, + "2010": 0.579, + "2011": 0.584, + "2012": 0.59, + "2013": 0.631, + "2014": 0.637, + "2015": 0.639, + "2016": 0.647, + "2017": 0.651, + "2018": 0.661, + "2019": 0.662, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr119", + "Region": "Rio de Janeiro", + "1990": 0.502, + "1991": 0.514, + "1992": 0.527, + "1993": 0.539, + "1994": 0.552, + "1995": 0.564, + "1996": 0.578, + "1997": 0.591, + "1998": 0.605, + "1999": 0.618, + "2000": 0.632, + "2001": 0.642, + "2002": 0.653, + "2003": 0.635, + "2004": 0.635, + "2005": 0.637, + "2006": 0.634, + "2007": 0.632, + "2008": 0.65, + "2009": 0.651, + "2010": 0.655, + "2011": 0.662, + "2012": 0.67, + "2013": 0.711, + "2014": 0.718, + "2015": 0.722, + "2016": 0.733, + "2017": 0.738, + "2018": 0.749, + "2019": 0.752, + "2020": 0.752, + "2021": 0.752 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr111", + "Region": "Rio Grande do Norte", + "1990": 0.447, + "1991": 0.458, + "1992": 0.468, + "1993": 0.479, + "1994": 0.489, + "1995": 0.499, + "1996": 0.511, + "1997": 0.522, + "1998": 0.533, + "1999": 0.544, + "2000": 0.555, + "2001": 0.568, + "2002": 0.581, + "2003": 0.566, + "2004": 0.568, + "2005": 0.572, + "2006": 0.571, + "2007": 0.571, + "2008": 0.592, + "2009": 0.595, + "2010": 0.602, + "2011": 0.608, + "2012": 0.614, + "2013": 0.654, + "2014": 0.661, + "2015": 0.663, + "2016": 0.673, + "2017": 0.677, + "2018": 0.688, + "2019": 0.689, + "2020": 0.689, + "2021": 0.689 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr123", + "Region": "Rio Grande do Sul", + "1990": 0.47, + "1991": 0.481, + "1992": 0.493, + "1993": 0.504, + "1994": 0.516, + "1995": 0.527, + "1996": 0.54, + "1997": 0.552, + "1998": 0.564, + "1999": 0.577, + "2000": 0.589, + "2001": 0.601, + "2002": 0.613, + "2003": 0.598, + "2004": 0.599, + "2005": 0.602, + "2006": 0.601, + "2007": 0.6, + "2008": 0.62, + "2009": 0.622, + "2010": 0.627, + "2011": 0.634, + "2012": 0.642, + "2013": 0.682, + "2014": 0.689, + "2015": 0.692, + "2016": 0.702, + "2017": 0.707, + "2018": 0.718, + "2019": 0.72, + "2020": 0.72, + "2021": 0.72 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr101", + "Region": "Rondonia", + "1990": 0.394, + "1991": 0.403, + "1992": 0.412, + "1993": 0.422, + "1994": 0.431, + "1995": 0.44, + "1996": 0.45, + "1997": 0.46, + "1998": 0.47, + "1999": 0.48, + "2000": 0.49, + "2001": 0.507, + "2002": 0.523, + "2003": 0.515, + "2004": 0.522, + "2005": 0.53, + "2006": 0.535, + "2007": 0.539, + "2008": 0.563, + "2009": 0.57, + "2010": 0.581, + "2011": 0.587, + "2012": 0.593, + "2013": 0.632, + "2014": 0.638, + "2015": 0.641, + "2016": 0.65, + "2017": 0.654, + "2018": 0.664, + "2019": 0.665, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr104", + "Region": "Roraima", + "1990": 0.463, + "1991": 0.474, + "1992": 0.485, + "1993": 0.496, + "1994": 0.507, + "1995": 0.518, + "1996": 0.53, + "1997": 0.542, + "1998": 0.553, + "1999": 0.565, + "2000": 0.577, + "2001": 0.589, + "2002": 0.602, + "2003": 0.586, + "2004": 0.588, + "2005": 0.592, + "2006": 0.591, + "2007": 0.591, + "2008": 0.611, + "2009": 0.614, + "2010": 0.619, + "2011": 0.626, + "2012": 0.633, + "2013": 0.673, + "2014": 0.68, + "2015": 0.683, + "2016": 0.693, + "2017": 0.698, + "2018": 0.708, + "2019": 0.71, + "2020": 0.71, + "2021": 0.71 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr122", + "Region": "Santa Catarina", + "1990": 0.463, + "1991": 0.474, + "1992": 0.486, + "1993": 0.497, + "1994": 0.508, + "1995": 0.52, + "1996": 0.532, + "1997": 0.544, + "1998": 0.556, + "1999": 0.568, + "2000": 0.581, + "2001": 0.593, + "2002": 0.605, + "2003": 0.59, + "2004": 0.592, + "2005": 0.596, + "2006": 0.595, + "2007": 0.595, + "2008": 0.614, + "2009": 0.617, + "2010": 0.623, + "2011": 0.629, + "2012": 0.637, + "2013": 0.676, + "2014": 0.683, + "2015": 0.686, + "2016": 0.696, + "2017": 0.702, + "2018": 0.712, + "2019": 0.714, + "2020": 0.714, + "2021": 0.714 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr120", + "Region": "Sao Paulo", + "1990": 0.483, + "1991": 0.495, + "1992": 0.507, + "1993": 0.519, + "1994": 0.531, + "1995": 0.543, + "1996": 0.556, + "1997": 0.569, + "1998": 0.582, + "1999": 0.595, + "2000": 0.607, + "2001": 0.619, + "2002": 0.63, + "2003": 0.614, + "2004": 0.615, + "2005": 0.617, + "2006": 0.616, + "2007": 0.615, + "2008": 0.633, + "2009": 0.635, + "2010": 0.64, + "2011": 0.647, + "2012": 0.655, + "2013": 0.695, + "2014": 0.702, + "2015": 0.705, + "2016": 0.716, + "2017": 0.721, + "2018": 0.732, + "2019": 0.735, + "2020": 0.735, + "2021": 0.735 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr115", + "Region": "Sergipe", + "1990": 0.435, + "1991": 0.445, + "1992": 0.455, + "1993": 0.466, + "1994": 0.476, + "1995": 0.486, + "1996": 0.496, + "1997": 0.507, + "1998": 0.518, + "1999": 0.529, + "2000": 0.539, + "2001": 0.553, + "2002": 0.567, + "2003": 0.553, + "2004": 0.556, + "2005": 0.561, + "2006": 0.562, + "2007": 0.563, + "2008": 0.584, + "2009": 0.588, + "2010": 0.596, + "2011": 0.602, + "2012": 0.608, + "2013": 0.649, + "2014": 0.655, + "2015": 0.657, + "2016": 0.666, + "2017": 0.671, + "2018": 0.681, + "2019": 0.682, + "2020": 0.682, + "2021": 0.682 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr107", + "Region": "Tocantins", + "1990": 0.431, + "1991": 0.441, + "1992": 0.451, + "1993": 0.461, + "1994": 0.471, + "1995": 0.481, + "1996": 0.491, + "1997": 0.502, + "1998": 0.513, + "1999": 0.523, + "2000": 0.534, + "2001": 0.549, + "2002": 0.563, + "2003": 0.551, + "2004": 0.555, + "2005": 0.561, + "2006": 0.563, + "2007": 0.565, + "2008": 0.587, + "2009": 0.592, + "2010": 0.601, + "2011": 0.607, + "2012": 0.613, + "2013": 0.653, + "2014": 0.66, + "2015": 0.662, + "2016": 0.672, + "2017": 0.676, + "2018": 0.686, + "2019": 0.688, + "2020": 0.688, + "2021": 0.688 + }, + { + "Country": "Brunei Darussalam", + "Continent": "Asia/Pacific", + "ISO_Code": "BRN", + "Level": "National", + "GDLCODE": "BRNt", + "Region": "Total", + "1990": 0.579, + "1991": 0.588, + "1992": 0.598, + "1993": 0.608, + "1994": 0.615, + "1995": 0.621, + "1996": 0.624, + "1997": 0.628, + "1998": 0.632, + "1999": 0.642, + "2000": 0.643, + "2001": 0.642, + "2002": 0.646, + "2003": 0.656, + "2004": 0.667, + "2005": 0.674, + "2006": 0.678, + "2007": 0.676, + "2008": 0.676, + "2009": 0.683, + "2010": 0.683, + "2011": 0.693, + "2012": 0.71, + "2013": 0.712, + "2014": 0.712, + "2015": 0.707, + "2016": 0.707, + "2017": 0.705, + "2018": 0.702, + "2019": 0.697, + "2020": 0.694, + "2021": 0.694 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "National", + "GDLCODE": "BGRt", + "Region": "Total", + "1990": 0.561, + "1991": 0.573, + "1992": 0.578, + "1993": 0.585, + "1994": 0.593, + "1995": 0.613, + "1996": 0.635, + "1997": 0.648, + "1998": 0.66, + "1999": 0.673, + "2000": 0.683, + "2001": 0.693, + "2002": 0.693, + "2003": 0.707, + "2004": 0.715, + "2005": 0.72, + "2006": 0.726, + "2007": 0.74, + "2008": 0.744, + "2009": 0.748, + "2010": 0.758, + "2011": 0.762, + "2012": 0.767, + "2013": 0.781, + "2014": 0.787, + "2015": 0.788, + "2016": 0.781, + "2017": 0.775, + "2018": 0.771, + "2019": 0.765, + "2020": 0.766, + "2021": 0.766 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr102", + "Region": "Severen tsentralen", + "1990": 0.561, + "1991": 0.573, + "1992": 0.577, + "1993": 0.583, + "1994": 0.591, + "1995": 0.61, + "1996": 0.632, + "1997": 0.644, + "1998": 0.656, + "1999": 0.669, + "2000": 0.678, + "2001": 0.681, + "2002": 0.681, + "2003": 0.715, + "2004": 0.726, + "2005": 0.731, + "2006": 0.733, + "2007": 0.75, + "2008": 0.754, + "2009": 0.759, + "2010": 0.765, + "2011": 0.77, + "2012": 0.776, + "2013": 0.79, + "2014": 0.794, + "2015": 0.799, + "2016": 0.786, + "2017": 0.773, + "2018": 0.764, + "2019": 0.755, + "2020": 0.757, + "2021": 0.757 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr103", + "Region": "Severoiztochen", + "1990": 0.551, + "1991": 0.563, + "1992": 0.567, + "1993": 0.573, + "1994": 0.581, + "1995": 0.6, + "1996": 0.621, + "1997": 0.634, + "1998": 0.645, + "1999": 0.658, + "2000": 0.667, + "2001": 0.67, + "2002": 0.67, + "2003": 0.703, + "2004": 0.711, + "2005": 0.717, + "2006": 0.722, + "2007": 0.735, + "2008": 0.74, + "2009": 0.745, + "2010": 0.755, + "2011": 0.759, + "2012": 0.764, + "2013": 0.78, + "2014": 0.782, + "2015": 0.778, + "2016": 0.766, + "2017": 0.756, + "2018": 0.748, + "2019": 0.735, + "2020": 0.737, + "2021": 0.737 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr101", + "Region": "Severozapaden", + "1990": 0.505, + "1991": 0.517, + "1992": 0.522, + "1993": 0.529, + "1994": 0.537, + "1995": 0.554, + "1996": 0.574, + "1997": 0.586, + "1998": 0.598, + "1999": 0.61, + "2000": 0.619, + "2001": 0.623, + "2002": 0.622, + "2003": 0.655, + "2004": 0.661, + "2005": 0.665, + "2006": 0.672, + "2007": 0.683, + "2008": 0.686, + "2009": 0.689, + "2010": 0.699, + "2011": 0.701, + "2012": 0.705, + "2013": 0.717, + "2014": 0.722, + "2015": 0.725, + "2016": 0.716, + "2017": 0.712, + "2018": 0.711, + "2019": 0.702, + "2020": 0.704, + "2021": 0.704 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr104", + "Region": "Yugoiztochen", + "1990": 0.508, + "1991": 0.519, + "1992": 0.524, + "1993": 0.531, + "1994": 0.539, + "1995": 0.556, + "1996": 0.577, + "1997": 0.589, + "1998": 0.6, + "1999": 0.612, + "2000": 0.621, + "2001": 0.624, + "2002": 0.624, + "2003": 0.657, + "2004": 0.662, + "2005": 0.667, + "2006": 0.671, + "2007": 0.682, + "2008": 0.683, + "2009": 0.687, + "2010": 0.697, + "2011": 0.703, + "2012": 0.708, + "2013": 0.72, + "2014": 0.725, + "2015": 0.724, + "2016": 0.719, + "2017": 0.712, + "2018": 0.705, + "2019": 0.698, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr105", + "Region": "Yugozapaden", + "1990": 0.593, + "1991": 0.606, + "1992": 0.61, + "1993": 0.617, + "1994": 0.625, + "1995": 0.645, + "1996": 0.669, + "1997": 0.682, + "1998": 0.695, + "1999": 0.708, + "2000": 0.718, + "2001": 0.727, + "2002": 0.728, + "2003": 0.765, + "2004": 0.775, + "2005": 0.781, + "2006": 0.787, + "2007": 0.803, + "2008": 0.808, + "2009": 0.813, + "2010": 0.823, + "2011": 0.825, + "2012": 0.83, + "2013": 0.845, + "2014": 0.856, + "2015": 0.858, + "2016": 0.856, + "2017": 0.852, + "2018": 0.852, + "2019": 0.849, + "2020": 0.851, + "2021": 0.851 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr106", + "Region": "Yuzhen tsentralen", + "1990": 0.528, + "1991": 0.54, + "1992": 0.544, + "1993": 0.55, + "1994": 0.558, + "1995": 0.576, + "1996": 0.597, + "1997": 0.609, + "1998": 0.62, + "1999": 0.632, + "2000": 0.641, + "2001": 0.644, + "2002": 0.644, + "2003": 0.677, + "2004": 0.683, + "2005": 0.686, + "2006": 0.695, + "2007": 0.709, + "2008": 0.714, + "2009": 0.719, + "2010": 0.729, + "2011": 0.732, + "2012": 0.737, + "2013": 0.751, + "2014": 0.756, + "2015": 0.758, + "2016": 0.75, + "2017": 0.747, + "2018": 0.741, + "2019": 0.737, + "2020": 0.739, + "2021": 0.739 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "National", + "GDLCODE": "BFAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.141, + "2001": 0.143, + "2002": 0.148, + "2003": 0.152, + "2004": 0.163, + "2005": 0.173, + "2006": 0.181, + "2007": 0.168, + "2008": 0.185, + "2009": 0.2, + "2010": 0.215, + "2011": 0.231, + "2012": 0.244, + "2013": 0.254, + "2014": 0.261, + "2015": 0.278, + "2016": 0.29, + "2017": 0.306, + "2018": 0.322, + "2019": 0.328, + "2020": 0.324, + "2021": 0.324 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr101", + "Region": "Boucle de Mouhoun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.086, + "2001": 0.094, + "2002": 0.103, + "2003": 0.111, + "2004": 0.122, + "2005": 0.132, + "2006": 0.141, + "2007": 0.138, + "2008": 0.153, + "2009": 0.166, + "2010": 0.18, + "2011": 0.193, + "2012": 0.203, + "2013": 0.211, + "2014": 0.216, + "2015": 0.229, + "2016": 0.239, + "2017": 0.251, + "2018": 0.264, + "2019": 0.267, + "2020": 0.264, + "2021": 0.264 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr102", + "Region": "Cascades", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.126, + "2001": 0.139, + "2002": 0.153, + "2003": 0.167, + "2004": 0.178, + "2005": 0.188, + "2006": 0.196, + "2007": 0.185, + "2008": 0.202, + "2009": 0.218, + "2010": 0.234, + "2011": 0.251, + "2012": 0.264, + "2013": 0.275, + "2014": 0.282, + "2015": 0.299, + "2016": 0.312, + "2017": 0.329, + "2018": 0.345, + "2019": 0.351, + "2020": 0.347, + "2021": 0.347 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr103", + "Region": "Centre (incl Ouagadougou)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.443, + "2001": 0.435, + "2002": 0.434, + "2003": 0.435, + "2004": 0.438, + "2005": 0.442, + "2006": 0.44, + "2007": 0.36, + "2008": 0.382, + "2009": 0.401, + "2010": 0.42, + "2011": 0.453, + "2012": 0.48, + "2013": 0.503, + "2014": 0.522, + "2015": 0.558, + "2016": 0.588, + "2017": 0.624, + "2018": 0.659, + "2019": 0.68, + "2020": 0.674, + "2021": 0.674 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr104", + "Region": "Centre-Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.146, + "2001": 0.142, + "2002": 0.141, + "2003": 0.14, + "2004": 0.144, + "2005": 0.149, + "2006": 0.152, + "2007": 0.145, + "2008": 0.155, + "2009": 0.163, + "2010": 0.172, + "2011": 0.184, + "2012": 0.193, + "2013": 0.2, + "2014": 0.205, + "2015": 0.217, + "2016": 0.226, + "2017": 0.237, + "2018": 0.248, + "2019": 0.251, + "2020": 0.248, + "2021": 0.248 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr105", + "Region": "Centre-Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.1, + "2001": 0.097, + "2002": 0.096, + "2003": 0.094, + "2004": 0.103, + "2005": 0.112, + "2006": 0.119, + "2007": 0.119, + "2008": 0.131, + "2009": 0.142, + "2010": 0.153, + "2011": 0.164, + "2012": 0.172, + "2013": 0.179, + "2014": 0.184, + "2015": 0.194, + "2016": 0.202, + "2017": 0.212, + "2018": 0.222, + "2019": 0.225, + "2020": 0.222, + "2021": 0.222 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr106", + "Region": "Centre-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.137, + "2001": 0.132, + "2002": 0.129, + "2003": 0.127, + "2004": 0.143, + "2005": 0.158, + "2006": 0.171, + "2007": 0.169, + "2008": 0.19, + "2009": 0.209, + "2010": 0.228, + "2011": 0.244, + "2012": 0.256, + "2013": 0.267, + "2014": 0.274, + "2015": 0.29, + "2016": 0.303, + "2017": 0.318, + "2018": 0.334, + "2019": 0.339, + "2020": 0.335, + "2021": 0.335 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr107", + "Region": "Centre-Sud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.098, + "2001": 0.103, + "2002": 0.11, + "2003": 0.117, + "2004": 0.134, + "2005": 0.15, + "2006": 0.164, + "2007": 0.17, + "2008": 0.191, + "2009": 0.21, + "2010": 0.23, + "2011": 0.247, + "2012": 0.258, + "2013": 0.268, + "2014": 0.275, + "2015": 0.29, + "2016": 0.302, + "2017": 0.317, + "2018": 0.331, + "2019": 0.335, + "2020": 0.331, + "2021": 0.331 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr108", + "Region": "Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.044, + "2001": 0.047, + "2002": 0.05, + "2003": 0.053, + "2004": 0.064, + "2005": 0.075, + "2006": 0.085, + "2007": 0.089, + "2008": 0.103, + "2009": 0.116, + "2010": 0.129, + "2011": 0.138, + "2012": 0.144, + "2013": 0.15, + "2014": 0.154, + "2015": 0.162, + "2016": 0.169, + "2017": 0.177, + "2018": 0.185, + "2019": 0.187, + "2020": 0.185, + "2021": 0.185 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr109", + "Region": "Hauts Bassins", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.199, + "2001": 0.189, + "2002": 0.183, + "2003": 0.177, + "2004": 0.191, + "2005": 0.206, + "2006": 0.218, + "2007": 0.2, + "2008": 0.222, + "2009": 0.242, + "2010": 0.263, + "2011": 0.282, + "2012": 0.298, + "2013": 0.311, + "2014": 0.321, + "2015": 0.341, + "2016": 0.358, + "2017": 0.378, + "2018": 0.397, + "2019": 0.406, + "2020": 0.403, + "2021": 0.403 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr110", + "Region": "Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.096, + "2001": 0.096, + "2002": 0.098, + "2003": 0.1, + "2004": 0.116, + "2005": 0.132, + "2006": 0.145, + "2007": 0.15, + "2008": 0.171, + "2009": 0.19, + "2010": 0.209, + "2011": 0.224, + "2012": 0.234, + "2013": 0.244, + "2014": 0.249, + "2015": 0.263, + "2016": 0.274, + "2017": 0.288, + "2018": 0.301, + "2019": 0.304, + "2020": 0.301, + "2021": 0.301 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr111", + "Region": "Plateau Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.073, + "2001": 0.083, + "2002": 0.094, + "2003": 0.106, + "2004": 0.12, + "2005": 0.134, + "2006": 0.146, + "2007": 0.152, + "2008": 0.17, + "2009": 0.186, + "2010": 0.203, + "2011": 0.218, + "2012": 0.228, + "2013": 0.237, + "2014": 0.242, + "2015": 0.256, + "2016": 0.266, + "2017": 0.279, + "2018": 0.292, + "2019": 0.295, + "2020": 0.292, + "2021": 0.292 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr112", + "Region": "Sahel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.04, + "2001": 0.047, + "2002": 0.054, + "2003": 0.061, + "2004": 0.064, + "2005": 0.067, + "2006": 0.069, + "2007": 0.067, + "2008": 0.072, + "2009": 0.076, + "2010": 0.081, + "2011": 0.086, + "2012": 0.091, + "2013": 0.094, + "2014": 0.096, + "2015": 0.102, + "2016": 0.106, + "2017": 0.111, + "2018": 0.117, + "2019": 0.118, + "2020": 0.117, + "2021": 0.117 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr113", + "Region": "Sud-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.089, + "2001": 0.092, + "2002": 0.097, + "2003": 0.102, + "2004": 0.109, + "2005": 0.116, + "2006": 0.122, + "2007": 0.117, + "2008": 0.128, + "2009": 0.138, + "2010": 0.148, + "2011": 0.159, + "2012": 0.167, + "2013": 0.174, + "2014": 0.179, + "2015": 0.189, + "2016": 0.197, + "2017": 0.208, + "2018": 0.218, + "2019": 0.222, + "2020": 0.219, + "2021": 0.219 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "National", + "GDLCODE": "BDIt", + "Region": "Total", + "1990": 0.174, + "1991": 0.18, + "1992": 0.177, + "1993": 0.187, + "1994": 0.188, + "1995": 0.189, + "1996": 0.189, + "1997": 0.19, + "1998": 0.191, + "1999": 0.192, + "2000": 0.192, + "2001": 0.193, + "2002": 0.205, + "2003": 0.219, + "2004": 0.233, + "2005": 0.244, + "2006": 0.284, + "2007": 0.305, + "2008": 0.328, + "2009": 0.346, + "2010": 0.361, + "2011": 0.367, + "2012": 0.373, + "2013": 0.377, + "2014": 0.384, + "2015": 0.396, + "2016": 0.404, + "2017": 0.397, + "2018": 0.398, + "2019": 0.402, + "2020": 0.402, + "2021": 0.402 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr103", + "Region": "East (Cankuzo, Rutana, Ruyigi )", + "1990": 0.15, + "1991": 0.156, + "1992": 0.153, + "1993": 0.162, + "1994": 0.162, + "1995": 0.163, + "1996": 0.163, + "1997": 0.164, + "1998": 0.164, + "1999": 0.165, + "2000": 0.166, + "2001": 0.166, + "2002": 0.176, + "2003": 0.189, + "2004": 0.201, + "2005": 0.21, + "2006": 0.248, + "2007": 0.268, + "2008": 0.291, + "2009": 0.31, + "2010": 0.326, + "2011": 0.33, + "2012": 0.335, + "2013": 0.337, + "2014": 0.342, + "2015": 0.352, + "2016": 0.357, + "2017": 0.35, + "2018": 0.351, + "2019": 0.355, + "2020": 0.355, + "2021": 0.355 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr105", + "Region": "Middle (Gitega, Karuzi, Muramvya, Mwaro)", + "1990": 0.184, + "1991": 0.19, + "1992": 0.188, + "1993": 0.198, + "1994": 0.199, + "1995": 0.2, + "1996": 0.201, + "1997": 0.202, + "1998": 0.203, + "1999": 0.204, + "2000": 0.205, + "2001": 0.206, + "2002": 0.218, + "2003": 0.233, + "2004": 0.247, + "2005": 0.258, + "2006": 0.295, + "2007": 0.312, + "2008": 0.329, + "2009": 0.342, + "2010": 0.35, + "2011": 0.359, + "2012": 0.368, + "2013": 0.375, + "2014": 0.385, + "2015": 0.4, + "2016": 0.409, + "2017": 0.404, + "2018": 0.404, + "2019": 0.407, + "2020": 0.407, + "2021": 0.407 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr101", + "Region": "North (Kayanza, Kirundo, Muyinga, Ngozi)", + "1990": 0.154, + "1991": 0.16, + "1992": 0.157, + "1993": 0.166, + "1994": 0.167, + "1995": 0.168, + "1996": 0.169, + "1997": 0.169, + "1998": 0.17, + "1999": 0.171, + "2000": 0.172, + "2001": 0.173, + "2002": 0.183, + "2003": 0.195, + "2004": 0.208, + "2005": 0.217, + "2006": 0.252, + "2007": 0.27, + "2008": 0.29, + "2009": 0.306, + "2010": 0.318, + "2011": 0.321, + "2012": 0.323, + "2013": 0.324, + "2014": 0.328, + "2015": 0.335, + "2016": 0.337, + "2017": 0.328, + "2018": 0.328, + "2019": 0.33, + "2020": 0.33, + "2021": 0.33 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr102", + "Region": "South (Bururi, Makamba)", + "1990": 0.175, + "1991": 0.181, + "1992": 0.177, + "1993": 0.187, + "1994": 0.188, + "1995": 0.188, + "1996": 0.188, + "1997": 0.188, + "1998": 0.188, + "1999": 0.188, + "2000": 0.189, + "2001": 0.189, + "2002": 0.201, + "2003": 0.216, + "2004": 0.231, + "2005": 0.242, + "2006": 0.292, + "2007": 0.32, + "2008": 0.351, + "2009": 0.38, + "2010": 0.405, + "2011": 0.412, + "2012": 0.419, + "2013": 0.425, + "2014": 0.432, + "2015": 0.445, + "2016": 0.452, + "2017": 0.443, + "2018": 0.444, + "2019": 0.448, + "2020": 0.448, + "2021": 0.448 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr104", + "Region": "West (Bubanza, Buja Rural, Cibitoke, Mairie de Bujumbura)", + "1990": 0.201, + "1991": 0.208, + "1992": 0.204, + "1993": 0.215, + "1994": 0.216, + "1995": 0.217, + "1996": 0.218, + "1997": 0.219, + "1998": 0.219, + "1999": 0.22, + "2000": 0.221, + "2001": 0.222, + "2002": 0.236, + "2003": 0.252, + "2004": 0.268, + "2005": 0.28, + "2006": 0.325, + "2007": 0.348, + "2008": 0.373, + "2009": 0.392, + "2010": 0.408, + "2011": 0.416, + "2012": 0.424, + "2013": 0.43, + "2014": 0.439, + "2015": 0.46, + "2016": 0.474, + "2017": 0.473, + "2018": 0.476, + "2019": 0.483, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "National", + "GDLCODE": "KHMt", + "Region": "Total", + "1990": 0.285, + "1991": 0.288, + "1992": 0.292, + "1993": 0.295, + "1994": 0.299, + "1995": 0.302, + "1996": 0.305, + "1997": 0.309, + "1998": 0.312, + "1999": 0.316, + "2000": 0.319, + "2001": 0.338, + "2002": 0.37, + "2003": 0.383, + "2004": 0.393, + "2005": 0.4, + "2006": 0.409, + "2007": 0.418, + "2008": 0.422, + "2009": 0.429, + "2010": 0.435, + "2011": 0.441, + "2012": 0.447, + "2013": 0.453, + "2014": 0.459, + "2015": 0.465, + "2016": 0.472, + "2017": 0.476, + "2018": 0.48, + "2019": 0.488, + "2020": 0.488, + "2021": 0.488 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr101", + "Region": "Banteay Mean Chey", + "1990": 0.259, + "1991": 0.262, + "1992": 0.265, + "1993": 0.268, + "1994": 0.271, + "1995": 0.274, + "1996": 0.277, + "1997": 0.28, + "1998": 0.283, + "1999": 0.286, + "2000": 0.289, + "2001": 0.302, + "2002": 0.326, + "2003": 0.333, + "2004": 0.337, + "2005": 0.338, + "2006": 0.349, + "2007": 0.359, + "2008": 0.366, + "2009": 0.375, + "2010": 0.384, + "2011": 0.394, + "2012": 0.405, + "2013": 0.416, + "2014": 0.427, + "2015": 0.433, + "2016": 0.439, + "2017": 0.442, + "2018": 0.446, + "2019": 0.453, + "2020": 0.453, + "2021": 0.453 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr113", + "Region": "Bat Dambang-Krong Pailin", + "1990": 0.301, + "1991": 0.305, + "1992": 0.309, + "1993": 0.312, + "1994": 0.316, + "1995": 0.32, + "1996": 0.324, + "1997": 0.327, + "1998": 0.331, + "1999": 0.335, + "2000": 0.339, + "2001": 0.352, + "2002": 0.378, + "2003": 0.385, + "2004": 0.39, + "2005": 0.391, + "2006": 0.401, + "2007": 0.411, + "2008": 0.417, + "2009": 0.425, + "2010": 0.433, + "2011": 0.444, + "2012": 0.457, + "2013": 0.469, + "2014": 0.481, + "2015": 0.488, + "2016": 0.495, + "2017": 0.499, + "2018": 0.504, + "2019": 0.512, + "2020": 0.512, + "2021": 0.512 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr102", + "Region": "Kampong Cham (incl Tboung Khmum)", + "1990": 0.267, + "1991": 0.27, + "1992": 0.273, + "1993": 0.277, + "1994": 0.28, + "1995": 0.283, + "1996": 0.286, + "1997": 0.289, + "1998": 0.292, + "1999": 0.295, + "2000": 0.298, + "2001": 0.315, + "2002": 0.345, + "2003": 0.356, + "2004": 0.364, + "2005": 0.37, + "2006": 0.375, + "2007": 0.381, + "2008": 0.382, + "2009": 0.386, + "2010": 0.389, + "2011": 0.397, + "2012": 0.405, + "2013": 0.413, + "2014": 0.422, + "2015": 0.427, + "2016": 0.433, + "2017": 0.436, + "2018": 0.44, + "2019": 0.447, + "2020": 0.447, + "2021": 0.447 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr103", + "Region": "Kampong Chhnang", + "1990": 0.245, + "1991": 0.247, + "1992": 0.25, + "1993": 0.253, + "1994": 0.256, + "1995": 0.259, + "1996": 0.262, + "1997": 0.265, + "1998": 0.268, + "1999": 0.271, + "2000": 0.274, + "2001": 0.303, + "2002": 0.345, + "2003": 0.37, + "2004": 0.392, + "2005": 0.41, + "2006": 0.41, + "2007": 0.41, + "2008": 0.406, + "2009": 0.404, + "2010": 0.402, + "2011": 0.415, + "2012": 0.429, + "2013": 0.443, + "2014": 0.457, + "2015": 0.463, + "2016": 0.47, + "2017": 0.474, + "2018": 0.477, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr104", + "Region": "Kampong Spueu", + "1990": 0.245, + "1991": 0.248, + "1992": 0.251, + "1993": 0.254, + "1994": 0.257, + "1995": 0.259, + "1996": 0.262, + "1997": 0.265, + "1998": 0.268, + "1999": 0.271, + "2000": 0.274, + "2001": 0.3, + "2002": 0.34, + "2003": 0.361, + "2004": 0.38, + "2005": 0.395, + "2006": 0.408, + "2007": 0.42, + "2008": 0.428, + "2009": 0.438, + "2010": 0.448, + "2011": 0.446, + "2012": 0.444, + "2013": 0.441, + "2014": 0.438, + "2015": 0.444, + "2016": 0.45, + "2017": 0.455, + "2018": 0.459, + "2019": 0.466, + "2020": 0.466, + "2021": 0.466 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr105", + "Region": "Kampong Thum", + "1990": 0.253, + "1991": 0.256, + "1992": 0.259, + "1993": 0.262, + "1994": 0.265, + "1995": 0.268, + "1996": 0.271, + "1997": 0.274, + "1998": 0.277, + "1999": 0.28, + "2000": 0.283, + "2001": 0.309, + "2002": 0.348, + "2003": 0.369, + "2004": 0.388, + "2005": 0.402, + "2006": 0.401, + "2007": 0.399, + "2008": 0.393, + "2009": 0.389, + "2010": 0.385, + "2011": 0.394, + "2012": 0.404, + "2013": 0.414, + "2014": 0.423, + "2015": 0.429, + "2016": 0.435, + "2017": 0.438, + "2018": 0.442, + "2019": 0.449, + "2020": 0.449, + "2021": 0.449 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr114", + "Region": "Kampot-Krong Kaeb-Krong Preah Sihanouk", + "1990": 0.301, + "1991": 0.304, + "1992": 0.308, + "1993": 0.311, + "1994": 0.315, + "1995": 0.319, + "1996": 0.322, + "1997": 0.326, + "1998": 0.329, + "1999": 0.333, + "2000": 0.337, + "2001": 0.355, + "2002": 0.388, + "2003": 0.401, + "2004": 0.41, + "2005": 0.416, + "2006": 0.424, + "2007": 0.432, + "2008": 0.435, + "2009": 0.44, + "2010": 0.445, + "2011": 0.453, + "2012": 0.462, + "2013": 0.47, + "2014": 0.478, + "2015": 0.485, + "2016": 0.492, + "2017": 0.496, + "2018": 0.5, + "2019": 0.508, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr106", + "Region": "Kandal", + "1990": 0.289, + "1991": 0.292, + "1992": 0.296, + "1993": 0.299, + "1994": 0.303, + "1995": 0.306, + "1996": 0.31, + "1997": 0.313, + "1998": 0.317, + "1999": 0.32, + "2000": 0.324, + "2001": 0.346, + "2002": 0.381, + "2003": 0.397, + "2004": 0.41, + "2005": 0.42, + "2006": 0.427, + "2007": 0.434, + "2008": 0.437, + "2009": 0.442, + "2010": 0.447, + "2011": 0.448, + "2012": 0.448, + "2013": 0.449, + "2014": 0.449, + "2015": 0.455, + "2016": 0.462, + "2017": 0.466, + "2018": 0.471, + "2019": 0.478, + "2020": 0.478, + "2021": 0.478 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr107", + "Region": "Kaoh Kong", + "1990": 0.234, + "1991": 0.237, + "1992": 0.24, + "1993": 0.242, + "1994": 0.245, + "1995": 0.248, + "1996": 0.251, + "1997": 0.254, + "1998": 0.257, + "1999": 0.26, + "2000": 0.263, + "2001": 0.276, + "2002": 0.299, + "2003": 0.307, + "2004": 0.313, + "2005": 0.316, + "2006": 0.334, + "2007": 0.353, + "2008": 0.367, + "2009": 0.384, + "2010": 0.4, + "2011": 0.424, + "2012": 0.448, + "2013": 0.473, + "2014": 0.499, + "2015": 0.505, + "2016": 0.513, + "2017": 0.517, + "2018": 0.521, + "2019": 0.529, + "2020": 0.529, + "2021": 0.529 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr116", + "Region": "Mondol Kiri-Rotanak Kiri", + "1990": 0.141, + "1991": 0.142, + "1992": 0.144, + "1993": 0.146, + "1994": 0.147, + "1995": 0.149, + "1996": 0.15, + "1997": 0.152, + "1998": 0.154, + "1999": 0.155, + "2000": 0.157, + "2001": 0.166, + "2002": 0.181, + "2003": 0.186, + "2004": 0.19, + "2005": 0.192, + "2006": 0.221, + "2007": 0.25, + "2008": 0.276, + "2009": 0.303, + "2010": 0.329, + "2011": 0.337, + "2012": 0.345, + "2013": 0.353, + "2014": 0.36, + "2015": 0.365, + "2016": 0.37, + "2017": 0.374, + "2018": 0.377, + "2019": 0.383, + "2020": 0.383, + "2021": 0.383 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr108", + "Region": "Phnom Penh", + "1990": 0.433, + "1991": 0.438, + "1992": 0.444, + "1993": 0.449, + "1994": 0.455, + "1995": 0.46, + "1996": 0.466, + "1997": 0.472, + "1998": 0.477, + "1999": 0.483, + "2000": 0.489, + "2001": 0.5, + "2002": 0.527, + "2003": 0.529, + "2004": 0.528, + "2005": 0.523, + "2006": 0.546, + "2007": 0.569, + "2008": 0.587, + "2009": 0.608, + "2010": 0.628, + "2011": 0.628, + "2012": 0.627, + "2013": 0.626, + "2014": 0.625, + "2015": 0.634, + "2016": 0.644, + "2017": 0.651, + "2018": 0.658, + "2019": 0.669, + "2020": 0.669, + "2021": 0.669 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr110", + "Region": "Pousat", + "1990": 0.243, + "1991": 0.245, + "1992": 0.248, + "1993": 0.251, + "1994": 0.254, + "1995": 0.257, + "1996": 0.26, + "1997": 0.263, + "1998": 0.266, + "1999": 0.269, + "2000": 0.272, + "2001": 0.295, + "2002": 0.331, + "2003": 0.35, + "2004": 0.367, + "2005": 0.38, + "2006": 0.387, + "2007": 0.395, + "2008": 0.399, + "2009": 0.405, + "2010": 0.411, + "2011": 0.411, + "2012": 0.412, + "2013": 0.413, + "2014": 0.413, + "2015": 0.419, + "2016": 0.425, + "2017": 0.428, + "2018": 0.432, + "2019": 0.439, + "2020": 0.439, + "2021": 0.439 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr115", + "Region": "Preah Vihear-Stueng Traeng-Kracheh", + "1990": 0.251, + "1991": 0.254, + "1992": 0.257, + "1993": 0.26, + "1994": 0.263, + "1995": 0.266, + "1996": 0.269, + "1997": 0.272, + "1998": 0.275, + "1999": 0.278, + "2000": 0.281, + "2001": 0.298, + "2002": 0.325, + "2003": 0.337, + "2004": 0.345, + "2005": 0.351, + "2006": 0.358, + "2007": 0.365, + "2008": 0.368, + "2009": 0.373, + "2010": 0.378, + "2011": 0.379, + "2012": 0.38, + "2013": 0.381, + "2014": 0.382, + "2015": 0.387, + "2016": 0.393, + "2017": 0.396, + "2018": 0.399, + "2019": 0.405, + "2020": 0.405, + "2021": 0.405 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr109", + "Region": "Prey Veaeng", + "1990": 0.272, + "1991": 0.275, + "1992": 0.278, + "1993": 0.281, + "1994": 0.284, + "1995": 0.287, + "1996": 0.291, + "1997": 0.294, + "1998": 0.297, + "1999": 0.3, + "2000": 0.303, + "2001": 0.327, + "2002": 0.365, + "2003": 0.383, + "2004": 0.398, + "2005": 0.41, + "2006": 0.412, + "2007": 0.413, + "2008": 0.41, + "2009": 0.41, + "2010": 0.409, + "2011": 0.419, + "2012": 0.43, + "2013": 0.441, + "2014": 0.451, + "2015": 0.457, + "2016": 0.464, + "2017": 0.468, + "2018": 0.471, + "2019": 0.479, + "2020": 0.479, + "2021": 0.479 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr117", + "Region": "Siem Reab-Otdar Mean Chey", + "1990": 0.216, + "1991": 0.219, + "1992": 0.221, + "1993": 0.224, + "1994": 0.226, + "1995": 0.229, + "1996": 0.231, + "1997": 0.234, + "1998": 0.236, + "1999": 0.239, + "2000": 0.242, + "2001": 0.259, + "2002": 0.287, + "2003": 0.3, + "2004": 0.311, + "2005": 0.319, + "2006": 0.334, + "2007": 0.35, + "2008": 0.362, + "2009": 0.375, + "2010": 0.389, + "2011": 0.39, + "2012": 0.392, + "2013": 0.394, + "2014": 0.395, + "2015": 0.4, + "2016": 0.406, + "2017": 0.409, + "2018": 0.412, + "2019": 0.419, + "2020": 0.419, + "2021": 0.419 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr111", + "Region": "Svay Rieng", + "1990": 0.286, + "1991": 0.289, + "1992": 0.293, + "1993": 0.296, + "1994": 0.3, + "1995": 0.303, + "1996": 0.306, + "1997": 0.31, + "1998": 0.313, + "1999": 0.317, + "2000": 0.32, + "2001": 0.342, + "2002": 0.379, + "2003": 0.395, + "2004": 0.409, + "2005": 0.419, + "2006": 0.421, + "2007": 0.423, + "2008": 0.42, + "2009": 0.42, + "2010": 0.42, + "2011": 0.435, + "2012": 0.451, + "2013": 0.467, + "2014": 0.483, + "2015": 0.49, + "2016": 0.497, + "2017": 0.501, + "2018": 0.505, + "2019": 0.513, + "2020": 0.513, + "2021": 0.513 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr112", + "Region": "Takaev", + "1990": 0.318, + "1991": 0.322, + "1992": 0.326, + "1993": 0.329, + "1994": 0.333, + "1995": 0.337, + "1996": 0.341, + "1997": 0.345, + "1998": 0.348, + "1999": 0.352, + "2000": 0.356, + "2001": 0.379, + "2002": 0.417, + "2003": 0.433, + "2004": 0.445, + "2005": 0.454, + "2006": 0.454, + "2007": 0.453, + "2008": 0.448, + "2009": 0.445, + "2010": 0.442, + "2011": 0.458, + "2012": 0.473, + "2013": 0.489, + "2014": 0.506, + "2015": 0.512, + "2016": 0.52, + "2017": 0.524, + "2018": 0.528, + "2019": 0.536, + "2020": 0.536, + "2021": 0.536 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "National", + "GDLCODE": "CMRt", + "Region": "Total", + "1990": 0.327, + "1991": 0.33, + "1992": 0.33, + "1993": 0.331, + "1994": 0.331, + "1995": 0.331, + "1996": 0.332, + "1997": 0.332, + "1998": 0.332, + "1999": 0.333, + "2000": 0.343, + "2001": 0.382, + "2002": 0.378, + "2003": 0.386, + "2004": 0.391, + "2005": 0.393, + "2006": 0.39, + "2007": 0.414, + "2008": 0.429, + "2009": 0.445, + "2010": 0.458, + "2011": 0.473, + "2012": 0.494, + "2013": 0.508, + "2014": 0.522, + "2015": 0.535, + "2016": 0.536, + "2017": 0.547, + "2018": 0.558, + "2019": 0.569, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr101", + "Region": "Adamaoua", + "1990": 0.23, + "1991": 0.231, + "1992": 0.229, + "1993": 0.228, + "1994": 0.227, + "1995": 0.226, + "1996": 0.225, + "1997": 0.223, + "1998": 0.222, + "1999": 0.226, + "2000": 0.238, + "2001": 0.273, + "2002": 0.273, + "2003": 0.282, + "2004": 0.29, + "2005": 0.292, + "2006": 0.29, + "2007": 0.311, + "2008": 0.324, + "2009": 0.338, + "2010": 0.35, + "2011": 0.364, + "2012": 0.376, + "2013": 0.382, + "2014": 0.387, + "2015": 0.392, + "2016": 0.387, + "2017": 0.391, + "2018": 0.394, + "2019": 0.403, + "2020": 0.403, + "2021": 0.403 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr102", + "Region": "Centre (incl Yaounde)", + "1990": 0.42, + "1991": 0.424, + "1992": 0.425, + "1993": 0.426, + "1994": 0.428, + "1995": 0.429, + "1996": 0.43, + "1997": 0.431, + "1998": 0.432, + "1999": 0.432, + "2000": 0.444, + "2001": 0.491, + "2002": 0.485, + "2003": 0.494, + "2004": 0.499, + "2005": 0.505, + "2006": 0.504, + "2007": 0.535, + "2008": 0.555, + "2009": 0.577, + "2010": 0.595, + "2011": 0.616, + "2012": 0.639, + "2013": 0.653, + "2014": 0.667, + "2015": 0.681, + "2016": 0.679, + "2017": 0.689, + "2018": 0.699, + "2019": 0.713, + "2020": 0.713, + "2021": 0.713 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr103", + "Region": "Est", + "1990": 0.316, + "1991": 0.318, + "1992": 0.318, + "1993": 0.318, + "1994": 0.318, + "1995": 0.318, + "1996": 0.318, + "1997": 0.317, + "1998": 0.317, + "1999": 0.319, + "2000": 0.331, + "2001": 0.371, + "2002": 0.369, + "2003": 0.378, + "2004": 0.384, + "2005": 0.384, + "2006": 0.38, + "2007": 0.402, + "2008": 0.416, + "2009": 0.43, + "2010": 0.441, + "2011": 0.454, + "2012": 0.474, + "2013": 0.487, + "2014": 0.499, + "2015": 0.511, + "2016": 0.511, + "2017": 0.521, + "2018": 0.531, + "2019": 0.542, + "2020": 0.542, + "2021": 0.542 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr104", + "Region": "Extreme Nord", + "1990": 0.123, + "1991": 0.123, + "1992": 0.123, + "1993": 0.122, + "1994": 0.121, + "1995": 0.12, + "1996": 0.119, + "1997": 0.119, + "1998": 0.118, + "1999": 0.127, + "2000": 0.14, + "2001": 0.17, + "2002": 0.176, + "2003": 0.189, + "2004": 0.199, + "2005": 0.199, + "2006": 0.195, + "2007": 0.21, + "2008": 0.218, + "2009": 0.227, + "2010": 0.234, + "2011": 0.241, + "2012": 0.264, + "2013": 0.282, + "2014": 0.3, + "2015": 0.318, + "2016": 0.328, + "2017": 0.346, + "2018": 0.364, + "2019": 0.373, + "2020": 0.373, + "2021": 0.373 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr105", + "Region": "Littoral (incl Douala)", + "1990": 0.468, + "1991": 0.472, + "1992": 0.474, + "1993": 0.476, + "1994": 0.478, + "1995": 0.479, + "1996": 0.481, + "1997": 0.483, + "1998": 0.485, + "1999": 0.478, + "2000": 0.484, + "2001": 0.526, + "2002": 0.514, + "2003": 0.517, + "2004": 0.516, + "2005": 0.519, + "2006": 0.514, + "2007": 0.542, + "2008": 0.559, + "2009": 0.577, + "2010": 0.591, + "2011": 0.609, + "2012": 0.637, + "2013": 0.655, + "2014": 0.674, + "2015": 0.693, + "2016": 0.696, + "2017": 0.711, + "2018": 0.726, + "2019": 0.741, + "2020": 0.741, + "2021": 0.741 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr106", + "Region": "Nord", + "1990": 0.181, + "1991": 0.181, + "1992": 0.18, + "1993": 0.179, + "1994": 0.178, + "1995": 0.177, + "1996": 0.176, + "1997": 0.174, + "1998": 0.173, + "1999": 0.173, + "2000": 0.179, + "2001": 0.204, + "2002": 0.201, + "2003": 0.206, + "2004": 0.208, + "2005": 0.215, + "2006": 0.219, + "2007": 0.242, + "2008": 0.258, + "2009": 0.276, + "2010": 0.292, + "2011": 0.309, + "2012": 0.325, + "2013": 0.335, + "2014": 0.344, + "2015": 0.354, + "2016": 0.354, + "2017": 0.363, + "2018": 0.371, + "2019": 0.38, + "2020": 0.38, + "2021": 0.38 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr107", + "Region": "Nord Ouest", + "1990": 0.357, + "1991": 0.36, + "1992": 0.36, + "1993": 0.36, + "1994": 0.36, + "1995": 0.36, + "1996": 0.361, + "1997": 0.361, + "1998": 0.361, + "1999": 0.36, + "2000": 0.37, + "2001": 0.411, + "2002": 0.405, + "2003": 0.412, + "2004": 0.416, + "2005": 0.419, + "2006": 0.415, + "2007": 0.442, + "2008": 0.459, + "2009": 0.478, + "2010": 0.493, + "2011": 0.51, + "2012": 0.515, + "2013": 0.509, + "2014": 0.503, + "2015": 0.496, + "2016": 0.476, + "2017": 0.464, + "2018": 0.452, + "2019": 0.461, + "2020": 0.461, + "2021": 0.461 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr108", + "Region": "Ouest", + "1990": 0.386, + "1991": 0.388, + "1992": 0.387, + "1993": 0.387, + "1994": 0.386, + "1995": 0.385, + "1996": 0.385, + "1997": 0.384, + "1998": 0.383, + "1999": 0.38, + "2000": 0.389, + "2001": 0.433, + "2002": 0.425, + "2003": 0.43, + "2004": 0.433, + "2005": 0.437, + "2006": 0.435, + "2007": 0.465, + "2008": 0.484, + "2009": 0.505, + "2010": 0.522, + "2011": 0.541, + "2012": 0.566, + "2013": 0.581, + "2014": 0.596, + "2015": 0.611, + "2016": 0.611, + "2017": 0.624, + "2018": 0.636, + "2019": 0.65, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr109", + "Region": "Sud", + "1990": 0.397, + "1991": 0.4, + "1992": 0.4, + "1993": 0.401, + "1994": 0.401, + "1995": 0.401, + "1996": 0.401, + "1997": 0.401, + "1998": 0.402, + "1999": 0.403, + "2000": 0.416, + "2001": 0.463, + "2002": 0.459, + "2003": 0.469, + "2004": 0.475, + "2005": 0.478, + "2006": 0.474, + "2007": 0.502, + "2008": 0.519, + "2009": 0.536, + "2010": 0.551, + "2011": 0.568, + "2012": 0.592, + "2013": 0.608, + "2014": 0.623, + "2015": 0.638, + "2016": 0.638, + "2017": 0.649, + "2018": 0.661, + "2019": 0.674, + "2020": 0.674, + "2021": 0.674 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr110", + "Region": "Sud Ouest", + "1990": 0.403, + "1991": 0.407, + "1992": 0.409, + "1993": 0.411, + "1994": 0.413, + "1995": 0.415, + "1996": 0.417, + "1997": 0.418, + "1998": 0.42, + "1999": 0.42, + "2000": 0.43, + "2001": 0.472, + "2002": 0.467, + "2003": 0.474, + "2004": 0.478, + "2005": 0.48, + "2006": 0.475, + "2007": 0.502, + "2008": 0.518, + "2009": 0.536, + "2010": 0.55, + "2011": 0.567, + "2012": 0.591, + "2013": 0.606, + "2014": 0.62, + "2015": 0.634, + "2016": 0.633, + "2017": 0.643, + "2018": 0.652, + "2019": 0.664, + "2020": 0.664, + "2021": 0.664 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "National", + "GDLCODE": "CANt", + "Region": "Total", + "1990": 0.824, + "1991": 0.84, + "1992": 0.849, + "1993": 0.844, + "1994": 0.853, + "1995": 0.858, + "1996": 0.864, + "1997": 0.857, + "1998": 0.851, + "1999": 0.854, + "2000": 0.857, + "2001": 0.86, + "2002": 0.862, + "2003": 0.864, + "2004": 0.865, + "2005": 0.867, + "2006": 0.869, + "2007": 0.868, + "2008": 0.869, + "2009": 0.872, + "2010": 0.871, + "2011": 0.875, + "2012": 0.888, + "2013": 0.892, + "2014": 0.894, + "2015": 0.898, + "2016": 0.902, + "2017": 0.908, + "2018": 0.911, + "2019": 0.917, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr109", + "Region": "Alberta", + "1990": 0.85, + "1991": 0.866, + "1992": 0.874, + "1993": 0.867, + "1994": 0.874, + "1995": 0.878, + "1996": 0.883, + "1997": 0.874, + "1998": 0.866, + "1999": 0.868, + "2000": 0.87, + "2001": 0.871, + "2002": 0.873, + "2003": 0.875, + "2004": 0.876, + "2005": 0.878, + "2006": 0.879, + "2007": 0.878, + "2008": 0.879, + "2009": 0.882, + "2010": 0.881, + "2011": 0.886, + "2012": 0.899, + "2013": 0.902, + "2014": 0.905, + "2015": 0.909, + "2016": 0.913, + "2017": 0.918, + "2018": 0.921, + "2019": 0.927, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr110", + "Region": "British Columbia", + "1990": 0.856, + "1991": 0.872, + "1992": 0.882, + "1993": 0.875, + "1994": 0.883, + "1995": 0.888, + "1996": 0.894, + "1997": 0.886, + "1998": 0.879, + "1999": 0.881, + "2000": 0.884, + "2001": 0.886, + "2002": 0.887, + "2003": 0.889, + "2004": 0.89, + "2005": 0.891, + "2006": 0.892, + "2007": 0.891, + "2008": 0.891, + "2009": 0.894, + "2010": 0.892, + "2011": 0.897, + "2012": 0.91, + "2013": 0.913, + "2014": 0.916, + "2015": 0.92, + "2016": 0.924, + "2017": 0.93, + "2018": 0.933, + "2019": 0.939, + "2020": 0.939, + "2021": 0.939 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr107", + "Region": "Manitoba", + "1990": 0.787, + "1991": 0.802, + "1992": 0.812, + "1993": 0.807, + "1994": 0.816, + "1995": 0.822, + "1996": 0.828, + "1997": 0.822, + "1998": 0.816, + "1999": 0.82, + "2000": 0.824, + "2001": 0.827, + "2002": 0.829, + "2003": 0.831, + "2004": 0.833, + "2005": 0.835, + "2006": 0.837, + "2007": 0.836, + "2008": 0.838, + "2009": 0.841, + "2010": 0.84, + "2011": 0.845, + "2012": 0.857, + "2013": 0.86, + "2014": 0.863, + "2015": 0.867, + "2016": 0.871, + "2017": 0.876, + "2018": 0.879, + "2019": 0.885, + "2020": 0.885, + "2021": 0.885 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr104", + "Region": "New Brunswick", + "1990": 0.768, + "1991": 0.783, + "1992": 0.793, + "1993": 0.789, + "1994": 0.799, + "1995": 0.805, + "1996": 0.812, + "1997": 0.807, + "1998": 0.802, + "1999": 0.806, + "2000": 0.81, + "2001": 0.815, + "2002": 0.817, + "2003": 0.819, + "2004": 0.822, + "2005": 0.824, + "2006": 0.826, + "2007": 0.826, + "2008": 0.828, + "2009": 0.832, + "2010": 0.831, + "2011": 0.836, + "2012": 0.849, + "2013": 0.852, + "2014": 0.855, + "2015": 0.858, + "2016": 0.862, + "2017": 0.867, + "2018": 0.87, + "2019": 0.876, + "2020": 0.876, + "2021": 0.876 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr101", + "Region": "Newfoundland and Labrador", + "1990": 0.736, + "1991": 0.75, + "1992": 0.76, + "1993": 0.757, + "1994": 0.766, + "1995": 0.772, + "1996": 0.779, + "1997": 0.774, + "1998": 0.77, + "1999": 0.774, + "2000": 0.778, + "2001": 0.782, + "2002": 0.785, + "2003": 0.788, + "2004": 0.791, + "2005": 0.793, + "2006": 0.796, + "2007": 0.796, + "2008": 0.798, + "2009": 0.802, + "2010": 0.802, + "2011": 0.807, + "2012": 0.819, + "2013": 0.822, + "2014": 0.825, + "2015": 0.828, + "2016": 0.832, + "2017": 0.837, + "2018": 0.84, + "2019": 0.845, + "2020": 0.845, + "2021": 0.845 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr103", + "Region": "Nova Scotia", + "1990": 0.803, + "1991": 0.819, + "1992": 0.829, + "1993": 0.824, + "1994": 0.833, + "1995": 0.839, + "1996": 0.845, + "1997": 0.839, + "1998": 0.834, + "1999": 0.837, + "2000": 0.841, + "2001": 0.845, + "2002": 0.846, + "2003": 0.848, + "2004": 0.849, + "2005": 0.851, + "2006": 0.853, + "2007": 0.852, + "2008": 0.853, + "2009": 0.856, + "2010": 0.854, + "2011": 0.859, + "2012": 0.871, + "2013": 0.875, + "2014": 0.878, + "2015": 0.881, + "2016": 0.885, + "2017": 0.891, + "2018": 0.894, + "2019": 0.899, + "2020": 0.899, + "2021": 0.899 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr106", + "Region": "Ontario", + "1990": 0.84, + "1991": 0.856, + "1992": 0.865, + "1993": 0.859, + "1994": 0.868, + "1995": 0.873, + "1996": 0.879, + "1997": 0.872, + "1998": 0.865, + "1999": 0.868, + "2000": 0.871, + "2001": 0.874, + "2002": 0.876, + "2003": 0.877, + "2004": 0.879, + "2005": 0.881, + "2006": 0.882, + "2007": 0.881, + "2008": 0.882, + "2009": 0.885, + "2010": 0.883, + "2011": 0.888, + "2012": 0.901, + "2013": 0.905, + "2014": 0.908, + "2015": 0.911, + "2016": 0.916, + "2017": 0.921, + "2018": 0.924, + "2019": 0.93, + "2020": 0.93, + "2021": 0.93 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr102", + "Region": "Prince Edward Island, Yukon Territory, Northwest Territories, Nunavut", + "1990": 0.791, + "1991": 0.806, + "1992": 0.817, + "1993": 0.813, + "1994": 0.822, + "1995": 0.829, + "1996": 0.836, + "1997": 0.831, + "1998": 0.826, + "1999": 0.83, + "2000": 0.834, + "2001": 0.839, + "2002": 0.84, + "2003": 0.841, + "2004": 0.842, + "2005": 0.843, + "2006": 0.845, + "2007": 0.843, + "2008": 0.844, + "2009": 0.846, + "2010": 0.844, + "2011": 0.849, + "2012": 0.861, + "2013": 0.864, + "2014": 0.867, + "2015": 0.871, + "2016": 0.875, + "2017": 0.88, + "2018": 0.883, + "2019": 0.889, + "2020": 0.889, + "2021": 0.889 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr105", + "Region": "Quebec", + "1990": 0.805, + "1991": 0.82, + "1992": 0.83, + "1993": 0.824, + "1994": 0.833, + "1995": 0.839, + "1996": 0.845, + "1997": 0.839, + "1998": 0.833, + "1999": 0.836, + "2000": 0.839, + "2001": 0.843, + "2002": 0.844, + "2003": 0.846, + "2004": 0.848, + "2005": 0.85, + "2006": 0.851, + "2007": 0.85, + "2008": 0.851, + "2009": 0.855, + "2010": 0.853, + "2011": 0.858, + "2012": 0.871, + "2013": 0.874, + "2014": 0.877, + "2015": 0.88, + "2016": 0.884, + "2017": 0.89, + "2018": 0.893, + "2019": 0.898, + "2020": 0.898, + "2021": 0.898 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr108", + "Region": "Saskatchewan", + "1990": 0.782, + "1991": 0.797, + "1992": 0.807, + "1993": 0.802, + "1994": 0.811, + "1995": 0.816, + "1996": 0.823, + "1997": 0.817, + "1998": 0.811, + "1999": 0.814, + "2000": 0.818, + "2001": 0.821, + "2002": 0.824, + "2003": 0.826, + "2004": 0.829, + "2005": 0.831, + "2006": 0.834, + "2007": 0.833, + "2008": 0.835, + "2009": 0.839, + "2010": 0.838, + "2011": 0.843, + "2012": 0.856, + "2013": 0.859, + "2014": 0.862, + "2015": 0.865, + "2016": 0.87, + "2017": 0.875, + "2018": 0.878, + "2019": 0.883, + "2020": 0.883, + "2021": 0.883 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "National", + "GDLCODE": "CPVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.437, + "2001": 0.435, + "2002": 0.45, + "2003": 0.453, + "2004": 0.455, + "2005": 0.465, + "2006": 0.491, + "2007": 0.497, + "2008": 0.509, + "2009": 0.516, + "2010": 0.526, + "2011": 0.538, + "2012": 0.544, + "2013": 0.561, + "2014": 0.565, + "2015": 0.56, + "2016": 0.562, + "2017": 0.562, + "2018": 0.559, + "2019": 0.558, + "2020": 0.558, + "2021": 0.558 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr105", + "Region": "Fogo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.454, + "2001": 0.452, + "2002": 0.467, + "2003": 0.471, + "2004": 0.473, + "2005": 0.483, + "2006": 0.511, + "2007": 0.517, + "2008": 0.529, + "2009": 0.536, + "2010": 0.547, + "2011": 0.559, + "2012": 0.565, + "2013": 0.583, + "2014": 0.587, + "2015": 0.582, + "2016": 0.583, + "2017": 0.584, + "2018": 0.581, + "2019": 0.58, + "2020": 0.58, + "2021": 0.58 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr101", + "Region": "S.Antao", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.409, + "2001": 0.407, + "2002": 0.421, + "2003": 0.424, + "2004": 0.426, + "2005": 0.435, + "2006": 0.46, + "2007": 0.465, + "2008": 0.476, + "2009": 0.482, + "2010": 0.492, + "2011": 0.503, + "2012": 0.509, + "2013": 0.525, + "2014": 0.528, + "2015": 0.524, + "2016": 0.525, + "2017": 0.526, + "2018": 0.523, + "2019": 0.522, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr102", + "Region": "S.Vicente", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.467, + "2001": 0.465, + "2002": 0.48, + "2003": 0.484, + "2004": 0.486, + "2005": 0.497, + "2006": 0.525, + "2007": 0.531, + "2008": 0.544, + "2009": 0.55, + "2010": 0.562, + "2011": 0.574, + "2012": 0.58, + "2013": 0.599, + "2014": 0.603, + "2015": 0.598, + "2016": 0.6, + "2017": 0.6, + "2018": 0.597, + "2019": 0.596, + "2020": 0.596, + "2021": 0.596 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr104", + "Region": "Santiago- Praia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.495, + "2001": 0.493, + "2002": 0.509, + "2003": 0.513, + "2004": 0.516, + "2005": 0.527, + "2006": 0.557, + "2007": 0.563, + "2008": 0.577, + "2009": 0.584, + "2010": 0.596, + "2011": 0.609, + "2012": 0.616, + "2013": 0.636, + "2014": 0.639, + "2015": 0.635, + "2016": 0.636, + "2017": 0.637, + "2018": 0.633, + "2019": 0.632, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr103", + "Region": "Santiago-Interior", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.356, + "2001": 0.354, + "2002": 0.366, + "2003": 0.368, + "2004": 0.37, + "2005": 0.378, + "2006": 0.4, + "2007": 0.404, + "2008": 0.414, + "2009": 0.419, + "2010": 0.428, + "2011": 0.437, + "2012": 0.442, + "2013": 0.456, + "2014": 0.459, + "2015": 0.456, + "2016": 0.457, + "2017": 0.457, + "2018": 0.454, + "2019": 0.454, + "2020": 0.454, + "2021": 0.454 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "National", + "GDLCODE": "CAFt", + "Region": "Total", + "1990": 0.218, + "1991": 0.212, + "1992": 0.193, + "1993": 0.199, + "1994": 0.204, + "1995": 0.21, + "1996": 0.217, + "1997": 0.223, + "1998": 0.229, + "1999": 0.236, + "2000": 0.242, + "2001": 0.248, + "2002": 0.254, + "2003": 0.26, + "2004": 0.266, + "2005": 0.273, + "2006": 0.278, + "2007": 0.284, + "2008": 0.289, + "2009": 0.295, + "2010": 0.303, + "2011": 0.314, + "2012": 0.318, + "2013": 0.327, + "2014": 0.336, + "2015": 0.345, + "2016": 0.35, + "2017": 0.356, + "2018": 0.362, + "2019": 0.368, + "2020": 0.368, + "2021": 0.368 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr106", + "Region": "Bangui", + "1990": 0.369, + "1991": 0.361, + "1992": 0.334, + "1993": 0.344, + "1994": 0.355, + "1995": 0.363, + "1996": 0.373, + "1997": 0.383, + "1998": 0.393, + "1999": 0.402, + "2000": 0.412, + "2001": 0.422, + "2002": 0.431, + "2003": 0.441, + "2004": 0.45, + "2005": 0.459, + "2006": 0.468, + "2007": 0.468, + "2008": 0.468, + "2009": 0.469, + "2010": 0.474, + "2011": 0.494, + "2012": 0.504, + "2013": 0.52, + "2014": 0.537, + "2015": 0.555, + "2016": 0.566, + "2017": 0.577, + "2018": 0.588, + "2019": 0.599, + "2020": 0.599, + "2021": 0.599 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr101", + "Region": "RS I (Ombella Mpoko, Lobaye, Kemo, Nana Grebizi, Ouaka)", + "1990": 0.222, + "1991": 0.214, + "1992": 0.194, + "1993": 0.2, + "1994": 0.206, + "1995": 0.213, + "1996": 0.221, + "1997": 0.228, + "1998": 0.236, + "1999": 0.243, + "2000": 0.251, + "2001": 0.258, + "2002": 0.265, + "2003": 0.272, + "2004": 0.279, + "2005": 0.287, + "2006": 0.293, + "2007": 0.296, + "2008": 0.298, + "2009": 0.301, + "2010": 0.307, + "2011": 0.319, + "2012": 0.324, + "2013": 0.333, + "2014": 0.343, + "2015": 0.353, + "2016": 0.36, + "2017": 0.366, + "2018": 0.373, + "2019": 0.38, + "2020": 0.38, + "2021": 0.38 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr102", + "Region": "RS II (Mambera Kadei, Nana Mambere, Sangha Mbaere)", + "1990": 0.152, + "1991": 0.147, + "1992": 0.134, + "1993": 0.138, + "1994": 0.142, + "1995": 0.149, + "1996": 0.155, + "1997": 0.162, + "1998": 0.169, + "1999": 0.175, + "2000": 0.182, + "2001": 0.189, + "2002": 0.196, + "2003": 0.203, + "2004": 0.209, + "2005": 0.216, + "2006": 0.223, + "2007": 0.225, + "2008": 0.227, + "2009": 0.23, + "2010": 0.235, + "2011": 0.245, + "2012": 0.251, + "2013": 0.26, + "2014": 0.27, + "2015": 0.28, + "2016": 0.287, + "2017": 0.294, + "2018": 0.302, + "2019": 0.309, + "2020": 0.309, + "2021": 0.309 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr103", + "Region": "RS III (Ouham Pende, Ouham)", + "1990": 0.141, + "1991": 0.136, + "1992": 0.122, + "1993": 0.126, + "1994": 0.129, + "1995": 0.136, + "1996": 0.142, + "1997": 0.148, + "1998": 0.155, + "1999": 0.161, + "2000": 0.168, + "2001": 0.174, + "2002": 0.181, + "2003": 0.188, + "2004": 0.194, + "2005": 0.201, + "2006": 0.207, + "2007": 0.215, + "2008": 0.223, + "2009": 0.23, + "2010": 0.24, + "2011": 0.248, + "2012": 0.251, + "2013": 0.257, + "2014": 0.264, + "2015": 0.271, + "2016": 0.276, + "2017": 0.28, + "2018": 0.285, + "2019": 0.29, + "2020": 0.29, + "2021": 0.29 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr104", + "Region": "RS IV (Haute-Kotto, Baminigui Bangoran, Vakaga)", + "1990": 0.193, + "1991": 0.187, + "1992": 0.169, + "1993": 0.174, + "1994": 0.179, + "1995": 0.184, + "1996": 0.189, + "1997": 0.194, + "1998": 0.199, + "1999": 0.204, + "2000": 0.209, + "2001": 0.214, + "2002": 0.219, + "2003": 0.224, + "2004": 0.228, + "2005": 0.233, + "2006": 0.237, + "2007": 0.242, + "2008": 0.247, + "2009": 0.251, + "2010": 0.259, + "2011": 0.267, + "2012": 0.269, + "2013": 0.276, + "2014": 0.282, + "2015": 0.288, + "2016": 0.292, + "2017": 0.296, + "2018": 0.299, + "2019": 0.303, + "2020": 0.303, + "2021": 0.303 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr105", + "Region": "RS V (Basse Kotto, Mbornou, Houte Mbormou)", + "1990": 0.159, + "1991": 0.154, + "1992": 0.139, + "1993": 0.143, + "1994": 0.148, + "1995": 0.15, + "1996": 0.154, + "1997": 0.157, + "1998": 0.16, + "1999": 0.163, + "2000": 0.166, + "2001": 0.168, + "2002": 0.171, + "2003": 0.174, + "2004": 0.176, + "2005": 0.179, + "2006": 0.181, + "2007": 0.193, + "2008": 0.204, + "2009": 0.215, + "2010": 0.228, + "2011": 0.235, + "2012": 0.236, + "2013": 0.241, + "2014": 0.246, + "2015": 0.252, + "2016": 0.255, + "2017": 0.258, + "2018": 0.261, + "2019": 0.264, + "2020": 0.264, + "2021": 0.264 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "National", + "GDLCODE": "TCDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.177, + "2001": 0.187, + "2002": 0.196, + "2003": 0.202, + "2004": 0.206, + "2005": 0.203, + "2006": 0.212, + "2007": 0.221, + "2008": 0.23, + "2009": 0.243, + "2010": 0.245, + "2011": 0.265, + "2012": 0.274, + "2013": 0.282, + "2014": 0.29, + "2015": 0.278, + "2016": 0.285, + "2017": 0.293, + "2018": 0.301, + "2019": 0.309, + "2020": 0.309, + "2021": 0.309 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr101", + "Region": "Zone 1 (N'Djamena)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.403, + "2001": 0.425, + "2002": 0.447, + "2003": 0.461, + "2004": 0.472, + "2005": 0.45, + "2006": 0.451, + "2007": 0.451, + "2008": 0.452, + "2009": 0.459, + "2010": 0.45, + "2011": 0.485, + "2012": 0.503, + "2013": 0.52, + "2014": 0.538, + "2015": 0.524, + "2016": 0.524, + "2017": 0.523, + "2018": 0.522, + "2019": 0.52, + "2020": 0.52, + "2021": 0.52 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr102", + "Region": "Zone 2 (Borkou, Ennedi, Tibesti, Kanem, Barh El Gazal, Lac)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.063, + "2001": 0.068, + "2002": 0.072, + "2003": 0.075, + "2004": 0.077, + "2005": 0.079, + "2006": 0.086, + "2007": 0.094, + "2008": 0.101, + "2009": 0.11, + "2010": 0.113, + "2011": 0.116, + "2012": 0.111, + "2013": 0.106, + "2014": 0.101, + "2015": 0.088, + "2016": 0.088, + "2017": 0.087, + "2018": 0.087, + "2019": 0.086, + "2020": 0.086, + "2021": 0.086 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr103", + "Region": "Zone 3 (Guera, Batha, Salamat)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.076, + "2001": 0.083, + "2002": 0.091, + "2003": 0.096, + "2004": 0.101, + "2005": 0.102, + "2006": 0.11, + "2007": 0.117, + "2008": 0.125, + "2009": 0.135, + "2010": 0.138, + "2011": 0.152, + "2012": 0.159, + "2013": 0.166, + "2014": 0.173, + "2015": 0.166, + "2016": 0.169, + "2017": 0.172, + "2018": 0.175, + "2019": 0.178, + "2020": 0.178, + "2021": 0.178 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr104", + "Region": "Zone 4 (Ouaddai, Assongha, Sila, Biltine - Wadi Fira)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.045, + "2001": 0.047, + "2002": 0.049, + "2003": 0.049, + "2004": 0.05, + "2005": 0.056, + "2006": 0.066, + "2007": 0.075, + "2008": 0.084, + "2009": 0.096, + "2010": 0.102, + "2011": 0.108, + "2012": 0.109, + "2013": 0.11, + "2014": 0.111, + "2015": 0.103, + "2016": 0.105, + "2017": 0.107, + "2018": 0.108, + "2019": 0.11, + "2020": 0.11, + "2021": 0.11 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr105", + "Region": "Zone 5 (Chari-Baguimi, Dababa, Baguirmi, Hadjer Lamis)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.075, + "2001": 0.071, + "2002": 0.067, + "2003": 0.061, + "2004": 0.055, + "2005": 0.06, + "2006": 0.068, + "2007": 0.076, + "2008": 0.084, + "2009": 0.094, + "2010": 0.099, + "2011": 0.108, + "2012": 0.112, + "2013": 0.116, + "2014": 0.119, + "2015": 0.114, + "2016": 0.117, + "2017": 0.119, + "2018": 0.122, + "2019": 0.125, + "2020": 0.125, + "2021": 0.125 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr106", + "Region": "Zone 6 (Mayo-Kebbi Est and Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.25, + "2001": 0.269, + "2002": 0.289, + "2003": 0.302, + "2004": 0.313, + "2005": 0.297, + "2006": 0.299, + "2007": 0.301, + "2008": 0.302, + "2009": 0.309, + "2010": 0.302, + "2011": 0.336, + "2012": 0.355, + "2013": 0.374, + "2014": 0.394, + "2015": 0.385, + "2016": 0.409, + "2017": 0.434, + "2018": 0.461, + "2019": 0.49, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr107", + "Region": "Zone 7 (Logone Occidental & Oriental, Monts de Lam, Tandjile Est & Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.239, + "2001": 0.255, + "2002": 0.27, + "2003": 0.28, + "2004": 0.287, + "2005": 0.28, + "2006": 0.289, + "2007": 0.298, + "2008": 0.307, + "2009": 0.321, + "2010": 0.321, + "2011": 0.352, + "2012": 0.367, + "2013": 0.382, + "2014": 0.397, + "2015": 0.384, + "2016": 0.397, + "2017": 0.41, + "2018": 0.423, + "2019": 0.438, + "2020": 0.438, + "2021": 0.438 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr108", + "Region": "Zone 8 (Mandoul, Moyen-Chari, Bahr Koh, Lac Iro)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.219, + "2001": 0.229, + "2002": 0.24, + "2003": 0.245, + "2004": 0.249, + "2005": 0.253, + "2006": 0.272, + "2007": 0.291, + "2008": 0.309, + "2009": 0.334, + "2010": 0.343, + "2011": 0.365, + "2012": 0.37, + "2013": 0.376, + "2014": 0.381, + "2015": 0.36, + "2016": 0.378, + "2017": 0.397, + "2018": 0.417, + "2019": 0.439, + "2020": 0.439, + "2021": 0.439 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "National", + "GDLCODE": "CHLt", + "Region": "Total", + "1990": 0.634, + "1991": 0.636, + "1992": 0.638, + "1993": 0.613, + "1994": 0.62, + "1995": 0.627, + "1996": 0.634, + "1997": 0.641, + "1998": 0.648, + "1999": 0.663, + "2000": 0.67, + "2001": 0.679, + "2002": 0.688, + "2003": 0.699, + "2004": 0.713, + "2005": 0.724, + "2006": 0.724, + "2007": 0.736, + "2008": 0.75, + "2009": 0.746, + "2010": 0.748, + "2011": 0.744, + "2012": 0.755, + "2013": 0.781, + "2014": 0.789, + "2015": 0.796, + "2016": 0.803, + "2017": 0.81, + "2018": 0.819, + "2019": 0.829, + "2020": 0.829, + "2021": 0.829 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr111", + "Region": "Aisen", + "1990": 0.563, + "1991": 0.565, + "1992": 0.566, + "1993": 0.544, + "1994": 0.55, + "1995": 0.557, + "1996": 0.563, + "1997": 0.569, + "1998": 0.575, + "1999": 0.588, + "2000": 0.595, + "2001": 0.603, + "2002": 0.611, + "2003": 0.62, + "2004": 0.633, + "2005": 0.642, + "2006": 0.642, + "2007": 0.653, + "2008": 0.666, + "2009": 0.662, + "2010": 0.664, + "2011": 0.66, + "2012": 0.67, + "2013": 0.693, + "2014": 0.701, + "2015": 0.707, + "2016": 0.713, + "2017": 0.719, + "2018": 0.727, + "2019": 0.736, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr102", + "Region": "Antofagasta", + "1990": 0.706, + "1991": 0.709, + "1992": 0.711, + "1993": 0.683, + "1994": 0.691, + "1995": 0.699, + "1996": 0.706, + "1997": 0.714, + "1998": 0.722, + "1999": 0.739, + "2000": 0.747, + "2001": 0.757, + "2002": 0.767, + "2003": 0.779, + "2004": 0.794, + "2005": 0.806, + "2006": 0.806, + "2007": 0.82, + "2008": 0.836, + "2009": 0.831, + "2010": 0.833, + "2011": 0.829, + "2012": 0.841, + "2013": 0.87, + "2014": 0.876, + "2015": 0.881, + "2016": 0.887, + "2017": 0.893, + "2018": 0.9, + "2019": 0.906, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr109", + "Region": "Arbucania", + "1990": 0.539, + "1991": 0.54, + "1992": 0.542, + "1993": 0.521, + "1994": 0.527, + "1995": 0.533, + "1996": 0.539, + "1997": 0.545, + "1998": 0.551, + "1999": 0.563, + "2000": 0.57, + "2001": 0.577, + "2002": 0.585, + "2003": 0.594, + "2004": 0.606, + "2005": 0.615, + "2006": 0.615, + "2007": 0.625, + "2008": 0.637, + "2009": 0.634, + "2010": 0.636, + "2011": 0.632, + "2012": 0.641, + "2013": 0.664, + "2014": 0.671, + "2015": 0.677, + "2016": 0.683, + "2017": 0.688, + "2018": 0.696, + "2019": 0.705, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr103", + "Region": "Atacama", + "1990": 0.629, + "1991": 0.631, + "1992": 0.632, + "1993": 0.608, + "1994": 0.615, + "1995": 0.622, + "1996": 0.629, + "1997": 0.635, + "1998": 0.642, + "1999": 0.657, + "2000": 0.665, + "2001": 0.674, + "2002": 0.682, + "2003": 0.693, + "2004": 0.707, + "2005": 0.718, + "2006": 0.717, + "2007": 0.73, + "2008": 0.744, + "2009": 0.74, + "2010": 0.742, + "2011": 0.738, + "2012": 0.748, + "2013": 0.775, + "2014": 0.782, + "2015": 0.79, + "2016": 0.797, + "2017": 0.803, + "2018": 0.813, + "2019": 0.822, + "2020": 0.822, + "2021": 0.822 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr108", + "Region": "Bio Bio", + "1990": 0.587, + "1991": 0.589, + "1992": 0.59, + "1993": 0.567, + "1994": 0.574, + "1995": 0.58, + "1996": 0.587, + "1997": 0.593, + "1998": 0.6, + "1999": 0.614, + "2000": 0.62, + "2001": 0.629, + "2002": 0.637, + "2003": 0.647, + "2004": 0.66, + "2005": 0.67, + "2006": 0.67, + "2007": 0.681, + "2008": 0.694, + "2009": 0.69, + "2010": 0.692, + "2011": 0.688, + "2012": 0.698, + "2013": 0.723, + "2014": 0.73, + "2015": 0.737, + "2016": 0.744, + "2017": 0.75, + "2018": 0.758, + "2019": 0.767, + "2020": 0.767, + "2021": 0.767 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr104", + "Region": "Coquimbo", + "1990": 0.596, + "1991": 0.598, + "1992": 0.6, + "1993": 0.576, + "1994": 0.583, + "1995": 0.589, + "1996": 0.596, + "1997": 0.603, + "1998": 0.609, + "1999": 0.623, + "2000": 0.63, + "2001": 0.639, + "2002": 0.647, + "2003": 0.657, + "2004": 0.67, + "2005": 0.68, + "2006": 0.68, + "2007": 0.692, + "2008": 0.705, + "2009": 0.701, + "2010": 0.703, + "2011": 0.699, + "2012": 0.71, + "2013": 0.734, + "2014": 0.742, + "2015": 0.749, + "2016": 0.755, + "2017": 0.761, + "2018": 0.77, + "2019": 0.78, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr110", + "Region": "Los Lagos (incl Los Rios)", + "1990": 0.54, + "1991": 0.542, + "1992": 0.543, + "1993": 0.522, + "1994": 0.528, + "1995": 0.534, + "1996": 0.54, + "1997": 0.546, + "1998": 0.552, + "1999": 0.565, + "2000": 0.571, + "2001": 0.579, + "2002": 0.586, + "2003": 0.595, + "2004": 0.607, + "2005": 0.617, + "2006": 0.616, + "2007": 0.627, + "2008": 0.639, + "2009": 0.636, + "2010": 0.637, + "2011": 0.634, + "2012": 0.643, + "2013": 0.666, + "2014": 0.672, + "2015": 0.679, + "2016": 0.685, + "2017": 0.69, + "2018": 0.698, + "2019": 0.707, + "2020": 0.707, + "2021": 0.707 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr112", + "Region": "Magallanes and La Antartica Chilena", + "1990": 0.659, + "1991": 0.661, + "1992": 0.663, + "1993": 0.637, + "1994": 0.645, + "1995": 0.652, + "1996": 0.659, + "1997": 0.666, + "1998": 0.674, + "1999": 0.689, + "2000": 0.697, + "2001": 0.706, + "2002": 0.716, + "2003": 0.727, + "2004": 0.741, + "2005": 0.752, + "2006": 0.752, + "2007": 0.765, + "2008": 0.78, + "2009": 0.776, + "2010": 0.778, + "2011": 0.774, + "2012": 0.785, + "2013": 0.812, + "2014": 0.821, + "2015": 0.828, + "2016": 0.836, + "2017": 0.842, + "2018": 0.852, + "2019": 0.862, + "2020": 0.862, + "2021": 0.862 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr107", + "Region": "Maule", + "1990": 0.534, + "1991": 0.536, + "1992": 0.537, + "1993": 0.516, + "1994": 0.522, + "1995": 0.528, + "1996": 0.534, + "1997": 0.54, + "1998": 0.546, + "1999": 0.559, + "2000": 0.565, + "2001": 0.572, + "2002": 0.58, + "2003": 0.589, + "2004": 0.601, + "2005": 0.61, + "2006": 0.61, + "2007": 0.62, + "2008": 0.632, + "2009": 0.629, + "2010": 0.63, + "2011": 0.627, + "2012": 0.636, + "2013": 0.658, + "2014": 0.665, + "2015": 0.671, + "2016": 0.677, + "2017": 0.682, + "2018": 0.69, + "2019": 0.699, + "2020": 0.699, + "2021": 0.699 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr106", + "Region": "OHiggins", + "1990": 0.569, + "1991": 0.571, + "1992": 0.573, + "1993": 0.55, + "1994": 0.557, + "1995": 0.563, + "1996": 0.569, + "1997": 0.576, + "1998": 0.582, + "1999": 0.595, + "2000": 0.602, + "2001": 0.61, + "2002": 0.618, + "2003": 0.628, + "2004": 0.64, + "2005": 0.65, + "2006": 0.65, + "2007": 0.661, + "2008": 0.674, + "2009": 0.67, + "2010": 0.672, + "2011": 0.668, + "2012": 0.678, + "2013": 0.702, + "2014": 0.709, + "2015": 0.715, + "2016": 0.722, + "2017": 0.727, + "2018": 0.736, + "2019": 0.745, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr113", + "Region": "Region Metropolitana", + "1990": 0.687, + "1991": 0.689, + "1992": 0.691, + "1993": 0.664, + "1994": 0.672, + "1995": 0.68, + "1996": 0.687, + "1997": 0.695, + "1998": 0.702, + "1999": 0.719, + "2000": 0.727, + "2001": 0.736, + "2002": 0.746, + "2003": 0.757, + "2004": 0.773, + "2005": 0.784, + "2006": 0.784, + "2007": 0.798, + "2008": 0.813, + "2009": 0.809, + "2010": 0.811, + "2011": 0.806, + "2012": 0.818, + "2013": 0.847, + "2014": 0.855, + "2015": 0.863, + "2016": 0.871, + "2017": 0.878, + "2018": 0.888, + "2019": 0.895, + "2020": 0.895, + "2021": 0.895 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr101", + "Region": "Tarapaca (incl Arica and Parinacota)", + "1990": 0.696, + "1991": 0.698, + "1992": 0.7, + "1993": 0.672, + "1994": 0.68, + "1995": 0.688, + "1996": 0.696, + "1997": 0.703, + "1998": 0.711, + "1999": 0.728, + "2000": 0.736, + "2001": 0.746, + "2002": 0.755, + "2003": 0.767, + "2004": 0.782, + "2005": 0.794, + "2006": 0.794, + "2007": 0.808, + "2008": 0.823, + "2009": 0.819, + "2010": 0.821, + "2011": 0.816, + "2012": 0.828, + "2013": 0.857, + "2014": 0.866, + "2015": 0.874, + "2016": 0.881, + "2017": 0.887, + "2018": 0.894, + "2019": 0.9, + "2020": 0.9, + "2021": 0.9 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr105", + "Region": "Valparaiso (former Aconcagua)", + "1990": 0.66, + "1991": 0.662, + "1992": 0.664, + "1993": 0.638, + "1994": 0.645, + "1995": 0.653, + "1996": 0.66, + "1997": 0.667, + "1998": 0.674, + "1999": 0.69, + "2000": 0.698, + "2001": 0.707, + "2002": 0.716, + "2003": 0.727, + "2004": 0.742, + "2005": 0.753, + "2006": 0.753, + "2007": 0.766, + "2008": 0.781, + "2009": 0.777, + "2010": 0.778, + "2011": 0.774, + "2012": 0.786, + "2013": 0.813, + "2014": 0.821, + "2015": 0.829, + "2016": 0.836, + "2017": 0.843, + "2018": 0.853, + "2019": 0.863, + "2020": 0.863, + "2021": 0.863 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "National", + "GDLCODE": "CHNt", + "Region": "Total", + "1990": 0.378, + "1991": 0.385, + "1992": 0.394, + "1993": 0.401, + "1994": 0.407, + "1995": 0.416, + "1996": 0.426, + "1997": 0.433, + "1998": 0.444, + "1999": 0.456, + "2000": 0.467, + "2001": 0.475, + "2002": 0.486, + "2003": 0.497, + "2004": 0.508, + "2005": 0.519, + "2006": 0.53, + "2007": 0.542, + "2008": 0.552, + "2009": 0.561, + "2010": 0.569, + "2011": 0.578, + "2012": 0.587, + "2013": 0.596, + "2014": 0.605, + "2015": 0.614, + "2016": 0.624, + "2017": 0.633, + "2018": 0.64, + "2019": 0.649, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr112", + "Region": "Anhui", + "1990": 0.348, + "1991": 0.355, + "1992": 0.363, + "1993": 0.369, + "1994": 0.375, + "1995": 0.384, + "1996": 0.393, + "1997": 0.399, + "1998": 0.409, + "1999": 0.415, + "2000": 0.424, + "2001": 0.43, + "2002": 0.439, + "2003": 0.457, + "2004": 0.475, + "2005": 0.467, + "2006": 0.484, + "2007": 0.479, + "2008": 0.496, + "2009": 0.51, + "2010": 0.524, + "2011": 0.54, + "2012": 0.56, + "2013": 0.562, + "2014": 0.585, + "2015": 0.592, + "2016": 0.585, + "2017": 0.588, + "2018": 0.613, + "2019": 0.615, + "2020": 0.615, + "2021": 0.615 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr101", + "Region": "Beijing", + "1990": 0.519, + "1991": 0.529, + "1992": 0.541, + "1993": 0.551, + "1994": 0.559, + "1995": 0.572, + "1996": 0.586, + "1997": 0.595, + "1998": 0.611, + "1999": 0.633, + "2000": 0.638, + "2001": 0.639, + "2002": 0.644, + "2003": 0.657, + "2004": 0.669, + "2005": 0.709, + "2006": 0.722, + "2007": 0.733, + "2008": 0.732, + "2009": 0.748, + "2010": 0.751, + "2011": 0.756, + "2012": 0.778, + "2013": 0.793, + "2014": 0.794, + "2015": 0.814, + "2016": 0.828, + "2017": 0.833, + "2018": 0.839, + "2019": 0.844, + "2020": 0.844, + "2021": 0.844 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr122", + "Region": "Chongqing", + "1990": 0.356, + "1991": 0.363, + "1992": 0.371, + "1993": 0.378, + "1994": 0.383, + "1995": 0.392, + "1996": 0.401, + "1997": 0.408, + "1998": 0.419, + "1999": 0.436, + "2000": 0.447, + "2001": 0.456, + "2002": 0.467, + "2003": 0.463, + "2004": 0.459, + "2005": 0.49, + "2006": 0.499, + "2007": 0.511, + "2008": 0.519, + "2009": 0.531, + "2010": 0.552, + "2011": 0.574, + "2012": 0.568, + "2013": 0.572, + "2014": 0.6, + "2015": 0.602, + "2016": 0.62, + "2017": 0.628, + "2018": 0.64, + "2019": 0.65, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr113", + "Region": "Fujian", + "1990": 0.356, + "1991": 0.363, + "1992": 0.371, + "1993": 0.378, + "1994": 0.383, + "1995": 0.393, + "1996": 0.402, + "1997": 0.408, + "1998": 0.419, + "1999": 0.43, + "2000": 0.443, + "2001": 0.454, + "2002": 0.468, + "2003": 0.472, + "2004": 0.475, + "2005": 0.5, + "2006": 0.509, + "2007": 0.513, + "2008": 0.521, + "2009": 0.559, + "2010": 0.568, + "2011": 0.578, + "2012": 0.563, + "2013": 0.57, + "2014": 0.589, + "2015": 0.597, + "2016": 0.596, + "2017": 0.624, + "2018": 0.62, + "2019": 0.61, + "2020": 0.61, + "2021": 0.61 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr128", + "Region": "Gansu", + "1990": 0.323, + "1991": 0.329, + "1992": 0.337, + "1993": 0.343, + "1994": 0.348, + "1995": 0.356, + "1996": 0.364, + "1997": 0.37, + "1998": 0.38, + "1999": 0.403, + "2000": 0.411, + "2001": 0.417, + "2002": 0.426, + "2003": 0.442, + "2004": 0.459, + "2005": 0.455, + "2006": 0.447, + "2007": 0.467, + "2008": 0.478, + "2009": 0.488, + "2010": 0.51, + "2011": 0.533, + "2012": 0.544, + "2013": 0.551, + "2014": 0.558, + "2015": 0.569, + "2016": 0.577, + "2017": 0.592, + "2018": 0.585, + "2019": 0.588, + "2020": 0.588, + "2021": 0.588 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr119", + "Region": "Guangdong", + "1990": 0.402, + "1991": 0.41, + "1992": 0.419, + "1993": 0.427, + "1994": 0.433, + "1995": 0.443, + "1996": 0.454, + "1997": 0.461, + "1998": 0.473, + "1999": 0.483, + "2000": 0.492, + "2001": 0.499, + "2002": 0.508, + "2003": 0.512, + "2004": 0.515, + "2005": 0.555, + "2006": 0.556, + "2007": 0.574, + "2008": 0.585, + "2009": 0.594, + "2010": 0.602, + "2011": 0.611, + "2012": 0.614, + "2013": 0.609, + "2014": 0.622, + "2015": 0.639, + "2016": 0.657, + "2017": 0.667, + "2018": 0.666, + "2019": 0.676, + "2020": 0.676, + "2021": 0.676 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr120", + "Region": "Guangxi", + "1990": 0.362, + "1991": 0.369, + "1992": 0.377, + "1993": 0.384, + "1994": 0.389, + "1995": 0.399, + "1996": 0.408, + "1997": 0.415, + "1998": 0.426, + "1999": 0.434, + "2000": 0.45, + "2001": 0.463, + "2002": 0.479, + "2003": 0.493, + "2004": 0.508, + "2005": 0.508, + "2006": 0.53, + "2007": 0.531, + "2008": 0.532, + "2009": 0.542, + "2010": 0.552, + "2011": 0.563, + "2012": 0.554, + "2013": 0.567, + "2014": 0.586, + "2015": 0.585, + "2016": 0.599, + "2017": 0.598, + "2018": 0.604, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr124", + "Region": "Guizhou", + "1990": 0.305, + "1991": 0.311, + "1992": 0.318, + "1993": 0.324, + "1994": 0.328, + "1995": 0.336, + "1996": 0.344, + "1997": 0.35, + "1998": 0.359, + "1999": 0.385, + "2000": 0.399, + "2001": 0.409, + "2002": 0.423, + "2003": 0.433, + "2004": 0.443, + "2005": 0.426, + "2006": 0.435, + "2007": 0.453, + "2008": 0.47, + "2009": 0.474, + "2010": 0.485, + "2011": 0.496, + "2012": 0.502, + "2013": 0.53, + "2014": 0.542, + "2015": 0.524, + "2016": 0.531, + "2017": 0.556, + "2018": 0.558, + "2019": 0.553, + "2020": 0.553, + "2021": 0.553 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr121", + "Region": "Hainan", + "1990": 0.384, + "1991": 0.391, + "1992": 0.4, + "1993": 0.407, + "1994": 0.413, + "1995": 0.423, + "1996": 0.433, + "1997": 0.44, + "1998": 0.451, + "1999": 0.46, + "2000": 0.474, + "2001": 0.485, + "2002": 0.499, + "2003": 0.516, + "2004": 0.533, + "2005": 0.538, + "2006": 0.539, + "2007": 0.551, + "2008": 0.557, + "2009": 0.565, + "2010": 0.572, + "2011": 0.581, + "2012": 0.601, + "2013": 0.606, + "2014": 0.61, + "2015": 0.619, + "2016": 0.623, + "2017": 0.647, + "2018": 0.678, + "2019": 0.665, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr103", + "Region": "Hebei", + "1990": 0.398, + "1991": 0.405, + "1992": 0.414, + "1993": 0.422, + "1994": 0.428, + "1995": 0.438, + "1996": 0.449, + "1997": 0.456, + "1998": 0.468, + "1999": 0.473, + "2000": 0.485, + "2001": 0.493, + "2002": 0.504, + "2003": 0.518, + "2004": 0.531, + "2005": 0.542, + "2006": 0.536, + "2007": 0.54, + "2008": 0.557, + "2009": 0.564, + "2010": 0.565, + "2011": 0.567, + "2012": 0.572, + "2013": 0.587, + "2014": 0.594, + "2015": 0.609, + "2016": 0.613, + "2017": 0.624, + "2018": 0.632, + "2019": 0.644, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr108", + "Region": "Heilongjiang", + "1990": 0.418, + "1991": 0.426, + "1992": 0.436, + "1993": 0.444, + "1994": 0.45, + "1995": 0.461, + "1996": 0.472, + "1997": 0.479, + "1998": 0.492, + "1999": 0.496, + "2000": 0.506, + "2001": 0.512, + "2002": 0.521, + "2003": 0.53, + "2004": 0.538, + "2005": 0.561, + "2006": 0.562, + "2007": 0.575, + "2008": 0.58, + "2009": 0.585, + "2010": 0.59, + "2011": 0.596, + "2012": 0.605, + "2013": 0.625, + "2014": 0.627, + "2015": 0.631, + "2016": 0.64, + "2017": 0.644, + "2018": 0.659, + "2019": 0.665, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr116", + "Region": "Henan", + "1990": 0.386, + "1991": 0.394, + "1992": 0.403, + "1993": 0.41, + "1994": 0.416, + "1995": 0.426, + "1996": 0.436, + "1997": 0.443, + "1998": 0.454, + "1999": 0.45, + "2000": 0.47, + "2001": 0.487, + "2002": 0.507, + "2003": 0.514, + "2004": 0.521, + "2005": 0.53, + "2006": 0.531, + "2007": 0.541, + "2008": 0.556, + "2009": 0.561, + "2010": 0.565, + "2011": 0.569, + "2012": 0.569, + "2013": 0.579, + "2014": 0.603, + "2015": 0.594, + "2016": 0.602, + "2017": 0.611, + "2018": 0.62, + "2019": 0.634, + "2020": 0.634, + "2021": 0.634 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr117", + "Region": "Hubei", + "1990": 0.389, + "1991": 0.396, + "1992": 0.405, + "1993": 0.412, + "1994": 0.418, + "1995": 0.428, + "1996": 0.438, + "1997": 0.446, + "1998": 0.457, + "1999": 0.462, + "2000": 0.463, + "2001": 0.46, + "2002": 0.461, + "2003": 0.487, + "2004": 0.513, + "2005": 0.519, + "2006": 0.544, + "2007": 0.557, + "2008": 0.566, + "2009": 0.568, + "2010": 0.579, + "2011": 0.592, + "2012": 0.605, + "2013": 0.616, + "2014": 0.611, + "2015": 0.628, + "2016": 0.635, + "2017": 0.642, + "2018": 0.659, + "2019": 0.66, + "2020": 0.66, + "2021": 0.66 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr118", + "Region": "Hunan", + "1990": 0.388, + "1991": 0.395, + "1992": 0.404, + "1993": 0.412, + "1994": 0.418, + "1995": 0.428, + "1996": 0.438, + "1997": 0.445, + "1998": 0.457, + "1999": 0.472, + "2000": 0.481, + "2001": 0.487, + "2002": 0.497, + "2003": 0.507, + "2004": 0.517, + "2005": 0.53, + "2006": 0.539, + "2007": 0.557, + "2008": 0.562, + "2009": 0.566, + "2010": 0.571, + "2011": 0.576, + "2012": 0.573, + "2013": 0.591, + "2014": 0.605, + "2015": 0.626, + "2016": 0.639, + "2017": 0.646, + "2018": 0.648, + "2019": 0.663, + "2020": 0.663, + "2021": 0.663 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr105", + "Region": "Inner Mongolia", + "1990": 0.396, + "1991": 0.403, + "1992": 0.413, + "1993": 0.42, + "1994": 0.426, + "1995": 0.436, + "1996": 0.447, + "1997": 0.454, + "1998": 0.466, + "1999": 0.466, + "2000": 0.477, + "2001": 0.484, + "2002": 0.495, + "2003": 0.506, + "2004": 0.518, + "2005": 0.545, + "2006": 0.54, + "2007": 0.553, + "2008": 0.558, + "2009": 0.568, + "2010": 0.586, + "2011": 0.604, + "2012": 0.607, + "2013": 0.594, + "2014": 0.603, + "2015": 0.631, + "2016": 0.662, + "2017": 0.657, + "2018": 0.67, + "2019": 0.686, + "2020": 0.686, + "2021": 0.686 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr110", + "Region": "Jiangsu", + "1990": 0.375, + "1991": 0.382, + "1992": 0.391, + "1993": 0.398, + "1994": 0.403, + "1995": 0.413, + "1996": 0.423, + "1997": 0.43, + "1998": 0.441, + "1999": 0.463, + "2000": 0.469, + "2001": 0.471, + "2002": 0.476, + "2003": 0.486, + "2004": 0.495, + "2005": 0.539, + "2006": 0.544, + "2007": 0.558, + "2008": 0.563, + "2009": 0.572, + "2010": 0.585, + "2011": 0.599, + "2012": 0.609, + "2013": 0.621, + "2014": 0.627, + "2015": 0.639, + "2016": 0.65, + "2017": 0.65, + "2018": 0.648, + "2019": 0.669, + "2020": 0.669, + "2021": 0.669 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr114", + "Region": "Jiangxi", + "1990": 0.374, + "1991": 0.381, + "1992": 0.389, + "1993": 0.396, + "1994": 0.402, + "1995": 0.412, + "1996": 0.421, + "1997": 0.428, + "1998": 0.439, + "1999": 0.451, + "2000": 0.458, + "2001": 0.462, + "2002": 0.47, + "2003": 0.488, + "2004": 0.506, + "2005": 0.5, + "2006": 0.508, + "2007": 0.546, + "2008": 0.551, + "2009": 0.57, + "2010": 0.57, + "2011": 0.572, + "2012": 0.583, + "2013": 0.609, + "2014": 0.595, + "2015": 0.597, + "2016": 0.598, + "2017": 0.599, + "2018": 0.617, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr107", + "Region": "Jilin", + "1990": 0.428, + "1991": 0.436, + "1992": 0.445, + "1993": 0.453, + "1994": 0.46, + "1995": 0.471, + "1996": 0.482, + "1997": 0.49, + "1998": 0.503, + "1999": 0.522, + "2000": 0.529, + "2001": 0.533, + "2002": 0.541, + "2003": 0.549, + "2004": 0.558, + "2005": 0.562, + "2006": 0.571, + "2007": 0.581, + "2008": 0.593, + "2009": 0.596, + "2010": 0.595, + "2011": 0.595, + "2012": 0.608, + "2013": 0.62, + "2014": 0.628, + "2015": 0.633, + "2016": 0.65, + "2017": 0.653, + "2018": 0.653, + "2019": 0.657, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr106", + "Region": "Liaoning", + "1990": 0.428, + "1991": 0.436, + "1992": 0.446, + "1993": 0.454, + "1994": 0.46, + "1995": 0.472, + "1996": 0.483, + "1997": 0.49, + "1998": 0.503, + "1999": 0.519, + "2000": 0.524, + "2001": 0.525, + "2002": 0.53, + "2003": 0.545, + "2004": 0.56, + "2005": 0.58, + "2006": 0.588, + "2007": 0.595, + "2008": 0.606, + "2009": 0.618, + "2010": 0.618, + "2011": 0.619, + "2012": 0.651, + "2013": 0.667, + "2014": 0.664, + "2015": 0.663, + "2016": 0.681, + "2017": 0.682, + "2018": 0.688, + "2019": 0.693, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr130", + "Region": "Ningxia", + "1990": 0.348, + "1991": 0.355, + "1992": 0.363, + "1993": 0.37, + "1994": 0.375, + "1995": 0.384, + "1996": 0.393, + "1997": 0.399, + "1998": 0.41, + "1999": 0.422, + "2000": 0.437, + "2001": 0.449, + "2002": 0.464, + "2003": 0.476, + "2004": 0.488, + "2005": 0.489, + "2006": 0.503, + "2007": 0.518, + "2008": 0.542, + "2009": 0.55, + "2010": 0.549, + "2011": 0.549, + "2012": 0.55, + "2013": 0.574, + "2014": 0.573, + "2015": 0.599, + "2016": 0.625, + "2017": 0.629, + "2018": 0.604, + "2019": 0.617, + "2020": 0.617, + "2021": 0.617 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr129", + "Region": "Qinghai", + "1990": 0.261, + "1991": 0.266, + "1992": 0.272, + "1993": 0.277, + "1994": 0.281, + "1995": 0.288, + "1996": 0.295, + "1997": 0.3, + "1998": 0.307, + "1999": 0.378, + "2000": 0.386, + "2001": 0.391, + "2002": 0.398, + "2003": 0.415, + "2004": 0.431, + "2005": 0.448, + "2006": 0.461, + "2007": 0.475, + "2008": 0.484, + "2009": 0.498, + "2010": 0.503, + "2011": 0.509, + "2012": 0.5, + "2013": 0.525, + "2014": 0.539, + "2015": 0.506, + "2016": 0.532, + "2017": 0.548, + "2018": 0.572, + "2019": 0.571, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr127", + "Region": "Shaanxi", + "1990": 0.375, + "1991": 0.383, + "1992": 0.391, + "1993": 0.398, + "1994": 0.404, + "1995": 0.414, + "1996": 0.423, + "1997": 0.43, + "1998": 0.442, + "1999": 0.453, + "2000": 0.459, + "2001": 0.461, + "2002": 0.467, + "2003": 0.495, + "2004": 0.524, + "2005": 0.535, + "2006": 0.547, + "2007": 0.556, + "2008": 0.568, + "2009": 0.574, + "2010": 0.579, + "2011": 0.586, + "2012": 0.6, + "2013": 0.612, + "2014": 0.613, + "2015": 0.643, + "2016": 0.633, + "2017": 0.636, + "2018": 0.659, + "2019": 0.661, + "2020": 0.661, + "2021": 0.661 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr115", + "Region": "Shandong", + "1990": 0.353, + "1991": 0.359, + "1992": 0.367, + "1993": 0.374, + "1994": 0.379, + "1995": 0.389, + "1996": 0.398, + "1997": 0.404, + "1998": 0.415, + "1999": 0.433, + "2000": 0.459, + "2001": 0.481, + "2002": 0.507, + "2003": 0.505, + "2004": 0.504, + "2005": 0.512, + "2006": 0.534, + "2007": 0.544, + "2008": 0.552, + "2009": 0.556, + "2010": 0.561, + "2011": 0.567, + "2012": 0.577, + "2013": 0.589, + "2014": 0.602, + "2015": 0.608, + "2016": 0.617, + "2017": 0.623, + "2018": 0.622, + "2019": 0.626, + "2020": 0.626, + "2021": 0.626 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr109", + "Region": "Shanghai", + "1990": 0.478, + "1991": 0.487, + "1992": 0.498, + "1993": 0.507, + "1994": 0.514, + "1995": 0.527, + "1996": 0.539, + "1997": 0.548, + "1998": 0.562, + "1999": 0.588, + "2000": 0.594, + "2001": 0.596, + "2002": 0.602, + "2003": 0.622, + "2004": 0.641, + "2005": 0.665, + "2006": 0.688, + "2007": 0.692, + "2008": 0.703, + "2009": 0.712, + "2010": 0.698, + "2011": 0.686, + "2012": 0.7, + "2013": 0.697, + "2014": 0.725, + "2015": 0.737, + "2016": 0.755, + "2017": 0.781, + "2018": 0.777, + "2019": 0.775, + "2020": 0.775, + "2021": 0.775 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr104", + "Region": "Shanxi", + "1990": 0.403, + "1991": 0.411, + "1992": 0.42, + "1993": 0.428, + "1994": 0.434, + "1995": 0.444, + "1996": 0.455, + "1997": 0.462, + "1998": 0.474, + "1999": 0.496, + "2000": 0.504, + "2001": 0.509, + "2002": 0.518, + "2003": 0.525, + "2004": 0.531, + "2005": 0.558, + "2006": 0.573, + "2007": 0.581, + "2008": 0.588, + "2009": 0.594, + "2010": 0.596, + "2011": 0.599, + "2012": 0.617, + "2013": 0.617, + "2014": 0.623, + "2015": 0.649, + "2016": 0.663, + "2017": 0.678, + "2018": 0.68, + "2019": 0.685, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr123", + "Region": "Sichuan", + "1990": 0.364, + "1991": 0.371, + "1992": 0.379, + "1993": 0.386, + "1994": 0.391, + "1995": 0.401, + "1996": 0.41, + "1997": 0.417, + "1998": 0.428, + "1999": 0.422, + "2000": 0.435, + "2001": 0.445, + "2002": 0.457, + "2003": 0.465, + "2004": 0.473, + "2005": 0.453, + "2006": 0.477, + "2007": 0.492, + "2008": 0.501, + "2009": 0.515, + "2010": 0.526, + "2011": 0.538, + "2012": 0.557, + "2013": 0.557, + "2014": 0.559, + "2015": 0.569, + "2016": 0.567, + "2017": 0.585, + "2018": 0.599, + "2019": 0.614, + "2020": 0.614, + "2021": 0.614 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr102", + "Region": "Tianjin", + "1990": 0.433, + "1991": 0.441, + "1992": 0.451, + "1993": 0.459, + "1994": 0.466, + "1995": 0.477, + "1996": 0.488, + "1997": 0.496, + "1998": 0.509, + "1999": 0.552, + "2000": 0.561, + "2001": 0.566, + "2002": 0.574, + "2003": 0.593, + "2004": 0.611, + "2005": 0.631, + "2006": 0.641, + "2007": 0.649, + "2008": 0.659, + "2009": 0.673, + "2010": 0.676, + "2011": 0.68, + "2012": 0.691, + "2013": 0.695, + "2014": 0.704, + "2015": 0.711, + "2016": 0.736, + "2017": 0.758, + "2018": 0.765, + "2019": 0.772, + "2020": 0.772, + "2021": 0.772 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr126", + "Region": "Tibet", + "1990": 0.178, + "1991": 0.182, + "1992": 0.186, + "1993": 0.189, + "1994": 0.192, + "1995": 0.196, + "1996": 0.201, + "1997": 0.204, + "1998": 0.21, + "1999": 0.187, + "2000": 0.216, + "2001": 0.243, + "2002": 0.271, + "2003": 0.275, + "2004": 0.279, + "2005": 0.248, + "2006": 0.274, + "2007": 0.306, + "2008": 0.314, + "2009": 0.304, + "2010": 0.332, + "2011": 0.36, + "2012": 0.333, + "2013": 0.288, + "2014": 0.283, + "2015": 0.359, + "2016": 0.347, + "2017": 0.384, + "2018": 0.397, + "2019": 0.407, + "2020": 0.407, + "2021": 0.407 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr131", + "Region": "Xinjiang", + "1990": 0.398, + "1991": 0.405, + "1992": 0.414, + "1993": 0.422, + "1994": 0.428, + "1995": 0.438, + "1996": 0.448, + "1997": 0.456, + "1998": 0.468, + "1999": 0.504, + "2000": 0.512, + "2001": 0.517, + "2002": 0.525, + "2003": 0.532, + "2004": 0.538, + "2005": 0.544, + "2006": 0.547, + "2007": 0.563, + "2008": 0.571, + "2009": 0.579, + "2010": 0.589, + "2011": 0.6, + "2012": 0.595, + "2013": 0.593, + "2014": 0.615, + "2015": 0.612, + "2016": 0.622, + "2017": 0.653, + "2018": 0.65, + "2019": 0.638, + "2020": 0.638, + "2021": 0.638 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr125", + "Region": "Yunnan", + "1990": 0.308, + "1991": 0.314, + "1992": 0.321, + "1993": 0.327, + "1994": 0.332, + "1995": 0.34, + "1996": 0.348, + "1997": 0.353, + "1998": 0.363, + "1999": 0.369, + "2000": 0.375, + "2001": 0.378, + "2002": 0.384, + "2003": 0.408, + "2004": 0.432, + "2005": 0.423, + "2006": 0.439, + "2007": 0.449, + "2008": 0.46, + "2009": 0.462, + "2010": 0.482, + "2011": 0.503, + "2012": 0.516, + "2013": 0.517, + "2014": 0.522, + "2015": 0.542, + "2016": 0.546, + "2017": 0.558, + "2018": 0.571, + "2019": 0.583, + "2020": 0.583, + "2021": 0.583 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr111", + "Region": "Zhejiang", + "1990": 0.374, + "1991": 0.381, + "1992": 0.39, + "1993": 0.397, + "1994": 0.403, + "1995": 0.412, + "1996": 0.422, + "1997": 0.429, + "1998": 0.44, + "1999": 0.453, + "2000": 0.464, + "2001": 0.471, + "2002": 0.482, + "2003": 0.493, + "2004": 0.504, + "2005": 0.505, + "2006": 0.531, + "2007": 0.536, + "2008": 0.549, + "2009": 0.562, + "2010": 0.569, + "2011": 0.577, + "2012": 0.605, + "2013": 0.618, + "2014": 0.607, + "2015": 0.605, + "2016": 0.623, + "2017": 0.628, + "2018": 0.638, + "2019": 0.65, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "National", + "GDLCODE": "COLt", + "Region": "Total", + "1990": 0.46, + "1991": 0.477, + "1992": 0.495, + "1993": 0.501, + "1994": 0.507, + "1995": 0.51, + "1996": 0.527, + "1997": 0.539, + "1998": 0.551, + "1999": 0.551, + "2000": 0.552, + "2001": 0.554, + "2002": 0.556, + "2003": 0.565, + "2004": 0.574, + "2005": 0.595, + "2006": 0.589, + "2007": 0.61, + "2008": 0.62, + "2009": 0.629, + "2010": 0.633, + "2011": 0.64, + "2012": 0.636, + "2013": 0.658, + "2014": 0.662, + "2015": 0.665, + "2016": 0.675, + "2017": 0.679, + "2018": 0.683, + "2019": 0.691, + "2020": 0.697, + "2021": 0.697 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr129", + "Region": "Amazonas", + "1990": 0.575, + "1991": 0.595, + "1992": 0.615, + "1993": 0.624, + "1994": 0.63, + "1995": 0.634, + "1996": 0.651, + "1997": 0.662, + "1998": 0.673, + "1999": 0.67, + "2000": 0.67, + "2001": 0.663, + "2002": 0.656, + "2003": 0.657, + "2004": 0.658, + "2005": 0.674, + "2006": 0.636, + "2007": 0.63, + "2008": 0.612, + "2009": 0.593, + "2010": 0.57, + "2011": 0.586, + "2012": 0.591, + "2013": 0.621, + "2014": 0.633, + "2015": 0.646, + "2016": 0.655, + "2017": 0.66, + "2018": 0.664, + "2019": 0.672, + "2020": 0.678, + "2021": 0.678 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr101", + "Region": "Antioquia (incl Medellin)", + "1990": 0.438, + "1991": 0.455, + "1992": 0.472, + "1993": 0.478, + "1994": 0.483, + "1995": 0.487, + "1996": 0.505, + "1997": 0.518, + "1998": 0.53, + "1999": 0.532, + "2000": 0.535, + "2001": 0.538, + "2002": 0.542, + "2003": 0.552, + "2004": 0.562, + "2005": 0.585, + "2006": 0.581, + "2007": 0.603, + "2008": 0.615, + "2009": 0.626, + "2010": 0.632, + "2011": 0.638, + "2012": 0.634, + "2013": 0.654, + "2014": 0.657, + "2015": 0.66, + "2016": 0.669, + "2017": 0.674, + "2018": 0.678, + "2019": 0.686, + "2020": 0.692, + "2021": 0.692 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr125", + "Region": "Arauca", + "1990": 0.509, + "1991": 0.527, + "1992": 0.546, + "1993": 0.553, + "1994": 0.559, + "1995": 0.563, + "1996": 0.578, + "1997": 0.589, + "1998": 0.599, + "1999": 0.596, + "2000": 0.596, + "2001": 0.59, + "2002": 0.584, + "2003": 0.585, + "2004": 0.586, + "2005": 0.6, + "2006": 0.585, + "2007": 0.597, + "2008": 0.599, + "2009": 0.6, + "2010": 0.596, + "2011": 0.601, + "2012": 0.595, + "2013": 0.614, + "2014": 0.615, + "2015": 0.617, + "2016": 0.625, + "2017": 0.629, + "2018": 0.633, + "2019": 0.641, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr102", + "Region": "Atlantico (incl Barranquilla)", + "1990": 0.515, + "1991": 0.533, + "1992": 0.553, + "1993": 0.561, + "1994": 0.567, + "1995": 0.571, + "1996": 0.587, + "1997": 0.597, + "1998": 0.608, + "1999": 0.605, + "2000": 0.604, + "2001": 0.607, + "2002": 0.609, + "2003": 0.619, + "2004": 0.629, + "2005": 0.653, + "2006": 0.638, + "2007": 0.653, + "2008": 0.657, + "2009": 0.659, + "2010": 0.657, + "2011": 0.668, + "2012": 0.667, + "2013": 0.692, + "2014": 0.699, + "2015": 0.706, + "2016": 0.716, + "2017": 0.721, + "2018": 0.726, + "2019": 0.734, + "2020": 0.741, + "2021": 0.741 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr103", + "Region": "Bogota D.C.", + "1990": 0.591, + "1991": 0.611, + "1992": 0.632, + "1993": 0.641, + "1994": 0.647, + "1995": 0.652, + "1996": 0.664, + "1997": 0.67, + "1998": 0.676, + "1999": 0.668, + "2000": 0.662, + "2001": 0.661, + "2002": 0.661, + "2003": 0.669, + "2004": 0.676, + "2005": 0.699, + "2006": 0.69, + "2007": 0.714, + "2008": 0.726, + "2009": 0.736, + "2010": 0.742, + "2011": 0.744, + "2012": 0.734, + "2013": 0.752, + "2014": 0.75, + "2015": 0.748, + "2016": 0.758, + "2017": 0.764, + "2018": 0.769, + "2019": 0.778, + "2020": 0.785, + "2021": 0.785 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr104", + "Region": "Bolivar (Sur and Norte)", + "1990": 0.476, + "1991": 0.494, + "1992": 0.513, + "1993": 0.52, + "1994": 0.525, + "1995": 0.529, + "1996": 0.551, + "1997": 0.568, + "1998": 0.584, + "1999": 0.589, + "2000": 0.594, + "2001": 0.588, + "2002": 0.583, + "2003": 0.584, + "2004": 0.586, + "2005": 0.601, + "2006": 0.594, + "2007": 0.614, + "2008": 0.623, + "2009": 0.632, + "2010": 0.636, + "2011": 0.641, + "2012": 0.635, + "2013": 0.654, + "2014": 0.656, + "2015": 0.658, + "2016": 0.667, + "2017": 0.671, + "2018": 0.676, + "2019": 0.683, + "2020": 0.689, + "2021": 0.689 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr105", + "Region": "Boyaca", + "1990": 0.394, + "1991": 0.41, + "1992": 0.427, + "1993": 0.433, + "1994": 0.438, + "1995": 0.441, + "1996": 0.457, + "1997": 0.468, + "1998": 0.478, + "1999": 0.478, + "2000": 0.479, + "2001": 0.484, + "2002": 0.489, + "2003": 0.501, + "2004": 0.513, + "2005": 0.536, + "2006": 0.541, + "2007": 0.566, + "2008": 0.583, + "2009": 0.601, + "2010": 0.612, + "2011": 0.62, + "2012": 0.617, + "2013": 0.641, + "2014": 0.646, + "2015": 0.651, + "2016": 0.66, + "2017": 0.664, + "2018": 0.667, + "2019": 0.675, + "2020": 0.679, + "2021": 0.679 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr106", + "Region": "Caldas", + "1990": 0.448, + "1991": 0.465, + "1992": 0.483, + "1993": 0.49, + "1994": 0.495, + "1995": 0.499, + "1996": 0.524, + "1997": 0.544, + "1998": 0.564, + "1999": 0.572, + "2000": 0.581, + "2001": 0.577, + "2002": 0.573, + "2003": 0.577, + "2004": 0.581, + "2005": 0.597, + "2006": 0.588, + "2007": 0.606, + "2008": 0.613, + "2009": 0.62, + "2010": 0.621, + "2011": 0.63, + "2012": 0.627, + "2013": 0.65, + "2014": 0.655, + "2015": 0.661, + "2016": 0.67, + "2017": 0.674, + "2018": 0.678, + "2019": 0.686, + "2020": 0.691, + "2021": 0.691 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr107", + "Region": "Caqueta", + "1990": 0.41, + "1991": 0.426, + "1992": 0.443, + "1993": 0.449, + "1994": 0.454, + "1995": 0.457, + "1996": 0.471, + "1997": 0.48, + "1998": 0.489, + "1999": 0.487, + "2000": 0.486, + "2001": 0.481, + "2002": 0.476, + "2003": 0.478, + "2004": 0.479, + "2005": 0.491, + "2006": 0.497, + "2007": 0.523, + "2008": 0.54, + "2009": 0.558, + "2010": 0.57, + "2011": 0.573, + "2012": 0.565, + "2013": 0.582, + "2014": 0.581, + "2015": 0.581, + "2016": 0.589, + "2017": 0.593, + "2018": 0.596, + "2019": 0.603, + "2020": 0.606, + "2021": 0.606 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr126", + "Region": "Casanare", + "1990": 0.551, + "1991": 0.571, + "1992": 0.592, + "1993": 0.6, + "1994": 0.606, + "1995": 0.61, + "1996": 0.628, + "1997": 0.639, + "1998": 0.65, + "1999": 0.648, + "2000": 0.647, + "2001": 0.64, + "2002": 0.634, + "2003": 0.635, + "2004": 0.637, + "2005": 0.652, + "2006": 0.626, + "2007": 0.629, + "2008": 0.621, + "2009": 0.612, + "2010": 0.599, + "2011": 0.606, + "2012": 0.603, + "2013": 0.624, + "2014": 0.628, + "2015": 0.632, + "2016": 0.641, + "2017": 0.645, + "2018": 0.649, + "2019": 0.656, + "2020": 0.661, + "2021": 0.661 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr108", + "Region": "Cauca", + "1990": 0.39, + "1991": 0.405, + "1992": 0.42, + "1993": 0.426, + "1994": 0.43, + "1995": 0.433, + "1996": 0.446, + "1997": 0.455, + "1998": 0.464, + "1999": 0.462, + "2000": 0.462, + "2001": 0.469, + "2002": 0.476, + "2003": 0.489, + "2004": 0.502, + "2005": 0.527, + "2006": 0.528, + "2007": 0.55, + "2008": 0.564, + "2009": 0.577, + "2010": 0.586, + "2011": 0.589, + "2012": 0.581, + "2013": 0.598, + "2014": 0.597, + "2015": 0.598, + "2016": 0.606, + "2017": 0.609, + "2018": 0.613, + "2019": 0.619, + "2020": 0.623, + "2021": 0.623 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr109", + "Region": "Cesar", + "1990": 0.379, + "1991": 0.393, + "1992": 0.408, + "1993": 0.413, + "1994": 0.418, + "1995": 0.421, + "1996": 0.453, + "1997": 0.482, + "1998": 0.512, + "1999": 0.53, + "2000": 0.55, + "2001": 0.541, + "2002": 0.531, + "2003": 0.529, + "2004": 0.527, + "2005": 0.536, + "2006": 0.536, + "2007": 0.558, + "2008": 0.571, + "2009": 0.583, + "2010": 0.591, + "2011": 0.598, + "2012": 0.594, + "2013": 0.616, + "2014": 0.619, + "2015": 0.623, + "2016": 0.632, + "2017": 0.636, + "2018": 0.64, + "2019": 0.647, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr112", + "Region": "Choco", + "1990": 0.425, + "1991": 0.442, + "1992": 0.46, + "1993": 0.467, + "1994": 0.472, + "1995": 0.475, + "1996": 0.492, + "1997": 0.503, + "1998": 0.514, + "1999": 0.513, + "2000": 0.514, + "2001": 0.521, + "2002": 0.529, + "2003": 0.543, + "2004": 0.558, + "2005": 0.585, + "2006": 0.573, + "2007": 0.585, + "2008": 0.587, + "2009": 0.59, + "2010": 0.587, + "2011": 0.594, + "2012": 0.59, + "2013": 0.611, + "2014": 0.615, + "2015": 0.619, + "2016": 0.627, + "2017": 0.631, + "2018": 0.634, + "2019": 0.641, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr110", + "Region": "Cordoba", + "1990": 0.406, + "1991": 0.423, + "1992": 0.44, + "1993": 0.447, + "1994": 0.452, + "1995": 0.455, + "1996": 0.476, + "1997": 0.492, + "1998": 0.509, + "1999": 0.513, + "2000": 0.519, + "2001": 0.521, + "2002": 0.524, + "2003": 0.534, + "2004": 0.544, + "2005": 0.565, + "2006": 0.553, + "2007": 0.563, + "2008": 0.563, + "2009": 0.564, + "2010": 0.56, + "2011": 0.567, + "2012": 0.565, + "2013": 0.586, + "2014": 0.59, + "2015": 0.595, + "2016": 0.603, + "2017": 0.607, + "2018": 0.61, + "2019": 0.617, + "2020": 0.621, + "2021": 0.621 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr111", + "Region": "Cundinamarca", + "1990": 0.375, + "1991": 0.39, + "1992": 0.405, + "1993": 0.411, + "1994": 0.416, + "1995": 0.418, + "1996": 0.435, + "1997": 0.447, + "1998": 0.458, + "1999": 0.46, + "2000": 0.462, + "2001": 0.475, + "2002": 0.487, + "2003": 0.505, + "2004": 0.524, + "2005": 0.555, + "2006": 0.555, + "2007": 0.577, + "2008": 0.59, + "2009": 0.603, + "2010": 0.611, + "2011": 0.621, + "2012": 0.62, + "2013": 0.644, + "2014": 0.651, + "2015": 0.658, + "2016": 0.667, + "2017": 0.671, + "2018": 0.676, + "2019": 0.684, + "2020": 0.689, + "2021": 0.689 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr130", + "Region": "Guainja", + "1990": 0.525, + "1991": 0.544, + "1992": 0.564, + "1993": 0.571, + "1994": 0.577, + "1995": 0.582, + "1996": 0.598, + "1997": 0.608, + "1998": 0.619, + "1999": 0.617, + "2000": 0.616, + "2001": 0.609, + "2002": 0.603, + "2003": 0.605, + "2004": 0.606, + "2005": 0.621, + "2006": 0.6, + "2007": 0.606, + "2008": 0.602, + "2009": 0.599, + "2010": 0.589, + "2011": 0.583, + "2012": 0.566, + "2013": 0.573, + "2014": 0.563, + "2015": 0.554, + "2016": 0.562, + "2017": 0.565, + "2018": 0.568, + "2019": 0.574, + "2020": 0.578, + "2021": 0.578 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr114", + "Region": "Guajira", + "1990": 0.424, + "1991": 0.442, + "1992": 0.46, + "1993": 0.467, + "1994": 0.472, + "1995": 0.475, + "1996": 0.491, + "1997": 0.502, + "1998": 0.512, + "1999": 0.51, + "2000": 0.509, + "2001": 0.514, + "2002": 0.519, + "2003": 0.531, + "2004": 0.542, + "2005": 0.565, + "2006": 0.557, + "2007": 0.574, + "2008": 0.582, + "2009": 0.589, + "2010": 0.592, + "2011": 0.601, + "2012": 0.601, + "2013": 0.624, + "2014": 0.631, + "2015": 0.638, + "2016": 0.646, + "2017": 0.65, + "2018": 0.654, + "2019": 0.662, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr131", + "Region": "Guaviare", + "1990": 0.475, + "1991": 0.492, + "1992": 0.511, + "1993": 0.518, + "1994": 0.523, + "1995": 0.527, + "1996": 0.542, + "1997": 0.552, + "1998": 0.562, + "1999": 0.56, + "2000": 0.559, + "2001": 0.553, + "2002": 0.548, + "2003": 0.549, + "2004": 0.551, + "2005": 0.564, + "2006": 0.558, + "2007": 0.576, + "2008": 0.584, + "2009": 0.592, + "2010": 0.595, + "2011": 0.607, + "2012": 0.609, + "2013": 0.636, + "2014": 0.645, + "2015": 0.654, + "2016": 0.663, + "2017": 0.667, + "2018": 0.671, + "2019": 0.679, + "2020": 0.683, + "2021": 0.683 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr113", + "Region": "Huila", + "1990": 0.431, + "1991": 0.447, + "1992": 0.464, + "1993": 0.471, + "1994": 0.476, + "1995": 0.479, + "1996": 0.496, + "1997": 0.508, + "1998": 0.52, + "1999": 0.52, + "2000": 0.522, + "2001": 0.517, + "2002": 0.512, + "2003": 0.513, + "2004": 0.515, + "2005": 0.527, + "2006": 0.524, + "2007": 0.543, + "2008": 0.554, + "2009": 0.564, + "2010": 0.569, + "2011": 0.569, + "2012": 0.558, + "2013": 0.571, + "2014": 0.567, + "2015": 0.564, + "2016": 0.571, + "2017": 0.575, + "2018": 0.578, + "2019": 0.585, + "2020": 0.589, + "2021": 0.589 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr115", + "Region": "Magdalena", + "1990": 0.431, + "1991": 0.447, + "1992": 0.464, + "1993": 0.471, + "1994": 0.476, + "1995": 0.479, + "1996": 0.499, + "1997": 0.515, + "1998": 0.53, + "1999": 0.535, + "2000": 0.54, + "2001": 0.538, + "2002": 0.537, + "2003": 0.542, + "2004": 0.548, + "2005": 0.565, + "2006": 0.559, + "2007": 0.577, + "2008": 0.585, + "2009": 0.593, + "2010": 0.596, + "2011": 0.601, + "2012": 0.595, + "2013": 0.613, + "2014": 0.614, + "2015": 0.616, + "2016": 0.624, + "2017": 0.628, + "2018": 0.632, + "2019": 0.639, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr116", + "Region": "Meta", + "1990": 0.52, + "1991": 0.539, + "1992": 0.558, + "1993": 0.566, + "1994": 0.572, + "1995": 0.576, + "1996": 0.598, + "1997": 0.614, + "1998": 0.63, + "1999": 0.634, + "2000": 0.639, + "2001": 0.615, + "2002": 0.591, + "2003": 0.576, + "2004": 0.56, + "2005": 0.557, + "2006": 0.553, + "2007": 0.574, + "2008": 0.584, + "2009": 0.595, + "2010": 0.601, + "2011": 0.614, + "2012": 0.616, + "2013": 0.644, + "2014": 0.654, + "2015": 0.664, + "2016": 0.674, + "2017": 0.678, + "2018": 0.683, + "2019": 0.691, + "2020": 0.696, + "2021": 0.696 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr117", + "Region": "Narino", + "1990": 0.332, + "1991": 0.345, + "1992": 0.359, + "1993": 0.364, + "1994": 0.368, + "1995": 0.371, + "1996": 0.394, + "1997": 0.414, + "1998": 0.433, + "1999": 0.443, + "2000": 0.454, + "2001": 0.468, + "2002": 0.482, + "2003": 0.502, + "2004": 0.522, + "2005": 0.554, + "2006": 0.547, + "2007": 0.563, + "2008": 0.57, + "2009": 0.578, + "2010": 0.579, + "2011": 0.583, + "2012": 0.577, + "2013": 0.595, + "2014": 0.595, + "2015": 0.597, + "2016": 0.605, + "2017": 0.608, + "2018": 0.612, + "2019": 0.618, + "2020": 0.622, + "2021": 0.622 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr118", + "Region": "Norte de Santander", + "1990": 0.442, + "1991": 0.458, + "1992": 0.476, + "1993": 0.482, + "1994": 0.487, + "1995": 0.491, + "1996": 0.503, + "1997": 0.51, + "1998": 0.517, + "1999": 0.512, + "2000": 0.509, + "2001": 0.509, + "2002": 0.509, + "2003": 0.516, + "2004": 0.523, + "2005": 0.541, + "2006": 0.536, + "2007": 0.552, + "2008": 0.56, + "2009": 0.568, + "2010": 0.571, + "2011": 0.583, + "2012": 0.584, + "2013": 0.61, + "2014": 0.619, + "2015": 0.628, + "2016": 0.637, + "2017": 0.641, + "2018": 0.644, + "2019": 0.652, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr127", + "Region": "Putumayo", + "1990": 0.525, + "1991": 0.543, + "1992": 0.562, + "1993": 0.569, + "1994": 0.575, + "1995": 0.579, + "1996": 0.595, + "1997": 0.605, + "1998": 0.615, + "1999": 0.613, + "2000": 0.612, + "2001": 0.606, + "2002": 0.6, + "2003": 0.601, + "2004": 0.602, + "2005": 0.616, + "2006": 0.589, + "2007": 0.591, + "2008": 0.581, + "2009": 0.572, + "2010": 0.558, + "2011": 0.569, + "2012": 0.57, + "2013": 0.595, + "2014": 0.602, + "2015": 0.611, + "2016": 0.619, + "2017": 0.623, + "2018": 0.626, + "2019": 0.633, + "2020": 0.637, + "2021": 0.637 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr119", + "Region": "Quindio", + "1990": 0.519, + "1991": 0.538, + "1992": 0.558, + "1993": 0.566, + "1994": 0.572, + "1995": 0.576, + "1996": 0.587, + "1997": 0.592, + "1998": 0.596, + "1999": 0.587, + "2000": 0.581, + "2001": 0.58, + "2002": 0.579, + "2003": 0.585, + "2004": 0.592, + "2005": 0.612, + "2006": 0.6, + "2007": 0.615, + "2008": 0.619, + "2009": 0.622, + "2010": 0.621, + "2011": 0.632, + "2012": 0.631, + "2013": 0.657, + "2014": 0.664, + "2015": 0.671, + "2016": 0.681, + "2017": 0.685, + "2018": 0.69, + "2019": 0.698, + "2020": 0.703, + "2021": 0.703 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr120", + "Region": "Risaralda", + "1990": 0.484, + "1991": 0.502, + "1992": 0.521, + "1993": 0.528, + "1994": 0.534, + "1995": 0.538, + "1996": 0.561, + "1997": 0.579, + "1998": 0.597, + "1999": 0.603, + "2000": 0.609, + "2001": 0.594, + "2002": 0.58, + "2003": 0.572, + "2004": 0.565, + "2005": 0.57, + "2006": 0.565, + "2007": 0.583, + "2008": 0.592, + "2009": 0.601, + "2010": 0.604, + "2011": 0.609, + "2012": 0.604, + "2013": 0.623, + "2014": 0.625, + "2015": 0.627, + "2016": 0.635, + "2017": 0.639, + "2018": 0.643, + "2019": 0.651, + "2020": 0.655, + "2021": 0.655 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr128", + "Region": "San Andres", + "1990": 0.579, + "1991": 0.599, + "1992": 0.619, + "1993": 0.627, + "1994": 0.634, + "1995": 0.638, + "1996": 0.655, + "1997": 0.665, + "1998": 0.676, + "1999": 0.674, + "2000": 0.673, + "2001": 0.666, + "2002": 0.659, + "2003": 0.66, + "2004": 0.661, + "2005": 0.677, + "2006": 0.663, + "2007": 0.683, + "2008": 0.691, + "2009": 0.696, + "2010": 0.698, + "2011": 0.7, + "2012": 0.691, + "2013": 0.709, + "2014": 0.708, + "2015": 0.706, + "2016": 0.716, + "2017": 0.722, + "2018": 0.727, + "2019": 0.736, + "2020": 0.743, + "2021": 0.743 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr121", + "Region": "Santander", + "1990": 0.421, + "1991": 0.437, + "1992": 0.454, + "1993": 0.461, + "1994": 0.466, + "1995": 0.469, + "1996": 0.488, + "1997": 0.502, + "1998": 0.516, + "1999": 0.519, + "2000": 0.523, + "2001": 0.523, + "2002": 0.522, + "2003": 0.529, + "2004": 0.536, + "2005": 0.555, + "2006": 0.551, + "2007": 0.571, + "2008": 0.582, + "2009": 0.593, + "2010": 0.598, + "2011": 0.615, + "2012": 0.62, + "2013": 0.652, + "2014": 0.665, + "2015": 0.679, + "2016": 0.688, + "2017": 0.692, + "2018": 0.697, + "2019": 0.705, + "2020": 0.71, + "2021": 0.71 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr122", + "Region": "Sucre", + "1990": 0.379, + "1991": 0.395, + "1992": 0.413, + "1993": 0.419, + "1994": 0.423, + "1995": 0.426, + "1996": 0.458, + "1997": 0.485, + "1998": 0.513, + "1999": 0.528, + "2000": 0.545, + "2001": 0.548, + "2002": 0.551, + "2003": 0.562, + "2004": 0.573, + "2005": 0.597, + "2006": 0.578, + "2007": 0.583, + "2008": 0.579, + "2009": 0.575, + "2010": 0.565, + "2011": 0.578, + "2012": 0.58, + "2013": 0.606, + "2014": 0.616, + "2015": 0.626, + "2016": 0.634, + "2017": 0.638, + "2018": 0.642, + "2019": 0.649, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr123", + "Region": "Tolima", + "1990": 0.407, + "1991": 0.423, + "1992": 0.439, + "1993": 0.446, + "1994": 0.45, + "1995": 0.454, + "1996": 0.465, + "1997": 0.472, + "1998": 0.478, + "1999": 0.473, + "2000": 0.47, + "2001": 0.475, + "2002": 0.479, + "2003": 0.49, + "2004": 0.501, + "2005": 0.523, + "2006": 0.525, + "2007": 0.551, + "2008": 0.567, + "2009": 0.584, + "2010": 0.595, + "2011": 0.603, + "2012": 0.6, + "2013": 0.622, + "2014": 0.627, + "2015": 0.632, + "2016": 0.64, + "2017": 0.644, + "2018": 0.648, + "2019": 0.655, + "2020": 0.66, + "2021": 0.66 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr124", + "Region": "Valle (incl Cali)", + "1990": 0.49, + "1991": 0.508, + "1992": 0.526, + "1993": 0.534, + "1994": 0.539, + "1995": 0.543, + "1996": 0.557, + "1997": 0.565, + "1998": 0.573, + "1999": 0.57, + "2000": 0.567, + "2001": 0.567, + "2002": 0.567, + "2003": 0.574, + "2004": 0.581, + "2005": 0.601, + "2006": 0.593, + "2007": 0.612, + "2008": 0.621, + "2009": 0.629, + "2010": 0.633, + "2011": 0.645, + "2012": 0.646, + "2013": 0.673, + "2014": 0.682, + "2015": 0.691, + "2016": 0.701, + "2017": 0.706, + "2018": 0.71, + "2019": 0.719, + "2020": 0.725, + "2021": 0.725 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr132", + "Region": "Vaupis", + "1990": 0.568, + "1991": 0.588, + "1992": 0.609, + "1993": 0.617, + "1994": 0.624, + "1995": 0.628, + "1996": 0.646, + "1997": 0.657, + "1998": 0.668, + "1999": 0.666, + "2000": 0.665, + "2001": 0.658, + "2002": 0.651, + "2003": 0.653, + "2004": 0.654, + "2005": 0.67, + "2006": 0.643, + "2007": 0.647, + "2008": 0.639, + "2009": 0.631, + "2010": 0.618, + "2011": 0.614, + "2012": 0.599, + "2013": 0.609, + "2014": 0.602, + "2015": 0.595, + "2016": 0.603, + "2017": 0.606, + "2018": 0.61, + "2019": 0.616, + "2020": 0.62, + "2021": 0.62 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr133", + "Region": "Vichada", + "1990": 0.516, + "1991": 0.534, + "1992": 0.554, + "1993": 0.561, + "1994": 0.567, + "1995": 0.571, + "1996": 0.587, + "1997": 0.597, + "1998": 0.608, + "1999": 0.606, + "2000": 0.605, + "2001": 0.599, + "2002": 0.592, + "2003": 0.594, + "2004": 0.595, + "2005": 0.61, + "2006": 0.582, + "2007": 0.582, + "2008": 0.571, + "2009": 0.56, + "2010": 0.544, + "2011": 0.563, + "2012": 0.572, + "2013": 0.604, + "2014": 0.62, + "2015": 0.636, + "2016": 0.645, + "2017": 0.649, + "2018": 0.654, + "2019": 0.661, + "2020": 0.666, + "2021": 0.666 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "National", + "GDLCODE": "COMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.332, + "2001": 0.341, + "2002": 0.351, + "2003": 0.362, + "2004": 0.367, + "2005": 0.379, + "2006": 0.391, + "2007": 0.402, + "2008": 0.414, + "2009": 0.426, + "2010": 0.438, + "2011": 0.45, + "2012": 0.461, + "2013": 0.468, + "2014": 0.47, + "2015": 0.475, + "2016": 0.481, + "2017": 0.487, + "2018": 0.494, + "2019": 0.501, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr103", + "Region": "Anjouan (Ndzouani)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.291, + "2001": 0.301, + "2002": 0.311, + "2003": 0.322, + "2004": 0.327, + "2005": 0.339, + "2006": 0.351, + "2007": 0.362, + "2008": 0.374, + "2009": 0.385, + "2010": 0.397, + "2011": 0.409, + "2012": 0.42, + "2013": 0.426, + "2014": 0.428, + "2015": 0.433, + "2016": 0.438, + "2017": 0.444, + "2018": 0.45, + "2019": 0.456, + "2020": 0.456, + "2021": 0.456 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr101", + "Region": "Grande Comore (Ngazidja)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.362, + "2001": 0.373, + "2002": 0.384, + "2003": 0.396, + "2004": 0.402, + "2005": 0.415, + "2006": 0.428, + "2007": 0.441, + "2008": 0.453, + "2009": 0.466, + "2010": 0.479, + "2011": 0.492, + "2012": 0.505, + "2013": 0.512, + "2014": 0.514, + "2015": 0.521, + "2016": 0.527, + "2017": 0.533, + "2018": 0.541, + "2019": 0.548, + "2020": 0.548, + "2021": 0.548 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr102", + "Region": "Moheli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.34, + "2001": 0.347, + "2002": 0.355, + "2003": 0.364, + "2004": 0.367, + "2005": 0.378, + "2006": 0.388, + "2007": 0.399, + "2008": 0.409, + "2009": 0.419, + "2010": 0.43, + "2011": 0.44, + "2012": 0.451, + "2013": 0.457, + "2014": 0.459, + "2015": 0.465, + "2016": 0.47, + "2017": 0.476, + "2018": 0.483, + "2019": 0.489, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "National", + "GDLCODE": "COGt", + "Region": "Total", + "1990": 0.452, + "1991": 0.451, + "1992": 0.453, + "1993": 0.453, + "1994": 0.454, + "1995": 0.454, + "1996": 0.452, + "1997": 0.45, + "1998": 0.448, + "1999": 0.446, + "2000": 0.444, + "2001": 0.441, + "2002": 0.438, + "2003": 0.432, + "2004": 0.439, + "2005": 0.446, + "2006": 0.452, + "2007": 0.458, + "2008": 0.464, + "2009": 0.47, + "2010": 0.476, + "2011": 0.484, + "2012": 0.493, + "2013": 0.502, + "2014": 0.511, + "2015": 0.52, + "2016": 0.527, + "2017": 0.534, + "2018": 0.541, + "2019": 0.548, + "2020": 0.548, + "2021": 0.548 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr204", + "Region": " Bouenza", + "1990": 0.414, + "1991": 0.413, + "1992": 0.414, + "1993": 0.414, + "1994": 0.413, + "1995": 0.412, + "1996": 0.41, + "1997": 0.408, + "1998": 0.406, + "1999": 0.404, + "2000": 0.402, + "2001": 0.399, + "2002": 0.395, + "2003": 0.39, + "2004": 0.396, + "2005": 0.402, + "2006": 0.403, + "2007": 0.403, + "2008": 0.403, + "2009": 0.403, + "2010": 0.404, + "2011": 0.406, + "2012": 0.41, + "2013": 0.414, + "2014": 0.418, + "2015": 0.423, + "2016": 0.429, + "2017": 0.435, + "2018": 0.441, + "2019": 0.447, + "2020": 0.447, + "2021": 0.447 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr211", + "Region": " Brazzaville", + "1990": 0.515, + "1991": 0.515, + "1992": 0.518, + "1993": 0.519, + "1994": 0.519, + "1995": 0.52, + "1996": 0.519, + "1997": 0.517, + "1998": 0.516, + "1999": 0.514, + "2000": 0.513, + "2001": 0.509, + "2002": 0.506, + "2003": 0.5, + "2004": 0.508, + "2005": 0.515, + "2006": 0.519, + "2007": 0.523, + "2008": 0.527, + "2009": 0.531, + "2010": 0.535, + "2011": 0.543, + "2012": 0.553, + "2013": 0.563, + "2014": 0.573, + "2015": 0.584, + "2016": 0.591, + "2017": 0.599, + "2018": 0.606, + "2019": 0.614, + "2020": 0.614, + "2021": 0.614 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr207", + "Region": " Cuvette", + "1990": 0.44, + "1991": 0.438, + "1992": 0.439, + "1993": 0.439, + "1994": 0.438, + "1995": 0.437, + "1996": 0.435, + "1997": 0.432, + "1998": 0.43, + "1999": 0.428, + "2000": 0.425, + "2001": 0.422, + "2002": 0.418, + "2003": 0.412, + "2004": 0.419, + "2005": 0.426, + "2006": 0.434, + "2007": 0.443, + "2008": 0.451, + "2009": 0.46, + "2010": 0.468, + "2011": 0.478, + "2012": 0.481, + "2013": 0.484, + "2014": 0.487, + "2015": 0.49, + "2016": 0.497, + "2017": 0.504, + "2018": 0.511, + "2019": 0.518, + "2020": 0.518, + "2021": 0.518 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr208", + "Region": " Cuvette Ouest", + "1990": 0.429, + "1991": 0.428, + "1992": 0.429, + "1993": 0.428, + "1994": 0.428, + "1995": 0.427, + "1996": 0.425, + "1997": 0.422, + "1998": 0.42, + "1999": 0.418, + "2000": 0.416, + "2001": 0.412, + "2002": 0.409, + "2003": 0.403, + "2004": 0.41, + "2005": 0.416, + "2006": 0.423, + "2007": 0.431, + "2008": 0.438, + "2009": 0.445, + "2010": 0.453, + "2011": 0.462, + "2012": 0.461, + "2013": 0.46, + "2014": 0.46, + "2015": 0.459, + "2016": 0.466, + "2017": 0.472, + "2018": 0.479, + "2019": 0.486, + "2020": 0.486, + "2021": 0.486 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr201", + "Region": " Kouilou", + "1990": 0.342, + "1991": 0.34, + "1992": 0.341, + "1993": 0.341, + "1994": 0.34, + "1995": 0.339, + "1996": 0.338, + "1997": 0.336, + "1998": 0.334, + "1999": 0.332, + "2000": 0.33, + "2001": 0.327, + "2002": 0.325, + "2003": 0.32, + "2004": 0.325, + "2005": 0.331, + "2006": 0.336, + "2007": 0.341, + "2008": 0.346, + "2009": 0.351, + "2010": 0.356, + "2011": 0.362, + "2012": 0.369, + "2013": 0.376, + "2014": 0.384, + "2015": 0.391, + "2016": 0.396, + "2017": 0.402, + "2018": 0.407, + "2019": 0.413, + "2020": 0.413, + "2021": 0.413 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr203", + "Region": " Lekoumou", + "1990": 0.377, + "1991": 0.376, + "1992": 0.377, + "1993": 0.376, + "1994": 0.376, + "1995": 0.375, + "1996": 0.373, + "1997": 0.371, + "1998": 0.369, + "1999": 0.367, + "2000": 0.365, + "2001": 0.362, + "2002": 0.359, + "2003": 0.354, + "2004": 0.36, + "2005": 0.366, + "2006": 0.371, + "2007": 0.377, + "2008": 0.382, + "2009": 0.388, + "2010": 0.394, + "2011": 0.401, + "2012": 0.402, + "2013": 0.403, + "2014": 0.403, + "2015": 0.404, + "2016": 0.41, + "2017": 0.416, + "2018": 0.422, + "2019": 0.429, + "2020": 0.429, + "2021": 0.429 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr210", + "Region": " Likouala", + "1990": 0.446, + "1991": 0.445, + "1992": 0.447, + "1993": 0.447, + "1994": 0.447, + "1995": 0.447, + "1996": 0.445, + "1997": 0.444, + "1998": 0.442, + "1999": 0.44, + "2000": 0.438, + "2001": 0.435, + "2002": 0.432, + "2003": 0.426, + "2004": 0.433, + "2005": 0.44, + "2006": 0.44, + "2007": 0.44, + "2008": 0.441, + "2009": 0.442, + "2010": 0.443, + "2011": 0.446, + "2012": 0.45, + "2013": 0.455, + "2014": 0.46, + "2015": 0.465, + "2016": 0.471, + "2017": 0.478, + "2018": 0.485, + "2019": 0.491, + "2020": 0.491, + "2021": 0.491 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr202", + "Region": " Niari", + "1990": 0.396, + "1991": 0.394, + "1992": 0.396, + "1993": 0.395, + "1994": 0.395, + "1995": 0.394, + "1996": 0.392, + "1997": 0.39, + "1998": 0.388, + "1999": 0.386, + "2000": 0.384, + "2001": 0.381, + "2002": 0.378, + "2003": 0.373, + "2004": 0.379, + "2005": 0.385, + "2006": 0.392, + "2007": 0.399, + "2008": 0.407, + "2009": 0.414, + "2010": 0.421, + "2011": 0.43, + "2012": 0.437, + "2013": 0.444, + "2014": 0.452, + "2015": 0.46, + "2016": 0.466, + "2017": 0.472, + "2018": 0.479, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr206", + "Region": " Plateaux", + "1990": 0.393, + "1991": 0.392, + "1992": 0.393, + "1993": 0.392, + "1994": 0.392, + "1995": 0.391, + "1996": 0.389, + "1997": 0.387, + "1998": 0.384, + "1999": 0.382, + "2000": 0.38, + "2001": 0.377, + "2002": 0.374, + "2003": 0.368, + "2004": 0.375, + "2005": 0.381, + "2006": 0.385, + "2007": 0.39, + "2008": 0.395, + "2009": 0.399, + "2010": 0.404, + "2011": 0.411, + "2012": 0.418, + "2013": 0.425, + "2014": 0.433, + "2015": 0.44, + "2016": 0.447, + "2017": 0.453, + "2018": 0.46, + "2019": 0.466, + "2020": 0.466, + "2021": 0.466 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr212", + "Region": " Pointe Noire", + "1990": 0.477, + "1991": 0.477, + "1992": 0.48, + "1993": 0.48, + "1994": 0.481, + "1995": 0.482, + "1996": 0.48, + "1997": 0.479, + "1998": 0.477, + "1999": 0.476, + "2000": 0.474, + "2001": 0.471, + "2002": 0.468, + "2003": 0.463, + "2004": 0.47, + "2005": 0.477, + "2006": 0.481, + "2007": 0.486, + "2008": 0.49, + "2009": 0.495, + "2010": 0.499, + "2011": 0.507, + "2012": 0.512, + "2013": 0.517, + "2014": 0.523, + "2015": 0.529, + "2016": 0.536, + "2017": 0.542, + "2018": 0.549, + "2019": 0.556, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr205", + "Region": " Pool", + "1990": 0.381, + "1991": 0.379, + "1992": 0.38, + "1993": 0.38, + "1994": 0.379, + "1995": 0.378, + "1996": 0.376, + "1997": 0.374, + "1998": 0.371, + "1999": 0.369, + "2000": 0.367, + "2001": 0.364, + "2002": 0.361, + "2003": 0.356, + "2004": 0.362, + "2005": 0.367, + "2006": 0.372, + "2007": 0.376, + "2008": 0.38, + "2009": 0.384, + "2010": 0.388, + "2011": 0.394, + "2012": 0.391, + "2013": 0.389, + "2014": 0.386, + "2015": 0.384, + "2016": 0.389, + "2017": 0.394, + "2018": 0.4, + "2019": 0.405, + "2020": 0.405, + "2021": 0.405 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr209", + "Region": " Sangha", + "1990": 0.36, + "1991": 0.359, + "1992": 0.361, + "1993": 0.361, + "1994": 0.361, + "1995": 0.361, + "1996": 0.359, + "1997": 0.358, + "1998": 0.356, + "1999": 0.355, + "2000": 0.353, + "2001": 0.351, + "2002": 0.348, + "2003": 0.343, + "2004": 0.349, + "2005": 0.354, + "2006": 0.365, + "2007": 0.376, + "2008": 0.386, + "2009": 0.397, + "2010": 0.409, + "2011": 0.422, + "2012": 0.431, + "2013": 0.441, + "2014": 0.451, + "2015": 0.46, + "2016": 0.467, + "2017": 0.473, + "2018": 0.48, + "2019": 0.487, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "National", + "GDLCODE": "CODt", + "Region": "Total", + "1990": 0.305, + "1991": 0.31, + "1992": 0.315, + "1993": 0.321, + "1994": 0.326, + "1995": 0.331, + "1996": 0.337, + "1997": 0.342, + "1998": 0.348, + "1999": 0.354, + "2000": 0.359, + "2001": 0.365, + "2002": 0.371, + "2003": 0.377, + "2004": 0.383, + "2005": 0.389, + "2006": 0.394, + "2007": 0.4, + "2008": 0.424, + "2009": 0.43, + "2010": 0.442, + "2011": 0.456, + "2012": 0.454, + "2013": 0.466, + "2014": 0.475, + "2015": 0.485, + "2016": 0.495, + "2017": 0.5, + "2018": 0.506, + "2019": 0.507, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr103", + "Region": "Bandundu", + "1990": 0.295, + "1991": 0.3, + "1992": 0.305, + "1993": 0.31, + "1994": 0.315, + "1995": 0.32, + "1996": 0.325, + "1997": 0.331, + "1998": 0.336, + "1999": 0.342, + "2000": 0.347, + "2001": 0.353, + "2002": 0.358, + "2003": 0.364, + "2004": 0.37, + "2005": 0.376, + "2006": 0.381, + "2007": 0.387, + "2008": 0.427, + "2009": 0.452, + "2010": 0.483, + "2011": 0.494, + "2012": 0.489, + "2013": 0.498, + "2014": 0.5, + "2015": 0.501, + "2016": 0.503, + "2017": 0.5, + "2018": 0.498, + "2019": 0.499, + "2020": 0.499, + "2021": 0.499 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr102", + "Region": "Bas-Congo", + "1990": 0.301, + "1991": 0.306, + "1992": 0.311, + "1993": 0.316, + "1994": 0.321, + "1995": 0.326, + "1996": 0.332, + "1997": 0.337, + "1998": 0.343, + "1999": 0.348, + "2000": 0.354, + "2001": 0.36, + "2002": 0.366, + "2003": 0.371, + "2004": 0.377, + "2005": 0.383, + "2006": 0.389, + "2007": 0.395, + "2008": 0.426, + "2009": 0.44, + "2010": 0.462, + "2011": 0.465, + "2012": 0.453, + "2013": 0.455, + "2014": 0.464, + "2015": 0.472, + "2016": 0.481, + "2017": 0.485, + "2018": 0.489, + "2019": 0.49, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr104", + "Region": "Equateur", + "1990": 0.283, + "1991": 0.287, + "1992": 0.292, + "1993": 0.297, + "1994": 0.302, + "1995": 0.307, + "1996": 0.312, + "1997": 0.317, + "1998": 0.322, + "1999": 0.327, + "2000": 0.332, + "2001": 0.338, + "2002": 0.343, + "2003": 0.348, + "2004": 0.354, + "2005": 0.359, + "2006": 0.365, + "2007": 0.37, + "2008": 0.392, + "2009": 0.396, + "2010": 0.407, + "2011": 0.427, + "2012": 0.432, + "2013": 0.45, + "2014": 0.459, + "2015": 0.468, + "2016": 0.478, + "2017": 0.483, + "2018": 0.488, + "2019": 0.489, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr111", + "Region": "Kasai Occidental", + "1990": 0.28, + "1991": 0.284, + "1992": 0.289, + "1993": 0.294, + "1994": 0.298, + "1995": 0.303, + "1996": 0.308, + "1997": 0.313, + "1998": 0.319, + "1999": 0.324, + "2000": 0.329, + "2001": 0.334, + "2002": 0.34, + "2003": 0.345, + "2004": 0.35, + "2005": 0.356, + "2006": 0.361, + "2007": 0.367, + "2008": 0.392, + "2009": 0.401, + "2010": 0.416, + "2011": 0.433, + "2012": 0.434, + "2013": 0.448, + "2014": 0.449, + "2015": 0.45, + "2016": 0.45, + "2017": 0.447, + "2018": 0.443, + "2019": 0.444, + "2020": 0.444, + "2021": 0.444 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr110", + "Region": "Kasai Oriental", + "1990": 0.313, + "1991": 0.318, + "1992": 0.323, + "1993": 0.329, + "1994": 0.334, + "1995": 0.34, + "1996": 0.345, + "1997": 0.351, + "1998": 0.357, + "1999": 0.362, + "2000": 0.368, + "2001": 0.374, + "2002": 0.38, + "2003": 0.386, + "2004": 0.392, + "2005": 0.398, + "2006": 0.404, + "2007": 0.41, + "2008": 0.435, + "2009": 0.443, + "2010": 0.457, + "2011": 0.47, + "2012": 0.468, + "2013": 0.479, + "2014": 0.485, + "2015": 0.491, + "2016": 0.497, + "2017": 0.498, + "2018": 0.5, + "2019": 0.501, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr109", + "Region": "Katanga", + "1990": 0.323, + "1991": 0.328, + "1992": 0.334, + "1993": 0.339, + "1994": 0.345, + "1995": 0.351, + "1996": 0.356, + "1997": 0.362, + "1998": 0.368, + "1999": 0.374, + "2000": 0.38, + "2001": 0.386, + "2002": 0.393, + "2003": 0.399, + "2004": 0.405, + "2005": 0.411, + "2006": 0.418, + "2007": 0.424, + "2008": 0.423, + "2009": 0.405, + "2010": 0.392, + "2011": 0.417, + "2012": 0.428, + "2013": 0.45, + "2014": 0.456, + "2015": 0.463, + "2016": 0.469, + "2017": 0.47, + "2018": 0.472, + "2019": 0.473, + "2020": 0.473, + "2021": 0.473 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr101", + "Region": "Kinshasa", + "1990": 0.43, + "1991": 0.437, + "1992": 0.445, + "1993": 0.452, + "1994": 0.459, + "1995": 0.467, + "1996": 0.475, + "1997": 0.483, + "1998": 0.491, + "1999": 0.499, + "2000": 0.507, + "2001": 0.515, + "2002": 0.523, + "2003": 0.532, + "2004": 0.54, + "2005": 0.549, + "2006": 0.557, + "2007": 0.566, + "2008": 0.597, + "2009": 0.607, + "2010": 0.625, + "2011": 0.631, + "2012": 0.62, + "2013": 0.624, + "2014": 0.628, + "2015": 0.631, + "2016": 0.634, + "2017": 0.63, + "2018": 0.626, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr108", + "Region": "Maniema", + "1990": 0.315, + "1991": 0.32, + "1992": 0.325, + "1993": 0.33, + "1994": 0.336, + "1995": 0.341, + "1996": 0.347, + "1997": 0.352, + "1998": 0.358, + "1999": 0.364, + "2000": 0.37, + "2001": 0.376, + "2002": 0.382, + "2003": 0.388, + "2004": 0.394, + "2005": 0.4, + "2006": 0.406, + "2007": 0.412, + "2008": 0.429, + "2009": 0.427, + "2010": 0.432, + "2011": 0.446, + "2012": 0.444, + "2013": 0.456, + "2014": 0.458, + "2015": 0.46, + "2016": 0.462, + "2017": 0.46, + "2018": 0.458, + "2019": 0.459, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr106", + "Region": "Nord-Kivu", + "1990": 0.207, + "1991": 0.21, + "1992": 0.213, + "1993": 0.217, + "1994": 0.22, + "1995": 0.224, + "1996": 0.228, + "1997": 0.231, + "1998": 0.235, + "1999": 0.239, + "2000": 0.243, + "2001": 0.247, + "2002": 0.251, + "2003": 0.254, + "2004": 0.258, + "2005": 0.262, + "2006": 0.266, + "2007": 0.27, + "2008": 0.308, + "2009": 0.333, + "2010": 0.364, + "2011": 0.381, + "2012": 0.384, + "2013": 0.398, + "2014": 0.419, + "2015": 0.441, + "2016": 0.463, + "2017": 0.48, + "2018": 0.498, + "2019": 0.499, + "2020": 0.499, + "2021": 0.499 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr105", + "Region": "Orientale", + "1990": 0.231, + "1991": 0.234, + "1992": 0.238, + "1993": 0.242, + "1994": 0.246, + "1995": 0.25, + "1996": 0.254, + "1997": 0.258, + "1998": 0.263, + "1999": 0.267, + "2000": 0.271, + "2001": 0.275, + "2002": 0.28, + "2003": 0.284, + "2004": 0.289, + "2005": 0.293, + "2006": 0.297, + "2007": 0.302, + "2008": 0.339, + "2009": 0.362, + "2010": 0.392, + "2011": 0.4, + "2012": 0.395, + "2013": 0.402, + "2014": 0.415, + "2015": 0.428, + "2016": 0.44, + "2017": 0.449, + "2018": 0.458, + "2019": 0.459, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr107", + "Region": "Sud-Kivu", + "1990": 0.279, + "1991": 0.283, + "1992": 0.288, + "1993": 0.293, + "1994": 0.297, + "1995": 0.302, + "1996": 0.307, + "1997": 0.312, + "1998": 0.317, + "1999": 0.323, + "2000": 0.328, + "2001": 0.333, + "2002": 0.338, + "2003": 0.344, + "2004": 0.349, + "2005": 0.354, + "2006": 0.36, + "2007": 0.365, + "2008": 0.386, + "2009": 0.39, + "2010": 0.4, + "2011": 0.401, + "2012": 0.388, + "2013": 0.388, + "2014": 0.411, + "2015": 0.434, + "2016": 0.458, + "2017": 0.478, + "2018": 0.498, + "2019": 0.499, + "2020": 0.499, + "2021": 0.499 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "National", + "GDLCODE": "CRIt", + "Region": "Total", + "1990": 0.48, + "1991": 0.486, + "1992": 0.502, + "1993": 0.514, + "1994": 0.519, + "1995": 0.531, + "1996": 0.534, + "1997": 0.544, + "1998": 0.555, + "1999": 0.559, + "2000": 0.558, + "2001": 0.568, + "2002": 0.578, + "2003": 0.587, + "2004": 0.592, + "2005": 0.606, + "2006": 0.615, + "2007": 0.63, + "2008": 0.648, + "2009": 0.659, + "2010": 0.663, + "2011": 0.676, + "2012": 0.683, + "2013": 0.696, + "2014": 0.711, + "2015": 0.709, + "2016": 0.714, + "2017": 0.723, + "2018": 0.732, + "2019": 0.752, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr102", + "Region": "Alajuela", + "1990": 0.478, + "1991": 0.483, + "1992": 0.5, + "1993": 0.512, + "1994": 0.516, + "1995": 0.528, + "1996": 0.532, + "1997": 0.542, + "1998": 0.553, + "1999": 0.556, + "2000": 0.555, + "2001": 0.565, + "2002": 0.575, + "2003": 0.584, + "2004": 0.589, + "2005": 0.603, + "2006": 0.612, + "2007": 0.626, + "2008": 0.644, + "2009": 0.655, + "2010": 0.659, + "2011": 0.672, + "2012": 0.677, + "2013": 0.688, + "2014": 0.701, + "2015": 0.698, + "2016": 0.7, + "2017": 0.708, + "2018": 0.714, + "2019": 0.734, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr103", + "Region": "Cartago", + "1990": 0.493, + "1991": 0.499, + "1992": 0.516, + "1993": 0.527, + "1994": 0.532, + "1995": 0.544, + "1996": 0.548, + "1997": 0.558, + "1998": 0.569, + "1999": 0.573, + "2000": 0.573, + "2001": 0.583, + "2002": 0.593, + "2003": 0.602, + "2004": 0.608, + "2005": 0.622, + "2006": 0.632, + "2007": 0.647, + "2008": 0.665, + "2009": 0.677, + "2010": 0.682, + "2011": 0.695, + "2012": 0.698, + "2013": 0.705, + "2014": 0.716, + "2015": 0.709, + "2016": 0.708, + "2017": 0.713, + "2018": 0.716, + "2019": 0.736, + "2020": 0.737, + "2021": 0.737 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr105", + "Region": "Guanacaste", + "1990": 0.451, + "1991": 0.456, + "1992": 0.472, + "1993": 0.483, + "1994": 0.487, + "1995": 0.498, + "1996": 0.502, + "1997": 0.511, + "1998": 0.521, + "1999": 0.525, + "2000": 0.524, + "2001": 0.534, + "2002": 0.543, + "2003": 0.551, + "2004": 0.556, + "2005": 0.569, + "2006": 0.578, + "2007": 0.592, + "2008": 0.608, + "2009": 0.619, + "2010": 0.624, + "2011": 0.636, + "2012": 0.644, + "2013": 0.657, + "2014": 0.673, + "2015": 0.673, + "2016": 0.679, + "2017": 0.689, + "2018": 0.698, + "2019": 0.718, + "2020": 0.719, + "2021": 0.719 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr104", + "Region": "Heredia", + "1990": 0.533, + "1991": 0.539, + "1992": 0.557, + "1993": 0.57, + "1994": 0.576, + "1995": 0.589, + "1996": 0.593, + "1997": 0.604, + "1998": 0.616, + "1999": 0.62, + "2000": 0.619, + "2001": 0.63, + "2002": 0.641, + "2003": 0.651, + "2004": 0.657, + "2005": 0.672, + "2006": 0.682, + "2007": 0.699, + "2008": 0.718, + "2009": 0.731, + "2010": 0.735, + "2011": 0.75, + "2012": 0.756, + "2013": 0.769, + "2014": 0.785, + "2015": 0.781, + "2016": 0.784, + "2017": 0.793, + "2018": 0.8, + "2019": 0.822, + "2020": 0.824, + "2021": 0.824 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr107", + "Region": "Limon", + "1990": 0.416, + "1991": 0.421, + "1992": 0.436, + "1993": 0.446, + "1994": 0.45, + "1995": 0.46, + "1996": 0.463, + "1997": 0.472, + "1998": 0.481, + "1999": 0.485, + "2000": 0.484, + "2001": 0.493, + "2002": 0.501, + "2003": 0.509, + "2004": 0.514, + "2005": 0.526, + "2006": 0.534, + "2007": 0.547, + "2008": 0.562, + "2009": 0.572, + "2010": 0.576, + "2011": 0.587, + "2012": 0.595, + "2013": 0.606, + "2014": 0.621, + "2015": 0.62, + "2016": 0.625, + "2017": 0.634, + "2018": 0.642, + "2019": 0.661, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr106", + "Region": "Puntarenas", + "1990": 0.426, + "1991": 0.431, + "1992": 0.446, + "1993": 0.456, + "1994": 0.46, + "1995": 0.471, + "1996": 0.474, + "1997": 0.483, + "1998": 0.492, + "1999": 0.496, + "2000": 0.495, + "2001": 0.505, + "2002": 0.513, + "2003": 0.521, + "2004": 0.526, + "2005": 0.538, + "2006": 0.546, + "2007": 0.559, + "2008": 0.575, + "2009": 0.585, + "2010": 0.59, + "2011": 0.601, + "2012": 0.612, + "2013": 0.628, + "2014": 0.646, + "2015": 0.649, + "2016": 0.658, + "2017": 0.671, + "2018": 0.682, + "2019": 0.702, + "2020": 0.703, + "2021": 0.703 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr101", + "Region": "San Jose", + "1990": 0.504, + "1991": 0.51, + "1992": 0.528, + "1993": 0.54, + "1994": 0.545, + "1995": 0.558, + "1996": 0.561, + "1997": 0.572, + "1998": 0.584, + "1999": 0.587, + "2000": 0.586, + "2001": 0.597, + "2002": 0.607, + "2003": 0.616, + "2004": 0.622, + "2005": 0.636, + "2006": 0.646, + "2007": 0.661, + "2008": 0.68, + "2009": 0.691, + "2010": 0.695, + "2011": 0.708, + "2012": 0.717, + "2013": 0.732, + "2014": 0.749, + "2015": 0.748, + "2016": 0.753, + "2017": 0.764, + "2018": 0.774, + "2019": 0.795, + "2020": 0.796, + "2021": 0.796 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "National", + "GDLCODE": "CIVt", + "Region": "Total", + "1990": 0.307, + "1991": 0.317, + "1992": 0.327, + "1993": 0.337, + "1994": 0.347, + "1995": 0.357, + "1996": 0.371, + "1997": 0.386, + "1998": 0.4, + "1999": 0.4, + "2000": 0.399, + "2001": 0.399, + "2002": 0.398, + "2003": 0.398, + "2004": 0.398, + "2005": 0.397, + "2006": 0.397, + "2007": 0.396, + "2008": 0.396, + "2009": 0.395, + "2010": 0.395, + "2011": 0.394, + "2012": 0.394, + "2013": 0.394, + "2014": 0.393, + "2015": 0.408, + "2016": 0.427, + "2017": 0.444, + "2018": 0.454, + "2019": 0.465, + "2020": 0.47, + "2021": 0.47 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr101", + "Region": "Centre", + "1990": 0.269, + "1991": 0.277, + "1992": 0.285, + "1993": 0.293, + "1994": 0.302, + "1995": 0.309, + "1996": 0.32, + "1997": 0.33, + "1998": 0.341, + "1999": 0.341, + "2000": 0.36, + "2001": 0.377, + "2002": 0.394, + "2003": 0.41, + "2004": 0.426, + "2005": 0.44, + "2006": 0.428, + "2007": 0.416, + "2008": 0.404, + "2009": 0.393, + "2010": 0.382, + "2011": 0.372, + "2012": 0.368, + "2013": 0.365, + "2014": 0.363, + "2015": 0.373, + "2016": 0.39, + "2017": 0.406, + "2018": 0.415, + "2019": 0.425, + "2020": 0.431, + "2021": 0.431 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr102", + "Region": "Centre Est", + "1990": 0.237, + "1991": 0.244, + "1992": 0.252, + "1993": 0.26, + "1994": 0.267, + "1995": 0.269, + "1996": 0.274, + "1997": 0.279, + "1998": 0.283, + "1999": 0.279, + "2000": 0.291, + "2001": 0.303, + "2002": 0.314, + "2003": 0.325, + "2004": 0.335, + "2005": 0.345, + "2006": 0.357, + "2007": 0.369, + "2008": 0.38, + "2009": 0.391, + "2010": 0.401, + "2011": 0.411, + "2012": 0.402, + "2013": 0.395, + "2014": 0.389, + "2015": 0.398, + "2016": 0.412, + "2017": 0.428, + "2018": 0.438, + "2019": 0.448, + "2020": 0.453, + "2021": 0.453 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr103", + "Region": "Centre Nord", + "1990": 0.297, + "1991": 0.307, + "1992": 0.316, + "1993": 0.325, + "1994": 0.335, + "1995": 0.343, + "1996": 0.356, + "1997": 0.368, + "1998": 0.381, + "1999": 0.381, + "2000": 0.361, + "2001": 0.341, + "2002": 0.323, + "2003": 0.306, + "2004": 0.289, + "2005": 0.274, + "2006": 0.29, + "2007": 0.307, + "2008": 0.323, + "2009": 0.338, + "2010": 0.354, + "2011": 0.369, + "2012": 0.371, + "2013": 0.373, + "2014": 0.374, + "2015": 0.39, + "2016": 0.411, + "2017": 0.427, + "2018": 0.438, + "2019": 0.448, + "2020": 0.454, + "2021": 0.454 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr104", + "Region": "Centre Ouest", + "1990": 0.255, + "1991": 0.262, + "1992": 0.27, + "1993": 0.278, + "1994": 0.286, + "1995": 0.301, + "1996": 0.319, + "1997": 0.338, + "1998": 0.357, + "1999": 0.362, + "2000": 0.368, + "2001": 0.374, + "2002": 0.38, + "2003": 0.386, + "2004": 0.391, + "2005": 0.396, + "2006": 0.392, + "2007": 0.387, + "2008": 0.382, + "2009": 0.377, + "2010": 0.372, + "2011": 0.368, + "2012": 0.364, + "2013": 0.361, + "2014": 0.359, + "2015": 0.37, + "2016": 0.386, + "2017": 0.401, + "2018": 0.411, + "2019": 0.42, + "2020": 0.426, + "2021": 0.426 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr105", + "Region": "Nord", + "1990": 0.17, + "1991": 0.175, + "1992": 0.18, + "1993": 0.185, + "1994": 0.19, + "1995": 0.217, + "1996": 0.247, + "1997": 0.278, + "1998": 0.309, + "1999": 0.33, + "2000": 0.293, + "2001": 0.258, + "2002": 0.225, + "2003": 0.194, + "2004": 0.165, + "2005": 0.137, + "2006": 0.153, + "2007": 0.169, + "2008": 0.185, + "2009": 0.2, + "2010": 0.215, + "2011": 0.23, + "2012": 0.255, + "2013": 0.277, + "2014": 0.296, + "2015": 0.324, + "2016": 0.356, + "2017": 0.372, + "2018": 0.381, + "2019": 0.39, + "2020": 0.396, + "2021": 0.396 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr106", + "Region": "Nord Est", + "1990": 0.217, + "1991": 0.224, + "1992": 0.231, + "1993": 0.238, + "1994": 0.245, + "1995": 0.236, + "1996": 0.23, + "1997": 0.224, + "1998": 0.217, + "1999": 0.204, + "2000": 0.205, + "2001": 0.207, + "2002": 0.208, + "2003": 0.211, + "2004": 0.213, + "2005": 0.216, + "2006": 0.231, + "2007": 0.246, + "2008": 0.261, + "2009": 0.275, + "2010": 0.289, + "2011": 0.303, + "2012": 0.307, + "2013": 0.311, + "2014": 0.314, + "2015": 0.328, + "2016": 0.348, + "2017": 0.362, + "2018": 0.371, + "2019": 0.38, + "2020": 0.385, + "2021": 0.385 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr107", + "Region": "Nord Ouest", + "1990": 0.173, + "1991": 0.179, + "1992": 0.184, + "1993": 0.19, + "1994": 0.196, + "1995": 0.178, + "1996": 0.162, + "1997": 0.145, + "1998": 0.127, + "1999": 0.106, + "2000": 0.115, + "2001": 0.123, + "2002": 0.131, + "2003": 0.138, + "2004": 0.146, + "2005": 0.152, + "2006": 0.163, + "2007": 0.174, + "2008": 0.184, + "2009": 0.195, + "2010": 0.206, + "2011": 0.216, + "2012": 0.235, + "2013": 0.251, + "2014": 0.265, + "2015": 0.287, + "2016": 0.313, + "2017": 0.327, + "2018": 0.335, + "2019": 0.343, + "2020": 0.348, + "2021": 0.348 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr108", + "Region": "Ouest", + "1990": 0.293, + "1991": 0.302, + "1992": 0.311, + "1993": 0.32, + "1994": 0.329, + "1995": 0.33, + "1996": 0.334, + "1997": 0.338, + "1998": 0.342, + "1999": 0.334, + "2000": 0.325, + "2001": 0.316, + "2002": 0.307, + "2003": 0.299, + "2004": 0.291, + "2005": 0.283, + "2006": 0.292, + "2007": 0.301, + "2008": 0.31, + "2009": 0.319, + "2010": 0.327, + "2011": 0.335, + "2012": 0.33, + "2013": 0.325, + "2014": 0.321, + "2015": 0.329, + "2016": 0.342, + "2017": 0.356, + "2018": 0.364, + "2019": 0.373, + "2020": 0.377, + "2021": 0.377 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr110", + "Region": "Sud Ouest", + "1990": 0.212, + "1991": 0.219, + "1992": 0.225, + "1993": 0.232, + "1994": 0.239, + "1995": 0.256, + "1996": 0.275, + "1997": 0.296, + "1998": 0.316, + "1999": 0.324, + "2000": 0.32, + "2001": 0.317, + "2002": 0.313, + "2003": 0.31, + "2004": 0.307, + "2005": 0.305, + "2006": 0.304, + "2007": 0.304, + "2008": 0.304, + "2009": 0.304, + "2010": 0.304, + "2011": 0.303, + "2012": 0.311, + "2013": 0.318, + "2014": 0.324, + "2015": 0.341, + "2016": 0.363, + "2017": 0.378, + "2018": 0.387, + "2019": 0.396, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr109", + "Region": "Sud, Abidjan", + "1990": 0.418, + "1991": 0.432, + "1992": 0.446, + "1993": 0.46, + "1994": 0.474, + "1995": 0.495, + "1996": 0.523, + "1997": 0.552, + "1998": 0.58, + "1999": 0.585, + "2000": 0.572, + "2001": 0.559, + "2002": 0.547, + "2003": 0.536, + "2004": 0.525, + "2005": 0.514, + "2006": 0.514, + "2007": 0.515, + "2008": 0.515, + "2009": 0.515, + "2010": 0.515, + "2011": 0.515, + "2012": 0.504, + "2013": 0.494, + "2014": 0.485, + "2015": 0.497, + "2016": 0.513, + "2017": 0.532, + "2018": 0.544, + "2019": 0.556, + "2020": 0.561, + "2021": 0.561 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "National", + "GDLCODE": "HRVt", + "Region": "Total", + "1990": 0.483, + "1991": 0.505, + "1992": 0.528, + "1993": 0.552, + "1994": 0.576, + "1995": 0.582, + "1996": 0.596, + "1997": 0.609, + "1998": 0.63, + "1999": 0.649, + "2000": 0.663, + "2001": 0.68, + "2002": 0.694, + "2003": 0.707, + "2004": 0.721, + "2005": 0.735, + "2006": 0.747, + "2007": 0.752, + "2008": 0.753, + "2009": 0.756, + "2010": 0.768, + "2011": 0.776, + "2012": 0.786, + "2013": 0.801, + "2014": 0.808, + "2015": 0.811, + "2016": 0.815, + "2017": 0.82, + "2018": 0.824, + "2019": 0.826, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr101", + "Region": "City of Zagreb", + "1990": 0.533, + "1991": 0.557, + "1992": 0.583, + "1993": 0.609, + "1994": 0.636, + "1995": 0.643, + "1996": 0.658, + "1997": 0.672, + "1998": 0.695, + "1999": 0.716, + "2000": 0.732, + "2001": 0.75, + "2002": 0.765, + "2003": 0.781, + "2004": 0.796, + "2005": 0.811, + "2006": 0.825, + "2007": 0.83, + "2008": 0.831, + "2009": 0.835, + "2010": 0.847, + "2011": 0.856, + "2012": 0.868, + "2013": 0.885, + "2014": 0.892, + "2015": 0.896, + "2016": 0.899, + "2017": 0.905, + "2018": 0.909, + "2019": 0.912, + "2020": 0.912, + "2021": 0.912 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr107", + "Region": "County of Bjelovar-Bilogora", + "1990": 0.444, + "1991": 0.464, + "1992": 0.486, + "1993": 0.508, + "1994": 0.53, + "1995": 0.536, + "1996": 0.548, + "1997": 0.561, + "1998": 0.58, + "1999": 0.597, + "2000": 0.61, + "2001": 0.626, + "2002": 0.638, + "2003": 0.651, + "2004": 0.664, + "2005": 0.676, + "2006": 0.688, + "2007": 0.692, + "2008": 0.693, + "2009": 0.696, + "2010": 0.706, + "2011": 0.714, + "2012": 0.724, + "2013": 0.737, + "2014": 0.744, + "2015": 0.747, + "2016": 0.75, + "2017": 0.755, + "2018": 0.758, + "2019": 0.76, + "2020": 0.76, + "2021": 0.76 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr110", + "Region": "County of Brod-Posavina", + "1990": 0.452, + "1991": 0.473, + "1992": 0.494, + "1993": 0.517, + "1994": 0.54, + "1995": 0.545, + "1996": 0.558, + "1997": 0.571, + "1998": 0.59, + "1999": 0.608, + "2000": 0.621, + "2001": 0.637, + "2002": 0.65, + "2003": 0.663, + "2004": 0.675, + "2005": 0.688, + "2006": 0.7, + "2007": 0.705, + "2008": 0.705, + "2009": 0.708, + "2010": 0.719, + "2011": 0.726, + "2012": 0.737, + "2013": 0.751, + "2014": 0.757, + "2015": 0.76, + "2016": 0.763, + "2017": 0.768, + "2018": 0.771, + "2019": 0.774, + "2020": 0.774, + "2021": 0.774 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr121", + "Region": "County of Dubrovnik-Neretva", + "1990": 0.497, + "1991": 0.52, + "1992": 0.544, + "1993": 0.568, + "1994": 0.594, + "1995": 0.6, + "1996": 0.614, + "1997": 0.628, + "1998": 0.649, + "1999": 0.669, + "2000": 0.683, + "2001": 0.7, + "2002": 0.715, + "2003": 0.729, + "2004": 0.743, + "2005": 0.757, + "2006": 0.77, + "2007": 0.775, + "2008": 0.776, + "2009": 0.779, + "2010": 0.791, + "2011": 0.799, + "2012": 0.81, + "2013": 0.826, + "2014": 0.833, + "2015": 0.836, + "2016": 0.84, + "2017": 0.845, + "2018": 0.849, + "2019": 0.851, + "2020": 0.851, + "2021": 0.851 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr120", + "Region": "County of Istria", + "1990": 0.492, + "1991": 0.514, + "1992": 0.538, + "1993": 0.562, + "1994": 0.587, + "1995": 0.593, + "1996": 0.607, + "1997": 0.621, + "1998": 0.642, + "1999": 0.661, + "2000": 0.676, + "2001": 0.693, + "2002": 0.707, + "2003": 0.721, + "2004": 0.735, + "2005": 0.749, + "2006": 0.761, + "2007": 0.767, + "2008": 0.767, + "2009": 0.771, + "2010": 0.782, + "2011": 0.79, + "2012": 0.801, + "2013": 0.817, + "2014": 0.824, + "2015": 0.827, + "2016": 0.83, + "2017": 0.836, + "2018": 0.839, + "2019": 0.842, + "2020": 0.842, + "2021": 0.842 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr113", + "Region": "County of Karlovac", + "1990": 0.461, + "1991": 0.482, + "1992": 0.504, + "1993": 0.527, + "1994": 0.551, + "1995": 0.556, + "1996": 0.569, + "1997": 0.582, + "1998": 0.602, + "1999": 0.62, + "2000": 0.633, + "2001": 0.65, + "2002": 0.663, + "2003": 0.676, + "2004": 0.689, + "2005": 0.702, + "2006": 0.714, + "2007": 0.719, + "2008": 0.719, + "2009": 0.723, + "2010": 0.733, + "2011": 0.741, + "2012": 0.751, + "2013": 0.766, + "2014": 0.772, + "2015": 0.775, + "2016": 0.779, + "2017": 0.784, + "2018": 0.787, + "2019": 0.789, + "2020": 0.789, + "2021": 0.789 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr105", + "Region": "County of Koprivnica-Krizevc", + "1990": 0.446, + "1991": 0.467, + "1992": 0.488, + "1993": 0.51, + "1994": 0.533, + "1995": 0.538, + "1996": 0.551, + "1997": 0.563, + "1998": 0.582, + "1999": 0.6, + "2000": 0.613, + "2001": 0.628, + "2002": 0.641, + "2003": 0.654, + "2004": 0.667, + "2005": 0.679, + "2006": 0.691, + "2007": 0.696, + "2008": 0.696, + "2009": 0.699, + "2010": 0.71, + "2011": 0.717, + "2012": 0.727, + "2013": 0.741, + "2014": 0.747, + "2015": 0.75, + "2016": 0.753, + "2017": 0.758, + "2018": 0.761, + "2019": 0.764, + "2020": 0.764, + "2021": 0.764 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr103", + "Region": "County of Krapina-Zagorje", + "1990": 0.452, + "1991": 0.472, + "1992": 0.494, + "1993": 0.516, + "1994": 0.539, + "1995": 0.545, + "1996": 0.558, + "1997": 0.57, + "1998": 0.59, + "1999": 0.608, + "2000": 0.621, + "2001": 0.636, + "2002": 0.649, + "2003": 0.662, + "2004": 0.675, + "2005": 0.688, + "2006": 0.7, + "2007": 0.704, + "2008": 0.705, + "2009": 0.708, + "2010": 0.719, + "2011": 0.726, + "2012": 0.736, + "2013": 0.75, + "2014": 0.757, + "2015": 0.76, + "2016": 0.763, + "2017": 0.768, + "2018": 0.771, + "2019": 0.773, + "2020": 0.773, + "2021": 0.773 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr116", + "Region": "County of Lika-Senj", + "1990": 0.446, + "1991": 0.467, + "1992": 0.488, + "1993": 0.51, + "1994": 0.533, + "1995": 0.539, + "1996": 0.551, + "1997": 0.564, + "1998": 0.583, + "1999": 0.601, + "2000": 0.613, + "2001": 0.629, + "2002": 0.642, + "2003": 0.654, + "2004": 0.667, + "2005": 0.68, + "2006": 0.691, + "2007": 0.696, + "2008": 0.696, + "2009": 0.7, + "2010": 0.71, + "2011": 0.717, + "2012": 0.728, + "2013": 0.741, + "2014": 0.748, + "2015": 0.751, + "2016": 0.754, + "2017": 0.759, + "2018": 0.762, + "2019": 0.764, + "2020": 0.764, + "2021": 0.764 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr106", + "Region": "County of Medimurje", + "1990": 0.459, + "1991": 0.48, + "1992": 0.502, + "1993": 0.525, + "1994": 0.548, + "1995": 0.554, + "1996": 0.567, + "1997": 0.58, + "1998": 0.599, + "1999": 0.618, + "2000": 0.631, + "2001": 0.647, + "2002": 0.66, + "2003": 0.673, + "2004": 0.686, + "2005": 0.699, + "2006": 0.711, + "2007": 0.716, + "2008": 0.716, + "2009": 0.72, + "2010": 0.73, + "2011": 0.738, + "2012": 0.748, + "2013": 0.763, + "2014": 0.769, + "2015": 0.772, + "2016": 0.775, + "2017": 0.781, + "2018": 0.784, + "2019": 0.786, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr111", + "Region": "County of Osijek-Baranja", + "1990": 0.467, + "1991": 0.488, + "1992": 0.511, + "1993": 0.534, + "1994": 0.558, + "1995": 0.564, + "1996": 0.577, + "1997": 0.59, + "1998": 0.61, + "1999": 0.628, + "2000": 0.642, + "2001": 0.658, + "2002": 0.671, + "2003": 0.685, + "2004": 0.698, + "2005": 0.711, + "2006": 0.723, + "2007": 0.728, + "2008": 0.729, + "2009": 0.732, + "2010": 0.743, + "2011": 0.751, + "2012": 0.761, + "2013": 0.776, + "2014": 0.782, + "2015": 0.785, + "2016": 0.789, + "2017": 0.794, + "2018": 0.797, + "2019": 0.8, + "2020": 0.8, + "2021": 0.8 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr109", + "Region": "County of Pozega-Slavonia", + "1990": 0.444, + "1991": 0.465, + "1992": 0.486, + "1993": 0.508, + "1994": 0.53, + "1995": 0.536, + "1996": 0.548, + "1997": 0.561, + "1998": 0.58, + "1999": 0.597, + "2000": 0.61, + "2001": 0.626, + "2002": 0.638, + "2003": 0.651, + "2004": 0.664, + "2005": 0.676, + "2006": 0.688, + "2007": 0.692, + "2008": 0.693, + "2009": 0.696, + "2010": 0.706, + "2011": 0.714, + "2012": 0.724, + "2013": 0.738, + "2014": 0.744, + "2015": 0.747, + "2016": 0.75, + "2017": 0.755, + "2018": 0.758, + "2019": 0.76, + "2020": 0.76, + "2021": 0.76 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr115", + "Region": "County of Primorje-Gorski Kotar", + "1990": 0.509, + "1991": 0.533, + "1992": 0.557, + "1993": 0.582, + "1994": 0.608, + "1995": 0.615, + "1996": 0.629, + "1997": 0.643, + "1998": 0.665, + "1999": 0.685, + "2000": 0.7, + "2001": 0.718, + "2002": 0.732, + "2003": 0.747, + "2004": 0.761, + "2005": 0.776, + "2006": 0.789, + "2007": 0.794, + "2008": 0.795, + "2009": 0.799, + "2010": 0.81, + "2011": 0.819, + "2012": 0.83, + "2013": 0.846, + "2014": 0.853, + "2015": 0.857, + "2016": 0.86, + "2017": 0.866, + "2018": 0.869, + "2019": 0.872, + "2020": 0.872, + "2021": 0.872 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr118", + "Region": "County of Sibenik-Knin", + "1990": 0.462, + "1991": 0.483, + "1992": 0.505, + "1993": 0.528, + "1994": 0.551, + "1995": 0.557, + "1996": 0.57, + "1997": 0.583, + "1998": 0.602, + "1999": 0.621, + "2000": 0.634, + "2001": 0.65, + "2002": 0.663, + "2003": 0.677, + "2004": 0.69, + "2005": 0.703, + "2006": 0.715, + "2007": 0.72, + "2008": 0.72, + "2009": 0.724, + "2010": 0.734, + "2011": 0.742, + "2012": 0.752, + "2013": 0.767, + "2014": 0.773, + "2015": 0.776, + "2016": 0.779, + "2017": 0.785, + "2018": 0.788, + "2019": 0.79, + "2020": 0.79, + "2021": 0.79 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr114", + "Region": "County of Sisak-Moslavina", + "1990": 0.453, + "1991": 0.474, + "1992": 0.496, + "1993": 0.518, + "1994": 0.541, + "1995": 0.547, + "1996": 0.56, + "1997": 0.573, + "1998": 0.592, + "1999": 0.61, + "2000": 0.623, + "2001": 0.639, + "2002": 0.652, + "2003": 0.665, + "2004": 0.678, + "2005": 0.69, + "2006": 0.702, + "2007": 0.707, + "2008": 0.707, + "2009": 0.711, + "2010": 0.721, + "2011": 0.729, + "2012": 0.739, + "2013": 0.753, + "2014": 0.76, + "2015": 0.763, + "2016": 0.766, + "2017": 0.771, + "2018": 0.774, + "2019": 0.776, + "2020": 0.776, + "2021": 0.776 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr119", + "Region": "County of Split-Dalmatia", + "1990": 0.493, + "1991": 0.516, + "1992": 0.539, + "1993": 0.564, + "1994": 0.589, + "1995": 0.595, + "1996": 0.609, + "1997": 0.623, + "1998": 0.644, + "1999": 0.663, + "2000": 0.677, + "2001": 0.695, + "2002": 0.709, + "2003": 0.723, + "2004": 0.737, + "2005": 0.751, + "2006": 0.764, + "2007": 0.769, + "2008": 0.769, + "2009": 0.773, + "2010": 0.784, + "2011": 0.793, + "2012": 0.804, + "2013": 0.819, + "2014": 0.826, + "2015": 0.829, + "2016": 0.833, + "2017": 0.838, + "2018": 0.842, + "2019": 0.844, + "2020": 0.844, + "2021": 0.844 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr104", + "Region": "County of Varazdin", + "1990": 0.471, + "1991": 0.493, + "1992": 0.516, + "1993": 0.539, + "1994": 0.563, + "1995": 0.569, + "1996": 0.582, + "1997": 0.595, + "1998": 0.615, + "1999": 0.634, + "2000": 0.648, + "2001": 0.664, + "2002": 0.678, + "2003": 0.691, + "2004": 0.704, + "2005": 0.718, + "2006": 0.73, + "2007": 0.735, + "2008": 0.735, + "2009": 0.739, + "2010": 0.75, + "2011": 0.758, + "2012": 0.768, + "2013": 0.783, + "2014": 0.79, + "2015": 0.793, + "2016": 0.796, + "2017": 0.801, + "2018": 0.805, + "2019": 0.807, + "2020": 0.807, + "2021": 0.807 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr108", + "Region": "County of Virovitica-Podravina", + "1990": 0.436, + "1991": 0.456, + "1992": 0.477, + "1993": 0.498, + "1994": 0.52, + "1995": 0.526, + "1996": 0.538, + "1997": 0.55, + "1998": 0.569, + "1999": 0.586, + "2000": 0.599, + "2001": 0.614, + "2002": 0.626, + "2003": 0.639, + "2004": 0.651, + "2005": 0.663, + "2006": 0.675, + "2007": 0.679, + "2008": 0.68, + "2009": 0.683, + "2010": 0.693, + "2011": 0.7, + "2012": 0.71, + "2013": 0.724, + "2014": 0.73, + "2015": 0.733, + "2016": 0.736, + "2017": 0.741, + "2018": 0.744, + "2019": 0.746, + "2020": 0.746, + "2021": 0.746 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr112", + "Region": "County of Vukovar-Srijem", + "1990": 0.448, + "1991": 0.469, + "1992": 0.49, + "1993": 0.512, + "1994": 0.535, + "1995": 0.541, + "1996": 0.553, + "1997": 0.566, + "1998": 0.585, + "1999": 0.603, + "2000": 0.615, + "2001": 0.631, + "2002": 0.644, + "2003": 0.657, + "2004": 0.669, + "2005": 0.682, + "2006": 0.694, + "2007": 0.698, + "2008": 0.699, + "2009": 0.702, + "2010": 0.713, + "2011": 0.72, + "2012": 0.73, + "2013": 0.744, + "2014": 0.751, + "2015": 0.753, + "2016": 0.756, + "2017": 0.762, + "2018": 0.765, + "2019": 0.767, + "2020": 0.767, + "2021": 0.767 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr117", + "Region": "County of Zadar", + "1990": 0.471, + "1991": 0.493, + "1992": 0.515, + "1993": 0.539, + "1994": 0.562, + "1995": 0.568, + "1996": 0.582, + "1997": 0.595, + "1998": 0.615, + "1999": 0.634, + "2000": 0.647, + "2001": 0.664, + "2002": 0.677, + "2003": 0.691, + "2004": 0.704, + "2005": 0.717, + "2006": 0.729, + "2007": 0.734, + "2008": 0.735, + "2009": 0.738, + "2010": 0.749, + "2011": 0.757, + "2012": 0.768, + "2013": 0.782, + "2014": 0.789, + "2015": 0.792, + "2016": 0.795, + "2017": 0.801, + "2018": 0.804, + "2019": 0.806, + "2020": 0.806, + "2021": 0.806 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr102", + "Region": "County of Zagreb", + "1990": 0.474, + "1991": 0.496, + "1992": 0.519, + "1993": 0.542, + "1994": 0.566, + "1995": 0.572, + "1996": 0.586, + "1997": 0.599, + "1998": 0.619, + "1999": 0.638, + "2000": 0.652, + "2001": 0.668, + "2002": 0.682, + "2003": 0.695, + "2004": 0.709, + "2005": 0.722, + "2006": 0.734, + "2007": 0.739, + "2008": 0.74, + "2009": 0.744, + "2010": 0.754, + "2011": 0.762, + "2012": 0.773, + "2013": 0.788, + "2014": 0.795, + "2015": 0.798, + "2016": 0.801, + "2017": 0.806, + "2018": 0.809, + "2019": 0.812, + "2020": 0.812, + "2021": 0.812 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "National", + "GDLCODE": "CUBt", + "Region": "Total", + "1990": 0.632, + "1991": 0.634, + "1992": 0.636, + "1993": 0.638, + "1994": 0.629, + "1995": 0.63, + "1996": 0.647, + "1997": 0.65, + "1998": 0.658, + "1999": 0.666, + "2000": 0.676, + "2001": 0.687, + "2002": 0.699, + "2003": 0.715, + "2004": 0.747, + "2005": 0.765, + "2006": 0.805, + "2007": 0.834, + "2008": 0.851, + "2009": 0.85, + "2010": 0.829, + "2011": 0.813, + "2012": 0.792, + "2013": 0.776, + "2014": 0.78, + "2015": 0.78, + "2016": 0.786, + "2017": 0.798, + "2018": 0.808, + "2019": 0.817, + "2020": 0.818, + "2021": 0.818 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr103", + "Region": "C. Habana", + "1990": 0.683, + "1991": 0.685, + "1992": 0.687, + "1993": 0.689, + "1994": 0.679, + "1995": 0.681, + "1996": 0.699, + "1997": 0.702, + "1998": 0.71, + "1999": 0.719, + "2000": 0.73, + "2001": 0.742, + "2002": 0.755, + "2003": 0.772, + "2004": 0.807, + "2005": 0.826, + "2006": 0.869, + "2007": 0.89, + "2008": 0.895, + "2009": 0.9, + "2010": 0.895, + "2011": 0.878, + "2012": 0.858, + "2013": 0.844, + "2014": 0.852, + "2015": 0.854, + "2016": 0.864, + "2017": 0.88, + "2018": 0.894, + "2019": 0.907, + "2020": 0.908, + "2021": 0.908 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr109", + "Region": "Camaguey", + "1990": 0.653, + "1991": 0.655, + "1992": 0.657, + "1993": 0.659, + "1994": 0.649, + "1995": 0.651, + "1996": 0.668, + "1997": 0.671, + "1998": 0.679, + "1999": 0.688, + "2000": 0.698, + "2001": 0.709, + "2002": 0.722, + "2003": 0.738, + "2004": 0.771, + "2005": 0.789, + "2006": 0.831, + "2007": 0.861, + "2008": 0.877, + "2009": 0.878, + "2010": 0.855, + "2011": 0.84, + "2012": 0.811, + "2013": 0.788, + "2014": 0.785, + "2015": 0.778, + "2016": 0.777, + "2017": 0.783, + "2018": 0.786, + "2019": 0.787, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr108", + "Region": "Ciego de Avila", + "1990": 0.613, + "1991": 0.614, + "1992": 0.616, + "1993": 0.618, + "1994": 0.609, + "1995": 0.611, + "1996": 0.626, + "1997": 0.629, + "1998": 0.637, + "1999": 0.645, + "2000": 0.655, + "2001": 0.665, + "2002": 0.677, + "2003": 0.693, + "2004": 0.724, + "2005": 0.741, + "2006": 0.779, + "2007": 0.808, + "2008": 0.825, + "2009": 0.824, + "2010": 0.802, + "2011": 0.788, + "2012": 0.77, + "2013": 0.758, + "2014": 0.766, + "2015": 0.769, + "2016": 0.778, + "2017": 0.794, + "2018": 0.807, + "2019": 0.819, + "2020": 0.82, + "2021": 0.82 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr106", + "Region": "Cienfuegos", + "1990": 0.599, + "1991": 0.601, + "1992": 0.602, + "1993": 0.604, + "1994": 0.595, + "1995": 0.597, + "1996": 0.612, + "1997": 0.615, + "1998": 0.623, + "1999": 0.63, + "2000": 0.64, + "2001": 0.65, + "2002": 0.662, + "2003": 0.677, + "2004": 0.707, + "2005": 0.724, + "2006": 0.762, + "2007": 0.789, + "2008": 0.806, + "2009": 0.805, + "2010": 0.784, + "2011": 0.77, + "2012": 0.753, + "2013": 0.742, + "2014": 0.75, + "2015": 0.753, + "2016": 0.762, + "2017": 0.778, + "2018": 0.792, + "2019": 0.804, + "2020": 0.805, + "2021": 0.805 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr112", + "Region": "Granma", + "1990": 0.587, + "1991": 0.588, + "1992": 0.59, + "1993": 0.592, + "1994": 0.583, + "1995": 0.585, + "1996": 0.6, + "1997": 0.603, + "1998": 0.61, + "1999": 0.618, + "2000": 0.627, + "2001": 0.637, + "2002": 0.649, + "2003": 0.663, + "2004": 0.693, + "2005": 0.709, + "2006": 0.746, + "2007": 0.774, + "2008": 0.79, + "2009": 0.789, + "2010": 0.768, + "2011": 0.754, + "2012": 0.738, + "2013": 0.727, + "2014": 0.734, + "2015": 0.737, + "2016": 0.746, + "2017": 0.761, + "2018": 0.774, + "2019": 0.786, + "2020": 0.787, + "2021": 0.787 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr114", + "Region": "Guantanamo", + "1990": 0.654, + "1991": 0.656, + "1992": 0.658, + "1993": 0.66, + "1994": 0.65, + "1995": 0.652, + "1996": 0.669, + "1997": 0.672, + "1998": 0.68, + "1999": 0.689, + "2000": 0.699, + "2001": 0.71, + "2002": 0.723, + "2003": 0.74, + "2004": 0.773, + "2005": 0.791, + "2006": 0.832, + "2007": 0.863, + "2008": 0.878, + "2009": 0.88, + "2010": 0.857, + "2011": 0.841, + "2012": 0.82, + "2013": 0.804, + "2014": 0.809, + "2015": 0.809, + "2016": 0.816, + "2017": 0.83, + "2018": 0.841, + "2019": 0.851, + "2020": 0.852, + "2021": 0.852 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr111", + "Region": "Holguin", + "1990": 0.614, + "1991": 0.616, + "1992": 0.617, + "1993": 0.619, + "1994": 0.61, + "1995": 0.612, + "1996": 0.628, + "1997": 0.63, + "1998": 0.638, + "1999": 0.646, + "2000": 0.656, + "2001": 0.666, + "2002": 0.679, + "2003": 0.694, + "2004": 0.725, + "2005": 0.742, + "2006": 0.781, + "2007": 0.809, + "2008": 0.826, + "2009": 0.825, + "2010": 0.804, + "2011": 0.789, + "2012": 0.769, + "2013": 0.754, + "2014": 0.759, + "2015": 0.758, + "2016": 0.765, + "2017": 0.777, + "2018": 0.787, + "2019": 0.796, + "2020": 0.797, + "2021": 0.797 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr115", + "Region": "Isla", + "1990": 0.551, + "1991": 0.553, + "1992": 0.554, + "1993": 0.556, + "1994": 0.548, + "1995": 0.549, + "1996": 0.564, + "1997": 0.566, + "1998": 0.573, + "1999": 0.58, + "2000": 0.589, + "2001": 0.598, + "2002": 0.609, + "2003": 0.623, + "2004": 0.651, + "2005": 0.666, + "2006": 0.701, + "2007": 0.727, + "2008": 0.742, + "2009": 0.741, + "2010": 0.722, + "2011": 0.709, + "2012": 0.71, + "2013": 0.715, + "2014": 0.739, + "2015": 0.757, + "2016": 0.783, + "2017": 0.815, + "2018": 0.845, + "2019": 0.874, + "2020": 0.875, + "2021": 0.875 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr110", + "Region": "Las Tunas", + "1990": 0.592, + "1991": 0.594, + "1992": 0.595, + "1993": 0.597, + "1994": 0.588, + "1995": 0.59, + "1996": 0.605, + "1997": 0.608, + "1998": 0.616, + "1999": 0.623, + "2000": 0.633, + "2001": 0.643, + "2002": 0.655, + "2003": 0.67, + "2004": 0.699, + "2005": 0.716, + "2006": 0.753, + "2007": 0.781, + "2008": 0.797, + "2009": 0.796, + "2010": 0.776, + "2011": 0.761, + "2012": 0.743, + "2013": 0.731, + "2014": 0.737, + "2015": 0.738, + "2016": 0.746, + "2017": 0.76, + "2018": 0.772, + "2019": 0.782, + "2020": 0.783, + "2021": 0.783 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr104", + "Region": "Matanzas", + "1990": 0.646, + "1991": 0.648, + "1992": 0.649, + "1993": 0.652, + "1994": 0.642, + "1995": 0.644, + "1996": 0.66, + "1997": 0.663, + "1998": 0.672, + "1999": 0.68, + "2000": 0.69, + "2001": 0.701, + "2002": 0.714, + "2003": 0.73, + "2004": 0.763, + "2005": 0.781, + "2006": 0.821, + "2007": 0.851, + "2008": 0.869, + "2009": 0.868, + "2010": 0.846, + "2011": 0.83, + "2012": 0.804, + "2013": 0.784, + "2014": 0.784, + "2015": 0.779, + "2016": 0.781, + "2017": 0.789, + "2018": 0.794, + "2019": 0.798, + "2020": 0.799, + "2021": 0.799 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr101", + "Region": "Pinar del Rio", + "1990": 0.645, + "1991": 0.647, + "1992": 0.649, + "1993": 0.651, + "1994": 0.641, + "1995": 0.643, + "1996": 0.66, + "1997": 0.663, + "1998": 0.671, + "1999": 0.679, + "2000": 0.689, + "2001": 0.7, + "2002": 0.713, + "2003": 0.73, + "2004": 0.762, + "2005": 0.78, + "2006": 0.821, + "2007": 0.851, + "2008": 0.868, + "2009": 0.867, + "2010": 0.845, + "2011": 0.83, + "2012": 0.801, + "2013": 0.778, + "2014": 0.776, + "2015": 0.768, + "2016": 0.767, + "2017": 0.773, + "2018": 0.776, + "2019": 0.777, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr102", + "Region": "Prov. Habana", + "1990": 0.598, + "1991": 0.6, + "1992": 0.601, + "1993": 0.604, + "1994": 0.594, + "1995": 0.596, + "1996": 0.612, + "1997": 0.614, + "1998": 0.622, + "1999": 0.63, + "2000": 0.639, + "2001": 0.649, + "2002": 0.661, + "2003": 0.676, + "2004": 0.707, + "2005": 0.723, + "2006": 0.761, + "2007": 0.789, + "2008": 0.805, + "2009": 0.804, + "2010": 0.783, + "2011": 0.769, + "2012": 0.753, + "2013": 0.743, + "2014": 0.752, + "2015": 0.756, + "2016": 0.766, + "2017": 0.783, + "2018": 0.798, + "2019": 0.811, + "2020": 0.812, + "2021": 0.812 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr107", + "Region": "S.Spiritus", + "1990": 0.559, + "1991": 0.561, + "1992": 0.562, + "1993": 0.564, + "1994": 0.555, + "1995": 0.557, + "1996": 0.572, + "1997": 0.574, + "1998": 0.581, + "1999": 0.589, + "2000": 0.597, + "2001": 0.607, + "2002": 0.618, + "2003": 0.632, + "2004": 0.66, + "2005": 0.676, + "2006": 0.711, + "2007": 0.737, + "2008": 0.752, + "2009": 0.752, + "2010": 0.732, + "2011": 0.719, + "2012": 0.707, + "2013": 0.7, + "2014": 0.711, + "2015": 0.717, + "2016": 0.729, + "2017": 0.748, + "2018": 0.765, + "2019": 0.78, + "2020": 0.781, + "2021": 0.781 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr113", + "Region": "Santiago de Cuba", + "1990": 0.654, + "1991": 0.656, + "1992": 0.658, + "1993": 0.66, + "1994": 0.65, + "1995": 0.652, + "1996": 0.669, + "1997": 0.672, + "1998": 0.68, + "1999": 0.689, + "2000": 0.699, + "2001": 0.71, + "2002": 0.723, + "2003": 0.74, + "2004": 0.773, + "2005": 0.791, + "2006": 0.832, + "2007": 0.863, + "2008": 0.878, + "2009": 0.88, + "2010": 0.857, + "2011": 0.841, + "2012": 0.819, + "2013": 0.803, + "2014": 0.808, + "2015": 0.807, + "2016": 0.814, + "2017": 0.827, + "2018": 0.838, + "2019": 0.847, + "2020": 0.848, + "2021": 0.848 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr105", + "Region": "Villa Clara", + "1990": 0.616, + "1991": 0.618, + "1992": 0.62, + "1993": 0.622, + "1994": 0.612, + "1995": 0.614, + "1996": 0.63, + "1997": 0.633, + "1998": 0.641, + "1999": 0.649, + "2000": 0.659, + "2001": 0.669, + "2002": 0.681, + "2003": 0.697, + "2004": 0.728, + "2005": 0.745, + "2006": 0.784, + "2007": 0.812, + "2008": 0.829, + "2009": 0.829, + "2010": 0.807, + "2011": 0.792, + "2012": 0.768, + "2013": 0.75, + "2014": 0.752, + "2015": 0.748, + "2016": 0.751, + "2017": 0.76, + "2018": 0.766, + "2019": 0.772, + "2020": 0.772, + "2021": 0.772 + }, + { + "Country": "Cyprus", + "Continent": "Europe", + "ISO_Code": "CYP", + "Level": "National", + "GDLCODE": "CYPt", + "Region": "Total", + "1990": 0.533, + "1991": 0.541, + "1992": 0.546, + "1993": 0.636, + "1994": 0.642, + "1995": 0.651, + "1996": 0.658, + "1997": 0.665, + "1998": 0.669, + "1999": 0.672, + "2000": 0.675, + "2001": 0.683, + "2002": 0.701, + "2003": 0.718, + "2004": 0.727, + "2005": 0.731, + "2006": 0.741, + "2007": 0.754, + "2008": 0.767, + "2009": 0.78, + "2010": 0.766, + "2011": 0.769, + "2012": 0.777, + "2013": 0.785, + "2014": 0.792, + "2015": 0.8, + "2016": 0.812, + "2017": 0.828, + "2018": 0.836, + "2019": 0.847, + "2020": 0.849, + "2021": 0.849 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "National", + "GDLCODE": "CZEt", + "Region": "Total", + "1990": 0.632, + "1991": 0.638, + "1992": 0.639, + "1993": 0.652, + "1994": 0.673, + "1995": 0.688, + "1996": 0.704, + "1997": 0.716, + "1998": 0.719, + "1999": 0.727, + "2000": 0.752, + "2001": 0.77, + "2002": 0.784, + "2003": 0.797, + "2004": 0.797, + "2005": 0.81, + "2006": 0.821, + "2007": 0.83, + "2008": 0.836, + "2009": 0.85, + "2010": 0.858, + "2011": 0.862, + "2012": 0.864, + "2013": 0.881, + "2014": 0.887, + "2015": 0.891, + "2016": 0.892, + "2017": 0.892, + "2018": 0.879, + "2019": 0.88, + "2020": 0.88, + "2021": 0.88 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr106", + "Region": "Jihovychod", + "1990": 0.655, + "1991": 0.661, + "1992": 0.662, + "1993": 0.675, + "1994": 0.697, + "1995": 0.713, + "1996": 0.73, + "1997": 0.742, + "1998": 0.744, + "1999": 0.753, + "2000": 0.779, + "2001": 0.799, + "2002": 0.813, + "2003": 0.826, + "2004": 0.826, + "2005": 0.839, + "2006": 0.851, + "2007": 0.86, + "2008": 0.866, + "2009": 0.882, + "2010": 0.889, + "2011": 0.894, + "2012": 0.898, + "2013": 0.916, + "2014": 0.92, + "2015": 0.926, + "2016": 0.93, + "2017": 0.93, + "2018": 0.915, + "2019": 0.916, + "2020": 0.916, + "2021": 0.916 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr103", + "Region": "Jihozapad", + "1990": 0.624, + "1991": 0.63, + "1992": 0.631, + "1993": 0.644, + "1994": 0.664, + "1995": 0.68, + "1996": 0.696, + "1997": 0.707, + "1998": 0.71, + "1999": 0.718, + "2000": 0.742, + "2001": 0.761, + "2002": 0.774, + "2003": 0.788, + "2004": 0.789, + "2005": 0.799, + "2006": 0.81, + "2007": 0.821, + "2008": 0.826, + "2009": 0.839, + "2010": 0.845, + "2011": 0.85, + "2012": 0.853, + "2013": 0.87, + "2014": 0.871, + "2015": 0.875, + "2016": 0.876, + "2017": 0.877, + "2018": 0.861, + "2019": 0.862, + "2020": 0.862, + "2021": 0.862 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr108", + "Region": "Moravskoslezsko", + "1990": 0.619, + "1991": 0.625, + "1992": 0.626, + "1993": 0.638, + "1994": 0.659, + "1995": 0.674, + "1996": 0.69, + "1997": 0.701, + "1998": 0.704, + "1999": 0.712, + "2000": 0.736, + "2001": 0.755, + "2002": 0.765, + "2003": 0.78, + "2004": 0.779, + "2005": 0.791, + "2006": 0.802, + "2007": 0.811, + "2008": 0.816, + "2009": 0.831, + "2010": 0.839, + "2011": 0.841, + "2012": 0.843, + "2013": 0.86, + "2014": 0.86, + "2015": 0.865, + "2016": 0.864, + "2017": 0.864, + "2018": 0.848, + "2019": 0.846, + "2020": 0.846, + "2021": 0.846 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr101", + "Region": "Praha", + "1990": 0.734, + "1991": 0.74, + "1992": 0.741, + "1993": 0.755, + "1994": 0.781, + "1995": 0.799, + "1996": 0.818, + "1997": 0.831, + "1998": 0.833, + "1999": 0.842, + "2000": 0.872, + "2001": 0.895, + "2002": 0.912, + "2003": 0.916, + "2004": 0.922, + "2005": 0.928, + "2006": 0.934, + "2007": 0.935, + "2008": 0.94, + "2009": 0.941, + "2010": 0.95, + "2011": 0.955, + "2012": 0.954, + "2013": 0.956, + "2014": 0.959, + "2015": 0.959, + "2016": 0.965, + "2017": 0.969, + "2018": 0.971, + "2019": 0.971, + "2020": 0.971, + "2021": 0.971 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr105", + "Region": "Severovychod", + "1990": 0.61, + "1991": 0.616, + "1992": 0.617, + "1993": 0.629, + "1994": 0.649, + "1995": 0.664, + "1996": 0.68, + "1997": 0.691, + "1998": 0.694, + "1999": 0.702, + "2000": 0.726, + "2001": 0.742, + "2002": 0.755, + "2003": 0.77, + "2004": 0.768, + "2005": 0.781, + "2006": 0.792, + "2007": 0.799, + "2008": 0.805, + "2009": 0.818, + "2010": 0.825, + "2011": 0.828, + "2012": 0.828, + "2013": 0.846, + "2014": 0.851, + "2015": 0.855, + "2016": 0.854, + "2017": 0.855, + "2018": 0.842, + "2019": 0.842, + "2020": 0.842, + "2021": 0.842 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr104", + "Region": "Severozapad", + "1990": 0.584, + "1991": 0.589, + "1992": 0.591, + "1993": 0.603, + "1994": 0.622, + "1995": 0.636, + "1996": 0.651, + "1997": 0.661, + "1998": 0.664, + "1999": 0.672, + "2000": 0.695, + "2001": 0.712, + "2002": 0.722, + "2003": 0.732, + "2004": 0.734, + "2005": 0.746, + "2006": 0.756, + "2007": 0.762, + "2008": 0.765, + "2009": 0.778, + "2010": 0.784, + "2011": 0.788, + "2012": 0.791, + "2013": 0.806, + "2014": 0.812, + "2015": 0.812, + "2016": 0.811, + "2017": 0.808, + "2018": 0.793, + "2019": 0.795, + "2020": 0.795, + "2021": 0.795 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr102", + "Region": "Stredni Cechy", + "1990": 0.549, + "1991": 0.555, + "1992": 0.557, + "1993": 0.568, + "1994": 0.586, + "1995": 0.599, + "1996": 0.613, + "1997": 0.623, + "1998": 0.626, + "1999": 0.634, + "2000": 0.654, + "2001": 0.668, + "2002": 0.685, + "2003": 0.697, + "2004": 0.7, + "2005": 0.712, + "2006": 0.721, + "2007": 0.729, + "2008": 0.736, + "2009": 0.748, + "2010": 0.755, + "2011": 0.76, + "2012": 0.763, + "2013": 0.777, + "2014": 0.782, + "2015": 0.784, + "2016": 0.782, + "2017": 0.781, + "2018": 0.772, + "2019": 0.773, + "2020": 0.773, + "2021": 0.773 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr107", + "Region": "Stredni Morava", + "1990": 0.619, + "1991": 0.625, + "1992": 0.626, + "1993": 0.639, + "1994": 0.659, + "1995": 0.675, + "1996": 0.69, + "1997": 0.702, + "1998": 0.704, + "1999": 0.712, + "2000": 0.737, + "2001": 0.756, + "2002": 0.767, + "2003": 0.782, + "2004": 0.783, + "2005": 0.797, + "2006": 0.806, + "2007": 0.815, + "2008": 0.821, + "2009": 0.833, + "2010": 0.839, + "2011": 0.845, + "2012": 0.845, + "2013": 0.86, + "2014": 0.868, + "2015": 0.878, + "2016": 0.878, + "2017": 0.879, + "2018": 0.868, + "2019": 0.869, + "2020": 0.869, + "2021": 0.869 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "National", + "GDLCODE": "DNKt", + "Region": "Total", + "1990": 0.773, + "1991": 0.778, + "1992": 0.78, + "1993": 0.79, + "1994": 0.8, + "1995": 0.808, + "1996": 0.821, + "1997": 0.831, + "1998": 0.842, + "1999": 0.867, + "2000": 0.867, + "2001": 0.882, + "2002": 0.88, + "2003": 0.89, + "2004": 0.892, + "2005": 0.896, + "2006": 0.889, + "2007": 0.889, + "2008": 0.895, + "2009": 0.882, + "2010": 0.885, + "2011": 0.916, + "2012": 0.923, + "2013": 0.925, + "2014": 0.913, + "2015": 0.921, + "2016": 0.939, + "2017": 0.934, + "2018": 0.929, + "2019": 0.93, + "2020": 0.932, + "2021": 0.932 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr101", + "Region": "Hovedstaden", + "1990": 0.788, + "1991": 0.793, + "1992": 0.795, + "1993": 0.805, + "1994": 0.814, + "1995": 0.823, + "1996": 0.836, + "1997": 0.847, + "1998": 0.857, + "1999": 0.883, + "2000": 0.882, + "2001": 0.898, + "2002": 0.896, + "2003": 0.906, + "2004": 0.909, + "2005": 0.913, + "2006": 0.905, + "2007": 0.905, + "2008": 0.91, + "2009": 0.894, + "2010": 0.899, + "2011": 0.942, + "2012": 0.948, + "2013": 0.95, + "2014": 0.937, + "2015": 0.945, + "2016": 0.965, + "2017": 0.957, + "2018": 0.953, + "2019": 0.957, + "2020": 0.959, + "2021": 0.959 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr104", + "Region": "Midtjylland", + "1990": 0.777, + "1991": 0.782, + "1992": 0.785, + "1993": 0.794, + "1994": 0.804, + "1995": 0.813, + "1996": 0.825, + "1997": 0.836, + "1998": 0.847, + "1999": 0.872, + "2000": 0.871, + "2001": 0.887, + "2002": 0.885, + "2003": 0.895, + "2004": 0.897, + "2005": 0.901, + "2006": 0.894, + "2007": 0.894, + "2008": 0.901, + "2009": 0.89, + "2010": 0.891, + "2011": 0.907, + "2012": 0.916, + "2013": 0.92, + "2014": 0.908, + "2015": 0.918, + "2016": 0.937, + "2017": 0.931, + "2018": 0.926, + "2019": 0.929, + "2020": 0.93, + "2021": 0.93 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr105", + "Region": "Nordjylland", + "1990": 0.753, + "1991": 0.757, + "1992": 0.76, + "1993": 0.77, + "1994": 0.779, + "1995": 0.788, + "1996": 0.8, + "1997": 0.81, + "1998": 0.821, + "1999": 0.845, + "2000": 0.845, + "2001": 0.86, + "2002": 0.857, + "2003": 0.867, + "2004": 0.87, + "2005": 0.874, + "2006": 0.867, + "2007": 0.866, + "2008": 0.877, + "2009": 0.874, + "2010": 0.871, + "2011": 0.903, + "2012": 0.912, + "2013": 0.908, + "2014": 0.896, + "2015": 0.907, + "2016": 0.924, + "2017": 0.917, + "2018": 0.914, + "2019": 0.911, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr102", + "Region": "Sjaelland", + "1990": 0.76, + "1991": 0.764, + "1992": 0.767, + "1993": 0.777, + "1994": 0.786, + "1995": 0.795, + "1996": 0.807, + "1997": 0.817, + "1998": 0.828, + "1999": 0.853, + "2000": 0.852, + "2001": 0.867, + "2002": 0.865, + "2003": 0.875, + "2004": 0.877, + "2005": 0.881, + "2006": 0.874, + "2007": 0.874, + "2008": 0.878, + "2009": 0.863, + "2010": 0.864, + "2011": 0.902, + "2012": 0.909, + "2013": 0.912, + "2014": 0.9, + "2015": 0.908, + "2016": 0.92, + "2017": 0.917, + "2018": 0.911, + "2019": 0.909, + "2020": 0.911, + "2021": 0.911 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr103", + "Region": "Syddanmark", + "1990": 0.761, + "1991": 0.766, + "1992": 0.769, + "1993": 0.778, + "1994": 0.788, + "1995": 0.797, + "1996": 0.809, + "1997": 0.819, + "1998": 0.83, + "1999": 0.855, + "2000": 0.854, + "2001": 0.869, + "2002": 0.867, + "2003": 0.877, + "2004": 0.879, + "2005": 0.883, + "2006": 0.876, + "2007": 0.876, + "2008": 0.88, + "2009": 0.867, + "2010": 0.872, + "2011": 0.902, + "2012": 0.911, + "2013": 0.91, + "2014": 0.899, + "2015": 0.907, + "2016": 0.922, + "2017": 0.921, + "2018": 0.915, + "2019": 0.916, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "National", + "GDLCODE": "DJIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.173, + "1996": 0.175, + "1997": 0.181, + "1998": 0.185, + "1999": 0.188, + "2000": 0.19, + "2001": 0.205, + "2002": 0.213, + "2003": 0.224, + "2004": 0.234, + "2005": 0.246, + "2006": 0.253, + "2007": 0.267, + "2008": 0.279, + "2009": 0.286, + "2010": 0.3, + "2011": 0.313, + "2012": 0.316, + "2013": 0.318, + "2014": 0.321, + "2015": 0.323, + "2016": 0.325, + "2017": 0.325, + "2018": 0.332, + "2019": 0.343, + "2020": 0.343, + "2021": 0.343 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr101", + "Region": "Djibouti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.182, + "1996": 0.184, + "1997": 0.19, + "1998": 0.194, + "1999": 0.198, + "2000": 0.2, + "2001": 0.216, + "2002": 0.224, + "2003": 0.235, + "2004": 0.246, + "2005": 0.258, + "2006": 0.266, + "2007": 0.28, + "2008": 0.291, + "2009": 0.299, + "2010": 0.313, + "2011": 0.326, + "2012": 0.329, + "2013": 0.332, + "2014": 0.334, + "2015": 0.337, + "2016": 0.339, + "2017": 0.339, + "2018": 0.345, + "2019": 0.357, + "2020": 0.357, + "2021": 0.357 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr102", + "Region": "Other Districts", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.124, + "1996": 0.126, + "1997": 0.13, + "1998": 0.132, + "1999": 0.134, + "2000": 0.135, + "2001": 0.147, + "2002": 0.153, + "2003": 0.162, + "2004": 0.171, + "2005": 0.18, + "2006": 0.186, + "2007": 0.198, + "2008": 0.209, + "2009": 0.216, + "2010": 0.228, + "2011": 0.24, + "2012": 0.242, + "2013": 0.244, + "2014": 0.246, + "2015": 0.248, + "2016": 0.251, + "2017": 0.251, + "2018": 0.257, + "2019": 0.267, + "2020": 0.267, + "2021": 0.267 + }, + { + "Country": "Dominica", + "Continent": "America", + "ISO_Code": "DMA", + "Level": "National", + "GDLCODE": "DMAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.613, + "2001": 0.613, + "2002": 0.615, + "2003": 0.616, + "2004": 0.617, + "2005": 0.618, + "2006": 0.619, + "2007": 0.62, + "2008": 0.621, + "2009": 0.623, + "2010": 0.624, + "2011": 0.624, + "2012": 0.626, + "2013": 0.628, + "2014": 0.63, + "2015": 0.632, + "2016": 0.635, + "2017": 0.637, + "2018": 0.639, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "National", + "GDLCODE": "DOMt", + "Region": "Total", + "1990": 0.43, + "1991": 0.439, + "1992": 0.448, + "1993": 0.457, + "1994": 0.467, + "1995": 0.476, + "1996": 0.485, + "1997": 0.494, + "1998": 0.503, + "1999": 0.513, + "2000": 0.522, + "2001": 0.531, + "2002": 0.539, + "2003": 0.548, + "2004": 0.556, + "2005": 0.565, + "2006": 0.576, + "2007": 0.588, + "2008": 0.594, + "2009": 0.601, + "2010": 0.608, + "2011": 0.617, + "2012": 0.626, + "2013": 0.631, + "2014": 0.637, + "2015": 0.649, + "2016": 0.694, + "2017": 0.693, + "2018": 0.702, + "2019": 0.712, + "2020": 0.712, + "2021": 0.712 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr101", + "Region": "Region 0 (Distrito Nacional, Santo Domingo, Monte Plata)", + "1990": 0.485, + "1991": 0.495, + "1992": 0.506, + "1993": 0.516, + "1994": 0.527, + "1995": 0.538, + "1996": 0.548, + "1997": 0.554, + "1998": 0.558, + "1999": 0.561, + "2000": 0.562, + "2001": 0.56, + "2002": 0.554, + "2003": 0.567, + "2004": 0.579, + "2005": 0.591, + "2006": 0.605, + "2007": 0.618, + "2008": 0.627, + "2009": 0.636, + "2010": 0.644, + "2011": 0.655, + "2012": 0.666, + "2013": 0.672, + "2014": 0.679, + "2015": 0.691, + "2016": 0.743, + "2017": 0.742, + "2018": 0.752, + "2019": 0.763, + "2020": 0.763, + "2021": 0.763 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr102", + "Region": "Region I (Peravia, San Cristobal, San Jose de Ocoa, Azua)", + "1990": 0.418, + "1991": 0.426, + "1992": 0.435, + "1993": 0.444, + "1994": 0.453, + "1995": 0.463, + "1996": 0.471, + "1997": 0.478, + "1998": 0.484, + "1999": 0.49, + "2000": 0.495, + "2001": 0.499, + "2002": 0.501, + "2003": 0.511, + "2004": 0.521, + "2005": 0.531, + "2006": 0.543, + "2007": 0.554, + "2008": 0.563, + "2009": 0.572, + "2010": 0.581, + "2011": 0.592, + "2012": 0.603, + "2013": 0.609, + "2014": 0.615, + "2015": 0.626, + "2016": 0.668, + "2017": 0.667, + "2018": 0.676, + "2019": 0.685, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr103", + "Region": "Region II (Espaillat, Puerto Plata, Santiago)", + "1990": 0.416, + "1991": 0.425, + "1992": 0.434, + "1993": 0.443, + "1994": 0.452, + "1995": 0.462, + "1996": 0.47, + "1997": 0.479, + "1998": 0.488, + "1999": 0.497, + "2000": 0.507, + "2001": 0.517, + "2002": 0.528, + "2003": 0.539, + "2004": 0.55, + "2005": 0.561, + "2006": 0.574, + "2007": 0.588, + "2008": 0.595, + "2009": 0.602, + "2010": 0.61, + "2011": 0.619, + "2012": 0.629, + "2013": 0.634, + "2014": 0.635, + "2015": 0.642, + "2016": 0.682, + "2017": 0.676, + "2018": 0.68, + "2019": 0.685, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr104", + "Region": "Region III (Duarte, Maria Trinidad Sanchez, Salcedo, Samana)", + "1990": 0.381, + "1991": 0.39, + "1992": 0.398, + "1993": 0.406, + "1994": 0.414, + "1995": 0.423, + "1996": 0.43, + "1997": 0.443, + "1998": 0.455, + "1999": 0.468, + "2000": 0.481, + "2001": 0.493, + "2002": 0.506, + "2003": 0.515, + "2004": 0.523, + "2005": 0.532, + "2006": 0.542, + "2007": 0.553, + "2008": 0.562, + "2009": 0.571, + "2010": 0.58, + "2011": 0.591, + "2012": 0.602, + "2013": 0.609, + "2014": 0.617, + "2015": 0.63, + "2016": 0.674, + "2017": 0.675, + "2018": 0.685, + "2019": 0.697, + "2020": 0.697, + "2021": 0.697 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr105", + "Region": "Region IV (Independencia, Bahoruco, Barahona, Pedernales)", + "1990": 0.391, + "1991": 0.399, + "1992": 0.407, + "1993": 0.416, + "1994": 0.424, + "1995": 0.433, + "1996": 0.441, + "1997": 0.456, + "1998": 0.473, + "1999": 0.492, + "2000": 0.515, + "2001": 0.543, + "2002": 0.578, + "2003": 0.572, + "2004": 0.568, + "2005": 0.567, + "2006": 0.568, + "2007": 0.571, + "2008": 0.572, + "2009": 0.573, + "2010": 0.575, + "2011": 0.579, + "2012": 0.583, + "2013": 0.584, + "2014": 0.594, + "2015": 0.61, + "2016": 0.653, + "2017": 0.658, + "2018": 0.671, + "2019": 0.685, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr106", + "Region": "Region V (El Seibo, La Altagracia, La Romana, San Pedro de Macoris, Hato Mayor)", + "1990": 0.405, + "1991": 0.413, + "1992": 0.422, + "1993": 0.431, + "1994": 0.44, + "1995": 0.448, + "1996": 0.457, + "1997": 0.463, + "1998": 0.468, + "1999": 0.472, + "2000": 0.475, + "2001": 0.475, + "2002": 0.472, + "2003": 0.487, + "2004": 0.5, + "2005": 0.513, + "2006": 0.528, + "2007": 0.542, + "2008": 0.554, + "2009": 0.566, + "2010": 0.577, + "2011": 0.59, + "2012": 0.603, + "2013": 0.611, + "2014": 0.617, + "2015": 0.628, + "2016": 0.671, + "2017": 0.669, + "2018": 0.677, + "2019": 0.686, + "2020": 0.686, + "2021": 0.686 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr107", + "Region": "Region VI (San Juan, Elias Pina)", + "1990": 0.327, + "1991": 0.334, + "1992": 0.341, + "1993": 0.348, + "1994": 0.355, + "1995": 0.362, + "1996": 0.368, + "1997": 0.384, + "1998": 0.401, + "1999": 0.42, + "2000": 0.441, + "2001": 0.464, + "2002": 0.493, + "2003": 0.498, + "2004": 0.504, + "2005": 0.51, + "2006": 0.518, + "2007": 0.527, + "2008": 0.533, + "2009": 0.539, + "2010": 0.545, + "2011": 0.553, + "2012": 0.562, + "2013": 0.566, + "2014": 0.574, + "2015": 0.588, + "2016": 0.626, + "2017": 0.629, + "2018": 0.64, + "2019": 0.652, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr108", + "Region": "Region VII (Dajabon, Monte Cristi, Santiago Rodriguez, Valverde)", + "1990": 0.389, + "1991": 0.398, + "1992": 0.406, + "1993": 0.414, + "1994": 0.423, + "1995": 0.431, + "1996": 0.439, + "1997": 0.449, + "1998": 0.459, + "1999": 0.469, + "2000": 0.48, + "2001": 0.491, + "2002": 0.503, + "2003": 0.51, + "2004": 0.517, + "2005": 0.525, + "2006": 0.535, + "2007": 0.545, + "2008": 0.548, + "2009": 0.552, + "2010": 0.555, + "2011": 0.561, + "2012": 0.567, + "2013": 0.568, + "2014": 0.575, + "2015": 0.588, + "2016": 0.628, + "2017": 0.629, + "2018": 0.639, + "2019": 0.65, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr109", + "Region": "Region VIII (La Vega, Monsenor Nouel, Sanchez Ramirez)", + "1990": 0.405, + "1991": 0.413, + "1992": 0.422, + "1993": 0.431, + "1994": 0.44, + "1995": 0.449, + "1996": 0.457, + "1997": 0.464, + "1998": 0.471, + "1999": 0.479, + "2000": 0.486, + "2001": 0.492, + "2002": 0.498, + "2003": 0.509, + "2004": 0.52, + "2005": 0.531, + "2006": 0.544, + "2007": 0.557, + "2008": 0.565, + "2009": 0.572, + "2010": 0.579, + "2011": 0.588, + "2012": 0.598, + "2013": 0.603, + "2014": 0.611, + "2015": 0.624, + "2016": 0.668, + "2017": 0.669, + "2018": 0.68, + "2019": 0.692, + "2020": 0.692, + "2021": 0.692 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "National", + "GDLCODE": "ECUt", + "Region": "Total", + "1990": 0.554, + "1991": 0.551, + "1992": 0.557, + "1993": 0.564, + "1994": 0.57, + "1995": 0.576, + "1996": 0.583, + "1997": 0.589, + "1998": 0.595, + "1999": 0.602, + "2000": 0.608, + "2001": 0.614, + "2002": 0.621, + "2003": 0.627, + "2004": 0.633, + "2005": 0.64, + "2006": 0.646, + "2007": 0.652, + "2008": 0.657, + "2009": 0.662, + "2010": 0.67, + "2011": 0.676, + "2012": 0.687, + "2013": 0.69, + "2014": 0.697, + "2015": 0.712, + "2016": 0.709, + "2017": 0.708, + "2018": 0.705, + "2019": 0.7, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr101", + "Region": "Coste", + "1990": 0.551, + "1991": 0.548, + "1992": 0.555, + "1993": 0.561, + "1994": 0.567, + "1995": 0.573, + "1996": 0.58, + "1997": 0.586, + "1998": 0.592, + "1999": 0.599, + "2000": 0.605, + "2001": 0.611, + "2002": 0.618, + "2003": 0.624, + "2004": 0.63, + "2005": 0.636, + "2006": 0.643, + "2007": 0.649, + "2008": 0.655, + "2009": 0.661, + "2010": 0.67, + "2011": 0.678, + "2012": 0.689, + "2013": 0.692, + "2014": 0.698, + "2015": 0.714, + "2016": 0.71, + "2017": 0.709, + "2018": 0.706, + "2019": 0.701, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr103", + "Region": "Oriente", + "1990": 0.533, + "1991": 0.531, + "1992": 0.537, + "1993": 0.543, + "1994": 0.549, + "1995": 0.555, + "1996": 0.562, + "1997": 0.568, + "1998": 0.574, + "1999": 0.58, + "2000": 0.586, + "2001": 0.592, + "2002": 0.598, + "2003": 0.604, + "2004": 0.61, + "2005": 0.616, + "2006": 0.623, + "2007": 0.629, + "2008": 0.628, + "2009": 0.627, + "2010": 0.629, + "2011": 0.63, + "2012": 0.64, + "2013": 0.643, + "2014": 0.649, + "2015": 0.663, + "2016": 0.66, + "2017": 0.659, + "2018": 0.656, + "2019": 0.652, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr102", + "Region": "Sierra", + "1990": 0.565, + "1991": 0.563, + "1992": 0.569, + "1993": 0.575, + "1994": 0.582, + "1995": 0.588, + "1996": 0.595, + "1997": 0.601, + "1998": 0.608, + "1999": 0.614, + "2000": 0.621, + "2001": 0.627, + "2002": 0.634, + "2003": 0.64, + "2004": 0.647, + "2005": 0.653, + "2006": 0.66, + "2007": 0.666, + "2008": 0.67, + "2009": 0.675, + "2010": 0.683, + "2011": 0.689, + "2012": 0.7, + "2013": 0.703, + "2014": 0.71, + "2015": 0.725, + "2016": 0.722, + "2017": 0.721, + "2018": 0.718, + "2019": 0.712, + "2020": 0.713, + "2021": 0.713 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "National", + "GDLCODE": "EGYt", + "Region": "Total", + "1990": 0.446, + "1991": 0.453, + "1992": 0.463, + "1993": 0.473, + "1994": 0.483, + "1995": 0.493, + "1996": 0.505, + "1997": 0.51, + "1998": 0.515, + "1999": 0.52, + "2000": 0.523, + "2001": 0.526, + "2002": 0.528, + "2003": 0.524, + "2004": 0.526, + "2005": 0.529, + "2006": 0.532, + "2007": 0.542, + "2008": 0.553, + "2009": 0.564, + "2010": 0.577, + "2011": 0.587, + "2012": 0.607, + "2013": 0.623, + "2014": 0.631, + "2015": 0.645, + "2016": 0.658, + "2017": 0.672, + "2018": 0.688, + "2019": 0.702, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr102", + "Region": "Alexandria", + "1990": 0.498, + "1991": 0.506, + "1992": 0.517, + "1993": 0.529, + "1994": 0.54, + "1995": 0.551, + "1996": 0.574, + "1997": 0.587, + "1998": 0.601, + "1999": 0.614, + "2000": 0.625, + "2001": 0.621, + "2002": 0.617, + "2003": 0.606, + "2004": 0.603, + "2005": 0.6, + "2006": 0.6, + "2007": 0.61, + "2008": 0.619, + "2009": 0.637, + "2010": 0.657, + "2011": 0.674, + "2012": 0.702, + "2013": 0.727, + "2014": 0.742, + "2015": 0.758, + "2016": 0.774, + "2017": 0.79, + "2018": 0.81, + "2019": 0.827, + "2020": 0.827, + "2021": 0.827 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr118", + "Region": "Assuit", + "1990": 0.352, + "1991": 0.357, + "1992": 0.365, + "1993": 0.373, + "1994": 0.38, + "1995": 0.388, + "1996": 0.401, + "1997": 0.409, + "1998": 0.417, + "1999": 0.425, + "2000": 0.431, + "2001": 0.432, + "2002": 0.432, + "2003": 0.428, + "2004": 0.428, + "2005": 0.43, + "2006": 0.438, + "2007": 0.451, + "2008": 0.465, + "2009": 0.476, + "2010": 0.49, + "2011": 0.501, + "2012": 0.521, + "2013": 0.538, + "2014": 0.547, + "2015": 0.558, + "2016": 0.57, + "2017": 0.581, + "2018": 0.595, + "2019": 0.607, + "2020": 0.607, + "2021": 0.607 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr121", + "Region": "Aswan", + "1990": 0.428, + "1991": 0.434, + "1992": 0.443, + "1993": 0.453, + "1994": 0.462, + "1995": 0.471, + "1996": 0.49, + "1997": 0.502, + "1998": 0.515, + "1999": 0.527, + "2000": 0.537, + "2001": 0.538, + "2002": 0.539, + "2003": 0.533, + "2004": 0.534, + "2005": 0.536, + "2006": 0.541, + "2007": 0.554, + "2008": 0.567, + "2009": 0.574, + "2010": 0.584, + "2011": 0.591, + "2012": 0.608, + "2013": 0.621, + "2014": 0.626, + "2015": 0.64, + "2016": 0.653, + "2017": 0.667, + "2018": 0.684, + "2019": 0.698, + "2020": 0.698, + "2021": 0.698 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr112", + "Region": "Behera", + "1990": 0.38, + "1991": 0.385, + "1992": 0.394, + "1993": 0.402, + "1994": 0.411, + "1995": 0.419, + "1996": 0.425, + "1997": 0.426, + "1998": 0.428, + "1999": 0.429, + "2000": 0.429, + "2001": 0.443, + "2002": 0.456, + "2003": 0.463, + "2004": 0.475, + "2005": 0.487, + "2006": 0.485, + "2007": 0.49, + "2008": 0.495, + "2009": 0.506, + "2010": 0.52, + "2011": 0.53, + "2012": 0.551, + "2013": 0.568, + "2014": 0.577, + "2015": 0.589, + "2016": 0.601, + "2017": 0.614, + "2018": 0.628, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr115", + "Region": "Beni Suef", + "1990": 0.311, + "1991": 0.315, + "1992": 0.322, + "1993": 0.329, + "1994": 0.336, + "1995": 0.343, + "1996": 0.354, + "1997": 0.362, + "1998": 0.369, + "1999": 0.377, + "2000": 0.383, + "2001": 0.394, + "2002": 0.405, + "2003": 0.41, + "2004": 0.42, + "2005": 0.431, + "2006": 0.438, + "2007": 0.452, + "2008": 0.466, + "2009": 0.481, + "2010": 0.499, + "2011": 0.514, + "2012": 0.538, + "2013": 0.559, + "2014": 0.573, + "2015": 0.585, + "2016": 0.597, + "2017": 0.609, + "2018": 0.624, + "2019": 0.637, + "2020": 0.637, + "2021": 0.637 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr101", + "Region": "Cairo", + "1990": 0.59, + "1991": 0.6, + "1992": 0.613, + "1993": 0.627, + "1994": 0.641, + "1995": 0.654, + "1996": 0.666, + "1997": 0.668, + "1998": 0.67, + "1999": 0.672, + "2000": 0.672, + "2001": 0.67, + "2002": 0.666, + "2003": 0.655, + "2004": 0.652, + "2005": 0.65, + "2006": 0.642, + "2007": 0.644, + "2008": 0.645, + "2009": 0.655, + "2010": 0.668, + "2011": 0.677, + "2012": 0.697, + "2013": 0.713, + "2014": 0.719, + "2015": 0.735, + "2016": 0.75, + "2017": 0.766, + "2018": 0.785, + "2019": 0.802, + "2020": 0.802, + "2021": 0.802 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr106", + "Region": "Dakahlia", + "1990": 0.501, + "1991": 0.509, + "1992": 0.52, + "1993": 0.531, + "1994": 0.542, + "1995": 0.553, + "1996": 0.552, + "1997": 0.543, + "1998": 0.534, + "1999": 0.526, + "2000": 0.516, + "2001": 0.521, + "2002": 0.524, + "2003": 0.521, + "2004": 0.523, + "2005": 0.527, + "2006": 0.535, + "2007": 0.55, + "2008": 0.566, + "2009": 0.578, + "2010": 0.593, + "2011": 0.604, + "2012": 0.627, + "2013": 0.645, + "2014": 0.655, + "2015": 0.669, + "2016": 0.683, + "2017": 0.697, + "2018": 0.714, + "2019": 0.728, + "2020": 0.728, + "2021": 0.728 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr105", + "Region": "Damietta", + "1990": 0.461, + "1991": 0.468, + "1992": 0.478, + "1993": 0.488, + "1994": 0.499, + "1995": 0.509, + "1996": 0.513, + "1997": 0.51, + "1998": 0.507, + "1999": 0.505, + "2000": 0.501, + "2001": 0.511, + "2002": 0.519, + "2003": 0.522, + "2004": 0.53, + "2005": 0.538, + "2006": 0.544, + "2007": 0.559, + "2008": 0.573, + "2009": 0.584, + "2010": 0.598, + "2011": 0.609, + "2012": 0.63, + "2013": 0.647, + "2014": 0.656, + "2015": 0.67, + "2016": 0.684, + "2017": 0.698, + "2018": 0.715, + "2019": 0.729, + "2020": 0.729, + "2021": 0.729 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr116", + "Region": "Fayoum", + "1990": 0.316, + "1991": 0.321, + "1992": 0.327, + "1993": 0.334, + "1994": 0.341, + "1995": 0.348, + "1996": 0.36, + "1997": 0.368, + "1998": 0.377, + "1999": 0.385, + "2000": 0.391, + "2001": 0.398, + "2002": 0.403, + "2003": 0.404, + "2004": 0.409, + "2005": 0.415, + "2006": 0.415, + "2007": 0.42, + "2008": 0.424, + "2009": 0.444, + "2010": 0.466, + "2011": 0.485, + "2012": 0.515, + "2013": 0.541, + "2014": 0.559, + "2015": 0.571, + "2016": 0.582, + "2017": 0.594, + "2018": 0.608, + "2019": 0.62, + "2020": 0.62, + "2021": 0.62 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr122", + "Region": "Frontier governorates (Red Sea, New Valley, Matroh, North Sainai, South Sainai)", + "1990": 0.486, + "1991": 0.494, + "1992": 0.505, + "1993": 0.516, + "1994": 0.528, + "1995": 0.539, + "1996": 0.542, + "1997": 0.536, + "1998": 0.531, + "1999": 0.526, + "2000": 0.52, + "2001": 0.521, + "2002": 0.521, + "2003": 0.515, + "2004": 0.515, + "2005": 0.516, + "2006": 0.517, + "2007": 0.525, + "2008": 0.534, + "2009": 0.549, + "2010": 0.566, + "2011": 0.58, + "2012": 0.604, + "2013": 0.624, + "2014": 0.637, + "2015": 0.651, + "2016": 0.665, + "2017": 0.679, + "2018": 0.695, + "2019": 0.71, + "2020": 0.71, + "2021": 0.71 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr110", + "Region": "Gharbia", + "1990": 0.467, + "1991": 0.474, + "1992": 0.484, + "1993": 0.494, + "1994": 0.505, + "1995": 0.515, + "1996": 0.529, + "1997": 0.537, + "1998": 0.544, + "1999": 0.551, + "2000": 0.556, + "2001": 0.566, + "2002": 0.575, + "2003": 0.576, + "2004": 0.584, + "2005": 0.593, + "2006": 0.594, + "2007": 0.604, + "2008": 0.614, + "2009": 0.619, + "2010": 0.627, + "2011": 0.631, + "2012": 0.646, + "2013": 0.656, + "2014": 0.658, + "2015": 0.672, + "2016": 0.686, + "2017": 0.7, + "2018": 0.717, + "2019": 0.732, + "2020": 0.732, + "2021": 0.732 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr114", + "Region": "Giza", + "1990": 0.437, + "1991": 0.444, + "1992": 0.454, + "1993": 0.464, + "1994": 0.475, + "1995": 0.485, + "1996": 0.506, + "1997": 0.52, + "1998": 0.534, + "1999": 0.548, + "2000": 0.56, + "2001": 0.559, + "2002": 0.556, + "2003": 0.549, + "2004": 0.547, + "2005": 0.546, + "2006": 0.553, + "2007": 0.568, + "2008": 0.583, + "2009": 0.588, + "2010": 0.595, + "2011": 0.599, + "2012": 0.612, + "2013": 0.622, + "2014": 0.623, + "2015": 0.636, + "2016": 0.65, + "2017": 0.663, + "2018": 0.679, + "2019": 0.693, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr113", + "Region": "Ismailia", + "1990": 0.543, + "1991": 0.551, + "1992": 0.564, + "1993": 0.576, + "1994": 0.589, + "1995": 0.601, + "1996": 0.607, + "1997": 0.603, + "1998": 0.6, + "1999": 0.597, + "2000": 0.592, + "2001": 0.59, + "2002": 0.586, + "2003": 0.576, + "2004": 0.573, + "2005": 0.571, + "2006": 0.56, + "2007": 0.558, + "2008": 0.555, + "2009": 0.572, + "2010": 0.591, + "2011": 0.608, + "2012": 0.635, + "2013": 0.658, + "2014": 0.673, + "2015": 0.687, + "2016": 0.702, + "2017": 0.716, + "2018": 0.734, + "2019": 0.749, + "2020": 0.749, + "2021": 0.749 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr109", + "Region": "Kafr El-Sheikh", + "1990": 0.398, + "1991": 0.403, + "1992": 0.411, + "1993": 0.42, + "1994": 0.428, + "1995": 0.437, + "1996": 0.452, + "1997": 0.463, + "1998": 0.473, + "1999": 0.483, + "2000": 0.492, + "2001": 0.493, + "2002": 0.492, + "2003": 0.486, + "2004": 0.487, + "2005": 0.488, + "2006": 0.501, + "2007": 0.521, + "2008": 0.541, + "2009": 0.551, + "2010": 0.565, + "2011": 0.575, + "2012": 0.596, + "2013": 0.612, + "2014": 0.62, + "2015": 0.633, + "2016": 0.646, + "2017": 0.659, + "2018": 0.675, + "2019": 0.688, + "2020": 0.688, + "2021": 0.688 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr108", + "Region": "Kalyubia", + "1990": 0.445, + "1991": 0.452, + "1992": 0.463, + "1993": 0.473, + "1994": 0.483, + "1995": 0.493, + "1996": 0.508, + "1997": 0.515, + "1998": 0.523, + "1999": 0.53, + "2000": 0.536, + "2001": 0.54, + "2002": 0.542, + "2003": 0.539, + "2004": 0.541, + "2005": 0.545, + "2006": 0.556, + "2007": 0.576, + "2008": 0.597, + "2009": 0.606, + "2010": 0.617, + "2011": 0.625, + "2012": 0.644, + "2013": 0.659, + "2014": 0.664, + "2015": 0.678, + "2016": 0.692, + "2017": 0.706, + "2018": 0.724, + "2019": 0.738, + "2020": 0.738, + "2021": 0.738 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr111", + "Region": "Menoufia", + "1990": 0.473, + "1991": 0.48, + "1992": 0.49, + "1993": 0.501, + "1994": 0.511, + "1995": 0.522, + "1996": 0.531, + "1997": 0.533, + "1998": 0.535, + "1999": 0.537, + "2000": 0.537, + "2001": 0.546, + "2002": 0.554, + "2003": 0.556, + "2004": 0.564, + "2005": 0.572, + "2006": 0.563, + "2007": 0.561, + "2008": 0.559, + "2009": 0.573, + "2010": 0.589, + "2011": 0.601, + "2012": 0.625, + "2013": 0.645, + "2014": 0.655, + "2015": 0.669, + "2016": 0.683, + "2017": 0.697, + "2018": 0.714, + "2019": 0.728, + "2020": 0.728, + "2021": 0.728 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr117", + "Region": "Menya", + "1990": 0.33, + "1991": 0.335, + "1992": 0.342, + "1993": 0.349, + "1994": 0.357, + "1995": 0.364, + "1996": 0.383, + "1997": 0.397, + "1998": 0.411, + "1999": 0.425, + "2000": 0.437, + "2001": 0.436, + "2002": 0.433, + "2003": 0.426, + "2004": 0.423, + "2005": 0.422, + "2006": 0.43, + "2007": 0.443, + "2008": 0.456, + "2009": 0.472, + "2010": 0.49, + "2011": 0.506, + "2012": 0.531, + "2013": 0.553, + "2014": 0.568, + "2015": 0.579, + "2016": 0.591, + "2017": 0.603, + "2018": 0.617, + "2019": 0.629, + "2020": 0.629, + "2021": 0.629 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr103", + "Region": "Port Said", + "1990": 0.587, + "1991": 0.597, + "1992": 0.61, + "1993": 0.624, + "1994": 0.637, + "1995": 0.651, + "1996": 0.67, + "1997": 0.679, + "1998": 0.689, + "1999": 0.698, + "2000": 0.705, + "2001": 0.688, + "2002": 0.67, + "2003": 0.646, + "2004": 0.63, + "2005": 0.615, + "2006": 0.626, + "2007": 0.647, + "2008": 0.668, + "2009": 0.683, + "2010": 0.699, + "2011": 0.713, + "2012": 0.738, + "2013": 0.758, + "2014": 0.769, + "2015": 0.786, + "2016": 0.803, + "2017": 0.82, + "2018": 0.84, + "2019": 0.858, + "2020": 0.858, + "2021": 0.858 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr120", + "Region": "Qena", + "1990": 0.336, + "1991": 0.341, + "1992": 0.348, + "1993": 0.355, + "1994": 0.362, + "1995": 0.369, + "1996": 0.389, + "1997": 0.404, + "1998": 0.419, + "1999": 0.434, + "2000": 0.448, + "2001": 0.461, + "2002": 0.472, + "2003": 0.478, + "2004": 0.488, + "2005": 0.5, + "2006": 0.501, + "2007": 0.508, + "2008": 0.516, + "2009": 0.527, + "2010": 0.541, + "2011": 0.552, + "2012": 0.574, + "2013": 0.592, + "2014": 0.601, + "2015": 0.614, + "2016": 0.626, + "2017": 0.639, + "2018": 0.655, + "2019": 0.668, + "2020": 0.668, + "2021": 0.668 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr107", + "Region": "Sharkia", + "1990": 0.447, + "1991": 0.454, + "1992": 0.464, + "1993": 0.474, + "1994": 0.484, + "1995": 0.494, + "1996": 0.499, + "1997": 0.497, + "1998": 0.496, + "1999": 0.495, + "2000": 0.492, + "2001": 0.5, + "2002": 0.507, + "2003": 0.508, + "2004": 0.515, + "2005": 0.522, + "2006": 0.521, + "2007": 0.528, + "2008": 0.535, + "2009": 0.55, + "2010": 0.568, + "2011": 0.582, + "2012": 0.608, + "2013": 0.629, + "2014": 0.642, + "2015": 0.656, + "2016": 0.669, + "2017": 0.683, + "2018": 0.7, + "2019": 0.714, + "2020": 0.714, + "2021": 0.714 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr119", + "Region": "Souhag", + "1990": 0.374, + "1991": 0.379, + "1992": 0.387, + "1993": 0.395, + "1994": 0.404, + "1995": 0.412, + "1996": 0.421, + "1997": 0.426, + "1998": 0.432, + "1999": 0.437, + "2000": 0.44, + "2001": 0.44, + "2002": 0.438, + "2003": 0.431, + "2004": 0.43, + "2005": 0.429, + "2006": 0.444, + "2007": 0.465, + "2008": 0.486, + "2009": 0.497, + "2010": 0.51, + "2011": 0.52, + "2012": 0.54, + "2013": 0.556, + "2014": 0.565, + "2015": 0.577, + "2016": 0.588, + "2017": 0.6, + "2018": 0.615, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr104", + "Region": "Suez", + "1990": 0.549, + "1991": 0.557, + "1992": 0.57, + "1993": 0.582, + "1994": 0.594, + "1995": 0.607, + "1996": 0.613, + "1997": 0.611, + "1998": 0.609, + "1999": 0.607, + "2000": 0.603, + "2001": 0.608, + "2002": 0.61, + "2003": 0.607, + "2004": 0.61, + "2005": 0.614, + "2006": 0.608, + "2007": 0.611, + "2008": 0.614, + "2009": 0.63, + "2010": 0.65, + "2011": 0.666, + "2012": 0.694, + "2013": 0.717, + "2014": 0.732, + "2015": 0.748, + "2016": 0.763, + "2017": 0.78, + "2018": 0.799, + "2019": 0.816, + "2020": 0.816, + "2021": 0.816 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "National", + "GDLCODE": "SLVt", + "Region": "Total", + "1990": 0.372, + "1991": 0.384, + "1992": 0.396, + "1993": 0.409, + "1994": 0.422, + "1995": 0.435, + "1996": 0.448, + "1997": 0.461, + "1998": 0.474, + "1999": 0.474, + "2000": 0.486, + "2001": 0.493, + "2002": 0.504, + "2003": 0.516, + "2004": 0.525, + "2005": 0.535, + "2006": 0.538, + "2007": 0.545, + "2008": 0.544, + "2009": 0.548, + "2010": 0.558, + "2011": 0.557, + "2012": 0.564, + "2013": 0.57, + "2014": 0.566, + "2015": 0.57, + "2016": 0.573, + "2017": 0.576, + "2018": 0.585, + "2019": 0.589, + "2020": 0.59, + "2021": 0.59 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr102", + "Region": "Central I", + "1990": 0.415, + "1991": 0.429, + "1992": 0.443, + "1993": 0.457, + "1994": 0.472, + "1995": 0.486, + "1996": 0.501, + "1997": 0.515, + "1998": 0.53, + "1999": 0.53, + "2000": 0.544, + "2001": 0.552, + "2002": 0.564, + "2003": 0.577, + "2004": 0.588, + "2005": 0.6, + "2006": 0.603, + "2007": 0.61, + "2008": 0.611, + "2009": 0.614, + "2010": 0.625, + "2011": 0.623, + "2012": 0.63, + "2013": 0.635, + "2014": 0.63, + "2015": 0.634, + "2016": 0.639, + "2017": 0.642, + "2018": 0.653, + "2019": 0.657, + "2020": 0.659, + "2021": 0.659 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr103", + "Region": "Central II", + "1990": 0.334, + "1991": 0.345, + "1992": 0.357, + "1993": 0.368, + "1994": 0.38, + "1995": 0.392, + "1996": 0.403, + "1997": 0.415, + "1998": 0.427, + "1999": 0.426, + "2000": 0.437, + "2001": 0.443, + "2002": 0.452, + "2003": 0.463, + "2004": 0.472, + "2005": 0.481, + "2006": 0.482, + "2007": 0.491, + "2008": 0.49, + "2009": 0.495, + "2010": 0.506, + "2011": 0.509, + "2012": 0.518, + "2013": 0.517, + "2014": 0.507, + "2015": 0.51, + "2016": 0.513, + "2017": 0.515, + "2018": 0.523, + "2019": 0.526, + "2020": 0.527, + "2021": 0.527 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr101", + "Region": "Occidental", + "1990": 0.34, + "1991": 0.351, + "1992": 0.363, + "1993": 0.374, + "1994": 0.386, + "1995": 0.398, + "1996": 0.41, + "1997": 0.422, + "1998": 0.434, + "1999": 0.434, + "2000": 0.444, + "2001": 0.451, + "2002": 0.46, + "2003": 0.471, + "2004": 0.48, + "2005": 0.489, + "2006": 0.491, + "2007": 0.499, + "2008": 0.496, + "2009": 0.499, + "2010": 0.508, + "2011": 0.508, + "2012": 0.513, + "2013": 0.521, + "2014": 0.52, + "2015": 0.523, + "2016": 0.526, + "2017": 0.528, + "2018": 0.537, + "2019": 0.54, + "2020": 0.541, + "2021": 0.541 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr104", + "Region": "Oriental", + "1990": 0.336, + "1991": 0.348, + "1992": 0.359, + "1993": 0.37, + "1994": 0.382, + "1995": 0.394, + "1996": 0.406, + "1997": 0.418, + "1998": 0.43, + "1999": 0.429, + "2000": 0.44, + "2001": 0.446, + "2002": 0.455, + "2003": 0.466, + "2004": 0.475, + "2005": 0.484, + "2006": 0.486, + "2007": 0.494, + "2008": 0.489, + "2009": 0.491, + "2010": 0.498, + "2011": 0.496, + "2012": 0.501, + "2013": 0.503, + "2014": 0.495, + "2015": 0.498, + "2016": 0.501, + "2017": 0.503, + "2018": 0.511, + "2019": 0.513, + "2020": 0.514, + "2021": 0.514 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "National", + "GDLCODE": "GNQt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.375, + "2001": 0.379, + "2002": 0.384, + "2003": 0.388, + "2004": 0.392, + "2005": 0.396, + "2006": 0.401, + "2007": 0.405, + "2008": 0.409, + "2009": 0.413, + "2010": 0.418, + "2011": 0.422, + "2012": 0.426, + "2013": 0.431, + "2014": 0.435, + "2015": 0.439, + "2016": 0.443, + "2017": 0.448, + "2018": 0.452, + "2019": 0.467, + "2020": 0.467, + "2021": 0.467 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr101", + "Region": "Annobon, Bioko", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.565, + "2001": 0.571, + "2002": 0.577, + "2003": 0.584, + "2004": 0.59, + "2005": 0.597, + "2006": 0.603, + "2007": 0.609, + "2008": 0.616, + "2009": 0.622, + "2010": 0.629, + "2011": 0.635, + "2012": 0.642, + "2013": 0.648, + "2014": 0.654, + "2015": 0.661, + "2016": 0.667, + "2017": 0.674, + "2018": 0.68, + "2019": 0.704, + "2020": 0.704, + "2021": 0.704 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr102", + "Region": "Centro Sur", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.26, + "2001": 0.263, + "2002": 0.265, + "2003": 0.268, + "2004": 0.271, + "2005": 0.274, + "2006": 0.277, + "2007": 0.28, + "2008": 0.283, + "2009": 0.286, + "2010": 0.289, + "2011": 0.292, + "2012": 0.295, + "2013": 0.298, + "2014": 0.301, + "2015": 0.304, + "2016": 0.307, + "2017": 0.31, + "2018": 0.313, + "2019": 0.324, + "2020": 0.324, + "2021": 0.324 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr103", + "Region": "Kie Ntem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.31, + "2001": 0.313, + "2002": 0.316, + "2003": 0.32, + "2004": 0.323, + "2005": 0.327, + "2006": 0.331, + "2007": 0.334, + "2008": 0.338, + "2009": 0.341, + "2010": 0.345, + "2011": 0.348, + "2012": 0.352, + "2013": 0.355, + "2014": 0.359, + "2015": 0.362, + "2016": 0.366, + "2017": 0.369, + "2018": 0.373, + "2019": 0.386, + "2020": 0.386, + "2021": 0.386 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr104", + "Region": "Litoral", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.415, + "2001": 0.42, + "2002": 0.424, + "2003": 0.429, + "2004": 0.434, + "2005": 0.439, + "2006": 0.443, + "2007": 0.448, + "2008": 0.453, + "2009": 0.458, + "2010": 0.462, + "2011": 0.467, + "2012": 0.472, + "2013": 0.476, + "2014": 0.481, + "2015": 0.486, + "2016": 0.491, + "2017": 0.495, + "2018": 0.5, + "2019": 0.517, + "2020": 0.517, + "2021": 0.517 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr105", + "Region": "Wele Nzas", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.252, + "2001": 0.255, + "2002": 0.258, + "2003": 0.261, + "2004": 0.264, + "2005": 0.266, + "2006": 0.269, + "2007": 0.272, + "2008": 0.275, + "2009": 0.278, + "2010": 0.281, + "2011": 0.284, + "2012": 0.286, + "2013": 0.289, + "2014": 0.292, + "2015": 0.295, + "2016": 0.298, + "2017": 0.301, + "2018": 0.303, + "2019": 0.314, + "2020": 0.314, + "2021": 0.314 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "National", + "GDLCODE": "ERIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.348, + "2006": 0.354, + "2007": 0.36, + "2008": 0.367, + "2009": 0.369, + "2010": 0.368, + "2011": 0.375, + "2012": 0.382, + "2013": 0.389, + "2014": 0.396, + "2015": 0.379, + "2016": 0.382, + "2017": 0.384, + "2018": 0.387, + "2019": 0.387, + "2020": 0.387, + "2021": 0.387 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr104", + "Region": "Anseba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.275, + "2006": 0.279, + "2007": 0.282, + "2008": 0.286, + "2009": 0.287, + "2010": 0.285, + "2011": 0.291, + "2012": 0.297, + "2013": 0.302, + "2014": 0.308, + "2015": 0.291, + "2016": 0.292, + "2017": 0.294, + "2018": 0.295, + "2019": 0.295, + "2020": 0.295, + "2021": 0.295 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr106", + "Region": "Debub (Southern)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.34, + "2006": 0.345, + "2007": 0.351, + "2008": 0.356, + "2009": 0.358, + "2010": 0.356, + "2011": 0.363, + "2012": 0.37, + "2013": 0.377, + "2014": 0.384, + "2015": 0.364, + "2016": 0.366, + "2017": 0.368, + "2018": 0.37, + "2019": 0.371, + "2020": 0.371, + "2021": 0.371 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr101", + "Region": "Debubawi Keyih Bahri (Southern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.351, + "2006": 0.359, + "2007": 0.367, + "2008": 0.374, + "2009": 0.377, + "2010": 0.377, + "2011": 0.384, + "2012": 0.391, + "2013": 0.398, + "2014": 0.405, + "2015": 0.391, + "2016": 0.394, + "2017": 0.397, + "2018": 0.4, + "2019": 0.4, + "2020": 0.4, + "2021": 0.4 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr105", + "Region": "Gash Barka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.192, + "2006": 0.194, + "2007": 0.197, + "2008": 0.199, + "2009": 0.2, + "2010": 0.198, + "2011": 0.202, + "2012": 0.206, + "2013": 0.21, + "2014": 0.214, + "2015": 0.202, + "2016": 0.203, + "2017": 0.204, + "2018": 0.205, + "2019": 0.205, + "2020": 0.205, + "2021": 0.205 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr102", + "Region": "Maekel (Central including Asmara)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.565, + "2006": 0.579, + "2007": 0.592, + "2008": 0.606, + "2009": 0.611, + "2010": 0.612, + "2011": 0.623, + "2012": 0.634, + "2013": 0.645, + "2014": 0.657, + "2015": 0.636, + "2016": 0.641, + "2017": 0.646, + "2018": 0.652, + "2019": 0.652, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr103", + "Region": "Semenawi Keyih Bahri (Northern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.244, + "2006": 0.247, + "2007": 0.251, + "2008": 0.254, + "2009": 0.255, + "2010": 0.253, + "2011": 0.258, + "2012": 0.264, + "2013": 0.269, + "2014": 0.274, + "2015": 0.259, + "2016": 0.26, + "2017": 0.261, + "2018": 0.263, + "2019": 0.263, + "2020": 0.263, + "2021": 0.263 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "National", + "GDLCODE": "ESTt", + "Region": "Total", + "1990": 0.687, + "1991": 0.688, + "1992": 0.695, + "1993": 0.691, + "1994": 0.704, + "1995": 0.721, + "1996": 0.741, + "1997": 0.761, + "1998": 0.782, + "1999": 0.797, + "2000": 0.822, + "2001": 0.84, + "2002": 0.851, + "2003": 0.86, + "2004": 0.87, + "2005": 0.882, + "2006": 0.886, + "2007": 0.888, + "2008": 0.889, + "2009": 0.893, + "2010": 0.9, + "2011": 0.905, + "2012": 0.907, + "2013": 0.908, + "2014": 0.899, + "2015": 0.897, + "2016": 0.897, + "2017": 0.894, + "2018": 0.897, + "2019": 0.896, + "2020": 0.894, + "2021": 0.894 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr103", + "Region": "Kesk-Eesti", + "1990": 0.632, + "1991": 0.633, + "1992": 0.639, + "1993": 0.636, + "1994": 0.648, + "1995": 0.664, + "1996": 0.682, + "1997": 0.701, + "1998": 0.716, + "1999": 0.722, + "2000": 0.737, + "2001": 0.77, + "2002": 0.791, + "2003": 0.795, + "2004": 0.792, + "2005": 0.802, + "2006": 0.808, + "2007": 0.792, + "2008": 0.804, + "2009": 0.817, + "2010": 0.837, + "2011": 0.825, + "2012": 0.827, + "2013": 0.826, + "2014": 0.808, + "2015": 0.802, + "2016": 0.811, + "2017": 0.809, + "2018": 0.811, + "2019": 0.81, + "2020": 0.809, + "2021": 0.809 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr104", + "Region": "Kirde-Eesti", + "1990": 0.676, + "1991": 0.677, + "1992": 0.684, + "1993": 0.68, + "1994": 0.693, + "1995": 0.71, + "1996": 0.729, + "1997": 0.75, + "1998": 0.866, + "1999": 0.89, + "2000": 0.933, + "2001": 0.951, + "2002": 0.98, + "2003": 0.973, + "2004": 0.966, + "2005": 0.945, + "2006": 0.959, + "2007": 0.973, + "2008": 0.973, + "2009": 0.946, + "2010": 0.963, + "2011": 0.946, + "2012": 0.948, + "2013": 0.945, + "2014": 0.914, + "2015": 0.91, + "2016": 0.91, + "2017": 0.907, + "2018": 0.91, + "2019": 0.909, + "2020": 0.907, + "2021": 0.907 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr102", + "Region": "Laane-Eesti", + "1990": 0.639, + "1991": 0.64, + "1992": 0.647, + "1993": 0.643, + "1994": 0.656, + "1995": 0.671, + "1996": 0.69, + "1997": 0.709, + "1998": 0.724, + "1999": 0.731, + "2000": 0.758, + "2001": 0.784, + "2002": 0.804, + "2003": 0.817, + "2004": 0.815, + "2005": 0.807, + "2006": 0.796, + "2007": 0.817, + "2008": 0.814, + "2009": 0.809, + "2010": 0.826, + "2011": 0.837, + "2012": 0.831, + "2013": 0.831, + "2014": 0.843, + "2015": 0.852, + "2016": 0.838, + "2017": 0.836, + "2018": 0.839, + "2019": 0.837, + "2020": 0.836, + "2021": 0.836 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr105", + "Region": "Louna-Eesti", + "1990": 0.665, + "1991": 0.666, + "1992": 0.673, + "1993": 0.669, + "1994": 0.682, + "1995": 0.699, + "1996": 0.718, + "1997": 0.738, + "1998": 0.759, + "1999": 0.772, + "2000": 0.789, + "2001": 0.802, + "2002": 0.806, + "2003": 0.83, + "2004": 0.849, + "2005": 0.847, + "2006": 0.859, + "2007": 0.857, + "2008": 0.853, + "2009": 0.865, + "2010": 0.863, + "2011": 0.875, + "2012": 0.879, + "2013": 0.88, + "2014": 0.865, + "2015": 0.865, + "2016": 0.871, + "2017": 0.869, + "2018": 0.871, + "2019": 0.87, + "2020": 0.869, + "2021": 0.869 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr101", + "Region": "Pohja-Eesti", + "1990": 0.732, + "1991": 0.734, + "1992": 0.741, + "1993": 0.737, + "1994": 0.751, + "1995": 0.769, + "1996": 0.79, + "1997": 0.812, + "1998": 0.837, + "1999": 0.858, + "2000": 0.89, + "2001": 0.904, + "2002": 0.91, + "2003": 0.916, + "2004": 0.925, + "2005": 0.945, + "2006": 0.946, + "2007": 0.953, + "2008": 0.952, + "2009": 0.955, + "2010": 0.962, + "2011": 0.963, + "2012": 0.968, + "2013": 0.968, + "2014": 0.956, + "2015": 0.95, + "2016": 0.949, + "2017": 0.947, + "2018": 0.95, + "2019": 0.949, + "2020": 0.947, + "2021": 0.947 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "National", + "GDLCODE": "SWZt", + "Region": "Total", + "1990": 0.405, + "1991": 0.405, + "1992": 0.406, + "1993": 0.406, + "1994": 0.409, + "1995": 0.412, + "1996": 0.413, + "1997": 0.413, + "1998": 0.413, + "1999": 0.412, + "2000": 0.407, + "2001": 0.402, + "2002": 0.397, + "2003": 0.401, + "2004": 0.405, + "2005": 0.407, + "2006": 0.432, + "2007": 0.445, + "2008": 0.457, + "2009": 0.469, + "2010": 0.481, + "2011": 0.495, + "2012": 0.502, + "2013": 0.51, + "2014": 0.521, + "2015": 0.533, + "2016": 0.541, + "2017": 0.55, + "2018": 0.559, + "2019": 0.568, + "2020": 0.568, + "2021": 0.568 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr101", + "Region": "Hhohho", + "1990": 0.422, + "1991": 0.422, + "1992": 0.422, + "1993": 0.422, + "1994": 0.425, + "1995": 0.428, + "1996": 0.429, + "1997": 0.429, + "1998": 0.428, + "1999": 0.428, + "2000": 0.422, + "2001": 0.416, + "2002": 0.411, + "2003": 0.415, + "2004": 0.418, + "2005": 0.42, + "2006": 0.446, + "2007": 0.456, + "2008": 0.466, + "2009": 0.475, + "2010": 0.485, + "2011": 0.499, + "2012": 0.507, + "2013": 0.516, + "2014": 0.528, + "2015": 0.54, + "2016": 0.549, + "2017": 0.558, + "2018": 0.567, + "2019": 0.576, + "2020": 0.576, + "2021": 0.576 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr104", + "Region": "Lubombo", + "1990": 0.366, + "1991": 0.366, + "1992": 0.366, + "1993": 0.367, + "1994": 0.37, + "1995": 0.373, + "1996": 0.374, + "1997": 0.374, + "1998": 0.374, + "1999": 0.373, + "2000": 0.369, + "2001": 0.366, + "2002": 0.362, + "2003": 0.368, + "2004": 0.374, + "2005": 0.379, + "2006": 0.403, + "2007": 0.415, + "2008": 0.428, + "2009": 0.44, + "2010": 0.452, + "2011": 0.465, + "2012": 0.473, + "2013": 0.48, + "2014": 0.491, + "2015": 0.501, + "2016": 0.509, + "2017": 0.518, + "2018": 0.526, + "2019": 0.534, + "2020": 0.534, + "2021": 0.534 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr102", + "Region": "Manzini", + "1990": 0.428, + "1991": 0.428, + "1992": 0.428, + "1993": 0.428, + "1994": 0.431, + "1995": 0.434, + "1996": 0.436, + "1997": 0.435, + "1998": 0.434, + "1999": 0.433, + "2000": 0.428, + "2001": 0.424, + "2002": 0.419, + "2003": 0.424, + "2004": 0.429, + "2005": 0.432, + "2006": 0.46, + "2007": 0.469, + "2008": 0.478, + "2009": 0.488, + "2010": 0.497, + "2011": 0.51, + "2012": 0.517, + "2013": 0.523, + "2014": 0.533, + "2015": 0.545, + "2016": 0.554, + "2017": 0.564, + "2018": 0.573, + "2019": 0.582, + "2020": 0.582, + "2021": 0.582 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr103", + "Region": "Shiselweni", + "1990": 0.386, + "1991": 0.386, + "1992": 0.387, + "1993": 0.387, + "1994": 0.39, + "1995": 0.394, + "1996": 0.395, + "1997": 0.395, + "1998": 0.395, + "1999": 0.395, + "2000": 0.391, + "2001": 0.384, + "2002": 0.377, + "2003": 0.379, + "2004": 0.382, + "2005": 0.382, + "2006": 0.404, + "2007": 0.422, + "2008": 0.441, + "2009": 0.459, + "2010": 0.477, + "2011": 0.49, + "2012": 0.497, + "2013": 0.504, + "2014": 0.515, + "2015": 0.526, + "2016": 0.534, + "2017": 0.543, + "2018": 0.552, + "2019": 0.56, + "2020": 0.56, + "2021": 0.56 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "National", + "GDLCODE": "ETHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.169, + "2001": 0.187, + "2002": 0.199, + "2003": 0.207, + "2004": 0.219, + "2005": 0.244, + "2006": 0.262, + "2007": 0.279, + "2008": 0.295, + "2009": 0.296, + "2010": 0.299, + "2011": 0.304, + "2012": 0.309, + "2013": 0.317, + "2014": 0.325, + "2015": 0.334, + "2016": 0.342, + "2017": 0.353, + "2018": 0.364, + "2019": 0.375, + "2020": 0.375, + "2021": 0.375 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr110", + "Region": "Addis", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.495, + "2001": 0.519, + "2002": 0.53, + "2003": 0.534, + "2004": 0.545, + "2005": 0.578, + "2006": 0.586, + "2007": 0.593, + "2008": 0.591, + "2009": 0.569, + "2010": 0.552, + "2011": 0.538, + "2012": 0.551, + "2013": 0.567, + "2014": 0.583, + "2015": 0.599, + "2016": 0.615, + "2017": 0.64, + "2018": 0.665, + "2019": 0.69, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr102", + "Region": "Affar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.095, + "2001": 0.099, + "2002": 0.1, + "2003": 0.098, + "2004": 0.099, + "2005": 0.105, + "2006": 0.132, + "2007": 0.161, + "2008": 0.189, + "2009": 0.207, + "2010": 0.226, + "2011": 0.246, + "2012": 0.248, + "2013": 0.252, + "2014": 0.257, + "2015": 0.261, + "2016": 0.266, + "2017": 0.273, + "2018": 0.281, + "2019": 0.289, + "2020": 0.289, + "2021": 0.289 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr103", + "Region": "Amhara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.127, + "2001": 0.146, + "2002": 0.162, + "2003": 0.172, + "2004": 0.187, + "2005": 0.214, + "2006": 0.231, + "2007": 0.248, + "2008": 0.264, + "2009": 0.265, + "2010": 0.268, + "2011": 0.273, + "2012": 0.28, + "2013": 0.29, + "2014": 0.3, + "2015": 0.31, + "2016": 0.32, + "2017": 0.329, + "2018": 0.338, + "2019": 0.348, + "2020": 0.348, + "2021": 0.348 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr106", + "Region": "Ben-Gumz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.184, + "2001": 0.196, + "2002": 0.202, + "2003": 0.203, + "2004": 0.209, + "2005": 0.228, + "2006": 0.249, + "2007": 0.269, + "2008": 0.288, + "2009": 0.292, + "2010": 0.297, + "2011": 0.305, + "2012": 0.312, + "2013": 0.322, + "2014": 0.332, + "2015": 0.342, + "2016": 0.352, + "2017": 0.363, + "2018": 0.374, + "2019": 0.385, + "2020": 0.385, + "2021": 0.385 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr111", + "Region": "Dire Dawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.338, + "2001": 0.351, + "2002": 0.356, + "2003": 0.354, + "2004": 0.358, + "2005": 0.379, + "2006": 0.4, + "2007": 0.421, + "2008": 0.437, + "2009": 0.436, + "2010": 0.437, + "2011": 0.441, + "2012": 0.439, + "2013": 0.441, + "2014": 0.442, + "2015": 0.443, + "2016": 0.445, + "2017": 0.461, + "2018": 0.477, + "2019": 0.493, + "2020": 0.493, + "2021": 0.493 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr108", + "Region": "Gambela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.318, + "2001": 0.318, + "2002": 0.309, + "2003": 0.293, + "2004": 0.284, + "2005": 0.29, + "2006": 0.316, + "2007": 0.342, + "2008": 0.365, + "2009": 0.371, + "2010": 0.378, + "2011": 0.389, + "2012": 0.411, + "2013": 0.437, + "2014": 0.463, + "2015": 0.489, + "2016": 0.516, + "2017": 0.534, + "2018": 0.553, + "2019": 0.571, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr109", + "Region": "Harari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.325, + "2001": 0.344, + "2002": 0.353, + "2003": 0.357, + "2004": 0.366, + "2005": 0.392, + "2006": 0.41, + "2007": 0.429, + "2008": 0.441, + "2009": 0.437, + "2010": 0.436, + "2011": 0.438, + "2012": 0.439, + "2013": 0.443, + "2014": 0.447, + "2015": 0.451, + "2016": 0.455, + "2017": 0.472, + "2018": 0.489, + "2019": 0.507, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr104", + "Region": "Oromiya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.161, + "2001": 0.181, + "2002": 0.196, + "2003": 0.207, + "2004": 0.222, + "2005": 0.25, + "2006": 0.264, + "2007": 0.279, + "2008": 0.291, + "2009": 0.288, + "2010": 0.288, + "2011": 0.29, + "2012": 0.293, + "2013": 0.298, + "2014": 0.303, + "2015": 0.308, + "2016": 0.314, + "2017": 0.324, + "2018": 0.334, + "2019": 0.344, + "2020": 0.344, + "2021": 0.344 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr107", + "Region": "SNNP", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.184, + "2001": 0.198, + "2002": 0.206, + "2003": 0.209, + "2004": 0.217, + "2005": 0.238, + "2006": 0.26, + "2007": 0.283, + "2008": 0.303, + "2009": 0.309, + "2010": 0.316, + "2011": 0.326, + "2012": 0.333, + "2013": 0.343, + "2014": 0.353, + "2015": 0.363, + "2016": 0.373, + "2017": 0.385, + "2018": 0.396, + "2019": 0.408, + "2020": 0.408, + "2021": 0.408 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr105", + "Region": "Somali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.073, + "2001": 0.078, + "2002": 0.08, + "2003": 0.08, + "2004": 0.082, + "2005": 0.089, + "2006": 0.12, + "2007": 0.154, + "2008": 0.187, + "2009": 0.21, + "2010": 0.234, + "2011": 0.258, + "2012": 0.258, + "2013": 0.259, + "2014": 0.261, + "2015": 0.263, + "2016": 0.264, + "2017": 0.272, + "2018": 0.28, + "2019": 0.287, + "2020": 0.287, + "2021": 0.287 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr101", + "Region": "Tigray", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.167, + "2001": 0.187, + "2002": 0.201, + "2003": 0.209, + "2004": 0.222, + "2005": 0.25, + "2006": 0.267, + "2007": 0.284, + "2008": 0.298, + "2009": 0.298, + "2010": 0.3, + "2011": 0.304, + "2012": 0.312, + "2013": 0.322, + "2014": 0.333, + "2015": 0.343, + "2016": 0.354, + "2017": 0.365, + "2018": 0.375, + "2019": 0.386, + "2020": 0.386, + "2021": 0.386 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "National", + "GDLCODE": "FJIt", + "Region": "Total", + "1990": 0.565, + "1991": 0.574, + "1992": 0.584, + "1993": 0.594, + "1994": 0.603, + "1995": 0.613, + "1996": 0.614, + "1997": 0.621, + "1998": 0.628, + "1999": 0.635, + "2000": 0.642, + "2001": 0.648, + "2002": 0.655, + "2003": 0.662, + "2004": 0.681, + "2005": 0.687, + "2006": 0.693, + "2007": 0.699, + "2008": 0.705, + "2009": 0.711, + "2010": 0.717, + "2011": 0.723, + "2012": 0.729, + "2013": 0.735, + "2014": 0.741, + "2015": 0.747, + "2016": 0.753, + "2017": 0.759, + "2018": 0.766, + "2019": 0.772, + "2020": 0.773, + "2021": 0.773 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr108", + "Region": "Ba", + "1990": 0.555, + "1991": 0.564, + "1992": 0.574, + "1993": 0.584, + "1994": 0.593, + "1995": 0.603, + "1996": 0.604, + "1997": 0.611, + "1998": 0.618, + "1999": 0.624, + "2000": 0.631, + "2001": 0.638, + "2002": 0.645, + "2003": 0.652, + "2004": 0.67, + "2005": 0.676, + "2006": 0.682, + "2007": 0.688, + "2008": 0.694, + "2009": 0.7, + "2010": 0.707, + "2011": 0.713, + "2012": 0.719, + "2013": 0.725, + "2014": 0.731, + "2015": 0.738, + "2016": 0.744, + "2017": 0.75, + "2018": 0.756, + "2019": 0.763, + "2020": 0.764, + "2021": 0.765 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr106", + "Region": "Cakaudrove, Bua", + "1990": 0.518, + "1991": 0.527, + "1992": 0.536, + "1993": 0.544, + "1994": 0.553, + "1995": 0.562, + "1996": 0.563, + "1997": 0.569, + "1998": 0.576, + "1999": 0.582, + "2000": 0.588, + "2001": 0.595, + "2002": 0.601, + "2003": 0.607, + "2004": 0.624, + "2005": 0.63, + "2006": 0.635, + "2007": 0.641, + "2008": 0.646, + "2009": 0.651, + "2010": 0.656, + "2011": 0.661, + "2012": 0.666, + "2013": 0.671, + "2014": 0.676, + "2015": 0.681, + "2016": 0.686, + "2017": 0.691, + "2018": 0.697, + "2019": 0.702, + "2020": 0.703, + "2021": 0.702 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr105", + "Region": "Kadavu, Lau, Lomaiviti, Rotuma", + "1990": 0.538, + "1991": 0.547, + "1992": 0.556, + "1993": 0.565, + "1994": 0.574, + "1995": 0.584, + "1996": 0.585, + "1997": 0.591, + "1998": 0.598, + "1999": 0.604, + "2000": 0.611, + "2001": 0.617, + "2002": 0.624, + "2003": 0.63, + "2004": 0.648, + "2005": 0.653, + "2006": 0.659, + "2007": 0.665, + "2008": 0.67, + "2009": 0.675, + "2010": 0.68, + "2011": 0.685, + "2012": 0.69, + "2013": 0.695, + "2014": 0.7, + "2015": 0.704, + "2016": 0.709, + "2017": 0.714, + "2018": 0.719, + "2019": 0.725, + "2020": 0.725, + "2021": 0.724 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr107", + "Region": "Macuata", + "1990": 0.547, + "1991": 0.556, + "1992": 0.565, + "1993": 0.575, + "1994": 0.584, + "1995": 0.593, + "1996": 0.594, + "1997": 0.601, + "1998": 0.607, + "1999": 0.614, + "2000": 0.62, + "2001": 0.627, + "2002": 0.633, + "2003": 0.64, + "2004": 0.658, + "2005": 0.664, + "2006": 0.669, + "2007": 0.675, + "2008": 0.683, + "2009": 0.69, + "2010": 0.698, + "2011": 0.706, + "2012": 0.713, + "2013": 0.721, + "2014": 0.728, + "2015": 0.736, + "2016": 0.744, + "2017": 0.751, + "2018": 0.759, + "2019": 0.767, + "2020": 0.771, + "2021": 0.772 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr109", + "Region": "Nadroga or Navosa", + "1990": 0.533, + "1991": 0.543, + "1992": 0.552, + "1993": 0.561, + "1994": 0.571, + "1995": 0.58, + "1996": 0.581, + "1997": 0.588, + "1998": 0.594, + "1999": 0.601, + "2000": 0.607, + "2001": 0.614, + "2002": 0.621, + "2003": 0.627, + "2004": 0.644, + "2005": 0.65, + "2006": 0.656, + "2007": 0.662, + "2008": 0.668, + "2009": 0.674, + "2010": 0.68, + "2011": 0.686, + "2012": 0.692, + "2013": 0.698, + "2014": 0.704, + "2015": 0.71, + "2016": 0.716, + "2017": 0.722, + "2018": 0.729, + "2019": 0.735, + "2020": 0.736, + "2021": 0.737 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr101", + "Region": "Naitasiri", + "1990": 0.59, + "1991": 0.6, + "1992": 0.61, + "1993": 0.62, + "1994": 0.63, + "1995": 0.64, + "1996": 0.641, + "1997": 0.648, + "1998": 0.656, + "1999": 0.663, + "2000": 0.67, + "2001": 0.677, + "2002": 0.684, + "2003": 0.692, + "2004": 0.711, + "2005": 0.717, + "2006": 0.723, + "2007": 0.73, + "2008": 0.736, + "2009": 0.743, + "2010": 0.75, + "2011": 0.756, + "2012": 0.763, + "2013": 0.769, + "2014": 0.776, + "2015": 0.783, + "2016": 0.789, + "2017": 0.796, + "2018": 0.803, + "2019": 0.81, + "2020": 0.811, + "2021": 0.812 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr110", + "Region": "Ra", + "1990": 0.529, + "1991": 0.538, + "1992": 0.547, + "1993": 0.556, + "1994": 0.565, + "1995": 0.574, + "1996": 0.575, + "1997": 0.582, + "1998": 0.588, + "1999": 0.595, + "2000": 0.601, + "2001": 0.608, + "2002": 0.614, + "2003": 0.62, + "2004": 0.638, + "2005": 0.643, + "2006": 0.649, + "2007": 0.655, + "2008": 0.66, + "2009": 0.665, + "2010": 0.669, + "2011": 0.674, + "2012": 0.679, + "2013": 0.684, + "2014": 0.689, + "2015": 0.694, + "2016": 0.698, + "2017": 0.703, + "2018": 0.708, + "2019": 0.713, + "2020": 0.714, + "2021": 0.713 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr102", + "Region": "Rewa", + "1990": 0.614, + "1991": 0.624, + "1992": 0.634, + "1993": 0.645, + "1994": 0.655, + "1995": 0.666, + "1996": 0.667, + "1997": 0.674, + "1998": 0.682, + "1999": 0.689, + "2000": 0.697, + "2001": 0.704, + "2002": 0.711, + "2003": 0.719, + "2004": 0.739, + "2005": 0.745, + "2006": 0.752, + "2007": 0.759, + "2008": 0.763, + "2009": 0.767, + "2010": 0.771, + "2011": 0.775, + "2012": 0.779, + "2013": 0.783, + "2014": 0.787, + "2015": 0.791, + "2016": 0.795, + "2017": 0.799, + "2018": 0.803, + "2019": 0.807, + "2020": 0.806, + "2021": 0.804 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr103", + "Region": "Serua, Namosi", + "1990": 0.543, + "1991": 0.553, + "1992": 0.563, + "1993": 0.572, + "1994": 0.582, + "1995": 0.591, + "1996": 0.592, + "1997": 0.599, + "1998": 0.606, + "1999": 0.613, + "2000": 0.62, + "2001": 0.626, + "2002": 0.633, + "2003": 0.64, + "2004": 0.657, + "2005": 0.663, + "2006": 0.67, + "2007": 0.676, + "2008": 0.682, + "2009": 0.689, + "2010": 0.695, + "2011": 0.702, + "2012": 0.708, + "2013": 0.714, + "2014": 0.721, + "2015": 0.727, + "2016": 0.734, + "2017": 0.74, + "2018": 0.747, + "2019": 0.754, + "2020": 0.756, + "2021": 0.756 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr104", + "Region": "Tailevu", + "1990": 0.58, + "1991": 0.59, + "1992": 0.6, + "1993": 0.61, + "1994": 0.62, + "1995": 0.629, + "1996": 0.631, + "1997": 0.638, + "1998": 0.645, + "1999": 0.652, + "2000": 0.659, + "2001": 0.666, + "2002": 0.673, + "2003": 0.68, + "2004": 0.699, + "2005": 0.705, + "2006": 0.711, + "2007": 0.717, + "2008": 0.722, + "2009": 0.728, + "2010": 0.733, + "2011": 0.738, + "2012": 0.743, + "2013": 0.748, + "2014": 0.753, + "2015": 0.758, + "2016": 0.763, + "2017": 0.768, + "2018": 0.773, + "2019": 0.778, + "2020": 0.779, + "2021": 0.777 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "National", + "GDLCODE": "FINt", + "Region": "Total", + "1990": 0.723, + "1991": 0.736, + "1992": 0.759, + "1993": 0.769, + "1994": 0.786, + "1995": 0.796, + "1996": 0.81, + "1997": 0.823, + "1998": 0.839, + "1999": 0.853, + "2000": 0.872, + "2001": 0.888, + "2002": 0.896, + "2003": 0.903, + "2004": 0.878, + "2005": 0.882, + "2006": 0.884, + "2007": 0.884, + "2008": 0.884, + "2009": 0.879, + "2010": 0.884, + "2011": 0.889, + "2012": 0.89, + "2013": 0.918, + "2014": 0.92, + "2015": 0.921, + "2016": 0.923, + "2017": 0.925, + "2018": 0.927, + "2019": 0.929, + "2020": 0.929, + "2021": 0.929 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr105", + "Region": "Aland", + "1990": 0.66, + "1991": 0.672, + "1992": 0.693, + "1993": 0.703, + "1994": 0.718, + "1995": 0.727, + "1996": 0.74, + "1997": 0.752, + "1998": 0.767, + "1999": 0.779, + "2000": 0.797, + "2001": 0.822, + "2002": 0.83, + "2003": 0.855, + "2004": 0.818, + "2005": 0.807, + "2006": 0.818, + "2007": 0.817, + "2008": 0.819, + "2009": 0.812, + "2010": 0.814, + "2011": 0.811, + "2012": 0.823, + "2013": 0.88, + "2014": 0.874, + "2015": 0.86, + "2016": 0.863, + "2017": 0.869, + "2018": 0.879, + "2019": 0.873, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr103", + "Region": "Etela-Suomi", + "1990": 0.724, + "1991": 0.738, + "1992": 0.76, + "1993": 0.771, + "1994": 0.788, + "1995": 0.798, + "1996": 0.812, + "1997": 0.825, + "1998": 0.841, + "1999": 0.855, + "2000": 0.874, + "2001": 0.889, + "2002": 0.898, + "2003": 0.906, + "2004": 0.873, + "2005": 0.872, + "2006": 0.872, + "2007": 0.874, + "2008": 0.877, + "2009": 0.87, + "2010": 0.874, + "2011": 0.878, + "2012": 0.88, + "2013": 0.91, + "2014": 0.913, + "2015": 0.914, + "2016": 0.915, + "2017": 0.918, + "2018": 0.921, + "2019": 0.924, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr102", + "Region": "Helsinki-Uusimaa", + "1990": 0.735, + "1991": 0.749, + "1992": 0.771, + "1993": 0.782, + "1994": 0.8, + "1995": 0.81, + "1996": 0.824, + "1997": 0.838, + "1998": 0.854, + "1999": 0.868, + "2000": 0.888, + "2001": 0.903, + "2002": 0.913, + "2003": 0.925, + "2004": 0.888, + "2005": 0.886, + "2006": 0.889, + "2007": 0.891, + "2008": 0.89, + "2009": 0.885, + "2010": 0.89, + "2011": 0.897, + "2012": 0.897, + "2013": 0.934, + "2014": 0.935, + "2015": 0.936, + "2016": 0.937, + "2017": 0.938, + "2018": 0.939, + "2019": 0.942, + "2020": 0.942, + "2021": 0.942 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr101", + "Region": "Lansi-Suomi", + "1990": 0.73, + "1991": 0.743, + "1992": 0.766, + "1993": 0.777, + "1994": 0.794, + "1995": 0.804, + "1996": 0.817, + "1997": 0.831, + "1998": 0.847, + "1999": 0.861, + "2000": 0.881, + "2001": 0.888, + "2002": 0.896, + "2003": 0.903, + "2004": 0.886, + "2005": 0.887, + "2006": 0.887, + "2007": 0.886, + "2008": 0.887, + "2009": 0.882, + "2010": 0.888, + "2011": 0.891, + "2012": 0.893, + "2013": 0.915, + "2014": 0.915, + "2015": 0.918, + "2016": 0.921, + "2017": 0.922, + "2018": 0.924, + "2019": 0.927, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr104", + "Region": "Pohjois-ja Ita-Suomi", + "1990": 0.735, + "1991": 0.748, + "1992": 0.771, + "1993": 0.782, + "1994": 0.799, + "1995": 0.81, + "1996": 0.823, + "1997": 0.837, + "1998": 0.853, + "1999": 0.867, + "2000": 0.887, + "2001": 0.893, + "2002": 0.901, + "2003": 0.907, + "2004": 0.885, + "2005": 0.884, + "2006": 0.886, + "2007": 0.883, + "2008": 0.883, + "2009": 0.879, + "2010": 0.884, + "2011": 0.888, + "2012": 0.89, + "2013": 0.91, + "2014": 0.913, + "2015": 0.912, + "2016": 0.915, + "2017": 0.918, + "2018": 0.92, + "2019": 0.921, + "2020": 0.921, + "2021": 0.921 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "National", + "GDLCODE": "FRAt", + "Region": "Total", + "1990": 0.643, + "1991": 0.66, + "1992": 0.673, + "1993": 0.682, + "1994": 0.71, + "1995": 0.72, + "1996": 0.729, + "1997": 0.734, + "1998": 0.739, + "1999": 0.727, + "2000": 0.731, + "2001": 0.735, + "2002": 0.735, + "2003": 0.742, + "2004": 0.748, + "2005": 0.766, + "2006": 0.769, + "2007": 0.772, + "2008": 0.773, + "2009": 0.772, + "2010": 0.78, + "2011": 0.784, + "2012": 0.788, + "2013": 0.797, + "2014": 0.803, + "2015": 0.806, + "2016": 0.81, + "2017": 0.815, + "2018": 0.821, + "2019": 0.826, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr110", + "Region": "Alsace", + "1990": 0.639, + "1991": 0.656, + "1992": 0.668, + "1993": 0.677, + "1994": 0.706, + "1995": 0.715, + "1996": 0.724, + "1997": 0.73, + "1998": 0.734, + "1999": 0.722, + "2000": 0.726, + "2001": 0.731, + "2002": 0.731, + "2003": 0.744, + "2004": 0.751, + "2005": 0.767, + "2006": 0.768, + "2007": 0.765, + "2008": 0.776, + "2009": 0.773, + "2010": 0.782, + "2011": 0.782, + "2012": 0.783, + "2013": 0.791, + "2014": 0.798, + "2015": 0.806, + "2016": 0.813, + "2017": 0.815, + "2018": 0.816, + "2019": 0.824, + "2020": 0.824, + "2021": 0.824 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr115", + "Region": "Aquitaine", + "1990": 0.64, + "1991": 0.657, + "1992": 0.67, + "1993": 0.679, + "1994": 0.707, + "1995": 0.717, + "1996": 0.726, + "1997": 0.731, + "1998": 0.736, + "1999": 0.724, + "2000": 0.728, + "2001": 0.729, + "2002": 0.726, + "2003": 0.736, + "2004": 0.74, + "2005": 0.758, + "2006": 0.761, + "2007": 0.765, + "2008": 0.768, + "2009": 0.768, + "2010": 0.779, + "2011": 0.776, + "2012": 0.78, + "2013": 0.792, + "2014": 0.803, + "2015": 0.808, + "2016": 0.807, + "2017": 0.814, + "2018": 0.826, + "2019": 0.83, + "2020": 0.83, + "2021": 0.83 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr119", + "Region": "Auvergne", + "1990": 0.64, + "1991": 0.657, + "1992": 0.67, + "1993": 0.679, + "1994": 0.707, + "1995": 0.716, + "1996": 0.725, + "1997": 0.731, + "1998": 0.735, + "1999": 0.723, + "2000": 0.727, + "2001": 0.734, + "2002": 0.731, + "2003": 0.739, + "2004": 0.745, + "2005": 0.763, + "2006": 0.763, + "2007": 0.764, + "2008": 0.776, + "2009": 0.776, + "2010": 0.777, + "2011": 0.778, + "2012": 0.785, + "2013": 0.791, + "2014": 0.79, + "2015": 0.794, + "2016": 0.798, + "2017": 0.793, + "2018": 0.799, + "2019": 0.805, + "2020": 0.805, + "2021": 0.805 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr106", + "Region": "Basse-Normandie", + "1990": 0.621, + "1991": 0.638, + "1992": 0.65, + "1993": 0.659, + "1994": 0.686, + "1995": 0.695, + "1996": 0.704, + "1997": 0.709, + "1998": 0.714, + "1999": 0.702, + "2000": 0.706, + "2001": 0.71, + "2002": 0.712, + "2003": 0.712, + "2004": 0.717, + "2005": 0.741, + "2006": 0.747, + "2007": 0.749, + "2008": 0.755, + "2009": 0.752, + "2010": 0.758, + "2011": 0.759, + "2012": 0.763, + "2013": 0.771, + "2014": 0.77, + "2015": 0.775, + "2016": 0.776, + "2017": 0.779, + "2018": 0.79, + "2019": 0.79, + "2020": 0.79, + "2021": 0.79 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr107", + "Region": "Bourgogne", + "1990": 0.622, + "1991": 0.638, + "1992": 0.65, + "1993": 0.659, + "1994": 0.687, + "1995": 0.696, + "1996": 0.705, + "1997": 0.71, + "1998": 0.714, + "1999": 0.703, + "2000": 0.706, + "2001": 0.712, + "2002": 0.711, + "2003": 0.721, + "2004": 0.725, + "2005": 0.735, + "2006": 0.738, + "2007": 0.739, + "2008": 0.745, + "2009": 0.749, + "2010": 0.752, + "2011": 0.756, + "2012": 0.765, + "2013": 0.774, + "2014": 0.778, + "2015": 0.775, + "2016": 0.78, + "2017": 0.788, + "2018": 0.79, + "2019": 0.798, + "2020": 0.798, + "2021": 0.798 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr113", + "Region": "Bretagne", + "1990": 0.651, + "1991": 0.668, + "1992": 0.681, + "1993": 0.69, + "1994": 0.719, + "1995": 0.729, + "1996": 0.738, + "1997": 0.743, + "1998": 0.748, + "1999": 0.735, + "2000": 0.739, + "2001": 0.745, + "2002": 0.746, + "2003": 0.75, + "2004": 0.758, + "2005": 0.783, + "2006": 0.788, + "2007": 0.793, + "2008": 0.788, + "2009": 0.784, + "2010": 0.791, + "2011": 0.797, + "2012": 0.804, + "2013": 0.814, + "2014": 0.818, + "2015": 0.816, + "2016": 0.818, + "2017": 0.823, + "2018": 0.831, + "2019": 0.834, + "2020": 0.834, + "2021": 0.834 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr105", + "Region": "Centre", + "1990": 0.617, + "1991": 0.634, + "1992": 0.646, + "1993": 0.655, + "1994": 0.682, + "1995": 0.691, + "1996": 0.7, + "1997": 0.705, + "1998": 0.709, + "1999": 0.698, + "2000": 0.702, + "2001": 0.702, + "2002": 0.701, + "2003": 0.718, + "2004": 0.722, + "2005": 0.732, + "2006": 0.739, + "2007": 0.74, + "2008": 0.742, + "2009": 0.744, + "2010": 0.753, + "2011": 0.759, + "2012": 0.764, + "2013": 0.769, + "2014": 0.77, + "2015": 0.775, + "2016": 0.78, + "2017": 0.785, + "2018": 0.791, + "2019": 0.795, + "2020": 0.795, + "2021": 0.795 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr102", + "Region": "Champagne-Ardenne", + "1990": 0.621, + "1991": 0.638, + "1992": 0.65, + "1993": 0.659, + "1994": 0.686, + "1995": 0.696, + "1996": 0.704, + "1997": 0.709, + "1998": 0.713, + "1999": 0.702, + "2000": 0.705, + "2001": 0.707, + "2002": 0.707, + "2003": 0.715, + "2004": 0.725, + "2005": 0.744, + "2006": 0.746, + "2007": 0.75, + "2008": 0.749, + "2009": 0.741, + "2010": 0.752, + "2011": 0.755, + "2012": 0.76, + "2013": 0.768, + "2014": 0.771, + "2015": 0.775, + "2016": 0.772, + "2017": 0.783, + "2018": 0.78, + "2019": 0.783, + "2020": 0.783, + "2021": 0.783 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr122", + "Region": "Corse", + "1990": 0.562, + "1991": 0.577, + "1992": 0.588, + "1993": 0.596, + "1994": 0.621, + "1995": 0.629, + "1996": 0.637, + "1997": 0.642, + "1998": 0.646, + "1999": 0.636, + "2000": 0.639, + "2001": 0.653, + "2002": 0.646, + "2003": 0.631, + "2004": 0.648, + "2005": 0.659, + "2006": 0.696, + "2007": 0.681, + "2008": 0.668, + "2009": 0.671, + "2010": 0.69, + "2011": 0.692, + "2012": 0.707, + "2013": 0.716, + "2014": 0.727, + "2015": 0.726, + "2016": 0.747, + "2017": 0.742, + "2018": 0.723, + "2019": 0.727, + "2020": 0.727, + "2021": 0.727 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr111", + "Region": "Franche-Comte", + "1990": 0.627, + "1991": 0.644, + "1992": 0.656, + "1993": 0.665, + "1994": 0.693, + "1995": 0.702, + "1996": 0.711, + "1997": 0.716, + "1998": 0.72, + "1999": 0.709, + "2000": 0.712, + "2001": 0.721, + "2002": 0.721, + "2003": 0.728, + "2004": 0.728, + "2005": 0.744, + "2006": 0.751, + "2007": 0.754, + "2008": 0.76, + "2009": 0.754, + "2010": 0.758, + "2011": 0.764, + "2012": 0.77, + "2013": 0.785, + "2014": 0.787, + "2015": 0.782, + "2016": 0.793, + "2017": 0.8, + "2018": 0.794, + "2019": 0.794, + "2020": 0.794, + "2021": 0.794 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr127", + "Region": "French Guyana", + "1990": 0.571, + "1991": 0.586, + "1992": 0.597, + "1993": 0.605, + "1994": 0.63, + "1995": 0.639, + "1996": 0.647, + "1997": 0.652, + "1998": 0.657, + "1999": 0.647, + "2000": 0.651, + "2001": 0.653, + "2002": 0.652, + "2003": 0.657, + "2004": 0.661, + "2005": 0.674, + "2006": 0.676, + "2007": 0.676, + "2008": 0.677, + "2009": 0.673, + "2010": 0.679, + "2011": 0.68, + "2012": 0.682, + "2013": 0.686, + "2014": 0.677, + "2015": 0.674, + "2016": 0.669, + "2017": 0.672, + "2018": 0.68, + "2019": 0.683, + "2020": 0.683, + "2021": 0.683 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr125", + "Region": "Guadeloupe", + "1990": 0.619, + "1991": 0.635, + "1992": 0.647, + "1993": 0.656, + "1994": 0.684, + "1995": 0.693, + "1996": 0.702, + "1997": 0.707, + "1998": 0.711, + "1999": 0.7, + "2000": 0.704, + "2001": 0.705, + "2002": 0.703, + "2003": 0.709, + "2004": 0.713, + "2005": 0.728, + "2006": 0.73, + "2007": 0.73, + "2008": 0.73, + "2009": 0.726, + "2010": 0.732, + "2011": 0.734, + "2012": 0.736, + "2013": 0.741, + "2014": 0.742, + "2015": 0.748, + "2016": 0.753, + "2017": 0.758, + "2018": 0.773, + "2019": 0.78, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr104", + "Region": "Haute-Normandie", + "1990": 0.623, + "1991": 0.639, + "1992": 0.651, + "1993": 0.66, + "1994": 0.688, + "1995": 0.697, + "1996": 0.706, + "1997": 0.711, + "1998": 0.715, + "1999": 0.704, + "2000": 0.707, + "2001": 0.715, + "2002": 0.715, + "2003": 0.717, + "2004": 0.722, + "2005": 0.74, + "2006": 0.74, + "2007": 0.744, + "2008": 0.743, + "2009": 0.739, + "2010": 0.75, + "2011": 0.757, + "2012": 0.766, + "2013": 0.772, + "2014": 0.774, + "2015": 0.781, + "2016": 0.784, + "2017": 0.788, + "2018": 0.799, + "2019": 0.807, + "2020": 0.807, + "2021": 0.807 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr101", + "Region": "Ile de France", + "1990": 0.674, + "1991": 0.692, + "1992": 0.705, + "1993": 0.714, + "1994": 0.744, + "1995": 0.754, + "1996": 0.764, + "1997": 0.77, + "1998": 0.774, + "1999": 0.762, + "2000": 0.766, + "2001": 0.769, + "2002": 0.77, + "2003": 0.777, + "2004": 0.782, + "2005": 0.805, + "2006": 0.806, + "2007": 0.808, + "2008": 0.807, + "2009": 0.806, + "2010": 0.813, + "2011": 0.817, + "2012": 0.82, + "2013": 0.828, + "2014": 0.837, + "2015": 0.843, + "2016": 0.848, + "2017": 0.853, + "2018": 0.861, + "2019": 0.869, + "2020": 0.869, + "2021": 0.869 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr120", + "Region": "Languedoc-Roussillon", + "1990": 0.639, + "1991": 0.656, + "1992": 0.669, + "1993": 0.678, + "1994": 0.706, + "1995": 0.716, + "1996": 0.724, + "1997": 0.73, + "1998": 0.734, + "1999": 0.722, + "2000": 0.725, + "2001": 0.728, + "2002": 0.727, + "2003": 0.746, + "2004": 0.747, + "2005": 0.76, + "2006": 0.761, + "2007": 0.769, + "2008": 0.77, + "2009": 0.765, + "2010": 0.772, + "2011": 0.775, + "2012": 0.778, + "2013": 0.788, + "2014": 0.801, + "2015": 0.802, + "2016": 0.805, + "2017": 0.811, + "2018": 0.814, + "2019": 0.821, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr117", + "Region": "Limousin", + "1990": 0.629, + "1991": 0.646, + "1992": 0.658, + "1993": 0.667, + "1994": 0.695, + "1995": 0.704, + "1996": 0.713, + "1997": 0.718, + "1998": 0.723, + "1999": 0.711, + "2000": 0.715, + "2001": 0.718, + "2002": 0.716, + "2003": 0.726, + "2004": 0.733, + "2005": 0.75, + "2006": 0.751, + "2007": 0.75, + "2008": 0.758, + "2009": 0.76, + "2010": 0.761, + "2011": 0.767, + "2012": 0.778, + "2013": 0.783, + "2014": 0.791, + "2015": 0.794, + "2016": 0.798, + "2017": 0.8, + "2018": 0.806, + "2019": 0.808, + "2020": 0.808, + "2021": 0.808 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr109", + "Region": "Lorraine", + "1990": 0.632, + "1991": 0.649, + "1992": 0.661, + "1993": 0.67, + "1994": 0.698, + "1995": 0.707, + "1996": 0.716, + "1997": 0.722, + "1998": 0.726, + "1999": 0.714, + "2000": 0.718, + "2001": 0.72, + "2002": 0.719, + "2003": 0.72, + "2004": 0.725, + "2005": 0.749, + "2006": 0.751, + "2007": 0.755, + "2008": 0.752, + "2009": 0.752, + "2010": 0.762, + "2011": 0.767, + "2012": 0.771, + "2013": 0.782, + "2014": 0.79, + "2015": 0.796, + "2016": 0.8, + "2017": 0.804, + "2018": 0.798, + "2019": 0.809, + "2020": 0.809, + "2021": 0.809 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr126", + "Region": "Martinique", + "1990": 0.631, + "1991": 0.647, + "1992": 0.66, + "1993": 0.669, + "1994": 0.697, + "1995": 0.706, + "1996": 0.715, + "1997": 0.721, + "1998": 0.725, + "1999": 0.714, + "2000": 0.717, + "2001": 0.719, + "2002": 0.717, + "2003": 0.723, + "2004": 0.727, + "2005": 0.742, + "2006": 0.744, + "2007": 0.744, + "2008": 0.745, + "2009": 0.74, + "2010": 0.747, + "2011": 0.749, + "2012": 0.751, + "2013": 0.755, + "2014": 0.757, + "2015": 0.766, + "2016": 0.77, + "2017": 0.773, + "2018": 0.753, + "2019": 0.751, + "2020": 0.751, + "2021": 0.751 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr129", + "Region": "Mayotte", + "1990": 0.61, + "1991": 0.626, + "1992": 0.638, + "1993": 0.648, + "1994": 0.673, + "1995": 0.683, + "1996": 0.692, + "1997": 0.699, + "1998": 0.705, + "1999": 0.697, + "2000": 0.702, + "2001": 0.704, + "2002": 0.704, + "2003": 0.71, + "2004": 0.715, + "2005": 0.728, + "2006": 0.73, + "2007": 0.731, + "2008": 0.732, + "2009": 0.727, + "2010": 0.734, + "2011": 0.735, + "2012": 0.737, + "2013": 0.741, + "2014": 0.743, + "2015": 0.744, + "2016": 0.757, + "2017": 0.758, + "2018": 0.753, + "2019": 0.756, + "2020": 0.756, + "2021": 0.756 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr116", + "Region": "Midi-Pyrenees", + "1990": 0.655, + "1991": 0.673, + "1992": 0.685, + "1993": 0.695, + "1994": 0.724, + "1995": 0.733, + "1996": 0.743, + "1997": 0.748, + "1998": 0.753, + "1999": 0.741, + "2000": 0.745, + "2001": 0.753, + "2002": 0.751, + "2003": 0.754, + "2004": 0.765, + "2005": 0.783, + "2006": 0.792, + "2007": 0.788, + "2008": 0.791, + "2009": 0.795, + "2010": 0.802, + "2011": 0.807, + "2012": 0.809, + "2013": 0.824, + "2014": 0.829, + "2015": 0.828, + "2016": 0.826, + "2017": 0.83, + "2018": 0.84, + "2019": 0.843, + "2020": 0.843, + "2021": 0.843 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr108", + "Region": "Nord", + "1990": 0.627, + "1991": 0.644, + "1992": 0.656, + "1993": 0.665, + "1994": 0.693, + "1995": 0.702, + "1996": 0.711, + "1997": 0.716, + "1998": 0.72, + "1999": 0.708, + "2000": 0.711, + "2001": 0.717, + "2002": 0.718, + "2003": 0.729, + "2004": 0.734, + "2005": 0.751, + "2006": 0.756, + "2007": 0.76, + "2008": 0.762, + "2009": 0.76, + "2010": 0.771, + "2011": 0.771, + "2012": 0.776, + "2013": 0.786, + "2014": 0.791, + "2015": 0.79, + "2016": 0.796, + "2017": 0.803, + "2018": 0.814, + "2019": 0.821, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr112", + "Region": "Pays de la Loire", + "1990": 0.636, + "1991": 0.653, + "1992": 0.665, + "1993": 0.674, + "1994": 0.702, + "1995": 0.712, + "1996": 0.721, + "1997": 0.726, + "1998": 0.73, + "1999": 0.718, + "2000": 0.722, + "2001": 0.728, + "2002": 0.728, + "2003": 0.736, + "2004": 0.743, + "2005": 0.757, + "2006": 0.761, + "2007": 0.763, + "2008": 0.764, + "2009": 0.767, + "2010": 0.774, + "2011": 0.778, + "2012": 0.782, + "2013": 0.789, + "2014": 0.796, + "2015": 0.801, + "2016": 0.802, + "2017": 0.808, + "2018": 0.813, + "2019": 0.817, + "2020": 0.817, + "2021": 0.817 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr103", + "Region": "Picardie", + "1990": 0.605, + "1991": 0.621, + "1992": 0.633, + "1993": 0.641, + "1994": 0.668, + "1995": 0.677, + "1996": 0.685, + "1997": 0.691, + "1998": 0.695, + "1999": 0.684, + "2000": 0.687, + "2001": 0.689, + "2002": 0.691, + "2003": 0.696, + "2004": 0.701, + "2005": 0.723, + "2006": 0.723, + "2007": 0.722, + "2008": 0.729, + "2009": 0.728, + "2010": 0.73, + "2011": 0.731, + "2012": 0.734, + "2013": 0.743, + "2014": 0.748, + "2015": 0.755, + "2016": 0.755, + "2017": 0.76, + "2018": 0.769, + "2019": 0.771, + "2020": 0.771, + "2021": 0.771 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr114", + "Region": "Poitou-Charentes", + "1990": 0.63, + "1991": 0.646, + "1992": 0.659, + "1993": 0.668, + "1994": 0.695, + "1995": 0.705, + "1996": 0.714, + "1997": 0.719, + "1998": 0.723, + "1999": 0.712, + "2000": 0.715, + "2001": 0.721, + "2002": 0.72, + "2003": 0.725, + "2004": 0.732, + "2005": 0.748, + "2006": 0.754, + "2007": 0.749, + "2008": 0.753, + "2009": 0.751, + "2010": 0.763, + "2011": 0.765, + "2012": 0.771, + "2013": 0.777, + "2014": 0.784, + "2015": 0.786, + "2016": 0.789, + "2017": 0.798, + "2018": 0.803, + "2019": 0.804, + "2020": 0.804, + "2021": 0.804 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr121", + "Region": "Provence-Alpes-Cote dAzur", + "1990": 0.64, + "1991": 0.657, + "1992": 0.669, + "1993": 0.679, + "1994": 0.707, + "1995": 0.716, + "1996": 0.725, + "1997": 0.731, + "1998": 0.735, + "1999": 0.723, + "2000": 0.727, + "2001": 0.729, + "2002": 0.727, + "2003": 0.74, + "2004": 0.746, + "2005": 0.761, + "2006": 0.762, + "2007": 0.765, + "2008": 0.768, + "2009": 0.766, + "2010": 0.775, + "2011": 0.784, + "2012": 0.788, + "2013": 0.796, + "2014": 0.806, + "2015": 0.81, + "2016": 0.813, + "2017": 0.817, + "2018": 0.815, + "2019": 0.821, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr128", + "Region": "Reunion", + "1990": 0.611, + "1991": 0.627, + "1992": 0.639, + "1993": 0.648, + "1994": 0.675, + "1995": 0.684, + "1996": 0.693, + "1997": 0.698, + "1998": 0.703, + "1999": 0.692, + "2000": 0.695, + "2001": 0.697, + "2002": 0.695, + "2003": 0.701, + "2004": 0.704, + "2005": 0.72, + "2006": 0.721, + "2007": 0.721, + "2008": 0.722, + "2009": 0.717, + "2010": 0.724, + "2011": 0.726, + "2012": 0.728, + "2013": 0.732, + "2014": 0.735, + "2015": 0.742, + "2016": 0.744, + "2017": 0.746, + "2018": 0.75, + "2019": 0.753, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr118", + "Region": "Rhone-Alpes", + "1990": 0.652, + "1991": 0.669, + "1992": 0.682, + "1993": 0.691, + "1994": 0.72, + "1995": 0.729, + "1996": 0.738, + "1997": 0.744, + "1998": 0.749, + "1999": 0.737, + "2000": 0.74, + "2001": 0.745, + "2002": 0.747, + "2003": 0.748, + "2004": 0.753, + "2005": 0.769, + "2006": 0.775, + "2007": 0.78, + "2008": 0.78, + "2009": 0.776, + "2010": 0.784, + "2011": 0.789, + "2012": 0.797, + "2013": 0.808, + "2014": 0.818, + "2015": 0.821, + "2016": 0.824, + "2017": 0.83, + "2018": 0.836, + "2019": 0.841, + "2020": 0.841, + "2021": 0.841 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "National", + "GDLCODE": "GABt", + "Region": "Total", + "1990": 0.473, + "1991": 0.48, + "1992": 0.487, + "1993": 0.494, + "1994": 0.501, + "1995": 0.509, + "1996": 0.516, + "1997": 0.523, + "1998": 0.531, + "1999": 0.536, + "2000": 0.543, + "2001": 0.549, + "2002": 0.557, + "2003": 0.563, + "2004": 0.569, + "2005": 0.575, + "2006": 0.58, + "2007": 0.584, + "2008": 0.589, + "2009": 0.594, + "2010": 0.599, + "2011": 0.609, + "2012": 0.62, + "2013": 0.63, + "2014": 0.641, + "2015": 0.652, + "2016": 0.657, + "2017": 0.663, + "2018": 0.669, + "2019": 0.675, + "2020": 0.675, + "2021": 0.675 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr101", + "Region": "Estuaire", + "1990": 0.437, + "1991": 0.443, + "1992": 0.449, + "1993": 0.455, + "1994": 0.461, + "1995": 0.467, + "1996": 0.473, + "1997": 0.479, + "1998": 0.486, + "1999": 0.49, + "2000": 0.496, + "2001": 0.506, + "2002": 0.519, + "2003": 0.529, + "2004": 0.539, + "2005": 0.549, + "2006": 0.558, + "2007": 0.568, + "2008": 0.577, + "2009": 0.586, + "2010": 0.596, + "2011": 0.61, + "2012": 0.624, + "2013": 0.634, + "2014": 0.646, + "2015": 0.657, + "2016": 0.662, + "2017": 0.668, + "2018": 0.674, + "2019": 0.68, + "2020": 0.68, + "2021": 0.68 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr102", + "Region": "Haut Ogooue", + "1990": 0.442, + "1991": 0.448, + "1992": 0.454, + "1993": 0.46, + "1994": 0.466, + "1995": 0.472, + "1996": 0.478, + "1997": 0.484, + "1998": 0.49, + "1999": 0.494, + "2000": 0.5, + "2001": 0.507, + "2002": 0.517, + "2003": 0.524, + "2004": 0.531, + "2005": 0.538, + "2006": 0.545, + "2007": 0.551, + "2008": 0.558, + "2009": 0.564, + "2010": 0.571, + "2011": 0.582, + "2012": 0.593, + "2013": 0.602, + "2014": 0.612, + "2015": 0.622, + "2016": 0.627, + "2017": 0.632, + "2018": 0.638, + "2019": 0.644, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr110", + "Region": "Libreville-Port Gentil", + "1990": 0.52, + "1991": 0.529, + "1992": 0.538, + "1993": 0.547, + "1994": 0.556, + "1995": 0.565, + "1996": 0.574, + "1997": 0.583, + "1998": 0.592, + "1999": 0.6, + "2000": 0.608, + "2001": 0.612, + "2002": 0.619, + "2003": 0.623, + "2004": 0.627, + "2005": 0.631, + "2006": 0.633, + "2007": 0.636, + "2008": 0.639, + "2009": 0.642, + "2010": 0.646, + "2011": 0.654, + "2012": 0.663, + "2013": 0.675, + "2014": 0.687, + "2015": 0.7, + "2016": 0.706, + "2017": 0.712, + "2018": 0.719, + "2019": 0.725, + "2020": 0.725, + "2021": 0.725 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr103", + "Region": "Moyen Ogooue", + "1990": 0.445, + "1991": 0.452, + "1992": 0.458, + "1993": 0.464, + "1994": 0.47, + "1995": 0.476, + "1996": 0.483, + "1997": 0.489, + "1998": 0.495, + "1999": 0.5, + "2000": 0.506, + "2001": 0.507, + "2002": 0.511, + "2003": 0.512, + "2004": 0.513, + "2005": 0.515, + "2006": 0.515, + "2007": 0.516, + "2008": 0.517, + "2009": 0.517, + "2010": 0.518, + "2011": 0.523, + "2012": 0.527, + "2013": 0.535, + "2014": 0.543, + "2015": 0.552, + "2016": 0.556, + "2017": 0.561, + "2018": 0.566, + "2019": 0.57, + "2020": 0.57, + "2021": 0.57 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr104", + "Region": "Ngounie", + "1990": 0.396, + "1991": 0.4, + "1992": 0.404, + "1993": 0.409, + "1994": 0.413, + "1995": 0.417, + "1996": 0.422, + "1997": 0.426, + "1998": 0.43, + "1999": 0.433, + "2000": 0.437, + "2001": 0.443, + "2002": 0.452, + "2003": 0.458, + "2004": 0.464, + "2005": 0.47, + "2006": 0.476, + "2007": 0.481, + "2008": 0.487, + "2009": 0.492, + "2010": 0.498, + "2011": 0.507, + "2012": 0.516, + "2013": 0.522, + "2014": 0.53, + "2015": 0.538, + "2016": 0.542, + "2017": 0.546, + "2018": 0.551, + "2019": 0.555, + "2020": 0.555, + "2021": 0.555 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr105", + "Region": "Nyanga", + "1990": 0.409, + "1991": 0.413, + "1992": 0.418, + "1993": 0.423, + "1994": 0.427, + "1995": 0.432, + "1996": 0.437, + "1997": 0.442, + "1998": 0.446, + "1999": 0.45, + "2000": 0.454, + "2001": 0.459, + "2002": 0.468, + "2003": 0.474, + "2004": 0.48, + "2005": 0.486, + "2006": 0.491, + "2007": 0.497, + "2008": 0.502, + "2009": 0.507, + "2010": 0.513, + "2011": 0.522, + "2012": 0.53, + "2013": 0.537, + "2014": 0.545, + "2015": 0.553, + "2016": 0.557, + "2017": 0.562, + "2018": 0.567, + "2019": 0.571, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr106", + "Region": "Ogooue Ivindo", + "1990": 0.417, + "1991": 0.422, + "1992": 0.428, + "1993": 0.433, + "1994": 0.439, + "1995": 0.444, + "1996": 0.45, + "1997": 0.455, + "1998": 0.461, + "1999": 0.464, + "2000": 0.469, + "2001": 0.473, + "2002": 0.48, + "2003": 0.484, + "2004": 0.488, + "2005": 0.492, + "2006": 0.495, + "2007": 0.499, + "2008": 0.502, + "2009": 0.506, + "2010": 0.509, + "2011": 0.516, + "2012": 0.523, + "2013": 0.53, + "2014": 0.539, + "2015": 0.547, + "2016": 0.551, + "2017": 0.555, + "2018": 0.56, + "2019": 0.565, + "2020": 0.565, + "2021": 0.565 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr107", + "Region": "Ogooue Lolo", + "1990": 0.386, + "1991": 0.39, + "1992": 0.394, + "1993": 0.399, + "1994": 0.403, + "1995": 0.407, + "1996": 0.411, + "1997": 0.416, + "1998": 0.42, + "1999": 0.423, + "2000": 0.426, + "2001": 0.432, + "2002": 0.441, + "2003": 0.448, + "2004": 0.454, + "2005": 0.46, + "2006": 0.466, + "2007": 0.471, + "2008": 0.477, + "2009": 0.483, + "2010": 0.488, + "2011": 0.497, + "2012": 0.506, + "2013": 0.512, + "2014": 0.52, + "2015": 0.527, + "2016": 0.531, + "2017": 0.535, + "2018": 0.54, + "2019": 0.545, + "2020": 0.545, + "2021": 0.545 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr108", + "Region": "Ogooue Maritime", + "1990": 0.422, + "1991": 0.428, + "1992": 0.434, + "1993": 0.44, + "1994": 0.446, + "1995": 0.452, + "1996": 0.458, + "1997": 0.465, + "1998": 0.471, + "1999": 0.475, + "2000": 0.481, + "2001": 0.483, + "2002": 0.488, + "2003": 0.49, + "2004": 0.492, + "2005": 0.494, + "2006": 0.496, + "2007": 0.498, + "2008": 0.499, + "2009": 0.501, + "2010": 0.503, + "2011": 0.508, + "2012": 0.514, + "2013": 0.521, + "2014": 0.529, + "2015": 0.537, + "2016": 0.542, + "2017": 0.546, + "2018": 0.551, + "2019": 0.556, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr109", + "Region": "Woleu Ntem", + "1990": 0.448, + "1991": 0.454, + "1992": 0.46, + "1993": 0.466, + "1994": 0.472, + "1995": 0.478, + "1996": 0.484, + "1997": 0.49, + "1998": 0.496, + "1999": 0.501, + "2000": 0.506, + "2001": 0.51, + "2002": 0.516, + "2003": 0.52, + "2004": 0.524, + "2005": 0.528, + "2006": 0.531, + "2007": 0.534, + "2008": 0.537, + "2009": 0.54, + "2010": 0.543, + "2011": 0.551, + "2012": 0.558, + "2013": 0.566, + "2014": 0.575, + "2015": 0.585, + "2016": 0.59, + "2017": 0.594, + "2018": 0.6, + "2019": 0.605, + "2020": 0.605, + "2021": 0.605 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "National", + "GDLCODE": "GMBt", + "Region": "Total", + "1990": 0.179, + "1991": 0.185, + "1992": 0.191, + "1993": 0.198, + "1994": 0.204, + "1995": 0.211, + "1996": 0.219, + "1997": 0.227, + "1998": 0.235, + "1999": 0.242, + "2000": 0.25, + "2001": 0.258, + "2002": 0.267, + "2003": 0.275, + "2004": 0.283, + "2005": 0.292, + "2006": 0.301, + "2007": 0.309, + "2008": 0.318, + "2009": 0.323, + "2010": 0.327, + "2011": 0.335, + "2012": 0.342, + "2013": 0.351, + "2014": 0.36, + "2015": 0.369, + "2016": 0.379, + "2017": 0.388, + "2018": 0.397, + "2019": 0.407, + "2020": 0.416, + "2021": 0.416 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr101", + "Region": "Banjul", + "1990": 0.279, + "1991": 0.289, + "1992": 0.299, + "1993": 0.309, + "1994": 0.32, + "1995": 0.331, + "1996": 0.343, + "1997": 0.356, + "1998": 0.368, + "1999": 0.381, + "2000": 0.394, + "2001": 0.391, + "2002": 0.389, + "2003": 0.388, + "2004": 0.387, + "2005": 0.386, + "2006": 0.386, + "2007": 0.4, + "2008": 0.415, + "2009": 0.424, + "2010": 0.433, + "2011": 0.446, + "2012": 0.46, + "2013": 0.474, + "2014": 0.471, + "2015": 0.469, + "2016": 0.467, + "2017": 0.466, + "2018": 0.466, + "2019": 0.476, + "2020": 0.488, + "2021": 0.488 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr108", + "Region": "Basse", + "1990": 0.137, + "1991": 0.141, + "1992": 0.146, + "1993": 0.151, + "1994": 0.156, + "1995": 0.161, + "1996": 0.167, + "1997": 0.172, + "1998": 0.178, + "1999": 0.184, + "2000": 0.19, + "2001": 0.184, + "2002": 0.179, + "2003": 0.175, + "2004": 0.17, + "2005": 0.166, + "2006": 0.162, + "2007": 0.168, + "2008": 0.173, + "2009": 0.176, + "2010": 0.178, + "2011": 0.182, + "2012": 0.186, + "2013": 0.191, + "2014": 0.208, + "2015": 0.225, + "2016": 0.241, + "2017": 0.256, + "2018": 0.271, + "2019": 0.279, + "2020": 0.287, + "2021": 0.287 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr103", + "Region": "Brikama", + "1990": 0.195, + "1991": 0.202, + "1992": 0.209, + "1993": 0.216, + "1994": 0.223, + "1995": 0.231, + "1996": 0.239, + "1997": 0.247, + "1998": 0.256, + "1999": 0.264, + "2000": 0.273, + "2001": 0.283, + "2002": 0.293, + "2003": 0.304, + "2004": 0.314, + "2005": 0.325, + "2006": 0.336, + "2007": 0.349, + "2008": 0.363, + "2009": 0.372, + "2010": 0.38, + "2011": 0.392, + "2012": 0.406, + "2013": 0.42, + "2014": 0.421, + "2015": 0.424, + "2016": 0.427, + "2017": 0.431, + "2018": 0.435, + "2019": 0.452, + "2020": 0.472, + "2021": 0.472 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr107", + "Region": "Janjabureh", + "1990": 0.107, + "1991": 0.111, + "1992": 0.115, + "1993": 0.119, + "1994": 0.123, + "1995": 0.127, + "1996": 0.131, + "1997": 0.136, + "1998": 0.141, + "1999": 0.145, + "2000": 0.15, + "2001": 0.18, + "2002": 0.209, + "2003": 0.238, + "2004": 0.267, + "2005": 0.296, + "2006": 0.324, + "2007": 0.317, + "2008": 0.309, + "2009": 0.297, + "2010": 0.283, + "2011": 0.272, + "2012": 0.26, + "2013": 0.248, + "2014": 0.26, + "2015": 0.27, + "2016": 0.281, + "2017": 0.29, + "2018": 0.299, + "2019": 0.283, + "2020": 0.262, + "2021": 0.262 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr102", + "Region": "Kanifing", + "1990": 0.263, + "1991": 0.273, + "1992": 0.282, + "1993": 0.292, + "1994": 0.302, + "1995": 0.313, + "1996": 0.324, + "1997": 0.335, + "1998": 0.347, + "1999": 0.359, + "2000": 0.371, + "2001": 0.372, + "2002": 0.374, + "2003": 0.376, + "2004": 0.379, + "2005": 0.381, + "2006": 0.385, + "2007": 0.397, + "2008": 0.409, + "2009": 0.417, + "2010": 0.423, + "2011": 0.434, + "2012": 0.445, + "2013": 0.457, + "2014": 0.459, + "2015": 0.461, + "2016": 0.464, + "2017": 0.467, + "2018": 0.471, + "2019": 0.486, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr105", + "Region": "Kerewan", + "1990": 0.12, + "1991": 0.124, + "1992": 0.128, + "1993": 0.132, + "1994": 0.137, + "1995": 0.142, + "1996": 0.147, + "1997": 0.152, + "1998": 0.157, + "1999": 0.162, + "2000": 0.167, + "2001": 0.171, + "2002": 0.175, + "2003": 0.179, + "2004": 0.184, + "2005": 0.188, + "2006": 0.192, + "2007": 0.205, + "2008": 0.218, + "2009": 0.228, + "2010": 0.237, + "2011": 0.249, + "2012": 0.261, + "2013": 0.274, + "2014": 0.283, + "2015": 0.292, + "2016": 0.301, + "2017": 0.31, + "2018": 0.319, + "2019": 0.329, + "2020": 0.339, + "2021": 0.339 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr106", + "Region": "Kuntaur", + "1990": 0.12, + "1991": 0.124, + "1992": 0.129, + "1993": 0.133, + "1994": 0.137, + "1995": 0.142, + "1996": 0.147, + "1997": 0.152, + "1998": 0.157, + "1999": 0.162, + "2000": 0.167, + "2001": 0.162, + "2002": 0.158, + "2003": 0.154, + "2004": 0.15, + "2005": 0.147, + "2006": 0.143, + "2007": 0.148, + "2008": 0.153, + "2009": 0.155, + "2010": 0.157, + "2011": 0.161, + "2012": 0.165, + "2013": 0.169, + "2014": 0.192, + "2015": 0.213, + "2016": 0.233, + "2017": 0.253, + "2018": 0.271, + "2019": 0.233, + "2020": 0.186, + "2021": 0.186 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr104", + "Region": "Mansakonko", + "1990": 0.142, + "1991": 0.147, + "1992": 0.151, + "1993": 0.156, + "1994": 0.162, + "1995": 0.167, + "1996": 0.173, + "1997": 0.179, + "1998": 0.185, + "1999": 0.191, + "2000": 0.197, + "2001": 0.224, + "2002": 0.251, + "2003": 0.278, + "2004": 0.304, + "2005": 0.33, + "2006": 0.356, + "2007": 0.356, + "2008": 0.356, + "2009": 0.351, + "2010": 0.344, + "2011": 0.341, + "2012": 0.339, + "2013": 0.336, + "2014": 0.336, + "2015": 0.337, + "2016": 0.338, + "2017": 0.339, + "2018": 0.341, + "2019": 0.35, + "2020": 0.359, + "2021": 0.359 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "National", + "GDLCODE": "GEOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.76, + "2001": 0.767, + "2002": 0.774, + "2003": 0.779, + "2004": 0.781, + "2005": 0.785, + "2006": 0.775, + "2007": 0.787, + "2008": 0.774, + "2009": 0.786, + "2010": 0.792, + "2011": 0.797, + "2012": 0.803, + "2013": 0.809, + "2014": 0.815, + "2015": 0.826, + "2016": 0.835, + "2017": 0.847, + "2018": 0.853, + "2019": 0.861, + "2020": 0.86, + "2021": 0.86 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr102", + "Region": "Ajaria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.74, + "2001": 0.747, + "2002": 0.753, + "2003": 0.759, + "2004": 0.76, + "2005": 0.765, + "2006": 0.756, + "2007": 0.77, + "2008": 0.758, + "2009": 0.772, + "2010": 0.779, + "2011": 0.786, + "2012": 0.793, + "2013": 0.801, + "2014": 0.809, + "2015": 0.821, + "2016": 0.833, + "2017": 0.846, + "2018": 0.854, + "2019": 0.863, + "2020": 0.861, + "2021": 0.861 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr103", + "Region": "Guria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.73, + "2001": 0.737, + "2002": 0.743, + "2003": 0.749, + "2004": 0.75, + "2005": 0.754, + "2006": 0.74, + "2007": 0.748, + "2008": 0.732, + "2009": 0.739, + "2010": 0.74, + "2011": 0.742, + "2012": 0.743, + "2013": 0.744, + "2014": 0.746, + "2015": 0.752, + "2016": 0.756, + "2017": 0.762, + "2018": 0.762, + "2019": 0.769, + "2020": 0.768, + "2021": 0.768 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr104", + "Region": "Imereti Racha-Lochkhumi Kvemo Svaneti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.752, + "2001": 0.759, + "2002": 0.765, + "2003": 0.771, + "2004": 0.773, + "2005": 0.777, + "2006": 0.766, + "2007": 0.78, + "2008": 0.766, + "2009": 0.778, + "2010": 0.784, + "2011": 0.789, + "2012": 0.795, + "2013": 0.8, + "2014": 0.807, + "2015": 0.817, + "2016": 0.826, + "2017": 0.837, + "2018": 0.842, + "2019": 0.851, + "2020": 0.849, + "2021": 0.849 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr105", + "Region": "Kakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.691, + "2001": 0.697, + "2002": 0.703, + "2003": 0.708, + "2004": 0.71, + "2005": 0.714, + "2006": 0.706, + "2007": 0.72, + "2008": 0.71, + "2009": 0.722, + "2010": 0.729, + "2011": 0.736, + "2012": 0.743, + "2013": 0.75, + "2014": 0.758, + "2015": 0.769, + "2016": 0.78, + "2017": 0.792, + "2018": 0.799, + "2019": 0.807, + "2020": 0.806, + "2021": 0.806 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr106", + "Region": "Kvemo Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.678, + "2001": 0.684, + "2002": 0.69, + "2003": 0.695, + "2004": 0.696, + "2005": 0.7, + "2006": 0.694, + "2007": 0.707, + "2008": 0.697, + "2009": 0.71, + "2010": 0.718, + "2011": 0.725, + "2012": 0.733, + "2013": 0.74, + "2014": 0.749, + "2015": 0.761, + "2016": 0.772, + "2017": 0.785, + "2018": 0.794, + "2019": 0.802, + "2020": 0.801, + "2021": 0.801 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr107", + "Region": "Mtskheta-Mtianeti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.731, + "2001": 0.737, + "2002": 0.744, + "2003": 0.749, + "2004": 0.751, + "2005": 0.755, + "2006": 0.746, + "2007": 0.759, + "2008": 0.746, + "2009": 0.759, + "2010": 0.765, + "2011": 0.771, + "2012": 0.777, + "2013": 0.783, + "2014": 0.79, + "2015": 0.801, + "2016": 0.81, + "2017": 0.822, + "2018": 0.828, + "2019": 0.836, + "2020": 0.835, + "2021": 0.835 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr108", + "Region": "Samegrelo-Zemo Svateni", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.745, + "2001": 0.751, + "2002": 0.758, + "2003": 0.764, + "2004": 0.765, + "2005": 0.77, + "2006": 0.757, + "2007": 0.767, + "2008": 0.751, + "2009": 0.76, + "2010": 0.763, + "2011": 0.766, + "2012": 0.769, + "2013": 0.772, + "2014": 0.775, + "2015": 0.782, + "2016": 0.788, + "2017": 0.796, + "2018": 0.798, + "2019": 0.806, + "2020": 0.805, + "2021": 0.805 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr109", + "Region": "Samtskhe-Javakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.7, + "2001": 0.706, + "2002": 0.712, + "2003": 0.718, + "2004": 0.719, + "2005": 0.723, + "2006": 0.713, + "2007": 0.725, + "2008": 0.713, + "2009": 0.724, + "2010": 0.729, + "2011": 0.734, + "2012": 0.739, + "2013": 0.744, + "2014": 0.751, + "2015": 0.76, + "2016": 0.768, + "2017": 0.779, + "2018": 0.784, + "2019": 0.792, + "2020": 0.791, + "2021": 0.791 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr110", + "Region": "Shida Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.717, + "2001": 0.724, + "2002": 0.73, + "2003": 0.735, + "2004": 0.737, + "2005": 0.741, + "2006": 0.731, + "2007": 0.743, + "2008": 0.73, + "2009": 0.741, + "2010": 0.746, + "2011": 0.751, + "2012": 0.756, + "2013": 0.761, + "2014": 0.768, + "2015": 0.777, + "2016": 0.786, + "2017": 0.796, + "2018": 0.801, + "2019": 0.809, + "2020": 0.808, + "2021": 0.808 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr111", + "Region": "Tbilisi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.877, + "2001": 0.885, + "2002": 0.893, + "2003": 0.899, + "2004": 0.901, + "2005": 0.906, + "2006": 0.889, + "2007": 0.897, + "2008": 0.876, + "2009": 0.884, + "2010": 0.885, + "2011": 0.886, + "2012": 0.887, + "2013": 0.888, + "2014": 0.891, + "2015": 0.897, + "2016": 0.903, + "2017": 0.911, + "2018": 0.913, + "2019": 0.922, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "National", + "GDLCODE": "DEUt", + "Region": "Total", + "1990": 0.75, + "1991": 0.76, + "1992": 0.771, + "1993": 0.797, + "1994": 0.808, + "1995": 0.819, + "1996": 0.828, + "1997": 0.837, + "1998": 0.845, + "1999": 0.853, + "2000": 0.861, + "2001": 0.874, + "2002": 0.887, + "2003": 0.9, + "2004": 0.912, + "2005": 0.911, + "2006": 0.909, + "2007": 0.913, + "2008": 0.916, + "2009": 0.92, + "2010": 0.922, + "2011": 0.926, + "2012": 0.929, + "2013": 0.932, + "2014": 0.933, + "2015": 0.936, + "2016": 0.94, + "2017": 0.942, + "2018": 0.94, + "2019": 0.942, + "2020": 0.942, + "2021": 0.942 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr101", + "Region": "Baden-Wurttemberg", + "1990": 0.749, + "1991": 0.759, + "1992": 0.77, + "1993": 0.796, + "1994": 0.807, + "1995": 0.817, + "1996": 0.827, + "1997": 0.836, + "1998": 0.844, + "1999": 0.852, + "2000": 0.86, + "2001": 0.873, + "2002": 0.887, + "2003": 0.901, + "2004": 0.912, + "2005": 0.912, + "2006": 0.911, + "2007": 0.915, + "2008": 0.92, + "2009": 0.926, + "2010": 0.927, + "2011": 0.931, + "2012": 0.935, + "2013": 0.938, + "2014": 0.941, + "2015": 0.944, + "2016": 0.949, + "2017": 0.948, + "2018": 0.944, + "2019": 0.948, + "2020": 0.948, + "2021": 0.948 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr102", + "Region": "Bayern", + "1990": 0.73, + "1991": 0.74, + "1992": 0.751, + "1993": 0.776, + "1994": 0.787, + "1995": 0.797, + "1996": 0.806, + "1997": 0.815, + "1998": 0.823, + "1999": 0.831, + "2000": 0.839, + "2001": 0.851, + "2002": 0.864, + "2003": 0.878, + "2004": 0.892, + "2005": 0.892, + "2006": 0.89, + "2007": 0.897, + "2008": 0.901, + "2009": 0.905, + "2010": 0.909, + "2011": 0.912, + "2012": 0.916, + "2013": 0.919, + "2014": 0.923, + "2015": 0.926, + "2016": 0.93, + "2017": 0.933, + "2018": 0.93, + "2019": 0.932, + "2020": 0.932, + "2021": 0.932 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr103", + "Region": "Berlin", + "1990": 0.775, + "1991": 0.786, + "1992": 0.797, + "1993": 0.824, + "1994": 0.835, + "1995": 0.846, + "1996": 0.855, + "1997": 0.865, + "1998": 0.873, + "1999": 0.882, + "2000": 0.89, + "2001": 0.899, + "2002": 0.913, + "2003": 0.926, + "2004": 0.941, + "2005": 0.941, + "2006": 0.939, + "2007": 0.942, + "2008": 0.942, + "2009": 0.947, + "2010": 0.95, + "2011": 0.953, + "2012": 0.956, + "2013": 0.956, + "2014": 0.961, + "2015": 0.966, + "2016": 0.982, + "2017": 0.982, + "2018": 0.984, + "2019": 0.988, + "2020": 0.988, + "2021": 0.988 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr104", + "Region": "Brandenburg", + "1990": 0.755, + "1991": 0.766, + "1992": 0.776, + "1993": 0.802, + "1994": 0.814, + "1995": 0.824, + "1996": 0.834, + "1997": 0.843, + "1998": 0.851, + "1999": 0.86, + "2000": 0.868, + "2001": 0.877, + "2002": 0.89, + "2003": 0.902, + "2004": 0.916, + "2005": 0.915, + "2006": 0.91, + "2007": 0.914, + "2008": 0.916, + "2009": 0.919, + "2010": 0.919, + "2011": 0.92, + "2012": 0.92, + "2013": 0.923, + "2014": 0.923, + "2015": 0.924, + "2016": 0.924, + "2017": 0.923, + "2018": 0.922, + "2019": 0.924, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr105", + "Region": "Bremen", + "1990": 0.766, + "1991": 0.777, + "1992": 0.787, + "1993": 0.815, + "1994": 0.826, + "1995": 0.836, + "1996": 0.845, + "1997": 0.854, + "1998": 0.862, + "1999": 0.87, + "2000": 0.878, + "2001": 0.895, + "2002": 0.905, + "2003": 0.914, + "2004": 0.931, + "2005": 0.927, + "2006": 0.93, + "2007": 0.933, + "2008": 0.937, + "2009": 0.939, + "2010": 0.947, + "2011": 0.954, + "2012": 0.953, + "2013": 0.954, + "2014": 0.955, + "2015": 0.954, + "2016": 0.964, + "2017": 0.965, + "2018": 0.962, + "2019": 0.961, + "2020": 0.961, + "2021": 0.961 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr106", + "Region": "Hamburg", + "1990": 0.778, + "1991": 0.789, + "1992": 0.8, + "1993": 0.827, + "1994": 0.839, + "1995": 0.849, + "1996": 0.859, + "1997": 0.868, + "1998": 0.876, + "1999": 0.884, + "2000": 0.892, + "2001": 0.906, + "2002": 0.915, + "2003": 0.93, + "2004": 0.941, + "2005": 0.939, + "2006": 0.94, + "2007": 0.943, + "2008": 0.948, + "2009": 0.954, + "2010": 0.959, + "2011": 0.964, + "2012": 0.963, + "2013": 0.966, + "2014": 0.973, + "2015": 0.978, + "2016": 0.986, + "2017": 0.982, + "2018": 0.983, + "2019": 0.981, + "2020": 0.981, + "2021": 0.981 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr107", + "Region": "Hessen", + "1990": 0.754, + "1991": 0.765, + "1992": 0.775, + "1993": 0.802, + "1994": 0.813, + "1995": 0.823, + "1996": 0.832, + "1997": 0.841, + "1998": 0.849, + "1999": 0.857, + "2000": 0.865, + "2001": 0.879, + "2002": 0.891, + "2003": 0.907, + "2004": 0.918, + "2005": 0.916, + "2006": 0.915, + "2007": 0.919, + "2008": 0.921, + "2009": 0.925, + "2010": 0.928, + "2011": 0.933, + "2012": 0.937, + "2013": 0.94, + "2014": 0.938, + "2015": 0.937, + "2016": 0.939, + "2017": 0.94, + "2018": 0.937, + "2019": 0.94, + "2020": 0.94, + "2021": 0.94 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr108", + "Region": "Mecklenburg-Vorpommern", + "1990": 0.753, + "1991": 0.764, + "1992": 0.774, + "1993": 0.8, + "1994": 0.812, + "1995": 0.822, + "1996": 0.831, + "1997": 0.84, + "1998": 0.849, + "1999": 0.857, + "2000": 0.865, + "2001": 0.883, + "2002": 0.894, + "2003": 0.905, + "2004": 0.923, + "2005": 0.915, + "2006": 0.911, + "2007": 0.911, + "2008": 0.918, + "2009": 0.92, + "2010": 0.923, + "2011": 0.924, + "2012": 0.925, + "2013": 0.925, + "2014": 0.921, + "2015": 0.926, + "2016": 0.929, + "2017": 0.933, + "2018": 0.931, + "2019": 0.934, + "2020": 0.934, + "2021": 0.934 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr109", + "Region": "Niedersachsen", + "1990": 0.729, + "1991": 0.739, + "1992": 0.749, + "1993": 0.775, + "1994": 0.786, + "1995": 0.796, + "1996": 0.805, + "1997": 0.813, + "1998": 0.821, + "1999": 0.829, + "2000": 0.837, + "2001": 0.85, + "2002": 0.864, + "2003": 0.875, + "2004": 0.889, + "2005": 0.884, + "2006": 0.884, + "2007": 0.887, + "2008": 0.89, + "2009": 0.894, + "2010": 0.897, + "2011": 0.901, + "2012": 0.904, + "2013": 0.907, + "2014": 0.914, + "2015": 0.917, + "2016": 0.919, + "2017": 0.923, + "2018": 0.921, + "2019": 0.923, + "2020": 0.923, + "2021": 0.923 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr110", + "Region": "Nordrhein-Westfalen", + "1990": 0.752, + "1991": 0.762, + "1992": 0.773, + "1993": 0.799, + "1994": 0.81, + "1995": 0.82, + "1996": 0.829, + "1997": 0.838, + "1998": 0.846, + "1999": 0.854, + "2000": 0.862, + "2001": 0.876, + "2002": 0.889, + "2003": 0.902, + "2004": 0.913, + "2005": 0.912, + "2006": 0.91, + "2007": 0.914, + "2008": 0.918, + "2009": 0.922, + "2010": 0.923, + "2011": 0.927, + "2012": 0.931, + "2013": 0.933, + "2014": 0.931, + "2015": 0.938, + "2016": 0.941, + "2017": 0.944, + "2018": 0.942, + "2019": 0.944, + "2020": 0.944, + "2021": 0.944 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr111", + "Region": "Rheinland-Pfalz", + "1990": 0.737, + "1991": 0.747, + "1992": 0.758, + "1993": 0.784, + "1994": 0.795, + "1995": 0.805, + "1996": 0.814, + "1997": 0.822, + "1998": 0.83, + "1999": 0.838, + "2000": 0.846, + "2001": 0.858, + "2002": 0.873, + "2003": 0.885, + "2004": 0.9, + "2005": 0.894, + "2006": 0.892, + "2007": 0.898, + "2008": 0.901, + "2009": 0.903, + "2010": 0.906, + "2011": 0.912, + "2012": 0.915, + "2013": 0.916, + "2014": 0.918, + "2015": 0.92, + "2016": 0.922, + "2017": 0.925, + "2018": 0.926, + "2019": 0.93, + "2020": 0.93, + "2021": 0.93 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr112", + "Region": "Saarland", + "1990": 0.742, + "1991": 0.752, + "1992": 0.762, + "1993": 0.788, + "1994": 0.799, + "1995": 0.809, + "1996": 0.818, + "1997": 0.827, + "1998": 0.835, + "1999": 0.843, + "2000": 0.851, + "2001": 0.862, + "2002": 0.874, + "2003": 0.885, + "2004": 0.898, + "2005": 0.894, + "2006": 0.892, + "2007": 0.893, + "2008": 0.903, + "2009": 0.909, + "2010": 0.913, + "2011": 0.916, + "2012": 0.92, + "2013": 0.921, + "2014": 0.917, + "2015": 0.923, + "2016": 0.941, + "2017": 0.943, + "2018": 0.944, + "2019": 0.946, + "2020": 0.946, + "2021": 0.946 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr113", + "Region": "Sachsen", + "1990": 0.775, + "1991": 0.786, + "1992": 0.797, + "1993": 0.824, + "1994": 0.835, + "1995": 0.846, + "1996": 0.855, + "1997": 0.865, + "1998": 0.873, + "1999": 0.882, + "2000": 0.891, + "2001": 0.904, + "2002": 0.917, + "2003": 0.929, + "2004": 0.943, + "2005": 0.943, + "2006": 0.939, + "2007": 0.942, + "2008": 0.944, + "2009": 0.945, + "2010": 0.946, + "2011": 0.947, + "2012": 0.948, + "2013": 0.952, + "2014": 0.949, + "2015": 0.954, + "2016": 0.957, + "2017": 0.961, + "2018": 0.957, + "2019": 0.958, + "2020": 0.958, + "2021": 0.958 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr114", + "Region": "Sachsen-Anhalt", + "1990": 0.753, + "1991": 0.764, + "1992": 0.774, + "1993": 0.8, + "1994": 0.812, + "1995": 0.822, + "1996": 0.831, + "1997": 0.84, + "1998": 0.849, + "1999": 0.857, + "2000": 0.865, + "2001": 0.876, + "2002": 0.891, + "2003": 0.901, + "2004": 0.914, + "2005": 0.909, + "2006": 0.905, + "2007": 0.907, + "2008": 0.911, + "2009": 0.914, + "2010": 0.917, + "2011": 0.919, + "2012": 0.922, + "2013": 0.923, + "2014": 0.927, + "2015": 0.927, + "2016": 0.926, + "2017": 0.926, + "2018": 0.924, + "2019": 0.927, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr115", + "Region": "Schleswig-Holstein", + "1990": 0.735, + "1991": 0.745, + "1992": 0.755, + "1993": 0.781, + "1994": 0.792, + "1995": 0.802, + "1996": 0.811, + "1997": 0.82, + "1998": 0.828, + "1999": 0.836, + "2000": 0.844, + "2001": 0.856, + "2002": 0.87, + "2003": 0.884, + "2004": 0.895, + "2005": 0.892, + "2006": 0.89, + "2007": 0.892, + "2008": 0.899, + "2009": 0.9, + "2010": 0.902, + "2011": 0.908, + "2012": 0.91, + "2013": 0.912, + "2014": 0.912, + "2015": 0.915, + "2016": 0.924, + "2017": 0.918, + "2018": 0.916, + "2019": 0.918, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr116", + "Region": "Thuringen", + "1990": 0.767, + "1991": 0.778, + "1992": 0.789, + "1993": 0.815, + "1994": 0.827, + "1995": 0.837, + "1996": 0.847, + "1997": 0.856, + "1998": 0.864, + "1999": 0.873, + "2000": 0.881, + "2001": 0.895, + "2002": 0.909, + "2003": 0.92, + "2004": 0.935, + "2005": 0.932, + "2006": 0.924, + "2007": 0.926, + "2008": 0.931, + "2009": 0.933, + "2010": 0.934, + "2011": 0.94, + "2012": 0.943, + "2013": 0.944, + "2014": 0.944, + "2015": 0.944, + "2016": 0.942, + "2017": 0.948, + "2018": 0.945, + "2019": 0.945, + "2020": 0.945, + "2021": 0.945 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "National", + "GDLCODE": "GHAt", + "Region": "Total", + "1990": 0.371, + "1991": 0.379, + "1992": 0.386, + "1993": 0.394, + "1994": 0.402, + "1995": 0.41, + "1996": 0.415, + "1997": 0.421, + "1998": 0.427, + "1999": 0.433, + "2000": 0.444, + "2001": 0.435, + "2002": 0.445, + "2003": 0.443, + "2004": 0.455, + "2005": 0.474, + "2006": 0.487, + "2007": 0.507, + "2008": 0.526, + "2009": 0.532, + "2010": 0.545, + "2011": 0.556, + "2012": 0.565, + "2013": 0.572, + "2014": 0.565, + "2015": 0.58, + "2016": 0.584, + "2017": 0.587, + "2018": 0.592, + "2019": 0.607, + "2020": 0.612, + "2021": 0.612 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr106", + "Region": "Ashanti", + "1990": 0.392, + "1991": 0.4, + "1992": 0.409, + "1993": 0.417, + "1994": 0.425, + "1995": 0.433, + "1996": 0.439, + "1997": 0.446, + "1998": 0.452, + "1999": 0.462, + "2000": 0.478, + "2001": 0.473, + "2002": 0.487, + "2003": 0.49, + "2004": 0.51, + "2005": 0.538, + "2006": 0.559, + "2007": 0.576, + "2008": 0.591, + "2009": 0.581, + "2010": 0.579, + "2011": 0.574, + "2012": 0.587, + "2013": 0.6, + "2014": 0.598, + "2015": 0.612, + "2016": 0.615, + "2017": 0.618, + "2018": 0.623, + "2019": 0.639, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr107", + "Region": "Brong Ahafo", + "1990": 0.331, + "1991": 0.337, + "1992": 0.344, + "1993": 0.351, + "1994": 0.358, + "1995": 0.365, + "1996": 0.37, + "1997": 0.375, + "1998": 0.38, + "1999": 0.395, + "2000": 0.416, + "2001": 0.417, + "2002": 0.438, + "2003": 0.447, + "2004": 0.448, + "2005": 0.454, + "2006": 0.454, + "2007": 0.478, + "2008": 0.502, + "2009": 0.501, + "2010": 0.508, + "2011": 0.513, + "2012": 0.53, + "2013": 0.546, + "2014": 0.548, + "2015": 0.559, + "2016": 0.56, + "2017": 0.562, + "2018": 0.566, + "2019": 0.581, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr102", + "Region": "Central", + "1990": 0.364, + "1991": 0.372, + "1992": 0.379, + "1993": 0.387, + "1994": 0.394, + "1995": 0.401, + "1996": 0.407, + "1997": 0.413, + "1998": 0.418, + "1999": 0.422, + "2000": 0.432, + "2001": 0.421, + "2002": 0.429, + "2003": 0.425, + "2004": 0.431, + "2005": 0.443, + "2006": 0.449, + "2007": 0.475, + "2008": 0.499, + "2009": 0.513, + "2010": 0.536, + "2011": 0.557, + "2012": 0.533, + "2013": 0.504, + "2014": 0.461, + "2015": 0.514, + "2016": 0.557, + "2017": 0.595, + "2018": 0.6, + "2019": 0.615, + "2020": 0.62, + "2021": 0.62 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr105", + "Region": "Eastern", + "1990": 0.416, + "1991": 0.425, + "1992": 0.434, + "1993": 0.443, + "1994": 0.452, + "1995": 0.46, + "1996": 0.467, + "1997": 0.473, + "1998": 0.48, + "1999": 0.481, + "2000": 0.489, + "2001": 0.474, + "2002": 0.48, + "2003": 0.472, + "2004": 0.489, + "2005": 0.512, + "2006": 0.529, + "2007": 0.545, + "2008": 0.559, + "2009": 0.564, + "2010": 0.576, + "2011": 0.587, + "2012": 0.59, + "2013": 0.591, + "2014": 0.579, + "2015": 0.602, + "2016": 0.614, + "2017": 0.626, + "2018": 0.632, + "2019": 0.648, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr103", + "Region": "Greater Accra", + "1990": 0.506, + "1991": 0.517, + "1992": 0.528, + "1993": 0.539, + "1994": 0.55, + "1995": 0.561, + "1996": 0.569, + "1997": 0.577, + "1998": 0.585, + "1999": 0.594, + "2000": 0.609, + "2001": 0.599, + "2002": 0.612, + "2003": 0.611, + "2004": 0.623, + "2005": 0.642, + "2006": 0.655, + "2007": 0.657, + "2008": 0.658, + "2009": 0.665, + "2010": 0.679, + "2011": 0.692, + "2012": 0.683, + "2013": 0.673, + "2014": 0.648, + "2015": 0.67, + "2016": 0.681, + "2017": 0.691, + "2018": 0.697, + "2019": 0.715, + "2020": 0.72, + "2021": 0.72 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr108", + "Region": "Northern", + "1990": 0.152, + "1991": 0.155, + "1992": 0.157, + "1993": 0.16, + "1994": 0.163, + "1995": 0.165, + "1996": 0.167, + "1997": 0.169, + "1998": 0.172, + "1999": 0.182, + "2000": 0.195, + "2001": 0.197, + "2002": 0.211, + "2003": 0.217, + "2004": 0.236, + "2005": 0.259, + "2006": 0.278, + "2007": 0.283, + "2008": 0.287, + "2009": 0.303, + "2010": 0.325, + "2011": 0.349, + "2012": 0.374, + "2013": 0.399, + "2014": 0.413, + "2015": 0.423, + "2016": 0.42, + "2017": 0.417, + "2018": 0.419, + "2019": 0.431, + "2020": 0.436, + "2021": 0.436 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr110", + "Region": "Upper East", + "1990": 0.195, + "1991": 0.198, + "1992": 0.201, + "1993": 0.205, + "1994": 0.208, + "1995": 0.212, + "1996": 0.215, + "1997": 0.217, + "1998": 0.22, + "1999": 0.219, + "2000": 0.221, + "2001": 0.209, + "2002": 0.211, + "2003": 0.203, + "2004": 0.237, + "2005": 0.278, + "2006": 0.315, + "2007": 0.343, + "2008": 0.369, + "2009": 0.371, + "2010": 0.381, + "2011": 0.39, + "2012": 0.412, + "2013": 0.432, + "2014": 0.436, + "2015": 0.455, + "2016": 0.459, + "2017": 0.464, + "2018": 0.467, + "2019": 0.48, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr109", + "Region": "Upper West", + "1990": 0.175, + "1991": 0.178, + "1992": 0.181, + "1993": 0.184, + "1994": 0.187, + "1995": 0.19, + "1996": 0.192, + "1997": 0.195, + "1998": 0.197, + "1999": 0.205, + "2000": 0.218, + "2001": 0.216, + "2002": 0.229, + "2003": 0.232, + "2004": 0.25, + "2005": 0.274, + "2006": 0.293, + "2007": 0.323, + "2008": 0.351, + "2009": 0.362, + "2010": 0.381, + "2011": 0.4, + "2012": 0.424, + "2013": 0.448, + "2014": 0.457, + "2015": 0.469, + "2016": 0.467, + "2017": 0.466, + "2018": 0.469, + "2019": 0.482, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr104", + "Region": "Volta", + "1990": 0.368, + "1991": 0.376, + "1992": 0.383, + "1993": 0.391, + "1994": 0.398, + "1995": 0.406, + "1996": 0.412, + "1997": 0.417, + "1998": 0.423, + "1999": 0.438, + "2000": 0.459, + "2001": 0.459, + "2002": 0.479, + "2003": 0.486, + "2004": 0.472, + "2005": 0.463, + "2006": 0.448, + "2007": 0.494, + "2008": 0.538, + "2009": 0.541, + "2010": 0.552, + "2011": 0.562, + "2012": 0.577, + "2013": 0.592, + "2014": 0.592, + "2015": 0.591, + "2016": 0.576, + "2017": 0.563, + "2018": 0.567, + "2019": 0.582, + "2020": 0.587, + "2021": 0.587 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr101", + "Region": "Western", + "1990": 0.39, + "1991": 0.399, + "1992": 0.407, + "1993": 0.415, + "1994": 0.423, + "1995": 0.431, + "1996": 0.437, + "1997": 0.443, + "1998": 0.449, + "1999": 0.46, + "2000": 0.477, + "2001": 0.473, + "2002": 0.488, + "2003": 0.491, + "2004": 0.506, + "2005": 0.526, + "2006": 0.541, + "2007": 0.562, + "2008": 0.58, + "2009": 0.571, + "2010": 0.569, + "2011": 0.565, + "2012": 0.588, + "2013": 0.61, + "2014": 0.618, + "2015": 0.624, + "2016": 0.619, + "2017": 0.616, + "2018": 0.621, + "2019": 0.637, + "2020": 0.642, + "2021": 0.642 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "National", + "GDLCODE": "GRCt", + "Region": "Total", + "1990": 0.597, + "1991": 0.617, + "1992": 0.619, + "1993": 0.618, + "1994": 0.628, + "1995": 0.633, + "1996": 0.642, + "1997": 0.651, + "1998": 0.675, + "1999": 0.678, + "2000": 0.694, + "2001": 0.709, + "2002": 0.73, + "2003": 0.736, + "2004": 0.75, + "2005": 0.775, + "2006": 0.792, + "2007": 0.776, + "2008": 0.786, + "2009": 0.796, + "2010": 0.806, + "2011": 0.812, + "2012": 0.824, + "2013": 0.832, + "2014": 0.85, + "2015": 0.858, + "2016": 0.842, + "2017": 0.851, + "2018": 0.861, + "2019": 0.871, + "2020": 0.88, + "2021": 0.88 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr105", + "Region": "Anatoliki Makedonia, Thraki", + "1990": 0.579, + "1991": 0.598, + "1992": 0.6, + "1993": 0.599, + "1994": 0.608, + "1995": 0.613, + "1996": 0.622, + "1997": 0.631, + "1998": 0.654, + "1999": 0.658, + "2000": 0.673, + "2001": 0.686, + "2002": 0.707, + "2003": 0.713, + "2004": 0.728, + "2005": 0.753, + "2006": 0.765, + "2007": 0.752, + "2008": 0.761, + "2009": 0.775, + "2010": 0.782, + "2011": 0.785, + "2012": 0.794, + "2013": 0.799, + "2014": 0.816, + "2015": 0.827, + "2016": 0.818, + "2017": 0.832, + "2018": 0.84, + "2019": 0.848, + "2020": 0.857, + "2021": 0.857 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr101", + "Region": "Attiki", + "1990": 0.607, + "1991": 0.627, + "1992": 0.63, + "1993": 0.629, + "1994": 0.639, + "1995": 0.645, + "1996": 0.654, + "1997": 0.664, + "1998": 0.687, + "1999": 0.691, + "2000": 0.707, + "2001": 0.721, + "2002": 0.743, + "2003": 0.749, + "2004": 0.762, + "2005": 0.785, + "2006": 0.803, + "2007": 0.787, + "2008": 0.797, + "2009": 0.807, + "2010": 0.818, + "2011": 0.824, + "2012": 0.838, + "2013": 0.847, + "2014": 0.867, + "2015": 0.882, + "2016": 0.863, + "2017": 0.872, + "2018": 0.882, + "2019": 0.892, + "2020": 0.902, + "2021": 0.902 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr111", + "Region": "Dytiki Ellada", + "1990": 0.607, + "1991": 0.628, + "1992": 0.629, + "1993": 0.628, + "1994": 0.638, + "1995": 0.642, + "1996": 0.651, + "1997": 0.661, + "1998": 0.686, + "1999": 0.689, + "2000": 0.705, + "2001": 0.717, + "2002": 0.739, + "2003": 0.749, + "2004": 0.764, + "2005": 0.791, + "2006": 0.812, + "2007": 0.797, + "2008": 0.803, + "2009": 0.812, + "2010": 0.824, + "2011": 0.829, + "2012": 0.829, + "2013": 0.832, + "2014": 0.837, + "2015": 0.84, + "2016": 0.822, + "2017": 0.831, + "2018": 0.835, + "2019": 0.84, + "2020": 0.849, + "2021": 0.849 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr107", + "Region": "Dytiki Makedonia", + "1990": 0.626, + "1991": 0.647, + "1992": 0.649, + "1993": 0.647, + "1994": 0.657, + "1995": 0.662, + "1996": 0.671, + "1997": 0.681, + "1998": 0.706, + "1999": 0.71, + "2000": 0.726, + "2001": 0.746, + "2002": 0.767, + "2003": 0.773, + "2004": 0.786, + "2005": 0.812, + "2006": 0.821, + "2007": 0.812, + "2008": 0.818, + "2009": 0.822, + "2010": 0.824, + "2011": 0.826, + "2012": 0.824, + "2013": 0.83, + "2014": 0.835, + "2015": 0.837, + "2016": 0.82, + "2017": 0.835, + "2018": 0.847, + "2019": 0.861, + "2020": 0.87, + "2021": 0.87 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr110", + "Region": "Ionia Nisia", + "1990": 0.595, + "1991": 0.615, + "1992": 0.617, + "1993": 0.616, + "1994": 0.625, + "1995": 0.63, + "1996": 0.639, + "1997": 0.648, + "1998": 0.672, + "1999": 0.676, + "2000": 0.691, + "2001": 0.703, + "2002": 0.72, + "2003": 0.721, + "2004": 0.736, + "2005": 0.76, + "2006": 0.779, + "2007": 0.761, + "2008": 0.769, + "2009": 0.778, + "2010": 0.792, + "2011": 0.8, + "2012": 0.808, + "2013": 0.82, + "2014": 0.831, + "2015": 0.839, + "2016": 0.82, + "2017": 0.827, + "2018": 0.844, + "2019": 0.851, + "2020": 0.86, + "2021": 0.86 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr108", + "Region": "Ipeiros", + "1990": 0.62, + "1991": 0.642, + "1992": 0.643, + "1993": 0.642, + "1994": 0.652, + "1995": 0.656, + "1996": 0.665, + "1997": 0.675, + "1998": 0.701, + "1999": 0.704, + "2000": 0.72, + "2001": 0.739, + "2002": 0.763, + "2003": 0.772, + "2004": 0.784, + "2005": 0.81, + "2006": 0.827, + "2007": 0.81, + "2008": 0.819, + "2009": 0.824, + "2010": 0.827, + "2011": 0.832, + "2012": 0.834, + "2013": 0.841, + "2014": 0.841, + "2015": 0.848, + "2016": 0.834, + "2017": 0.845, + "2018": 0.862, + "2019": 0.866, + "2020": 0.875, + "2021": 0.875 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr106", + "Region": "Kentriki Makedonia", + "1990": 0.602, + "1991": 0.623, + "1992": 0.625, + "1993": 0.624, + "1994": 0.633, + "1995": 0.638, + "1996": 0.647, + "1997": 0.657, + "1998": 0.681, + "1999": 0.685, + "2000": 0.7, + "2001": 0.718, + "2002": 0.738, + "2003": 0.744, + "2004": 0.757, + "2005": 0.782, + "2006": 0.799, + "2007": 0.783, + "2008": 0.793, + "2009": 0.804, + "2010": 0.815, + "2011": 0.822, + "2012": 0.832, + "2013": 0.838, + "2014": 0.851, + "2015": 0.857, + "2016": 0.843, + "2017": 0.852, + "2018": 0.861, + "2019": 0.871, + "2020": 0.881, + "2021": 0.881 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr104", + "Region": "Kriti", + "1990": 0.615, + "1991": 0.636, + "1992": 0.638, + "1993": 0.637, + "1994": 0.646, + "1995": 0.651, + "1996": 0.66, + "1997": 0.67, + "1998": 0.695, + "1999": 0.698, + "2000": 0.715, + "2001": 0.73, + "2002": 0.757, + "2003": 0.763, + "2004": 0.781, + "2005": 0.806, + "2006": 0.823, + "2007": 0.808, + "2008": 0.818, + "2009": 0.824, + "2010": 0.828, + "2011": 0.83, + "2012": 0.834, + "2013": 0.836, + "2014": 0.838, + "2015": 0.845, + "2016": 0.833, + "2017": 0.843, + "2018": 0.848, + "2019": 0.858, + "2020": 0.867, + "2021": 0.867 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr103", + "Region": "Notio Aigaio", + "1990": 0.514, + "1991": 0.531, + "1992": 0.533, + "1993": 0.533, + "1994": 0.541, + "1995": 0.546, + "1996": 0.554, + "1997": 0.562, + "1998": 0.582, + "1999": 0.585, + "2000": 0.598, + "2001": 0.611, + "2002": 0.629, + "2003": 0.636, + "2004": 0.649, + "2005": 0.669, + "2006": 0.681, + "2007": 0.665, + "2008": 0.675, + "2009": 0.682, + "2010": 0.687, + "2011": 0.697, + "2012": 0.709, + "2013": 0.716, + "2014": 0.733, + "2015": 0.74, + "2016": 0.725, + "2017": 0.742, + "2018": 0.766, + "2019": 0.79, + "2020": 0.799, + "2021": 0.799 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr113", + "Region": "Peloponnisos", + "1990": 0.55, + "1991": 0.569, + "1992": 0.571, + "1993": 0.57, + "1994": 0.579, + "1995": 0.584, + "1996": 0.592, + "1997": 0.601, + "1998": 0.623, + "1999": 0.626, + "2000": 0.64, + "2001": 0.655, + "2002": 0.671, + "2003": 0.675, + "2004": 0.69, + "2005": 0.712, + "2006": 0.727, + "2007": 0.714, + "2008": 0.724, + "2009": 0.729, + "2010": 0.738, + "2011": 0.745, + "2012": 0.756, + "2013": 0.763, + "2014": 0.783, + "2015": 0.786, + "2016": 0.774, + "2017": 0.792, + "2018": 0.806, + "2019": 0.828, + "2020": 0.838, + "2021": 0.838 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr112", + "Region": "Sterea Ellada", + "1990": 0.559, + "1991": 0.578, + "1992": 0.58, + "1993": 0.579, + "1994": 0.588, + "1995": 0.592, + "1996": 0.601, + "1997": 0.61, + "1998": 0.632, + "1999": 0.635, + "2000": 0.65, + "2001": 0.661, + "2002": 0.677, + "2003": 0.687, + "2004": 0.702, + "2005": 0.728, + "2006": 0.741, + "2007": 0.724, + "2008": 0.735, + "2009": 0.745, + "2010": 0.754, + "2011": 0.762, + "2012": 0.771, + "2013": 0.777, + "2014": 0.787, + "2015": 0.784, + "2016": 0.769, + "2017": 0.778, + "2018": 0.796, + "2019": 0.819, + "2020": 0.828, + "2021": 0.828 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr109", + "Region": "Thessalia", + "1990": 0.574, + "1991": 0.593, + "1992": 0.595, + "1993": 0.594, + "1994": 0.604, + "1995": 0.608, + "1996": 0.617, + "1997": 0.626, + "1998": 0.649, + "1999": 0.652, + "2000": 0.667, + "2001": 0.683, + "2002": 0.701, + "2003": 0.711, + "2004": 0.722, + "2005": 0.748, + "2006": 0.767, + "2007": 0.752, + "2008": 0.764, + "2009": 0.779, + "2010": 0.786, + "2011": 0.79, + "2012": 0.799, + "2013": 0.807, + "2014": 0.829, + "2015": 0.833, + "2016": 0.826, + "2017": 0.846, + "2018": 0.862, + "2019": 0.868, + "2020": 0.878, + "2021": 0.878 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr102", + "Region": "Voreio Aigaio", + "1990": 0.595, + "1991": 0.615, + "1992": 0.617, + "1993": 0.615, + "1994": 0.625, + "1995": 0.63, + "1996": 0.639, + "1997": 0.648, + "1998": 0.672, + "1999": 0.675, + "2000": 0.691, + "2001": 0.706, + "2002": 0.728, + "2003": 0.736, + "2004": 0.752, + "2005": 0.774, + "2006": 0.795, + "2007": 0.776, + "2008": 0.789, + "2009": 0.803, + "2010": 0.806, + "2011": 0.813, + "2012": 0.822, + "2013": 0.844, + "2014": 0.845, + "2015": 0.842, + "2016": 0.834, + "2017": 0.837, + "2018": 0.845, + "2019": 0.863, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Grenada", + "Continent": "America", + "ISO_Code": "GRD", + "Level": "National", + "GDLCODE": "GRDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.704, + "2003": 0.712, + "2004": 0.721, + "2005": 0.729, + "2006": 0.738, + "2007": 0.747, + "2008": 0.756, + "2009": 0.764, + "2010": 0.773, + "2011": 0.779, + "2012": 0.782, + "2013": 0.784, + "2014": 0.787, + "2015": 0.789, + "2016": 0.789, + "2017": 0.789, + "2018": 0.793, + "2019": 0.801, + "2020": 0.801, + "2021": 0.801 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "National", + "GDLCODE": "GTMt", + "Region": "Total", + "1990": 0.287, + "1991": 0.292, + "1992": 0.296, + "1993": 0.3, + "1994": 0.305, + "1995": 0.312, + "1996": 0.322, + "1997": 0.332, + "1998": 0.342, + "1999": 0.353, + "2000": 0.363, + "2001": 0.37, + "2002": 0.377, + "2003": 0.383, + "2004": 0.389, + "2005": 0.395, + "2006": 0.4, + "2007": 0.414, + "2008": 0.422, + "2009": 0.43, + "2010": 0.438, + "2011": 0.446, + "2012": 0.454, + "2013": 0.459, + "2014": 0.492, + "2015": 0.492, + "2016": 0.49, + "2017": 0.487, + "2018": 0.485, + "2019": 0.483, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr105", + "Region": "Central", + "1990": 0.299, + "1991": 0.303, + "1992": 0.308, + "1993": 0.312, + "1994": 0.317, + "1995": 0.324, + "1996": 0.331, + "1997": 0.338, + "1998": 0.345, + "1999": 0.352, + "2000": 0.361, + "2001": 0.367, + "2002": 0.372, + "2003": 0.378, + "2004": 0.383, + "2005": 0.389, + "2006": 0.395, + "2007": 0.408, + "2008": 0.416, + "2009": 0.425, + "2010": 0.433, + "2011": 0.441, + "2012": 0.449, + "2013": 0.46, + "2014": 0.5, + "2015": 0.51, + "2016": 0.507, + "2017": 0.505, + "2018": 0.502, + "2019": 0.5, + "2020": 0.5, + "2021": 0.5 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr101", + "Region": "Metropolitan", + "1990": 0.428, + "1991": 0.435, + "1992": 0.442, + "1993": 0.448, + "1994": 0.455, + "1995": 0.466, + "1996": 0.464, + "1997": 0.462, + "1998": 0.461, + "1999": 0.459, + "2000": 0.472, + "2001": 0.479, + "2002": 0.487, + "2003": 0.493, + "2004": 0.499, + "2005": 0.506, + "2006": 0.512, + "2007": 0.531, + "2008": 0.536, + "2009": 0.54, + "2010": 0.545, + "2011": 0.549, + "2012": 0.553, + "2013": 0.571, + "2014": 0.632, + "2015": 0.651, + "2016": 0.648, + "2017": 0.645, + "2018": 0.642, + "2019": 0.639, + "2020": 0.639, + "2021": 0.639 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr102", + "Region": "North", + "1990": 0.171, + "1991": 0.174, + "1992": 0.176, + "1993": 0.178, + "1994": 0.181, + "1995": 0.185, + "1996": 0.21, + "1997": 0.235, + "1998": 0.26, + "1999": 0.284, + "2000": 0.297, + "2001": 0.307, + "2002": 0.317, + "2003": 0.325, + "2004": 0.334, + "2005": 0.342, + "2006": 0.35, + "2007": 0.363, + "2008": 0.371, + "2009": 0.38, + "2010": 0.388, + "2011": 0.396, + "2012": 0.404, + "2013": 0.401, + "2014": 0.417, + "2015": 0.405, + "2016": 0.403, + "2017": 0.401, + "2018": 0.399, + "2019": 0.398, + "2020": 0.398, + "2021": 0.398 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr107", + "Region": "North-Occidental", + "1990": 0.17, + "1991": 0.172, + "1992": 0.175, + "1993": 0.177, + "1994": 0.179, + "1995": 0.183, + "1996": 0.191, + "1997": 0.199, + "1998": 0.207, + "1999": 0.215, + "2000": 0.23, + "2001": 0.243, + "2002": 0.255, + "2003": 0.267, + "2004": 0.278, + "2005": 0.288, + "2006": 0.299, + "2007": 0.314, + "2008": 0.327, + "2009": 0.34, + "2010": 0.353, + "2011": 0.367, + "2012": 0.381, + "2013": 0.377, + "2014": 0.392, + "2015": 0.379, + "2016": 0.377, + "2017": 0.375, + "2018": 0.373, + "2019": 0.371, + "2020": 0.371, + "2021": 0.371 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr103", + "Region": "North-Oriental", + "1990": 0.213, + "1991": 0.216, + "1992": 0.219, + "1993": 0.223, + "1994": 0.226, + "1995": 0.231, + "1996": 0.248, + "1997": 0.264, + "1998": 0.281, + "1999": 0.298, + "2000": 0.313, + "2001": 0.325, + "2002": 0.337, + "2003": 0.347, + "2004": 0.358, + "2005": 0.368, + "2006": 0.378, + "2007": 0.395, + "2008": 0.401, + "2009": 0.407, + "2010": 0.412, + "2011": 0.418, + "2012": 0.424, + "2013": 0.436, + "2014": 0.475, + "2015": 0.487, + "2016": 0.485, + "2017": 0.482, + "2018": 0.48, + "2019": 0.478, + "2020": 0.478, + "2021": 0.478 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr108", + "Region": "Peten", + "1990": 0.265, + "1991": 0.269, + "1992": 0.273, + "1993": 0.276, + "1994": 0.28, + "1995": 0.286, + "1996": 0.286, + "1997": 0.286, + "1998": 0.286, + "1999": 0.286, + "2000": 0.309, + "2001": 0.329, + "2002": 0.347, + "2003": 0.364, + "2004": 0.379, + "2005": 0.394, + "2006": 0.407, + "2007": 0.43, + "2008": 0.431, + "2009": 0.432, + "2010": 0.433, + "2011": 0.433, + "2012": 0.433, + "2013": 0.438, + "2014": 0.468, + "2015": 0.47, + "2016": 0.467, + "2017": 0.465, + "2018": 0.463, + "2019": 0.461, + "2020": 0.461, + "2021": 0.461 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr106", + "Region": "South-Occidental", + "1990": 0.239, + "1991": 0.242, + "1992": 0.246, + "1993": 0.249, + "1994": 0.253, + "1995": 0.258, + "1996": 0.274, + "1997": 0.29, + "1998": 0.306, + "1999": 0.322, + "2000": 0.332, + "2001": 0.338, + "2002": 0.345, + "2003": 0.351, + "2004": 0.357, + "2005": 0.363, + "2006": 0.369, + "2007": 0.381, + "2008": 0.393, + "2009": 0.406, + "2010": 0.419, + "2011": 0.432, + "2012": 0.446, + "2013": 0.442, + "2014": 0.462, + "2015": 0.448, + "2016": 0.446, + "2017": 0.444, + "2018": 0.442, + "2019": 0.44, + "2020": 0.44, + "2021": 0.44 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr104", + "Region": "South-Oriental", + "1990": 0.219, + "1991": 0.222, + "1992": 0.225, + "1993": 0.228, + "1994": 0.231, + "1995": 0.237, + "1996": 0.255, + "1997": 0.273, + "1998": 0.291, + "1999": 0.309, + "2000": 0.322, + "2001": 0.332, + "2002": 0.342, + "2003": 0.351, + "2004": 0.36, + "2005": 0.369, + "2006": 0.378, + "2007": 0.394, + "2008": 0.4, + "2009": 0.407, + "2010": 0.413, + "2011": 0.419, + "2012": 0.426, + "2013": 0.432, + "2014": 0.463, + "2015": 0.467, + "2016": 0.465, + "2017": 0.462, + "2018": 0.46, + "2019": 0.458, + "2020": 0.458, + "2021": 0.458 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "National", + "GDLCODE": "GINt", + "Region": "Total", + "1990": 0.118, + "1991": 0.122, + "1992": 0.128, + "1993": 0.133, + "1994": 0.139, + "1995": 0.146, + "1996": 0.153, + "1997": 0.163, + "1998": 0.173, + "1999": 0.183, + "2000": 0.193, + "2001": 0.203, + "2002": 0.214, + "2003": 0.224, + "2004": 0.234, + "2005": 0.247, + "2006": 0.261, + "2007": 0.269, + "2008": 0.278, + "2009": 0.282, + "2010": 0.287, + "2011": 0.293, + "2012": 0.295, + "2013": 0.304, + "2014": 0.313, + "2015": 0.319, + "2016": 0.326, + "2017": 0.332, + "2018": 0.339, + "2019": 0.346, + "2020": 0.346, + "2021": 0.346 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr101", + "Region": "Boke", + "1990": 0.093, + "1991": 0.097, + "1992": 0.101, + "1993": 0.106, + "1994": 0.111, + "1995": 0.117, + "1996": 0.123, + "1997": 0.131, + "1998": 0.14, + "1999": 0.148, + "2000": 0.157, + "2001": 0.165, + "2002": 0.174, + "2003": 0.182, + "2004": 0.191, + "2005": 0.203, + "2006": 0.224, + "2007": 0.24, + "2008": 0.257, + "2009": 0.27, + "2010": 0.283, + "2011": 0.298, + "2012": 0.308, + "2013": 0.31, + "2014": 0.311, + "2015": 0.311, + "2016": 0.31, + "2017": 0.309, + "2018": 0.308, + "2019": 0.315, + "2020": 0.315, + "2021": 0.315 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr102", + "Region": "Conakry", + "1990": 0.248, + "1991": 0.256, + "1992": 0.265, + "1993": 0.274, + "1994": 0.285, + "1995": 0.296, + "1996": 0.307, + "1997": 0.324, + "1998": 0.34, + "1999": 0.356, + "2000": 0.373, + "2001": 0.389, + "2002": 0.406, + "2003": 0.422, + "2004": 0.439, + "2005": 0.461, + "2006": 0.478, + "2007": 0.488, + "2008": 0.498, + "2009": 0.503, + "2010": 0.508, + "2011": 0.518, + "2012": 0.522, + "2013": 0.534, + "2014": 0.546, + "2015": 0.554, + "2016": 0.562, + "2017": 0.57, + "2018": 0.578, + "2019": 0.591, + "2020": 0.591, + "2021": 0.591 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr103", + "Region": "Faranah", + "1990": 0.11, + "1991": 0.115, + "1992": 0.12, + "1993": 0.125, + "1994": 0.131, + "1995": 0.138, + "1996": 0.145, + "1997": 0.155, + "1998": 0.165, + "1999": 0.175, + "2000": 0.185, + "2001": 0.195, + "2002": 0.205, + "2003": 0.215, + "2004": 0.225, + "2005": 0.239, + "2006": 0.241, + "2007": 0.238, + "2008": 0.234, + "2009": 0.227, + "2010": 0.221, + "2011": 0.215, + "2012": 0.206, + "2013": 0.216, + "2014": 0.225, + "2015": 0.233, + "2016": 0.241, + "2017": 0.249, + "2018": 0.257, + "2019": 0.262, + "2020": 0.262, + "2021": 0.262 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr104", + "Region": "Kankan", + "1990": 0.069, + "1991": 0.072, + "1992": 0.075, + "1993": 0.079, + "1994": 0.083, + "1995": 0.087, + "1996": 0.091, + "1997": 0.098, + "1998": 0.104, + "1999": 0.11, + "2000": 0.117, + "2001": 0.123, + "2002": 0.129, + "2003": 0.136, + "2004": 0.142, + "2005": 0.151, + "2006": 0.156, + "2007": 0.158, + "2008": 0.159, + "2009": 0.159, + "2010": 0.158, + "2011": 0.159, + "2012": 0.157, + "2013": 0.168, + "2014": 0.179, + "2015": 0.189, + "2016": 0.199, + "2017": 0.21, + "2018": 0.22, + "2019": 0.225, + "2020": 0.225, + "2021": 0.225 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr105", + "Region": "Kindia", + "1990": 0.091, + "1991": 0.095, + "1992": 0.1, + "1993": 0.104, + "1994": 0.11, + "1995": 0.116, + "1996": 0.123, + "1997": 0.132, + "1998": 0.141, + "1999": 0.15, + "2000": 0.159, + "2001": 0.168, + "2002": 0.177, + "2003": 0.187, + "2004": 0.196, + "2005": 0.208, + "2006": 0.223, + "2007": 0.232, + "2008": 0.242, + "2009": 0.247, + "2010": 0.252, + "2011": 0.259, + "2012": 0.262, + "2013": 0.277, + "2014": 0.292, + "2015": 0.305, + "2016": 0.319, + "2017": 0.332, + "2018": 0.346, + "2019": 0.353, + "2020": 0.353, + "2021": 0.353 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr106", + "Region": "Labe", + "1990": 0.075, + "1991": 0.079, + "1992": 0.082, + "1993": 0.086, + "1994": 0.091, + "1995": 0.097, + "1996": 0.102, + "1997": 0.109, + "1998": 0.117, + "1999": 0.125, + "2000": 0.132, + "2001": 0.14, + "2002": 0.148, + "2003": 0.155, + "2004": 0.163, + "2005": 0.174, + "2006": 0.183, + "2007": 0.19, + "2008": 0.196, + "2009": 0.199, + "2010": 0.202, + "2011": 0.206, + "2012": 0.206, + "2013": 0.214, + "2014": 0.221, + "2015": 0.227, + "2016": 0.233, + "2017": 0.239, + "2018": 0.245, + "2019": 0.25, + "2020": 0.25, + "2021": 0.25 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr107", + "Region": "Mamou", + "1990": 0.077, + "1991": 0.081, + "1992": 0.085, + "1993": 0.089, + "1994": 0.095, + "1995": 0.1, + "1996": 0.106, + "1997": 0.114, + "1998": 0.123, + "1999": 0.131, + "2000": 0.14, + "2001": 0.148, + "2002": 0.157, + "2003": 0.165, + "2004": 0.174, + "2005": 0.186, + "2006": 0.196, + "2007": 0.202, + "2008": 0.208, + "2009": 0.211, + "2010": 0.213, + "2011": 0.216, + "2012": 0.216, + "2013": 0.226, + "2014": 0.237, + "2015": 0.246, + "2016": 0.255, + "2017": 0.264, + "2018": 0.273, + "2019": 0.278, + "2020": 0.278, + "2021": 0.278 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr108", + "Region": "N Zerekore", + "1990": 0.122, + "1991": 0.127, + "1992": 0.133, + "1993": 0.138, + "1994": 0.145, + "1995": 0.152, + "1996": 0.159, + "1997": 0.169, + "1998": 0.18, + "1999": 0.19, + "2000": 0.2, + "2001": 0.211, + "2002": 0.221, + "2003": 0.232, + "2004": 0.242, + "2005": 0.256, + "2006": 0.267, + "2007": 0.273, + "2008": 0.279, + "2009": 0.281, + "2010": 0.284, + "2011": 0.288, + "2012": 0.288, + "2013": 0.297, + "2014": 0.306, + "2015": 0.313, + "2016": 0.32, + "2017": 0.327, + "2018": 0.334, + "2019": 0.34, + "2020": 0.34, + "2021": 0.34 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "National", + "GDLCODE": "GNBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.315, + "2006": 0.333, + "2007": 0.34, + "2008": 0.348, + "2009": 0.355, + "2010": 0.362, + "2011": 0.369, + "2012": 0.376, + "2013": 0.383, + "2014": 0.391, + "2015": 0.395, + "2016": 0.4, + "2017": 0.405, + "2018": 0.41, + "2019": 0.414, + "2020": 0.414, + "2021": 0.414 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr106", + "Region": "Bafata", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.222, + "2006": 0.234, + "2007": 0.235, + "2008": 0.236, + "2009": 0.237, + "2010": 0.238, + "2011": 0.238, + "2012": 0.24, + "2013": 0.241, + "2014": 0.242, + "2015": 0.258, + "2016": 0.275, + "2017": 0.293, + "2018": 0.311, + "2019": 0.329, + "2020": 0.329, + "2021": 0.329 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr104", + "Region": "Biombo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.228, + "2006": 0.241, + "2007": 0.264, + "2008": 0.286, + "2009": 0.307, + "2010": 0.329, + "2011": 0.35, + "2012": 0.37, + "2013": 0.391, + "2014": 0.411, + "2015": 0.428, + "2016": 0.445, + "2017": 0.462, + "2018": 0.479, + "2019": 0.497, + "2020": 0.497, + "2021": 0.497 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr109", + "Region": "Bissau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.501, + "2006": 0.53, + "2007": 0.533, + "2008": 0.536, + "2009": 0.54, + "2010": 0.543, + "2011": 0.546, + "2012": 0.55, + "2013": 0.553, + "2014": 0.557, + "2015": 0.562, + "2016": 0.566, + "2017": 0.569, + "2018": 0.572, + "2019": 0.574, + "2020": 0.574, + "2021": 0.574 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr105", + "Region": "Bolama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.344, + "2006": 0.364, + "2007": 0.371, + "2008": 0.377, + "2009": 0.383, + "2010": 0.39, + "2011": 0.396, + "2012": 0.402, + "2013": 0.409, + "2014": 0.415, + "2015": 0.426, + "2016": 0.437, + "2017": 0.448, + "2018": 0.459, + "2019": 0.47, + "2020": 0.47, + "2021": 0.47 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr108", + "Region": "Cacheu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.339, + "2006": 0.358, + "2007": 0.362, + "2008": 0.366, + "2009": 0.37, + "2010": 0.374, + "2011": 0.379, + "2012": 0.383, + "2013": 0.387, + "2014": 0.391, + "2015": 0.406, + "2016": 0.421, + "2017": 0.436, + "2018": 0.451, + "2019": 0.467, + "2020": 0.467, + "2021": 0.467 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr107", + "Region": "Gabu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.173, + "2006": 0.183, + "2007": 0.185, + "2008": 0.187, + "2009": 0.189, + "2010": 0.191, + "2011": 0.193, + "2012": 0.194, + "2013": 0.196, + "2014": 0.198, + "2015": 0.212, + "2016": 0.226, + "2017": 0.24, + "2018": 0.254, + "2019": 0.269, + "2020": 0.269, + "2021": 0.269 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr103", + "Region": "Oio", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.232, + "2006": 0.245, + "2007": 0.252, + "2008": 0.259, + "2009": 0.266, + "2010": 0.273, + "2011": 0.28, + "2012": 0.287, + "2013": 0.294, + "2014": 0.301, + "2015": 0.303, + "2016": 0.305, + "2017": 0.308, + "2018": 0.31, + "2019": 0.312, + "2020": 0.312, + "2021": 0.312 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr102", + "Region": "Quinara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.245, + "2006": 0.259, + "2007": 0.271, + "2008": 0.282, + "2009": 0.293, + "2010": 0.305, + "2011": 0.316, + "2012": 0.327, + "2013": 0.338, + "2014": 0.348, + "2015": 0.369, + "2016": 0.39, + "2017": 0.411, + "2018": 0.433, + "2019": 0.455, + "2020": 0.455, + "2021": 0.455 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr101", + "Region": "Tombali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.207, + "2006": 0.219, + "2007": 0.231, + "2008": 0.244, + "2009": 0.256, + "2010": 0.268, + "2011": 0.281, + "2012": 0.292, + "2013": 0.304, + "2014": 0.316, + "2015": 0.333, + "2016": 0.351, + "2017": 0.37, + "2018": 0.389, + "2019": 0.409, + "2020": 0.409, + "2021": 0.409 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "National", + "GDLCODE": "GUYt", + "Region": "Total", + "1990": 0.444, + "1991": 0.449, + "1992": 0.454, + "1993": 0.46, + "1994": 0.465, + "1995": 0.47, + "1996": 0.476, + "1997": 0.481, + "1998": 0.487, + "1999": 0.493, + "2000": 0.498, + "2001": 0.502, + "2002": 0.505, + "2003": 0.516, + "2004": 0.531, + "2005": 0.546, + "2006": 0.547, + "2007": 0.548, + "2008": 0.558, + "2009": 0.565, + "2010": 0.574, + "2011": 0.591, + "2012": 0.591, + "2013": 0.597, + "2014": 0.603, + "2015": 0.609, + "2016": 0.615, + "2017": 0.621, + "2018": 0.627, + "2019": 0.633, + "2020": 0.635, + "2021": 0.635 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr101", + "Region": "Barima-Waini", + "1990": 0.357, + "1991": 0.361, + "1992": 0.365, + "1993": 0.369, + "1994": 0.373, + "1995": 0.378, + "1996": 0.382, + "1997": 0.387, + "1998": 0.391, + "1999": 0.396, + "2000": 0.4, + "2001": 0.403, + "2002": 0.405, + "2003": 0.413, + "2004": 0.425, + "2005": 0.437, + "2006": 0.436, + "2007": 0.44, + "2008": 0.451, + "2009": 0.459, + "2010": 0.467, + "2011": 0.481, + "2012": 0.481, + "2013": 0.486, + "2014": 0.491, + "2015": 0.504, + "2016": 0.517, + "2017": 0.53, + "2018": 0.543, + "2019": 0.556, + "2020": 0.557, + "2021": 0.557 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr107", + "Region": "Cuyuni-Mazaruni", + "1990": 0.405, + "1991": 0.409, + "1992": 0.414, + "1993": 0.419, + "1994": 0.424, + "1995": 0.428, + "1996": 0.434, + "1997": 0.439, + "1998": 0.444, + "1999": 0.449, + "2000": 0.454, + "2001": 0.457, + "2002": 0.46, + "2003": 0.47, + "2004": 0.483, + "2005": 0.497, + "2006": 0.497, + "2007": 0.51, + "2008": 0.531, + "2009": 0.549, + "2010": 0.558, + "2011": 0.573, + "2012": 0.573, + "2013": 0.579, + "2014": 0.584, + "2015": 0.586, + "2016": 0.588, + "2017": 0.591, + "2018": 0.593, + "2019": 0.596, + "2020": 0.598, + "2021": 0.598 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr104", + "Region": "Demerara-Mahaica", + "1990": 0.469, + "1991": 0.474, + "1992": 0.48, + "1993": 0.485, + "1994": 0.491, + "1995": 0.497, + "1996": 0.503, + "1997": 0.508, + "1998": 0.514, + "1999": 0.52, + "2000": 0.527, + "2001": 0.53, + "2002": 0.534, + "2003": 0.545, + "2004": 0.561, + "2005": 0.577, + "2006": 0.579, + "2007": 0.58, + "2008": 0.591, + "2009": 0.597, + "2010": 0.606, + "2011": 0.622, + "2012": 0.621, + "2013": 0.626, + "2014": 0.631, + "2015": 0.637, + "2016": 0.644, + "2017": 0.652, + "2018": 0.659, + "2019": 0.666, + "2020": 0.668, + "2021": 0.668 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr106", + "Region": "East Berbice-Corentyne", + "1990": 0.41, + "1991": 0.415, + "1992": 0.419, + "1993": 0.424, + "1994": 0.429, + "1995": 0.434, + "1996": 0.439, + "1997": 0.444, + "1998": 0.449, + "1999": 0.455, + "2000": 0.46, + "2001": 0.463, + "2002": 0.466, + "2003": 0.475, + "2004": 0.489, + "2005": 0.502, + "2006": 0.503, + "2007": 0.512, + "2008": 0.53, + "2009": 0.544, + "2010": 0.548, + "2011": 0.558, + "2012": 0.553, + "2013": 0.553, + "2014": 0.553, + "2015": 0.559, + "2016": 0.566, + "2017": 0.572, + "2018": 0.578, + "2019": 0.585, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr103", + "Region": "Essequibo Islands-West Demerara", + "1990": 0.442, + "1991": 0.447, + "1992": 0.452, + "1993": 0.457, + "1994": 0.463, + "1995": 0.468, + "1996": 0.473, + "1997": 0.479, + "1998": 0.485, + "1999": 0.49, + "2000": 0.496, + "2001": 0.499, + "2002": 0.503, + "2003": 0.513, + "2004": 0.528, + "2005": 0.543, + "2006": 0.544, + "2007": 0.539, + "2008": 0.543, + "2009": 0.543, + "2010": 0.555, + "2011": 0.574, + "2012": 0.577, + "2013": 0.586, + "2014": 0.594, + "2015": 0.6, + "2016": 0.605, + "2017": 0.61, + "2018": 0.616, + "2019": 0.621, + "2020": 0.623, + "2021": 0.623 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr105", + "Region": "Mahaica-Berbice", + "1990": 0.428, + "1991": 0.433, + "1992": 0.438, + "1993": 0.443, + "1994": 0.448, + "1995": 0.453, + "1996": 0.459, + "1997": 0.464, + "1998": 0.469, + "1999": 0.475, + "2000": 0.48, + "2001": 0.484, + "2002": 0.487, + "2003": 0.497, + "2004": 0.511, + "2005": 0.525, + "2006": 0.526, + "2007": 0.524, + "2008": 0.531, + "2009": 0.534, + "2010": 0.546, + "2011": 0.565, + "2012": 0.569, + "2013": 0.577, + "2014": 0.586, + "2015": 0.592, + "2016": 0.598, + "2017": 0.605, + "2018": 0.611, + "2019": 0.617, + "2020": 0.619, + "2021": 0.619 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr102", + "Region": "Pomeroon-Supenaam", + "1990": 0.416, + "1991": 0.421, + "1992": 0.425, + "1993": 0.43, + "1994": 0.435, + "1995": 0.44, + "1996": 0.445, + "1997": 0.451, + "1998": 0.456, + "1999": 0.461, + "2000": 0.466, + "2001": 0.47, + "2002": 0.473, + "2003": 0.482, + "2004": 0.496, + "2005": 0.51, + "2006": 0.51, + "2007": 0.504, + "2008": 0.505, + "2009": 0.503, + "2010": 0.517, + "2011": 0.537, + "2012": 0.543, + "2013": 0.553, + "2014": 0.564, + "2015": 0.564, + "2016": 0.564, + "2017": 0.565, + "2018": 0.566, + "2019": 0.567, + "2020": 0.568, + "2021": 0.568 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr108", + "Region": "Potaro-Siparuni", + "1990": 0.394, + "1991": 0.399, + "1992": 0.404, + "1993": 0.408, + "1994": 0.413, + "1995": 0.418, + "1996": 0.423, + "1997": 0.428, + "1998": 0.433, + "1999": 0.438, + "2000": 0.443, + "2001": 0.446, + "2002": 0.449, + "2003": 0.458, + "2004": 0.472, + "2005": 0.485, + "2006": 0.486, + "2007": 0.498, + "2008": 0.518, + "2009": 0.536, + "2010": 0.535, + "2011": 0.54, + "2012": 0.53, + "2013": 0.525, + "2014": 0.521, + "2015": 0.529, + "2016": 0.537, + "2017": 0.545, + "2018": 0.553, + "2019": 0.561, + "2020": 0.563, + "2021": 0.563 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr110", + "Region": "Upper Demerara-Berbice", + "1990": 0.481, + "1991": 0.487, + "1992": 0.493, + "1993": 0.498, + "1994": 0.504, + "1995": 0.51, + "1996": 0.516, + "1997": 0.522, + "1998": 0.528, + "1999": 0.534, + "2000": 0.541, + "2001": 0.544, + "2002": 0.548, + "2003": 0.56, + "2004": 0.577, + "2005": 0.593, + "2006": 0.595, + "2007": 0.603, + "2008": 0.619, + "2009": 0.632, + "2010": 0.641, + "2011": 0.657, + "2012": 0.657, + "2013": 0.662, + "2014": 0.667, + "2015": 0.675, + "2016": 0.684, + "2017": 0.692, + "2018": 0.701, + "2019": 0.709, + "2020": 0.711, + "2021": 0.711 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr109", + "Region": "Upper Takutu-Upper Essequibo", + "1990": 0.423, + "1991": 0.428, + "1992": 0.433, + "1993": 0.438, + "1994": 0.443, + "1995": 0.448, + "1996": 0.453, + "1997": 0.458, + "1998": 0.464, + "1999": 0.469, + "2000": 0.474, + "2001": 0.478, + "2002": 0.481, + "2003": 0.491, + "2004": 0.504, + "2005": 0.518, + "2006": 0.519, + "2007": 0.519, + "2008": 0.529, + "2009": 0.535, + "2010": 0.545, + "2011": 0.562, + "2012": 0.563, + "2013": 0.57, + "2014": 0.576, + "2015": 0.579, + "2016": 0.582, + "2017": 0.585, + "2018": 0.588, + "2019": 0.591, + "2020": 0.593, + "2021": 0.593 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "National", + "GDLCODE": "HTIt", + "Region": "Total", + "1990": 0.288, + "1991": 0.294, + "1992": 0.299, + "1993": 0.305, + "1994": 0.31, + "1995": 0.316, + "1996": 0.322, + "1997": 0.328, + "1998": 0.333, + "1999": 0.339, + "2000": 0.345, + "2001": 0.351, + "2002": 0.356, + "2003": 0.362, + "2004": 0.368, + "2005": 0.373, + "2006": 0.378, + "2007": 0.384, + "2008": 0.389, + "2009": 0.394, + "2010": 0.399, + "2011": 0.408, + "2012": 0.413, + "2013": 0.419, + "2014": 0.424, + "2015": 0.429, + "2016": 0.433, + "2017": 0.444, + "2018": 0.446, + "2019": 0.455, + "2020": 0.455, + "2021": 0.455 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr105", + "Region": "Artibonite", + "1990": 0.217, + "1991": 0.22, + "1992": 0.224, + "1993": 0.228, + "1994": 0.232, + "1995": 0.236, + "1996": 0.24, + "1997": 0.244, + "1998": 0.248, + "1999": 0.252, + "2000": 0.256, + "2001": 0.271, + "2002": 0.285, + "2003": 0.299, + "2004": 0.313, + "2005": 0.327, + "2006": 0.333, + "2007": 0.339, + "2008": 0.345, + "2009": 0.351, + "2010": 0.357, + "2011": 0.367, + "2012": 0.373, + "2013": 0.377, + "2014": 0.381, + "2015": 0.384, + "2016": 0.388, + "2017": 0.397, + "2018": 0.399, + "2019": 0.407, + "2020": 0.407, + "2021": 0.407 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr106", + "Region": "Centre", + "1990": 0.19, + "1991": 0.193, + "1992": 0.197, + "1993": 0.2, + "1994": 0.203, + "1995": 0.209, + "1996": 0.216, + "1997": 0.222, + "1998": 0.229, + "1999": 0.235, + "2000": 0.242, + "2001": 0.247, + "2002": 0.253, + "2003": 0.258, + "2004": 0.263, + "2005": 0.268, + "2006": 0.278, + "2007": 0.288, + "2008": 0.298, + "2009": 0.307, + "2010": 0.317, + "2011": 0.331, + "2012": 0.34, + "2013": 0.348, + "2014": 0.355, + "2015": 0.362, + "2016": 0.368, + "2017": 0.381, + "2018": 0.383, + "2019": 0.39, + "2020": 0.39, + "2021": 0.39 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr108", + "Region": "Grande-Anse, Nippes", + "1990": 0.239, + "1991": 0.243, + "1992": 0.246, + "1993": 0.25, + "1994": 0.254, + "1995": 0.263, + "1996": 0.272, + "1997": 0.282, + "1998": 0.291, + "1999": 0.301, + "2000": 0.31, + "2001": 0.309, + "2002": 0.309, + "2003": 0.308, + "2004": 0.308, + "2005": 0.308, + "2006": 0.314, + "2007": 0.321, + "2008": 0.327, + "2009": 0.333, + "2010": 0.339, + "2011": 0.349, + "2012": 0.355, + "2013": 0.364, + "2014": 0.374, + "2015": 0.384, + "2016": 0.393, + "2017": 0.409, + "2018": 0.411, + "2019": 0.418, + "2020": 0.418, + "2021": 0.418 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr103", + "Region": "North", + "1990": 0.238, + "1991": 0.243, + "1992": 0.247, + "1993": 0.252, + "1994": 0.256, + "1995": 0.264, + "1996": 0.271, + "1997": 0.279, + "1998": 0.287, + "1999": 0.296, + "2000": 0.304, + "2001": 0.314, + "2002": 0.324, + "2003": 0.333, + "2004": 0.342, + "2005": 0.352, + "2006": 0.361, + "2007": 0.371, + "2008": 0.38, + "2009": 0.39, + "2010": 0.399, + "2011": 0.412, + "2012": 0.422, + "2013": 0.424, + "2014": 0.427, + "2015": 0.43, + "2016": 0.432, + "2017": 0.441, + "2018": 0.443, + "2019": 0.452, + "2020": 0.452, + "2021": 0.452 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr104", + "Region": "North-East", + "1990": 0.247, + "1991": 0.252, + "1992": 0.257, + "1993": 0.261, + "1994": 0.266, + "1995": 0.274, + "1996": 0.282, + "1997": 0.291, + "1998": 0.299, + "1999": 0.308, + "2000": 0.317, + "2001": 0.322, + "2002": 0.326, + "2003": 0.331, + "2004": 0.336, + "2005": 0.34, + "2006": 0.344, + "2007": 0.348, + "2008": 0.352, + "2009": 0.356, + "2010": 0.36, + "2011": 0.368, + "2012": 0.372, + "2013": 0.381, + "2014": 0.39, + "2015": 0.399, + "2016": 0.407, + "2017": 0.422, + "2018": 0.424, + "2019": 0.432, + "2020": 0.432, + "2021": 0.432 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr109", + "Region": "North-West", + "1990": 0.245, + "1991": 0.249, + "1992": 0.253, + "1993": 0.257, + "1994": 0.261, + "1995": 0.265, + "1996": 0.27, + "1997": 0.274, + "1998": 0.279, + "1999": 0.283, + "2000": 0.288, + "2001": 0.293, + "2002": 0.298, + "2003": 0.303, + "2004": 0.308, + "2005": 0.313, + "2006": 0.323, + "2007": 0.333, + "2008": 0.343, + "2009": 0.353, + "2010": 0.363, + "2011": 0.376, + "2012": 0.386, + "2013": 0.394, + "2014": 0.402, + "2015": 0.411, + "2016": 0.418, + "2017": 0.432, + "2018": 0.434, + "2019": 0.442, + "2020": 0.442, + "2021": 0.442 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr107", + "Region": "South", + "1990": 0.294, + "1991": 0.299, + "1992": 0.304, + "1993": 0.309, + "1994": 0.314, + "1995": 0.309, + "1996": 0.304, + "1997": 0.299, + "1998": 0.293, + "1999": 0.287, + "2000": 0.281, + "2001": 0.295, + "2002": 0.308, + "2003": 0.321, + "2004": 0.333, + "2005": 0.346, + "2006": 0.352, + "2007": 0.358, + "2008": 0.365, + "2009": 0.371, + "2010": 0.377, + "2011": 0.387, + "2012": 0.393, + "2013": 0.397, + "2014": 0.4, + "2015": 0.404, + "2016": 0.406, + "2017": 0.416, + "2018": 0.418, + "2019": 0.425, + "2020": 0.425, + "2021": 0.425 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr102", + "Region": "South-East", + "1990": 0.267, + "1991": 0.271, + "1992": 0.275, + "1993": 0.279, + "1994": 0.284, + "1995": 0.281, + "1996": 0.279, + "1997": 0.276, + "1998": 0.273, + "1999": 0.269, + "2000": 0.266, + "2001": 0.273, + "2002": 0.281, + "2003": 0.288, + "2004": 0.295, + "2005": 0.302, + "2006": 0.309, + "2007": 0.317, + "2008": 0.324, + "2009": 0.332, + "2010": 0.339, + "2011": 0.35, + "2012": 0.358, + "2013": 0.367, + "2014": 0.376, + "2015": 0.386, + "2016": 0.395, + "2017": 0.41, + "2018": 0.412, + "2019": 0.419, + "2020": 0.419, + "2021": 0.419 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr101", + "Region": "West (incl Metropolitain area)", + "1990": 0.375, + "1991": 0.383, + "1992": 0.391, + "1993": 0.399, + "1994": 0.407, + "1995": 0.413, + "1996": 0.42, + "1997": 0.427, + "1998": 0.434, + "1999": 0.44, + "2000": 0.447, + "2001": 0.45, + "2002": 0.453, + "2003": 0.456, + "2004": 0.459, + "2005": 0.463, + "2006": 0.462, + "2007": 0.462, + "2008": 0.463, + "2009": 0.463, + "2010": 0.463, + "2011": 0.468, + "2012": 0.469, + "2013": 0.474, + "2014": 0.478, + "2015": 0.483, + "2016": 0.486, + "2017": 0.496, + "2018": 0.499, + "2019": 0.508, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "National", + "GDLCODE": "HNDt", + "Region": "Total", + "1990": 0.36, + "1991": 0.365, + "1992": 0.37, + "1993": 0.374, + "1994": 0.38, + "1995": 0.386, + "1996": 0.391, + "1997": 0.396, + "1998": 0.401, + "1999": 0.407, + "2000": 0.412, + "2001": 0.417, + "2002": 0.422, + "2003": 0.427, + "2004": 0.433, + "2005": 0.438, + "2006": 0.441, + "2007": 0.444, + "2008": 0.453, + "2009": 0.46, + "2010": 0.468, + "2011": 0.469, + "2012": 0.464, + "2013": 0.469, + "2014": 0.475, + "2015": 0.485, + "2016": 0.492, + "2017": 0.486, + "2018": 0.483, + "2019": 0.518, + "2020": 0.518, + "2021": 0.518 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr101", + "Region": "Atlantida", + "1990": 0.501, + "1991": 0.507, + "1992": 0.513, + "1993": 0.519, + "1994": 0.527, + "1995": 0.534, + "1996": 0.541, + "1997": 0.548, + "1998": 0.555, + "1999": 0.563, + "2000": 0.57, + "2001": 0.577, + "2002": 0.584, + "2003": 0.591, + "2004": 0.598, + "2005": 0.605, + "2006": 0.576, + "2007": 0.552, + "2008": 0.538, + "2009": 0.525, + "2010": 0.515, + "2011": 0.5, + "2012": 0.491, + "2013": 0.494, + "2014": 0.497, + "2015": 0.504, + "2016": 0.508, + "2017": 0.498, + "2018": 0.492, + "2019": 0.524, + "2020": 0.524, + "2021": 0.524 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr106", + "Region": "Choluteca", + "1990": 0.222, + "1991": 0.226, + "1992": 0.229, + "1993": 0.232, + "1994": 0.236, + "1995": 0.24, + "1996": 0.243, + "1997": 0.247, + "1998": 0.25, + "1999": 0.253, + "2000": 0.257, + "2001": 0.26, + "2002": 0.263, + "2003": 0.267, + "2004": 0.27, + "2005": 0.274, + "2006": 0.302, + "2007": 0.327, + "2008": 0.352, + "2009": 0.375, + "2010": 0.395, + "2011": 0.408, + "2012": 0.407, + "2013": 0.414, + "2014": 0.422, + "2015": 0.435, + "2016": 0.444, + "2017": 0.442, + "2018": 0.443, + "2019": 0.478, + "2020": 0.478, + "2021": 0.478 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr102", + "Region": "Colon", + "1990": 0.446, + "1991": 0.452, + "1992": 0.457, + "1993": 0.462, + "1994": 0.469, + "1995": 0.475, + "1996": 0.482, + "1997": 0.488, + "1998": 0.494, + "1999": 0.5, + "2000": 0.507, + "2001": 0.513, + "2002": 0.519, + "2003": 0.526, + "2004": 0.532, + "2005": 0.538, + "2006": 0.509, + "2007": 0.485, + "2008": 0.468, + "2009": 0.454, + "2010": 0.442, + "2011": 0.426, + "2012": 0.422, + "2013": 0.427, + "2014": 0.432, + "2015": 0.442, + "2016": 0.449, + "2017": 0.444, + "2018": 0.441, + "2019": 0.474, + "2020": 0.474, + "2021": 0.474 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr103", + "Region": "Comayagua", + "1990": 0.38, + "1991": 0.385, + "1992": 0.39, + "1993": 0.394, + "1994": 0.4, + "1995": 0.406, + "1996": 0.411, + "1997": 0.417, + "1998": 0.422, + "1999": 0.428, + "2000": 0.433, + "2001": 0.438, + "2002": 0.444, + "2003": 0.449, + "2004": 0.455, + "2005": 0.46, + "2006": 0.451, + "2007": 0.444, + "2008": 0.444, + "2009": 0.443, + "2010": 0.444, + "2011": 0.441, + "2012": 0.434, + "2013": 0.438, + "2014": 0.443, + "2015": 0.452, + "2016": 0.457, + "2017": 0.45, + "2018": 0.446, + "2019": 0.478, + "2020": 0.478, + "2021": 0.478 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr104", + "Region": "Copan", + "1990": 0.236, + "1991": 0.239, + "1992": 0.242, + "1993": 0.245, + "1994": 0.249, + "1995": 0.253, + "1996": 0.256, + "1997": 0.259, + "1998": 0.263, + "1999": 0.266, + "2000": 0.27, + "2001": 0.273, + "2002": 0.277, + "2003": 0.28, + "2004": 0.283, + "2005": 0.287, + "2006": 0.305, + "2007": 0.32, + "2008": 0.338, + "2009": 0.354, + "2010": 0.37, + "2011": 0.379, + "2012": 0.374, + "2013": 0.378, + "2014": 0.381, + "2015": 0.39, + "2016": 0.395, + "2017": 0.39, + "2018": 0.387, + "2019": 0.415, + "2020": 0.415, + "2021": 0.415 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr105", + "Region": "Cortes", + "1990": 0.419, + "1991": 0.425, + "1992": 0.43, + "1993": 0.436, + "1994": 0.442, + "1995": 0.449, + "1996": 0.455, + "1997": 0.461, + "1998": 0.467, + "1999": 0.473, + "2000": 0.479, + "2001": 0.485, + "2002": 0.492, + "2003": 0.498, + "2004": 0.504, + "2005": 0.51, + "2006": 0.506, + "2007": 0.504, + "2008": 0.507, + "2009": 0.511, + "2010": 0.515, + "2011": 0.513, + "2012": 0.508, + "2013": 0.516, + "2014": 0.524, + "2015": 0.537, + "2016": 0.547, + "2017": 0.541, + "2018": 0.538, + "2019": 0.579, + "2020": 0.579, + "2021": 0.579 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr107", + "Region": "El Paraiso", + "1990": 0.28, + "1991": 0.284, + "1992": 0.288, + "1993": 0.291, + "1994": 0.296, + "1995": 0.3, + "1996": 0.304, + "1997": 0.308, + "1998": 0.312, + "1999": 0.316, + "2000": 0.32, + "2001": 0.324, + "2002": 0.328, + "2003": 0.333, + "2004": 0.337, + "2005": 0.341, + "2006": 0.354, + "2007": 0.367, + "2008": 0.382, + "2009": 0.396, + "2010": 0.409, + "2011": 0.416, + "2012": 0.412, + "2013": 0.416, + "2014": 0.421, + "2015": 0.432, + "2016": 0.439, + "2017": 0.435, + "2018": 0.433, + "2019": 0.464, + "2020": 0.464, + "2021": 0.464 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr108", + "Region": "Francisco Morazan", + "1990": 0.458, + "1991": 0.464, + "1992": 0.47, + "1993": 0.476, + "1994": 0.483, + "1995": 0.491, + "1996": 0.497, + "1997": 0.504, + "1998": 0.511, + "1999": 0.518, + "2000": 0.524, + "2001": 0.531, + "2002": 0.538, + "2003": 0.544, + "2004": 0.551, + "2005": 0.558, + "2006": 0.561, + "2007": 0.564, + "2008": 0.573, + "2009": 0.582, + "2010": 0.59, + "2011": 0.591, + "2012": 0.583, + "2013": 0.589, + "2014": 0.595, + "2015": 0.607, + "2016": 0.615, + "2017": 0.605, + "2018": 0.6, + "2019": 0.642, + "2020": 0.642, + "2021": 0.642 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr109", + "Region": "Gracias a Dios", + "1990": 0.492, + "1991": 0.497, + "1992": 0.503, + "1993": 0.509, + "1994": 0.517, + "1995": 0.524, + "1996": 0.531, + "1997": 0.538, + "1998": 0.545, + "1999": 0.552, + "2000": 0.558, + "2001": 0.565, + "2002": 0.572, + "2003": 0.579, + "2004": 0.586, + "2005": 0.593, + "2006": 0.558, + "2007": 0.529, + "2008": 0.508, + "2009": 0.49, + "2010": 0.475, + "2011": 0.455, + "2012": 0.452, + "2013": 0.459, + "2014": 0.466, + "2015": 0.479, + "2016": 0.488, + "2017": 0.484, + "2018": 0.483, + "2019": 0.519, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr110", + "Region": "Intibuca", + "1990": 0.233, + "1991": 0.236, + "1992": 0.239, + "1993": 0.242, + "1994": 0.246, + "1995": 0.249, + "1996": 0.253, + "1997": 0.256, + "1998": 0.26, + "1999": 0.263, + "2000": 0.266, + "2001": 0.27, + "2002": 0.273, + "2003": 0.276, + "2004": 0.28, + "2005": 0.283, + "2006": 0.303, + "2007": 0.32, + "2008": 0.339, + "2009": 0.356, + "2010": 0.372, + "2011": 0.383, + "2012": 0.381, + "2013": 0.388, + "2014": 0.396, + "2015": 0.408, + "2016": 0.417, + "2017": 0.415, + "2018": 0.416, + "2019": 0.449, + "2020": 0.449, + "2021": 0.449 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr111", + "Region": "Islas de la Bahia", + "1990": 0.561, + "1991": 0.568, + "1992": 0.575, + "1993": 0.582, + "1994": 0.591, + "1995": 0.599, + "1996": 0.607, + "1997": 0.615, + "1998": 0.623, + "1999": 0.631, + "2000": 0.639, + "2001": 0.647, + "2002": 0.655, + "2003": 0.663, + "2004": 0.671, + "2005": 0.679, + "2006": 0.642, + "2007": 0.61, + "2008": 0.588, + "2009": 0.57, + "2010": 0.554, + "2011": 0.534, + "2012": 0.525, + "2013": 0.53, + "2014": 0.535, + "2015": 0.544, + "2016": 0.55, + "2017": 0.54, + "2018": 0.533, + "2019": 0.57, + "2020": 0.57, + "2021": 0.57 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr112", + "Region": "La Paz", + "1990": 0.259, + "1991": 0.262, + "1992": 0.265, + "1993": 0.269, + "1994": 0.273, + "1995": 0.277, + "1996": 0.281, + "1997": 0.284, + "1998": 0.288, + "1999": 0.292, + "2000": 0.296, + "2001": 0.299, + "2002": 0.303, + "2003": 0.307, + "2004": 0.311, + "2005": 0.314, + "2006": 0.334, + "2007": 0.351, + "2008": 0.371, + "2009": 0.388, + "2010": 0.405, + "2011": 0.415, + "2012": 0.414, + "2013": 0.421, + "2014": 0.429, + "2015": 0.443, + "2016": 0.452, + "2017": 0.451, + "2018": 0.452, + "2019": 0.487, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr113", + "Region": "Lempira", + "1990": 0.217, + "1991": 0.219, + "1992": 0.222, + "1993": 0.225, + "1994": 0.228, + "1995": 0.232, + "1996": 0.235, + "1997": 0.238, + "1998": 0.241, + "1999": 0.244, + "2000": 0.247, + "2001": 0.25, + "2002": 0.253, + "2003": 0.256, + "2004": 0.259, + "2005": 0.262, + "2006": 0.276, + "2007": 0.288, + "2008": 0.302, + "2009": 0.315, + "2010": 0.327, + "2011": 0.334, + "2012": 0.332, + "2013": 0.336, + "2014": 0.341, + "2015": 0.352, + "2016": 0.359, + "2017": 0.357, + "2018": 0.357, + "2019": 0.384, + "2020": 0.384, + "2021": 0.384 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr114", + "Region": "Ocotepeque", + "1990": 0.373, + "1991": 0.378, + "1992": 0.382, + "1993": 0.386, + "1994": 0.392, + "1995": 0.397, + "1996": 0.403, + "1997": 0.408, + "1998": 0.413, + "1999": 0.418, + "2000": 0.424, + "2001": 0.429, + "2002": 0.434, + "2003": 0.439, + "2004": 0.444, + "2005": 0.45, + "2006": 0.431, + "2007": 0.416, + "2008": 0.407, + "2009": 0.4, + "2010": 0.394, + "2011": 0.385, + "2012": 0.382, + "2013": 0.388, + "2014": 0.394, + "2015": 0.406, + "2016": 0.414, + "2017": 0.411, + "2018": 0.411, + "2019": 0.442, + "2020": 0.442, + "2021": 0.442 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr115", + "Region": "Olancho", + "1990": 0.225, + "1991": 0.228, + "1992": 0.231, + "1993": 0.234, + "1994": 0.237, + "1995": 0.241, + "1996": 0.244, + "1997": 0.247, + "1998": 0.25, + "1999": 0.254, + "2000": 0.257, + "2001": 0.26, + "2002": 0.264, + "2003": 0.267, + "2004": 0.27, + "2005": 0.273, + "2006": 0.304, + "2007": 0.33, + "2008": 0.357, + "2009": 0.382, + "2010": 0.405, + "2011": 0.421, + "2012": 0.413, + "2013": 0.414, + "2014": 0.415, + "2015": 0.422, + "2016": 0.425, + "2017": 0.418, + "2018": 0.413, + "2019": 0.439, + "2020": 0.439, + "2021": 0.439 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr116", + "Region": "Santa Barbara", + "1990": 0.185, + "1991": 0.188, + "1992": 0.191, + "1993": 0.193, + "1994": 0.196, + "1995": 0.199, + "1996": 0.202, + "1997": 0.205, + "1998": 0.208, + "1999": 0.21, + "2000": 0.213, + "2001": 0.216, + "2002": 0.219, + "2003": 0.221, + "2004": 0.224, + "2005": 0.227, + "2006": 0.264, + "2007": 0.297, + "2008": 0.329, + "2009": 0.359, + "2010": 0.386, + "2011": 0.406, + "2012": 0.402, + "2013": 0.406, + "2014": 0.411, + "2015": 0.422, + "2016": 0.428, + "2017": 0.424, + "2018": 0.423, + "2019": 0.453, + "2020": 0.453, + "2021": 0.453 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr117", + "Region": "Valle", + "1990": 0.201, + "1991": 0.204, + "1992": 0.207, + "1993": 0.21, + "1994": 0.214, + "1995": 0.217, + "1996": 0.22, + "1997": 0.223, + "1998": 0.226, + "1999": 0.229, + "2000": 0.232, + "2001": 0.235, + "2002": 0.238, + "2003": 0.242, + "2004": 0.245, + "2005": 0.248, + "2006": 0.286, + "2007": 0.319, + "2008": 0.353, + "2009": 0.383, + "2010": 0.41, + "2011": 0.429, + "2012": 0.425, + "2013": 0.43, + "2014": 0.435, + "2015": 0.445, + "2016": 0.452, + "2017": 0.447, + "2018": 0.445, + "2019": 0.478, + "2020": 0.478, + "2021": 0.478 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr118", + "Region": "Yoro", + "1990": 0.482, + "1991": 0.488, + "1992": 0.494, + "1993": 0.499, + "1994": 0.507, + "1995": 0.514, + "1996": 0.521, + "1997": 0.528, + "1998": 0.534, + "1999": 0.541, + "2000": 0.548, + "2001": 0.555, + "2002": 0.562, + "2003": 0.568, + "2004": 0.575, + "2005": 0.582, + "2006": 0.548, + "2007": 0.518, + "2008": 0.497, + "2009": 0.479, + "2010": 0.463, + "2011": 0.443, + "2012": 0.438, + "2013": 0.443, + "2014": 0.448, + "2015": 0.458, + "2016": 0.465, + "2017": 0.459, + "2018": 0.456, + "2019": 0.489, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "National", + "GDLCODE": "HUNt", + "Region": "Total", + "1990": 0.625, + "1991": 0.627, + "1992": 0.632, + "1993": 0.649, + "1994": 0.666, + "1995": 0.672, + "1996": 0.68, + "1997": 0.695, + "1998": 0.708, + "1999": 0.722, + "2000": 0.734, + "2001": 0.746, + "2002": 0.76, + "2003": 0.775, + "2004": 0.772, + "2005": 0.783, + "2006": 0.794, + "2007": 0.802, + "2008": 0.81, + "2009": 0.816, + "2010": 0.82, + "2011": 0.819, + "2012": 0.818, + "2013": 0.834, + "2014": 0.821, + "2015": 0.818, + "2016": 0.816, + "2017": 0.822, + "2018": 0.823, + "2019": 0.823, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr107", + "Region": "Del-Alfold", + "1990": 0.612, + "1991": 0.614, + "1992": 0.619, + "1993": 0.636, + "1994": 0.652, + "1995": 0.658, + "1996": 0.666, + "1997": 0.68, + "1998": 0.693, + "1999": 0.707, + "2000": 0.719, + "2001": 0.731, + "2002": 0.744, + "2003": 0.757, + "2004": 0.758, + "2005": 0.771, + "2006": 0.781, + "2007": 0.792, + "2008": 0.8, + "2009": 0.806, + "2010": 0.81, + "2011": 0.807, + "2012": 0.807, + "2013": 0.821, + "2014": 0.809, + "2015": 0.808, + "2016": 0.812, + "2017": 0.818, + "2018": 0.824, + "2019": 0.825, + "2020": 0.828, + "2021": 0.828 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr104", + "Region": "Del-Dunantul", + "1990": 0.612, + "1991": 0.614, + "1992": 0.619, + "1993": 0.636, + "1994": 0.652, + "1995": 0.658, + "1996": 0.666, + "1997": 0.68, + "1998": 0.692, + "1999": 0.706, + "2000": 0.718, + "2001": 0.729, + "2002": 0.74, + "2003": 0.755, + "2004": 0.755, + "2005": 0.765, + "2006": 0.772, + "2007": 0.778, + "2008": 0.787, + "2009": 0.796, + "2010": 0.802, + "2011": 0.803, + "2012": 0.799, + "2013": 0.814, + "2014": 0.8, + "2015": 0.795, + "2016": 0.796, + "2017": 0.799, + "2018": 0.8, + "2019": 0.803, + "2020": 0.806, + "2021": 0.806 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr106", + "Region": "Eszak-Alfold", + "1990": 0.61, + "1991": 0.612, + "1992": 0.617, + "1993": 0.633, + "1994": 0.65, + "1995": 0.656, + "1996": 0.664, + "1997": 0.678, + "1998": 0.69, + "1999": 0.704, + "2000": 0.716, + "2001": 0.728, + "2002": 0.742, + "2003": 0.757, + "2004": 0.753, + "2005": 0.764, + "2006": 0.777, + "2007": 0.785, + "2008": 0.791, + "2009": 0.796, + "2010": 0.802, + "2011": 0.8, + "2012": 0.799, + "2013": 0.815, + "2014": 0.8, + "2015": 0.792, + "2016": 0.79, + "2017": 0.794, + "2018": 0.798, + "2019": 0.8, + "2020": 0.803, + "2021": 0.803 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr105", + "Region": "Eszak-Magyarorszag", + "1990": 0.597, + "1991": 0.599, + "1992": 0.603, + "1993": 0.619, + "1994": 0.635, + "1995": 0.641, + "1996": 0.648, + "1997": 0.662, + "1998": 0.674, + "1999": 0.687, + "2000": 0.698, + "2001": 0.709, + "2002": 0.723, + "2003": 0.737, + "2004": 0.734, + "2005": 0.745, + "2006": 0.756, + "2007": 0.763, + "2008": 0.77, + "2009": 0.778, + "2010": 0.782, + "2011": 0.78, + "2012": 0.776, + "2013": 0.792, + "2014": 0.778, + "2015": 0.776, + "2016": 0.775, + "2017": 0.778, + "2018": 0.778, + "2019": 0.776, + "2020": 0.779, + "2021": 0.779 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr102", + "Region": "Kozep-Dunantul", + "1990": 0.606, + "1991": 0.608, + "1992": 0.613, + "1993": 0.629, + "1994": 0.645, + "1995": 0.651, + "1996": 0.658, + "1997": 0.672, + "1998": 0.684, + "1999": 0.698, + "2000": 0.709, + "2001": 0.718, + "2002": 0.731, + "2003": 0.747, + "2004": 0.742, + "2005": 0.749, + "2006": 0.762, + "2007": 0.773, + "2008": 0.781, + "2009": 0.783, + "2010": 0.784, + "2011": 0.787, + "2012": 0.788, + "2013": 0.806, + "2014": 0.786, + "2015": 0.786, + "2016": 0.781, + "2017": 0.786, + "2018": 0.783, + "2019": 0.783, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr101", + "Region": "Kozep-Magyarorszag", + "1990": 0.69, + "1991": 0.692, + "1992": 0.697, + "1993": 0.716, + "1994": 0.735, + "1995": 0.742, + "1996": 0.751, + "1997": 0.767, + "1998": 0.782, + "1999": 0.798, + "2000": 0.812, + "2001": 0.823, + "2002": 0.839, + "2003": 0.856, + "2004": 0.857, + "2005": 0.87, + "2006": 0.883, + "2007": 0.891, + "2008": 0.9, + "2009": 0.904, + "2010": 0.909, + "2011": 0.912, + "2012": 0.909, + "2013": 0.927, + "2014": 0.919, + "2015": 0.919, + "2016": 0.913, + "2017": 0.917, + "2018": 0.922, + "2019": 0.923, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr103", + "Region": "Nyugat-Dunantul", + "1990": 0.62, + "1991": 0.622, + "1992": 0.627, + "1993": 0.644, + "1994": 0.661, + "1995": 0.667, + "1996": 0.675, + "1997": 0.689, + "1998": 0.701, + "1999": 0.715, + "2000": 0.727, + "2001": 0.739, + "2002": 0.752, + "2003": 0.765, + "2004": 0.763, + "2005": 0.774, + "2006": 0.784, + "2007": 0.792, + "2008": 0.801, + "2009": 0.809, + "2010": 0.81, + "2011": 0.812, + "2012": 0.81, + "2013": 0.824, + "2014": 0.813, + "2015": 0.81, + "2016": 0.809, + "2017": 0.816, + "2018": 0.81, + "2019": 0.813, + "2020": 0.816, + "2021": 0.816 + }, + { + "Country": "Iceland", + "Continent": "Europe", + "ISO_Code": "ISL", + "Level": "National", + "GDLCODE": "ISLt", + "Region": "Total", + "1990": 0.685, + "1991": 0.718, + "1992": 0.73, + "1993": 0.729, + "1994": 0.739, + "1995": 0.746, + "1996": 0.751, + "1997": 0.767, + "1998": 0.784, + "1999": 0.788, + "2000": 0.8, + "2001": 0.807, + "2002": 0.824, + "2003": 0.836, + "2004": 0.84, + "2005": 0.844, + "2006": 0.848, + "2007": 0.852, + "2008": 0.855, + "2009": 0.859, + "2010": 0.863, + "2011": 0.878, + "2012": 0.894, + "2013": 0.909, + "2014": 0.924, + "2015": 0.939, + "2016": 0.944, + "2017": 0.949, + "2018": 0.953, + "2019": 0.958, + "2020": 0.959, + "2021": 0.959 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "National", + "GDLCODE": "INDt", + "Region": "Total", + "1990": 0.315, + "1991": 0.319, + "1992": 0.323, + "1993": 0.328, + "1994": 0.332, + "1995": 0.336, + "1996": 0.343, + "1997": 0.349, + "1998": 0.356, + "1999": 0.362, + "2000": 0.369, + "2001": 0.372, + "2002": 0.38, + "2003": 0.399, + "2004": 0.409, + "2005": 0.419, + "2006": 0.43, + "2007": 0.441, + "2008": 0.453, + "2009": 0.455, + "2010": 0.467, + "2011": 0.49, + "2012": 0.505, + "2013": 0.513, + "2014": 0.53, + "2015": 0.54, + "2016": 0.555, + "2017": 0.553, + "2018": 0.547, + "2019": 0.54, + "2020": 0.552, + "2021": 0.552 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr136", + "Region": "Andaman and Nicobar Islands", + "1990": 0.628, + "1991": 0.637, + "1992": 0.646, + "1993": 0.625, + "1994": 0.608, + "1995": 0.592, + "1996": 0.581, + "1997": 0.572, + "1998": 0.564, + "1999": 0.557, + "2000": 0.562, + "2001": 0.562, + "2002": 0.568, + "2003": 0.59, + "2004": 0.599, + "2005": 0.607, + "2006": 0.617, + "2007": 0.604, + "2008": 0.593, + "2009": 0.572, + "2010": 0.565, + "2011": 0.572, + "2012": 0.569, + "2013": 0.584, + "2014": 0.608, + "2015": 0.626, + "2016": 0.649, + "2017": 0.633, + "2018": 0.614, + "2019": 0.595, + "2020": 0.607, + "2021": 0.607 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr101", + "Region": "Andhra Pradesh", + "1990": 0.29, + "1991": 0.294, + "1992": 0.297, + "1993": 0.299, + "1994": 0.3, + "1995": 0.302, + "1996": 0.306, + "1997": 0.309, + "1998": 0.313, + "1999": 0.316, + "2000": 0.325, + "2001": 0.331, + "2002": 0.342, + "2003": 0.363, + "2004": 0.376, + "2005": 0.389, + "2006": 0.403, + "2007": 0.414, + "2008": 0.427, + "2009": 0.429, + "2010": 0.441, + "2011": 0.464, + "2012": 0.478, + "2013": 0.488, + "2014": 0.506, + "2015": 0.518, + "2016": 0.535, + "2017": 0.528, + "2018": 0.516, + "2019": 0.505, + "2020": 0.517, + "2021": 0.517 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr125", + "Region": "Arunachal Pradesh", + "1990": 0.304, + "1991": 0.308, + "1992": 0.311, + "1993": 0.319, + "1994": 0.327, + "1995": 0.335, + "1996": 0.344, + "1997": 0.354, + "1998": 0.363, + "1999": 0.372, + "2000": 0.374, + "2001": 0.372, + "2002": 0.376, + "2003": 0.391, + "2004": 0.396, + "2005": 0.401, + "2006": 0.406, + "2007": 0.45, + "2008": 0.494, + "2009": 0.525, + "2010": 0.567, + "2011": 0.623, + "2012": 0.667, + "2013": 0.636, + "2014": 0.613, + "2015": 0.578, + "2016": 0.547, + "2017": 0.557, + "2018": 0.56, + "2019": 0.563, + "2020": 0.575, + "2021": 0.575 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr102", + "Region": "Assam", + "1990": 0.323, + "1991": 0.328, + "1992": 0.332, + "1993": 0.336, + "1994": 0.339, + "1995": 0.343, + "1996": 0.348, + "1997": 0.354, + "1998": 0.36, + "1999": 0.366, + "2000": 0.377, + "2001": 0.385, + "2002": 0.397, + "2003": 0.422, + "2004": 0.437, + "2005": 0.452, + "2006": 0.468, + "2007": 0.471, + "2008": 0.476, + "2009": 0.471, + "2010": 0.478, + "2011": 0.496, + "2012": 0.506, + "2013": 0.51, + "2014": 0.523, + "2015": 0.53, + "2016": 0.54, + "2017": 0.536, + "2018": 0.528, + "2019": 0.519, + "2020": 0.53, + "2021": 0.53 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr103", + "Region": "Bihar", + "1990": 0.249, + "1991": 0.253, + "1992": 0.257, + "1993": 0.262, + "1994": 0.266, + "1995": 0.271, + "1996": 0.276, + "1997": 0.282, + "1998": 0.288, + "1999": 0.293, + "2000": 0.298, + "2001": 0.3, + "2002": 0.306, + "2003": 0.321, + "2004": 0.329, + "2005": 0.336, + "2006": 0.344, + "2007": 0.36, + "2008": 0.376, + "2009": 0.383, + "2010": 0.398, + "2011": 0.423, + "2012": 0.438, + "2013": 0.445, + "2014": 0.459, + "2015": 0.467, + "2016": 0.481, + "2017": 0.48, + "2018": 0.475, + "2019": 0.469, + "2020": 0.48, + "2021": 0.48 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr131", + "Region": "Chandigarth", + "1990": 0.572, + "1991": 0.579, + "1992": 0.586, + "1993": 0.566, + "1994": 0.548, + "1995": 0.532, + "1996": 0.52, + "1997": 0.51, + "1998": 0.5, + "1999": 0.492, + "2000": 0.496, + "2001": 0.496, + "2002": 0.501, + "2003": 0.522, + "2004": 0.531, + "2005": 0.539, + "2006": 0.548, + "2007": 0.534, + "2008": 0.524, + "2009": 0.503, + "2010": 0.496, + "2011": 0.501, + "2012": 0.497, + "2013": 0.547, + "2014": 0.607, + "2015": 0.662, + "2016": 0.722, + "2017": 0.715, + "2018": 0.703, + "2019": 0.691, + "2020": 0.704, + "2021": 0.704 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr129", + "Region": "Chhattisgarh", + "1990": 0.559, + "1991": 0.565, + "1992": 0.571, + "1993": 0.55, + "1994": 0.531, + "1995": 0.514, + "1996": 0.5, + "1997": 0.489, + "1998": 0.478, + "1999": 0.469, + "2000": 0.472, + "2001": 0.471, + "2002": 0.477, + "2003": 0.498, + "2004": 0.507, + "2005": 0.515, + "2006": 0.524, + "2007": 0.51, + "2008": 0.499, + "2009": 0.477, + "2010": 0.47, + "2011": 0.473, + "2012": 0.468, + "2013": 0.479, + "2014": 0.499, + "2015": 0.512, + "2016": 0.531, + "2017": 0.529, + "2018": 0.523, + "2019": 0.517, + "2020": 0.528, + "2021": 0.528 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr132", + "Region": "Dadra and Nagar Haveli", + "1990": 0.698, + "1991": 0.706, + "1992": 0.713, + "1993": 0.699, + "1994": 0.679, + "1995": 0.661, + "1996": 0.648, + "1997": 0.637, + "1998": 0.628, + "1999": 0.619, + "2000": 0.625, + "2001": 0.625, + "2002": 0.632, + "2003": 0.656, + "2004": 0.666, + "2005": 0.676, + "2006": 0.687, + "2007": 0.671, + "2008": 0.659, + "2009": 0.636, + "2010": 0.627, + "2011": 0.634, + "2012": 0.631, + "2013": 0.613, + "2014": 0.603, + "2015": 0.584, + "2016": 0.567, + "2017": 0.545, + "2018": 0.52, + "2019": 0.497, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr134", + "Region": "Daman and Diu", + "1990": 0.58, + "1991": 0.589, + "1992": 0.597, + "1993": 0.579, + "1994": 0.564, + "1995": 0.55, + "1996": 0.541, + "1997": 0.534, + "1998": 0.527, + "1999": 0.521, + "2000": 0.527, + "2001": 0.527, + "2002": 0.533, + "2003": 0.552, + "2004": 0.56, + "2005": 0.568, + "2006": 0.577, + "2007": 0.565, + "2008": 0.556, + "2009": 0.537, + "2010": 0.531, + "2011": 0.537, + "2012": 0.536, + "2013": 0.55, + "2014": 0.572, + "2015": 0.588, + "2016": 0.608, + "2017": 0.588, + "2018": 0.565, + "2019": 0.544, + "2020": 0.554, + "2021": 0.554 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr104", + "Region": "Goa", + "1990": 0.447, + "1991": 0.454, + "1992": 0.46, + "1993": 0.46, + "1994": 0.461, + "1995": 0.462, + "1996": 0.467, + "1997": 0.472, + "1998": 0.477, + "1999": 0.483, + "2000": 0.492, + "2001": 0.497, + "2002": 0.507, + "2003": 0.531, + "2004": 0.543, + "2005": 0.556, + "2006": 0.57, + "2007": 0.591, + "2008": 0.613, + "2009": 0.622, + "2010": 0.645, + "2011": 0.683, + "2012": 0.71, + "2013": 0.699, + "2014": 0.698, + "2015": 0.686, + "2016": 0.678, + "2017": 0.683, + "2018": 0.683, + "2019": 0.683, + "2020": 0.696, + "2021": 0.696 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr105", + "Region": "Gujarat", + "1990": 0.351, + "1991": 0.356, + "1992": 0.36, + "1993": 0.359, + "1994": 0.359, + "1995": 0.359, + "1996": 0.362, + "1997": 0.365, + "1998": 0.369, + "1999": 0.373, + "2000": 0.381, + "2001": 0.386, + "2002": 0.395, + "2003": 0.415, + "2004": 0.426, + "2005": 0.438, + "2006": 0.45, + "2007": 0.455, + "2008": 0.461, + "2009": 0.458, + "2010": 0.466, + "2011": 0.484, + "2012": 0.495, + "2013": 0.506, + "2014": 0.525, + "2015": 0.538, + "2016": 0.555, + "2017": 0.541, + "2018": 0.525, + "2019": 0.509, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr106", + "Region": "Haryana", + "1990": 0.361, + "1991": 0.365, + "1992": 0.37, + "1993": 0.373, + "1994": 0.376, + "1995": 0.379, + "1996": 0.385, + "1997": 0.391, + "1998": 0.397, + "1999": 0.404, + "2000": 0.409, + "2001": 0.41, + "2002": 0.417, + "2003": 0.435, + "2004": 0.444, + "2005": 0.452, + "2006": 0.461, + "2007": 0.474, + "2008": 0.489, + "2009": 0.492, + "2010": 0.506, + "2011": 0.533, + "2012": 0.55, + "2013": 0.56, + "2014": 0.579, + "2015": 0.591, + "2016": 0.607, + "2017": 0.609, + "2018": 0.605, + "2019": 0.601, + "2020": 0.613, + "2021": 0.613 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr107", + "Region": "Himachal Pradesh", + "1990": 0.39, + "1991": 0.395, + "1992": 0.399, + "1993": 0.406, + "1994": 0.413, + "1995": 0.42, + "1996": 0.429, + "1997": 0.439, + "1998": 0.449, + "1999": 0.459, + "2000": 0.469, + "2001": 0.476, + "2002": 0.488, + "2003": 0.516, + "2004": 0.531, + "2005": 0.546, + "2006": 0.562, + "2007": 0.564, + "2008": 0.568, + "2009": 0.559, + "2010": 0.564, + "2011": 0.583, + "2012": 0.591, + "2013": 0.602, + "2014": 0.622, + "2015": 0.634, + "2016": 0.65, + "2017": 0.649, + "2018": 0.643, + "2019": 0.636, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr108", + "Region": "Jammu and Kashmir", + "1990": 0.387, + "1991": 0.392, + "1992": 0.397, + "1993": 0.391, + "1994": 0.385, + "1995": 0.38, + "1996": 0.377, + "1997": 0.374, + "1998": 0.372, + "1999": 0.37, + "2000": 0.38, + "2001": 0.388, + "2002": 0.4, + "2003": 0.424, + "2004": 0.439, + "2005": 0.453, + "2006": 0.469, + "2007": 0.486, + "2008": 0.504, + "2009": 0.511, + "2010": 0.529, + "2011": 0.56, + "2012": 0.58, + "2013": 0.578, + "2014": 0.584, + "2015": 0.583, + "2016": 0.585, + "2017": 0.606, + "2018": 0.619, + "2019": 0.63, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr128", + "Region": "Jharkhand", + "1990": 0.563, + "1991": 0.569, + "1992": 0.575, + "1993": 0.553, + "1994": 0.534, + "1995": 0.517, + "1996": 0.504, + "1997": 0.492, + "1998": 0.482, + "1999": 0.472, + "2000": 0.475, + "2001": 0.475, + "2002": 0.48, + "2003": 0.502, + "2004": 0.51, + "2005": 0.519, + "2006": 0.528, + "2007": 0.513, + "2008": 0.502, + "2009": 0.481, + "2010": 0.473, + "2011": 0.477, + "2012": 0.472, + "2013": 0.478, + "2014": 0.492, + "2015": 0.499, + "2016": 0.512, + "2017": 0.511, + "2018": 0.506, + "2019": 0.501, + "2020": 0.512, + "2021": 0.512 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr109", + "Region": "Karnataka", + "1990": 0.324, + "1991": 0.328, + "1992": 0.333, + "1993": 0.337, + "1994": 0.341, + "1995": 0.345, + "1996": 0.351, + "1997": 0.358, + "1998": 0.365, + "1999": 0.372, + "2000": 0.38, + "2001": 0.386, + "2002": 0.395, + "2003": 0.417, + "2004": 0.429, + "2005": 0.441, + "2006": 0.454, + "2007": 0.459, + "2008": 0.465, + "2009": 0.461, + "2010": 0.468, + "2011": 0.486, + "2012": 0.495, + "2013": 0.512, + "2014": 0.538, + "2015": 0.558, + "2016": 0.583, + "2017": 0.577, + "2018": 0.566, + "2019": 0.556, + "2020": 0.567, + "2021": 0.567 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr110", + "Region": "Kerala", + "1990": 0.459, + "1991": 0.466, + "1992": 0.472, + "1993": 0.473, + "1994": 0.475, + "1995": 0.477, + "1996": 0.483, + "1997": 0.489, + "1998": 0.495, + "1999": 0.502, + "2000": 0.513, + "2001": 0.519, + "2002": 0.531, + "2003": 0.558, + "2004": 0.572, + "2005": 0.587, + "2006": 0.603, + "2007": 0.61, + "2008": 0.619, + "2009": 0.616, + "2010": 0.626, + "2011": 0.652, + "2012": 0.667, + "2013": 0.676, + "2014": 0.696, + "2015": 0.707, + "2016": 0.722, + "2017": 0.718, + "2018": 0.709, + "2019": 0.699, + "2020": 0.713, + "2021": 0.713 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr135", + "Region": "Lakshadweep", + "1990": 0.657, + "1991": 0.666, + "1992": 0.675, + "1993": 0.654, + "1994": 0.636, + "1995": 0.62, + "1996": 0.609, + "1997": 0.6, + "1998": 0.592, + "1999": 0.584, + "2000": 0.59, + "2001": 0.59, + "2002": 0.597, + "2003": 0.619, + "2004": 0.628, + "2005": 0.637, + "2006": 0.647, + "2007": 0.633, + "2008": 0.623, + "2009": 0.601, + "2010": 0.594, + "2011": 0.601, + "2012": 0.598, + "2013": 0.614, + "2014": 0.639, + "2015": 0.658, + "2016": 0.681, + "2017": 0.669, + "2018": 0.652, + "2019": 0.637, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr111", + "Region": "Madhya Pradesh", + "1990": 0.283, + "1991": 0.286, + "1992": 0.29, + "1993": 0.294, + "1994": 0.298, + "1995": 0.303, + "1996": 0.309, + "1997": 0.315, + "1998": 0.321, + "1999": 0.327, + "2000": 0.334, + "2001": 0.338, + "2002": 0.346, + "2003": 0.366, + "2004": 0.376, + "2005": 0.387, + "2006": 0.399, + "2007": 0.406, + "2008": 0.415, + "2009": 0.414, + "2010": 0.424, + "2011": 0.443, + "2012": 0.454, + "2013": 0.463, + "2014": 0.481, + "2015": 0.492, + "2016": 0.508, + "2017": 0.508, + "2018": 0.503, + "2019": 0.498, + "2020": 0.509, + "2021": 0.509 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr112", + "Region": "Maharashtra", + "1990": 0.377, + "1991": 0.382, + "1992": 0.387, + "1993": 0.39, + "1994": 0.393, + "1995": 0.396, + "1996": 0.402, + "1997": 0.408, + "1998": 0.415, + "1999": 0.421, + "2000": 0.429, + "2001": 0.434, + "2002": 0.443, + "2003": 0.465, + "2004": 0.477, + "2005": 0.488, + "2006": 0.501, + "2007": 0.513, + "2008": 0.526, + "2009": 0.527, + "2010": 0.54, + "2011": 0.567, + "2012": 0.583, + "2013": 0.586, + "2014": 0.598, + "2015": 0.602, + "2016": 0.609, + "2017": 0.612, + "2018": 0.61, + "2019": 0.607, + "2020": 0.62, + "2021": 0.62 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr113", + "Region": "Manipur", + "1990": 0.431, + "1991": 0.437, + "1992": 0.444, + "1993": 0.445, + "1994": 0.446, + "1995": 0.448, + "1996": 0.454, + "1997": 0.46, + "1998": 0.466, + "1999": 0.473, + "2000": 0.478, + "2001": 0.479, + "2002": 0.486, + "2003": 0.505, + "2004": 0.513, + "2005": 0.521, + "2006": 0.53, + "2007": 0.554, + "2008": 0.579, + "2009": 0.593, + "2010": 0.619, + "2011": 0.66, + "2012": 0.692, + "2013": 0.683, + "2014": 0.681, + "2015": 0.672, + "2016": 0.665, + "2017": 0.662, + "2018": 0.653, + "2019": 0.644, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr114", + "Region": "Meghalaya", + "1990": 0.34, + "1991": 0.344, + "1992": 0.349, + "1993": 0.352, + "1994": 0.354, + "1995": 0.357, + "1996": 0.362, + "1997": 0.367, + "1998": 0.371, + "1999": 0.376, + "2000": 0.378, + "2001": 0.377, + "2002": 0.38, + "2003": 0.395, + "2004": 0.4, + "2005": 0.405, + "2006": 0.41, + "2007": 0.436, + "2008": 0.462, + "2009": 0.478, + "2010": 0.504, + "2011": 0.542, + "2012": 0.571, + "2013": 0.567, + "2014": 0.572, + "2015": 0.569, + "2016": 0.571, + "2017": 0.571, + "2018": 0.566, + "2019": 0.56, + "2020": 0.572, + "2021": 0.572 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr115", + "Region": "Mizoram", + "1990": 0.436, + "1991": 0.442, + "1992": 0.448, + "1993": 0.446, + "1994": 0.445, + "1995": 0.444, + "1996": 0.446, + "1997": 0.449, + "1998": 0.451, + "1999": 0.454, + "2000": 0.462, + "2001": 0.466, + "2002": 0.475, + "2003": 0.496, + "2004": 0.507, + "2005": 0.518, + "2006": 0.53, + "2007": 0.541, + "2008": 0.554, + "2009": 0.556, + "2010": 0.57, + "2011": 0.598, + "2012": 0.616, + "2013": 0.617, + "2014": 0.625, + "2015": 0.627, + "2016": 0.632, + "2017": 0.632, + "2018": 0.628, + "2019": 0.624, + "2020": 0.636, + "2021": 0.636 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr116", + "Region": "Nagaland", + "1990": 0.41, + "1991": 0.415, + "1992": 0.421, + "1993": 0.416, + "1994": 0.413, + "1995": 0.409, + "1996": 0.409, + "1997": 0.409, + "1998": 0.409, + "1999": 0.409, + "2000": 0.411, + "2001": 0.41, + "2002": 0.413, + "2003": 0.428, + "2004": 0.434, + "2005": 0.438, + "2006": 0.444, + "2007": 0.475, + "2008": 0.506, + "2009": 0.528, + "2010": 0.56, + "2011": 0.606, + "2012": 0.643, + "2013": 0.629, + "2014": 0.622, + "2015": 0.607, + "2016": 0.596, + "2017": 0.602, + "2018": 0.602, + "2019": 0.602, + "2020": 0.614, + "2021": 0.614 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr124", + "Region": "New Delhi", + "1990": 0.468, + "1991": 0.476, + "1992": 0.484, + "1993": 0.488, + "1994": 0.492, + "1995": 0.496, + "1996": 0.505, + "1997": 0.514, + "1998": 0.523, + "1999": 0.533, + "2000": 0.54, + "2001": 0.542, + "2002": 0.549, + "2003": 0.569, + "2004": 0.579, + "2005": 0.588, + "2006": 0.598, + "2007": 0.604, + "2008": 0.611, + "2009": 0.606, + "2010": 0.613, + "2011": 0.635, + "2012": 0.644, + "2013": 0.648, + "2014": 0.661, + "2015": 0.665, + "2016": 0.672, + "2017": 0.676, + "2018": 0.674, + "2019": 0.671, + "2020": 0.684, + "2021": 0.684 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr117", + "Region": "Orissa", + "1990": 0.302, + "1991": 0.305, + "1992": 0.309, + "1993": 0.312, + "1994": 0.316, + "1995": 0.319, + "1996": 0.325, + "1997": 0.33, + "1998": 0.336, + "1999": 0.342, + "2000": 0.345, + "2001": 0.346, + "2002": 0.351, + "2003": 0.367, + "2004": 0.374, + "2005": 0.38, + "2006": 0.388, + "2007": 0.397, + "2008": 0.408, + "2009": 0.41, + "2010": 0.421, + "2011": 0.442, + "2012": 0.455, + "2013": 0.466, + "2014": 0.486, + "2015": 0.499, + "2016": 0.517, + "2017": 0.512, + "2018": 0.503, + "2019": 0.494, + "2020": 0.505, + "2021": 0.505 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr133", + "Region": "Puducherry", + "1990": 0.72, + "1991": 0.729, + "1992": 0.737, + "1993": 0.74, + "1994": 0.722, + "1995": 0.703, + "1996": 0.691, + "1997": 0.68, + "1998": 0.671, + "1999": 0.662, + "2000": 0.669, + "2001": 0.669, + "2002": 0.676, + "2003": 0.702, + "2004": 0.712, + "2005": 0.722, + "2006": 0.734, + "2007": 0.718, + "2008": 0.705, + "2009": 0.681, + "2010": 0.672, + "2011": 0.68, + "2012": 0.677, + "2013": 0.672, + "2014": 0.675, + "2015": 0.67, + "2016": 0.668, + "2017": 0.666, + "2018": 0.659, + "2019": 0.652, + "2020": 0.664, + "2021": 0.664 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr118", + "Region": "Punjab", + "1990": 0.36, + "1991": 0.365, + "1992": 0.369, + "1993": 0.376, + "1994": 0.384, + "1995": 0.391, + "1996": 0.4, + "1997": 0.41, + "1998": 0.421, + "1999": 0.431, + "2000": 0.434, + "2001": 0.434, + "2002": 0.438, + "2003": 0.456, + "2004": 0.462, + "2005": 0.468, + "2006": 0.476, + "2007": 0.49, + "2008": 0.505, + "2009": 0.509, + "2010": 0.525, + "2011": 0.553, + "2012": 0.571, + "2013": 0.579, + "2014": 0.597, + "2015": 0.607, + "2016": 0.62, + "2017": 0.612, + "2018": 0.599, + "2019": 0.587, + "2020": 0.598, + "2021": 0.598 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr119", + "Region": "Rajasthan", + "1990": 0.257, + "1991": 0.26, + "1992": 0.263, + "1993": 0.271, + "1994": 0.278, + "1995": 0.285, + "1996": 0.293, + "1997": 0.302, + "1998": 0.31, + "1999": 0.318, + "2000": 0.323, + "2001": 0.326, + "2002": 0.333, + "2003": 0.35, + "2004": 0.359, + "2005": 0.367, + "2006": 0.377, + "2007": 0.384, + "2008": 0.393, + "2009": 0.392, + "2010": 0.401, + "2011": 0.42, + "2012": 0.43, + "2013": 0.444, + "2014": 0.467, + "2015": 0.483, + "2016": 0.505, + "2017": 0.518, + "2018": 0.525, + "2019": 0.531, + "2020": 0.543, + "2021": 0.543 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr120", + "Region": "Sikkim", + "1990": 0.472, + "1991": 0.478, + "1992": 0.483, + "1993": 0.465, + "1994": 0.45, + "1995": 0.436, + "1996": 0.425, + "1997": 0.416, + "1998": 0.408, + "1999": 0.4, + "2000": 0.403, + "2001": 0.403, + "2002": 0.409, + "2003": 0.426, + "2004": 0.433, + "2005": 0.44, + "2006": 0.447, + "2007": 0.466, + "2008": 0.485, + "2009": 0.493, + "2010": 0.512, + "2011": 0.543, + "2012": 0.565, + "2013": 0.573, + "2014": 0.59, + "2015": 0.6, + "2016": 0.615, + "2017": 0.625, + "2018": 0.629, + "2019": 0.631, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr121", + "Region": "Tamil Nadu", + "1990": 0.38, + "1991": 0.385, + "1992": 0.39, + "1993": 0.39, + "1994": 0.39, + "1995": 0.391, + "1996": 0.394, + "1997": 0.398, + "1998": 0.402, + "1999": 0.406, + "2000": 0.417, + "2001": 0.425, + "2002": 0.438, + "2003": 0.465, + "2004": 0.481, + "2005": 0.497, + "2006": 0.515, + "2007": 0.521, + "2008": 0.528, + "2009": 0.525, + "2010": 0.534, + "2011": 0.555, + "2012": 0.567, + "2013": 0.577, + "2014": 0.597, + "2015": 0.609, + "2016": 0.625, + "2017": 0.619, + "2018": 0.607, + "2019": 0.596, + "2020": 0.608, + "2021": 0.608 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr130", + "Region": "Telangana", + "1990": 0.564, + "1991": 0.57, + "1992": 0.577, + "1993": 0.557, + "1994": 0.539, + "1995": 0.524, + "1996": 0.512, + "1997": 0.502, + "1998": 0.493, + "1999": 0.485, + "2000": 0.488, + "2001": 0.488, + "2002": 0.494, + "2003": 0.514, + "2004": 0.522, + "2005": 0.53, + "2006": 0.539, + "2007": 0.526, + "2008": 0.516, + "2009": 0.496, + "2010": 0.488, + "2011": 0.493, + "2012": 0.489, + "2013": 0.502, + "2014": 0.525, + "2015": 0.541, + "2016": 0.563, + "2017": 0.555, + "2018": 0.543, + "2019": 0.53, + "2020": 0.542, + "2021": 0.542 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr126", + "Region": "Tripura", + "1990": 0.37, + "1991": 0.375, + "1992": 0.381, + "1993": 0.386, + "1994": 0.392, + "1995": 0.397, + "1996": 0.405, + "1997": 0.413, + "1998": 0.422, + "1999": 0.43, + "2000": 0.434, + "2001": 0.434, + "2002": 0.44, + "2003": 0.458, + "2004": 0.466, + "2005": 0.474, + "2006": 0.482, + "2007": 0.496, + "2008": 0.511, + "2009": 0.515, + "2010": 0.53, + "2011": 0.559, + "2012": 0.578, + "2013": 0.577, + "2014": 0.585, + "2015": 0.586, + "2016": 0.59, + "2017": 0.575, + "2018": 0.556, + "2019": 0.537, + "2020": 0.549, + "2021": 0.549 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr123", + "Region": "Uttar Pradesh", + "1990": 0.285, + "1991": 0.288, + "1992": 0.292, + "1993": 0.299, + "1994": 0.305, + "1995": 0.31, + "1996": 0.318, + "1997": 0.325, + "1998": 0.333, + "1999": 0.34, + "2000": 0.346, + "2001": 0.349, + "2002": 0.357, + "2003": 0.375, + "2004": 0.384, + "2005": 0.394, + "2006": 0.404, + "2007": 0.414, + "2008": 0.424, + "2009": 0.424, + "2010": 0.435, + "2011": 0.456, + "2012": 0.468, + "2013": 0.476, + "2014": 0.492, + "2015": 0.501, + "2016": 0.514, + "2017": 0.517, + "2018": 0.515, + "2019": 0.514, + "2020": 0.524, + "2021": 0.524 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr127", + "Region": "Uttaranchal", + "1990": 0.634, + "1991": 0.639, + "1992": 0.644, + "1993": 0.635, + "1994": 0.613, + "1995": 0.594, + "1996": 0.579, + "1997": 0.566, + "1998": 0.555, + "1999": 0.544, + "2000": 0.547, + "2001": 0.547, + "2002": 0.553, + "2003": 0.578, + "2004": 0.587, + "2005": 0.597, + "2006": 0.607, + "2007": 0.591, + "2008": 0.579, + "2009": 0.554, + "2010": 0.546, + "2011": 0.55, + "2012": 0.545, + "2013": 0.556, + "2014": 0.577, + "2015": 0.591, + "2016": 0.608, + "2017": 0.608, + "2018": 0.603, + "2019": 0.597, + "2020": 0.609, + "2021": 0.609 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr122", + "Region": "West Bengal", + "1990": 0.33, + "1991": 0.335, + "1992": 0.34, + "1993": 0.342, + "1994": 0.345, + "1995": 0.347, + "1996": 0.352, + "1997": 0.356, + "1998": 0.361, + "1999": 0.366, + "2000": 0.371, + "2001": 0.373, + "2002": 0.38, + "2003": 0.398, + "2004": 0.406, + "2005": 0.415, + "2006": 0.424, + "2007": 0.433, + "2008": 0.443, + "2009": 0.443, + "2010": 0.453, + "2011": 0.474, + "2012": 0.486, + "2013": 0.496, + "2014": 0.515, + "2015": 0.528, + "2016": 0.545, + "2017": 0.541, + "2018": 0.532, + "2019": 0.523, + "2020": 0.534, + "2021": 0.534 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "National", + "GDLCODE": "IDNt", + "Region": "Total", + "1990": 0.387, + "1991": 0.391, + "1992": 0.397, + "1993": 0.405, + "1994": 0.418, + "1995": 0.432, + "1996": 0.446, + "1997": 0.463, + "1998": 0.474, + "1999": 0.486, + "2000": 0.492, + "2001": 0.503, + "2002": 0.516, + "2003": 0.531, + "2004": 0.542, + "2005": 0.548, + "2006": 0.559, + "2007": 0.558, + "2008": 0.56, + "2009": 0.581, + "2010": 0.59, + "2011": 0.6, + "2012": 0.612, + "2013": 0.616, + "2014": 0.618, + "2015": 0.634, + "2016": 0.637, + "2017": 0.645, + "2018": 0.65, + "2019": 0.661, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr116", + "Region": "Bali", + "1990": 0.395, + "1991": 0.399, + "1992": 0.405, + "1993": 0.412, + "1994": 0.426, + "1995": 0.44, + "1996": 0.454, + "1997": 0.472, + "1998": 0.488, + "1999": 0.507, + "2000": 0.519, + "2001": 0.536, + "2002": 0.555, + "2003": 0.577, + "2004": 0.583, + "2005": 0.583, + "2006": 0.588, + "2007": 0.58, + "2008": 0.582, + "2009": 0.604, + "2010": 0.613, + "2011": 0.624, + "2012": 0.636, + "2013": 0.64, + "2014": 0.643, + "2015": 0.66, + "2016": 0.663, + "2017": 0.671, + "2018": 0.677, + "2019": 0.688, + "2020": 0.694, + "2021": 0.694 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr109", + "Region": "Bangka Belitung", + "1990": 0.392, + "1991": 0.397, + "1992": 0.404, + "1993": 0.412, + "1994": 0.426, + "1995": 0.441, + "1996": 0.455, + "1997": 0.473, + "1998": 0.478, + "1999": 0.485, + "2000": 0.486, + "2001": 0.491, + "2002": 0.497, + "2003": 0.506, + "2004": 0.522, + "2005": 0.532, + "2006": 0.547, + "2007": 0.551, + "2008": 0.548, + "2009": 0.565, + "2010": 0.569, + "2011": 0.576, + "2012": 0.583, + "2013": 0.588, + "2014": 0.592, + "2015": 0.609, + "2016": 0.614, + "2017": 0.623, + "2018": 0.628, + "2019": 0.638, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr115", + "Region": "Banten", + "1990": 0.405, + "1991": 0.41, + "1992": 0.418, + "1993": 0.428, + "1994": 0.444, + "1995": 0.459, + "1996": 0.474, + "1997": 0.494, + "1998": 0.5, + "1999": 0.507, + "2000": 0.508, + "2001": 0.513, + "2002": 0.52, + "2003": 0.529, + "2004": 0.537, + "2005": 0.54, + "2006": 0.547, + "2007": 0.541, + "2008": 0.545, + "2009": 0.568, + "2010": 0.578, + "2011": 0.591, + "2012": 0.604, + "2013": 0.609, + "2014": 0.611, + "2015": 0.628, + "2016": 0.631, + "2017": 0.64, + "2018": 0.645, + "2019": 0.655, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr107", + "Region": "Bengkulu", + "1990": 0.403, + "1991": 0.407, + "1992": 0.414, + "1993": 0.422, + "1994": 0.436, + "1995": 0.451, + "1996": 0.465, + "1997": 0.483, + "1998": 0.495, + "1999": 0.509, + "2000": 0.516, + "2001": 0.529, + "2002": 0.543, + "2003": 0.559, + "2004": 0.572, + "2005": 0.579, + "2006": 0.59, + "2007": 0.59, + "2008": 0.589, + "2009": 0.609, + "2010": 0.616, + "2011": 0.625, + "2012": 0.635, + "2013": 0.637, + "2014": 0.638, + "2015": 0.654, + "2016": 0.655, + "2017": 0.662, + "2018": 0.667, + "2019": 0.678, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr112", + "Region": "Central Java", + "1990": 0.386, + "1991": 0.388, + "1992": 0.393, + "1993": 0.399, + "1994": 0.412, + "1995": 0.425, + "1996": 0.437, + "1997": 0.454, + "1998": 0.461, + "1999": 0.469, + "2000": 0.472, + "2001": 0.479, + "2002": 0.488, + "2003": 0.499, + "2004": 0.51, + "2005": 0.515, + "2006": 0.525, + "2007": 0.527, + "2008": 0.53, + "2009": 0.551, + "2010": 0.561, + "2011": 0.573, + "2012": 0.585, + "2013": 0.59, + "2014": 0.593, + "2015": 0.611, + "2016": 0.614, + "2017": 0.623, + "2018": 0.628, + "2019": 0.638, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr121", + "Region": "Central Kalimantan", + "1990": 0.358, + "1991": 0.363, + "1992": 0.371, + "1993": 0.38, + "1994": 0.394, + "1995": 0.408, + "1996": 0.422, + "1997": 0.439, + "1998": 0.456, + "1999": 0.473, + "2000": 0.486, + "2001": 0.502, + "2002": 0.52, + "2003": 0.541, + "2004": 0.556, + "2005": 0.565, + "2006": 0.579, + "2007": 0.578, + "2008": 0.573, + "2009": 0.588, + "2010": 0.591, + "2011": 0.595, + "2012": 0.6, + "2013": 0.602, + "2014": 0.603, + "2015": 0.617, + "2016": 0.618, + "2017": 0.624, + "2018": 0.629, + "2019": 0.64, + "2020": 0.646, + "2021": 0.646 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr125", + "Region": "Central Sulawesi", + "1990": 0.386, + "1991": 0.392, + "1992": 0.401, + "1993": 0.41, + "1994": 0.425, + "1995": 0.441, + "1996": 0.456, + "1997": 0.474, + "1998": 0.485, + "1999": 0.498, + "2000": 0.504, + "2001": 0.515, + "2002": 0.528, + "2003": 0.543, + "2004": 0.555, + "2005": 0.561, + "2006": 0.572, + "2007": 0.57, + "2008": 0.568, + "2009": 0.587, + "2010": 0.593, + "2011": 0.6, + "2012": 0.609, + "2013": 0.615, + "2014": 0.62, + "2015": 0.639, + "2016": 0.644, + "2017": 0.654, + "2018": 0.66, + "2019": 0.671, + "2020": 0.677, + "2021": 0.677 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr101", + "Region": "DI Aceh", + "1990": 0.382, + "1991": 0.387, + "1992": 0.395, + "1993": 0.404, + "1994": 0.418, + "1995": 0.433, + "1996": 0.447, + "1997": 0.466, + "1998": 0.481, + "1999": 0.498, + "2000": 0.51, + "2001": 0.525, + "2002": 0.543, + "2003": 0.563, + "2004": 0.58, + "2005": 0.59, + "2006": 0.606, + "2007": 0.611, + "2008": 0.612, + "2009": 0.634, + "2010": 0.643, + "2011": 0.653, + "2012": 0.665, + "2013": 0.666, + "2014": 0.665, + "2015": 0.68, + "2016": 0.679, + "2017": 0.684, + "2018": 0.69, + "2019": 0.701, + "2020": 0.709, + "2021": 0.709 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr113", + "Region": "DI Yogyakarta", + "1990": 0.481, + "1991": 0.484, + "1992": 0.49, + "1993": 0.498, + "1994": 0.514, + "1995": 0.53, + "1996": 0.546, + "1997": 0.567, + "1998": 0.577, + "1999": 0.588, + "2000": 0.592, + "2001": 0.603, + "2002": 0.615, + "2003": 0.63, + "2004": 0.642, + "2005": 0.647, + "2006": 0.658, + "2007": 0.657, + "2008": 0.657, + "2009": 0.68, + "2010": 0.689, + "2011": 0.7, + "2012": 0.712, + "2013": 0.715, + "2014": 0.716, + "2015": 0.734, + "2016": 0.736, + "2017": 0.744, + "2018": 0.75, + "2019": 0.762, + "2020": 0.769, + "2021": 0.769 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr110", + "Region": "DKI Jakarta", + "1990": 0.522, + "1991": 0.53, + "1992": 0.542, + "1993": 0.555, + "1994": 0.576, + "1995": 0.596, + "1996": 0.617, + "1997": 0.642, + "1998": 0.648, + "1999": 0.655, + "2000": 0.655, + "2001": 0.66, + "2002": 0.667, + "2003": 0.676, + "2004": 0.685, + "2005": 0.687, + "2006": 0.694, + "2007": 0.679, + "2008": 0.677, + "2009": 0.697, + "2010": 0.703, + "2011": 0.71, + "2012": 0.719, + "2013": 0.717, + "2014": 0.714, + "2015": 0.725, + "2016": 0.722, + "2017": 0.725, + "2018": 0.731, + "2019": 0.743, + "2020": 0.752, + "2021": 0.752 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr114", + "Region": "East Java", + "1990": 0.37, + "1991": 0.373, + "1992": 0.377, + "1993": 0.383, + "1994": 0.396, + "1995": 0.408, + "1996": 0.42, + "1997": 0.436, + "1998": 0.449, + "1999": 0.463, + "2000": 0.472, + "2001": 0.485, + "2002": 0.5, + "2003": 0.518, + "2004": 0.524, + "2005": 0.524, + "2006": 0.529, + "2007": 0.527, + "2008": 0.53, + "2009": 0.552, + "2010": 0.563, + "2011": 0.575, + "2012": 0.589, + "2013": 0.595, + "2014": 0.599, + "2015": 0.617, + "2016": 0.622, + "2017": 0.632, + "2018": 0.637, + "2019": 0.647, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr123", + "Region": "East Kalimantan", + "1990": 0.439, + "1991": 0.446, + "1992": 0.455, + "1993": 0.465, + "1994": 0.482, + "1995": 0.499, + "1996": 0.516, + "1997": 0.537, + "1998": 0.546, + "1999": 0.557, + "2000": 0.562, + "2001": 0.571, + "2002": 0.582, + "2003": 0.596, + "2004": 0.606, + "2005": 0.611, + "2006": 0.62, + "2007": 0.614, + "2008": 0.613, + "2009": 0.632, + "2010": 0.639, + "2011": 0.647, + "2012": 0.656, + "2013": 0.657, + "2014": 0.655, + "2015": 0.669, + "2016": 0.668, + "2017": 0.673, + "2018": 0.678, + "2019": 0.689, + "2020": 0.696, + "2021": 0.696 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr118", + "Region": "East Nusa Tenggara", + "1990": 0.362, + "1991": 0.366, + "1992": 0.372, + "1993": 0.38, + "1994": 0.393, + "1995": 0.406, + "1996": 0.419, + "1997": 0.436, + "1998": 0.443, + "1999": 0.451, + "2000": 0.454, + "2001": 0.461, + "2002": 0.469, + "2003": 0.48, + "2004": 0.5, + "2005": 0.514, + "2006": 0.534, + "2007": 0.544, + "2008": 0.546, + "2009": 0.567, + "2010": 0.576, + "2011": 0.587, + "2012": 0.598, + "2013": 0.599, + "2014": 0.598, + "2015": 0.611, + "2016": 0.611, + "2017": 0.616, + "2018": 0.62, + "2019": 0.63, + "2020": 0.636, + "2021": 0.636 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr119", + "Region": "East Timor", + "1990": 0.324, + "1991": 0.325, + "1992": 0.328, + "1993": 0.333, + "1994": 0.343, + "1995": 0.353, + "1996": 0.363, + "1997": 0.377, + "1998": 0.38, + "1999": 0.385, + "2000": 0.384, + "2001": 0.387, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": null, + "2011": null, + "2012": null, + "2013": null, + "2014": null, + "2015": null, + "2016": null, + "2017": null, + "2018": null, + "2019": null, + "2020": null, + "2021": null + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr128", + "Region": "Gorontalo", + "1990": 0.347, + "1991": 0.353, + "1992": 0.361, + "1993": 0.371, + "1994": 0.385, + "1995": 0.4, + "1996": 0.414, + "1997": 0.431, + "1998": 0.437, + "1999": 0.443, + "2000": 0.445, + "2001": 0.45, + "2002": 0.456, + "2003": 0.464, + "2004": 0.484, + "2005": 0.499, + "2006": 0.519, + "2007": 0.525, + "2008": 0.524, + "2009": 0.541, + "2010": 0.547, + "2011": 0.555, + "2012": 0.563, + "2013": 0.573, + "2014": 0.58, + "2015": 0.601, + "2016": 0.608, + "2017": 0.621, + "2018": 0.626, + "2019": 0.636, + "2020": 0.642, + "2021": 0.642 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr130", + "Region": "Irian Jaya (Papua and Papua Barat)", + "1990": 0.416, + "1991": 0.422, + "1992": 0.43, + "1993": 0.44, + "1994": 0.455, + "1995": 0.471, + "1996": 0.487, + "1997": 0.507, + "1998": 0.509, + "1999": 0.513, + "2000": 0.511, + "2001": 0.513, + "2002": 0.517, + "2003": 0.522, + "2004": 0.525, + "2005": 0.521, + "2006": 0.522, + "2007": 0.513, + "2008": 0.518, + "2009": 0.54, + "2010": 0.552, + "2011": 0.565, + "2012": 0.578, + "2013": 0.59, + "2014": 0.6, + "2015": 0.623, + "2016": 0.633, + "2017": 0.649, + "2018": 0.654, + "2019": 0.665, + "2020": 0.671, + "2021": 0.671 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr105", + "Region": "Jambi", + "1990": 0.394, + "1991": 0.399, + "1992": 0.406, + "1993": 0.414, + "1994": 0.429, + "1995": 0.444, + "1996": 0.458, + "1997": 0.476, + "1998": 0.487, + "1999": 0.5, + "2000": 0.506, + "2001": 0.518, + "2002": 0.531, + "2003": 0.546, + "2004": 0.554, + "2005": 0.556, + "2006": 0.563, + "2007": 0.558, + "2008": 0.557, + "2009": 0.574, + "2010": 0.58, + "2011": 0.587, + "2012": 0.596, + "2013": 0.601, + "2014": 0.604, + "2015": 0.622, + "2016": 0.626, + "2017": 0.635, + "2018": 0.641, + "2019": 0.651, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr108", + "Region": "Lampung", + "1990": 0.371, + "1991": 0.374, + "1992": 0.38, + "1993": 0.387, + "1994": 0.4, + "1995": 0.413, + "1996": 0.426, + "1997": 0.442, + "1998": 0.451, + "1999": 0.462, + "2000": 0.467, + "2001": 0.477, + "2002": 0.488, + "2003": 0.501, + "2004": 0.517, + "2005": 0.527, + "2006": 0.542, + "2007": 0.547, + "2008": 0.546, + "2009": 0.564, + "2010": 0.57, + "2011": 0.578, + "2012": 0.587, + "2013": 0.592, + "2014": 0.594, + "2015": 0.611, + "2016": 0.615, + "2017": 0.623, + "2018": 0.628, + "2019": 0.639, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr129", + "Region": "Maluku", + "1990": 0.439, + "1991": 0.446, + "1992": 0.455, + "1993": 0.465, + "1994": 0.482, + "1995": 0.5, + "1996": 0.516, + "1997": 0.537, + "1998": 0.547, + "1999": 0.559, + "2000": 0.564, + "2001": 0.574, + "2002": 0.585, + "2003": 0.599, + "2004": 0.61, + "2005": 0.615, + "2006": 0.624, + "2007": 0.62, + "2008": 0.619, + "2009": 0.639, + "2010": 0.646, + "2011": 0.656, + "2012": 0.666, + "2013": 0.67, + "2014": 0.673, + "2015": 0.691, + "2016": 0.694, + "2017": 0.703, + "2018": 0.709, + "2019": 0.72, + "2020": 0.728, + "2021": 0.728 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr124", + "Region": "North Sulawesi", + "1990": 0.408, + "1991": 0.414, + "1992": 0.423, + "1993": 0.433, + "1994": 0.449, + "1995": 0.465, + "1996": 0.481, + "1997": 0.5, + "1998": 0.516, + "1999": 0.533, + "2000": 0.544, + "2001": 0.559, + "2002": 0.577, + "2003": 0.597, + "2004": 0.61, + "2005": 0.616, + "2006": 0.628, + "2007": 0.622, + "2008": 0.621, + "2009": 0.642, + "2010": 0.649, + "2011": 0.658, + "2012": 0.667, + "2013": 0.672, + "2014": 0.675, + "2015": 0.692, + "2016": 0.695, + "2017": 0.704, + "2018": 0.71, + "2019": 0.722, + "2020": 0.729, + "2021": 0.729 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr102", + "Region": "North Sumatra", + "1990": 0.448, + "1991": 0.454, + "1992": 0.464, + "1993": 0.474, + "1994": 0.491, + "1995": 0.509, + "1996": 0.526, + "1997": 0.547, + "1998": 0.556, + "1999": 0.566, + "2000": 0.569, + "2001": 0.578, + "2002": 0.588, + "2003": 0.6, + "2004": 0.615, + "2005": 0.622, + "2006": 0.636, + "2007": 0.632, + "2008": 0.627, + "2009": 0.644, + "2010": 0.647, + "2011": 0.652, + "2012": 0.657, + "2013": 0.659, + "2014": 0.658, + "2015": 0.673, + "2016": 0.672, + "2017": 0.678, + "2018": 0.683, + "2019": 0.695, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr104", + "Region": "Riau (incl. Riau islands)", + "1990": 0.39, + "1991": 0.394, + "1992": 0.401, + "1993": 0.409, + "1994": 0.424, + "1995": 0.438, + "1996": 0.452, + "1997": 0.47, + "1998": 0.487, + "1999": 0.506, + "2000": 0.519, + "2001": 0.536, + "2002": 0.556, + "2003": 0.578, + "2004": 0.594, + "2005": 0.604, + "2006": 0.618, + "2007": 0.619, + "2008": 0.617, + "2009": 0.636, + "2010": 0.642, + "2011": 0.65, + "2012": 0.659, + "2013": 0.658, + "2014": 0.655, + "2015": 0.667, + "2016": 0.664, + "2017": 0.668, + "2018": 0.673, + "2019": 0.684, + "2020": 0.691, + "2021": 0.691 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr122", + "Region": "South Kalimantan", + "1990": 0.39, + "1991": 0.394, + "1992": 0.401, + "1993": 0.41, + "1994": 0.425, + "1995": 0.439, + "1996": 0.453, + "1997": 0.472, + "1998": 0.475, + "1999": 0.479, + "2000": 0.478, + "2001": 0.48, + "2002": 0.485, + "2003": 0.491, + "2004": 0.511, + "2005": 0.526, + "2006": 0.546, + "2007": 0.556, + "2008": 0.557, + "2009": 0.577, + "2010": 0.586, + "2011": 0.596, + "2012": 0.607, + "2013": 0.61, + "2014": 0.611, + "2015": 0.627, + "2016": 0.629, + "2017": 0.636, + "2018": 0.641, + "2019": 0.651, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr126", + "Region": "South Sulawesi (incl Sulawesi Barat)", + "1990": 0.363, + "1991": 0.366, + "1992": 0.372, + "1993": 0.38, + "1994": 0.393, + "1995": 0.406, + "1996": 0.418, + "1997": 0.435, + "1998": 0.453, + "1999": 0.472, + "2000": 0.486, + "2001": 0.505, + "2002": 0.525, + "2003": 0.548, + "2004": 0.55, + "2005": 0.546, + "2006": 0.547, + "2007": 0.537, + "2008": 0.543, + "2009": 0.567, + "2010": 0.58, + "2011": 0.594, + "2012": 0.61, + "2013": 0.614, + "2014": 0.617, + "2015": 0.634, + "2016": 0.637, + "2017": 0.645, + "2018": 0.65, + "2019": 0.66, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr106", + "Region": "South Sumatra", + "1990": 0.398, + "1991": 0.403, + "1992": 0.41, + "1993": 0.419, + "1994": 0.434, + "1995": 0.449, + "1996": 0.464, + "1997": 0.482, + "1998": 0.492, + "1999": 0.502, + "2000": 0.507, + "2001": 0.517, + "2002": 0.528, + "2003": 0.541, + "2004": 0.549, + "2005": 0.55, + "2006": 0.556, + "2007": 0.551, + "2008": 0.552, + "2009": 0.573, + "2010": 0.581, + "2011": 0.592, + "2012": 0.603, + "2013": 0.606, + "2014": 0.608, + "2015": 0.623, + "2016": 0.625, + "2017": 0.632, + "2018": 0.637, + "2019": 0.648, + "2020": 0.654, + "2021": 0.654 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr127", + "Region": "Southeast Sulawesi", + "1990": 0.398, + "1991": 0.403, + "1992": 0.41, + "1993": 0.419, + "1994": 0.434, + "1995": 0.449, + "1996": 0.463, + "1997": 0.482, + "1998": 0.489, + "1999": 0.498, + "2000": 0.5, + "2001": 0.507, + "2002": 0.516, + "2003": 0.527, + "2004": 0.55, + "2005": 0.568, + "2006": 0.591, + "2007": 0.601, + "2008": 0.6, + "2009": 0.62, + "2010": 0.627, + "2011": 0.635, + "2012": 0.645, + "2013": 0.648, + "2014": 0.649, + "2015": 0.665, + "2016": 0.667, + "2017": 0.674, + "2018": 0.68, + "2019": 0.691, + "2020": 0.698, + "2021": 0.698 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr111", + "Region": "West Java", + "1990": 0.36, + "1991": 0.364, + "1992": 0.37, + "1993": 0.378, + "1994": 0.391, + "1995": 0.404, + "1996": 0.417, + "1997": 0.434, + "1998": 0.444, + "1999": 0.457, + "2000": 0.464, + "2001": 0.475, + "2002": 0.488, + "2003": 0.503, + "2004": 0.52, + "2005": 0.532, + "2006": 0.549, + "2007": 0.553, + "2008": 0.554, + "2009": 0.574, + "2010": 0.583, + "2011": 0.593, + "2012": 0.603, + "2013": 0.607, + "2014": 0.609, + "2015": 0.624, + "2016": 0.626, + "2017": 0.634, + "2018": 0.639, + "2019": 0.649, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr120", + "Region": "West Kalimantan", + "1990": 0.368, + "1991": 0.37, + "1992": 0.376, + "1993": 0.382, + "1994": 0.394, + "1995": 0.407, + "1996": 0.419, + "1997": 0.436, + "1998": 0.445, + "1999": 0.455, + "2000": 0.46, + "2001": 0.47, + "2002": 0.481, + "2003": 0.494, + "2004": 0.502, + "2005": 0.504, + "2006": 0.51, + "2007": 0.509, + "2008": 0.51, + "2009": 0.528, + "2010": 0.536, + "2011": 0.545, + "2012": 0.555, + "2013": 0.56, + "2014": 0.562, + "2015": 0.578, + "2016": 0.581, + "2017": 0.589, + "2018": 0.594, + "2019": 0.604, + "2020": 0.609, + "2021": 0.609 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr117", + "Region": "West Nusa Tenggara", + "1990": 0.315, + "1991": 0.317, + "1992": 0.321, + "1993": 0.326, + "1994": 0.337, + "1995": 0.347, + "1996": 0.358, + "1997": 0.372, + "1998": 0.378, + "1999": 0.386, + "2000": 0.388, + "2001": 0.395, + "2002": 0.403, + "2003": 0.413, + "2004": 0.45, + "2005": 0.481, + "2006": 0.518, + "2007": 0.548, + "2008": 0.547, + "2009": 0.565, + "2010": 0.571, + "2011": 0.579, + "2012": 0.588, + "2013": 0.594, + "2014": 0.598, + "2015": 0.617, + "2016": 0.622, + "2017": 0.632, + "2018": 0.637, + "2019": 0.647, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr103", + "Region": "West Sumatra", + "1990": 0.437, + "1991": 0.443, + "1992": 0.451, + "1993": 0.461, + "1994": 0.477, + "1995": 0.494, + "1996": 0.51, + "1997": 0.53, + "1998": 0.542, + "1999": 0.555, + "2000": 0.561, + "2001": 0.573, + "2002": 0.586, + "2003": 0.602, + "2004": 0.605, + "2005": 0.601, + "2006": 0.602, + "2007": 0.591, + "2008": 0.596, + "2009": 0.622, + "2010": 0.635, + "2011": 0.649, + "2012": 0.665, + "2013": 0.67, + "2014": 0.672, + "2015": 0.69, + "2016": 0.693, + "2017": 0.702, + "2018": 0.708, + "2019": 0.72, + "2020": 0.727, + "2021": 0.727 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "National", + "GDLCODE": "IRNt", + "Region": "Total", + "1990": 0.471, + "1991": 0.485, + "1992": 0.498, + "1993": 0.511, + "1994": 0.525, + "1995": 0.538, + "1996": 0.551, + "1997": 0.565, + "1998": 0.578, + "1999": 0.592, + "2000": 0.602, + "2001": 0.622, + "2002": 0.628, + "2003": 0.636, + "2004": 0.634, + "2005": 0.639, + "2006": 0.657, + "2007": 0.655, + "2008": 0.663, + "2009": 0.671, + "2010": 0.681, + "2011": 0.696, + "2012": 0.74, + "2013": 0.742, + "2014": 0.744, + "2015": 0.754, + "2016": 0.759, + "2017": 0.759, + "2018": 0.761, + "2019": 0.762, + "2020": 0.761, + "2021": 0.761 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr125", + "Region": "Ardebil", + "1990": 0.448, + "1991": 0.46, + "1992": 0.472, + "1993": 0.483, + "1994": 0.495, + "1995": 0.507, + "1996": 0.519, + "1997": 0.531, + "1998": 0.543, + "1999": 0.556, + "2000": 0.565, + "2001": 0.583, + "2002": 0.589, + "2003": 0.595, + "2004": 0.591, + "2005": 0.595, + "2006": 0.611, + "2007": 0.612, + "2008": 0.623, + "2009": 0.631, + "2010": 0.64, + "2011": 0.656, + "2012": 0.699, + "2013": 0.701, + "2014": 0.703, + "2015": 0.712, + "2016": 0.716, + "2017": 0.716, + "2018": 0.717, + "2019": 0.719, + "2020": 0.717, + "2021": 0.717 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr119", + "Region": "Bushehr", + "1990": 0.494, + "1991": 0.508, + "1992": 0.522, + "1993": 0.536, + "1994": 0.551, + "1995": 0.565, + "1996": 0.579, + "1997": 0.593, + "1998": 0.608, + "1999": 0.622, + "2000": 0.633, + "2001": 0.653, + "2002": 0.661, + "2003": 0.669, + "2004": 0.667, + "2005": 0.673, + "2006": 0.691, + "2007": 0.685, + "2008": 0.69, + "2009": 0.695, + "2010": 0.701, + "2011": 0.714, + "2012": 0.759, + "2013": 0.761, + "2014": 0.764, + "2015": 0.773, + "2016": 0.778, + "2017": 0.778, + "2018": 0.78, + "2019": 0.782, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr115", + "Region": "Chaharmahal and Bakhtiyari", + "1990": 0.464, + "1991": 0.477, + "1992": 0.489, + "1993": 0.502, + "1994": 0.515, + "1995": 0.528, + "1996": 0.541, + "1997": 0.554, + "1998": 0.567, + "1999": 0.58, + "2000": 0.59, + "2001": 0.609, + "2002": 0.615, + "2003": 0.622, + "2004": 0.619, + "2005": 0.624, + "2006": 0.641, + "2007": 0.638, + "2008": 0.646, + "2009": 0.652, + "2010": 0.659, + "2011": 0.673, + "2012": 0.717, + "2013": 0.719, + "2014": 0.721, + "2015": 0.73, + "2016": 0.735, + "2017": 0.734, + "2018": 0.736, + "2019": 0.737, + "2020": 0.735, + "2021": 0.735 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr104", + "Region": "EastAzarbayejan", + "1990": 0.469, + "1991": 0.481, + "1992": 0.494, + "1993": 0.507, + "1994": 0.52, + "1995": 0.533, + "1996": 0.546, + "1997": 0.559, + "1998": 0.572, + "1999": 0.586, + "2000": 0.596, + "2001": 0.615, + "2002": 0.621, + "2003": 0.629, + "2004": 0.626, + "2005": 0.631, + "2006": 0.648, + "2007": 0.641, + "2008": 0.646, + "2009": 0.648, + "2010": 0.652, + "2011": 0.663, + "2012": 0.706, + "2013": 0.708, + "2014": 0.71, + "2015": 0.719, + "2016": 0.723, + "2017": 0.723, + "2018": 0.725, + "2019": 0.726, + "2020": 0.724, + "2021": 0.724 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr111", + "Region": "Esfahan", + "1990": 0.518, + "1991": 0.533, + "1992": 0.547, + "1993": 0.562, + "1994": 0.577, + "1995": 0.592, + "1996": 0.607, + "1997": 0.622, + "1998": 0.637, + "1999": 0.653, + "2000": 0.664, + "2001": 0.686, + "2002": 0.693, + "2003": 0.702, + "2004": 0.7, + "2005": 0.707, + "2006": 0.726, + "2007": 0.717, + "2008": 0.721, + "2009": 0.724, + "2010": 0.729, + "2011": 0.741, + "2012": 0.787, + "2013": 0.789, + "2014": 0.792, + "2015": 0.802, + "2016": 0.807, + "2017": 0.807, + "2018": 0.809, + "2019": 0.811, + "2020": 0.809, + "2021": 0.809 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr108", + "Region": "Fars", + "1990": 0.505, + "1991": 0.519, + "1992": 0.534, + "1993": 0.548, + "1994": 0.563, + "1995": 0.577, + "1996": 0.592, + "1997": 0.606, + "1998": 0.621, + "1999": 0.635, + "2000": 0.647, + "2001": 0.667, + "2002": 0.675, + "2003": 0.684, + "2004": 0.681, + "2005": 0.687, + "2006": 0.706, + "2007": 0.697, + "2008": 0.699, + "2009": 0.701, + "2010": 0.705, + "2011": 0.715, + "2012": 0.76, + "2013": 0.762, + "2014": 0.765, + "2015": 0.774, + "2016": 0.779, + "2017": 0.779, + "2018": 0.781, + "2019": 0.783, + "2020": 0.781, + "2021": 0.781 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr102", + "Region": "Gilan", + "1990": 0.489, + "1991": 0.502, + "1992": 0.516, + "1993": 0.53, + "1994": 0.544, + "1995": 0.558, + "1996": 0.572, + "1997": 0.585, + "1998": 0.599, + "1999": 0.613, + "2000": 0.624, + "2001": 0.644, + "2002": 0.651, + "2003": 0.66, + "2004": 0.657, + "2005": 0.663, + "2006": 0.681, + "2007": 0.677, + "2008": 0.684, + "2009": 0.69, + "2010": 0.698, + "2011": 0.713, + "2012": 0.758, + "2013": 0.76, + "2014": 0.762, + "2015": 0.772, + "2016": 0.777, + "2017": 0.777, + "2018": 0.778, + "2019": 0.78, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr128", + "Region": "Golestan", + "1990": 0.438, + "1991": 0.45, + "1992": 0.462, + "1993": 0.475, + "1994": 0.487, + "1995": 0.5, + "1996": 0.513, + "1997": 0.525, + "1998": 0.538, + "1999": 0.55, + "2000": 0.56, + "2001": 0.578, + "2002": 0.584, + "2003": 0.592, + "2004": 0.59, + "2005": 0.595, + "2006": 0.611, + "2007": 0.609, + "2008": 0.616, + "2009": 0.623, + "2010": 0.631, + "2011": 0.646, + "2012": 0.687, + "2013": 0.689, + "2014": 0.691, + "2015": 0.7, + "2016": 0.704, + "2017": 0.704, + "2018": 0.706, + "2019": 0.707, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr114", + "Region": "Hamedan", + "1990": 0.448, + "1991": 0.46, + "1992": 0.472, + "1993": 0.484, + "1994": 0.497, + "1995": 0.509, + "1996": 0.521, + "1997": 0.534, + "1998": 0.546, + "1999": 0.559, + "2000": 0.568, + "2001": 0.587, + "2002": 0.593, + "2003": 0.6, + "2004": 0.596, + "2005": 0.601, + "2006": 0.617, + "2007": 0.611, + "2008": 0.616, + "2009": 0.618, + "2010": 0.622, + "2011": 0.632, + "2012": 0.673, + "2013": 0.675, + "2014": 0.677, + "2015": 0.685, + "2016": 0.69, + "2017": 0.69, + "2018": 0.691, + "2019": 0.692, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr123", + "Region": "Hormozgan", + "1990": 0.442, + "1991": 0.454, + "1992": 0.466, + "1993": 0.479, + "1994": 0.491, + "1995": 0.503, + "1996": 0.516, + "1997": 0.528, + "1998": 0.54, + "1999": 0.553, + "2000": 0.562, + "2001": 0.581, + "2002": 0.587, + "2003": 0.594, + "2004": 0.591, + "2005": 0.596, + "2006": 0.612, + "2007": 0.609, + "2008": 0.616, + "2009": 0.621, + "2010": 0.628, + "2011": 0.641, + "2012": 0.682, + "2013": 0.684, + "2014": 0.686, + "2015": 0.694, + "2016": 0.699, + "2017": 0.699, + "2018": 0.7, + "2019": 0.702, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr117", + "Region": "Ilam", + "1990": 0.483, + "1991": 0.497, + "1992": 0.51, + "1993": 0.523, + "1994": 0.537, + "1995": 0.55, + "1996": 0.563, + "1997": 0.577, + "1998": 0.59, + "1999": 0.604, + "2000": 0.614, + "2001": 0.634, + "2002": 0.641, + "2003": 0.649, + "2004": 0.645, + "2005": 0.65, + "2006": 0.668, + "2007": 0.669, + "2008": 0.681, + "2009": 0.692, + "2010": 0.703, + "2011": 0.722, + "2012": 0.768, + "2013": 0.77, + "2014": 0.772, + "2015": 0.782, + "2016": 0.787, + "2017": 0.787, + "2018": 0.789, + "2019": 0.791, + "2020": 0.789, + "2021": 0.789 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr109", + "Region": "Kerman", + "1990": 0.475, + "1991": 0.488, + "1992": 0.502, + "1993": 0.516, + "1994": 0.529, + "1995": 0.543, + "1996": 0.557, + "1997": 0.571, + "1998": 0.584, + "1999": 0.598, + "2000": 0.609, + "2001": 0.628, + "2002": 0.635, + "2003": 0.644, + "2004": 0.642, + "2005": 0.648, + "2006": 0.665, + "2007": 0.656, + "2008": 0.657, + "2009": 0.658, + "2010": 0.661, + "2011": 0.669, + "2012": 0.711, + "2013": 0.713, + "2014": 0.715, + "2015": 0.724, + "2016": 0.729, + "2017": 0.729, + "2018": 0.731, + "2019": 0.733, + "2020": 0.731, + "2021": 0.731 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr106", + "Region": "Kermanshah", + "1990": 0.465, + "1991": 0.478, + "1992": 0.491, + "1993": 0.503, + "1994": 0.516, + "1995": 0.529, + "1996": 0.542, + "1997": 0.555, + "1998": 0.568, + "1999": 0.581, + "2000": 0.591, + "2001": 0.61, + "2002": 0.616, + "2003": 0.624, + "2004": 0.621, + "2005": 0.626, + "2006": 0.643, + "2007": 0.638, + "2008": 0.644, + "2009": 0.648, + "2010": 0.654, + "2011": 0.667, + "2012": 0.71, + "2013": 0.712, + "2014": 0.714, + "2015": 0.723, + "2016": 0.727, + "2017": 0.727, + "2018": 0.729, + "2019": 0.73, + "2020": 0.728, + "2021": 0.728 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr110", + "Region": "Khorasan-e-Razavi", + "1990": 0.468, + "1991": 0.481, + "1992": 0.495, + "1993": 0.508, + "1994": 0.522, + "1995": 0.535, + "1996": 0.548, + "1997": 0.562, + "1998": 0.575, + "1999": 0.589, + "2000": 0.6, + "2001": 0.619, + "2002": 0.626, + "2003": 0.634, + "2004": 0.632, + "2005": 0.637, + "2006": 0.655, + "2007": 0.645, + "2008": 0.647, + "2009": 0.648, + "2010": 0.65, + "2011": 0.659, + "2012": 0.7, + "2013": 0.702, + "2014": 0.704, + "2015": 0.713, + "2016": 0.717, + "2017": 0.718, + "2018": 0.719, + "2019": 0.721, + "2020": 0.719, + "2021": 0.719 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr107", + "Region": "Khuzestan", + "1990": 0.474, + "1991": 0.488, + "1992": 0.501, + "1993": 0.514, + "1994": 0.528, + "1995": 0.541, + "1996": 0.555, + "1997": 0.568, + "1998": 0.582, + "1999": 0.595, + "2000": 0.606, + "2001": 0.625, + "2002": 0.632, + "2003": 0.64, + "2004": 0.638, + "2005": 0.643, + "2006": 0.66, + "2007": 0.653, + "2008": 0.657, + "2009": 0.66, + "2010": 0.664, + "2011": 0.675, + "2012": 0.717, + "2013": 0.719, + "2014": 0.721, + "2015": 0.73, + "2016": 0.735, + "2017": 0.735, + "2018": 0.737, + "2019": 0.738, + "2020": 0.737, + "2021": 0.737 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr118", + "Region": "Kohgiluyeh and Boyerahmad", + "1990": 0.488, + "1991": 0.501, + "1992": 0.514, + "1993": 0.527, + "1994": 0.54, + "1995": 0.554, + "1996": 0.567, + "1997": 0.58, + "1998": 0.594, + "1999": 0.607, + "2000": 0.617, + "2001": 0.637, + "2002": 0.644, + "2003": 0.651, + "2004": 0.647, + "2005": 0.652, + "2006": 0.669, + "2007": 0.666, + "2008": 0.674, + "2009": 0.679, + "2010": 0.685, + "2011": 0.698, + "2012": 0.744, + "2013": 0.745, + "2014": 0.748, + "2015": 0.757, + "2016": 0.762, + "2017": 0.762, + "2018": 0.763, + "2019": 0.765, + "2020": 0.763, + "2021": 0.763 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr113", + "Region": "Kordestan", + "1990": 0.404, + "1991": 0.415, + "1992": 0.425, + "1993": 0.436, + "1994": 0.447, + "1995": 0.458, + "1996": 0.469, + "1997": 0.48, + "1998": 0.49, + "1999": 0.501, + "2000": 0.51, + "2001": 0.526, + "2002": 0.531, + "2003": 0.538, + "2004": 0.534, + "2005": 0.538, + "2006": 0.552, + "2007": 0.552, + "2008": 0.561, + "2009": 0.567, + "2010": 0.574, + "2011": 0.588, + "2012": 0.627, + "2013": 0.628, + "2014": 0.63, + "2015": 0.638, + "2016": 0.642, + "2017": 0.642, + "2018": 0.643, + "2019": 0.644, + "2020": 0.642, + "2021": 0.642 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr116", + "Region": "Lorestan", + "1990": 0.464, + "1991": 0.477, + "1992": 0.49, + "1993": 0.503, + "1994": 0.515, + "1995": 0.528, + "1996": 0.541, + "1997": 0.554, + "1998": 0.567, + "1999": 0.58, + "2000": 0.59, + "2001": 0.609, + "2002": 0.615, + "2003": 0.623, + "2004": 0.62, + "2005": 0.624, + "2006": 0.641, + "2007": 0.635, + "2008": 0.64, + "2009": 0.643, + "2010": 0.648, + "2011": 0.659, + "2012": 0.702, + "2013": 0.703, + "2014": 0.705, + "2015": 0.714, + "2016": 0.719, + "2017": 0.719, + "2018": 0.72, + "2019": 0.721, + "2020": 0.72, + "2021": 0.72 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr101", + "Region": "Markazi", + "1990": 0.481, + "1991": 0.495, + "1992": 0.508, + "1993": 0.522, + "1994": 0.535, + "1995": 0.549, + "1996": 0.563, + "1997": 0.576, + "1998": 0.59, + "1999": 0.603, + "2000": 0.614, + "2001": 0.634, + "2002": 0.641, + "2003": 0.649, + "2004": 0.646, + "2005": 0.651, + "2006": 0.669, + "2007": 0.662, + "2008": 0.665, + "2009": 0.668, + "2010": 0.672, + "2011": 0.683, + "2012": 0.727, + "2013": 0.729, + "2014": 0.731, + "2015": 0.74, + "2016": 0.745, + "2017": 0.745, + "2018": 0.746, + "2019": 0.748, + "2020": 0.746, + "2021": 0.746 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr103", + "Region": "Mazandaran", + "1990": 0.51, + "1991": 0.524, + "1992": 0.539, + "1993": 0.553, + "1994": 0.568, + "1995": 0.583, + "1996": 0.597, + "1997": 0.612, + "1998": 0.627, + "1999": 0.641, + "2000": 0.653, + "2001": 0.674, + "2002": 0.681, + "2003": 0.69, + "2004": 0.688, + "2005": 0.694, + "2006": 0.712, + "2007": 0.708, + "2008": 0.715, + "2009": 0.721, + "2010": 0.729, + "2011": 0.744, + "2012": 0.791, + "2013": 0.793, + "2014": 0.796, + "2015": 0.806, + "2016": 0.811, + "2017": 0.811, + "2018": 0.813, + "2019": 0.815, + "2020": 0.813, + "2021": 0.813 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr129", + "Region": "North Khorasan", + "1990": 0.415, + "1991": 0.426, + "1992": 0.437, + "1993": 0.448, + "1994": 0.459, + "1995": 0.471, + "1996": 0.482, + "1997": 0.493, + "1998": 0.505, + "1999": 0.516, + "2000": 0.525, + "2001": 0.542, + "2002": 0.547, + "2003": 0.554, + "2004": 0.551, + "2005": 0.555, + "2006": 0.569, + "2007": 0.569, + "2008": 0.578, + "2009": 0.585, + "2010": 0.593, + "2011": 0.607, + "2012": 0.647, + "2013": 0.649, + "2014": 0.65, + "2015": 0.659, + "2016": 0.663, + "2017": 0.663, + "2018": 0.664, + "2019": 0.665, + "2020": 0.663, + "2021": 0.663 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr127", + "Region": "Qazvin", + "1990": 0.478, + "1991": 0.491, + "1992": 0.505, + "1993": 0.518, + "1994": 0.532, + "1995": 0.546, + "1996": 0.559, + "1997": 0.573, + "1998": 0.586, + "1999": 0.6, + "2000": 0.611, + "2001": 0.63, + "2002": 0.637, + "2003": 0.645, + "2004": 0.643, + "2005": 0.648, + "2006": 0.666, + "2007": 0.658, + "2008": 0.661, + "2009": 0.663, + "2010": 0.667, + "2011": 0.678, + "2012": 0.72, + "2013": 0.722, + "2014": 0.725, + "2015": 0.734, + "2016": 0.738, + "2017": 0.739, + "2018": 0.74, + "2019": 0.742, + "2020": 0.74, + "2021": 0.74 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr126", + "Region": "Qom", + "1990": 0.494, + "1991": 0.508, + "1992": 0.522, + "1993": 0.536, + "1994": 0.55, + "1995": 0.564, + "1996": 0.578, + "1997": 0.592, + "1998": 0.607, + "1999": 0.621, + "2000": 0.632, + "2001": 0.652, + "2002": 0.659, + "2003": 0.668, + "2004": 0.665, + "2005": 0.671, + "2006": 0.689, + "2007": 0.685, + "2008": 0.691, + "2009": 0.698, + "2010": 0.705, + "2011": 0.72, + "2012": 0.765, + "2013": 0.767, + "2014": 0.769, + "2015": 0.779, + "2016": 0.784, + "2017": 0.784, + "2018": 0.786, + "2019": 0.788, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr121", + "Region": "Semnan", + "1990": 0.538, + "1991": 0.553, + "1992": 0.569, + "1993": 0.584, + "1994": 0.6, + "1995": 0.615, + "1996": 0.631, + "1997": 0.646, + "1998": 0.662, + "1999": 0.677, + "2000": 0.69, + "2001": 0.712, + "2002": 0.72, + "2003": 0.729, + "2004": 0.727, + "2005": 0.733, + "2006": 0.753, + "2007": 0.742, + "2008": 0.743, + "2009": 0.744, + "2010": 0.746, + "2011": 0.755, + "2012": 0.802, + "2013": 0.804, + "2014": 0.807, + "2015": 0.817, + "2016": 0.822, + "2017": 0.823, + "2018": 0.825, + "2019": 0.827, + "2020": 0.825, + "2021": 0.825 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr112", + "Region": "Sistanand Baluchestan", + "1990": 0.348, + "1991": 0.357, + "1992": 0.366, + "1993": 0.376, + "1994": 0.385, + "1995": 0.394, + "1996": 0.404, + "1997": 0.413, + "1998": 0.422, + "1999": 0.432, + "2000": 0.439, + "2001": 0.453, + "2002": 0.458, + "2003": 0.463, + "2004": 0.46, + "2005": 0.463, + "2006": 0.475, + "2007": 0.473, + "2008": 0.48, + "2009": 0.484, + "2010": 0.489, + "2011": 0.499, + "2012": 0.532, + "2013": 0.533, + "2014": 0.535, + "2015": 0.542, + "2016": 0.545, + "2017": 0.545, + "2018": 0.546, + "2019": 0.547, + "2020": 0.545, + "2021": 0.545 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr130", + "Region": "South Khorasan", + "1990": 0.44, + "1991": 0.452, + "1992": 0.464, + "1993": 0.476, + "1994": 0.488, + "1995": 0.5, + "1996": 0.512, + "1997": 0.524, + "1998": 0.536, + "1999": 0.548, + "2000": 0.557, + "2001": 0.575, + "2002": 0.581, + "2003": 0.588, + "2004": 0.584, + "2005": 0.588, + "2006": 0.604, + "2007": 0.601, + "2008": 0.607, + "2009": 0.612, + "2010": 0.617, + "2011": 0.63, + "2012": 0.671, + "2013": 0.673, + "2014": 0.675, + "2015": 0.683, + "2016": 0.688, + "2017": 0.687, + "2018": 0.688, + "2019": 0.69, + "2020": 0.688, + "2021": 0.688 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr124", + "Region": "Tehran and Alborz", + "1990": 0.495, + "1991": 0.51, + "1992": 0.524, + "1993": 0.538, + "1994": 0.553, + "1995": 0.568, + "1996": 0.582, + "1997": 0.597, + "1998": 0.611, + "1999": 0.626, + "2000": 0.637, + "2001": 0.657, + "2002": 0.665, + "2003": 0.674, + "2004": 0.672, + "2005": 0.679, + "2006": 0.697, + "2007": 0.707, + "2008": 0.727, + "2009": 0.747, + "2010": 0.769, + "2011": 0.797, + "2012": 0.844, + "2013": 0.847, + "2014": 0.85, + "2015": 0.861, + "2016": 0.866, + "2017": 0.867, + "2018": 0.869, + "2019": 0.872, + "2020": 0.87, + "2021": 0.87 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr105", + "Region": "WestAzarbayejan", + "1990": 0.418, + "1991": 0.43, + "1992": 0.441, + "1993": 0.453, + "1994": 0.464, + "1995": 0.476, + "1996": 0.488, + "1997": 0.499, + "1998": 0.511, + "1999": 0.523, + "2000": 0.532, + "2001": 0.549, + "2002": 0.554, + "2003": 0.561, + "2004": 0.558, + "2005": 0.563, + "2006": 0.578, + "2007": 0.575, + "2008": 0.582, + "2009": 0.588, + "2010": 0.594, + "2011": 0.607, + "2012": 0.647, + "2013": 0.649, + "2014": 0.651, + "2015": 0.659, + "2016": 0.663, + "2017": 0.663, + "2018": 0.664, + "2019": 0.665, + "2020": 0.663, + "2021": 0.663 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr122", + "Region": "Yazd", + "1990": 0.516, + "1991": 0.53, + "1992": 0.545, + "1993": 0.56, + "1994": 0.575, + "1995": 0.59, + "1996": 0.605, + "1997": 0.619, + "1998": 0.634, + "1999": 0.649, + "2000": 0.661, + "2001": 0.682, + "2002": 0.69, + "2003": 0.699, + "2004": 0.696, + "2005": 0.703, + "2006": 0.722, + "2007": 0.712, + "2008": 0.713, + "2009": 0.714, + "2010": 0.717, + "2011": 0.726, + "2012": 0.771, + "2013": 0.773, + "2014": 0.776, + "2015": 0.786, + "2016": 0.791, + "2017": 0.791, + "2018": 0.793, + "2019": 0.795, + "2020": 0.793, + "2021": 0.793 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr120", + "Region": "Zanjan", + "1990": 0.455, + "1991": 0.467, + "1992": 0.479, + "1993": 0.491, + "1994": 0.503, + "1995": 0.516, + "1996": 0.528, + "1997": 0.541, + "1998": 0.553, + "1999": 0.566, + "2000": 0.575, + "2001": 0.594, + "2002": 0.6, + "2003": 0.607, + "2004": 0.603, + "2005": 0.608, + "2006": 0.624, + "2007": 0.621, + "2008": 0.629, + "2009": 0.634, + "2010": 0.64, + "2011": 0.653, + "2012": 0.696, + "2013": 0.698, + "2014": 0.7, + "2015": 0.709, + "2016": 0.713, + "2017": 0.713, + "2018": 0.714, + "2019": 0.716, + "2020": 0.714, + "2021": 0.714 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "National", + "GDLCODE": "IRQt", + "Region": "Total", + "1990": 0.384, + "1991": 0.388, + "1992": 0.392, + "1993": 0.396, + "1994": 0.4, + "1995": 0.404, + "1996": 0.407, + "1997": 0.41, + "1998": 0.414, + "1999": 0.418, + "2000": 0.428, + "2001": 0.444, + "2002": 0.459, + "2003": 0.475, + "2004": 0.49, + "2005": 0.499, + "2006": 0.507, + "2007": 0.514, + "2008": 0.522, + "2009": 0.529, + "2010": 0.537, + "2011": 0.549, + "2012": 0.561, + "2013": 0.573, + "2014": 0.577, + "2015": 0.582, + "2016": 0.586, + "2017": 0.59, + "2018": 0.595, + "2019": 0.599, + "2020": 0.599, + "2021": 0.599 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr107", + "Region": "Anbar", + "1990": 0.431, + "1991": 0.436, + "1992": 0.441, + "1993": 0.446, + "1994": 0.451, + "1995": 0.456, + "1996": 0.46, + "1997": 0.464, + "1998": 0.468, + "1999": 0.473, + "2000": 0.485, + "2001": 0.502, + "2002": 0.52, + "2003": 0.537, + "2004": 0.554, + "2005": 0.565, + "2006": 0.574, + "2007": 0.565, + "2008": 0.557, + "2009": 0.55, + "2010": 0.542, + "2011": 0.54, + "2012": 0.552, + "2013": 0.565, + "2014": 0.57, + "2015": 0.574, + "2016": 0.579, + "2017": 0.584, + "2018": 0.589, + "2019": 0.593, + "2020": 0.593, + "2021": 0.593 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr109", + "Region": "Babylon", + "1990": 0.382, + "1991": 0.387, + "1992": 0.391, + "1993": 0.396, + "1994": 0.401, + "1995": 0.405, + "1996": 0.409, + "1997": 0.413, + "1998": 0.417, + "1999": 0.422, + "2000": 0.433, + "2001": 0.448, + "2002": 0.463, + "2003": 0.479, + "2004": 0.494, + "2005": 0.504, + "2006": 0.512, + "2007": 0.519, + "2008": 0.527, + "2009": 0.534, + "2010": 0.542, + "2011": 0.555, + "2012": 0.566, + "2013": 0.577, + "2014": 0.58, + "2015": 0.583, + "2016": 0.585, + "2017": 0.588, + "2018": 0.591, + "2019": 0.596, + "2020": 0.596, + "2021": 0.596 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr108", + "Region": "Baghdad", + "1990": 0.418, + "1991": 0.422, + "1992": 0.427, + "1993": 0.432, + "1994": 0.437, + "1995": 0.442, + "1996": 0.446, + "1997": 0.449, + "1998": 0.453, + "1999": 0.459, + "2000": 0.47, + "2001": 0.487, + "2002": 0.504, + "2003": 0.521, + "2004": 0.537, + "2005": 0.548, + "2006": 0.556, + "2007": 0.564, + "2008": 0.573, + "2009": 0.581, + "2010": 0.589, + "2011": 0.603, + "2012": 0.612, + "2013": 0.622, + "2014": 0.621, + "2015": 0.621, + "2016": 0.621, + "2017": 0.621, + "2018": 0.621, + "2019": 0.626, + "2020": 0.626, + "2021": 0.626 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr118", + "Region": "Basra", + "1990": 0.417, + "1991": 0.422, + "1992": 0.427, + "1993": 0.432, + "1994": 0.437, + "1995": 0.442, + "1996": 0.446, + "1997": 0.45, + "1998": 0.454, + "1999": 0.46, + "2000": 0.471, + "2001": 0.488, + "2002": 0.505, + "2003": 0.522, + "2004": 0.539, + "2005": 0.549, + "2006": 0.557, + "2007": 0.553, + "2008": 0.549, + "2009": 0.545, + "2010": 0.542, + "2011": 0.543, + "2012": 0.554, + "2013": 0.565, + "2014": 0.568, + "2015": 0.571, + "2016": 0.574, + "2017": 0.577, + "2018": 0.58, + "2019": 0.584, + "2020": 0.584, + "2021": 0.584 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr106", + "Region": "Diala", + "1990": 0.421, + "1991": 0.426, + "1992": 0.43, + "1993": 0.435, + "1994": 0.44, + "1995": 0.445, + "1996": 0.449, + "1997": 0.452, + "1998": 0.456, + "1999": 0.462, + "2000": 0.473, + "2001": 0.49, + "2002": 0.507, + "2003": 0.524, + "2004": 0.541, + "2005": 0.551, + "2006": 0.559, + "2007": 0.558, + "2008": 0.558, + "2009": 0.557, + "2010": 0.557, + "2011": 0.562, + "2012": 0.576, + "2013": 0.591, + "2014": 0.597, + "2015": 0.603, + "2016": 0.609, + "2017": 0.616, + "2018": 0.622, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr101", + "Region": "Dohouk", + "1990": 0.404, + "1991": 0.405, + "1992": 0.406, + "1993": 0.407, + "1994": 0.408, + "1995": 0.409, + "1996": 0.409, + "1997": 0.41, + "1998": 0.41, + "1999": 0.413, + "2000": 0.422, + "2001": 0.437, + "2002": 0.453, + "2003": 0.468, + "2004": 0.484, + "2005": 0.492, + "2006": 0.499, + "2007": 0.506, + "2008": 0.514, + "2009": 0.521, + "2010": 0.528, + "2011": 0.539, + "2012": 0.551, + "2013": 0.564, + "2014": 0.571, + "2015": 0.577, + "2016": 0.584, + "2017": 0.59, + "2018": 0.597, + "2019": 0.602, + "2020": 0.602, + "2021": 0.602 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr105", + "Region": "Erbil", + "1990": 0.396, + "1991": 0.397, + "1992": 0.398, + "1993": 0.4, + "1994": 0.401, + "1995": 0.402, + "1996": 0.403, + "1997": 0.404, + "1998": 0.405, + "1999": 0.407, + "2000": 0.416, + "2001": 0.431, + "2002": 0.447, + "2003": 0.462, + "2004": 0.477, + "2005": 0.486, + "2006": 0.492, + "2007": 0.506, + "2008": 0.519, + "2009": 0.532, + "2010": 0.545, + "2011": 0.561, + "2012": 0.572, + "2013": 0.584, + "2014": 0.588, + "2015": 0.593, + "2016": 0.597, + "2017": 0.602, + "2018": 0.607, + "2019": 0.611, + "2020": 0.611, + "2021": 0.611 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr110", + "Region": "Kerbela", + "1990": 0.393, + "1991": 0.398, + "1992": 0.403, + "1993": 0.407, + "1994": 0.412, + "1995": 0.417, + "1996": 0.421, + "1997": 0.425, + "1998": 0.429, + "1999": 0.434, + "2000": 0.445, + "2001": 0.461, + "2002": 0.476, + "2003": 0.492, + "2004": 0.508, + "2005": 0.518, + "2006": 0.526, + "2007": 0.527, + "2008": 0.529, + "2009": 0.53, + "2010": 0.532, + "2011": 0.538, + "2012": 0.551, + "2013": 0.563, + "2014": 0.568, + "2015": 0.572, + "2016": 0.576, + "2017": 0.581, + "2018": 0.585, + "2019": 0.59, + "2020": 0.59, + "2021": 0.59 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr117", + "Region": "Maysan", + "1990": 0.306, + "1991": 0.31, + "1992": 0.313, + "1993": 0.317, + "1994": 0.321, + "1995": 0.325, + "1996": 0.328, + "1997": 0.331, + "1998": 0.334, + "1999": 0.338, + "2000": 0.346, + "2001": 0.359, + "2002": 0.371, + "2003": 0.384, + "2004": 0.396, + "2005": 0.404, + "2006": 0.41, + "2007": 0.417, + "2008": 0.424, + "2009": 0.43, + "2010": 0.437, + "2011": 0.448, + "2012": 0.46, + "2013": 0.471, + "2014": 0.476, + "2015": 0.482, + "2016": 0.487, + "2017": 0.492, + "2018": 0.497, + "2019": 0.501, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr115", + "Region": "Muthanna", + "1990": 0.296, + "1991": 0.299, + "1992": 0.301, + "1993": 0.304, + "1994": 0.307, + "1995": 0.309, + "1996": 0.311, + "1997": 0.313, + "1998": 0.315, + "1999": 0.318, + "2000": 0.326, + "2001": 0.338, + "2002": 0.349, + "2003": 0.361, + "2004": 0.373, + "2005": 0.38, + "2006": 0.385, + "2007": 0.395, + "2008": 0.405, + "2009": 0.414, + "2010": 0.424, + "2011": 0.437, + "2012": 0.448, + "2013": 0.459, + "2014": 0.465, + "2015": 0.47, + "2016": 0.476, + "2017": 0.481, + "2018": 0.487, + "2019": 0.491, + "2020": 0.491, + "2021": 0.491 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr113", + "Region": "Najaf", + "1990": 0.371, + "1991": 0.376, + "1992": 0.38, + "1993": 0.384, + "1994": 0.388, + "1995": 0.393, + "1996": 0.396, + "1997": 0.4, + "1998": 0.403, + "1999": 0.408, + "2000": 0.418, + "2001": 0.433, + "2002": 0.448, + "2003": 0.463, + "2004": 0.478, + "2005": 0.487, + "2006": 0.494, + "2007": 0.501, + "2008": 0.508, + "2009": 0.514, + "2010": 0.521, + "2011": 0.532, + "2012": 0.541, + "2013": 0.55, + "2014": 0.551, + "2015": 0.552, + "2016": 0.553, + "2017": 0.554, + "2018": 0.555, + "2019": 0.559, + "2020": 0.559, + "2021": 0.559 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr102", + "Region": "Nenava", + "1990": 0.341, + "1991": 0.345, + "1992": 0.35, + "1993": 0.354, + "1994": 0.358, + "1995": 0.362, + "1996": 0.366, + "1997": 0.369, + "1998": 0.373, + "1999": 0.377, + "2000": 0.387, + "2001": 0.401, + "2002": 0.414, + "2003": 0.428, + "2004": 0.442, + "2005": 0.451, + "2006": 0.457, + "2007": 0.469, + "2008": 0.481, + "2009": 0.492, + "2010": 0.504, + "2011": 0.52, + "2012": 0.538, + "2013": 0.557, + "2014": 0.569, + "2015": 0.58, + "2016": 0.592, + "2017": 0.603, + "2018": 0.614, + "2019": 0.618, + "2020": 0.618, + "2021": 0.618 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr114", + "Region": "Qadisiya", + "1990": 0.324, + "1991": 0.328, + "1992": 0.332, + "1993": 0.336, + "1994": 0.34, + "1995": 0.343, + "1996": 0.347, + "1997": 0.35, + "1998": 0.353, + "1999": 0.357, + "2000": 0.366, + "2001": 0.379, + "2002": 0.392, + "2003": 0.405, + "2004": 0.418, + "2005": 0.426, + "2006": 0.433, + "2007": 0.45, + "2008": 0.468, + "2009": 0.485, + "2010": 0.502, + "2011": 0.523, + "2012": 0.536, + "2013": 0.55, + "2014": 0.557, + "2015": 0.563, + "2016": 0.569, + "2017": 0.576, + "2018": 0.582, + "2019": 0.587, + "2020": 0.587, + "2021": 0.587 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr112", + "Region": "Salaheldeen", + "1990": 0.351, + "1991": 0.355, + "1992": 0.359, + "1993": 0.363, + "1994": 0.368, + "1995": 0.372, + "1996": 0.375, + "1997": 0.378, + "1998": 0.382, + "1999": 0.386, + "2000": 0.396, + "2001": 0.41, + "2002": 0.424, + "2003": 0.438, + "2004": 0.452, + "2005": 0.461, + "2006": 0.468, + "2007": 0.478, + "2008": 0.487, + "2009": 0.497, + "2010": 0.506, + "2011": 0.52, + "2012": 0.537, + "2013": 0.555, + "2014": 0.565, + "2015": 0.575, + "2016": 0.585, + "2017": 0.595, + "2018": 0.605, + "2019": 0.61, + "2020": 0.61, + "2021": 0.61 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr103", + "Region": "Suleimaniya", + "1990": 0.422, + "1991": 0.423, + "1992": 0.425, + "1993": 0.426, + "1994": 0.427, + "1995": 0.429, + "1996": 0.429, + "1997": 0.43, + "1998": 0.431, + "1999": 0.434, + "2000": 0.443, + "2001": 0.459, + "2002": 0.476, + "2003": 0.492, + "2004": 0.508, + "2005": 0.517, + "2006": 0.524, + "2007": 0.54, + "2008": 0.556, + "2009": 0.571, + "2010": 0.586, + "2011": 0.605, + "2012": 0.612, + "2013": 0.619, + "2014": 0.62, + "2015": 0.621, + "2016": 0.621, + "2017": 0.622, + "2018": 0.622, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr104", + "Region": "Ta-amem-Karkuk", + "1990": 0.37, + "1991": 0.374, + "1992": 0.378, + "1993": 0.382, + "1994": 0.386, + "1995": 0.39, + "1996": 0.393, + "1997": 0.396, + "1998": 0.4, + "1999": 0.404, + "2000": 0.414, + "2001": 0.429, + "2002": 0.444, + "2003": 0.459, + "2004": 0.473, + "2005": 0.483, + "2006": 0.49, + "2007": 0.501, + "2008": 0.512, + "2009": 0.523, + "2010": 0.534, + "2011": 0.549, + "2012": 0.568, + "2013": 0.588, + "2014": 0.6, + "2015": 0.612, + "2016": 0.625, + "2017": 0.636, + "2018": 0.648, + "2019": 0.653, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr116", + "Region": "Thi-Qar", + "1990": 0.342, + "1991": 0.346, + "1992": 0.349, + "1993": 0.352, + "1994": 0.356, + "1995": 0.359, + "1996": 0.362, + "1997": 0.365, + "1998": 0.367, + "1999": 0.371, + "2000": 0.38, + "2001": 0.394, + "2002": 0.408, + "2003": 0.421, + "2004": 0.435, + "2005": 0.443, + "2006": 0.45, + "2007": 0.461, + "2008": 0.471, + "2009": 0.482, + "2010": 0.493, + "2011": 0.507, + "2012": 0.522, + "2013": 0.538, + "2014": 0.546, + "2015": 0.554, + "2016": 0.562, + "2017": 0.57, + "2018": 0.578, + "2019": 0.583, + "2020": 0.583, + "2021": 0.583 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr111", + "Region": "Wasit", + "1990": 0.343, + "1991": 0.346, + "1992": 0.35, + "1993": 0.354, + "1994": 0.358, + "1995": 0.361, + "1996": 0.365, + "1997": 0.368, + "1998": 0.371, + "1999": 0.375, + "2000": 0.384, + "2001": 0.398, + "2002": 0.412, + "2003": 0.425, + "2004": 0.439, + "2005": 0.448, + "2006": 0.454, + "2007": 0.461, + "2008": 0.468, + "2009": 0.476, + "2010": 0.483, + "2011": 0.494, + "2012": 0.51, + "2013": 0.526, + "2014": 0.535, + "2015": 0.544, + "2016": 0.552, + "2017": 0.561, + "2018": 0.57, + "2019": 0.574, + "2020": 0.574, + "2021": 0.574 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "National", + "GDLCODE": "IRLt", + "Region": "Total", + "1990": 0.577, + "1991": 0.585, + "1992": 0.598, + "1993": 0.62, + "1994": 0.634, + "1995": 0.644, + "1996": 0.653, + "1997": 0.667, + "1998": 0.747, + "1999": 0.759, + "2000": 0.77, + "2001": 0.781, + "2002": 0.796, + "2003": 0.809, + "2004": 0.824, + "2005": 0.832, + "2006": 0.833, + "2007": 0.842, + "2008": 0.854, + "2009": 0.853, + "2010": 0.871, + "2011": 0.865, + "2012": 0.868, + "2013": 0.871, + "2014": 0.874, + "2015": 0.876, + "2016": 0.879, + "2017": 0.881, + "2018": 0.884, + "2019": 0.886, + "2020": 0.886, + "2021": 0.886 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr101", + "Region": "Border", + "1990": 0.55, + "1991": 0.558, + "1992": 0.571, + "1993": 0.591, + "1994": 0.605, + "1995": 0.614, + "1996": 0.623, + "1997": 0.636, + "1998": 0.712, + "1999": 0.724, + "2000": 0.734, + "2001": 0.746, + "2002": 0.76, + "2003": 0.772, + "2004": 0.787, + "2005": 0.794, + "2006": 0.795, + "2007": 0.804, + "2008": 0.816, + "2009": 0.816, + "2010": 0.833, + "2011": 0.828, + "2012": 0.831, + "2013": 0.836, + "2014": 0.842, + "2015": 0.858, + "2016": 0.863, + "2017": 0.863, + "2018": 0.868, + "2019": 0.87, + "2020": 0.87, + "2021": 0.87 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr104", + "Region": "Dublin", + "1990": 0.597, + "1991": 0.605, + "1992": 0.619, + "1993": 0.641, + "1994": 0.656, + "1995": 0.666, + "1996": 0.675, + "1997": 0.689, + "1998": 0.772, + "1999": 0.785, + "2000": 0.796, + "2001": 0.808, + "2002": 0.824, + "2003": 0.836, + "2004": 0.852, + "2005": 0.86, + "2006": 0.86, + "2007": 0.869, + "2008": 0.881, + "2009": 0.88, + "2010": 0.898, + "2011": 0.878, + "2012": 0.881, + "2013": 0.883, + "2014": 0.886, + "2015": 0.888, + "2016": 0.891, + "2017": 0.894, + "2018": 0.896, + "2019": 0.899, + "2020": 0.899, + "2021": 0.899 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr105", + "Region": "Mid-East", + "1990": 0.58, + "1991": 0.589, + "1992": 0.602, + "1993": 0.624, + "1994": 0.638, + "1995": 0.648, + "1996": 0.657, + "1997": 0.671, + "1998": 0.751, + "1999": 0.764, + "2000": 0.775, + "2001": 0.786, + "2002": 0.801, + "2003": 0.815, + "2004": 0.831, + "2005": 0.839, + "2006": 0.84, + "2007": 0.849, + "2008": 0.861, + "2009": 0.86, + "2010": 0.877, + "2011": 0.869, + "2012": 0.871, + "2013": 0.873, + "2014": 0.875, + "2015": 0.878, + "2016": 0.88, + "2017": 0.882, + "2018": 0.885, + "2019": 0.887, + "2020": 0.887, + "2021": 0.887 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr106", + "Region": "Mid-West", + "1990": 0.574, + "1991": 0.582, + "1992": 0.595, + "1993": 0.616, + "1994": 0.63, + "1995": 0.64, + "1996": 0.649, + "1997": 0.663, + "1998": 0.743, + "1999": 0.755, + "2000": 0.766, + "2001": 0.777, + "2002": 0.792, + "2003": 0.805, + "2004": 0.82, + "2005": 0.829, + "2006": 0.829, + "2007": 0.838, + "2008": 0.849, + "2009": 0.847, + "2010": 0.864, + "2011": 0.857, + "2012": 0.859, + "2013": 0.864, + "2014": 0.869, + "2015": 0.872, + "2016": 0.874, + "2017": 0.876, + "2018": 0.879, + "2019": 0.881, + "2020": 0.881, + "2021": 0.881 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr102", + "Region": "Midland", + "1990": 0.56, + "1991": 0.568, + "1992": 0.581, + "1993": 0.602, + "1994": 0.616, + "1995": 0.625, + "1996": 0.634, + "1997": 0.647, + "1998": 0.725, + "1999": 0.737, + "2000": 0.748, + "2001": 0.759, + "2002": 0.773, + "2003": 0.786, + "2004": 0.802, + "2005": 0.81, + "2006": 0.811, + "2007": 0.82, + "2008": 0.832, + "2009": 0.831, + "2010": 0.847, + "2011": 0.842, + "2012": 0.844, + "2013": 0.85, + "2014": 0.855, + "2015": 0.866, + "2016": 0.868, + "2017": 0.871, + "2018": 0.873, + "2019": 0.875, + "2020": 0.875, + "2021": 0.875 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr107", + "Region": "South-East", + "1990": 0.559, + "1991": 0.568, + "1992": 0.58, + "1993": 0.601, + "1994": 0.615, + "1995": 0.624, + "1996": 0.633, + "1997": 0.647, + "1998": 0.724, + "1999": 0.736, + "2000": 0.747, + "2001": 0.758, + "2002": 0.772, + "2003": 0.785, + "2004": 0.799, + "2005": 0.806, + "2006": 0.807, + "2007": 0.816, + "2008": 0.828, + "2009": 0.827, + "2010": 0.844, + "2011": 0.839, + "2012": 0.841, + "2013": 0.846, + "2014": 0.851, + "2015": 0.864, + "2016": 0.866, + "2017": 0.869, + "2018": 0.871, + "2019": 0.873, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr108", + "Region": "South-West", + "1990": 0.579, + "1991": 0.587, + "1992": 0.601, + "1993": 0.622, + "1994": 0.636, + "1995": 0.646, + "1996": 0.655, + "1997": 0.669, + "1998": 0.75, + "1999": 0.762, + "2000": 0.773, + "2001": 0.785, + "2002": 0.799, + "2003": 0.812, + "2004": 0.828, + "2005": 0.836, + "2006": 0.836, + "2007": 0.846, + "2008": 0.859, + "2009": 0.859, + "2010": 0.877, + "2011": 0.87, + "2012": 0.872, + "2013": 0.874, + "2014": 0.877, + "2015": 0.879, + "2016": 0.882, + "2017": 0.884, + "2018": 0.886, + "2019": 0.889, + "2020": 0.889, + "2021": 0.889 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr103", + "Region": "West", + "1990": 0.574, + "1991": 0.582, + "1992": 0.596, + "1993": 0.617, + "1994": 0.631, + "1995": 0.641, + "1996": 0.65, + "1997": 0.663, + "1998": 0.743, + "1999": 0.755, + "2000": 0.766, + "2001": 0.778, + "2002": 0.793, + "2003": 0.806, + "2004": 0.822, + "2005": 0.831, + "2006": 0.832, + "2007": 0.841, + "2008": 0.854, + "2009": 0.853, + "2010": 0.87, + "2011": 0.865, + "2012": 0.868, + "2013": 0.872, + "2014": 0.874, + "2015": 0.877, + "2016": 0.88, + "2017": 0.882, + "2018": 0.885, + "2019": 0.887, + "2020": 0.887, + "2021": 0.887 + }, + { + "Country": "Israel", + "Continent": "Asia/Pacific", + "ISO_Code": "ISR", + "Level": "National", + "GDLCODE": "ISRt", + "Region": "Total", + "1990": 0.688, + "1991": 0.699, + "1992": 0.707, + "1993": 0.715, + "1994": 0.719, + "1995": 0.722, + "1996": 0.728, + "1997": 0.745, + "1998": 0.761, + "1999": 0.778, + "2000": 0.778, + "2001": 0.785, + "2002": 0.807, + "2003": 0.805, + "2004": 0.803, + "2005": 0.818, + "2006": 0.832, + "2007": 0.856, + "2008": 0.852, + "2009": 0.856, + "2010": 0.863, + "2011": 0.868, + "2012": 0.87, + "2013": 0.875, + "2014": 0.88, + "2015": 0.881, + "2016": 0.882, + "2017": 0.887, + "2018": 0.89, + "2019": 0.891, + "2020": 0.891, + "2021": 0.891 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "National", + "GDLCODE": "ITAt", + "Region": "Total", + "1990": 0.604, + "1991": 0.613, + "1992": 0.624, + "1993": 0.635, + "1994": 0.652, + "1995": 0.66, + "1996": 0.67, + "1997": 0.683, + "1998": 0.693, + "1999": 0.702, + "2000": 0.709, + "2001": 0.722, + "2002": 0.731, + "2003": 0.741, + "2004": 0.748, + "2005": 0.756, + "2006": 0.765, + "2007": 0.772, + "2008": 0.778, + "2009": 0.782, + "2010": 0.785, + "2011": 0.794, + "2012": 0.792, + "2013": 0.787, + "2014": 0.788, + "2015": 0.789, + "2016": 0.79, + "2017": 0.796, + "2018": 0.802, + "2019": 0.806, + "2020": 0.809, + "2021": 0.809 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr105", + "Region": "Abruzzo", + "1990": 0.621, + "1991": 0.63, + "1992": 0.642, + "1993": 0.653, + "1994": 0.67, + "1995": 0.679, + "1996": 0.689, + "1997": 0.703, + "1998": 0.713, + "1999": 0.722, + "2000": 0.729, + "2001": 0.742, + "2002": 0.758, + "2003": 0.767, + "2004": 0.779, + "2005": 0.787, + "2006": 0.795, + "2007": 0.798, + "2008": 0.806, + "2009": 0.808, + "2010": 0.813, + "2011": 0.826, + "2012": 0.823, + "2013": 0.817, + "2014": 0.813, + "2015": 0.813, + "2016": 0.81, + "2017": 0.813, + "2018": 0.814, + "2019": 0.82, + "2020": 0.823, + "2021": 0.823 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr109", + "Region": "Basilicata", + "1990": 0.572, + "1991": 0.581, + "1992": 0.591, + "1993": 0.602, + "1994": 0.617, + "1995": 0.625, + "1996": 0.634, + "1997": 0.647, + "1998": 0.657, + "1999": 0.665, + "2000": 0.671, + "2001": 0.682, + "2002": 0.695, + "2003": 0.706, + "2004": 0.712, + "2005": 0.721, + "2006": 0.729, + "2007": 0.736, + "2008": 0.742, + "2009": 0.744, + "2010": 0.746, + "2011": 0.754, + "2012": 0.753, + "2013": 0.751, + "2014": 0.755, + "2015": 0.753, + "2016": 0.756, + "2017": 0.758, + "2018": 0.759, + "2019": 0.766, + "2020": 0.769, + "2021": 0.769 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr110", + "Region": "Calabria", + "1990": 0.589, + "1991": 0.598, + "1992": 0.609, + "1993": 0.62, + "1994": 0.636, + "1995": 0.644, + "1996": 0.653, + "1997": 0.666, + "1998": 0.676, + "1999": 0.685, + "2000": 0.691, + "2001": 0.702, + "2002": 0.71, + "2003": 0.719, + "2004": 0.728, + "2005": 0.734, + "2006": 0.742, + "2007": 0.749, + "2008": 0.754, + "2009": 0.758, + "2010": 0.759, + "2011": 0.768, + "2012": 0.766, + "2013": 0.759, + "2014": 0.763, + "2015": 0.763, + "2016": 0.759, + "2017": 0.76, + "2018": 0.759, + "2019": 0.764, + "2020": 0.767, + "2021": 0.767 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr107", + "Region": "Campania", + "1990": 0.589, + "1991": 0.598, + "1992": 0.609, + "1993": 0.62, + "1994": 0.636, + "1995": 0.644, + "1996": 0.654, + "1997": 0.667, + "1998": 0.677, + "1999": 0.685, + "2000": 0.692, + "2001": 0.704, + "2002": 0.714, + "2003": 0.723, + "2004": 0.729, + "2005": 0.735, + "2006": 0.742, + "2007": 0.747, + "2008": 0.752, + "2009": 0.757, + "2010": 0.76, + "2011": 0.768, + "2012": 0.768, + "2013": 0.764, + "2014": 0.766, + "2015": 0.768, + "2016": 0.771, + "2017": 0.775, + "2018": 0.78, + "2019": 0.784, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr117", + "Region": "Emilia-Romagna", + "1990": 0.637, + "1991": 0.647, + "1992": 0.659, + "1993": 0.67, + "1994": 0.688, + "1995": 0.697, + "1996": 0.706, + "1997": 0.721, + "1998": 0.731, + "1999": 0.74, + "2000": 0.748, + "2001": 0.763, + "2002": 0.772, + "2003": 0.779, + "2004": 0.783, + "2005": 0.789, + "2006": 0.798, + "2007": 0.806, + "2008": 0.813, + "2009": 0.817, + "2010": 0.819, + "2011": 0.831, + "2012": 0.827, + "2013": 0.821, + "2014": 0.824, + "2015": 0.828, + "2016": 0.831, + "2017": 0.838, + "2018": 0.845, + "2019": 0.85, + "2020": 0.853, + "2021": 0.853 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr116", + "Region": "Friuli-Venezia Giulia", + "1990": 0.612, + "1991": 0.621, + "1992": 0.633, + "1993": 0.644, + "1994": 0.661, + "1995": 0.669, + "1996": 0.679, + "1997": 0.693, + "1998": 0.703, + "1999": 0.711, + "2000": 0.718, + "2001": 0.733, + "2002": 0.743, + "2003": 0.754, + "2004": 0.759, + "2005": 0.767, + "2006": 0.779, + "2007": 0.785, + "2008": 0.789, + "2009": 0.792, + "2010": 0.795, + "2011": 0.802, + "2012": 0.807, + "2013": 0.802, + "2014": 0.807, + "2015": 0.805, + "2016": 0.806, + "2017": 0.815, + "2018": 0.817, + "2019": 0.821, + "2020": 0.824, + "2021": 0.824 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr121", + "Region": "Lazio", + "1990": 0.634, + "1991": 0.644, + "1992": 0.656, + "1993": 0.667, + "1994": 0.685, + "1995": 0.693, + "1996": 0.703, + "1997": 0.718, + "1998": 0.728, + "1999": 0.737, + "2000": 0.744, + "2001": 0.758, + "2002": 0.768, + "2003": 0.779, + "2004": 0.79, + "2005": 0.799, + "2006": 0.807, + "2007": 0.816, + "2008": 0.823, + "2009": 0.825, + "2010": 0.828, + "2011": 0.837, + "2012": 0.835, + "2013": 0.83, + "2014": 0.829, + "2015": 0.83, + "2016": 0.831, + "2017": 0.836, + "2018": 0.84, + "2019": 0.844, + "2020": 0.847, + "2021": 0.847 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr103", + "Region": "Liguria", + "1990": 0.609, + "1991": 0.618, + "1992": 0.63, + "1993": 0.641, + "1994": 0.657, + "1995": 0.666, + "1996": 0.675, + "1997": 0.689, + "1998": 0.699, + "1999": 0.708, + "2000": 0.715, + "2001": 0.728, + "2002": 0.737, + "2003": 0.747, + "2004": 0.762, + "2005": 0.769, + "2006": 0.776, + "2007": 0.784, + "2008": 0.794, + "2009": 0.8, + "2010": 0.8, + "2011": 0.808, + "2012": 0.804, + "2013": 0.8, + "2014": 0.796, + "2015": 0.795, + "2016": 0.793, + "2017": 0.798, + "2018": 0.807, + "2019": 0.812, + "2020": 0.815, + "2021": 0.815 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr104", + "Region": "Lombardia", + "1990": 0.607, + "1991": 0.617, + "1992": 0.628, + "1993": 0.639, + "1994": 0.656, + "1995": 0.664, + "1996": 0.673, + "1997": 0.687, + "1998": 0.697, + "1999": 0.706, + "2000": 0.713, + "2001": 0.727, + "2002": 0.736, + "2003": 0.745, + "2004": 0.753, + "2005": 0.761, + "2006": 0.77, + "2007": 0.777, + "2008": 0.784, + "2009": 0.787, + "2010": 0.791, + "2011": 0.799, + "2012": 0.797, + "2013": 0.793, + "2014": 0.795, + "2015": 0.797, + "2016": 0.798, + "2017": 0.806, + "2018": 0.812, + "2019": 0.814, + "2020": 0.817, + "2021": 0.817 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr120", + "Region": "Marche", + "1990": 0.621, + "1991": 0.631, + "1992": 0.643, + "1993": 0.654, + "1994": 0.671, + "1995": 0.679, + "1996": 0.689, + "1997": 0.703, + "1998": 0.713, + "1999": 0.722, + "2000": 0.729, + "2001": 0.744, + "2002": 0.753, + "2003": 0.76, + "2004": 0.764, + "2005": 0.769, + "2006": 0.778, + "2007": 0.782, + "2008": 0.786, + "2009": 0.792, + "2010": 0.796, + "2011": 0.803, + "2012": 0.802, + "2013": 0.799, + "2014": 0.806, + "2015": 0.81, + "2016": 0.815, + "2017": 0.821, + "2018": 0.823, + "2019": 0.828, + "2020": 0.831, + "2021": 0.831 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr106", + "Region": "Molise", + "1990": 0.594, + "1991": 0.603, + "1992": 0.614, + "1993": 0.624, + "1994": 0.641, + "1995": 0.649, + "1996": 0.658, + "1997": 0.672, + "1998": 0.681, + "1999": 0.69, + "2000": 0.697, + "2001": 0.709, + "2002": 0.722, + "2003": 0.731, + "2004": 0.739, + "2005": 0.746, + "2006": 0.754, + "2007": 0.761, + "2008": 0.767, + "2009": 0.769, + "2010": 0.77, + "2011": 0.778, + "2012": 0.778, + "2013": 0.775, + "2014": 0.78, + "2015": 0.781, + "2016": 0.782, + "2017": 0.79, + "2018": 0.794, + "2019": 0.797, + "2020": 0.8, + "2021": 0.8 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr101", + "Region": "Piemonte", + "1990": 0.604, + "1991": 0.613, + "1992": 0.624, + "1993": 0.635, + "1994": 0.652, + "1995": 0.66, + "1996": 0.67, + "1997": 0.683, + "1998": 0.693, + "1999": 0.702, + "2000": 0.709, + "2001": 0.721, + "2002": 0.73, + "2003": 0.74, + "2004": 0.747, + "2005": 0.757, + "2006": 0.766, + "2007": 0.773, + "2008": 0.779, + "2009": 0.782, + "2010": 0.787, + "2011": 0.795, + "2012": 0.792, + "2013": 0.788, + "2014": 0.794, + "2015": 0.794, + "2016": 0.797, + "2017": 0.807, + "2018": 0.814, + "2019": 0.818, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr113", + "Region": "Provincia Autonoma di Bolzano", + "1990": 0.565, + "1991": 0.573, + "1992": 0.584, + "1993": 0.594, + "1994": 0.609, + "1995": 0.617, + "1996": 0.626, + "1997": 0.639, + "1998": 0.648, + "1999": 0.656, + "2000": 0.663, + "2001": 0.669, + "2002": 0.675, + "2003": 0.683, + "2004": 0.69, + "2005": 0.697, + "2006": 0.704, + "2007": 0.713, + "2008": 0.719, + "2009": 0.722, + "2010": 0.727, + "2011": 0.736, + "2012": 0.736, + "2013": 0.735, + "2014": 0.747, + "2015": 0.733, + "2016": 0.741, + "2017": 0.743, + "2018": 0.777, + "2019": 0.779, + "2020": 0.782, + "2021": 0.782 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr114", + "Region": "Provincia Autonoma di Trento", + "1990": 0.62, + "1991": 0.63, + "1992": 0.641, + "1993": 0.653, + "1994": 0.67, + "1995": 0.678, + "1996": 0.688, + "1997": 0.702, + "1998": 0.712, + "1999": 0.721, + "2000": 0.728, + "2001": 0.744, + "2002": 0.754, + "2003": 0.761, + "2004": 0.769, + "2005": 0.778, + "2006": 0.788, + "2007": 0.797, + "2008": 0.803, + "2009": 0.808, + "2010": 0.812, + "2011": 0.821, + "2012": 0.816, + "2013": 0.811, + "2014": 0.82, + "2015": 0.823, + "2016": 0.821, + "2017": 0.823, + "2018": 0.825, + "2019": 0.828, + "2020": 0.831, + "2021": 0.831 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr108", + "Region": "Puglia", + "1990": 0.58, + "1991": 0.589, + "1992": 0.6, + "1993": 0.61, + "1994": 0.626, + "1995": 0.634, + "1996": 0.643, + "1997": 0.656, + "1998": 0.666, + "1999": 0.674, + "2000": 0.681, + "2001": 0.694, + "2002": 0.703, + "2003": 0.711, + "2004": 0.715, + "2005": 0.721, + "2006": 0.73, + "2007": 0.738, + "2008": 0.743, + "2009": 0.743, + "2010": 0.747, + "2011": 0.756, + "2012": 0.753, + "2013": 0.749, + "2014": 0.756, + "2015": 0.751, + "2016": 0.75, + "2017": 0.753, + "2018": 0.757, + "2019": 0.762, + "2020": 0.765, + "2021": 0.765 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr112", + "Region": "Sardegna", + "1990": 0.591, + "1991": 0.6, + "1992": 0.611, + "1993": 0.621, + "1994": 0.638, + "1995": 0.646, + "1996": 0.655, + "1997": 0.668, + "1998": 0.678, + "1999": 0.686, + "2000": 0.693, + "2001": 0.706, + "2002": 0.715, + "2003": 0.726, + "2004": 0.729, + "2005": 0.735, + "2006": 0.745, + "2007": 0.751, + "2008": 0.756, + "2009": 0.759, + "2010": 0.764, + "2011": 0.774, + "2012": 0.771, + "2013": 0.765, + "2014": 0.766, + "2015": 0.769, + "2016": 0.768, + "2017": 0.777, + "2018": 0.778, + "2019": 0.786, + "2020": 0.789, + "2021": 0.789 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr111", + "Region": "Sicilia", + "1990": 0.585, + "1991": 0.594, + "1992": 0.604, + "1993": 0.615, + "1994": 0.631, + "1995": 0.639, + "1996": 0.648, + "1997": 0.661, + "1998": 0.671, + "1999": 0.679, + "2000": 0.686, + "2001": 0.697, + "2002": 0.707, + "2003": 0.715, + "2004": 0.72, + "2005": 0.726, + "2006": 0.735, + "2007": 0.741, + "2008": 0.746, + "2009": 0.751, + "2010": 0.753, + "2011": 0.761, + "2012": 0.759, + "2013": 0.753, + "2014": 0.756, + "2015": 0.751, + "2016": 0.75, + "2017": 0.755, + "2018": 0.76, + "2019": 0.765, + "2020": 0.768, + "2021": 0.768 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr118", + "Region": "Toscana", + "1990": 0.616, + "1991": 0.626, + "1992": 0.637, + "1993": 0.648, + "1994": 0.665, + "1995": 0.674, + "1996": 0.683, + "1997": 0.697, + "1998": 0.707, + "1999": 0.716, + "2000": 0.723, + "2001": 0.736, + "2002": 0.747, + "2003": 0.759, + "2004": 0.767, + "2005": 0.775, + "2006": 0.786, + "2007": 0.789, + "2008": 0.796, + "2009": 0.799, + "2010": 0.802, + "2011": 0.813, + "2012": 0.809, + "2013": 0.805, + "2014": 0.808, + "2015": 0.815, + "2016": 0.82, + "2017": 0.823, + "2018": 0.827, + "2019": 0.83, + "2020": 0.833, + "2021": 0.833 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr119", + "Region": "Umbria", + "1990": 0.615, + "1991": 0.624, + "1992": 0.636, + "1993": 0.647, + "1994": 0.664, + "1995": 0.672, + "1996": 0.682, + "1997": 0.696, + "1998": 0.706, + "1999": 0.715, + "2000": 0.722, + "2001": 0.735, + "2002": 0.746, + "2003": 0.755, + "2004": 0.766, + "2005": 0.772, + "2006": 0.782, + "2007": 0.788, + "2008": 0.793, + "2009": 0.797, + "2010": 0.802, + "2011": 0.812, + "2012": 0.811, + "2013": 0.806, + "2014": 0.804, + "2015": 0.804, + "2016": 0.807, + "2017": 0.815, + "2018": 0.816, + "2019": 0.825, + "2020": 0.828, + "2021": 0.828 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr102", + "Region": "Valle dAosta", + "1990": 0.565, + "1991": 0.574, + "1992": 0.584, + "1993": 0.595, + "1994": 0.61, + "1995": 0.618, + "1996": 0.627, + "1997": 0.639, + "1998": 0.649, + "1999": 0.657, + "2000": 0.663, + "2001": 0.676, + "2002": 0.684, + "2003": 0.693, + "2004": 0.7, + "2005": 0.706, + "2006": 0.714, + "2007": 0.72, + "2008": 0.724, + "2009": 0.726, + "2010": 0.73, + "2011": 0.741, + "2012": 0.741, + "2013": 0.74, + "2014": 0.746, + "2015": 0.741, + "2016": 0.746, + "2017": 0.746, + "2018": 0.753, + "2019": 0.757, + "2020": 0.76, + "2021": 0.76 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr115", + "Region": "Veneto", + "1990": 0.598, + "1991": 0.607, + "1992": 0.618, + "1993": 0.629, + "1994": 0.645, + "1995": 0.653, + "1996": 0.663, + "1997": 0.676, + "1998": 0.686, + "1999": 0.694, + "2000": 0.701, + "2001": 0.713, + "2002": 0.722, + "2003": 0.731, + "2004": 0.739, + "2005": 0.748, + "2006": 0.756, + "2007": 0.764, + "2008": 0.771, + "2009": 0.774, + "2010": 0.779, + "2011": 0.788, + "2012": 0.783, + "2013": 0.78, + "2014": 0.785, + "2015": 0.784, + "2016": 0.787, + "2017": 0.793, + "2018": 0.797, + "2019": 0.802, + "2020": 0.804, + "2021": 0.804 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "National", + "GDLCODE": "JAMt", + "Region": "Total", + "1990": 0.536, + "1991": 0.539, + "1992": 0.541, + "1993": 0.544, + "1994": 0.547, + "1995": 0.549, + "1996": 0.552, + "1997": 0.555, + "1998": 0.557, + "1999": 0.56, + "2000": 0.551, + "2001": 0.576, + "2002": 0.583, + "2003": 0.564, + "2004": 0.603, + "2005": 0.61, + "2006": 0.614, + "2007": 0.619, + "2008": 0.624, + "2009": 0.628, + "2010": 0.633, + "2011": 0.638, + "2012": 0.643, + "2013": 0.648, + "2014": 0.652, + "2015": 0.657, + "2016": 0.662, + "2017": 0.667, + "2018": 0.672, + "2019": 0.678, + "2020": 0.678, + "2021": 0.678 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr101", + "Region": "Kingston, St Andrew", + "1990": 0.549, + "1991": 0.552, + "1992": 0.555, + "1993": 0.558, + "1994": 0.561, + "1995": 0.563, + "1996": 0.566, + "1997": 0.569, + "1998": 0.572, + "1999": 0.575, + "2000": 0.565, + "2001": 0.591, + "2002": 0.599, + "2003": 0.579, + "2004": 0.619, + "2005": 0.626, + "2006": 0.635, + "2007": 0.645, + "2008": 0.655, + "2009": 0.665, + "2010": 0.675, + "2011": 0.685, + "2012": 0.69, + "2013": 0.695, + "2014": 0.701, + "2015": 0.706, + "2016": 0.711, + "2017": 0.717, + "2018": 0.722, + "2019": 0.728, + "2020": 0.728, + "2021": 0.728 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr106", + "Region": "Manchester, Clarendon", + "1990": 0.524, + "1991": 0.527, + "1992": 0.529, + "1993": 0.532, + "1994": 0.535, + "1995": 0.537, + "1996": 0.54, + "1997": 0.542, + "1998": 0.545, + "1999": 0.547, + "2000": 0.538, + "2001": 0.563, + "2002": 0.57, + "2003": 0.551, + "2004": 0.59, + "2005": 0.596, + "2006": 0.602, + "2007": 0.608, + "2008": 0.614, + "2009": 0.62, + "2010": 0.625, + "2011": 0.631, + "2012": 0.636, + "2013": 0.641, + "2014": 0.646, + "2015": 0.65, + "2016": 0.655, + "2017": 0.66, + "2018": 0.665, + "2019": 0.67, + "2020": 0.67, + "2021": 0.67 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr103", + "Region": "St Ann, St Catherine", + "1990": 0.555, + "1991": 0.558, + "1992": 0.561, + "1993": 0.564, + "1994": 0.566, + "1995": 0.569, + "1996": 0.572, + "1997": 0.575, + "1998": 0.578, + "1999": 0.58, + "2000": 0.571, + "2001": 0.597, + "2002": 0.605, + "2003": 0.585, + "2004": 0.625, + "2005": 0.632, + "2006": 0.632, + "2007": 0.632, + "2008": 0.632, + "2009": 0.632, + "2010": 0.632, + "2011": 0.632, + "2012": 0.637, + "2013": 0.642, + "2014": 0.646, + "2015": 0.651, + "2016": 0.656, + "2017": 0.661, + "2018": 0.666, + "2019": 0.671, + "2020": 0.671, + "2021": 0.671 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr105", + "Region": "St James, Hanover, Westmoreland", + "1990": 0.518, + "1991": 0.52, + "1992": 0.523, + "1993": 0.526, + "1994": 0.528, + "1995": 0.531, + "1996": 0.534, + "1997": 0.536, + "1998": 0.539, + "1999": 0.542, + "2000": 0.533, + "2001": 0.557, + "2002": 0.564, + "2003": 0.546, + "2004": 0.583, + "2005": 0.59, + "2006": 0.595, + "2007": 0.6, + "2008": 0.605, + "2009": 0.61, + "2010": 0.615, + "2011": 0.62, + "2012": 0.625, + "2013": 0.629, + "2014": 0.634, + "2015": 0.639, + "2016": 0.644, + "2017": 0.649, + "2018": 0.654, + "2019": 0.659, + "2020": 0.659, + "2021": 0.659 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr102", + "Region": "St Thomas, Portland, St Mary", + "1990": 0.521, + "1991": 0.523, + "1992": 0.526, + "1993": 0.529, + "1994": 0.531, + "1995": 0.534, + "1996": 0.536, + "1997": 0.539, + "1998": 0.541, + "1999": 0.544, + "2000": 0.535, + "2001": 0.559, + "2002": 0.567, + "2003": 0.548, + "2004": 0.586, + "2005": 0.592, + "2006": 0.594, + "2007": 0.596, + "2008": 0.598, + "2009": 0.6, + "2010": 0.602, + "2011": 0.604, + "2012": 0.608, + "2013": 0.613, + "2014": 0.617, + "2015": 0.622, + "2016": 0.627, + "2017": 0.631, + "2018": 0.636, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr104", + "Region": "Trelawny, St Elizabeth", + "1990": 0.511, + "1991": 0.514, + "1992": 0.516, + "1993": 0.518, + "1994": 0.521, + "1995": 0.523, + "1996": 0.526, + "1997": 0.528, + "1998": 0.53, + "1999": 0.533, + "2000": 0.523, + "2001": 0.548, + "2002": 0.555, + "2003": 0.536, + "2004": 0.574, + "2005": 0.581, + "2006": 0.582, + "2007": 0.583, + "2008": 0.585, + "2009": 0.586, + "2010": 0.588, + "2011": 0.589, + "2012": 0.593, + "2013": 0.598, + "2014": 0.602, + "2015": 0.607, + "2016": 0.612, + "2017": 0.616, + "2018": 0.621, + "2019": 0.625, + "2020": 0.625, + "2021": 0.625 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "National", + "GDLCODE": "JPNt", + "Region": "Total", + "1990": 0.75, + "1991": 0.752, + "1992": 0.754, + "1993": 0.766, + "1994": 0.779, + "1995": 0.783, + "1996": 0.785, + "1997": 0.788, + "1998": 0.791, + "1999": 0.794, + "2000": 0.797, + "2001": 0.8, + "2002": 0.804, + "2003": 0.807, + "2004": 0.81, + "2005": 0.814, + "2006": 0.817, + "2007": 0.82, + "2008": 0.823, + "2009": 0.827, + "2010": 0.83, + "2011": 0.838, + "2012": 0.845, + "2013": 0.853, + "2014": 0.861, + "2015": 0.864, + "2016": 0.867, + "2017": 0.867, + "2018": 0.867, + "2019": 0.868, + "2020": 0.868, + "2021": 0.868 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr108", + "Region": "Chugoku (Tottori, Shimane, Okayama, Hiroshima, Yamaguchi)", + "1990": 0.744, + "1991": 0.746, + "1992": 0.748, + "1993": 0.761, + "1994": 0.773, + "1995": 0.777, + "1996": 0.779, + "1997": 0.782, + "1998": 0.785, + "1999": 0.788, + "2000": 0.791, + "2001": 0.795, + "2002": 0.798, + "2003": 0.801, + "2004": 0.805, + "2005": 0.808, + "2006": 0.812, + "2007": 0.815, + "2008": 0.819, + "2009": 0.822, + "2010": 0.825, + "2011": 0.833, + "2012": 0.841, + "2013": 0.848, + "2014": 0.856, + "2015": 0.859, + "2016": 0.862, + "2017": 0.862, + "2018": 0.862, + "2019": 0.864, + "2020": 0.864, + "2021": 0.864 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr101", + "Region": "Hokkaido", + "1990": 0.713, + "1991": 0.715, + "1992": 0.717, + "1993": 0.729, + "1994": 0.741, + "1995": 0.744, + "1996": 0.747, + "1997": 0.749, + "1998": 0.752, + "1999": 0.755, + "2000": 0.758, + "2001": 0.761, + "2002": 0.764, + "2003": 0.768, + "2004": 0.771, + "2005": 0.774, + "2006": 0.777, + "2007": 0.78, + "2008": 0.783, + "2009": 0.786, + "2010": 0.79, + "2011": 0.797, + "2012": 0.804, + "2013": 0.812, + "2014": 0.819, + "2015": 0.822, + "2016": 0.824, + "2017": 0.825, + "2018": 0.825, + "2019": 0.826, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr105", + "Region": "Hokuriku (Niigata, Toyama, Ishikawa, Fukui)", + "1990": 0.701, + "1991": 0.703, + "1992": 0.705, + "1993": 0.716, + "1994": 0.728, + "1995": 0.731, + "1996": 0.734, + "1997": 0.737, + "1998": 0.739, + "1999": 0.742, + "2000": 0.745, + "2001": 0.749, + "2002": 0.753, + "2003": 0.758, + "2004": 0.762, + "2005": 0.766, + "2006": 0.77, + "2007": 0.774, + "2008": 0.778, + "2009": 0.783, + "2010": 0.787, + "2011": 0.794, + "2012": 0.801, + "2013": 0.809, + "2014": 0.816, + "2015": 0.819, + "2016": 0.821, + "2017": 0.822, + "2018": 0.822, + "2019": 0.823, + "2020": 0.823, + "2021": 0.823 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr107", + "Region": "Kansai region (Shiga, Kyoto, Osaka, Hyogo, Nara, Wakayama)", + "1990": 0.766, + "1991": 0.768, + "1992": 0.77, + "1993": 0.783, + "1994": 0.795, + "1995": 0.799, + "1996": 0.802, + "1997": 0.805, + "1998": 0.808, + "1999": 0.811, + "2000": 0.814, + "2001": 0.817, + "2002": 0.821, + "2003": 0.824, + "2004": 0.827, + "2005": 0.83, + "2006": 0.833, + "2007": 0.836, + "2008": 0.84, + "2009": 0.843, + "2010": 0.846, + "2011": 0.854, + "2012": 0.862, + "2013": 0.869, + "2014": 0.877, + "2015": 0.88, + "2016": 0.883, + "2017": 0.884, + "2018": 0.883, + "2019": 0.885, + "2020": 0.885, + "2021": 0.885 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr110", + "Region": "Kyushu (Fukuoka, Saga, Nagasaki, Kumamoto, Oita, Miyazaki, Kagoshima, Okinawa)", + "1990": 0.723, + "1991": 0.725, + "1992": 0.727, + "1993": 0.739, + "1994": 0.751, + "1995": 0.755, + "1996": 0.757, + "1997": 0.76, + "1998": 0.763, + "1999": 0.766, + "2000": 0.769, + "2001": 0.772, + "2002": 0.776, + "2003": 0.779, + "2004": 0.782, + "2005": 0.786, + "2006": 0.789, + "2007": 0.793, + "2008": 0.796, + "2009": 0.799, + "2010": 0.803, + "2011": 0.81, + "2012": 0.818, + "2013": 0.825, + "2014": 0.833, + "2015": 0.836, + "2016": 0.838, + "2017": 0.839, + "2018": 0.838, + "2019": 0.84, + "2020": 0.84, + "2021": 0.84 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr103", + "Region": "Northern-Kanto, Koshin (Ibaraki, Tochigi, Gunma)", + "1990": 0.719, + "1991": 0.722, + "1992": 0.724, + "1993": 0.736, + "1994": 0.748, + "1995": 0.751, + "1996": 0.754, + "1997": 0.756, + "1998": 0.759, + "1999": 0.762, + "2000": 0.765, + "2001": 0.769, + "2002": 0.772, + "2003": 0.776, + "2004": 0.78, + "2005": 0.783, + "2006": 0.787, + "2007": 0.79, + "2008": 0.794, + "2009": 0.798, + "2010": 0.801, + "2011": 0.809, + "2012": 0.816, + "2013": 0.823, + "2014": 0.831, + "2015": 0.834, + "2016": 0.836, + "2017": 0.837, + "2018": 0.837, + "2019": 0.838, + "2020": 0.838, + "2021": 0.838 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr109", + "Region": "Shikoku (Tokushima, Kagawa, Ehime, Kochi)", + "1990": 0.712, + "1991": 0.714, + "1992": 0.716, + "1993": 0.728, + "1994": 0.739, + "1995": 0.743, + "1996": 0.745, + "1997": 0.748, + "1998": 0.751, + "1999": 0.754, + "2000": 0.757, + "2001": 0.761, + "2002": 0.765, + "2003": 0.769, + "2004": 0.773, + "2005": 0.777, + "2006": 0.781, + "2007": 0.785, + "2008": 0.789, + "2009": 0.793, + "2010": 0.796, + "2011": 0.804, + "2012": 0.811, + "2013": 0.819, + "2014": 0.826, + "2015": 0.829, + "2016": 0.832, + "2017": 0.832, + "2018": 0.832, + "2019": 0.833, + "2020": 0.833, + "2021": 0.833 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr104", + "Region": "Southern-Kanto (Saitama, Chiba, Tokyo, Kanagawa, Yamanashi, Nagano)", + "1990": 0.801, + "1991": 0.804, + "1992": 0.806, + "1993": 0.819, + "1994": 0.832, + "1995": 0.836, + "1996": 0.839, + "1997": 0.842, + "1998": 0.845, + "1999": 0.848, + "2000": 0.852, + "2001": 0.855, + "2002": 0.858, + "2003": 0.86, + "2004": 0.863, + "2005": 0.866, + "2006": 0.869, + "2007": 0.872, + "2008": 0.875, + "2009": 0.878, + "2010": 0.88, + "2011": 0.889, + "2012": 0.897, + "2013": 0.905, + "2014": 0.913, + "2015": 0.916, + "2016": 0.919, + "2017": 0.92, + "2018": 0.919, + "2019": 0.921, + "2020": 0.921, + "2021": 0.921 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr102", + "Region": "Tohoku (Aomori, Iwate, Miyagi, Akita, Yamagata, Fukushima)", + "1990": 0.691, + "1991": 0.693, + "1992": 0.695, + "1993": 0.707, + "1994": 0.718, + "1995": 0.722, + "1996": 0.724, + "1997": 0.727, + "1998": 0.729, + "1999": 0.732, + "2000": 0.735, + "2001": 0.739, + "2002": 0.742, + "2003": 0.746, + "2004": 0.749, + "2005": 0.753, + "2006": 0.756, + "2007": 0.76, + "2008": 0.763, + "2009": 0.767, + "2010": 0.77, + "2011": 0.777, + "2012": 0.785, + "2013": 0.792, + "2014": 0.799, + "2015": 0.802, + "2016": 0.804, + "2017": 0.805, + "2018": 0.804, + "2019": 0.806, + "2020": 0.806, + "2021": 0.806 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr106", + "Region": "Toukai (Gifu, Shizuoka, Aichi, Mie)", + "1990": 0.732, + "1991": 0.734, + "1992": 0.736, + "1993": 0.748, + "1994": 0.76, + "1995": 0.764, + "1996": 0.767, + "1997": 0.769, + "1998": 0.772, + "1999": 0.775, + "2000": 0.778, + "2001": 0.782, + "2002": 0.785, + "2003": 0.789, + "2004": 0.793, + "2005": 0.796, + "2006": 0.8, + "2007": 0.804, + "2008": 0.807, + "2009": 0.811, + "2010": 0.815, + "2011": 0.822, + "2012": 0.83, + "2013": 0.837, + "2014": 0.845, + "2015": 0.848, + "2016": 0.851, + "2017": 0.851, + "2018": 0.851, + "2019": 0.852, + "2020": 0.852, + "2021": 0.852 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "National", + "GDLCODE": "JORt", + "Region": "Total", + "1990": 0.479, + "1991": 0.493, + "1992": 0.507, + "1993": 0.515, + "1994": 0.521, + "1995": 0.533, + "1996": 0.542, + "1997": 0.551, + "1998": 0.559, + "1999": 0.568, + "2000": 0.577, + "2001": 0.587, + "2002": 0.598, + "2003": 0.61, + "2004": 0.627, + "2005": 0.636, + "2006": 0.645, + "2007": 0.655, + "2008": 0.666, + "2009": 0.654, + "2010": 0.643, + "2011": 0.635, + "2012": 0.636, + "2013": 0.633, + "2014": 0.631, + "2015": 0.629, + "2016": 0.626, + "2017": 0.624, + "2018": 0.634, + "2019": 0.64, + "2020": 0.644, + "2021": 0.644 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr108", + "Region": "Aljoun", + "1990": 0.491, + "1991": 0.505, + "1992": 0.519, + "1993": 0.526, + "1994": 0.532, + "1995": 0.544, + "1996": 0.553, + "1997": 0.561, + "1998": 0.57, + "1999": 0.579, + "2000": 0.587, + "2001": 0.598, + "2002": 0.608, + "2003": 0.619, + "2004": 0.633, + "2005": 0.639, + "2006": 0.646, + "2007": 0.653, + "2008": 0.665, + "2009": 0.655, + "2010": 0.644, + "2011": 0.638, + "2012": 0.639, + "2013": 0.636, + "2014": 0.633, + "2015": 0.63, + "2016": 0.628, + "2017": 0.625, + "2018": 0.635, + "2019": 0.641, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr101", + "Region": "Amman", + "1990": 0.497, + "1991": 0.512, + "1992": 0.527, + "1993": 0.536, + "1994": 0.542, + "1995": 0.555, + "1996": 0.565, + "1997": 0.574, + "1998": 0.583, + "1999": 0.592, + "2000": 0.602, + "2001": 0.613, + "2002": 0.623, + "2003": 0.635, + "2004": 0.651, + "2005": 0.66, + "2006": 0.668, + "2007": 0.677, + "2008": 0.688, + "2009": 0.676, + "2010": 0.663, + "2011": 0.656, + "2012": 0.656, + "2013": 0.656, + "2014": 0.656, + "2015": 0.657, + "2016": 0.657, + "2017": 0.657, + "2018": 0.668, + "2019": 0.674, + "2020": 0.678, + "2021": 0.678 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr112", + "Region": "Aqaba", + "1990": 0.439, + "1991": 0.452, + "1992": 0.465, + "1993": 0.472, + "1994": 0.478, + "1995": 0.489, + "1996": 0.497, + "1997": 0.505, + "1998": 0.513, + "1999": 0.521, + "2000": 0.529, + "2001": 0.539, + "2002": 0.548, + "2003": 0.565, + "2004": 0.586, + "2005": 0.599, + "2006": 0.613, + "2007": 0.627, + "2008": 0.643, + "2009": 0.637, + "2010": 0.631, + "2011": 0.629, + "2012": 0.635, + "2013": 0.63, + "2014": 0.625, + "2015": 0.62, + "2016": 0.615, + "2017": 0.61, + "2018": 0.62, + "2019": 0.626, + "2020": 0.63, + "2021": 0.63 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr102", + "Region": "Balqa", + "1990": 0.477, + "1991": 0.49, + "1992": 0.504, + "1993": 0.512, + "1994": 0.517, + "1995": 0.529, + "1996": 0.538, + "1997": 0.546, + "1998": 0.555, + "1999": 0.563, + "2000": 0.572, + "2001": 0.582, + "2002": 0.592, + "2003": 0.603, + "2004": 0.617, + "2005": 0.624, + "2006": 0.631, + "2007": 0.639, + "2008": 0.651, + "2009": 0.64, + "2010": 0.63, + "2011": 0.624, + "2012": 0.625, + "2013": 0.622, + "2014": 0.618, + "2015": 0.615, + "2016": 0.612, + "2017": 0.609, + "2018": 0.619, + "2019": 0.625, + "2020": 0.629, + "2021": 0.629 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr105", + "Region": "Irbid", + "1990": 0.479, + "1991": 0.492, + "1992": 0.506, + "1993": 0.514, + "1994": 0.52, + "1995": 0.532, + "1996": 0.541, + "1997": 0.549, + "1998": 0.558, + "1999": 0.567, + "2000": 0.575, + "2001": 0.586, + "2002": 0.596, + "2003": 0.609, + "2004": 0.626, + "2005": 0.635, + "2006": 0.645, + "2007": 0.654, + "2008": 0.667, + "2009": 0.656, + "2010": 0.645, + "2011": 0.639, + "2012": 0.64, + "2013": 0.636, + "2014": 0.632, + "2015": 0.628, + "2016": 0.624, + "2017": 0.619, + "2018": 0.63, + "2019": 0.636, + "2020": 0.64, + "2021": 0.64 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr107", + "Region": "Jarash", + "1990": 0.444, + "1991": 0.457, + "1992": 0.469, + "1993": 0.476, + "1994": 0.481, + "1995": 0.491, + "1996": 0.499, + "1997": 0.507, + "1998": 0.514, + "1999": 0.522, + "2000": 0.53, + "2001": 0.539, + "2002": 0.549, + "2003": 0.568, + "2004": 0.59, + "2005": 0.606, + "2006": 0.622, + "2007": 0.638, + "2008": 0.649, + "2009": 0.637, + "2010": 0.625, + "2011": 0.617, + "2012": 0.617, + "2013": 0.616, + "2014": 0.615, + "2015": 0.613, + "2016": 0.612, + "2017": 0.61, + "2018": 0.621, + "2019": 0.627, + "2020": 0.63, + "2021": 0.63 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr109", + "Region": "Karak", + "1990": 0.459, + "1991": 0.472, + "1992": 0.485, + "1993": 0.492, + "1994": 0.497, + "1995": 0.508, + "1996": 0.517, + "1997": 0.525, + "1998": 0.533, + "1999": 0.541, + "2000": 0.549, + "2001": 0.559, + "2002": 0.569, + "2003": 0.584, + "2004": 0.604, + "2005": 0.615, + "2006": 0.628, + "2007": 0.639, + "2008": 0.654, + "2009": 0.645, + "2010": 0.637, + "2011": 0.632, + "2012": 0.636, + "2013": 0.636, + "2014": 0.636, + "2015": 0.636, + "2016": 0.636, + "2017": 0.636, + "2018": 0.648, + "2019": 0.653, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr111", + "Region": "Maan", + "1990": 0.439, + "1991": 0.451, + "1992": 0.464, + "1993": 0.47, + "1994": 0.475, + "1995": 0.485, + "1996": 0.493, + "1997": 0.5, + "1998": 0.508, + "1999": 0.515, + "2000": 0.523, + "2001": 0.532, + "2002": 0.541, + "2003": 0.555, + "2004": 0.572, + "2005": 0.581, + "2006": 0.591, + "2007": 0.601, + "2008": 0.604, + "2009": 0.586, + "2010": 0.569, + "2011": 0.556, + "2012": 0.55, + "2013": 0.55, + "2014": 0.551, + "2015": 0.552, + "2016": 0.552, + "2017": 0.553, + "2018": 0.563, + "2019": 0.568, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr104", + "Region": "Madaba", + "1990": 0.494, + "1991": 0.507, + "1992": 0.521, + "1993": 0.528, + "1994": 0.534, + "1995": 0.545, + "1996": 0.554, + "1997": 0.562, + "1998": 0.571, + "1999": 0.579, + "2000": 0.588, + "2001": 0.598, + "2002": 0.609, + "2003": 0.62, + "2004": 0.634, + "2005": 0.641, + "2006": 0.649, + "2007": 0.657, + "2008": 0.669, + "2009": 0.659, + "2010": 0.649, + "2011": 0.642, + "2012": 0.644, + "2013": 0.633, + "2014": 0.623, + "2015": 0.613, + "2016": 0.602, + "2017": 0.592, + "2018": 0.603, + "2019": 0.608, + "2020": 0.612, + "2021": 0.612 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr106", + "Region": "Mafraq", + "1990": 0.431, + "1991": 0.443, + "1992": 0.454, + "1993": 0.46, + "1994": 0.464, + "1995": 0.473, + "1996": 0.481, + "1997": 0.488, + "1998": 0.495, + "1999": 0.502, + "2000": 0.509, + "2001": 0.518, + "2002": 0.527, + "2003": 0.539, + "2004": 0.554, + "2005": 0.562, + "2006": 0.57, + "2007": 0.578, + "2008": 0.592, + "2009": 0.585, + "2010": 0.578, + "2011": 0.575, + "2012": 0.58, + "2013": 0.568, + "2014": 0.557, + "2015": 0.546, + "2016": 0.535, + "2017": 0.524, + "2018": 0.533, + "2019": 0.538, + "2020": 0.541, + "2021": 0.541 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr110", + "Region": "Tafiela", + "1990": 0.46, + "1991": 0.472, + "1992": 0.485, + "1993": 0.492, + "1994": 0.497, + "1995": 0.508, + "1996": 0.516, + "1997": 0.524, + "1998": 0.532, + "1999": 0.54, + "2000": 0.548, + "2001": 0.558, + "2002": 0.568, + "2003": 0.581, + "2004": 0.598, + "2005": 0.607, + "2006": 0.616, + "2007": 0.625, + "2008": 0.641, + "2009": 0.635, + "2010": 0.628, + "2011": 0.626, + "2012": 0.632, + "2013": 0.626, + "2014": 0.621, + "2015": 0.616, + "2016": 0.611, + "2017": 0.606, + "2018": 0.617, + "2019": 0.622, + "2020": 0.626, + "2021": 0.626 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr103", + "Region": "Zarqa", + "1990": 0.46, + "1991": 0.473, + "1992": 0.487, + "1993": 0.495, + "1994": 0.501, + "1995": 0.513, + "1996": 0.522, + "1997": 0.53, + "1998": 0.539, + "1999": 0.547, + "2000": 0.556, + "2001": 0.566, + "2002": 0.576, + "2003": 0.59, + "2004": 0.608, + "2005": 0.618, + "2006": 0.629, + "2007": 0.64, + "2008": 0.648, + "2009": 0.634, + "2010": 0.62, + "2011": 0.61, + "2012": 0.608, + "2013": 0.605, + "2014": 0.602, + "2015": 0.599, + "2016": 0.596, + "2017": 0.593, + "2018": 0.603, + "2019": 0.609, + "2020": 0.612, + "2021": 0.612 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "National", + "GDLCODE": "KAZt", + "Region": "Total", + "1990": 0.595, + "1991": 0.6, + "1992": 0.607, + "1993": 0.609, + "1994": 0.611, + "1995": 0.619, + "1996": 0.627, + "1997": 0.635, + "1998": 0.643, + "1999": 0.651, + "2000": 0.666, + "2001": 0.686, + "2002": 0.706, + "2003": 0.726, + "2004": 0.746, + "2005": 0.766, + "2006": 0.786, + "2007": 0.793, + "2008": 0.783, + "2009": 0.773, + "2010": 0.776, + "2011": 0.788, + "2012": 0.8, + "2013": 0.803, + "2014": 0.809, + "2015": 0.814, + "2016": 0.819, + "2017": 0.827, + "2018": 0.836, + "2019": 0.845, + "2020": 0.85, + "2021": 0.85 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr101", + "Region": "Almaty city", + "1990": 0.701, + "1991": 0.707, + "1992": 0.715, + "1993": 0.717, + "1994": 0.719, + "1995": 0.728, + "1996": 0.733, + "1997": 0.738, + "1998": 0.744, + "1999": 0.749, + "2000": 0.762, + "2001": 0.781, + "2002": 0.799, + "2003": 0.818, + "2004": 0.836, + "2005": 0.854, + "2006": 0.872, + "2007": 0.869, + "2008": 0.847, + "2009": 0.826, + "2010": 0.82, + "2011": 0.84, + "2012": 0.86, + "2013": 0.872, + "2014": 0.887, + "2015": 0.9, + "2016": 0.906, + "2017": 0.915, + "2018": 0.925, + "2019": 0.935, + "2020": 0.94, + "2021": 0.94 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr104", + "Region": "Central region (Karagandinskaya)", + "1990": 0.601, + "1991": 0.607, + "1992": 0.614, + "1993": 0.616, + "1994": 0.618, + "1995": 0.627, + "1996": 0.636, + "1997": 0.645, + "1998": 0.654, + "1999": 0.663, + "2000": 0.678, + "2001": 0.698, + "2002": 0.717, + "2003": 0.737, + "2004": 0.757, + "2005": 0.777, + "2006": 0.796, + "2007": 0.802, + "2008": 0.791, + "2009": 0.78, + "2010": 0.781, + "2011": 0.794, + "2012": 0.808, + "2013": 0.813, + "2014": 0.82, + "2015": 0.825, + "2016": 0.831, + "2017": 0.839, + "2018": 0.848, + "2019": 0.857, + "2020": 0.862, + "2021": 0.862 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr106", + "Region": "East region (East-Kazakhstanskaya)", + "1990": 0.589, + "1991": 0.594, + "1992": 0.601, + "1993": 0.603, + "1994": 0.605, + "1995": 0.613, + "1996": 0.622, + "1997": 0.63, + "1998": 0.638, + "1999": 0.647, + "2000": 0.662, + "2001": 0.682, + "2002": 0.703, + "2003": 0.723, + "2004": 0.744, + "2005": 0.765, + "2006": 0.785, + "2007": 0.791, + "2008": 0.78, + "2009": 0.768, + "2010": 0.77, + "2011": 0.784, + "2012": 0.8, + "2013": 0.806, + "2014": 0.814, + "2015": 0.821, + "2016": 0.827, + "2017": 0.835, + "2018": 0.844, + "2019": 0.853, + "2020": 0.857, + "2021": 0.857 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr105", + "Region": "North region (Akmolinskaya (incl Astana city), Kostnaiskaya, Pavlodarskaya, North-Kazakhstanskaya)", + "1990": 0.584, + "1991": 0.589, + "1992": 0.596, + "1993": 0.598, + "1994": 0.6, + "1995": 0.608, + "1996": 0.615, + "1997": 0.623, + "1998": 0.63, + "1999": 0.638, + "2000": 0.653, + "2001": 0.673, + "2002": 0.693, + "2003": 0.713, + "2004": 0.733, + "2005": 0.753, + "2006": 0.773, + "2007": 0.786, + "2008": 0.783, + "2009": 0.779, + "2010": 0.787, + "2011": 0.799, + "2012": 0.812, + "2013": 0.815, + "2014": 0.82, + "2015": 0.824, + "2016": 0.83, + "2017": 0.838, + "2018": 0.847, + "2019": 0.856, + "2020": 0.861, + "2021": 0.861 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr102", + "Region": "South region (Almatinskaya, Zhambylskaya, Kyzylordinskaya, South-Kazakhstanskaya)", + "1990": 0.585, + "1991": 0.59, + "1992": 0.597, + "1993": 0.599, + "1994": 0.602, + "1995": 0.609, + "1996": 0.619, + "1997": 0.629, + "1998": 0.638, + "1999": 0.648, + "2000": 0.66, + "2001": 0.677, + "2002": 0.694, + "2003": 0.711, + "2004": 0.727, + "2005": 0.744, + "2006": 0.761, + "2007": 0.77, + "2008": 0.762, + "2009": 0.753, + "2010": 0.758, + "2011": 0.768, + "2012": 0.779, + "2013": 0.782, + "2014": 0.786, + "2015": 0.789, + "2016": 0.794, + "2017": 0.803, + "2018": 0.811, + "2019": 0.82, + "2020": 0.824, + "2021": 0.824 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr103", + "Region": "West region (Aktyubinskaya, Atyrauskaya, Mangistauskaya, West-Kazakhstanskaya)", + "1990": 0.599, + "1991": 0.604, + "1992": 0.611, + "1993": 0.613, + "1994": 0.615, + "1995": 0.623, + "1996": 0.629, + "1997": 0.635, + "1998": 0.641, + "1999": 0.647, + "2000": 0.665, + "2001": 0.687, + "2002": 0.71, + "2003": 0.732, + "2004": 0.755, + "2005": 0.778, + "2006": 0.8, + "2007": 0.805, + "2008": 0.793, + "2009": 0.78, + "2010": 0.781, + "2011": 0.789, + "2012": 0.797, + "2013": 0.797, + "2014": 0.798, + "2015": 0.798, + "2016": 0.803, + "2017": 0.812, + "2018": 0.82, + "2019": 0.829, + "2020": 0.833, + "2021": 0.833 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "National", + "GDLCODE": "KENt", + "Region": "Total", + "1990": 0.335, + "1991": 0.343, + "1992": 0.35, + "1993": 0.358, + "1994": 0.365, + "1995": 0.373, + "1996": 0.38, + "1997": 0.387, + "1998": 0.394, + "1999": 0.398, + "2000": 0.403, + "2001": 0.41, + "2002": 0.408, + "2003": 0.427, + "2004": 0.446, + "2005": 0.451, + "2006": 0.46, + "2007": 0.469, + "2008": 0.479, + "2009": 0.489, + "2010": 0.493, + "2011": 0.495, + "2012": 0.497, + "2013": 0.498, + "2014": 0.5, + "2015": 0.502, + "2016": 0.506, + "2017": 0.511, + "2018": 0.515, + "2019": 0.519, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr102", + "Region": "Central", + "1990": 0.351, + "1991": 0.359, + "1992": 0.368, + "1993": 0.376, + "1994": 0.38, + "1995": 0.385, + "1996": 0.39, + "1997": 0.394, + "1998": 0.399, + "1999": 0.41, + "2000": 0.422, + "2001": 0.436, + "2002": 0.441, + "2003": 0.468, + "2004": 0.483, + "2005": 0.483, + "2006": 0.487, + "2007": 0.492, + "2008": 0.497, + "2009": 0.51, + "2010": 0.517, + "2011": 0.522, + "2012": 0.526, + "2013": 0.531, + "2014": 0.536, + "2015": 0.538, + "2016": 0.542, + "2017": 0.547, + "2018": 0.551, + "2019": 0.556, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr103", + "Region": "Coast", + "1990": 0.274, + "1991": 0.28, + "1992": 0.286, + "1993": 0.292, + "1994": 0.298, + "1995": 0.305, + "1996": 0.311, + "1997": 0.317, + "1998": 0.323, + "1999": 0.33, + "2000": 0.337, + "2001": 0.345, + "2002": 0.346, + "2003": 0.365, + "2004": 0.388, + "2005": 0.397, + "2006": 0.411, + "2007": 0.425, + "2008": 0.44, + "2009": 0.449, + "2010": 0.452, + "2011": 0.453, + "2012": 0.455, + "2013": 0.457, + "2014": 0.459, + "2015": 0.461, + "2016": 0.464, + "2017": 0.468, + "2018": 0.472, + "2019": 0.475, + "2020": 0.475, + "2021": 0.475 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr104", + "Region": "Eastern", + "1990": 0.317, + "1991": 0.324, + "1992": 0.331, + "1993": 0.337, + "1994": 0.344, + "1995": 0.35, + "1996": 0.356, + "1997": 0.362, + "1998": 0.368, + "1999": 0.376, + "2000": 0.384, + "2001": 0.395, + "2002": 0.396, + "2003": 0.419, + "2004": 0.437, + "2005": 0.439, + "2006": 0.447, + "2007": 0.455, + "2008": 0.463, + "2009": 0.473, + "2010": 0.477, + "2011": 0.479, + "2012": 0.482, + "2013": 0.484, + "2014": 0.486, + "2015": 0.488, + "2016": 0.492, + "2017": 0.495, + "2018": 0.499, + "2019": 0.503, + "2020": 0.503, + "2021": 0.503 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr101", + "Region": "Nairobi", + "1990": 0.407, + "1991": 0.419, + "1992": 0.43, + "1993": 0.442, + "1994": 0.453, + "1995": 0.464, + "1996": 0.474, + "1997": 0.484, + "1998": 0.495, + "1999": 0.5, + "2000": 0.505, + "2001": 0.512, + "2002": 0.51, + "2003": 0.529, + "2004": 0.553, + "2005": 0.563, + "2006": 0.576, + "2007": 0.59, + "2008": 0.604, + "2009": 0.606, + "2010": 0.603, + "2011": 0.597, + "2012": 0.591, + "2013": 0.585, + "2014": 0.579, + "2015": 0.581, + "2016": 0.587, + "2017": 0.592, + "2018": 0.597, + "2019": 0.603, + "2020": 0.603, + "2021": 0.603 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr108", + "Region": "North Eastern", + "1990": 0.125, + "1991": 0.127, + "1992": 0.129, + "1993": 0.131, + "1994": 0.13, + "1995": 0.13, + "1996": 0.13, + "1997": 0.13, + "1998": 0.13, + "1999": 0.129, + "2000": 0.128, + "2001": 0.129, + "2002": 0.125, + "2003": 0.132, + "2004": 0.157, + "2005": 0.175, + "2006": 0.195, + "2007": 0.216, + "2008": 0.236, + "2009": 0.243, + "2010": 0.245, + "2011": 0.247, + "2012": 0.248, + "2013": 0.25, + "2014": 0.252, + "2015": 0.253, + "2016": 0.255, + "2017": 0.256, + "2018": 0.257, + "2019": 0.259, + "2020": 0.259, + "2021": 0.259 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr105", + "Region": "Nyanza", + "1990": 0.33, + "1991": 0.336, + "1992": 0.343, + "1993": 0.35, + "1994": 0.359, + "1995": 0.369, + "1996": 0.377, + "1997": 0.386, + "1998": 0.394, + "1999": 0.402, + "2000": 0.41, + "2001": 0.421, + "2002": 0.421, + "2003": 0.445, + "2004": 0.464, + "2005": 0.467, + "2006": 0.475, + "2007": 0.484, + "2008": 0.493, + "2009": 0.503, + "2010": 0.507, + "2011": 0.509, + "2012": 0.512, + "2013": 0.514, + "2014": 0.516, + "2015": 0.518, + "2016": 0.522, + "2017": 0.527, + "2018": 0.531, + "2019": 0.535, + "2020": 0.535, + "2021": 0.535 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr106", + "Region": "Rift Valley", + "1990": 0.331, + "1991": 0.338, + "1992": 0.346, + "1993": 0.353, + "1994": 0.359, + "1995": 0.364, + "1996": 0.369, + "1997": 0.374, + "1998": 0.38, + "1999": 0.381, + "2000": 0.383, + "2001": 0.387, + "2002": 0.382, + "2003": 0.398, + "2004": 0.42, + "2005": 0.429, + "2006": 0.442, + "2007": 0.455, + "2008": 0.468, + "2009": 0.478, + "2010": 0.481, + "2011": 0.483, + "2012": 0.485, + "2013": 0.487, + "2014": 0.489, + "2015": 0.491, + "2016": 0.494, + "2017": 0.498, + "2018": 0.502, + "2019": 0.507, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr107", + "Region": "Western", + "1990": 0.351, + "1991": 0.359, + "1992": 0.367, + "1993": 0.375, + "1994": 0.38, + "1995": 0.386, + "1996": 0.391, + "1997": 0.396, + "1998": 0.401, + "1999": 0.406, + "2000": 0.412, + "2001": 0.42, + "2002": 0.418, + "2003": 0.439, + "2004": 0.458, + "2005": 0.461, + "2006": 0.469, + "2007": 0.478, + "2008": 0.486, + "2009": 0.496, + "2010": 0.499, + "2011": 0.5, + "2012": 0.501, + "2013": 0.502, + "2014": 0.504, + "2015": 0.505, + "2016": 0.51, + "2017": 0.514, + "2018": 0.518, + "2019": 0.522, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "National", + "GDLCODE": "KIRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.515, + "2001": 0.556, + "2002": 0.556, + "2003": 0.581, + "2004": 0.578, + "2005": 0.581, + "2006": 0.575, + "2007": 0.574, + "2008": 0.583, + "2009": 0.587, + "2010": 0.591, + "2011": 0.59, + "2012": 0.59, + "2013": 0.59, + "2014": 0.59, + "2015": 0.59, + "2016": 0.59, + "2017": 0.59, + "2018": 0.59, + "2019": 0.594, + "2020": 0.594, + "2021": 0.594 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr103", + "Region": "Central Gibert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.496, + "2001": 0.536, + "2002": 0.535, + "2003": 0.56, + "2004": 0.557, + "2005": 0.559, + "2006": 0.553, + "2007": 0.553, + "2008": 0.562, + "2009": 0.565, + "2010": 0.568, + "2011": 0.568, + "2012": 0.568, + "2013": 0.568, + "2014": 0.568, + "2015": 0.568, + "2016": 0.568, + "2017": 0.568, + "2018": 0.568, + "2019": 0.571, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr105", + "Region": "Line and Phoenix Group", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.478, + "2001": 0.515, + "2002": 0.515, + "2003": 0.538, + "2004": 0.536, + "2005": 0.538, + "2006": 0.533, + "2007": 0.533, + "2008": 0.541, + "2009": 0.545, + "2010": 0.548, + "2011": 0.548, + "2012": 0.548, + "2013": 0.548, + "2014": 0.548, + "2015": 0.548, + "2016": 0.548, + "2017": 0.548, + "2018": 0.548, + "2019": 0.552, + "2020": 0.552, + "2021": 0.552 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr102", + "Region": "Northern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.48, + "2001": 0.518, + "2002": 0.517, + "2003": 0.541, + "2004": 0.538, + "2005": 0.541, + "2006": 0.535, + "2007": 0.534, + "2008": 0.543, + "2009": 0.546, + "2010": 0.55, + "2011": 0.55, + "2012": 0.55, + "2013": 0.549, + "2014": 0.549, + "2015": 0.549, + "2016": 0.549, + "2017": 0.549, + "2018": 0.549, + "2019": 0.553, + "2020": 0.553, + "2021": 0.553 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr104", + "Region": "Southern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.5, + "2001": 0.54, + "2002": 0.539, + "2003": 0.565, + "2004": 0.562, + "2005": 0.564, + "2006": 0.557, + "2007": 0.557, + "2008": 0.566, + "2009": 0.569, + "2010": 0.572, + "2011": 0.572, + "2012": 0.572, + "2013": 0.572, + "2014": 0.572, + "2015": 0.572, + "2016": 0.572, + "2017": 0.572, + "2018": 0.572, + "2019": 0.575, + "2020": 0.575, + "2021": 0.575 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr101", + "Region": "Souyth Tarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.537, + "2001": 0.579, + "2002": 0.578, + "2003": 0.604, + "2004": 0.602, + "2005": 0.604, + "2006": 0.598, + "2007": 0.598, + "2008": 0.607, + "2009": 0.611, + "2010": 0.615, + "2011": 0.615, + "2012": 0.615, + "2013": 0.615, + "2014": 0.614, + "2015": 0.614, + "2016": 0.614, + "2017": 0.614, + "2018": 0.614, + "2019": 0.618, + "2020": 0.618, + "2021": 0.618 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "National", + "GDLCODE": "KSVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.693, + "2011": 0.71, + "2012": 0.726, + "2013": 0.735, + "2014": 0.745, + "2015": 0.753, + "2016": 0.756, + "2017": 0.764, + "2018": 0.767, + "2019": 0.774, + "2020": 0.771, + "2021": 0.771 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr107", + "Region": "Ferizaj", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.7, + "2011": 0.717, + "2012": 0.733, + "2013": 0.742, + "2014": 0.752, + "2015": 0.76, + "2016": 0.764, + "2017": 0.772, + "2018": 0.776, + "2019": 0.783, + "2020": 0.781, + "2021": 0.781 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr101", + "Region": "Gjakova", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.664, + "2011": 0.68, + "2012": 0.695, + "2013": 0.704, + "2014": 0.713, + "2015": 0.72, + "2016": 0.723, + "2017": 0.729, + "2018": 0.731, + "2019": 0.737, + "2020": 0.733, + "2021": 0.733 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr102", + "Region": "Gjilan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.69, + "2011": 0.707, + "2012": 0.722, + "2013": 0.732, + "2014": 0.741, + "2015": 0.753, + "2016": 0.759, + "2017": 0.77, + "2018": 0.777, + "2019": 0.787, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr103", + "Region": "Mitrovica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.722, + "2011": 0.74, + "2012": 0.756, + "2013": 0.765, + "2014": 0.776, + "2015": 0.782, + "2016": 0.784, + "2017": 0.789, + "2018": 0.791, + "2019": 0.796, + "2020": 0.791, + "2021": 0.791 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr104", + "Region": "Peja", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.698, + "2011": 0.714, + "2012": 0.73, + "2013": 0.739, + "2014": 0.749, + "2015": 0.754, + "2016": 0.754, + "2017": 0.758, + "2018": 0.758, + "2019": 0.761, + "2020": 0.755, + "2021": 0.755 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr106", + "Region": "Pristina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.721, + "2011": 0.738, + "2012": 0.755, + "2013": 0.764, + "2014": 0.774, + "2015": 0.782, + "2016": 0.785, + "2017": 0.792, + "2018": 0.794, + "2019": 0.801, + "2020": 0.797, + "2021": 0.797 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr105", + "Region": "Prizren", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.641, + "2011": 0.657, + "2012": 0.671, + "2013": 0.68, + "2014": 0.689, + "2015": 0.698, + "2016": 0.702, + "2017": 0.71, + "2018": 0.715, + "2019": 0.723, + "2020": 0.721, + "2021": 0.721 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "National", + "GDLCODE": "KWTt", + "Region": "Total", + "1990": 0.492, + "1991": 0.442, + "1992": 0.392, + "1993": 0.421, + "1994": 0.467, + "1995": 0.512, + "1996": 0.558, + "1997": 0.565, + "1998": 0.569, + "1999": 0.573, + "2000": 0.568, + "2001": 0.56, + "2002": 0.567, + "2003": 0.575, + "2004": 0.579, + "2005": 0.581, + "2006": 0.584, + "2007": 0.588, + "2008": 0.597, + "2009": 0.607, + "2010": 0.616, + "2011": 0.625, + "2012": 0.634, + "2013": 0.616, + "2014": 0.625, + "2015": 0.644, + "2016": 0.65, + "2017": 0.657, + "2018": 0.662, + "2019": 0.67, + "2020": 0.67, + "2021": 0.67 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr102", + "Region": "Ahmadi", + "1990": 0.509, + "1991": 0.457, + "1992": 0.405, + "1993": 0.436, + "1994": 0.483, + "1995": 0.53, + "1996": 0.577, + "1997": 0.585, + "1998": 0.589, + "1999": 0.593, + "2000": 0.588, + "2001": 0.579, + "2002": 0.587, + "2003": 0.594, + "2004": 0.599, + "2005": 0.601, + "2006": 0.604, + "2007": 0.609, + "2008": 0.618, + "2009": 0.627, + "2010": 0.637, + "2011": 0.646, + "2012": 0.656, + "2013": 0.638, + "2014": 0.647, + "2015": 0.666, + "2016": 0.673, + "2017": 0.679, + "2018": 0.685, + "2019": 0.693, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr101", + "Region": "Al Asimah, Hawalli, Al-Farwaniyah, Mubarak al-Sabah", + "1990": 0.489, + "1991": 0.439, + "1992": 0.389, + "1993": 0.419, + "1994": 0.463, + "1995": 0.509, + "1996": 0.554, + "1997": 0.561, + "1998": 0.565, + "1999": 0.569, + "2000": 0.564, + "2001": 0.556, + "2002": 0.563, + "2003": 0.571, + "2004": 0.575, + "2005": 0.577, + "2006": 0.58, + "2007": 0.584, + "2008": 0.593, + "2009": 0.602, + "2010": 0.611, + "2011": 0.621, + "2012": 0.63, + "2013": 0.612, + "2014": 0.621, + "2015": 0.639, + "2016": 0.646, + "2017": 0.652, + "2018": 0.657, + "2019": 0.665, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr103", + "Region": "Al-Jahra", + "1990": 0.476, + "1991": 0.427, + "1992": 0.379, + "1993": 0.407, + "1994": 0.451, + "1995": 0.495, + "1996": 0.539, + "1997": 0.546, + "1998": 0.55, + "1999": 0.554, + "2000": 0.549, + "2001": 0.541, + "2002": 0.548, + "2003": 0.555, + "2004": 0.56, + "2005": 0.561, + "2006": 0.564, + "2007": 0.569, + "2008": 0.577, + "2009": 0.586, + "2010": 0.595, + "2011": 0.604, + "2012": 0.613, + "2013": 0.596, + "2014": 0.604, + "2015": 0.622, + "2016": 0.628, + "2017": 0.635, + "2018": 0.64, + "2019": 0.648, + "2020": 0.648, + "2021": 0.648 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "National", + "GDLCODE": "KGZt", + "Region": "Total", + "1990": 0.64, + "1991": 0.637, + "1992": 0.636, + "1993": 0.63, + "1994": 0.622, + "1995": 0.619, + "1996": 0.624, + "1997": 0.637, + "1998": 0.65, + "1999": 0.663, + "2000": 0.674, + "2001": 0.685, + "2002": 0.69, + "2003": 0.699, + "2004": 0.7, + "2005": 0.703, + "2006": 0.709, + "2007": 0.71, + "2008": 0.71, + "2009": 0.709, + "2010": 0.713, + "2011": 0.713, + "2012": 0.724, + "2013": 0.733, + "2014": 0.738, + "2015": 0.739, + "2016": 0.74, + "2017": 0.739, + "2018": 0.739, + "2019": 0.741, + "2020": 0.746, + "2021": 0.746 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr108", + "Region": "Batken", + "1990": 0.599, + "1991": 0.597, + "1992": 0.595, + "1993": 0.589, + "1994": 0.581, + "1995": 0.577, + "1996": 0.582, + "1997": 0.595, + "1998": 0.607, + "1999": 0.619, + "2000": 0.63, + "2001": 0.641, + "2002": 0.645, + "2003": 0.654, + "2004": 0.654, + "2005": 0.658, + "2006": 0.663, + "2007": 0.667, + "2008": 0.67, + "2009": 0.673, + "2010": 0.679, + "2011": 0.683, + "2012": 0.698, + "2013": 0.712, + "2014": 0.721, + "2015": 0.71, + "2016": 0.7, + "2017": 0.686, + "2018": 0.673, + "2019": 0.674, + "2020": 0.678, + "2021": 0.678 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr101", + "Region": "Bishkek", + "1990": 0.734, + "1991": 0.732, + "1992": 0.731, + "1993": 0.724, + "1994": 0.715, + "1995": 0.712, + "1996": 0.718, + "1997": 0.733, + "1998": 0.748, + "1999": 0.762, + "2000": 0.775, + "2001": 0.788, + "2002": 0.793, + "2003": 0.803, + "2004": 0.804, + "2005": 0.808, + "2006": 0.814, + "2007": 0.819, + "2008": 0.821, + "2009": 0.824, + "2010": 0.831, + "2011": 0.833, + "2012": 0.849, + "2013": 0.857, + "2014": 0.859, + "2015": 0.852, + "2016": 0.846, + "2017": 0.836, + "2018": 0.827, + "2019": 0.829, + "2020": 0.834, + "2021": 0.834 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr103", + "Region": "Chuy", + "1990": 0.632, + "1991": 0.63, + "1992": 0.629, + "1993": 0.623, + "1994": 0.616, + "1995": 0.613, + "1996": 0.618, + "1997": 0.631, + "1998": 0.644, + "1999": 0.657, + "2000": 0.667, + "2001": 0.678, + "2002": 0.683, + "2003": 0.692, + "2004": 0.692, + "2005": 0.696, + "2006": 0.701, + "2007": 0.704, + "2008": 0.705, + "2009": 0.705, + "2010": 0.71, + "2011": 0.712, + "2012": 0.724, + "2013": 0.736, + "2014": 0.744, + "2015": 0.74, + "2016": 0.736, + "2017": 0.73, + "2018": 0.725, + "2019": 0.727, + "2020": 0.731, + "2021": 0.731 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr102", + "Region": "Issyk-Kul", + "1990": 0.65, + "1991": 0.648, + "1992": 0.647, + "1993": 0.64, + "1994": 0.632, + "1995": 0.629, + "1996": 0.634, + "1997": 0.647, + "1998": 0.661, + "1999": 0.674, + "2000": 0.685, + "2001": 0.697, + "2002": 0.701, + "2003": 0.711, + "2004": 0.711, + "2005": 0.715, + "2006": 0.72, + "2007": 0.717, + "2008": 0.711, + "2009": 0.706, + "2010": 0.705, + "2011": 0.701, + "2012": 0.708, + "2013": 0.724, + "2014": 0.735, + "2015": 0.736, + "2016": 0.738, + "2017": 0.737, + "2018": 0.737, + "2019": 0.739, + "2020": 0.743, + "2021": 0.743 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr105", + "Region": "Jalal-Abad", + "1990": 0.576, + "1991": 0.574, + "1992": 0.574, + "1993": 0.568, + "1994": 0.562, + "1995": 0.559, + "1996": 0.564, + "1997": 0.576, + "1998": 0.587, + "1999": 0.599, + "2000": 0.608, + "2001": 0.619, + "2002": 0.623, + "2003": 0.631, + "2004": 0.631, + "2005": 0.635, + "2006": 0.64, + "2007": 0.645, + "2008": 0.648, + "2009": 0.651, + "2010": 0.658, + "2011": 0.661, + "2012": 0.675, + "2013": 0.693, + "2014": 0.706, + "2015": 0.705, + "2016": 0.705, + "2017": 0.702, + "2018": 0.7, + "2019": 0.701, + "2020": 0.706, + "2021": 0.706 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr107", + "Region": "Naryn", + "1990": 0.635, + "1991": 0.633, + "1992": 0.632, + "1993": 0.626, + "1994": 0.618, + "1995": 0.615, + "1996": 0.62, + "1997": 0.633, + "1998": 0.646, + "1999": 0.659, + "2000": 0.67, + "2001": 0.681, + "2002": 0.686, + "2003": 0.695, + "2004": 0.695, + "2005": 0.699, + "2006": 0.704, + "2007": 0.707, + "2008": 0.708, + "2009": 0.709, + "2010": 0.714, + "2011": 0.715, + "2012": 0.728, + "2013": 0.738, + "2014": 0.742, + "2015": 0.743, + "2016": 0.745, + "2017": 0.744, + "2018": 0.744, + "2019": 0.746, + "2020": 0.751, + "2021": 0.751 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr106", + "Region": "Osh", + "1990": 0.634, + "1991": 0.631, + "1992": 0.63, + "1993": 0.623, + "1994": 0.614, + "1995": 0.611, + "1996": 0.616, + "1997": 0.629, + "1998": 0.642, + "1999": 0.655, + "2000": 0.666, + "2001": 0.678, + "2002": 0.682, + "2003": 0.692, + "2004": 0.692, + "2005": 0.696, + "2006": 0.701, + "2007": 0.696, + "2008": 0.69, + "2009": 0.684, + "2010": 0.682, + "2011": 0.677, + "2012": 0.683, + "2013": 0.687, + "2014": 0.686, + "2015": 0.691, + "2016": 0.697, + "2017": 0.699, + "2018": 0.703, + "2019": 0.705, + "2020": 0.709, + "2021": 0.709 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr104", + "Region": "Talas", + "1990": 0.611, + "1991": 0.608, + "1992": 0.608, + "1993": 0.602, + "1994": 0.594, + "1995": 0.592, + "1996": 0.597, + "1997": 0.609, + "1998": 0.622, + "1999": 0.634, + "2000": 0.644, + "2001": 0.655, + "2002": 0.659, + "2003": 0.668, + "2004": 0.668, + "2005": 0.672, + "2006": 0.677, + "2007": 0.68, + "2008": 0.681, + "2009": 0.682, + "2010": 0.688, + "2011": 0.69, + "2012": 0.702, + "2013": 0.726, + "2014": 0.744, + "2015": 0.733, + "2016": 0.722, + "2017": 0.707, + "2018": 0.694, + "2019": 0.696, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "National", + "GDLCODE": "LAOt", + "Region": "Total", + "1990": 0.286, + "1991": 0.292, + "1992": 0.298, + "1993": 0.304, + "1994": 0.315, + "1995": 0.309, + "1996": 0.328, + "1997": 0.337, + "1998": 0.346, + "1999": 0.35, + "2000": 0.352, + "2001": 0.355, + "2002": 0.364, + "2003": 0.376, + "2004": 0.382, + "2005": 0.391, + "2006": 0.395, + "2007": 0.403, + "2008": 0.41, + "2009": 0.421, + "2010": 0.429, + "2011": 0.443, + "2012": 0.451, + "2013": 0.462, + "2014": 0.473, + "2015": 0.479, + "2016": 0.48, + "2017": 0.479, + "2018": 0.472, + "2019": 0.47, + "2020": 0.461, + "2021": 0.461 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr117", + "Region": "Attapeu", + "1990": 0.253, + "1991": 0.258, + "1992": 0.263, + "1993": 0.269, + "1994": 0.279, + "1995": 0.273, + "1996": 0.29, + "1997": 0.298, + "1998": 0.306, + "1999": 0.31, + "2000": 0.312, + "2001": 0.314, + "2002": 0.322, + "2003": 0.332, + "2004": 0.338, + "2005": 0.346, + "2006": 0.35, + "2007": 0.357, + "2008": 0.363, + "2009": 0.372, + "2010": 0.379, + "2011": 0.392, + "2012": 0.399, + "2013": 0.418, + "2014": 0.437, + "2015": 0.452, + "2016": 0.462, + "2017": 0.468, + "2018": 0.461, + "2019": 0.46, + "2020": 0.45, + "2021": 0.45 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr105", + "Region": "Bokeo", + "1990": 0.249, + "1991": 0.254, + "1992": 0.259, + "1993": 0.264, + "1994": 0.274, + "1995": 0.268, + "1996": 0.285, + "1997": 0.293, + "1998": 0.301, + "1999": 0.305, + "2000": 0.306, + "2001": 0.308, + "2002": 0.317, + "2003": 0.327, + "2004": 0.333, + "2005": 0.34, + "2006": 0.344, + "2007": 0.351, + "2008": 0.357, + "2009": 0.367, + "2010": 0.374, + "2011": 0.387, + "2012": 0.393, + "2013": 0.408, + "2014": 0.421, + "2015": 0.431, + "2016": 0.435, + "2017": 0.437, + "2018": 0.43, + "2019": 0.429, + "2020": 0.42, + "2021": 0.42 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr111", + "Region": "Borikhamxay", + "1990": 0.288, + "1991": 0.294, + "1992": 0.3, + "1993": 0.306, + "1994": 0.317, + "1995": 0.311, + "1996": 0.331, + "1997": 0.339, + "1998": 0.348, + "1999": 0.353, + "2000": 0.355, + "2001": 0.357, + "2002": 0.367, + "2003": 0.379, + "2004": 0.385, + "2005": 0.394, + "2006": 0.399, + "2007": 0.406, + "2008": 0.414, + "2009": 0.424, + "2010": 0.433, + "2011": 0.447, + "2012": 0.454, + "2013": 0.471, + "2014": 0.487, + "2015": 0.498, + "2016": 0.504, + "2017": 0.506, + "2018": 0.499, + "2019": 0.498, + "2020": 0.488, + "2021": 0.488 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr116", + "Region": "Champasack", + "1990": 0.274, + "1991": 0.28, + "1992": 0.286, + "1993": 0.291, + "1994": 0.302, + "1995": 0.297, + "1996": 0.315, + "1997": 0.323, + "1998": 0.331, + "1999": 0.336, + "2000": 0.338, + "2001": 0.34, + "2002": 0.349, + "2003": 0.36, + "2004": 0.367, + "2005": 0.375, + "2006": 0.379, + "2007": 0.386, + "2008": 0.393, + "2009": 0.403, + "2010": 0.411, + "2011": 0.424, + "2012": 0.431, + "2013": 0.439, + "2014": 0.446, + "2015": 0.449, + "2016": 0.447, + "2017": 0.443, + "2018": 0.437, + "2019": 0.436, + "2020": 0.428, + "2021": 0.428 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr107", + "Region": "Huaphanh", + "1990": 0.295, + "1991": 0.301, + "1992": 0.307, + "1993": 0.313, + "1994": 0.324, + "1995": 0.317, + "1996": 0.338, + "1997": 0.347, + "1998": 0.356, + "1999": 0.361, + "2000": 0.363, + "2001": 0.365, + "2002": 0.375, + "2003": 0.387, + "2004": 0.394, + "2005": 0.403, + "2006": 0.408, + "2007": 0.416, + "2008": 0.423, + "2009": 0.435, + "2010": 0.443, + "2011": 0.458, + "2012": 0.466, + "2013": 0.47, + "2014": 0.473, + "2015": 0.471, + "2016": 0.464, + "2017": 0.454, + "2018": 0.446, + "2019": 0.444, + "2020": 0.434, + "2021": 0.434 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr112", + "Region": "Khammuane", + "1990": 0.256, + "1991": 0.261, + "1992": 0.266, + "1993": 0.271, + "1994": 0.281, + "1995": 0.276, + "1996": 0.293, + "1997": 0.301, + "1998": 0.309, + "1999": 0.313, + "2000": 0.315, + "2001": 0.317, + "2002": 0.326, + "2003": 0.336, + "2004": 0.342, + "2005": 0.35, + "2006": 0.354, + "2007": 0.36, + "2008": 0.367, + "2009": 0.376, + "2010": 0.384, + "2011": 0.397, + "2012": 0.403, + "2013": 0.423, + "2014": 0.442, + "2015": 0.457, + "2016": 0.466, + "2017": 0.472, + "2018": 0.465, + "2019": 0.463, + "2020": 0.454, + "2021": 0.454 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr103", + "Region": "Luangnamtha", + "1990": 0.252, + "1991": 0.257, + "1992": 0.261, + "1993": 0.266, + "1994": 0.276, + "1995": 0.27, + "1996": 0.288, + "1997": 0.296, + "1998": 0.304, + "1999": 0.308, + "2000": 0.309, + "2001": 0.311, + "2002": 0.32, + "2003": 0.33, + "2004": 0.336, + "2005": 0.344, + "2006": 0.348, + "2007": 0.355, + "2008": 0.361, + "2009": 0.371, + "2010": 0.378, + "2011": 0.391, + "2012": 0.398, + "2013": 0.408, + "2014": 0.418, + "2015": 0.424, + "2016": 0.424, + "2017": 0.421, + "2018": 0.413, + "2019": 0.411, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr106", + "Region": "Luangprabang", + "1990": 0.28, + "1991": 0.286, + "1992": 0.292, + "1993": 0.297, + "1994": 0.308, + "1995": 0.302, + "1996": 0.321, + "1997": 0.33, + "1998": 0.339, + "1999": 0.343, + "2000": 0.345, + "2001": 0.347, + "2002": 0.357, + "2003": 0.368, + "2004": 0.375, + "2005": 0.383, + "2006": 0.387, + "2007": 0.395, + "2008": 0.402, + "2009": 0.412, + "2010": 0.421, + "2011": 0.435, + "2012": 0.442, + "2013": 0.451, + "2014": 0.459, + "2015": 0.464, + "2016": 0.462, + "2017": 0.458, + "2018": 0.45, + "2019": 0.448, + "2020": 0.438, + "2021": 0.438 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr104", + "Region": "Oudomxay", + "1990": 0.238, + "1991": 0.243, + "1992": 0.248, + "1993": 0.252, + "1994": 0.262, + "1995": 0.255, + "1996": 0.273, + "1997": 0.28, + "1998": 0.288, + "1999": 0.291, + "2000": 0.293, + "2001": 0.294, + "2002": 0.303, + "2003": 0.313, + "2004": 0.318, + "2005": 0.326, + "2006": 0.329, + "2007": 0.336, + "2008": 0.342, + "2009": 0.351, + "2010": 0.358, + "2011": 0.371, + "2012": 0.377, + "2013": 0.401, + "2014": 0.424, + "2015": 0.443, + "2016": 0.456, + "2017": 0.465, + "2018": 0.458, + "2019": 0.456, + "2020": 0.446, + "2021": 0.446 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr102", + "Region": "Phongsaly", + "1990": 0.227, + "1991": 0.231, + "1992": 0.236, + "1993": 0.24, + "1994": 0.249, + "1995": 0.243, + "1996": 0.26, + "1997": 0.266, + "1998": 0.274, + "1999": 0.277, + "2000": 0.279, + "2001": 0.28, + "2002": 0.288, + "2003": 0.298, + "2004": 0.303, + "2005": 0.31, + "2006": 0.314, + "2007": 0.32, + "2008": 0.326, + "2009": 0.334, + "2010": 0.341, + "2011": 0.353, + "2012": 0.359, + "2013": 0.379, + "2014": 0.398, + "2015": 0.413, + "2016": 0.423, + "2017": 0.429, + "2018": 0.422, + "2019": 0.419, + "2020": 0.41, + "2021": 0.41 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr114", + "Region": "Saravane", + "1990": 0.21, + "1991": 0.214, + "1992": 0.218, + "1993": 0.222, + "1994": 0.231, + "1995": 0.226, + "1996": 0.241, + "1997": 0.247, + "1998": 0.254, + "1999": 0.257, + "2000": 0.258, + "2001": 0.26, + "2002": 0.267, + "2003": 0.276, + "2004": 0.281, + "2005": 0.287, + "2006": 0.29, + "2007": 0.296, + "2008": 0.301, + "2009": 0.309, + "2010": 0.316, + "2011": 0.326, + "2012": 0.332, + "2013": 0.346, + "2014": 0.36, + "2015": 0.371, + "2016": 0.377, + "2017": 0.38, + "2018": 0.374, + "2019": 0.373, + "2020": 0.365, + "2021": 0.365 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr113", + "Region": "Savannakhet", + "1990": 0.238, + "1991": 0.243, + "1992": 0.248, + "1993": 0.253, + "1994": 0.262, + "1995": 0.257, + "1996": 0.273, + "1997": 0.28, + "1998": 0.288, + "1999": 0.292, + "2000": 0.293, + "2001": 0.295, + "2002": 0.304, + "2003": 0.313, + "2004": 0.319, + "2005": 0.326, + "2006": 0.33, + "2007": 0.336, + "2008": 0.342, + "2009": 0.351, + "2010": 0.358, + "2011": 0.369, + "2012": 0.376, + "2013": 0.389, + "2014": 0.402, + "2015": 0.412, + "2016": 0.416, + "2017": 0.417, + "2018": 0.411, + "2019": 0.41, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr108", + "Region": "Sayabury", + "1990": 0.285, + "1991": 0.291, + "1992": 0.297, + "1993": 0.303, + "1994": 0.314, + "1995": 0.308, + "1996": 0.327, + "1997": 0.336, + "1998": 0.344, + "1999": 0.349, + "2000": 0.351, + "2001": 0.354, + "2002": 0.363, + "2003": 0.374, + "2004": 0.381, + "2005": 0.389, + "2006": 0.394, + "2007": 0.402, + "2008": 0.409, + "2009": 0.419, + "2010": 0.427, + "2011": 0.441, + "2012": 0.449, + "2013": 0.467, + "2014": 0.485, + "2015": 0.498, + "2016": 0.505, + "2017": 0.509, + "2018": 0.502, + "2019": 0.5, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr115", + "Region": "Sekong", + "1990": 0.283, + "1991": 0.289, + "1992": 0.294, + "1993": 0.3, + "1994": 0.311, + "1995": 0.304, + "1996": 0.324, + "1997": 0.333, + "1998": 0.342, + "1999": 0.346, + "2000": 0.348, + "2001": 0.35, + "2002": 0.36, + "2003": 0.372, + "2004": 0.378, + "2005": 0.387, + "2006": 0.391, + "2007": 0.399, + "2008": 0.406, + "2009": 0.417, + "2010": 0.425, + "2011": 0.44, + "2012": 0.447, + "2013": 0.451, + "2014": 0.454, + "2015": 0.453, + "2016": 0.446, + "2017": 0.437, + "2018": 0.429, + "2019": 0.427, + "2020": 0.418, + "2021": 0.418 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr101", + "Region": "Vientiane Municipality", + "1990": 0.417, + "1991": 0.426, + "1992": 0.435, + "1993": 0.444, + "1994": 0.46, + "1995": 0.454, + "1996": 0.479, + "1997": 0.491, + "1998": 0.504, + "1999": 0.511, + "2000": 0.515, + "2001": 0.519, + "2002": 0.532, + "2003": 0.548, + "2004": 0.558, + "2005": 0.57, + "2006": 0.577, + "2007": 0.587, + "2008": 0.598, + "2009": 0.612, + "2010": 0.624, + "2011": 0.644, + "2012": 0.655, + "2013": 0.658, + "2014": 0.66, + "2015": 0.657, + "2016": 0.647, + "2017": 0.635, + "2018": 0.627, + "2019": 0.627, + "2020": 0.616, + "2021": 0.616 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr110", + "Region": "Vientiane Province", + "1990": 0.325, + "1991": 0.331, + "1992": 0.338, + "1993": 0.345, + "1994": 0.358, + "1995": 0.352, + "1996": 0.373, + "1997": 0.382, + "1998": 0.392, + "1999": 0.398, + "2000": 0.4, + "2001": 0.403, + "2002": 0.414, + "2003": 0.427, + "2004": 0.434, + "2005": 0.444, + "2006": 0.449, + "2007": 0.457, + "2008": 0.466, + "2009": 0.477, + "2010": 0.487, + "2011": 0.502, + "2012": 0.511, + "2013": 0.515, + "2014": 0.518, + "2015": 0.517, + "2016": 0.51, + "2017": 0.5, + "2018": 0.493, + "2019": 0.491, + "2020": 0.481, + "2021": 0.481 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr109", + "Region": "Xiengkhuang", + "1990": 0.305, + "1991": 0.311, + "1992": 0.317, + "1993": 0.323, + "1994": 0.335, + "1995": 0.329, + "1996": 0.35, + "1997": 0.359, + "1998": 0.368, + "1999": 0.373, + "2000": 0.375, + "2001": 0.378, + "2002": 0.388, + "2003": 0.4, + "2004": 0.408, + "2005": 0.417, + "2006": 0.422, + "2007": 0.43, + "2008": 0.437, + "2009": 0.448, + "2010": 0.457, + "2011": 0.473, + "2012": 0.481, + "2013": 0.496, + "2014": 0.511, + "2015": 0.521, + "2016": 0.525, + "2017": 0.526, + "2018": 0.519, + "2019": 0.517, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "National", + "GDLCODE": "LVAt", + "Region": "Total", + "1990": 0.657, + "1991": 0.665, + "1992": 0.67, + "1993": 0.668, + "1994": 0.67, + "1995": 0.682, + "1996": 0.694, + "1997": 0.709, + "1998": 0.731, + "1999": 0.753, + "2000": 0.769, + "2001": 0.793, + "2002": 0.811, + "2003": 0.823, + "2004": 0.84, + "2005": 0.852, + "2006": 0.854, + "2007": 0.847, + "2008": 0.854, + "2009": 0.848, + "2010": 0.849, + "2011": 0.852, + "2012": 0.851, + "2013": 0.867, + "2014": 0.868, + "2015": 0.869, + "2016": 0.875, + "2017": 0.884, + "2018": 0.89, + "2019": 0.892, + "2020": 0.892, + "2021": 0.892 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr104", + "Region": "Kurzeme region", + "1990": 0.988, + "1991": 0.992, + "1992": 0.99, + "1993": 0.965, + "1994": 0.946, + "1995": 0.931, + "1996": 0.937, + "1997": 0.947, + "1998": 0.965, + "1999": 0.973, + "2000": 0.984, + "2001": 0.963, + "2002": 0.929, + "2003": 0.892, + "2004": 0.872, + "2005": 0.841, + "2006": 0.843, + "2007": 0.844, + "2008": 0.857, + "2009": 0.858, + "2010": 0.867, + "2011": 0.818, + "2012": 0.891, + "2013": 0.915, + "2014": 0.901, + "2015": 0.902, + "2016": 0.908, + "2017": 0.918, + "2018": 0.924, + "2019": 0.926, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr106", + "Region": "Latgale region", + "1990": 0.987, + "1991": 0.991, + "1992": 0.989, + "1993": 0.964, + "1994": 0.944, + "1995": 0.929, + "1996": 0.935, + "1997": 0.945, + "1998": 0.964, + "1999": 0.971, + "2000": 0.982, + "2001": 0.961, + "2002": 0.928, + "2003": 0.891, + "2004": 0.871, + "2005": 0.84, + "2006": 0.842, + "2007": 0.842, + "2008": 0.856, + "2009": 0.857, + "2010": 0.866, + "2011": 0.816, + "2012": 0.889, + "2013": 0.914, + "2014": 0.9, + "2015": 0.9, + "2016": 0.907, + "2017": 0.917, + "2018": 0.923, + "2019": 0.924, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr102", + "Region": "Pieriga region", + "1990": 1, + "1991": 1, + "1992": 1, + "1993": 1, + "1994": 0.979, + "1995": 0.965, + "1996": 0.97, + "1997": 0.98, + "1998": 0.999, + "1999": 1, + "2000": 1, + "2001": 0.997, + "2002": 0.975, + "2003": 0.941, + "2004": 0.92, + "2005": 0.887, + "2006": 0.89, + "2007": 0.89, + "2008": 0.904, + "2009": 0.905, + "2010": 0.915, + "2011": 0.862, + "2012": 0.94, + "2013": 0.966, + "2014": 0.95, + "2015": 0.951, + "2016": 0.958, + "2017": 0.969, + "2018": 0.975, + "2019": 0.977, + "2020": 0.977, + "2021": 0.977 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr101", + "Region": "Riga region", + "1990": 1, + "1991": 1, + "1992": 1, + "1993": 1, + "1994": 0.998, + "1995": 0.984, + "1996": 0.989, + "1997": 0.999, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 0.994, + "2003": 0.974, + "2004": 0.956, + "2005": 0.922, + "2006": 0.925, + "2007": 0.925, + "2008": 0.94, + "2009": 0.941, + "2010": 0.951, + "2011": 0.897, + "2012": 0.977, + "2013": 0.995, + "2014": 0.988, + "2015": 0.988, + "2016": 0.991, + "2017": 0.996, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr103", + "Region": "Vidzeme region", + "1990": 0.99, + "1991": 0.994, + "1992": 0.992, + "1993": 0.969, + "1994": 0.949, + "1995": 0.934, + "1996": 0.94, + "1997": 0.95, + "1998": 0.969, + "1999": 0.976, + "2000": 0.987, + "2001": 0.966, + "2002": 0.932, + "2003": 0.895, + "2004": 0.875, + "2005": 0.844, + "2006": 0.846, + "2007": 0.847, + "2008": 0.86, + "2009": 0.861, + "2010": 0.87, + "2011": 0.82, + "2012": 0.894, + "2013": 0.919, + "2014": 0.904, + "2015": 0.905, + "2016": 0.912, + "2017": 0.921, + "2018": 0.927, + "2019": 0.929, + "2020": 0.929, + "2021": 0.929 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr105", + "Region": "Zemgale region", + "1990": 0.988, + "1991": 0.992, + "1992": 0.99, + "1993": 0.966, + "1994": 0.946, + "1995": 0.931, + "1996": 0.937, + "1997": 0.947, + "1998": 0.965, + "1999": 0.973, + "2000": 0.984, + "2001": 0.963, + "2002": 0.929, + "2003": 0.892, + "2004": 0.872, + "2005": 0.841, + "2006": 0.843, + "2007": 0.844, + "2008": 0.858, + "2009": 0.858, + "2010": 0.867, + "2011": 0.818, + "2012": 0.891, + "2013": 0.916, + "2014": 0.901, + "2015": 0.902, + "2016": 0.909, + "2017": 0.918, + "2018": 0.924, + "2019": 0.926, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "National", + "GDLCODE": "LBNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.619, + "2006": 0.61, + "2007": 0.631, + "2008": 0.636, + "2009": 0.642, + "2010": 0.641, + "2011": 0.645, + "2012": 0.625, + "2013": 0.62, + "2014": 0.6, + "2015": 0.593, + "2016": 0.586, + "2017": 0.6, + "2018": 0.602, + "2019": 0.604, + "2020": 0.604, + "2021": 0.604 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr101", + "Region": "Beirut", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.548, + "2006": 0.54, + "2007": 0.559, + "2008": 0.563, + "2009": 0.569, + "2010": 0.568, + "2011": 0.571, + "2012": 0.554, + "2013": 0.549, + "2014": 0.532, + "2015": 0.525, + "2016": 0.519, + "2017": 0.532, + "2018": 0.533, + "2019": 0.535, + "2020": 0.535, + "2021": 0.535 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr104", + "Region": "Beqaa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.651, + "2006": 0.641, + "2007": 0.664, + "2008": 0.669, + "2009": 0.676, + "2010": 0.674, + "2011": 0.678, + "2012": 0.658, + "2013": 0.652, + "2014": 0.631, + "2015": 0.624, + "2016": 0.617, + "2017": 0.632, + "2018": 0.633, + "2019": 0.635, + "2020": 0.635, + "2021": 0.635 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr102", + "Region": "Mount Lebanon", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.598, + "2006": 0.589, + "2007": 0.61, + "2008": 0.615, + "2009": 0.621, + "2010": 0.62, + "2011": 0.623, + "2012": 0.604, + "2013": 0.599, + "2014": 0.58, + "2015": 0.573, + "2016": 0.566, + "2017": 0.58, + "2018": 0.582, + "2019": 0.584, + "2020": 0.584, + "2021": 0.584 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr103", + "Region": "Northern", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.664, + "2006": 0.655, + "2007": 0.677, + "2008": 0.683, + "2009": 0.689, + "2010": 0.688, + "2011": 0.692, + "2012": 0.671, + "2013": 0.665, + "2014": 0.644, + "2015": 0.636, + "2016": 0.629, + "2017": 0.644, + "2018": 0.646, + "2019": 0.648, + "2020": 0.648, + "2021": 0.648 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr105", + "Region": "Southern, Nabtieh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.642, + "2006": 0.633, + "2007": 0.655, + "2008": 0.66, + "2009": 0.667, + "2010": 0.666, + "2011": 0.67, + "2012": 0.649, + "2013": 0.644, + "2014": 0.623, + "2015": 0.616, + "2016": 0.609, + "2017": 0.623, + "2018": 0.625, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "National", + "GDLCODE": "LSOt", + "Region": "Total", + "1990": 0.377, + "1991": 0.384, + "1992": 0.385, + "1993": 0.38, + "1994": 0.391, + "1995": 0.396, + "1996": 0.397, + "1997": 0.398, + "1998": 0.399, + "1999": 0.4, + "2000": 0.426, + "2001": 0.44, + "2002": 0.455, + "2003": 0.476, + "2004": 0.491, + "2005": 0.506, + "2006": 0.507, + "2007": 0.508, + "2008": 0.508, + "2009": 0.506, + "2010": 0.503, + "2011": 0.512, + "2012": 0.521, + "2013": 0.514, + "2014": 0.516, + "2015": 0.517, + "2016": 0.524, + "2017": 0.531, + "2018": 0.533, + "2019": 0.535, + "2020": 0.535, + "2021": 0.535 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr103", + "Region": "Berea", + "1990": 0.373, + "1991": 0.379, + "1992": 0.381, + "1993": 0.375, + "1994": 0.386, + "1995": 0.391, + "1996": 0.391, + "1997": 0.392, + "1998": 0.393, + "1999": 0.394, + "2000": 0.42, + "2001": 0.434, + "2002": 0.448, + "2003": 0.47, + "2004": 0.484, + "2005": 0.51, + "2006": 0.522, + "2007": 0.532, + "2008": 0.542, + "2009": 0.548, + "2010": 0.553, + "2011": 0.56, + "2012": 0.567, + "2013": 0.557, + "2014": 0.557, + "2015": 0.552, + "2016": 0.554, + "2017": 0.556, + "2018": 0.552, + "2019": 0.554, + "2020": 0.554, + "2021": 0.554 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr101", + "Region": "Butha-Buthe", + "1990": 0.4, + "1991": 0.407, + "1992": 0.408, + "1993": 0.402, + "1994": 0.414, + "1995": 0.419, + "1996": 0.419, + "1997": 0.42, + "1998": 0.421, + "1999": 0.422, + "2000": 0.45, + "2001": 0.465, + "2002": 0.481, + "2003": 0.503, + "2004": 0.519, + "2005": 0.53, + "2006": 0.527, + "2007": 0.523, + "2008": 0.519, + "2009": 0.512, + "2010": 0.506, + "2011": 0.509, + "2012": 0.512, + "2013": 0.499, + "2014": 0.496, + "2015": 0.497, + "2016": 0.505, + "2017": 0.513, + "2018": 0.515, + "2019": 0.516, + "2020": 0.516, + "2021": 0.516 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr102", + "Region": "Leribe", + "1990": 0.394, + "1991": 0.401, + "1992": 0.402, + "1993": 0.397, + "1994": 0.409, + "1995": 0.414, + "1996": 0.414, + "1997": 0.415, + "1998": 0.417, + "1999": 0.418, + "2000": 0.445, + "2001": 0.46, + "2002": 0.475, + "2003": 0.498, + "2004": 0.513, + "2005": 0.525, + "2006": 0.524, + "2007": 0.521, + "2008": 0.518, + "2009": 0.513, + "2010": 0.507, + "2011": 0.517, + "2012": 0.528, + "2013": 0.522, + "2014": 0.525, + "2015": 0.529, + "2016": 0.539, + "2017": 0.549, + "2018": 0.553, + "2019": 0.555, + "2020": 0.555, + "2021": 0.555 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr105", + "Region": "Mafeteng", + "1990": 0.365, + "1991": 0.372, + "1992": 0.373, + "1993": 0.368, + "1994": 0.379, + "1995": 0.383, + "1996": 0.384, + "1997": 0.385, + "1998": 0.386, + "1999": 0.387, + "2000": 0.412, + "2001": 0.426, + "2002": 0.44, + "2003": 0.461, + "2004": 0.475, + "2005": 0.489, + "2006": 0.49, + "2007": 0.489, + "2008": 0.489, + "2009": 0.486, + "2010": 0.484, + "2011": 0.498, + "2012": 0.512, + "2013": 0.51, + "2014": 0.518, + "2015": 0.513, + "2016": 0.514, + "2017": 0.516, + "2018": 0.512, + "2019": 0.513, + "2020": 0.513, + "2021": 0.513 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr104", + "Region": "Maseru", + "1990": 0.422, + "1991": 0.43, + "1992": 0.432, + "1993": 0.427, + "1994": 0.439, + "1995": 0.445, + "1996": 0.446, + "1997": 0.448, + "1998": 0.45, + "1999": 0.452, + "2000": 0.48, + "2001": 0.496, + "2002": 0.513, + "2003": 0.536, + "2004": 0.553, + "2005": 0.569, + "2006": 0.568, + "2007": 0.566, + "2008": 0.565, + "2009": 0.561, + "2010": 0.558, + "2011": 0.568, + "2012": 0.579, + "2013": 0.572, + "2014": 0.576, + "2015": 0.575, + "2016": 0.58, + "2017": 0.586, + "2018": 0.586, + "2019": 0.588, + "2020": 0.588, + "2021": 0.588 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr106", + "Region": "Mohale s Hoek", + "1990": 0.354, + "1991": 0.36, + "1992": 0.361, + "1993": 0.356, + "1994": 0.367, + "1995": 0.371, + "1996": 0.372, + "1997": 0.372, + "1998": 0.373, + "1999": 0.374, + "2000": 0.399, + "2001": 0.412, + "2002": 0.426, + "2003": 0.446, + "2004": 0.46, + "2005": 0.471, + "2006": 0.47, + "2007": 0.468, + "2008": 0.466, + "2009": 0.463, + "2010": 0.459, + "2011": 0.468, + "2012": 0.477, + "2013": 0.471, + "2014": 0.474, + "2015": 0.477, + "2016": 0.487, + "2017": 0.497, + "2018": 0.501, + "2019": 0.502, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr109", + "Region": "Mokhotlong", + "1990": 0.322, + "1991": 0.328, + "1992": 0.329, + "1993": 0.324, + "1994": 0.334, + "1995": 0.337, + "1996": 0.337, + "1997": 0.338, + "1998": 0.339, + "1999": 0.339, + "2000": 0.362, + "2001": 0.374, + "2002": 0.386, + "2003": 0.405, + "2004": 0.417, + "2005": 0.432, + "2006": 0.436, + "2007": 0.439, + "2008": 0.441, + "2009": 0.442, + "2010": 0.442, + "2011": 0.443, + "2012": 0.444, + "2013": 0.431, + "2014": 0.426, + "2015": 0.427, + "2016": 0.435, + "2017": 0.442, + "2018": 0.444, + "2019": 0.445, + "2020": 0.445, + "2021": 0.445 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr108", + "Region": "Qasha s Nek", + "1990": 0.331, + "1991": 0.337, + "1992": 0.338, + "1993": 0.333, + "1994": 0.343, + "1995": 0.347, + "1996": 0.348, + "1997": 0.348, + "1998": 0.349, + "1999": 0.35, + "2000": 0.373, + "2001": 0.386, + "2002": 0.398, + "2003": 0.417, + "2004": 0.43, + "2005": 0.449, + "2006": 0.457, + "2007": 0.463, + "2008": 0.47, + "2009": 0.474, + "2010": 0.479, + "2011": 0.49, + "2012": 0.5, + "2013": 0.495, + "2014": 0.499, + "2015": 0.496, + "2016": 0.499, + "2017": 0.502, + "2018": 0.499, + "2019": 0.5, + "2020": 0.5, + "2021": 0.5 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr107", + "Region": "Quthing", + "1990": 0.345, + "1991": 0.351, + "1992": 0.352, + "1993": 0.347, + "1994": 0.357, + "1995": 0.361, + "1996": 0.361, + "1997": 0.362, + "1998": 0.362, + "1999": 0.363, + "2000": 0.388, + "2001": 0.401, + "2002": 0.414, + "2003": 0.434, + "2004": 0.447, + "2005": 0.46, + "2006": 0.462, + "2007": 0.463, + "2008": 0.464, + "2009": 0.463, + "2010": 0.462, + "2011": 0.473, + "2012": 0.484, + "2013": 0.479, + "2014": 0.484, + "2015": 0.48, + "2016": 0.484, + "2017": 0.487, + "2018": 0.485, + "2019": 0.486, + "2020": 0.486, + "2021": 0.486 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr110", + "Region": "Thaba-Tseka", + "1990": 0.312, + "1991": 0.317, + "1992": 0.318, + "1993": 0.313, + "1994": 0.323, + "1995": 0.326, + "1996": 0.326, + "1997": 0.327, + "1998": 0.327, + "1999": 0.327, + "2000": 0.35, + "2001": 0.362, + "2002": 0.373, + "2003": 0.391, + "2004": 0.403, + "2005": 0.414, + "2006": 0.414, + "2007": 0.414, + "2008": 0.413, + "2009": 0.411, + "2010": 0.408, + "2011": 0.418, + "2012": 0.427, + "2013": 0.423, + "2014": 0.427, + "2015": 0.423, + "2016": 0.425, + "2017": 0.427, + "2018": 0.425, + "2019": 0.426, + "2020": 0.426, + "2021": 0.426 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "National", + "GDLCODE": "LBRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.36, + "2000": 0.415, + "2001": 0.413, + "2002": 0.411, + "2003": 0.408, + "2004": 0.406, + "2005": 0.4, + "2006": 0.402, + "2007": 0.4, + "2008": 0.403, + "2009": 0.406, + "2010": 0.409, + "2011": 0.412, + "2012": 0.416, + "2013": 0.42, + "2014": 0.425, + "2015": 0.43, + "2016": 0.437, + "2017": 0.444, + "2018": 0.45, + "2019": 0.457, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr101", + "Region": "Bomi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.341, + "2000": 0.398, + "2001": 0.395, + "2002": 0.392, + "2003": 0.389, + "2004": 0.386, + "2005": 0.378, + "2006": 0.38, + "2007": 0.377, + "2008": 0.379, + "2009": 0.382, + "2010": 0.384, + "2011": 0.387, + "2012": 0.39, + "2013": 0.393, + "2014": 0.397, + "2015": 0.401, + "2016": 0.406, + "2017": 0.411, + "2018": 0.416, + "2019": 0.421, + "2020": 0.422, + "2021": 0.422 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr102", + "Region": "Bong", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.244, + "2000": 0.284, + "2001": 0.282, + "2002": 0.28, + "2003": 0.278, + "2004": 0.276, + "2005": 0.271, + "2006": 0.272, + "2007": 0.27, + "2008": 0.272, + "2009": 0.274, + "2010": 0.276, + "2011": 0.278, + "2012": 0.28, + "2013": 0.282, + "2014": 0.297, + "2015": 0.311, + "2016": 0.326, + "2017": 0.342, + "2018": 0.358, + "2019": 0.373, + "2020": 0.386, + "2021": 0.386 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr103", + "Region": "Gbarpolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.298, + "2000": 0.348, + "2001": 0.345, + "2002": 0.343, + "2003": 0.34, + "2004": 0.337, + "2005": 0.331, + "2006": 0.332, + "2007": 0.33, + "2008": 0.332, + "2009": 0.334, + "2010": 0.336, + "2011": 0.339, + "2012": 0.342, + "2013": 0.344, + "2014": 0.34, + "2015": 0.335, + "2016": 0.332, + "2017": 0.328, + "2018": 0.324, + "2019": 0.32, + "2020": 0.314, + "2021": 0.314 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr104", + "Region": "Grand Bassa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.267, + "2000": 0.311, + "2001": 0.309, + "2002": 0.307, + "2003": 0.305, + "2004": 0.302, + "2005": 0.297, + "2006": 0.298, + "2007": 0.296, + "2008": 0.298, + "2009": 0.3, + "2010": 0.302, + "2011": 0.304, + "2012": 0.307, + "2013": 0.31, + "2014": 0.315, + "2015": 0.321, + "2016": 0.328, + "2017": 0.335, + "2018": 0.342, + "2019": 0.35, + "2020": 0.354, + "2021": 0.354 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr105", + "Region": "Grand Cape Mount", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.262, + "2000": 0.307, + "2001": 0.305, + "2002": 0.302, + "2003": 0.3, + "2004": 0.297, + "2005": 0.291, + "2006": 0.292, + "2007": 0.29, + "2008": 0.292, + "2009": 0.293, + "2010": 0.295, + "2011": 0.298, + "2012": 0.3, + "2013": 0.302, + "2014": 0.307, + "2015": 0.312, + "2016": 0.318, + "2017": 0.324, + "2018": 0.329, + "2019": 0.335, + "2020": 0.339, + "2021": 0.339 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr106", + "Region": "Grand Gedeh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.345, + "2000": 0.4, + "2001": 0.397, + "2002": 0.395, + "2003": 0.392, + "2004": 0.39, + "2005": 0.383, + "2006": 0.385, + "2007": 0.382, + "2008": 0.385, + "2009": 0.388, + "2010": 0.39, + "2011": 0.394, + "2012": 0.397, + "2013": 0.401, + "2014": 0.406, + "2015": 0.412, + "2016": 0.419, + "2017": 0.426, + "2018": 0.433, + "2019": 0.44, + "2020": 0.443, + "2021": 0.443 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr107", + "Region": "Grand Kru", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.348, + "2000": 0.403, + "2001": 0.401, + "2002": 0.398, + "2003": 0.396, + "2004": 0.393, + "2005": 0.386, + "2006": 0.388, + "2007": 0.385, + "2008": 0.388, + "2009": 0.391, + "2010": 0.394, + "2011": 0.397, + "2012": 0.401, + "2013": 0.404, + "2014": 0.407, + "2015": 0.409, + "2016": 0.413, + "2017": 0.417, + "2018": 0.421, + "2019": 0.424, + "2020": 0.424, + "2021": 0.424 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr108", + "Region": "Lofa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.296, + "2000": 0.347, + "2001": 0.344, + "2002": 0.341, + "2003": 0.338, + "2004": 0.335, + "2005": 0.328, + "2006": 0.329, + "2007": 0.326, + "2008": 0.329, + "2009": 0.331, + "2010": 0.333, + "2011": 0.335, + "2012": 0.338, + "2013": 0.34, + "2014": 0.34, + "2015": 0.34, + "2016": 0.341, + "2017": 0.342, + "2018": 0.343, + "2019": 0.344, + "2020": 0.342, + "2021": 0.342 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr109", + "Region": "Margibi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.352, + "2000": 0.406, + "2001": 0.404, + "2002": 0.402, + "2003": 0.399, + "2004": 0.397, + "2005": 0.391, + "2006": 0.392, + "2007": 0.39, + "2008": 0.393, + "2009": 0.396, + "2010": 0.399, + "2011": 0.403, + "2012": 0.406, + "2013": 0.41, + "2014": 0.414, + "2015": 0.417, + "2016": 0.422, + "2017": 0.427, + "2018": 0.432, + "2019": 0.437, + "2020": 0.438, + "2021": 0.438 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr110", + "Region": "Maryland", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.376, + "2000": 0.434, + "2001": 0.432, + "2002": 0.429, + "2003": 0.427, + "2004": 0.425, + "2005": 0.418, + "2006": 0.42, + "2007": 0.418, + "2008": 0.421, + "2009": 0.424, + "2010": 0.427, + "2011": 0.431, + "2012": 0.435, + "2013": 0.439, + "2014": 0.441, + "2015": 0.443, + "2016": 0.446, + "2017": 0.45, + "2018": 0.453, + "2019": 0.457, + "2020": 0.456, + "2021": 0.456 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr111", + "Region": "Montserrado", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.45, + "2000": 0.513, + "2001": 0.512, + "2002": 0.51, + "2003": 0.508, + "2004": 0.507, + "2005": 0.5, + "2006": 0.503, + "2007": 0.502, + "2008": 0.506, + "2009": 0.51, + "2010": 0.514, + "2011": 0.52, + "2012": 0.526, + "2013": 0.531, + "2014": 0.536, + "2015": 0.541, + "2016": 0.548, + "2017": 0.556, + "2018": 0.563, + "2019": 0.57, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr112", + "Region": "Nimba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.346, + "2000": 0.401, + "2001": 0.398, + "2002": 0.396, + "2003": 0.393, + "2004": 0.391, + "2005": 0.384, + "2006": 0.386, + "2007": 0.384, + "2008": 0.387, + "2009": 0.389, + "2010": 0.392, + "2011": 0.396, + "2012": 0.399, + "2013": 0.403, + "2014": 0.406, + "2015": 0.409, + "2016": 0.414, + "2017": 0.419, + "2018": 0.423, + "2019": 0.428, + "2020": 0.429, + "2021": 0.429 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr113", + "Region": "River Cess", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.281, + "2000": 0.328, + "2001": 0.326, + "2002": 0.323, + "2003": 0.321, + "2004": 0.318, + "2005": 0.312, + "2006": 0.314, + "2007": 0.311, + "2008": 0.313, + "2009": 0.315, + "2010": 0.317, + "2011": 0.32, + "2012": 0.322, + "2013": 0.325, + "2014": 0.332, + "2015": 0.339, + "2016": 0.348, + "2017": 0.356, + "2018": 0.364, + "2019": 0.373, + "2020": 0.379, + "2021": 0.379 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr114", + "Region": "River Gee", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.303, + "2000": 0.349, + "2001": 0.348, + "2002": 0.346, + "2003": 0.344, + "2004": 0.342, + "2005": 0.337, + "2006": 0.339, + "2007": 0.337, + "2008": 0.34, + "2009": 0.342, + "2010": 0.345, + "2011": 0.348, + "2012": 0.351, + "2013": 0.355, + "2014": 0.369, + "2015": 0.383, + "2016": 0.398, + "2017": 0.414, + "2018": 0.43, + "2019": 0.446, + "2020": 0.458, + "2021": 0.458 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr115", + "Region": "Sinoe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.332, + "2000": 0.385, + "2001": 0.383, + "2002": 0.38, + "2003": 0.378, + "2004": 0.375, + "2005": 0.369, + "2006": 0.37, + "2007": 0.368, + "2008": 0.37, + "2009": 0.373, + "2010": 0.376, + "2011": 0.379, + "2012": 0.382, + "2013": 0.385, + "2014": 0.391, + "2015": 0.397, + "2016": 0.404, + "2017": 0.411, + "2018": 0.418, + "2019": 0.425, + "2020": 0.428, + "2021": 0.428 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "National", + "GDLCODE": "LBYt", + "Region": "Total", + "1990": 0.516, + "1991": 0.527, + "1992": 0.537, + "1993": 0.548, + "1994": 0.558, + "1995": 0.568, + "1996": 0.579, + "1997": 0.589, + "1998": 0.6, + "1999": 0.61, + "2000": 0.621, + "2001": 0.631, + "2002": 0.63, + "2003": 0.632, + "2004": 0.644, + "2005": 0.642, + "2006": 0.64, + "2007": 0.639, + "2008": 0.637, + "2009": 0.635, + "2010": 0.634, + "2011": 0.625, + "2012": 0.616, + "2013": 0.613, + "2014": 0.609, + "2015": 0.606, + "2016": 0.602, + "2017": 0.607, + "2018": 0.607, + "2019": 0.61, + "2020": 0.61, + "2021": 0.61 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr101", + "Region": "Cyrenaica", + "1990": 0.507, + "1991": 0.517, + "1992": 0.528, + "1993": 0.538, + "1994": 0.548, + "1995": 0.558, + "1996": 0.569, + "1997": 0.579, + "1998": 0.589, + "1999": 0.599, + "2000": 0.61, + "2001": 0.62, + "2002": 0.619, + "2003": 0.621, + "2004": 0.632, + "2005": 0.631, + "2006": 0.629, + "2007": 0.627, + "2008": 0.626, + "2009": 0.624, + "2010": 0.622, + "2011": 0.614, + "2012": 0.605, + "2013": 0.602, + "2014": 0.598, + "2015": 0.595, + "2016": 0.592, + "2017": 0.596, + "2018": 0.596, + "2019": 0.599, + "2020": 0.599, + "2021": 0.599 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr103", + "Region": "Fezzan", + "1990": 0.529, + "1991": 0.539, + "1992": 0.55, + "1993": 0.561, + "1994": 0.571, + "1995": 0.582, + "1996": 0.593, + "1997": 0.604, + "1998": 0.614, + "1999": 0.625, + "2000": 0.636, + "2001": 0.646, + "2002": 0.645, + "2003": 0.648, + "2004": 0.659, + "2005": 0.657, + "2006": 0.656, + "2007": 0.654, + "2008": 0.652, + "2009": 0.65, + "2010": 0.649, + "2011": 0.64, + "2012": 0.631, + "2013": 0.627, + "2014": 0.624, + "2015": 0.62, + "2016": 0.617, + "2017": 0.622, + "2018": 0.622, + "2019": 0.625, + "2020": 0.625, + "2021": 0.625 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr102", + "Region": "Tripolitania", + "1990": 0.519, + "1991": 0.53, + "1992": 0.54, + "1993": 0.551, + "1994": 0.561, + "1995": 0.572, + "1996": 0.582, + "1997": 0.593, + "1998": 0.604, + "1999": 0.614, + "2000": 0.625, + "2001": 0.635, + "2002": 0.634, + "2003": 0.636, + "2004": 0.648, + "2005": 0.646, + "2006": 0.644, + "2007": 0.643, + "2008": 0.641, + "2009": 0.639, + "2010": 0.637, + "2011": 0.629, + "2012": 0.62, + "2013": 0.616, + "2014": 0.613, + "2015": 0.609, + "2016": 0.606, + "2017": 0.611, + "2018": 0.611, + "2019": 0.614, + "2020": 0.614, + "2021": 0.614 + }, + { + "Country": "Liechtenstein", + "Continent": "Europe", + "ISO_Code": "LIE", + "Level": "National", + "GDLCODE": "LIEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.759, + "2001": 0.764, + "2002": 0.769, + "2003": 0.774, + "2004": 0.783, + "2005": 0.781, + "2006": 0.788, + "2007": 0.789, + "2008": 0.798, + "2009": 0.796, + "2010": 0.799, + "2011": 0.811, + "2012": 0.818, + "2013": 0.815, + "2014": 0.812, + "2015": 0.817, + "2016": 0.82, + "2017": 0.827, + "2018": 0.822, + "2019": 0.84, + "2020": 0.84, + "2021": 0.84 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "National", + "GDLCODE": "LTUt", + "Region": "Total", + "1990": 0.662, + "1991": 0.662, + "1992": 0.656, + "1993": 0.652, + "1994": 0.655, + "1995": 0.667, + "1996": 0.685, + "1997": 0.706, + "1998": 0.725, + "1999": 0.744, + "2000": 0.765, + "2001": 0.787, + "2002": 0.806, + "2003": 0.826, + "2004": 0.835, + "2005": 0.851, + "2006": 0.864, + "2007": 0.869, + "2008": 0.875, + "2009": 0.878, + "2010": 0.882, + "2011": 0.887, + "2012": 0.882, + "2013": 0.881, + "2014": 0.884, + "2015": 0.889, + "2016": 0.895, + "2017": 0.902, + "2018": 0.903, + "2019": 0.899, + "2020": 0.902, + "2021": 0.902 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr101", + "Region": "Alytus County", + "1990": 0.624, + "1991": 0.624, + "1992": 0.618, + "1993": 0.614, + "1994": 0.618, + "1995": 0.629, + "1996": 0.646, + "1997": 0.665, + "1998": 0.683, + "1999": 0.707, + "2000": 0.749, + "2001": 0.777, + "2002": 0.784, + "2003": 0.815, + "2004": 0.812, + "2005": 0.839, + "2006": 0.865, + "2007": 0.847, + "2008": 0.856, + "2009": 0.854, + "2010": 0.859, + "2011": 0.856, + "2012": 0.845, + "2013": 0.848, + "2014": 0.849, + "2015": 0.859, + "2016": 0.871, + "2017": 0.877, + "2018": 0.879, + "2019": 0.874, + "2020": 0.878, + "2021": 0.878 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr102", + "Region": "Kaunas County", + "1990": 0.67, + "1991": 0.67, + "1992": 0.664, + "1993": 0.659, + "1994": 0.663, + "1995": 0.675, + "1996": 0.693, + "1997": 0.714, + "1998": 0.733, + "1999": 0.765, + "2000": 0.782, + "2001": 0.819, + "2002": 0.823, + "2003": 0.834, + "2004": 0.847, + "2005": 0.859, + "2006": 0.886, + "2007": 0.891, + "2008": 0.901, + "2009": 0.9, + "2010": 0.902, + "2011": 0.908, + "2012": 0.899, + "2013": 0.899, + "2014": 0.901, + "2015": 0.901, + "2016": 0.906, + "2017": 0.913, + "2018": 0.914, + "2019": 0.91, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr103", + "Region": "Klaipeda County", + "1990": 0.676, + "1991": 0.676, + "1992": 0.67, + "1993": 0.665, + "1994": 0.669, + "1995": 0.681, + "1996": 0.699, + "1997": 0.72, + "1998": 0.74, + "1999": 0.748, + "2000": 0.765, + "2001": 0.794, + "2002": 0.804, + "2003": 0.835, + "2004": 0.836, + "2005": 0.846, + "2006": 0.855, + "2007": 0.873, + "2008": 0.87, + "2009": 0.877, + "2010": 0.88, + "2011": 0.892, + "2012": 0.889, + "2013": 0.881, + "2014": 0.89, + "2015": 0.888, + "2016": 0.889, + "2017": 0.896, + "2018": 0.897, + "2019": 0.893, + "2020": 0.896, + "2021": 0.896 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr104", + "Region": "Marijampole County", + "1990": 0.64, + "1991": 0.64, + "1992": 0.633, + "1993": 0.629, + "1994": 0.633, + "1995": 0.644, + "1996": 0.661, + "1997": 0.681, + "1998": 0.7, + "1999": 0.737, + "2000": 0.747, + "2001": 0.753, + "2002": 0.773, + "2003": 0.793, + "2004": 0.795, + "2005": 0.8, + "2006": 0.825, + "2007": 0.834, + "2008": 0.835, + "2009": 0.841, + "2010": 0.829, + "2011": 0.834, + "2012": 0.828, + "2013": 0.837, + "2014": 0.837, + "2015": 0.844, + "2016": 0.842, + "2017": 0.849, + "2018": 0.85, + "2019": 0.846, + "2020": 0.849, + "2021": 0.849 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr105", + "Region": "Panevezys County", + "1990": 0.643, + "1991": 0.643, + "1992": 0.636, + "1993": 0.632, + "1994": 0.636, + "1995": 0.647, + "1996": 0.665, + "1997": 0.685, + "1998": 0.703, + "1999": 0.713, + "2000": 0.742, + "2001": 0.769, + "2002": 0.787, + "2003": 0.815, + "2004": 0.826, + "2005": 0.839, + "2006": 0.846, + "2007": 0.837, + "2008": 0.857, + "2009": 0.849, + "2010": 0.848, + "2011": 0.855, + "2012": 0.851, + "2013": 0.841, + "2014": 0.848, + "2015": 0.854, + "2016": 0.861, + "2017": 0.868, + "2018": 0.869, + "2019": 0.865, + "2020": 0.868, + "2021": 0.868 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr106", + "Region": "Siauliai County", + "1990": 0.639, + "1991": 0.639, + "1992": 0.633, + "1993": 0.629, + "1994": 0.632, + "1995": 0.644, + "1996": 0.661, + "1997": 0.681, + "1998": 0.699, + "1999": 0.722, + "2000": 0.739, + "2001": 0.761, + "2002": 0.791, + "2003": 0.803, + "2004": 0.801, + "2005": 0.823, + "2006": 0.826, + "2007": 0.83, + "2008": 0.837, + "2009": 0.844, + "2010": 0.845, + "2011": 0.855, + "2012": 0.851, + "2013": 0.855, + "2014": 0.86, + "2015": 0.857, + "2016": 0.862, + "2017": 0.868, + "2018": 0.87, + "2019": 0.865, + "2020": 0.869, + "2021": 0.869 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr107", + "Region": "Taurage County", + "1990": 0.631, + "1991": 0.631, + "1992": 0.625, + "1993": 0.621, + "1994": 0.624, + "1995": 0.635, + "1996": 0.652, + "1997": 0.672, + "1998": 0.69, + "1999": 0.709, + "2000": 0.731, + "2001": 0.75, + "2002": 0.784, + "2003": 0.808, + "2004": 0.818, + "2005": 0.799, + "2006": 0.811, + "2007": 0.802, + "2008": 0.816, + "2009": 0.811, + "2010": 0.802, + "2011": 0.808, + "2012": 0.822, + "2013": 0.804, + "2014": 0.803, + "2015": 0.819, + "2016": 0.837, + "2017": 0.843, + "2018": 0.845, + "2019": 0.841, + "2020": 0.844, + "2021": 0.844 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr108", + "Region": "Telsiai County", + "1990": 0.63, + "1991": 0.63, + "1992": 0.624, + "1993": 0.62, + "1994": 0.623, + "1995": 0.634, + "1996": 0.652, + "1997": 0.671, + "1998": 0.689, + "1999": 0.704, + "2000": 0.733, + "2001": 0.744, + "2002": 0.774, + "2003": 0.766, + "2004": 0.784, + "2005": 0.825, + "2006": 0.817, + "2007": 0.815, + "2008": 0.824, + "2009": 0.834, + "2010": 0.842, + "2011": 0.841, + "2012": 0.825, + "2013": 0.847, + "2014": 0.848, + "2015": 0.839, + "2016": 0.856, + "2017": 0.862, + "2018": 0.864, + "2019": 0.859, + "2020": 0.863, + "2021": 0.863 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr109", + "Region": "Utena County", + "1990": 0.635, + "1991": 0.635, + "1992": 0.629, + "1993": 0.625, + "1994": 0.629, + "1995": 0.64, + "1996": 0.657, + "1997": 0.677, + "1998": 0.695, + "1999": 0.7, + "2000": 0.741, + "2001": 0.77, + "2002": 0.794, + "2003": 0.797, + "2004": 0.793, + "2005": 0.836, + "2006": 0.833, + "2007": 0.838, + "2008": 0.858, + "2009": 0.875, + "2010": 0.863, + "2011": 0.859, + "2012": 0.858, + "2013": 0.852, + "2014": 0.859, + "2015": 0.868, + "2016": 0.863, + "2017": 0.869, + "2018": 0.871, + "2019": 0.867, + "2020": 0.87, + "2021": 0.87 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr110", + "Region": "Vilnius County", + "1990": 0.697, + "1991": 0.697, + "1992": 0.69, + "1993": 0.686, + "1994": 0.689, + "1995": 0.702, + "1996": 0.72, + "1997": 0.742, + "1998": 0.762, + "1999": 0.775, + "2000": 0.794, + "2001": 0.799, + "2002": 0.829, + "2003": 0.86, + "2004": 0.875, + "2005": 0.888, + "2006": 0.902, + "2007": 0.913, + "2008": 0.906, + "2009": 0.914, + "2010": 0.926, + "2011": 0.93, + "2012": 0.923, + "2013": 0.922, + "2014": 0.923, + "2015": 0.933, + "2016": 0.942, + "2017": 0.949, + "2018": 0.951, + "2019": 0.946, + "2020": 0.95, + "2021": 0.95 + }, + { + "Country": "Luxembourg", + "Continent": "Europe", + "ISO_Code": "LUX", + "Level": "National", + "GDLCODE": "LUXt", + "Region": "Total", + "1990": 0.586, + "1991": 0.6, + "1992": 0.615, + "1993": 0.629, + "1994": 0.644, + "1995": 0.651, + "1996": 0.669, + "1997": 0.679, + "1998": 0.694, + "1999": 0.721, + "2000": 0.725, + "2001": 0.733, + "2002": 0.743, + "2003": 0.751, + "2004": 0.754, + "2005": 0.757, + "2006": 0.759, + "2007": 0.763, + "2008": 0.783, + "2009": 0.809, + "2010": 0.815, + "2011": 0.815, + "2012": 0.819, + "2013": 0.827, + "2014": 0.837, + "2015": 0.806, + "2016": 0.823, + "2017": 0.818, + "2018": 0.825, + "2019": 0.834, + "2020": 0.834, + "2021": 0.834 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "National", + "GDLCODE": "MDGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.357, + "2001": 0.367, + "2002": 0.376, + "2003": 0.386, + "2004": 0.395, + "2005": 0.402, + "2006": 0.405, + "2007": 0.414, + "2008": 0.424, + "2009": 0.438, + "2010": 0.439, + "2011": 0.44, + "2012": 0.446, + "2013": 0.45, + "2014": 0.453, + "2015": 0.458, + "2016": 0.455, + "2017": 0.454, + "2018": 0.452, + "2019": 0.452, + "2020": 0.452, + "2021": 0.452 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr112", + "Region": "Alaotra Mangoro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.382, + "2001": 0.392, + "2002": 0.402, + "2003": 0.412, + "2004": 0.423, + "2005": 0.43, + "2006": 0.433, + "2007": 0.442, + "2008": 0.453, + "2009": 0.468, + "2010": 0.468, + "2011": 0.468, + "2012": 0.473, + "2013": 0.476, + "2014": 0.479, + "2015": 0.483, + "2016": 0.48, + "2017": 0.477, + "2018": 0.474, + "2019": 0.475, + "2020": 0.475, + "2021": 0.475 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr101", + "Region": "Analamanga", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.488, + "2001": 0.501, + "2002": 0.515, + "2003": 0.528, + "2004": 0.542, + "2005": 0.55, + "2006": 0.555, + "2007": 0.566, + "2008": 0.578, + "2009": 0.596, + "2010": 0.599, + "2011": 0.602, + "2012": 0.612, + "2013": 0.618, + "2014": 0.624, + "2015": 0.633, + "2016": 0.632, + "2017": 0.632, + "2018": 0.632, + "2019": 0.633, + "2020": 0.633, + "2021": 0.633 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr111", + "Region": "Analanjirofo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.349, + "2001": 0.357, + "2002": 0.366, + "2003": 0.375, + "2004": 0.384, + "2005": 0.391, + "2006": 0.394, + "2007": 0.403, + "2008": 0.414, + "2009": 0.43, + "2010": 0.435, + "2011": 0.441, + "2012": 0.453, + "2013": 0.461, + "2014": 0.469, + "2015": 0.48, + "2016": 0.481, + "2017": 0.483, + "2018": 0.485, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr106", + "Region": "Anamoroni Mania", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.378, + "2001": 0.388, + "2002": 0.398, + "2003": 0.409, + "2004": 0.419, + "2005": 0.426, + "2006": 0.429, + "2007": 0.438, + "2008": 0.449, + "2009": 0.464, + "2010": 0.464, + "2011": 0.465, + "2012": 0.471, + "2013": 0.474, + "2014": 0.477, + "2015": 0.482, + "2016": 0.479, + "2017": 0.477, + "2018": 0.475, + "2019": 0.475, + "2020": 0.475, + "2021": 0.475 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr118", + "Region": "Androy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.159, + "2001": 0.163, + "2002": 0.167, + "2003": 0.171, + "2004": 0.175, + "2005": 0.178, + "2006": 0.18, + "2007": 0.184, + "2008": 0.189, + "2009": 0.197, + "2010": 0.209, + "2011": 0.221, + "2012": 0.237, + "2013": 0.251, + "2014": 0.265, + "2015": 0.281, + "2016": 0.29, + "2017": 0.3, + "2018": 0.311, + "2019": 0.31, + "2020": 0.31, + "2021": 0.31 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr119", + "Region": "Anosy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.231, + "2001": 0.237, + "2002": 0.243, + "2003": 0.249, + "2004": 0.255, + "2005": 0.26, + "2006": 0.262, + "2007": 0.267, + "2008": 0.274, + "2009": 0.284, + "2010": 0.284, + "2011": 0.285, + "2012": 0.29, + "2013": 0.292, + "2014": 0.294, + "2015": 0.298, + "2016": 0.296, + "2017": 0.295, + "2018": 0.294, + "2019": 0.294, + "2020": 0.294, + "2021": 0.294 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr117", + "Region": "Atsimo Andrefana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.256, + "2001": 0.263, + "2002": 0.27, + "2003": 0.277, + "2004": 0.283, + "2005": 0.288, + "2006": 0.291, + "2007": 0.297, + "2008": 0.304, + "2009": 0.315, + "2010": 0.309, + "2011": 0.303, + "2012": 0.301, + "2013": 0.297, + "2014": 0.293, + "2015": 0.29, + "2016": 0.282, + "2017": 0.274, + "2018": 0.267, + "2019": 0.267, + "2020": 0.267, + "2021": 0.267 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr109", + "Region": "Atsimo Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.226, + "2001": 0.232, + "2002": 0.238, + "2003": 0.244, + "2004": 0.249, + "2005": 0.254, + "2006": 0.256, + "2007": 0.262, + "2008": 0.268, + "2009": 0.278, + "2010": 0.281, + "2011": 0.284, + "2012": 0.291, + "2013": 0.296, + "2014": 0.301, + "2015": 0.307, + "2016": 0.307, + "2017": 0.308, + "2018": 0.309, + "2019": 0.309, + "2020": 0.309, + "2021": 0.309 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr110", + "Region": "Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.418, + "2001": 0.429, + "2002": 0.44, + "2003": 0.451, + "2004": 0.462, + "2005": 0.47, + "2006": 0.474, + "2007": 0.484, + "2008": 0.496, + "2009": 0.513, + "2010": 0.511, + "2011": 0.509, + "2012": 0.513, + "2013": 0.514, + "2014": 0.515, + "2015": 0.518, + "2016": 0.511, + "2017": 0.506, + "2018": 0.501, + "2019": 0.501, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr115", + "Region": "Betsiboka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.3, + "2001": 0.308, + "2002": 0.316, + "2003": 0.324, + "2004": 0.332, + "2005": 0.337, + "2006": 0.34, + "2007": 0.347, + "2008": 0.356, + "2009": 0.368, + "2010": 0.368, + "2011": 0.368, + "2012": 0.373, + "2013": 0.375, + "2014": 0.378, + "2015": 0.382, + "2016": 0.379, + "2017": 0.377, + "2018": 0.375, + "2019": 0.375, + "2020": 0.375, + "2021": 0.375 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr113", + "Region": "Boeny", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.382, + "2001": 0.393, + "2002": 0.403, + "2003": 0.413, + "2004": 0.423, + "2005": 0.431, + "2006": 0.434, + "2007": 0.443, + "2008": 0.454, + "2009": 0.469, + "2010": 0.464, + "2011": 0.46, + "2012": 0.461, + "2013": 0.458, + "2014": 0.456, + "2015": 0.456, + "2016": 0.447, + "2017": 0.44, + "2018": 0.433, + "2019": 0.433, + "2020": 0.433, + "2021": 0.433 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr104", + "Region": "Bongolava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.325, + "2001": 0.333, + "2002": 0.342, + "2003": 0.351, + "2004": 0.36, + "2005": 0.366, + "2006": 0.369, + "2007": 0.376, + "2008": 0.385, + "2009": 0.398, + "2010": 0.398, + "2011": 0.398, + "2012": 0.402, + "2013": 0.404, + "2014": 0.406, + "2015": 0.41, + "2016": 0.407, + "2017": 0.404, + "2018": 0.401, + "2019": 0.402, + "2020": 0.402, + "2021": 0.402 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr121", + "Region": "Diana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.378, + "2001": 0.388, + "2002": 0.398, + "2003": 0.408, + "2004": 0.418, + "2005": 0.425, + "2006": 0.429, + "2007": 0.438, + "2008": 0.449, + "2009": 0.464, + "2010": 0.476, + "2011": 0.488, + "2012": 0.507, + "2013": 0.522, + "2014": 0.537, + "2015": 0.554, + "2016": 0.562, + "2017": 0.57, + "2018": 0.579, + "2019": 0.58, + "2020": 0.58, + "2021": 0.58 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr105", + "Region": "Haute Matsiatra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.38, + "2001": 0.39, + "2002": 0.4, + "2003": 0.41, + "2004": 0.42, + "2005": 0.427, + "2006": 0.431, + "2007": 0.44, + "2008": 0.451, + "2009": 0.466, + "2010": 0.466, + "2011": 0.466, + "2012": 0.472, + "2013": 0.474, + "2014": 0.476, + "2015": 0.481, + "2016": 0.476, + "2017": 0.473, + "2018": 0.47, + "2019": 0.47, + "2020": 0.47, + "2021": 0.47 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr108", + "Region": "Ihorombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.271, + "2001": 0.278, + "2002": 0.285, + "2003": 0.292, + "2004": 0.299, + "2005": 0.304, + "2006": 0.307, + "2007": 0.313, + "2008": 0.321, + "2009": 0.333, + "2010": 0.331, + "2011": 0.329, + "2012": 0.332, + "2013": 0.332, + "2014": 0.332, + "2015": 0.333, + "2016": 0.328, + "2017": 0.324, + "2018": 0.32, + "2019": 0.32, + "2020": 0.32, + "2021": 0.32 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr103", + "Region": "Itasy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.319, + "2001": 0.328, + "2002": 0.336, + "2003": 0.345, + "2004": 0.353, + "2005": 0.359, + "2006": 0.362, + "2007": 0.369, + "2008": 0.379, + "2009": 0.391, + "2010": 0.397, + "2011": 0.402, + "2012": 0.413, + "2013": 0.421, + "2014": 0.429, + "2015": 0.438, + "2016": 0.44, + "2017": 0.443, + "2018": 0.446, + "2019": 0.447, + "2020": 0.447, + "2021": 0.447 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr116", + "Region": "Melaky", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.212, + "2001": 0.218, + "2002": 0.223, + "2003": 0.229, + "2004": 0.234, + "2005": 0.238, + "2006": 0.24, + "2007": 0.245, + "2008": 0.252, + "2009": 0.26, + "2010": 0.267, + "2011": 0.274, + "2012": 0.285, + "2013": 0.294, + "2014": 0.303, + "2015": 0.314, + "2016": 0.318, + "2017": 0.324, + "2018": 0.329, + "2019": 0.329, + "2020": 0.329, + "2021": 0.329 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr120", + "Region": "Menabe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.289, + "2001": 0.296, + "2002": 0.304, + "2003": 0.312, + "2004": 0.319, + "2005": 0.325, + "2006": 0.328, + "2007": 0.334, + "2008": 0.343, + "2009": 0.355, + "2010": 0.354, + "2011": 0.352, + "2012": 0.356, + "2013": 0.357, + "2014": 0.358, + "2015": 0.36, + "2016": 0.356, + "2017": 0.353, + "2018": 0.349, + "2019": 0.35, + "2020": 0.35, + "2021": 0.35 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr122", + "Region": "Sava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.365, + "2001": 0.374, + "2002": 0.384, + "2003": 0.393, + "2004": 0.403, + "2005": 0.41, + "2006": 0.413, + "2007": 0.422, + "2008": 0.433, + "2009": 0.449, + "2010": 0.455, + "2011": 0.462, + "2012": 0.474, + "2013": 0.484, + "2014": 0.493, + "2015": 0.504, + "2016": 0.506, + "2017": 0.509, + "2018": 0.512, + "2019": 0.513, + "2020": 0.513, + "2021": 0.513 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr114", + "Region": "Sofia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.381, + "2001": 0.391, + "2002": 0.401, + "2003": 0.411, + "2004": 0.421, + "2005": 0.428, + "2006": 0.432, + "2007": 0.441, + "2008": 0.452, + "2009": 0.468, + "2010": 0.469, + "2011": 0.47, + "2012": 0.478, + "2013": 0.482, + "2014": 0.486, + "2015": 0.491, + "2016": 0.488, + "2017": 0.486, + "2018": 0.484, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr102", + "Region": "Vakinankaratra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.357, + "2001": 0.367, + "2002": 0.376, + "2003": 0.386, + "2004": 0.395, + "2005": 0.402, + "2006": 0.405, + "2007": 0.414, + "2008": 0.424, + "2009": 0.438, + "2010": 0.441, + "2011": 0.444, + "2012": 0.453, + "2013": 0.459, + "2014": 0.465, + "2015": 0.472, + "2016": 0.472, + "2017": 0.472, + "2018": 0.473, + "2019": 0.473, + "2020": 0.473, + "2021": 0.473 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr107", + "Region": "Vatovavy Fitovinany", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.275, + "2001": 0.282, + "2002": 0.289, + "2003": 0.296, + "2004": 0.304, + "2005": 0.309, + "2006": 0.312, + "2007": 0.318, + "2008": 0.327, + "2009": 0.338, + "2010": 0.344, + "2011": 0.349, + "2012": 0.359, + "2013": 0.367, + "2014": 0.374, + "2015": 0.383, + "2016": 0.385, + "2017": 0.388, + "2018": 0.39, + "2019": 0.391, + "2020": 0.391, + "2021": 0.391 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "National", + "GDLCODE": "MWIt", + "Region": "Total", + "1990": 0.23, + "1991": 0.237, + "1992": 0.269, + "1993": 0.279, + "1994": 0.289, + "1995": 0.387, + "1996": 0.383, + "1997": 0.388, + "1998": 0.394, + "1999": 0.399, + "2000": 0.382, + "2001": 0.393, + "2002": 0.394, + "2003": 0.387, + "2004": 0.38, + "2005": 0.379, + "2006": 0.387, + "2007": 0.388, + "2008": 0.403, + "2009": 0.417, + "2010": 0.432, + "2011": 0.437, + "2012": 0.443, + "2013": 0.45, + "2014": 0.457, + "2015": 0.464, + "2016": 0.473, + "2017": 0.483, + "2018": 0.492, + "2019": 0.502, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr101", + "Region": "Blantyre", + "1990": 0.333, + "1991": 0.343, + "1992": 0.386, + "1993": 0.395, + "1994": 0.404, + "1995": 0.52, + "1996": 0.511, + "1997": 0.514, + "1998": 0.517, + "1999": 0.521, + "2000": 0.498, + "2001": 0.5, + "2002": 0.489, + "2003": 0.471, + "2004": 0.453, + "2005": 0.456, + "2006": 0.47, + "2007": 0.478, + "2008": 0.499, + "2009": 0.521, + "2010": 0.543, + "2011": 0.545, + "2012": 0.548, + "2013": 0.552, + "2014": 0.556, + "2015": 0.56, + "2016": 0.567, + "2017": 0.576, + "2018": 0.586, + "2019": 0.596, + "2020": 0.594, + "2021": 0.594 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr102", + "Region": "Kasungu", + "1990": 0.263, + "1991": 0.272, + "1992": 0.308, + "1993": 0.318, + "1994": 0.327, + "1995": 0.434, + "1996": 0.428, + "1997": 0.433, + "1998": 0.438, + "1999": 0.443, + "2000": 0.424, + "2001": 0.431, + "2002": 0.428, + "2003": 0.416, + "2004": 0.404, + "2005": 0.403, + "2006": 0.413, + "2007": 0.415, + "2008": 0.432, + "2009": 0.448, + "2010": 0.465, + "2011": 0.469, + "2012": 0.475, + "2013": 0.481, + "2014": 0.487, + "2015": 0.494, + "2016": 0.503, + "2017": 0.512, + "2018": 0.521, + "2019": 0.53, + "2020": 0.529, + "2021": 0.529 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr109", + "Region": "Lilongwe", + "1990": 0.195, + "1991": 0.202, + "1992": 0.227, + "1993": 0.243, + "1994": 0.259, + "1995": 0.353, + "1996": 0.359, + "1997": 0.373, + "1998": 0.386, + "1999": 0.399, + "2000": 0.389, + "2001": 0.402, + "2002": 0.405, + "2003": 0.4, + "2004": 0.395, + "2005": 0.389, + "2006": 0.394, + "2007": 0.391, + "2008": 0.402, + "2009": 0.412, + "2010": 0.422, + "2011": 0.434, + "2012": 0.447, + "2013": 0.46, + "2014": 0.473, + "2015": 0.486, + "2016": 0.502, + "2017": 0.505, + "2018": 0.508, + "2019": 0.51, + "2020": 0.503, + "2021": 0.503 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr103", + "Region": "Machinga", + "1990": 0.178, + "1991": 0.184, + "1992": 0.212, + "1993": 0.221, + "1994": 0.23, + "1995": 0.317, + "1996": 0.314, + "1997": 0.32, + "1998": 0.325, + "1999": 0.331, + "2000": 0.316, + "2001": 0.329, + "2002": 0.333, + "2003": 0.329, + "2004": 0.325, + "2005": 0.325, + "2006": 0.333, + "2007": 0.335, + "2008": 0.349, + "2009": 0.363, + "2010": 0.378, + "2011": 0.382, + "2012": 0.388, + "2013": 0.395, + "2014": 0.401, + "2015": 0.408, + "2016": 0.416, + "2017": 0.431, + "2018": 0.446, + "2019": 0.461, + "2020": 0.467, + "2021": 0.467 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr104", + "Region": "Mangochi", + "1990": 0.121, + "1991": 0.125, + "1992": 0.143, + "1993": 0.159, + "1994": 0.175, + "1995": 0.251, + "1996": 0.26, + "1997": 0.276, + "1998": 0.291, + "1999": 0.305, + "2000": 0.3, + "2001": 0.306, + "2002": 0.304, + "2003": 0.295, + "2004": 0.287, + "2005": 0.287, + "2006": 0.294, + "2007": 0.296, + "2008": 0.308, + "2009": 0.321, + "2010": 0.333, + "2011": 0.341, + "2012": 0.351, + "2013": 0.36, + "2014": 0.37, + "2015": 0.38, + "2016": 0.391, + "2017": 0.402, + "2018": 0.413, + "2019": 0.424, + "2020": 0.426, + "2021": 0.426 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr110", + "Region": "Mulanje", + "1990": 0.187, + "1991": 0.193, + "1992": 0.221, + "1993": 0.234, + "1994": 0.247, + "1995": 0.341, + "1996": 0.342, + "1997": 0.351, + "1998": 0.36, + "1999": 0.369, + "2000": 0.356, + "2001": 0.368, + "2002": 0.37, + "2003": 0.365, + "2004": 0.359, + "2005": 0.36, + "2006": 0.37, + "2007": 0.373, + "2008": 0.389, + "2009": 0.405, + "2010": 0.421, + "2011": 0.427, + "2012": 0.433, + "2013": 0.44, + "2014": 0.447, + "2015": 0.455, + "2016": 0.464, + "2017": 0.475, + "2018": 0.487, + "2019": 0.499, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr105", + "Region": "Mzimba", + "1990": 0.352, + "1991": 0.364, + "1992": 0.412, + "1993": 0.413, + "1994": 0.413, + "1995": 0.53, + "1996": 0.51, + "1997": 0.502, + "1998": 0.495, + "1999": 0.489, + "2000": 0.457, + "2001": 0.471, + "2002": 0.474, + "2003": 0.468, + "2004": 0.462, + "2005": 0.454, + "2006": 0.458, + "2007": 0.454, + "2008": 0.465, + "2009": 0.476, + "2010": 0.486, + "2011": 0.491, + "2012": 0.497, + "2013": 0.504, + "2014": 0.511, + "2015": 0.517, + "2016": 0.527, + "2017": 0.536, + "2018": 0.545, + "2019": 0.555, + "2020": 0.553, + "2021": 0.553 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr112", + "Region": "Other central (Nkhota Kota, Mchinji, Dowa, Ntchisi, Dedza, Ntcheu)", + "1990": 0.225, + "1991": 0.233, + "1992": 0.265, + "1993": 0.273, + "1994": 0.28, + "1995": 0.376, + "1996": 0.369, + "1997": 0.372, + "1998": 0.375, + "1999": 0.377, + "2000": 0.358, + "2001": 0.367, + "2002": 0.365, + "2003": 0.356, + "2004": 0.347, + "2005": 0.346, + "2006": 0.354, + "2007": 0.355, + "2008": 0.369, + "2009": 0.383, + "2010": 0.397, + "2011": 0.402, + "2012": 0.409, + "2013": 0.416, + "2014": 0.423, + "2015": 0.43, + "2016": 0.439, + "2017": 0.447, + "2018": 0.456, + "2019": 0.465, + "2020": 0.465, + "2021": 0.465 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr111", + "Region": "Other northern (Chitipa, Karonga, Rumphi, Nkhata Bay)", + "1990": 0.329, + "1991": 0.34, + "1992": 0.386, + "1993": 0.394, + "1994": 0.4, + "1995": 0.524, + "1996": 0.511, + "1997": 0.51, + "1998": 0.51, + "1999": 0.51, + "2000": 0.484, + "2001": 0.49, + "2002": 0.483, + "2003": 0.467, + "2004": 0.452, + "2005": 0.45, + "2006": 0.459, + "2007": 0.461, + "2008": 0.477, + "2009": 0.493, + "2010": 0.509, + "2011": 0.511, + "2012": 0.515, + "2013": 0.519, + "2014": 0.523, + "2015": 0.527, + "2016": 0.534, + "2017": 0.544, + "2018": 0.554, + "2019": 0.564, + "2020": 0.563, + "2021": 0.563 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr113", + "Region": "Other southern (Balaka, Mwanza, Phalombe, Chiradzulu, Chikwawa, Nsanje, neno)", + "1990": 0.21, + "1991": 0.217, + "1992": 0.248, + "1993": 0.256, + "1994": 0.264, + "1995": 0.355, + "1996": 0.349, + "1997": 0.353, + "1998": 0.356, + "1999": 0.36, + "2000": 0.342, + "2001": 0.356, + "2002": 0.361, + "2003": 0.357, + "2004": 0.354, + "2005": 0.354, + "2006": 0.363, + "2007": 0.365, + "2008": 0.381, + "2009": 0.396, + "2010": 0.411, + "2011": 0.416, + "2012": 0.422, + "2013": 0.428, + "2014": 0.434, + "2015": 0.44, + "2016": 0.448, + "2017": 0.462, + "2018": 0.476, + "2019": 0.491, + "2020": 0.496, + "2021": 0.496 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr106", + "Region": "Salima", + "1990": 0.205, + "1991": 0.212, + "1992": 0.243, + "1993": 0.25, + "1994": 0.256, + "1995": 0.343, + "1996": 0.336, + "1997": 0.337, + "1998": 0.339, + "1999": 0.341, + "2000": 0.324, + "2001": 0.335, + "2002": 0.338, + "2003": 0.334, + "2004": 0.33, + "2005": 0.333, + "2006": 0.344, + "2007": 0.349, + "2008": 0.367, + "2009": 0.385, + "2010": 0.403, + "2011": 0.4, + "2012": 0.4, + "2013": 0.399, + "2014": 0.399, + "2015": 0.399, + "2016": 0.4, + "2017": 0.415, + "2018": 0.431, + "2019": 0.447, + "2020": 0.454, + "2021": 0.454 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr107", + "Region": "Thyolo", + "1990": 0.193, + "1991": 0.199, + "1992": 0.225, + "1993": 0.236, + "1994": 0.247, + "1995": 0.332, + "1996": 0.334, + "1997": 0.343, + "1998": 0.351, + "1999": 0.36, + "2000": 0.347, + "2001": 0.362, + "2002": 0.366, + "2003": 0.364, + "2004": 0.361, + "2005": 0.364, + "2006": 0.376, + "2007": 0.381, + "2008": 0.4, + "2009": 0.419, + "2010": 0.438, + "2011": 0.44, + "2012": 0.443, + "2013": 0.447, + "2014": 0.451, + "2015": 0.455, + "2016": 0.461, + "2017": 0.468, + "2018": 0.476, + "2019": 0.484, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr108", + "Region": "Zomba", + "1990": 0.242, + "1991": 0.25, + "1992": 0.285, + "1993": 0.291, + "1994": 0.296, + "1995": 0.393, + "1996": 0.384, + "1997": 0.384, + "1998": 0.385, + "1999": 0.385, + "2000": 0.364, + "2001": 0.386, + "2002": 0.398, + "2003": 0.402, + "2004": 0.405, + "2005": 0.405, + "2006": 0.414, + "2007": 0.417, + "2008": 0.433, + "2009": 0.45, + "2010": 0.467, + "2011": 0.467, + "2012": 0.469, + "2013": 0.472, + "2014": 0.474, + "2015": 0.476, + "2016": 0.481, + "2017": 0.494, + "2018": 0.506, + "2019": 0.519, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "National", + "GDLCODE": "MYSt", + "Region": "Total", + "1990": 0.478, + "1991": 0.489, + "1992": 0.5, + "1993": 0.507, + "1994": 0.515, + "1995": 0.523, + "1996": 0.539, + "1997": 0.561, + "1998": 0.583, + "1999": 0.593, + "2000": 0.612, + "2001": 0.61, + "2002": 0.608, + "2003": 0.618, + "2004": 0.619, + "2005": 0.606, + "2006": 0.608, + "2007": 0.629, + "2008": 0.649, + "2009": 0.67, + "2010": 0.68, + "2011": 0.68, + "2012": 0.692, + "2013": 0.702, + "2014": 0.712, + "2015": 0.721, + "2016": 0.731, + "2017": 0.729, + "2018": 0.728, + "2019": 0.729, + "2020": 0.725, + "2021": 0.725 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr101", + "Region": "Johor", + "1990": 0.484, + "1991": 0.495, + "1992": 0.507, + "1993": 0.513, + "1994": 0.521, + "1995": 0.53, + "1996": 0.546, + "1997": 0.568, + "1998": 0.591, + "1999": 0.601, + "2000": 0.619, + "2001": 0.618, + "2002": 0.616, + "2003": 0.626, + "2004": 0.627, + "2005": 0.614, + "2006": 0.616, + "2007": 0.637, + "2008": 0.657, + "2009": 0.678, + "2010": 0.689, + "2011": 0.689, + "2012": 0.701, + "2013": 0.711, + "2014": 0.721, + "2015": 0.73, + "2016": 0.74, + "2017": 0.738, + "2018": 0.737, + "2019": 0.738, + "2020": 0.734, + "2021": 0.734 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr102", + "Region": "Kedah", + "1990": 0.471, + "1991": 0.482, + "1992": 0.494, + "1993": 0.499, + "1994": 0.507, + "1995": 0.515, + "1996": 0.531, + "1997": 0.553, + "1998": 0.575, + "1999": 0.585, + "2000": 0.602, + "2001": 0.601, + "2002": 0.6, + "2003": 0.61, + "2004": 0.611, + "2005": 0.598, + "2006": 0.6, + "2007": 0.62, + "2008": 0.639, + "2009": 0.659, + "2010": 0.67, + "2011": 0.669, + "2012": 0.681, + "2013": 0.691, + "2014": 0.701, + "2015": 0.71, + "2016": 0.72, + "2017": 0.717, + "2018": 0.716, + "2019": 0.718, + "2020": 0.714, + "2021": 0.714 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr103", + "Region": "Kelantan", + "1990": 0.461, + "1991": 0.471, + "1992": 0.482, + "1993": 0.488, + "1994": 0.495, + "1995": 0.502, + "1996": 0.518, + "1997": 0.54, + "1998": 0.561, + "1999": 0.57, + "2000": 0.587, + "2001": 0.587, + "2002": 0.585, + "2003": 0.596, + "2004": 0.598, + "2005": 0.585, + "2006": 0.586, + "2007": 0.604, + "2008": 0.622, + "2009": 0.641, + "2010": 0.652, + "2011": 0.651, + "2012": 0.662, + "2013": 0.672, + "2014": 0.682, + "2015": 0.691, + "2016": 0.7, + "2017": 0.697, + "2018": 0.696, + "2019": 0.697, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr114", + "Region": "Kuala Lumpur Federal Territory", + "1990": 0.552, + "1991": 0.565, + "1992": 0.578, + "1993": 0.586, + "1994": 0.595, + "1995": 0.605, + "1996": 0.623, + "1997": 0.649, + "1998": 0.675, + "1999": 0.687, + "2000": 0.708, + "2001": 0.706, + "2002": 0.703, + "2003": 0.713, + "2004": 0.714, + "2005": 0.699, + "2006": 0.703, + "2007": 0.728, + "2008": 0.752, + "2009": 0.776, + "2010": 0.789, + "2011": 0.789, + "2012": 0.802, + "2013": 0.814, + "2014": 0.825, + "2015": 0.836, + "2016": 0.847, + "2017": 0.845, + "2018": 0.844, + "2019": 0.846, + "2020": 0.842, + "2021": 0.842 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr115", + "Region": "Labuan Federal Territory", + "1990": 0.437, + "1991": 0.447, + "1992": 0.458, + "1993": 0.465, + "1994": 0.473, + "1995": 0.481, + "1996": 0.495, + "1997": 0.515, + "1998": 0.536, + "1999": 0.546, + "2000": 0.563, + "2001": 0.561, + "2002": 0.558, + "2003": 0.565, + "2004": 0.564, + "2005": 0.552, + "2006": 0.558, + "2007": 0.579, + "2008": 0.599, + "2009": 0.62, + "2010": 0.63, + "2011": 0.63, + "2012": 0.641, + "2013": 0.65, + "2014": 0.659, + "2015": 0.667, + "2016": 0.676, + "2017": 0.675, + "2018": 0.675, + "2019": 0.677, + "2020": 0.674, + "2021": 0.674 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr104", + "Region": "Melaka", + "1990": 0.498, + "1991": 0.509, + "1992": 0.521, + "1993": 0.527, + "1994": 0.536, + "1995": 0.544, + "1996": 0.561, + "1997": 0.584, + "1998": 0.607, + "1999": 0.618, + "2000": 0.636, + "2001": 0.635, + "2002": 0.633, + "2003": 0.643, + "2004": 0.644, + "2005": 0.631, + "2006": 0.633, + "2007": 0.654, + "2008": 0.675, + "2009": 0.697, + "2010": 0.708, + "2011": 0.708, + "2012": 0.72, + "2013": 0.73, + "2014": 0.74, + "2015": 0.75, + "2016": 0.76, + "2017": 0.758, + "2018": 0.757, + "2019": 0.759, + "2020": 0.755, + "2021": 0.755 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr105", + "Region": "Negeri Sembilan", + "1990": 0.485, + "1991": 0.496, + "1992": 0.508, + "1993": 0.515, + "1994": 0.523, + "1995": 0.532, + "1996": 0.548, + "1997": 0.57, + "1998": 0.593, + "1999": 0.603, + "2000": 0.622, + "2001": 0.62, + "2002": 0.618, + "2003": 0.628, + "2004": 0.628, + "2005": 0.615, + "2006": 0.618, + "2007": 0.639, + "2008": 0.66, + "2009": 0.681, + "2010": 0.692, + "2011": 0.692, + "2012": 0.704, + "2013": 0.714, + "2014": 0.724, + "2015": 0.734, + "2016": 0.743, + "2017": 0.741, + "2018": 0.741, + "2019": 0.742, + "2020": 0.738, + "2021": 0.738 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr106", + "Region": "Pahang", + "1990": 0.464, + "1991": 0.475, + "1992": 0.486, + "1993": 0.492, + "1994": 0.5, + "1995": 0.508, + "1996": 0.524, + "1997": 0.545, + "1998": 0.567, + "1999": 0.576, + "2000": 0.594, + "2001": 0.593, + "2002": 0.591, + "2003": 0.6, + "2004": 0.601, + "2005": 0.589, + "2006": 0.591, + "2007": 0.611, + "2008": 0.63, + "2009": 0.65, + "2010": 0.661, + "2011": 0.661, + "2012": 0.672, + "2013": 0.682, + "2014": 0.691, + "2015": 0.701, + "2016": 0.71, + "2017": 0.708, + "2018": 0.707, + "2019": 0.708, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr108", + "Region": "Perak", + "1990": 0.473, + "1991": 0.484, + "1992": 0.495, + "1993": 0.501, + "1994": 0.509, + "1995": 0.517, + "1996": 0.533, + "1997": 0.555, + "1998": 0.577, + "1999": 0.587, + "2000": 0.605, + "2001": 0.604, + "2002": 0.602, + "2003": 0.612, + "2004": 0.613, + "2005": 0.6, + "2006": 0.602, + "2007": 0.622, + "2008": 0.641, + "2009": 0.661, + "2010": 0.672, + "2011": 0.672, + "2012": 0.683, + "2013": 0.693, + "2014": 0.703, + "2015": 0.712, + "2016": 0.722, + "2017": 0.719, + "2018": 0.718, + "2019": 0.72, + "2020": 0.716, + "2021": 0.716 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr109", + "Region": "Perlis", + "1990": 0.468, + "1991": 0.478, + "1992": 0.49, + "1993": 0.495, + "1994": 0.503, + "1995": 0.511, + "1996": 0.527, + "1997": 0.549, + "1998": 0.57, + "1999": 0.58, + "2000": 0.598, + "2001": 0.597, + "2002": 0.595, + "2003": 0.605, + "2004": 0.606, + "2005": 0.593, + "2006": 0.595, + "2007": 0.615, + "2008": 0.634, + "2009": 0.654, + "2010": 0.664, + "2011": 0.664, + "2012": 0.676, + "2013": 0.685, + "2014": 0.695, + "2015": 0.704, + "2016": 0.714, + "2017": 0.711, + "2018": 0.711, + "2019": 0.712, + "2020": 0.708, + "2021": 0.708 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr107", + "Region": "Pulau Pinang", + "1990": 0.512, + "1991": 0.523, + "1992": 0.536, + "1993": 0.543, + "1994": 0.552, + "1995": 0.56, + "1996": 0.577, + "1997": 0.601, + "1998": 0.625, + "1999": 0.636, + "2000": 0.656, + "2001": 0.654, + "2002": 0.652, + "2003": 0.662, + "2004": 0.662, + "2005": 0.649, + "2006": 0.652, + "2007": 0.674, + "2008": 0.696, + "2009": 0.718, + "2010": 0.73, + "2011": 0.73, + "2012": 0.742, + "2013": 0.753, + "2014": 0.763, + "2015": 0.774, + "2016": 0.784, + "2017": 0.781, + "2018": 0.781, + "2019": 0.783, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr112", + "Region": "Sabah", + "1990": 0.378, + "1991": 0.387, + "1992": 0.396, + "1993": 0.401, + "1994": 0.407, + "1995": 0.413, + "1996": 0.426, + "1997": 0.444, + "1998": 0.461, + "1999": 0.469, + "2000": 0.484, + "2001": 0.483, + "2002": 0.481, + "2003": 0.489, + "2004": 0.49, + "2005": 0.479, + "2006": 0.481, + "2007": 0.497, + "2008": 0.513, + "2009": 0.529, + "2010": 0.538, + "2011": 0.538, + "2012": 0.547, + "2013": 0.555, + "2014": 0.563, + "2015": 0.57, + "2016": 0.578, + "2017": 0.576, + "2018": 0.575, + "2019": 0.576, + "2020": 0.573, + "2021": 0.573 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr113", + "Region": "Sarawak", + "1990": 0.414, + "1991": 0.423, + "1992": 0.433, + "1993": 0.437, + "1994": 0.444, + "1995": 0.451, + "1996": 0.465, + "1997": 0.484, + "1998": 0.503, + "1999": 0.511, + "2000": 0.527, + "2001": 0.526, + "2002": 0.525, + "2003": 0.535, + "2004": 0.537, + "2005": 0.525, + "2006": 0.525, + "2007": 0.542, + "2008": 0.558, + "2009": 0.575, + "2010": 0.584, + "2011": 0.584, + "2012": 0.594, + "2013": 0.603, + "2014": 0.611, + "2015": 0.62, + "2016": 0.628, + "2017": 0.626, + "2018": 0.625, + "2019": 0.625, + "2020": 0.622, + "2021": 0.622 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr110", + "Region": "Selangor", + "1990": 0.541, + "1991": 0.553, + "1992": 0.567, + "1993": 0.574, + "1994": 0.584, + "1995": 0.593, + "1996": 0.611, + "1997": 0.636, + "1998": 0.661, + "1999": 0.673, + "2000": 0.694, + "2001": 0.692, + "2002": 0.689, + "2003": 0.699, + "2004": 0.699, + "2005": 0.685, + "2006": 0.689, + "2007": 0.713, + "2008": 0.737, + "2009": 0.761, + "2010": 0.773, + "2011": 0.774, + "2012": 0.787, + "2013": 0.798, + "2014": 0.809, + "2015": 0.82, + "2016": 0.831, + "2017": 0.829, + "2018": 0.828, + "2019": 0.83, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr111", + "Region": "Terengganu", + "1990": 0.469, + "1991": 0.479, + "1992": 0.491, + "1993": 0.496, + "1994": 0.504, + "1995": 0.512, + "1996": 0.528, + "1997": 0.55, + "1998": 0.572, + "1999": 0.581, + "2000": 0.599, + "2001": 0.598, + "2002": 0.596, + "2003": 0.606, + "2004": 0.607, + "2005": 0.594, + "2006": 0.596, + "2007": 0.616, + "2008": 0.635, + "2009": 0.655, + "2010": 0.666, + "2011": 0.666, + "2012": 0.677, + "2013": 0.687, + "2014": 0.697, + "2015": 0.706, + "2016": 0.715, + "2017": 0.713, + "2018": 0.712, + "2019": 0.713, + "2020": 0.709, + "2021": 0.709 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "National", + "GDLCODE": "MDVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.388, + "1996": 0.392, + "1997": 0.397, + "1998": 0.402, + "1999": 0.42, + "2000": 0.43, + "2001": 0.434, + "2002": 0.427, + "2003": 0.44, + "2004": 0.441, + "2005": 0.442, + "2006": 0.451, + "2007": 0.461, + "2008": 0.471, + "2009": 0.48, + "2010": 0.49, + "2011": 0.506, + "2012": 0.522, + "2013": 0.537, + "2014": 0.553, + "2015": 0.569, + "2016": 0.576, + "2017": 0.582, + "2018": 0.589, + "2019": 0.595, + "2020": 0.595, + "2021": 0.595 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr104", + "Region": "Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.352, + "1996": 0.357, + "1997": 0.362, + "1998": 0.368, + "1999": 0.386, + "2000": 0.396, + "2001": 0.4, + "2002": 0.393, + "2003": 0.406, + "2004": 0.406, + "2005": 0.407, + "2006": 0.415, + "2007": 0.422, + "2008": 0.43, + "2009": 0.437, + "2010": 0.442, + "2011": 0.452, + "2012": 0.462, + "2013": 0.471, + "2014": 0.481, + "2015": 0.491, + "2016": 0.494, + "2017": 0.497, + "2018": 0.502, + "2019": 0.507, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr101", + "Region": "Male", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.457, + "1996": 0.461, + "1997": 0.464, + "1998": 0.468, + "1999": 0.484, + "2000": 0.493, + "2001": 0.497, + "2002": 0.49, + "2003": 0.503, + "2004": 0.504, + "2005": 0.505, + "2006": 0.52, + "2007": 0.534, + "2008": 0.548, + "2009": 0.562, + "2010": 0.57, + "2011": 0.588, + "2012": 0.604, + "2013": 0.62, + "2014": 0.636, + "2015": 0.651, + "2016": 0.654, + "2017": 0.657, + "2018": 0.665, + "2019": 0.673, + "2020": 0.673, + "2021": 0.673 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr102", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.343, + "1996": 0.349, + "1997": 0.355, + "1998": 0.36, + "1999": 0.379, + "2000": 0.389, + "2001": 0.394, + "2002": 0.386, + "2003": 0.399, + "2004": 0.4, + "2005": 0.401, + "2006": 0.408, + "2007": 0.414, + "2008": 0.421, + "2009": 0.428, + "2010": 0.436, + "2011": 0.45, + "2012": 0.464, + "2013": 0.478, + "2014": 0.493, + "2015": 0.508, + "2016": 0.515, + "2017": 0.522, + "2018": 0.527, + "2019": 0.533, + "2020": 0.533, + "2021": 0.533 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr103", + "Region": "North Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.351, + "1996": 0.356, + "1997": 0.362, + "1998": 0.368, + "1999": 0.388, + "2000": 0.398, + "2001": 0.403, + "2002": 0.395, + "2003": 0.408, + "2004": 0.409, + "2005": 0.41, + "2006": 0.417, + "2007": 0.423, + "2008": 0.43, + "2009": 0.437, + "2010": 0.442, + "2011": 0.453, + "2012": 0.463, + "2013": 0.474, + "2014": 0.485, + "2015": 0.496, + "2016": 0.5, + "2017": 0.504, + "2018": 0.509, + "2019": 0.514, + "2020": 0.514, + "2021": 0.514 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr106", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.362, + "1996": 0.367, + "1997": 0.372, + "1998": 0.378, + "1999": 0.396, + "2000": 0.407, + "2001": 0.411, + "2002": 0.403, + "2003": 0.416, + "2004": 0.417, + "2005": 0.418, + "2006": 0.426, + "2007": 0.434, + "2008": 0.442, + "2009": 0.449, + "2010": 0.456, + "2011": 0.468, + "2012": 0.481, + "2013": 0.493, + "2014": 0.506, + "2015": 0.518, + "2016": 0.523, + "2017": 0.527, + "2018": 0.533, + "2019": 0.538, + "2020": 0.538, + "2021": 0.538 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr105", + "Region": "South Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.348, + "1996": 0.354, + "1997": 0.359, + "1998": 0.365, + "1999": 0.384, + "2000": 0.394, + "2001": 0.399, + "2002": 0.391, + "2003": 0.404, + "2004": 0.405, + "2005": 0.406, + "2006": 0.413, + "2007": 0.42, + "2008": 0.427, + "2009": 0.433, + "2010": 0.442, + "2011": 0.456, + "2012": 0.47, + "2013": 0.484, + "2014": 0.499, + "2015": 0.514, + "2016": 0.52, + "2017": 0.527, + "2018": 0.533, + "2019": 0.538, + "2020": 0.538, + "2021": 0.538 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "National", + "GDLCODE": "MLIt", + "Region": "Total", + "1990": 0.082, + "1991": 0.085, + "1992": 0.091, + "1993": 0.098, + "1994": 0.106, + "1995": 0.114, + "1996": 0.122, + "1997": 0.133, + "1998": 0.143, + "1999": 0.155, + "2000": 0.162, + "2001": 0.172, + "2002": 0.181, + "2003": 0.191, + "2004": 0.201, + "2005": 0.211, + "2006": 0.222, + "2007": 0.233, + "2008": 0.244, + "2009": 0.254, + "2010": 0.261, + "2011": 0.268, + "2012": 0.265, + "2013": 0.262, + "2014": 0.269, + "2015": 0.266, + "2016": 0.272, + "2017": 0.277, + "2018": 0.28, + "2019": 0.283, + "2020": 0.283, + "2021": 0.283 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr108", + "Region": "Bamako", + "1990": 0.219, + "1991": 0.228, + "1992": 0.243, + "1993": 0.261, + "1994": 0.281, + "1995": 0.301, + "1996": 0.321, + "1997": 0.348, + "1998": 0.37, + "1999": 0.398, + "2000": 0.414, + "2001": 0.437, + "2002": 0.444, + "2003": 0.451, + "2004": 0.457, + "2005": 0.462, + "2006": 0.471, + "2007": 0.487, + "2008": 0.502, + "2009": 0.516, + "2010": 0.524, + "2011": 0.532, + "2012": 0.524, + "2013": 0.516, + "2014": 0.521, + "2015": 0.511, + "2016": 0.515, + "2017": 0.52, + "2018": 0.522, + "2019": 0.53, + "2020": 0.53, + "2021": 0.53 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr107", + "Region": "Gao and Kidal", + "1990": 0.151, + "1991": 0.157, + "1992": 0.167, + "1993": 0.181, + "1994": 0.195, + "1995": 0.21, + "1996": 0.21, + "1997": 0.214, + "1998": 0.214, + "1999": 0.217, + "2000": 0.213, + "2001": 0.212, + "2002": 0.222, + "2003": 0.231, + "2004": 0.239, + "2005": 0.248, + "2006": 0.257, + "2007": 0.261, + "2008": 0.264, + "2009": 0.265, + "2010": 0.264, + "2011": 0.262, + "2012": 0.251, + "2013": 0.24, + "2014": 0.239, + "2015": 0.23, + "2016": 0.228, + "2017": 0.226, + "2018": 0.222, + "2019": 0.224, + "2020": 0.224, + "2021": 0.224 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr101", + "Region": "Kayes", + "1990": 0.07, + "1991": 0.073, + "1992": 0.077, + "1993": 0.084, + "1994": 0.091, + "1995": 0.097, + "1996": 0.1, + "1997": 0.105, + "1998": 0.108, + "1999": 0.113, + "2000": 0.115, + "2001": 0.118, + "2002": 0.126, + "2003": 0.134, + "2004": 0.143, + "2005": 0.151, + "2006": 0.161, + "2007": 0.17, + "2008": 0.179, + "2009": 0.187, + "2010": 0.193, + "2011": 0.199, + "2012": 0.198, + "2013": 0.196, + "2014": 0.208, + "2015": 0.211, + "2016": 0.221, + "2017": 0.231, + "2018": 0.239, + "2019": 0.241, + "2020": 0.241, + "2021": 0.241 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr102", + "Region": "Koulikoro", + "1990": 0.074, + "1991": 0.077, + "1992": 0.082, + "1993": 0.089, + "1994": 0.096, + "1995": 0.103, + "1996": 0.11, + "1997": 0.121, + "1998": 0.129, + "1999": 0.14, + "2000": 0.146, + "2001": 0.155, + "2002": 0.165, + "2003": 0.174, + "2004": 0.184, + "2005": 0.193, + "2006": 0.203, + "2007": 0.22, + "2008": 0.236, + "2009": 0.252, + "2010": 0.265, + "2011": 0.278, + "2012": 0.28, + "2013": 0.282, + "2014": 0.287, + "2015": 0.281, + "2016": 0.283, + "2017": 0.286, + "2018": 0.286, + "2019": 0.29, + "2020": 0.29, + "2021": 0.29 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr105", + "Region": "Mopti", + "1990": 0.041, + "1991": 0.043, + "1992": 0.046, + "1993": 0.05, + "1994": 0.054, + "1995": 0.058, + "1996": 0.063, + "1997": 0.069, + "1998": 0.075, + "1999": 0.082, + "2000": 0.086, + "2001": 0.092, + "2002": 0.102, + "2003": 0.112, + "2004": 0.123, + "2005": 0.133, + "2006": 0.144, + "2007": 0.148, + "2008": 0.151, + "2009": 0.153, + "2010": 0.154, + "2011": 0.154, + "2012": 0.149, + "2013": 0.144, + "2014": 0.154, + "2015": 0.158, + "2016": 0.166, + "2017": 0.175, + "2018": 0.182, + "2019": 0.183, + "2020": 0.183, + "2021": 0.183 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr104", + "Region": "Segou", + "1990": 0.066, + "1991": 0.068, + "1992": 0.073, + "1993": 0.079, + "1994": 0.085, + "1995": 0.092, + "1996": 0.094, + "1997": 0.1, + "1998": 0.103, + "1999": 0.108, + "2000": 0.11, + "2001": 0.114, + "2002": 0.131, + "2003": 0.149, + "2004": 0.168, + "2005": 0.187, + "2006": 0.208, + "2007": 0.213, + "2008": 0.219, + "2009": 0.224, + "2010": 0.226, + "2011": 0.228, + "2012": 0.221, + "2013": 0.214, + "2014": 0.218, + "2015": 0.212, + "2016": 0.214, + "2017": 0.215, + "2018": 0.215, + "2019": 0.217, + "2020": 0.217, + "2021": 0.217 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr103", + "Region": "Sikasso", + "1990": 0.053, + "1991": 0.055, + "1992": 0.059, + "1993": 0.063, + "1994": 0.068, + "1995": 0.074, + "1996": 0.082, + "1997": 0.092, + "1998": 0.101, + "1999": 0.113, + "2000": 0.121, + "2001": 0.131, + "2002": 0.141, + "2003": 0.152, + "2004": 0.163, + "2005": 0.174, + "2006": 0.186, + "2007": 0.2, + "2008": 0.215, + "2009": 0.228, + "2010": 0.24, + "2011": 0.251, + "2012": 0.252, + "2013": 0.252, + "2014": 0.254, + "2015": 0.245, + "2016": 0.244, + "2017": 0.244, + "2018": 0.241, + "2019": 0.243, + "2020": 0.243, + "2021": 0.243 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr106", + "Region": "Tombouctou", + "1990": 0.127, + "1991": 0.132, + "1992": 0.141, + "1993": 0.153, + "1994": 0.165, + "1995": 0.178, + "1996": 0.169, + "1997": 0.164, + "1998": 0.155, + "1999": 0.148, + "2000": 0.135, + "2001": 0.124, + "2002": 0.135, + "2003": 0.147, + "2004": 0.158, + "2005": 0.17, + "2006": 0.183, + "2007": 0.185, + "2008": 0.187, + "2009": 0.188, + "2010": 0.187, + "2011": 0.186, + "2012": 0.178, + "2013": 0.17, + "2014": 0.17, + "2015": 0.163, + "2016": 0.162, + "2017": 0.161, + "2018": 0.158, + "2019": 0.16, + "2020": 0.16, + "2021": 0.16 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "National", + "GDLCODE": "MRTt", + "Region": "Total", + "1990": 0.179, + "1991": 0.184, + "1992": 0.196, + "1993": 0.212, + "1994": 0.234, + "1995": 0.241, + "1996": 0.25, + "1997": 0.254, + "1998": 0.267, + "1999": 0.276, + "2000": 0.28, + "2001": 0.285, + "2002": 0.29, + "2003": 0.297, + "2004": 0.313, + "2005": 0.317, + "2006": 0.326, + "2007": 0.326, + "2008": 0.325, + "2009": 0.341, + "2010": 0.347, + "2011": 0.354, + "2012": 0.369, + "2013": 0.381, + "2014": 0.39, + "2015": 0.399, + "2016": 0.392, + "2017": 0.395, + "2018": 0.413, + "2019": 0.424, + "2020": 0.424, + "2021": 0.424 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr107", + "Region": "Adrar", + "1990": 0.195, + "1991": 0.201, + "1992": 0.214, + "1993": 0.233, + "1994": 0.258, + "1995": 0.265, + "1996": 0.276, + "1997": 0.28, + "1998": 0.295, + "1999": 0.304, + "2000": 0.31, + "2001": 0.315, + "2002": 0.321, + "2003": 0.329, + "2004": 0.349, + "2005": 0.353, + "2006": 0.364, + "2007": 0.364, + "2008": 0.367, + "2009": 0.389, + "2010": 0.399, + "2011": 0.41, + "2012": 0.425, + "2013": 0.437, + "2014": 0.444, + "2015": 0.451, + "2016": 0.451, + "2017": 0.464, + "2018": 0.497, + "2019": 0.523, + "2020": 0.537, + "2021": 0.537 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr103", + "Region": "Assaba", + "1990": 0.146, + "1991": 0.151, + "1992": 0.161, + "1993": 0.175, + "1994": 0.194, + "1995": 0.2, + "1996": 0.208, + "1997": 0.211, + "1998": 0.223, + "1999": 0.23, + "2000": 0.234, + "2001": 0.238, + "2002": 0.241, + "2003": 0.245, + "2004": 0.258, + "2005": 0.259, + "2006": 0.266, + "2007": 0.264, + "2008": 0.265, + "2009": 0.279, + "2010": 0.285, + "2011": 0.292, + "2012": 0.301, + "2013": 0.309, + "2014": 0.312, + "2015": 0.314, + "2016": 0.307, + "2017": 0.309, + "2018": 0.324, + "2019": 0.333, + "2020": 0.333, + "2021": 0.333 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr105", + "Region": "Brakna", + "1990": 0.136, + "1991": 0.14, + "1992": 0.149, + "1993": 0.162, + "1994": 0.179, + "1995": 0.185, + "1996": 0.192, + "1997": 0.195, + "1998": 0.206, + "1999": 0.212, + "2000": 0.216, + "2001": 0.219, + "2002": 0.23, + "2003": 0.241, + "2004": 0.262, + "2005": 0.271, + "2006": 0.286, + "2007": 0.29, + "2008": 0.295, + "2009": 0.317, + "2010": 0.327, + "2011": 0.338, + "2012": 0.345, + "2013": 0.348, + "2014": 0.345, + "2015": 0.341, + "2016": 0.336, + "2017": 0.341, + "2018": 0.362, + "2019": 0.378, + "2020": 0.383, + "2021": 0.383 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr104", + "Region": "Gorgol", + "1990": 0.111, + "1991": 0.115, + "1992": 0.122, + "1993": 0.133, + "1994": 0.147, + "1995": 0.152, + "1996": 0.158, + "1997": 0.16, + "1998": 0.169, + "1999": 0.174, + "2000": 0.177, + "2001": 0.18, + "2002": 0.182, + "2003": 0.185, + "2004": 0.195, + "2005": 0.196, + "2006": 0.201, + "2007": 0.199, + "2008": 0.205, + "2009": 0.223, + "2010": 0.233, + "2011": 0.244, + "2012": 0.265, + "2013": 0.285, + "2014": 0.303, + "2015": 0.322, + "2016": 0.31, + "2017": 0.307, + "2018": 0.317, + "2019": 0.32, + "2020": 0.313, + "2021": 0.313 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr110", + "Region": "Guidimagha", + "1990": 0.084, + "1991": 0.086, + "1992": 0.092, + "1993": 0.101, + "1994": 0.113, + "1995": 0.116, + "1996": 0.121, + "1997": 0.122, + "1998": 0.129, + "1999": 0.133, + "2000": 0.135, + "2001": 0.138, + "2002": 0.15, + "2003": 0.163, + "2004": 0.183, + "2005": 0.195, + "2006": 0.21, + "2007": 0.218, + "2008": 0.222, + "2009": 0.239, + "2010": 0.248, + "2011": 0.258, + "2012": 0.259, + "2013": 0.258, + "2014": 0.253, + "2015": 0.246, + "2016": 0.242, + "2017": 0.244, + "2018": 0.259, + "2019": 0.268, + "2020": 0.271, + "2021": 0.271 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr101", + "Region": "Hodh Charghi", + "1990": 0.163, + "1991": 0.168, + "1992": 0.178, + "1993": 0.194, + "1994": 0.214, + "1995": 0.22, + "1996": 0.228, + "1997": 0.232, + "1998": 0.244, + "1999": 0.252, + "2000": 0.256, + "2001": 0.261, + "2002": 0.256, + "2003": 0.253, + "2004": 0.259, + "2005": 0.254, + "2006": 0.253, + "2007": 0.245, + "2008": 0.25, + "2009": 0.269, + "2010": 0.279, + "2011": 0.29, + "2012": 0.297, + "2013": 0.301, + "2014": 0.302, + "2015": 0.301, + "2016": 0.28, + "2017": 0.267, + "2018": 0.263, + "2019": 0.251, + "2020": 0.231, + "2021": 0.231 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr102", + "Region": "Hodh Gharbi", + "1990": 0.167, + "1991": 0.172, + "1992": 0.183, + "1993": 0.2, + "1994": 0.221, + "1995": 0.228, + "1996": 0.237, + "1997": 0.24, + "1998": 0.253, + "1999": 0.261, + "2000": 0.266, + "2001": 0.27, + "2002": 0.262, + "2003": 0.255, + "2004": 0.257, + "2005": 0.248, + "2006": 0.243, + "2007": 0.23, + "2008": 0.235, + "2009": 0.253, + "2010": 0.262, + "2011": 0.272, + "2012": 0.288, + "2013": 0.304, + "2014": 0.316, + "2015": 0.329, + "2016": 0.311, + "2017": 0.302, + "2018": 0.304, + "2019": 0.298, + "2020": 0.282, + "2021": 0.282 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr112", + "Region": "Inchiri", + "1990": 0.249, + "1991": 0.257, + "1992": 0.273, + "1993": 0.297, + "1994": 0.328, + "1995": 0.337, + "1996": 0.351, + "1997": 0.356, + "1998": 0.375, + "1999": 0.387, + "2000": 0.393, + "2001": 0.4, + "2002": 0.396, + "2003": 0.394, + "2004": 0.406, + "2005": 0.4, + "2006": 0.401, + "2007": 0.39, + "2008": 0.381, + "2009": 0.39, + "2010": 0.387, + "2011": 0.387, + "2012": 0.413, + "2013": 0.438, + "2014": 0.46, + "2015": 0.485, + "2016": 0.489, + "2017": 0.506, + "2018": 0.542, + "2019": 0.572, + "2020": 0.589, + "2021": 0.589 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr108", + "Region": "Nouadhibou", + "1990": 0.232, + "1991": 0.24, + "1992": 0.254, + "1993": 0.273, + "1994": 0.299, + "1995": 0.308, + "1996": 0.319, + "1997": 0.325, + "1998": 0.341, + "1999": 0.351, + "2000": 0.358, + "2001": 0.365, + "2002": 0.368, + "2003": 0.373, + "2004": 0.39, + "2005": 0.393, + "2006": 0.401, + "2007": 0.399, + "2008": 0.4, + "2009": 0.42, + "2010": 0.427, + "2011": 0.437, + "2012": 0.469, + "2013": 0.501, + "2014": 0.53, + "2015": 0.56, + "2016": 0.561, + "2017": 0.576, + "2018": 0.611, + "2019": 0.638, + "2020": 0.651, + "2021": 0.651 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr109", + "Region": "Tagant", + "1990": 0.15, + "1991": 0.155, + "1992": 0.165, + "1993": 0.179, + "1994": 0.198, + "1995": 0.203, + "1996": 0.211, + "1997": 0.215, + "1998": 0.226, + "1999": 0.233, + "2000": 0.237, + "2001": 0.241, + "2002": 0.251, + "2003": 0.262, + "2004": 0.283, + "2005": 0.291, + "2006": 0.305, + "2007": 0.309, + "2008": 0.312, + "2009": 0.332, + "2010": 0.34, + "2011": 0.351, + "2012": 0.369, + "2013": 0.385, + "2014": 0.398, + "2015": 0.411, + "2016": 0.402, + "2017": 0.403, + "2018": 0.421, + "2019": 0.431, + "2020": 0.43, + "2021": 0.43 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr111", + "Region": "Tiris-Zemmour", + "1990": 0.228, + "1991": 0.235, + "1992": 0.25, + "1993": 0.27, + "1994": 0.298, + "1995": 0.306, + "1996": 0.318, + "1997": 0.323, + "1998": 0.34, + "1999": 0.351, + "2000": 0.357, + "2001": 0.363, + "2002": 0.364, + "2003": 0.367, + "2004": 0.382, + "2005": 0.381, + "2006": 0.387, + "2007": 0.381, + "2008": 0.388, + "2009": 0.414, + "2010": 0.427, + "2011": 0.441, + "2012": 0.474, + "2013": 0.506, + "2014": 0.535, + "2015": 0.567, + "2016": 0.574, + "2017": 0.596, + "2018": 0.64, + "2019": 0.678, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr106", + "Region": "Trarza incl Nouakchott", + "1990": 0.235, + "1991": 0.242, + "1992": 0.257, + "1993": 0.277, + "1994": 0.304, + "1995": 0.313, + "1996": 0.325, + "1997": 0.331, + "1998": 0.348, + "1999": 0.358, + "2000": 0.365, + "2001": 0.371, + "2002": 0.377, + "2003": 0.385, + "2004": 0.406, + "2005": 0.411, + "2006": 0.422, + "2007": 0.421, + "2008": 0.415, + "2009": 0.428, + "2010": 0.428, + "2011": 0.431, + "2012": 0.456, + "2013": 0.48, + "2014": 0.5, + "2015": 0.521, + "2016": 0.518, + "2017": 0.528, + "2018": 0.557, + "2019": 0.579, + "2020": 0.587, + "2021": 0.587 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "National", + "GDLCODE": "MUSt", + "Region": "Total", + "1990": 0.487, + "1991": 0.492, + "1992": 0.498, + "1993": 0.503, + "1994": 0.509, + "1995": 0.514, + "1996": 0.52, + "1997": 0.526, + "1998": 0.535, + "1999": 0.545, + "2000": 0.55, + "2001": 0.565, + "2002": 0.572, + "2003": 0.587, + "2004": 0.598, + "2005": 0.616, + "2006": 0.626, + "2007": 0.636, + "2008": 0.645, + "2009": 0.659, + "2010": 0.669, + "2011": 0.681, + "2012": 0.702, + "2013": 0.71, + "2014": 0.732, + "2015": 0.732, + "2016": 0.742, + "2017": 0.749, + "2018": 0.759, + "2019": 0.769, + "2020": 0.769, + "2021": 0.769 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr101", + "Region": "North (Port Louis, Pamplemousses, Riviere du Rempart, Flacq, Moka)", + "1990": 0.478, + "1991": 0.484, + "1992": 0.489, + "1993": 0.494, + "1994": 0.5, + "1995": 0.505, + "1996": 0.511, + "1997": 0.516, + "1998": 0.526, + "1999": 0.535, + "2000": 0.54, + "2001": 0.555, + "2002": 0.562, + "2003": 0.577, + "2004": 0.588, + "2005": 0.606, + "2006": 0.616, + "2007": 0.625, + "2008": 0.634, + "2009": 0.648, + "2010": 0.657, + "2011": 0.669, + "2012": 0.69, + "2013": 0.698, + "2014": 0.719, + "2015": 0.72, + "2016": 0.729, + "2017": 0.736, + "2018": 0.746, + "2019": 0.756, + "2020": 0.756, + "2021": 0.756 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr103", + "Region": "Rodrigues", + "1990": 0.379, + "1991": 0.383, + "1992": 0.387, + "1993": 0.392, + "1994": 0.396, + "1995": 0.4, + "1996": 0.404, + "1997": 0.409, + "1998": 0.416, + "1999": 0.424, + "2000": 0.428, + "2001": 0.44, + "2002": 0.445, + "2003": 0.457, + "2004": 0.466, + "2005": 0.48, + "2006": 0.488, + "2007": 0.495, + "2008": 0.502, + "2009": 0.513, + "2010": 0.52, + "2011": 0.53, + "2012": 0.546, + "2013": 0.553, + "2014": 0.57, + "2015": 0.57, + "2016": 0.577, + "2017": 0.583, + "2018": 0.591, + "2019": 0.599, + "2020": 0.599, + "2021": 0.599 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr102", + "Region": "South (Grand Port, Savanne, Plaines Wilhems, Black River)", + "1990": 0.5, + "1991": 0.506, + "1992": 0.511, + "1993": 0.517, + "1994": 0.522, + "1995": 0.528, + "1996": 0.534, + "1997": 0.54, + "1998": 0.549, + "1999": 0.559, + "2000": 0.565, + "2001": 0.58, + "2002": 0.588, + "2003": 0.603, + "2004": 0.615, + "2005": 0.633, + "2006": 0.643, + "2007": 0.653, + "2008": 0.663, + "2009": 0.677, + "2010": 0.687, + "2011": 0.7, + "2012": 0.721, + "2013": 0.729, + "2014": 0.752, + "2015": 0.752, + "2016": 0.762, + "2017": 0.769, + "2018": 0.779, + "2019": 0.79, + "2020": 0.79, + "2021": 0.79 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "National", + "GDLCODE": "MEXt", + "Region": "Total", + "1990": 0.503, + "1991": 0.5, + "1992": 0.501, + "1993": 0.503, + "1994": 0.508, + "1995": 0.514, + "1996": 0.52, + "1997": 0.526, + "1998": 0.537, + "1999": 0.545, + "2000": 0.555, + "2001": 0.561, + "2002": 0.576, + "2003": 0.589, + "2004": 0.597, + "2005": 0.605, + "2006": 0.621, + "2007": 0.625, + "2008": 0.632, + "2009": 0.64, + "2010": 0.639, + "2011": 0.648, + "2012": 0.664, + "2013": 0.664, + "2014": 0.67, + "2015": 0.681, + "2016": 0.693, + "2017": 0.703, + "2018": 0.711, + "2019": 0.715, + "2020": 0.72, + "2021": 0.72 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr101", + "Region": "Aguascalientes", + "1990": 0.506, + "1991": 0.503, + "1992": 0.505, + "1993": 0.507, + "1994": 0.512, + "1995": 0.518, + "1996": 0.524, + "1997": 0.53, + "1998": 0.541, + "1999": 0.549, + "2000": 0.559, + "2001": 0.565, + "2002": 0.58, + "2003": 0.594, + "2004": 0.602, + "2005": 0.61, + "2006": 0.627, + "2007": 0.631, + "2008": 0.638, + "2009": 0.646, + "2010": 0.645, + "2011": 0.654, + "2012": 0.669, + "2013": 0.668, + "2014": 0.673, + "2015": 0.684, + "2016": 0.708, + "2017": 0.717, + "2018": 0.726, + "2019": 0.731, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr102", + "Region": "Baja California", + "1990": 0.539, + "1991": 0.537, + "1992": 0.539, + "1993": 0.541, + "1994": 0.546, + "1995": 0.553, + "1996": 0.559, + "1997": 0.566, + "1998": 0.577, + "1999": 0.586, + "2000": 0.596, + "2001": 0.602, + "2002": 0.616, + "2003": 0.628, + "2004": 0.635, + "2005": 0.642, + "2006": 0.658, + "2007": 0.66, + "2008": 0.666, + "2009": 0.673, + "2010": 0.671, + "2011": 0.683, + "2012": 0.7, + "2013": 0.702, + "2014": 0.71, + "2015": 0.724, + "2016": 0.749, + "2017": 0.76, + "2018": 0.768, + "2019": 0.774, + "2020": 0.779, + "2021": 0.779 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr103", + "Region": "Baja California Sur", + "1990": 0.549, + "1991": 0.546, + "1992": 0.548, + "1993": 0.55, + "1994": 0.555, + "1995": 0.562, + "1996": 0.568, + "1997": 0.575, + "1998": 0.587, + "1999": 0.596, + "2000": 0.606, + "2001": 0.612, + "2002": 0.626, + "2003": 0.638, + "2004": 0.645, + "2005": 0.652, + "2006": 0.668, + "2007": 0.67, + "2008": 0.676, + "2009": 0.683, + "2010": 0.68, + "2011": 0.693, + "2012": 0.712, + "2013": 0.714, + "2014": 0.723, + "2015": 0.737, + "2016": 0.763, + "2017": 0.773, + "2018": 0.782, + "2019": 0.788, + "2020": 0.793, + "2021": 0.793 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr104", + "Region": "Campeche", + "1990": 0.515, + "1991": 0.512, + "1992": 0.513, + "1993": 0.514, + "1994": 0.52, + "1995": 0.526, + "1996": 0.532, + "1997": 0.538, + "1998": 0.55, + "1999": 0.558, + "2000": 0.569, + "2001": 0.573, + "2002": 0.586, + "2003": 0.597, + "2004": 0.603, + "2005": 0.609, + "2006": 0.623, + "2007": 0.625, + "2008": 0.63, + "2009": 0.636, + "2010": 0.633, + "2011": 0.642, + "2012": 0.656, + "2013": 0.655, + "2014": 0.661, + "2015": 0.671, + "2016": 0.695, + "2017": 0.704, + "2018": 0.712, + "2019": 0.717, + "2020": 0.722, + "2021": 0.722 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr107", + "Region": "Chiapas", + "1990": 0.402, + "1991": 0.399, + "1992": 0.4, + "1993": 0.401, + "1994": 0.405, + "1995": 0.41, + "1996": 0.415, + "1997": 0.42, + "1998": 0.429, + "1999": 0.436, + "2000": 0.444, + "2001": 0.45, + "2002": 0.463, + "2003": 0.475, + "2004": 0.482, + "2005": 0.489, + "2006": 0.502, + "2007": 0.507, + "2008": 0.514, + "2009": 0.521, + "2010": 0.523, + "2011": 0.532, + "2012": 0.547, + "2013": 0.551, + "2014": 0.559, + "2015": 0.57, + "2016": 0.591, + "2017": 0.599, + "2018": 0.606, + "2019": 0.609, + "2020": 0.613, + "2021": 0.613 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr108", + "Region": "Chihuahua", + "1990": 0.508, + "1991": 0.506, + "1992": 0.507, + "1993": 0.509, + "1994": 0.514, + "1995": 0.52, + "1996": 0.526, + "1997": 0.532, + "1998": 0.543, + "1999": 0.552, + "2000": 0.561, + "2001": 0.569, + "2002": 0.585, + "2003": 0.599, + "2004": 0.608, + "2005": 0.617, + "2006": 0.635, + "2007": 0.64, + "2008": 0.648, + "2009": 0.657, + "2010": 0.657, + "2011": 0.667, + "2012": 0.683, + "2013": 0.683, + "2014": 0.689, + "2015": 0.701, + "2016": 0.726, + "2017": 0.736, + "2018": 0.744, + "2019": 0.749, + "2020": 0.754, + "2021": 0.754 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr105", + "Region": "Coahuila", + "1990": 0.531, + "1991": 0.529, + "1992": 0.53, + "1993": 0.532, + "1994": 0.538, + "1995": 0.544, + "1996": 0.55, + "1997": 0.557, + "1998": 0.568, + "1999": 0.577, + "2000": 0.587, + "2001": 0.592, + "2002": 0.606, + "2003": 0.618, + "2004": 0.625, + "2005": 0.632, + "2006": 0.648, + "2007": 0.65, + "2008": 0.655, + "2009": 0.662, + "2010": 0.66, + "2011": 0.67, + "2012": 0.686, + "2013": 0.686, + "2014": 0.692, + "2015": 0.704, + "2016": 0.728, + "2017": 0.738, + "2018": 0.747, + "2019": 0.752, + "2020": 0.758, + "2021": 0.758 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr106", + "Region": "Colima", + "1990": 0.5, + "1991": 0.497, + "1992": 0.498, + "1993": 0.5, + "1994": 0.505, + "1995": 0.511, + "1996": 0.517, + "1997": 0.523, + "1998": 0.534, + "1999": 0.542, + "2000": 0.552, + "2001": 0.56, + "2002": 0.577, + "2003": 0.593, + "2004": 0.603, + "2005": 0.613, + "2006": 0.632, + "2007": 0.638, + "2008": 0.647, + "2009": 0.658, + "2010": 0.659, + "2011": 0.665, + "2012": 0.677, + "2013": 0.674, + "2014": 0.676, + "2015": 0.684, + "2016": 0.708, + "2017": 0.718, + "2018": 0.726, + "2019": 0.731, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr109", + "Region": "Distrito Federal", + "1990": 0.623, + "1991": 0.62, + "1992": 0.622, + "1993": 0.624, + "1994": 0.63, + "1995": 0.638, + "1996": 0.645, + "1997": 0.653, + "1998": 0.666, + "1999": 0.676, + "2000": 0.688, + "2001": 0.694, + "2002": 0.711, + "2003": 0.725, + "2004": 0.733, + "2005": 0.741, + "2006": 0.76, + "2007": 0.762, + "2008": 0.769, + "2009": 0.777, + "2010": 0.773, + "2011": 0.782, + "2012": 0.798, + "2013": 0.794, + "2014": 0.799, + "2015": 0.809, + "2016": 0.837, + "2017": 0.849, + "2018": 0.858, + "2019": 0.865, + "2020": 0.871, + "2021": 0.871 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr110", + "Region": "Durango", + "1990": 0.481, + "1991": 0.478, + "1992": 0.479, + "1993": 0.481, + "1994": 0.486, + "1995": 0.492, + "1996": 0.497, + "1997": 0.503, + "1998": 0.514, + "1999": 0.522, + "2000": 0.531, + "2001": 0.538, + "2002": 0.554, + "2003": 0.567, + "2004": 0.576, + "2005": 0.585, + "2006": 0.602, + "2007": 0.607, + "2008": 0.615, + "2009": 0.624, + "2010": 0.625, + "2011": 0.634, + "2012": 0.65, + "2013": 0.65, + "2014": 0.657, + "2015": 0.668, + "2016": 0.692, + "2017": 0.702, + "2018": 0.71, + "2019": 0.714, + "2020": 0.719, + "2021": 0.719 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr111", + "Region": "Guanajuato", + "1990": 0.44, + "1991": 0.437, + "1992": 0.438, + "1993": 0.439, + "1994": 0.444, + "1995": 0.449, + "1996": 0.454, + "1997": 0.46, + "1998": 0.469, + "1999": 0.477, + "2000": 0.485, + "2001": 0.492, + "2002": 0.506, + "2003": 0.519, + "2004": 0.527, + "2005": 0.535, + "2006": 0.55, + "2007": 0.554, + "2008": 0.561, + "2009": 0.57, + "2010": 0.57, + "2011": 0.582, + "2012": 0.599, + "2013": 0.603, + "2014": 0.613, + "2015": 0.626, + "2016": 0.649, + "2017": 0.658, + "2018": 0.665, + "2019": 0.67, + "2020": 0.674, + "2021": 0.674 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr112", + "Region": "Guerrero", + "1990": 0.446, + "1991": 0.443, + "1992": 0.444, + "1993": 0.445, + "1994": 0.45, + "1995": 0.455, + "1996": 0.461, + "1997": 0.466, + "1998": 0.476, + "1999": 0.484, + "2000": 0.493, + "2001": 0.498, + "2002": 0.511, + "2003": 0.522, + "2004": 0.529, + "2005": 0.536, + "2006": 0.549, + "2007": 0.552, + "2008": 0.559, + "2009": 0.565, + "2010": 0.565, + "2011": 0.575, + "2012": 0.59, + "2013": 0.592, + "2014": 0.6, + "2015": 0.611, + "2016": 0.634, + "2017": 0.642, + "2018": 0.649, + "2019": 0.653, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr113", + "Region": "Hidalgo", + "1990": 0.468, + "1991": 0.465, + "1992": 0.466, + "1993": 0.468, + "1994": 0.472, + "1995": 0.478, + "1996": 0.484, + "1997": 0.489, + "1998": 0.5, + "1999": 0.508, + "2000": 0.517, + "2001": 0.524, + "2002": 0.539, + "2003": 0.553, + "2004": 0.562, + "2005": 0.571, + "2006": 0.587, + "2007": 0.592, + "2008": 0.6, + "2009": 0.609, + "2010": 0.61, + "2011": 0.622, + "2012": 0.639, + "2013": 0.643, + "2014": 0.652, + "2015": 0.666, + "2016": 0.69, + "2017": 0.7, + "2018": 0.707, + "2019": 0.712, + "2020": 0.716, + "2021": 0.716 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr114", + "Region": "Jalisco", + "1990": 0.5, + "1991": 0.498, + "1992": 0.499, + "1993": 0.501, + "1994": 0.506, + "1995": 0.512, + "1996": 0.518, + "1997": 0.524, + "1998": 0.535, + "1999": 0.543, + "2000": 0.553, + "2001": 0.559, + "2002": 0.574, + "2003": 0.587, + "2004": 0.595, + "2005": 0.603, + "2006": 0.619, + "2007": 0.622, + "2008": 0.629, + "2009": 0.637, + "2010": 0.636, + "2011": 0.646, + "2012": 0.661, + "2013": 0.661, + "2014": 0.668, + "2015": 0.678, + "2016": 0.703, + "2017": 0.712, + "2018": 0.72, + "2019": 0.725, + "2020": 0.73, + "2021": 0.73 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr115", + "Region": "Mexico", + "1990": 0.53, + "1991": 0.528, + "1992": 0.529, + "1993": 0.531, + "1994": 0.536, + "1995": 0.543, + "1996": 0.549, + "1997": 0.556, + "1998": 0.567, + "1999": 0.576, + "2000": 0.586, + "2001": 0.591, + "2002": 0.606, + "2003": 0.618, + "2004": 0.625, + "2005": 0.632, + "2006": 0.648, + "2007": 0.651, + "2008": 0.657, + "2009": 0.664, + "2010": 0.662, + "2011": 0.672, + "2012": 0.688, + "2013": 0.689, + "2014": 0.696, + "2015": 0.707, + "2016": 0.733, + "2017": 0.743, + "2018": 0.751, + "2019": 0.756, + "2020": 0.761, + "2021": 0.761 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr116", + "Region": "Michoacan de Ocampo", + "1990": 0.433, + "1991": 0.43, + "1992": 0.431, + "1993": 0.432, + "1994": 0.437, + "1995": 0.442, + "1996": 0.447, + "1997": 0.452, + "1998": 0.462, + "1999": 0.469, + "2000": 0.478, + "2001": 0.485, + "2002": 0.499, + "2003": 0.512, + "2004": 0.521, + "2005": 0.529, + "2006": 0.545, + "2007": 0.55, + "2008": 0.558, + "2009": 0.567, + "2010": 0.568, + "2011": 0.577, + "2012": 0.591, + "2013": 0.592, + "2014": 0.599, + "2015": 0.609, + "2016": 0.632, + "2017": 0.641, + "2018": 0.647, + "2019": 0.652, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr117", + "Region": "Morelos", + "1990": 0.508, + "1991": 0.506, + "1992": 0.507, + "1993": 0.509, + "1994": 0.514, + "1995": 0.52, + "1996": 0.526, + "1997": 0.533, + "1998": 0.544, + "1999": 0.552, + "2000": 0.562, + "2001": 0.568, + "2002": 0.583, + "2003": 0.597, + "2004": 0.605, + "2005": 0.613, + "2006": 0.63, + "2007": 0.633, + "2008": 0.641, + "2009": 0.649, + "2010": 0.648, + "2011": 0.656, + "2012": 0.669, + "2013": 0.667, + "2014": 0.672, + "2015": 0.681, + "2016": 0.705, + "2017": 0.715, + "2018": 0.723, + "2019": 0.728, + "2020": 0.733, + "2021": 0.733 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr118", + "Region": "Nayarit", + "1990": 0.489, + "1991": 0.486, + "1992": 0.487, + "1993": 0.489, + "1994": 0.494, + "1995": 0.5, + "1996": 0.506, + "1997": 0.512, + "1998": 0.522, + "1999": 0.53, + "2000": 0.54, + "2001": 0.547, + "2002": 0.562, + "2003": 0.575, + "2004": 0.584, + "2005": 0.592, + "2006": 0.608, + "2007": 0.613, + "2008": 0.62, + "2009": 0.629, + "2010": 0.629, + "2011": 0.644, + "2012": 0.664, + "2013": 0.67, + "2014": 0.682, + "2015": 0.698, + "2016": 0.724, + "2017": 0.734, + "2018": 0.742, + "2019": 0.746, + "2020": 0.751, + "2021": 0.751 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr119", + "Region": "Nuevo Leon", + "1990": 0.555, + "1991": 0.553, + "1992": 0.555, + "1993": 0.557, + "1994": 0.562, + "1995": 0.569, + "1996": 0.576, + "1997": 0.583, + "1998": 0.594, + "1999": 0.603, + "2000": 0.614, + "2001": 0.618, + "2002": 0.632, + "2003": 0.644, + "2004": 0.65, + "2005": 0.657, + "2006": 0.673, + "2007": 0.674, + "2008": 0.679, + "2009": 0.685, + "2010": 0.681, + "2011": 0.691, + "2012": 0.706, + "2013": 0.705, + "2014": 0.71, + "2015": 0.721, + "2016": 0.746, + "2017": 0.756, + "2018": 0.765, + "2019": 0.771, + "2020": 0.776, + "2021": 0.776 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr120", + "Region": "Oaxaca", + "1990": 0.429, + "1991": 0.426, + "1992": 0.427, + "1993": 0.428, + "1994": 0.432, + "1995": 0.437, + "1996": 0.443, + "1997": 0.448, + "1998": 0.458, + "1999": 0.465, + "2000": 0.474, + "2001": 0.479, + "2002": 0.494, + "2003": 0.506, + "2004": 0.513, + "2005": 0.521, + "2006": 0.534, + "2007": 0.539, + "2008": 0.546, + "2009": 0.554, + "2010": 0.555, + "2011": 0.563, + "2012": 0.577, + "2013": 0.578, + "2014": 0.585, + "2015": 0.594, + "2016": 0.617, + "2017": 0.625, + "2018": 0.632, + "2019": 0.636, + "2020": 0.639, + "2021": 0.639 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr121", + "Region": "Puebla", + "1990": 0.468, + "1991": 0.465, + "1992": 0.466, + "1993": 0.467, + "1994": 0.472, + "1995": 0.478, + "1996": 0.483, + "1997": 0.489, + "1998": 0.499, + "1999": 0.507, + "2000": 0.516, + "2001": 0.524, + "2002": 0.54, + "2003": 0.555, + "2004": 0.564, + "2005": 0.574, + "2006": 0.591, + "2007": 0.597, + "2008": 0.606, + "2009": 0.615, + "2010": 0.617, + "2011": 0.622, + "2012": 0.634, + "2013": 0.631, + "2014": 0.634, + "2015": 0.641, + "2016": 0.665, + "2017": 0.674, + "2018": 0.682, + "2019": 0.686, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr122", + "Region": "Queretaro", + "1990": 0.499, + "1991": 0.496, + "1992": 0.498, + "1993": 0.499, + "1994": 0.504, + "1995": 0.51, + "1996": 0.516, + "1997": 0.522, + "1998": 0.533, + "1999": 0.541, + "2000": 0.551, + "2001": 0.559, + "2002": 0.575, + "2003": 0.589, + "2004": 0.599, + "2005": 0.608, + "2006": 0.626, + "2007": 0.631, + "2008": 0.64, + "2009": 0.649, + "2010": 0.65, + "2011": 0.66, + "2012": 0.677, + "2013": 0.677, + "2014": 0.684, + "2015": 0.696, + "2016": 0.721, + "2017": 0.731, + "2018": 0.739, + "2019": 0.744, + "2020": 0.75, + "2021": 0.75 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr123", + "Region": "Quintana Roo", + "1990": 0.517, + "1991": 0.515, + "1992": 0.516, + "1993": 0.518, + "1994": 0.523, + "1995": 0.529, + "1996": 0.536, + "1997": 0.542, + "1998": 0.553, + "1999": 0.562, + "2000": 0.571, + "2001": 0.578, + "2002": 0.593, + "2003": 0.606, + "2004": 0.614, + "2005": 0.622, + "2006": 0.638, + "2007": 0.642, + "2008": 0.649, + "2009": 0.657, + "2010": 0.655, + "2011": 0.665, + "2012": 0.681, + "2013": 0.681, + "2014": 0.687, + "2015": 0.698, + "2016": 0.723, + "2017": 0.733, + "2018": 0.741, + "2019": 0.746, + "2020": 0.752, + "2021": 0.752 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr124", + "Region": "San Luis Potosi", + "1990": 0.476, + "1991": 0.474, + "1992": 0.475, + "1993": 0.476, + "1994": 0.481, + "1995": 0.487, + "1996": 0.492, + "1997": 0.498, + "1998": 0.509, + "1999": 0.517, + "2000": 0.526, + "2001": 0.533, + "2002": 0.548, + "2003": 0.562, + "2004": 0.57, + "2005": 0.578, + "2006": 0.594, + "2007": 0.599, + "2008": 0.607, + "2009": 0.616, + "2010": 0.616, + "2011": 0.625, + "2012": 0.639, + "2013": 0.639, + "2014": 0.645, + "2015": 0.655, + "2016": 0.679, + "2017": 0.688, + "2018": 0.696, + "2019": 0.7, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr125", + "Region": "Sinaloa", + "1990": 0.504, + "1991": 0.502, + "1992": 0.503, + "1993": 0.504, + "1994": 0.51, + "1995": 0.516, + "1996": 0.522, + "1997": 0.528, + "1998": 0.539, + "1999": 0.547, + "2000": 0.557, + "2001": 0.566, + "2002": 0.584, + "2003": 0.599, + "2004": 0.61, + "2005": 0.621, + "2006": 0.64, + "2007": 0.646, + "2008": 0.656, + "2009": 0.667, + "2010": 0.668, + "2011": 0.68, + "2012": 0.698, + "2013": 0.701, + "2014": 0.71, + "2015": 0.724, + "2016": 0.75, + "2017": 0.76, + "2018": 0.768, + "2019": 0.773, + "2020": 0.779, + "2021": 0.779 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr126", + "Region": "Sonora", + "1990": 0.538, + "1991": 0.535, + "1992": 0.537, + "1993": 0.539, + "1994": 0.544, + "1995": 0.551, + "1996": 0.557, + "1997": 0.564, + "1998": 0.575, + "1999": 0.584, + "2000": 0.594, + "2001": 0.602, + "2002": 0.618, + "2003": 0.633, + "2004": 0.642, + "2005": 0.651, + "2006": 0.669, + "2007": 0.674, + "2008": 0.682, + "2009": 0.691, + "2010": 0.69, + "2011": 0.701, + "2012": 0.717, + "2013": 0.717, + "2014": 0.724, + "2015": 0.735, + "2016": 0.762, + "2017": 0.772, + "2018": 0.781, + "2019": 0.786, + "2020": 0.791, + "2021": 0.791 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr127", + "Region": "Tabasco", + "1990": 0.487, + "1991": 0.484, + "1992": 0.486, + "1993": 0.487, + "1994": 0.492, + "1995": 0.498, + "1996": 0.504, + "1997": 0.51, + "1998": 0.52, + "1999": 0.528, + "2000": 0.538, + "2001": 0.546, + "2002": 0.563, + "2003": 0.578, + "2004": 0.588, + "2005": 0.598, + "2006": 0.616, + "2007": 0.622, + "2008": 0.632, + "2009": 0.642, + "2010": 0.644, + "2011": 0.652, + "2012": 0.667, + "2013": 0.667, + "2014": 0.673, + "2015": 0.683, + "2016": 0.708, + "2017": 0.718, + "2018": 0.726, + "2019": 0.73, + "2020": 0.735, + "2021": 0.735 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr128", + "Region": "Tamaulipas", + "1990": 0.531, + "1991": 0.529, + "1992": 0.53, + "1993": 0.532, + "1994": 0.537, + "1995": 0.544, + "1996": 0.55, + "1997": 0.557, + "1998": 0.568, + "1999": 0.577, + "2000": 0.587, + "2001": 0.592, + "2002": 0.606, + "2003": 0.618, + "2004": 0.625, + "2005": 0.632, + "2006": 0.647, + "2007": 0.649, + "2008": 0.655, + "2009": 0.662, + "2010": 0.66, + "2011": 0.669, + "2012": 0.684, + "2013": 0.683, + "2014": 0.689, + "2015": 0.7, + "2016": 0.725, + "2017": 0.735, + "2018": 0.743, + "2019": 0.748, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr129", + "Region": "Tlaxcala", + "1990": 0.503, + "1991": 0.501, + "1992": 0.502, + "1993": 0.503, + "1994": 0.509, + "1995": 0.515, + "1996": 0.521, + "1997": 0.527, + "1998": 0.538, + "1999": 0.546, + "2000": 0.556, + "2001": 0.563, + "2002": 0.579, + "2003": 0.593, + "2004": 0.602, + "2005": 0.611, + "2006": 0.628, + "2007": 0.632, + "2008": 0.64, + "2009": 0.649, + "2010": 0.649, + "2011": 0.656, + "2012": 0.669, + "2013": 0.666, + "2014": 0.67, + "2015": 0.678, + "2016": 0.702, + "2017": 0.712, + "2018": 0.72, + "2019": 0.724, + "2020": 0.729, + "2021": 0.729 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr130", + "Region": "Veracruz", + "1990": 0.467, + "1991": 0.464, + "1992": 0.465, + "1993": 0.467, + "1994": 0.471, + "1995": 0.477, + "1996": 0.483, + "1997": 0.488, + "1998": 0.499, + "1999": 0.507, + "2000": 0.516, + "2001": 0.521, + "2002": 0.535, + "2003": 0.548, + "2004": 0.555, + "2005": 0.562, + "2006": 0.576, + "2007": 0.58, + "2008": 0.587, + "2009": 0.594, + "2010": 0.594, + "2011": 0.603, + "2012": 0.618, + "2013": 0.619, + "2014": 0.626, + "2015": 0.637, + "2016": 0.66, + "2017": 0.669, + "2018": 0.677, + "2019": 0.681, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr131", + "Region": "Yucatan", + "1990": 0.488, + "1991": 0.485, + "1992": 0.486, + "1993": 0.487, + "1994": 0.492, + "1995": 0.498, + "1996": 0.504, + "1997": 0.51, + "1998": 0.521, + "1999": 0.529, + "2000": 0.539, + "2001": 0.545, + "2002": 0.56, + "2003": 0.573, + "2004": 0.581, + "2005": 0.589, + "2006": 0.604, + "2007": 0.608, + "2008": 0.616, + "2009": 0.624, + "2010": 0.624, + "2011": 0.634, + "2012": 0.651, + "2013": 0.653, + "2014": 0.661, + "2015": 0.673, + "2016": 0.697, + "2017": 0.707, + "2018": 0.715, + "2019": 0.719, + "2020": 0.724, + "2021": 0.724 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr132", + "Region": "Zacatecas", + "1990": 0.44, + "1991": 0.437, + "1992": 0.439, + "1993": 0.44, + "1994": 0.444, + "1995": 0.45, + "1996": 0.455, + "1997": 0.46, + "1998": 0.47, + "1999": 0.477, + "2000": 0.486, + "2001": 0.496, + "2002": 0.513, + "2003": 0.529, + "2004": 0.541, + "2005": 0.552, + "2006": 0.571, + "2007": 0.578, + "2008": 0.589, + "2009": 0.601, + "2010": 0.605, + "2011": 0.613, + "2012": 0.627, + "2013": 0.628, + "2014": 0.634, + "2015": 0.644, + "2016": 0.668, + "2017": 0.677, + "2018": 0.684, + "2019": 0.689, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Micronesia (Federated States of)", + "Continent": "Asia/Pacific", + "ISO_Code": "FSM", + "Level": "National", + "GDLCODE": "FSMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.441, + "2001": 0.453, + "2002": 0.465, + "2003": 0.478, + "2004": 0.49, + "2005": 0.503, + "2006": 0.515, + "2007": 0.527, + "2008": 0.54, + "2009": 0.541, + "2010": 0.55, + "2011": 0.554, + "2012": 0.556, + "2013": 0.558, + "2014": 0.561, + "2015": 0.56, + "2016": 0.567, + "2017": 0.574, + "2018": 0.578, + "2019": 0.581, + "2020": 0.581, + "2021": 0.581 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "National", + "GDLCODE": "MDAt", + "Region": "Total", + "1990": 0.502, + "1991": 0.513, + "1992": 0.524, + "1993": 0.535, + "1994": 0.547, + "1995": 0.559, + "1996": 0.57, + "1997": 0.581, + "1998": 0.592, + "1999": 0.604, + "2000": 0.616, + "2001": 0.629, + "2002": 0.642, + "2003": 0.655, + "2004": 0.668, + "2005": 0.681, + "2006": 0.698, + "2007": 0.716, + "2008": 0.729, + "2009": 0.742, + "2010": 0.752, + "2011": 0.763, + "2012": 0.778, + "2013": 0.779, + "2014": 0.784, + "2015": 0.783, + "2016": 0.784, + "2017": 0.791, + "2018": 0.795, + "2019": 0.796, + "2020": 0.795, + "2021": 0.795 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr102", + "Region": "Center", + "1990": 0.475, + "1991": 0.485, + "1992": 0.496, + "1993": 0.507, + "1994": 0.518, + "1995": 0.529, + "1996": 0.539, + "1997": 0.55, + "1998": 0.561, + "1999": 0.572, + "2000": 0.583, + "2001": 0.595, + "2002": 0.608, + "2003": 0.62, + "2004": 0.632, + "2005": 0.645, + "2006": 0.661, + "2007": 0.678, + "2008": 0.69, + "2009": 0.702, + "2010": 0.711, + "2011": 0.722, + "2012": 0.735, + "2013": 0.737, + "2014": 0.741, + "2015": 0.74, + "2016": 0.741, + "2017": 0.748, + "2018": 0.751, + "2019": 0.752, + "2020": 0.752, + "2021": 0.752 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr104", + "Region": "Chisinau", + "1990": 0.585, + "1991": 0.598, + "1992": 0.61, + "1993": 0.623, + "1994": 0.636, + "1995": 0.65, + "1996": 0.662, + "1997": 0.675, + "1998": 0.688, + "1999": 0.701, + "2000": 0.714, + "2001": 0.729, + "2002": 0.744, + "2003": 0.758, + "2004": 0.773, + "2005": 0.788, + "2006": 0.808, + "2007": 0.829, + "2008": 0.843, + "2009": 0.857, + "2010": 0.869, + "2011": 0.882, + "2012": 0.899, + "2013": 0.9, + "2014": 0.905, + "2015": 0.904, + "2016": 0.906, + "2017": 0.914, + "2018": 0.918, + "2019": 0.919, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr101", + "Region": "North", + "1990": 0.475, + "1991": 0.485, + "1992": 0.496, + "1993": 0.507, + "1994": 0.518, + "1995": 0.529, + "1996": 0.539, + "1997": 0.55, + "1998": 0.561, + "1999": 0.572, + "2000": 0.583, + "2001": 0.595, + "2002": 0.608, + "2003": 0.62, + "2004": 0.633, + "2005": 0.645, + "2006": 0.663, + "2007": 0.681, + "2008": 0.694, + "2009": 0.707, + "2010": 0.717, + "2011": 0.73, + "2012": 0.744, + "2013": 0.746, + "2014": 0.75, + "2015": 0.749, + "2016": 0.75, + "2017": 0.757, + "2018": 0.761, + "2019": 0.762, + "2020": 0.761, + "2021": 0.761 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr103", + "Region": "South", + "1990": 0.484, + "1991": 0.494, + "1992": 0.505, + "1993": 0.516, + "1994": 0.527, + "1995": 0.539, + "1996": 0.549, + "1997": 0.56, + "1998": 0.571, + "1999": 0.583, + "2000": 0.594, + "2001": 0.607, + "2002": 0.619, + "2003": 0.632, + "2004": 0.645, + "2005": 0.657, + "2006": 0.675, + "2007": 0.693, + "2008": 0.706, + "2009": 0.719, + "2010": 0.729, + "2011": 0.741, + "2012": 0.755, + "2013": 0.757, + "2014": 0.761, + "2015": 0.76, + "2016": 0.761, + "2017": 0.768, + "2018": 0.772, + "2019": 0.773, + "2020": 0.772, + "2021": 0.772 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "National", + "GDLCODE": "MNGt", + "Region": "Total", + "1990": 0.565, + "1991": 0.554, + "1992": 0.53, + "1993": 0.501, + "1994": 0.5, + "1995": 0.501, + "1996": 0.513, + "1997": 0.522, + "1998": 0.536, + "1999": 0.546, + "2000": 0.562, + "2001": 0.586, + "2002": 0.599, + "2003": 0.623, + "2004": 0.642, + "2005": 0.67, + "2006": 0.682, + "2007": 0.697, + "2008": 0.712, + "2009": 0.727, + "2010": 0.74, + "2011": 0.739, + "2012": 0.738, + "2013": 0.737, + "2014": 0.737, + "2015": 0.736, + "2016": 0.735, + "2017": 0.734, + "2018": 0.733, + "2019": 0.732, + "2020": 0.73, + "2021": 0.73 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr103", + "Region": "Central (Dornogovi, Dundgovi, Umnugovi, Selenge, Tuv, Darkhan-Uul, Govisumber)", + "1990": 0.532, + "1991": 0.521, + "1992": 0.5, + "1993": 0.473, + "1994": 0.472, + "1995": 0.473, + "1996": 0.484, + "1997": 0.493, + "1998": 0.505, + "1999": 0.515, + "2000": 0.53, + "2001": 0.552, + "2002": 0.564, + "2003": 0.586, + "2004": 0.604, + "2005": 0.63, + "2006": 0.642, + "2007": 0.657, + "2008": 0.672, + "2009": 0.687, + "2010": 0.7, + "2011": 0.698, + "2012": 0.697, + "2013": 0.696, + "2014": 0.695, + "2015": 0.694, + "2016": 0.692, + "2017": 0.691, + "2018": 0.69, + "2019": 0.69, + "2020": 0.688, + "2021": 0.688 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr104", + "Region": "Eastern (Dornod, Sukhbaatar, Khentii)", + "1990": 0.519, + "1991": 0.509, + "1992": 0.487, + "1993": 0.461, + "1994": 0.46, + "1995": 0.461, + "1996": 0.472, + "1997": 0.481, + "1998": 0.492, + "1999": 0.502, + "2000": 0.517, + "2001": 0.538, + "2002": 0.551, + "2003": 0.572, + "2004": 0.59, + "2005": 0.615, + "2006": 0.62, + "2007": 0.63, + "2008": 0.639, + "2009": 0.648, + "2010": 0.654, + "2011": 0.653, + "2012": 0.651, + "2013": 0.65, + "2014": 0.649, + "2015": 0.648, + "2016": 0.646, + "2017": 0.645, + "2018": 0.644, + "2019": 0.643, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr102", + "Region": "Khangai (Arkhangai, Bayankhongor, Bulgan, Uvurkhangai, Khuvsgul, Orkhon)", + "1990": 0.522, + "1991": 0.512, + "1992": 0.489, + "1993": 0.461, + "1994": 0.461, + "1995": 0.461, + "1996": 0.473, + "1997": 0.482, + "1998": 0.494, + "1999": 0.504, + "2000": 0.519, + "2001": 0.541, + "2002": 0.554, + "2003": 0.575, + "2004": 0.594, + "2005": 0.62, + "2006": 0.62, + "2007": 0.624, + "2008": 0.629, + "2009": 0.633, + "2010": 0.635, + "2011": 0.637, + "2012": 0.64, + "2013": 0.642, + "2014": 0.645, + "2015": 0.647, + "2016": 0.65, + "2017": 0.652, + "2018": 0.654, + "2019": 0.654, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr105", + "Region": "Ulaanbaatar", + "1990": 0.633, + "1991": 0.62, + "1992": 0.594, + "1993": 0.562, + "1994": 0.561, + "1995": 0.562, + "1996": 0.576, + "1997": 0.586, + "1998": 0.601, + "1999": 0.612, + "2000": 0.63, + "2001": 0.656, + "2002": 0.671, + "2003": 0.697, + "2004": 0.719, + "2005": 0.749, + "2006": 0.763, + "2007": 0.781, + "2008": 0.799, + "2009": 0.817, + "2010": 0.831, + "2011": 0.826, + "2012": 0.821, + "2013": 0.816, + "2014": 0.812, + "2015": 0.807, + "2016": 0.802, + "2017": 0.797, + "2018": 0.792, + "2019": 0.791, + "2020": 0.789, + "2021": 0.789 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr101", + "Region": "Western (Bayan-Ulgii, Govi-Altai, Zavkhan, Uvs, Khovd)", + "1990": 0.511, + "1991": 0.5, + "1992": 0.478, + "1993": 0.451, + "1994": 0.45, + "1995": 0.451, + "1996": 0.462, + "1997": 0.471, + "1998": 0.483, + "1999": 0.492, + "2000": 0.507, + "2001": 0.529, + "2002": 0.541, + "2003": 0.563, + "2004": 0.581, + "2005": 0.606, + "2006": 0.618, + "2007": 0.632, + "2008": 0.647, + "2009": 0.661, + "2010": 0.673, + "2011": 0.669, + "2012": 0.666, + "2013": 0.662, + "2014": 0.658, + "2015": 0.655, + "2016": 0.652, + "2017": 0.648, + "2018": 0.645, + "2019": 0.644, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "National", + "GDLCODE": "MNEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.737, + "2007": 0.754, + "2008": 0.771, + "2009": 0.783, + "2010": 0.791, + "2011": 0.794, + "2012": 0.797, + "2013": 0.8, + "2014": 0.802, + "2015": 0.805, + "2016": 0.808, + "2017": 0.815, + "2018": 0.819, + "2019": 0.821, + "2020": 0.825, + "2021": 0.825 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr102", + "Region": "Centre", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.757, + "2007": 0.775, + "2008": 0.792, + "2009": 0.805, + "2010": 0.814, + "2011": 0.817, + "2012": 0.82, + "2013": 0.823, + "2014": 0.826, + "2015": 0.829, + "2016": 0.831, + "2017": 0.838, + "2018": 0.841, + "2019": 0.844, + "2020": 0.848, + "2021": 0.848 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr101", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.759, + "2007": 0.766, + "2008": 0.771, + "2009": 0.773, + "2010": 0.77, + "2011": 0.762, + "2012": 0.754, + "2013": 0.745, + "2014": 0.755, + "2015": 0.764, + "2016": 0.773, + "2017": 0.786, + "2018": 0.796, + "2019": 0.798, + "2020": 0.802, + "2021": 0.802 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr103", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.686, + "2007": 0.711, + "2008": 0.737, + "2009": 0.759, + "2010": 0.777, + "2011": 0.79, + "2012": 0.803, + "2013": 0.816, + "2014": 0.808, + "2015": 0.799, + "2016": 0.791, + "2017": 0.787, + "2018": 0.78, + "2019": 0.782, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "National", + "GDLCODE": "MARt", + "Region": "Total", + "1990": 0.251, + "1991": 0.254, + "1992": 0.261, + "1993": 0.271, + "1994": 0.282, + "1995": 0.292, + "1996": 0.3, + "1997": 0.308, + "1998": 0.314, + "1999": 0.33, + "2000": 0.346, + "2001": 0.359, + "2002": 0.375, + "2003": 0.388, + "2004": 0.398, + "2005": 0.407, + "2006": 0.41, + "2007": 0.421, + "2008": 0.428, + "2009": 0.437, + "2010": 0.449, + "2011": 0.467, + "2012": 0.484, + "2013": 0.501, + "2014": 0.518, + "2015": 0.535, + "2016": 0.549, + "2017": 0.563, + "2018": 0.574, + "2019": 0.585, + "2020": 0.59, + "2021": 0.59 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr103", + "Region": "Centre", + "1990": 0.278, + "1991": 0.282, + "1992": 0.289, + "1993": 0.302, + "1994": 0.316, + "1995": 0.329, + "1996": 0.34, + "1997": 0.352, + "1998": 0.36, + "1999": 0.379, + "2000": 0.4, + "2001": 0.416, + "2002": 0.435, + "2003": 0.451, + "2004": 0.46, + "2005": 0.467, + "2006": 0.469, + "2007": 0.479, + "2008": 0.486, + "2009": 0.494, + "2010": 0.507, + "2011": 0.526, + "2012": 0.544, + "2013": 0.563, + "2014": 0.581, + "2015": 0.6, + "2016": 0.616, + "2017": 0.632, + "2018": 0.643, + "2019": 0.656, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr102", + "Region": "Centre north", + "1990": 0.216, + "1991": 0.218, + "1992": 0.224, + "1993": 0.234, + "1994": 0.246, + "1995": 0.257, + "1996": 0.266, + "1997": 0.275, + "1998": 0.281, + "1999": 0.297, + "2000": 0.314, + "2001": 0.328, + "2002": 0.344, + "2003": 0.357, + "2004": 0.374, + "2005": 0.388, + "2006": 0.396, + "2007": 0.411, + "2008": 0.423, + "2009": 0.435, + "2010": 0.451, + "2011": 0.472, + "2012": 0.493, + "2013": 0.513, + "2014": 0.534, + "2015": 0.552, + "2016": 0.566, + "2017": 0.581, + "2018": 0.592, + "2019": 0.603, + "2020": 0.608, + "2021": 0.608 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr105", + "Region": "Centre south", + "1990": 0.31, + "1991": 0.313, + "1992": 0.321, + "1993": 0.325, + "1994": 0.33, + "1995": 0.334, + "1996": 0.337, + "1997": 0.34, + "1998": 0.34, + "1999": 0.351, + "2000": 0.363, + "2001": 0.372, + "2002": 0.383, + "2003": 0.392, + "2004": 0.399, + "2005": 0.404, + "2006": 0.405, + "2007": 0.413, + "2008": 0.419, + "2009": 0.425, + "2010": 0.436, + "2011": 0.451, + "2012": 0.466, + "2013": 0.481, + "2014": 0.496, + "2015": 0.511, + "2016": 0.525, + "2017": 0.538, + "2018": 0.548, + "2019": 0.558, + "2020": 0.564, + "2021": 0.564 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr104", + "Region": "Eastern", + "1990": 0.277, + "1991": 0.28, + "1992": 0.287, + "1993": 0.293, + "1994": 0.301, + "1995": 0.309, + "1996": 0.314, + "1997": 0.319, + "1998": 0.323, + "1999": 0.336, + "2000": 0.351, + "2001": 0.362, + "2002": 0.375, + "2003": 0.386, + "2004": 0.388, + "2005": 0.389, + "2006": 0.386, + "2007": 0.39, + "2008": 0.392, + "2009": 0.396, + "2010": 0.404, + "2011": 0.415, + "2012": 0.426, + "2013": 0.438, + "2014": 0.449, + "2015": 0.463, + "2016": 0.475, + "2017": 0.487, + "2018": 0.496, + "2019": 0.505, + "2020": 0.511, + "2021": 0.511 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr101", + "Region": "North west", + "1990": 0.278, + "1991": 0.283, + "1992": 0.29, + "1993": 0.299, + "1994": 0.31, + "1995": 0.319, + "1996": 0.326, + "1997": 0.334, + "1998": 0.339, + "1999": 0.354, + "2000": 0.37, + "2001": 0.382, + "2002": 0.397, + "2003": 0.41, + "2004": 0.422, + "2005": 0.431, + "2006": 0.436, + "2007": 0.448, + "2008": 0.456, + "2009": 0.466, + "2010": 0.48, + "2011": 0.499, + "2012": 0.518, + "2013": 0.537, + "2014": 0.556, + "2015": 0.575, + "2016": 0.59, + "2017": 0.605, + "2018": 0.616, + "2019": 0.628, + "2020": 0.634, + "2021": 0.634 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr107", + "Region": "South", + "1990": 0.192, + "1991": 0.194, + "1992": 0.199, + "1993": 0.213, + "1994": 0.228, + "1995": 0.242, + "1996": 0.255, + "1997": 0.266, + "1998": 0.276, + "1999": 0.294, + "2000": 0.314, + "2001": 0.33, + "2002": 0.349, + "2003": 0.366, + "2004": 0.377, + "2005": 0.386, + "2006": 0.39, + "2007": 0.401, + "2008": 0.409, + "2009": 0.418, + "2010": 0.431, + "2011": 0.448, + "2012": 0.465, + "2013": 0.481, + "2014": 0.498, + "2015": 0.514, + "2016": 0.528, + "2017": 0.541, + "2018": 0.551, + "2019": 0.561, + "2020": 0.567, + "2021": 0.567 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr106", + "Region": "Tensift", + "1990": 0.172, + "1991": 0.174, + "1992": 0.178, + "1993": 0.189, + "1994": 0.2, + "1995": 0.211, + "1996": 0.22, + "1997": 0.229, + "1998": 0.236, + "1999": 0.251, + "2000": 0.267, + "2001": 0.279, + "2002": 0.295, + "2003": 0.307, + "2004": 0.319, + "2005": 0.328, + "2006": 0.333, + "2007": 0.344, + "2008": 0.352, + "2009": 0.361, + "2010": 0.373, + "2011": 0.389, + "2012": 0.405, + "2013": 0.42, + "2014": 0.436, + "2015": 0.45, + "2016": 0.462, + "2017": 0.474, + "2018": 0.483, + "2019": 0.492, + "2020": 0.496, + "2021": 0.496 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "National", + "GDLCODE": "MOZt", + "Region": "Total", + "1990": 0.156, + "1991": 0.156, + "1992": 0.155, + "1993": 0.155, + "1994": 0.158, + "1995": 0.165, + "1996": 0.176, + "1997": 0.187, + "1998": 0.199, + "1999": 0.21, + "2000": 0.224, + "2001": 0.24, + "2002": 0.254, + "2003": 0.267, + "2004": 0.28, + "2005": 0.299, + "2006": 0.309, + "2007": 0.328, + "2008": 0.342, + "2009": 0.347, + "2010": 0.356, + "2011": 0.353, + "2012": 0.353, + "2013": 0.373, + "2014": 0.376, + "2015": 0.381, + "2016": 0.38, + "2017": 0.379, + "2018": 0.385, + "2019": 0.39, + "2020": 0.39, + "2021": 0.39 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr102", + "Region": "Cabo delgado", + "1990": 0.106, + "1991": 0.105, + "1992": 0.105, + "1993": 0.104, + "1994": 0.106, + "1995": 0.111, + "1996": 0.118, + "1997": 0.125, + "1998": 0.143, + "1999": 0.16, + "2000": 0.18, + "2001": 0.201, + "2002": 0.222, + "2003": 0.242, + "2004": 0.247, + "2005": 0.257, + "2006": 0.258, + "2007": 0.266, + "2008": 0.27, + "2009": 0.266, + "2010": 0.265, + "2011": 0.255, + "2012": 0.254, + "2013": 0.269, + "2014": 0.27, + "2015": 0.274, + "2016": 0.273, + "2017": 0.273, + "2018": 0.277, + "2019": 0.281, + "2020": 0.281, + "2021": 0.281 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr109", + "Region": "Gaza", + "1990": 0.152, + "1991": 0.151, + "1992": 0.151, + "1993": 0.15, + "1994": 0.154, + "1995": 0.16, + "1996": 0.171, + "1997": 0.183, + "1998": 0.195, + "1999": 0.208, + "2000": 0.223, + "2001": 0.24, + "2002": 0.256, + "2003": 0.27, + "2004": 0.283, + "2005": 0.302, + "2006": 0.311, + "2007": 0.329, + "2008": 0.342, + "2009": 0.346, + "2010": 0.353, + "2011": 0.348, + "2012": 0.348, + "2013": 0.368, + "2014": 0.37, + "2015": 0.374, + "2016": 0.374, + "2017": 0.373, + "2018": 0.379, + "2019": 0.384, + "2020": 0.384, + "2021": 0.384 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr108", + "Region": "Inhambane", + "1990": 0.165, + "1991": 0.164, + "1992": 0.164, + "1993": 0.163, + "1994": 0.167, + "1995": 0.175, + "1996": 0.187, + "1997": 0.2, + "1998": 0.211, + "1999": 0.222, + "2000": 0.236, + "2001": 0.252, + "2002": 0.266, + "2003": 0.279, + "2004": 0.293, + "2005": 0.315, + "2006": 0.326, + "2007": 0.348, + "2008": 0.364, + "2009": 0.37, + "2010": 0.381, + "2011": 0.376, + "2012": 0.375, + "2013": 0.397, + "2014": 0.398, + "2015": 0.403, + "2016": 0.402, + "2017": 0.402, + "2018": 0.408, + "2019": 0.414, + "2020": 0.414, + "2021": 0.414 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr106", + "Region": "Manica", + "1990": 0.148, + "1991": 0.147, + "1992": 0.147, + "1993": 0.146, + "1994": 0.149, + "1995": 0.155, + "1996": 0.165, + "1997": 0.176, + "1998": 0.193, + "1999": 0.211, + "2000": 0.232, + "2001": 0.255, + "2002": 0.276, + "2003": 0.297, + "2004": 0.315, + "2005": 0.34, + "2006": 0.354, + "2007": 0.378, + "2008": 0.397, + "2009": 0.406, + "2010": 0.42, + "2011": 0.42, + "2012": 0.421, + "2013": 0.444, + "2014": 0.448, + "2015": 0.455, + "2016": 0.454, + "2017": 0.452, + "2018": 0.459, + "2019": 0.466, + "2020": 0.466, + "2021": 0.466 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr111", + "Region": "Maputo Cidade", + "1990": 0.291, + "1991": 0.29, + "1992": 0.289, + "1993": 0.287, + "1994": 0.292, + "1995": 0.303, + "1996": 0.322, + "1997": 0.341, + "1998": 0.356, + "1999": 0.37, + "2000": 0.388, + "2001": 0.41, + "2002": 0.43, + "2003": 0.447, + "2004": 0.466, + "2005": 0.494, + "2006": 0.507, + "2007": 0.533, + "2008": 0.552, + "2009": 0.558, + "2010": 0.573, + "2011": 0.571, + "2012": 0.575, + "2013": 0.607, + "2014": 0.615, + "2015": 0.626, + "2016": 0.623, + "2017": 0.62, + "2018": 0.63, + "2019": 0.64, + "2020": 0.64, + "2021": 0.64 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr110", + "Region": "Maputo Provincia", + "1990": 0.227, + "1991": 0.226, + "1992": 0.225, + "1993": 0.224, + "1994": 0.228, + "1995": 0.236, + "1996": 0.252, + "1997": 0.267, + "1998": 0.283, + "1999": 0.299, + "2000": 0.319, + "2001": 0.341, + "2002": 0.362, + "2003": 0.38, + "2004": 0.395, + "2005": 0.418, + "2006": 0.428, + "2007": 0.45, + "2008": 0.465, + "2009": 0.468, + "2010": 0.479, + "2011": 0.473, + "2012": 0.475, + "2013": 0.502, + "2014": 0.507, + "2015": 0.515, + "2016": 0.513, + "2017": 0.511, + "2018": 0.519, + "2019": 0.527, + "2020": 0.527, + "2021": 0.527 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr103", + "Region": "Nampula", + "1990": 0.124, + "1991": 0.124, + "1992": 0.124, + "1993": 0.123, + "1994": 0.126, + "1995": 0.132, + "1996": 0.141, + "1997": 0.151, + "1998": 0.162, + "1999": 0.173, + "2000": 0.186, + "2001": 0.2, + "2002": 0.214, + "2003": 0.226, + "2004": 0.238, + "2005": 0.255, + "2006": 0.264, + "2007": 0.28, + "2008": 0.292, + "2009": 0.297, + "2010": 0.305, + "2011": 0.303, + "2012": 0.303, + "2013": 0.32, + "2014": 0.322, + "2015": 0.326, + "2016": 0.325, + "2017": 0.325, + "2018": 0.33, + "2019": 0.334, + "2020": 0.334, + "2021": 0.334 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr101", + "Region": "Niassa", + "1990": 0.144, + "1991": 0.143, + "1992": 0.143, + "1993": 0.142, + "1994": 0.145, + "1995": 0.152, + "1996": 0.163, + "1997": 0.173, + "1998": 0.177, + "1999": 0.181, + "2000": 0.186, + "2001": 0.193, + "2002": 0.199, + "2003": 0.203, + "2004": 0.216, + "2005": 0.235, + "2006": 0.247, + "2007": 0.265, + "2008": 0.28, + "2009": 0.288, + "2010": 0.3, + "2011": 0.301, + "2012": 0.301, + "2013": 0.318, + "2014": 0.321, + "2015": 0.325, + "2016": 0.324, + "2017": 0.324, + "2018": 0.328, + "2019": 0.333, + "2020": 0.333, + "2021": 0.333 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr107", + "Region": "Sofala", + "1990": 0.133, + "1991": 0.133, + "1992": 0.132, + "1993": 0.132, + "1994": 0.135, + "1995": 0.14, + "1996": 0.15, + "1997": 0.16, + "1998": 0.176, + "1999": 0.193, + "2000": 0.212, + "2001": 0.232, + "2002": 0.252, + "2003": 0.271, + "2004": 0.287, + "2005": 0.309, + "2006": 0.322, + "2007": 0.344, + "2008": 0.361, + "2009": 0.37, + "2010": 0.383, + "2011": 0.382, + "2012": 0.383, + "2013": 0.405, + "2014": 0.408, + "2015": 0.414, + "2016": 0.413, + "2017": 0.412, + "2018": 0.418, + "2019": 0.424, + "2020": 0.424, + "2021": 0.424 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr105", + "Region": "Tete", + "1990": 0.135, + "1991": 0.134, + "1992": 0.134, + "1993": 0.133, + "1994": 0.137, + "1995": 0.143, + "1996": 0.153, + "1997": 0.163, + "1998": 0.172, + "1999": 0.181, + "2000": 0.192, + "2001": 0.205, + "2002": 0.216, + "2003": 0.226, + "2004": 0.236, + "2005": 0.252, + "2006": 0.259, + "2007": 0.274, + "2008": 0.285, + "2009": 0.288, + "2010": 0.295, + "2011": 0.292, + "2012": 0.292, + "2013": 0.308, + "2014": 0.31, + "2015": 0.314, + "2016": 0.313, + "2017": 0.313, + "2018": 0.317, + "2019": 0.322, + "2020": 0.322, + "2021": 0.322 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr104", + "Region": "Zambezia", + "1990": 0.16, + "1991": 0.159, + "1992": 0.159, + "1993": 0.158, + "1994": 0.162, + "1995": 0.169, + "1996": 0.181, + "1997": 0.193, + "1998": 0.196, + "1999": 0.2, + "2000": 0.205, + "2001": 0.212, + "2002": 0.218, + "2003": 0.221, + "2004": 0.236, + "2005": 0.257, + "2006": 0.271, + "2007": 0.292, + "2008": 0.31, + "2009": 0.32, + "2010": 0.333, + "2011": 0.333, + "2012": 0.332, + "2013": 0.351, + "2014": 0.353, + "2015": 0.357, + "2016": 0.356, + "2017": 0.356, + "2018": 0.361, + "2019": 0.366, + "2020": 0.366, + "2021": 0.366 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "National", + "GDLCODE": "MMRt", + "Region": "Total", + "1990": 0.258, + "1991": 0.275, + "1992": 0.293, + "1993": 0.299, + "1994": 0.303, + "1995": 0.304, + "1996": 0.308, + "1997": 0.313, + "1998": 0.318, + "1999": 0.322, + "2000": 0.327, + "2001": 0.332, + "2002": 0.338, + "2003": 0.344, + "2004": 0.35, + "2005": 0.356, + "2006": 0.362, + "2007": 0.369, + "2008": 0.379, + "2009": 0.389, + "2010": 0.4, + "2011": 0.414, + "2012": 0.428, + "2013": 0.443, + "2014": 0.457, + "2015": 0.471, + "2016": 0.482, + "2017": 0.493, + "2018": 0.504, + "2019": 0.516, + "2020": 0.516, + "2021": 0.516 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr114", + "Region": "Ayeyarwaddy", + "1990": 0.245, + "1991": 0.262, + "1992": 0.279, + "1993": 0.285, + "1994": 0.289, + "1995": 0.289, + "1996": 0.294, + "1997": 0.298, + "1998": 0.303, + "1999": 0.307, + "2000": 0.312, + "2001": 0.318, + "2002": 0.325, + "2003": 0.332, + "2004": 0.339, + "2005": 0.346, + "2006": 0.354, + "2007": 0.361, + "2008": 0.373, + "2009": 0.384, + "2010": 0.396, + "2011": 0.411, + "2012": 0.427, + "2013": 0.442, + "2014": 0.458, + "2015": 0.474, + "2016": 0.486, + "2017": 0.497, + "2018": 0.508, + "2019": 0.52, + "2020": 0.52, + "2021": 0.52 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr107", + "Region": "Bago", + "1990": 0.266, + "1991": 0.284, + "1992": 0.302, + "1993": 0.308, + "1994": 0.313, + "1995": 0.313, + "1996": 0.318, + "1997": 0.323, + "1998": 0.328, + "1999": 0.333, + "2000": 0.338, + "2001": 0.343, + "2002": 0.349, + "2003": 0.355, + "2004": 0.361, + "2005": 0.367, + "2006": 0.374, + "2007": 0.381, + "2008": 0.391, + "2009": 0.402, + "2010": 0.412, + "2011": 0.427, + "2012": 0.442, + "2013": 0.457, + "2014": 0.472, + "2015": 0.487, + "2016": 0.499, + "2017": 0.51, + "2018": 0.521, + "2019": 0.533, + "2020": 0.533, + "2021": 0.533 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr104", + "Region": "Chin", + "1990": 0.281, + "1991": 0.301, + "1992": 0.322, + "1993": 0.328, + "1994": 0.333, + "1995": 0.332, + "1996": 0.337, + "1997": 0.342, + "1998": 0.347, + "1999": 0.352, + "2000": 0.357, + "2001": 0.363, + "2002": 0.37, + "2003": 0.377, + "2004": 0.385, + "2005": 0.392, + "2006": 0.4, + "2007": 0.408, + "2008": 0.421, + "2009": 0.433, + "2010": 0.446, + "2011": 0.463, + "2012": 0.48, + "2013": 0.497, + "2014": 0.515, + "2015": 0.532, + "2016": 0.546, + "2017": 0.559, + "2018": 0.571, + "2019": 0.584, + "2020": 0.584, + "2021": 0.584 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr101", + "Region": "Kachin", + "1990": 0.28, + "1991": 0.299, + "1992": 0.319, + "1993": 0.325, + "1994": 0.33, + "1995": 0.33, + "1996": 0.335, + "1997": 0.34, + "1998": 0.345, + "1999": 0.35, + "2000": 0.355, + "2001": 0.361, + "2002": 0.368, + "2003": 0.374, + "2004": 0.381, + "2005": 0.387, + "2006": 0.394, + "2007": 0.402, + "2008": 0.413, + "2009": 0.424, + "2010": 0.436, + "2011": 0.452, + "2012": 0.467, + "2013": 0.483, + "2014": 0.499, + "2015": 0.515, + "2016": 0.527, + "2017": 0.539, + "2018": 0.551, + "2019": 0.564, + "2020": 0.564, + "2021": 0.564 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr102", + "Region": "Kayah", + "1990": 0.276, + "1991": 0.295, + "1992": 0.315, + "1993": 0.321, + "1994": 0.326, + "1995": 0.326, + "1996": 0.331, + "1997": 0.335, + "1998": 0.34, + "1999": 0.345, + "2000": 0.35, + "2001": 0.354, + "2002": 0.36, + "2003": 0.365, + "2004": 0.37, + "2005": 0.376, + "2006": 0.382, + "2007": 0.388, + "2008": 0.398, + "2009": 0.408, + "2010": 0.417, + "2011": 0.431, + "2012": 0.445, + "2013": 0.459, + "2014": 0.473, + "2015": 0.486, + "2016": 0.497, + "2017": 0.508, + "2018": 0.519, + "2019": 0.531, + "2020": 0.531, + "2021": 0.531 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr103", + "Region": "Kayin", + "1990": 0.214, + "1991": 0.231, + "1992": 0.247, + "1993": 0.251, + "1994": 0.255, + "1995": 0.255, + "1996": 0.258, + "1997": 0.262, + "1998": 0.265, + "1999": 0.268, + "2000": 0.272, + "2001": 0.277, + "2002": 0.283, + "2003": 0.289, + "2004": 0.295, + "2005": 0.301, + "2006": 0.308, + "2007": 0.315, + "2008": 0.325, + "2009": 0.336, + "2010": 0.346, + "2011": 0.36, + "2012": 0.374, + "2013": 0.388, + "2014": 0.402, + "2015": 0.417, + "2016": 0.428, + "2017": 0.438, + "2018": 0.448, + "2019": 0.458, + "2020": 0.458, + "2021": 0.458 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr108", + "Region": "Magway", + "1990": 0.246, + "1991": 0.264, + "1992": 0.281, + "1993": 0.287, + "1994": 0.291, + "1995": 0.291, + "1996": 0.295, + "1997": 0.3, + "1998": 0.304, + "1999": 0.309, + "2000": 0.313, + "2001": 0.319, + "2002": 0.325, + "2003": 0.331, + "2004": 0.338, + "2005": 0.344, + "2006": 0.351, + "2007": 0.358, + "2008": 0.369, + "2009": 0.38, + "2010": 0.391, + "2011": 0.406, + "2012": 0.42, + "2013": 0.435, + "2014": 0.45, + "2015": 0.465, + "2016": 0.477, + "2017": 0.488, + "2018": 0.499, + "2019": 0.51, + "2020": 0.51, + "2021": 0.51 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr109", + "Region": "Mandalay, NayPyitaw", + "1990": 0.269, + "1991": 0.287, + "1992": 0.305, + "1993": 0.311, + "1994": 0.316, + "1995": 0.316, + "1996": 0.321, + "1997": 0.326, + "1998": 0.331, + "1999": 0.336, + "2000": 0.341, + "2001": 0.347, + "2002": 0.354, + "2003": 0.36, + "2004": 0.366, + "2005": 0.373, + "2006": 0.38, + "2007": 0.387, + "2008": 0.398, + "2009": 0.409, + "2010": 0.42, + "2011": 0.435, + "2012": 0.45, + "2013": 0.466, + "2014": 0.481, + "2015": 0.496, + "2016": 0.507, + "2017": 0.519, + "2018": 0.53, + "2019": 0.542, + "2020": 0.542, + "2021": 0.542 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr110", + "Region": "Mon", + "1990": 0.238, + "1991": 0.254, + "1992": 0.271, + "1993": 0.276, + "1994": 0.28, + "1995": 0.28, + "1996": 0.285, + "1997": 0.289, + "1998": 0.293, + "1999": 0.298, + "2000": 0.302, + "2001": 0.308, + "2002": 0.315, + "2003": 0.322, + "2004": 0.329, + "2005": 0.337, + "2006": 0.344, + "2007": 0.352, + "2008": 0.364, + "2009": 0.375, + "2010": 0.387, + "2011": 0.403, + "2012": 0.418, + "2013": 0.434, + "2014": 0.45, + "2015": 0.466, + "2016": 0.479, + "2017": 0.49, + "2018": 0.501, + "2019": 0.512, + "2020": 0.512, + "2021": 0.512 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr111", + "Region": "Rakhine", + "1990": 0.237, + "1991": 0.254, + "1992": 0.272, + "1993": 0.277, + "1994": 0.281, + "1995": 0.281, + "1996": 0.285, + "1997": 0.289, + "1998": 0.293, + "1999": 0.297, + "2000": 0.3, + "2001": 0.304, + "2002": 0.308, + "2003": 0.312, + "2004": 0.316, + "2005": 0.32, + "2006": 0.324, + "2007": 0.329, + "2008": 0.337, + "2009": 0.345, + "2010": 0.353, + "2011": 0.364, + "2012": 0.376, + "2013": 0.387, + "2014": 0.398, + "2015": 0.41, + "2016": 0.418, + "2017": 0.428, + "2018": 0.437, + "2019": 0.447, + "2020": 0.447, + "2021": 0.447 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr105", + "Region": "Sagaing", + "1990": 0.249, + "1991": 0.266, + "1992": 0.284, + "1993": 0.289, + "1994": 0.294, + "1995": 0.294, + "1996": 0.298, + "1997": 0.302, + "1998": 0.307, + "1999": 0.311, + "2000": 0.316, + "2001": 0.321, + "2002": 0.327, + "2003": 0.333, + "2004": 0.339, + "2005": 0.345, + "2006": 0.351, + "2007": 0.358, + "2008": 0.368, + "2009": 0.379, + "2010": 0.389, + "2011": 0.403, + "2012": 0.417, + "2013": 0.432, + "2014": 0.446, + "2015": 0.46, + "2016": 0.472, + "2017": 0.482, + "2018": 0.493, + "2019": 0.504, + "2020": 0.504, + "2021": 0.504 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr113", + "Region": "Shan", + "1990": 0.217, + "1991": 0.234, + "1992": 0.25, + "1993": 0.255, + "1994": 0.258, + "1995": 0.258, + "1996": 0.261, + "1997": 0.265, + "1998": 0.268, + "1999": 0.272, + "2000": 0.276, + "2001": 0.276, + "2002": 0.278, + "2003": 0.279, + "2004": 0.28, + "2005": 0.282, + "2006": 0.283, + "2007": 0.285, + "2008": 0.29, + "2009": 0.294, + "2010": 0.299, + "2011": 0.305, + "2012": 0.312, + "2013": 0.318, + "2014": 0.325, + "2015": 0.331, + "2016": 0.335, + "2017": 0.343, + "2018": 0.35, + "2019": 0.358, + "2020": 0.358, + "2021": 0.358 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr106", + "Region": "Taninthayi", + "1990": 0.284, + "1991": 0.304, + "1992": 0.324, + "1993": 0.33, + "1994": 0.335, + "1995": 0.335, + "1996": 0.341, + "1997": 0.346, + "1998": 0.351, + "1999": 0.356, + "2000": 0.361, + "2001": 0.365, + "2002": 0.37, + "2003": 0.374, + "2004": 0.379, + "2005": 0.383, + "2006": 0.389, + "2007": 0.394, + "2008": 0.403, + "2009": 0.412, + "2010": 0.42, + "2011": 0.433, + "2012": 0.446, + "2013": 0.459, + "2014": 0.471, + "2015": 0.484, + "2016": 0.493, + "2017": 0.504, + "2018": 0.515, + "2019": 0.527, + "2020": 0.527, + "2021": 0.527 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr112", + "Region": "Yangon", + "1990": 0.313, + "1991": 0.332, + "1992": 0.352, + "1993": 0.359, + "1994": 0.365, + "1995": 0.366, + "1996": 0.372, + "1997": 0.379, + "1998": 0.385, + "1999": 0.391, + "2000": 0.397, + "2001": 0.404, + "2002": 0.412, + "2003": 0.42, + "2004": 0.427, + "2005": 0.435, + "2006": 0.443, + "2007": 0.452, + "2008": 0.464, + "2009": 0.477, + "2010": 0.489, + "2011": 0.508, + "2012": 0.526, + "2013": 0.544, + "2014": 0.562, + "2015": 0.58, + "2016": 0.593, + "2017": 0.607, + "2018": 0.62, + "2019": 0.634, + "2020": 0.634, + "2021": 0.634 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "National", + "GDLCODE": "NAMt", + "Region": "Total", + "1990": 0.48, + "1991": 0.492, + "1992": 0.504, + "1993": 0.516, + "1994": 0.528, + "1995": 0.525, + "1996": 0.52, + "1997": 0.515, + "1998": 0.519, + "1999": 0.512, + "2000": 0.518, + "2001": 0.524, + "2002": 0.523, + "2003": 0.529, + "2004": 0.529, + "2005": 0.529, + "2006": 0.526, + "2007": 0.53, + "2008": 0.533, + "2009": 0.535, + "2010": 0.538, + "2011": 0.542, + "2012": 0.547, + "2013": 0.552, + "2014": 0.556, + "2015": 0.561, + "2016": 0.564, + "2017": 0.566, + "2018": 0.569, + "2019": 0.571, + "2020": 0.571, + "2021": 0.571 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr101", + "Region": "Caprivi", + "1990": 0.414, + "1991": 0.424, + "1992": 0.434, + "1993": 0.445, + "1994": 0.455, + "1995": 0.452, + "1996": 0.448, + "1997": 0.444, + "1998": 0.447, + "1999": 0.442, + "2000": 0.447, + "2001": 0.462, + "2002": 0.471, + "2003": 0.485, + "2004": 0.495, + "2005": 0.504, + "2006": 0.511, + "2007": 0.518, + "2008": 0.525, + "2009": 0.531, + "2010": 0.537, + "2011": 0.545, + "2012": 0.553, + "2013": 0.562, + "2014": 0.566, + "2015": 0.571, + "2016": 0.574, + "2017": 0.576, + "2018": 0.579, + "2019": 0.581, + "2020": 0.581, + "2021": 0.581 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr102", + "Region": "Erongo", + "1990": 0.579, + "1991": 0.591, + "1992": 0.603, + "1993": 0.616, + "1994": 0.628, + "1995": 0.625, + "1996": 0.62, + "1997": 0.615, + "1998": 0.619, + "1999": 0.613, + "2000": 0.619, + "2001": 0.613, + "2002": 0.603, + "2003": 0.599, + "2004": 0.59, + "2005": 0.582, + "2006": 0.571, + "2007": 0.573, + "2008": 0.575, + "2009": 0.577, + "2010": 0.578, + "2011": 0.582, + "2012": 0.586, + "2013": 0.591, + "2014": 0.596, + "2015": 0.601, + "2016": 0.604, + "2017": 0.607, + "2018": 0.61, + "2019": 0.613, + "2020": 0.613, + "2021": 0.613 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr103", + "Region": "Hardap", + "1990": 0.451, + "1991": 0.462, + "1992": 0.472, + "1993": 0.483, + "1994": 0.494, + "1995": 0.491, + "1996": 0.487, + "1997": 0.482, + "1998": 0.486, + "1999": 0.48, + "2000": 0.485, + "2001": 0.487, + "2002": 0.482, + "2003": 0.484, + "2004": 0.481, + "2005": 0.478, + "2006": 0.473, + "2007": 0.477, + "2008": 0.481, + "2009": 0.484, + "2010": 0.487, + "2011": 0.493, + "2012": 0.498, + "2013": 0.503, + "2014": 0.508, + "2015": 0.513, + "2016": 0.515, + "2017": 0.517, + "2018": 0.52, + "2019": 0.522, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr104", + "Region": "Karas", + "1990": 0.541, + "1991": 0.554, + "1992": 0.566, + "1993": 0.579, + "1994": 0.591, + "1995": 0.588, + "1996": 0.583, + "1997": 0.578, + "1998": 0.582, + "1999": 0.575, + "2000": 0.581, + "2001": 0.577, + "2002": 0.567, + "2003": 0.563, + "2004": 0.554, + "2005": 0.545, + "2006": 0.534, + "2007": 0.538, + "2008": 0.54, + "2009": 0.543, + "2010": 0.545, + "2011": 0.55, + "2012": 0.555, + "2013": 0.56, + "2014": 0.565, + "2015": 0.57, + "2016": 0.572, + "2017": 0.575, + "2018": 0.577, + "2019": 0.58, + "2020": 0.58, + "2021": 0.58 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr108", + "Region": "Kavango", + "1990": 0.458, + "1991": 0.47, + "1992": 0.482, + "1993": 0.495, + "1994": 0.507, + "1995": 0.504, + "1996": 0.499, + "1997": 0.493, + "1998": 0.497, + "1999": 0.491, + "2000": 0.497, + "2001": 0.493, + "2002": 0.482, + "2003": 0.478, + "2004": 0.468, + "2005": 0.459, + "2006": 0.448, + "2007": 0.452, + "2008": 0.454, + "2009": 0.456, + "2010": 0.459, + "2011": 0.463, + "2012": 0.467, + "2013": 0.47, + "2014": 0.474, + "2015": 0.478, + "2016": 0.48, + "2017": 0.481, + "2018": 0.483, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr105", + "Region": "Khomas", + "1990": 0.546, + "1991": 0.558, + "1992": 0.57, + "1993": 0.582, + "1994": 0.595, + "1995": 0.592, + "1996": 0.587, + "1997": 0.582, + "1998": 0.586, + "1999": 0.579, + "2000": 0.585, + "2001": 0.599, + "2002": 0.606, + "2003": 0.619, + "2004": 0.627, + "2005": 0.635, + "2006": 0.639, + "2007": 0.642, + "2008": 0.643, + "2009": 0.644, + "2010": 0.646, + "2011": 0.65, + "2012": 0.654, + "2013": 0.659, + "2014": 0.665, + "2015": 0.671, + "2016": 0.674, + "2017": 0.677, + "2018": 0.68, + "2019": 0.683, + "2020": 0.683, + "2021": 0.683 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr106", + "Region": "Kunene", + "1990": 0.346, + "1991": 0.355, + "1992": 0.363, + "1993": 0.372, + "1994": 0.381, + "1995": 0.379, + "1996": 0.375, + "1997": 0.371, + "1998": 0.374, + "1999": 0.369, + "2000": 0.374, + "2001": 0.367, + "2002": 0.355, + "2003": 0.348, + "2004": 0.338, + "2005": 0.328, + "2006": 0.316, + "2007": 0.327, + "2008": 0.337, + "2009": 0.347, + "2010": 0.357, + "2011": 0.368, + "2012": 0.379, + "2013": 0.39, + "2014": 0.393, + "2015": 0.397, + "2016": 0.398, + "2017": 0.4, + "2018": 0.402, + "2019": 0.403, + "2020": 0.403, + "2021": 0.403 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr107", + "Region": "Ohangwena", + "1990": 0.407, + "1991": 0.419, + "1992": 0.431, + "1993": 0.444, + "1994": 0.456, + "1995": 0.453, + "1996": 0.447, + "1997": 0.442, + "1998": 0.446, + "1999": 0.439, + "2000": 0.445, + "2001": 0.455, + "2002": 0.458, + "2003": 0.467, + "2004": 0.47, + "2005": 0.473, + "2006": 0.474, + "2007": 0.476, + "2008": 0.478, + "2009": 0.479, + "2010": 0.481, + "2011": 0.484, + "2012": 0.487, + "2013": 0.49, + "2014": 0.494, + "2015": 0.497, + "2016": 0.499, + "2017": 0.501, + "2018": 0.503, + "2019": 0.505, + "2020": 0.505, + "2021": 0.505 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr109", + "Region": "Omaheke", + "1990": 0.317, + "1991": 0.325, + "1992": 0.334, + "1993": 0.342, + "1994": 0.351, + "1995": 0.349, + "1996": 0.345, + "1997": 0.341, + "1998": 0.344, + "1999": 0.339, + "2000": 0.343, + "2001": 0.363, + "2002": 0.376, + "2003": 0.394, + "2004": 0.408, + "2005": 0.421, + "2006": 0.432, + "2007": 0.43, + "2008": 0.427, + "2009": 0.425, + "2010": 0.422, + "2011": 0.422, + "2012": 0.421, + "2013": 0.42, + "2014": 0.423, + "2015": 0.427, + "2016": 0.429, + "2017": 0.431, + "2018": 0.433, + "2019": 0.435, + "2020": 0.435, + "2021": 0.435 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr110", + "Region": "Omusati", + "1990": 0.468, + "1991": 0.482, + "1992": 0.496, + "1993": 0.51, + "1994": 0.525, + "1995": 0.521, + "1996": 0.515, + "1997": 0.508, + "1998": 0.513, + "1999": 0.505, + "2000": 0.512, + "2001": 0.519, + "2002": 0.518, + "2003": 0.523, + "2004": 0.522, + "2005": 0.522, + "2006": 0.519, + "2007": 0.519, + "2008": 0.519, + "2009": 0.518, + "2010": 0.518, + "2011": 0.519, + "2012": 0.52, + "2013": 0.521, + "2014": 0.525, + "2015": 0.529, + "2016": 0.531, + "2017": 0.533, + "2018": 0.536, + "2019": 0.538, + "2020": 0.538, + "2021": 0.538 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr111", + "Region": "Oshana", + "1990": 0.553, + "1991": 0.567, + "1992": 0.582, + "1993": 0.596, + "1994": 0.61, + "1995": 0.607, + "1996": 0.601, + "1997": 0.595, + "1998": 0.599, + "1999": 0.591, + "2000": 0.598, + "2001": 0.597, + "2002": 0.587, + "2003": 0.585, + "2004": 0.577, + "2005": 0.569, + "2006": 0.558, + "2007": 0.562, + "2008": 0.565, + "2009": 0.568, + "2010": 0.571, + "2011": 0.576, + "2012": 0.581, + "2013": 0.586, + "2014": 0.591, + "2015": 0.596, + "2016": 0.598, + "2017": 0.601, + "2018": 0.603, + "2019": 0.606, + "2020": 0.606, + "2021": 0.606 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr112", + "Region": "Oshikoto", + "1990": 0.493, + "1991": 0.505, + "1992": 0.519, + "1993": 0.532, + "1994": 0.545, + "1995": 0.541, + "1996": 0.536, + "1997": 0.53, + "1998": 0.534, + "1999": 0.527, + "2000": 0.534, + "2001": 0.533, + "2002": 0.524, + "2003": 0.522, + "2004": 0.515, + "2005": 0.509, + "2006": 0.5, + "2007": 0.504, + "2008": 0.507, + "2009": 0.511, + "2010": 0.514, + "2011": 0.519, + "2012": 0.524, + "2013": 0.529, + "2014": 0.534, + "2015": 0.538, + "2016": 0.54, + "2017": 0.543, + "2018": 0.545, + "2019": 0.547, + "2020": 0.547, + "2021": 0.547 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr113", + "Region": "Otjozondjupa", + "1990": 0.404, + "1991": 0.414, + "1992": 0.423, + "1993": 0.433, + "1994": 0.443, + "1995": 0.441, + "1996": 0.437, + "1997": 0.433, + "1998": 0.436, + "1999": 0.43, + "2000": 0.435, + "2001": 0.437, + "2002": 0.434, + "2003": 0.437, + "2004": 0.435, + "2005": 0.433, + "2006": 0.429, + "2007": 0.436, + "2008": 0.442, + "2009": 0.448, + "2010": 0.454, + "2011": 0.461, + "2012": 0.469, + "2013": 0.477, + "2014": 0.481, + "2015": 0.485, + "2016": 0.487, + "2017": 0.489, + "2018": 0.491, + "2019": 0.493, + "2020": 0.493, + "2021": 0.493 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "National", + "GDLCODE": "NPLt", + "Region": "Total", + "1990": 0.285, + "1991": 0.292, + "1992": 0.301, + "1993": 0.303, + "1994": 0.305, + "1995": 0.309, + "1996": 0.321, + "1997": 0.326, + "1998": 0.331, + "1999": 0.336, + "2000": 0.341, + "2001": 0.333, + "2002": 0.352, + "2003": 0.356, + "2004": 0.362, + "2005": 0.367, + "2006": 0.382, + "2007": 0.386, + "2008": 0.4, + "2009": 0.42, + "2010": 0.446, + "2011": 0.462, + "2012": 0.474, + "2013": 0.485, + "2014": 0.492, + "2015": 0.501, + "2016": 0.506, + "2017": 0.515, + "2018": 0.525, + "2019": 0.536, + "2020": 0.529, + "2021": 0.529 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr102", + "Region": "Central", + "1990": 0.276, + "1991": 0.282, + "1992": 0.29, + "1993": 0.292, + "1994": 0.295, + "1995": 0.299, + "1996": 0.31, + "1997": 0.311, + "1998": 0.313, + "1999": 0.315, + "2000": 0.317, + "2001": 0.308, + "2002": 0.33, + "2003": 0.339, + "2004": 0.348, + "2005": 0.358, + "2006": 0.376, + "2007": 0.377, + "2008": 0.388, + "2009": 0.405, + "2010": 0.427, + "2011": 0.44, + "2012": 0.455, + "2013": 0.472, + "2014": 0.482, + "2015": 0.497, + "2016": 0.506, + "2017": 0.483, + "2018": 0.463, + "2019": 0.443, + "2020": 0.437, + "2021": 0.437 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr101", + "Region": "Eastern", + "1990": 0.33, + "1991": 0.338, + "1992": 0.348, + "1993": 0.35, + "1994": 0.353, + "1995": 0.357, + "1996": 0.371, + "1997": 0.371, + "1998": 0.371, + "1999": 0.371, + "2000": 0.372, + "2001": 0.359, + "2002": 0.372, + "2003": 0.369, + "2004": 0.369, + "2005": 0.369, + "2006": 0.379, + "2007": 0.387, + "2008": 0.406, + "2009": 0.432, + "2010": 0.463, + "2011": 0.483, + "2012": 0.489, + "2013": 0.495, + "2014": 0.495, + "2015": 0.499, + "2016": 0.496, + "2017": 0.505, + "2018": 0.516, + "2019": 0.527, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr105", + "Region": "Far-western", + "1990": 0.259, + "1991": 0.265, + "1992": 0.273, + "1993": 0.274, + "1994": 0.277, + "1995": 0.28, + "1996": 0.291, + "1997": 0.298, + "1998": 0.306, + "1999": 0.314, + "2000": 0.322, + "2001": 0.316, + "2002": 0.337, + "2003": 0.342, + "2004": 0.35, + "2005": 0.357, + "2006": 0.374, + "2007": 0.377, + "2008": 0.393, + "2009": 0.415, + "2010": 0.443, + "2011": 0.46, + "2012": 0.472, + "2013": 0.484, + "2014": 0.491, + "2015": 0.501, + "2016": 0.506, + "2017": 0.509, + "2018": 0.512, + "2019": 0.513, + "2020": 0.506, + "2021": 0.506 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr106", + "Region": "Karnali Province", + "1990": 0.446, + "1991": 0.456, + "1992": 0.47, + "1993": 0.473, + "1994": 0.478, + "1995": 0.484, + "1996": 0.501, + "1997": 0.497, + "1998": 0.493, + "1999": 0.489, + "2000": 0.486, + "2001": 0.467, + "2002": 0.468, + "2003": 0.452, + "2004": 0.439, + "2005": 0.427, + "2006": 0.426, + "2007": 0.414, + "2008": 0.413, + "2009": 0.419, + "2010": 0.429, + "2011": 0.429, + "2012": 0.439, + "2013": 0.449, + "2014": 0.453, + "2015": 0.46, + "2016": 0.463, + "2017": 0.466, + "2018": 0.472, + "2019": 0.48, + "2020": 0.473, + "2021": 0.473 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr104", + "Region": "Mid-western", + "1990": 0.231, + "1991": 0.236, + "1992": 0.243, + "1993": 0.245, + "1994": 0.247, + "1995": 0.25, + "1996": 0.259, + "1997": 0.273, + "1998": 0.286, + "1999": 0.299, + "2000": 0.312, + "2001": 0.312, + "2002": 0.336, + "2003": 0.345, + "2004": 0.356, + "2005": 0.366, + "2006": 0.387, + "2007": 0.386, + "2008": 0.397, + "2009": 0.415, + "2010": 0.438, + "2011": 0.45, + "2012": 0.459, + "2013": 0.468, + "2014": 0.471, + "2015": 0.478, + "2016": 0.479, + "2017": 0.51, + "2018": 0.541, + "2019": 0.572, + "2020": 0.564, + "2021": 0.564 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr107", + "Region": "Sudoorpaschim Province", + "1990": 0.475, + "1991": 0.487, + "1992": 0.5, + "1993": 0.504, + "1994": 0.509, + "1995": 0.516, + "1996": 0.534, + "1997": 0.53, + "1998": 0.525, + "1999": 0.521, + "2000": 0.518, + "2001": 0.498, + "2002": 0.499, + "2003": 0.482, + "2004": 0.468, + "2005": 0.455, + "2006": 0.454, + "2007": 0.441, + "2008": 0.44, + "2009": 0.446, + "2010": 0.456, + "2011": 0.456, + "2012": 0.467, + "2013": 0.477, + "2014": 0.482, + "2015": 0.49, + "2016": 0.492, + "2017": 0.495, + "2018": 0.502, + "2019": 0.509, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr103", + "Region": "Western", + "1990": 0.297, + "1991": 0.304, + "1992": 0.313, + "1993": 0.315, + "1994": 0.318, + "1995": 0.321, + "1996": 0.334, + "1997": 0.341, + "1998": 0.349, + "1999": 0.356, + "2000": 0.364, + "2001": 0.357, + "2002": 0.374, + "2003": 0.374, + "2004": 0.377, + "2005": 0.38, + "2006": 0.393, + "2007": 0.397, + "2008": 0.411, + "2009": 0.433, + "2010": 0.459, + "2011": 0.475, + "2012": 0.489, + "2013": 0.502, + "2014": 0.51, + "2015": 0.521, + "2016": 0.527, + "2017": 0.564, + "2018": 0.602, + "2019": 0.64, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "National", + "GDLCODE": "NLDt", + "Region": "Total", + "1990": 0.778, + "1991": 0.787, + "1992": 0.786, + "1993": 0.795, + "1994": 0.859, + "1995": 0.845, + "1996": 0.852, + "1997": 0.845, + "1998": 0.847, + "1999": 0.845, + "2000": 0.853, + "2001": 0.856, + "2002": 0.846, + "2003": 0.848, + "2004": 0.845, + "2005": 0.849, + "2006": 0.855, + "2007": 0.862, + "2008": 0.862, + "2009": 0.865, + "2010": 0.871, + "2011": 0.895, + "2012": 0.896, + "2013": 0.9, + "2014": 0.903, + "2015": 0.905, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.915, + "2020": 0.919, + "2021": 0.919 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr103", + "Region": "Drenthe", + "1990": 0.749, + "1991": 0.758, + "1992": 0.757, + "1993": 0.766, + "1994": 0.828, + "1995": 0.814, + "1996": 0.821, + "1997": 0.815, + "1998": 0.816, + "1999": 0.815, + "2000": 0.822, + "2001": 0.823, + "2002": 0.814, + "2003": 0.819, + "2004": 0.819, + "2005": 0.825, + "2006": 0.829, + "2007": 0.834, + "2008": 0.836, + "2009": 0.838, + "2010": 0.843, + "2011": 0.863, + "2012": 0.867, + "2013": 0.872, + "2014": 0.878, + "2015": 0.877, + "2016": 0.877, + "2017": 0.883, + "2018": 0.895, + "2019": 0.905, + "2020": 0.909, + "2021": 0.909 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr106", + "Region": "Flevoland", + "1990": 0.752, + "1991": 0.761, + "1992": 0.761, + "1993": 0.769, + "1994": 0.831, + "1995": 0.817, + "1996": 0.824, + "1997": 0.818, + "1998": 0.819, + "1999": 0.818, + "2000": 0.825, + "2001": 0.83, + "2002": 0.826, + "2003": 0.822, + "2004": 0.825, + "2005": 0.83, + "2006": 0.83, + "2007": 0.835, + "2008": 0.837, + "2009": 0.839, + "2010": 0.848, + "2011": 0.871, + "2012": 0.87, + "2013": 0.874, + "2014": 0.88, + "2015": 0.876, + "2016": 0.878, + "2017": 0.897, + "2018": 0.897, + "2019": 0.901, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr102", + "Region": "Friesland", + "1990": 0.771, + "1991": 0.78, + "1992": 0.78, + "1993": 0.789, + "1994": 0.853, + "1995": 0.839, + "1996": 0.846, + "1997": 0.839, + "1998": 0.84, + "1999": 0.839, + "2000": 0.846, + "2001": 0.843, + "2002": 0.833, + "2003": 0.838, + "2004": 0.836, + "2005": 0.838, + "2006": 0.845, + "2007": 0.852, + "2008": 0.847, + "2009": 0.853, + "2010": 0.862, + "2011": 0.884, + "2012": 0.884, + "2013": 0.886, + "2014": 0.886, + "2015": 0.882, + "2016": 0.885, + "2017": 0.893, + "2018": 0.898, + "2019": 0.902, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr105", + "Region": "Gelderland", + "1990": 0.774, + "1991": 0.783, + "1992": 0.783, + "1993": 0.791, + "1994": 0.855, + "1995": 0.841, + "1996": 0.848, + "1997": 0.842, + "1998": 0.843, + "1999": 0.842, + "2000": 0.849, + "2001": 0.851, + "2002": 0.842, + "2003": 0.844, + "2004": 0.838, + "2005": 0.841, + "2006": 0.851, + "2007": 0.857, + "2008": 0.857, + "2009": 0.861, + "2010": 0.867, + "2011": 0.888, + "2012": 0.89, + "2013": 0.896, + "2014": 0.899, + "2015": 0.9, + "2016": 0.896, + "2017": 0.903, + "2018": 0.904, + "2019": 0.91, + "2020": 0.914, + "2021": 0.914 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr101", + "Region": "Groningen", + "1990": 0.805, + "1991": 0.815, + "1992": 0.814, + "1993": 0.823, + "1994": 0.883, + "1995": 0.876, + "1996": 0.884, + "1997": 0.876, + "1998": 0.877, + "1999": 0.876, + "2000": 0.884, + "2001": 0.882, + "2002": 0.87, + "2003": 0.87, + "2004": 0.868, + "2005": 0.875, + "2006": 0.886, + "2007": 0.887, + "2008": 0.883, + "2009": 0.887, + "2010": 0.904, + "2011": 0.901, + "2012": 0.901, + "2013": 0.9, + "2014": 0.898, + "2015": 0.901, + "2016": 0.907, + "2017": 0.907, + "2018": 0.908, + "2019": 0.911, + "2020": 0.915, + "2021": 0.915 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr112", + "Region": "Limburg", + "1990": 0.755, + "1991": 0.764, + "1992": 0.763, + "1993": 0.772, + "1994": 0.835, + "1995": 0.821, + "1996": 0.828, + "1997": 0.821, + "1998": 0.822, + "1999": 0.821, + "2000": 0.828, + "2001": 0.835, + "2002": 0.823, + "2003": 0.825, + "2004": 0.823, + "2005": 0.825, + "2006": 0.833, + "2007": 0.839, + "2008": 0.841, + "2009": 0.843, + "2010": 0.847, + "2011": 0.871, + "2012": 0.871, + "2013": 0.876, + "2014": 0.873, + "2015": 0.879, + "2016": 0.878, + "2017": 0.89, + "2018": 0.893, + "2019": 0.899, + "2020": 0.903, + "2021": 0.903 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr111", + "Region": "Noord-Brabant", + "1990": 0.769, + "1991": 0.778, + "1992": 0.777, + "1993": 0.786, + "1994": 0.849, + "1995": 0.835, + "1996": 0.843, + "1997": 0.836, + "1998": 0.837, + "1999": 0.836, + "2000": 0.843, + "2001": 0.848, + "2002": 0.837, + "2003": 0.84, + "2004": 0.839, + "2005": 0.842, + "2006": 0.849, + "2007": 0.855, + "2008": 0.855, + "2009": 0.855, + "2010": 0.862, + "2011": 0.886, + "2012": 0.889, + "2013": 0.891, + "2014": 0.894, + "2015": 0.896, + "2016": 0.897, + "2017": 0.902, + "2018": 0.906, + "2019": 0.911, + "2020": 0.915, + "2021": 0.915 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr108", + "Region": "Noord-Holland", + "1990": 0.785, + "1991": 0.794, + "1992": 0.794, + "1993": 0.803, + "1994": 0.867, + "1995": 0.853, + "1996": 0.86, + "1997": 0.853, + "1998": 0.855, + "1999": 0.854, + "2000": 0.861, + "2001": 0.866, + "2002": 0.857, + "2003": 0.861, + "2004": 0.859, + "2005": 0.86, + "2006": 0.865, + "2007": 0.87, + "2008": 0.87, + "2009": 0.876, + "2010": 0.882, + "2011": 0.905, + "2012": 0.904, + "2013": 0.907, + "2014": 0.912, + "2015": 0.914, + "2016": 0.913, + "2017": 0.924, + "2018": 0.926, + "2019": 0.932, + "2020": 0.936, + "2021": 0.936 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr104", + "Region": "Overijssel", + "1990": 0.773, + "1991": 0.782, + "1992": 0.782, + "1993": 0.79, + "1994": 0.855, + "1995": 0.841, + "1996": 0.848, + "1997": 0.841, + "1998": 0.842, + "1999": 0.841, + "2000": 0.848, + "2001": 0.849, + "2002": 0.839, + "2003": 0.84, + "2004": 0.839, + "2005": 0.846, + "2006": 0.851, + "2007": 0.859, + "2008": 0.86, + "2009": 0.859, + "2010": 0.867, + "2011": 0.892, + "2012": 0.895, + "2013": 0.895, + "2014": 0.899, + "2015": 0.897, + "2016": 0.897, + "2017": 0.904, + "2018": 0.902, + "2019": 0.904, + "2020": 0.908, + "2021": 0.908 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr107", + "Region": "Utrecht", + "1990": 0.8, + "1991": 0.809, + "1992": 0.809, + "1993": 0.818, + "1994": 0.882, + "1995": 0.868, + "1996": 0.876, + "1997": 0.869, + "1998": 0.87, + "1999": 0.869, + "2000": 0.877, + "2001": 0.878, + "2002": 0.87, + "2003": 0.875, + "2004": 0.869, + "2005": 0.87, + "2006": 0.877, + "2007": 0.882, + "2008": 0.887, + "2009": 0.888, + "2010": 0.896, + "2011": 0.921, + "2012": 0.92, + "2013": 0.925, + "2014": 0.928, + "2015": 0.928, + "2016": 0.929, + "2017": 0.934, + "2018": 0.938, + "2019": 0.941, + "2020": 0.946, + "2021": 0.946 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr110", + "Region": "Zeeland", + "1990": 0.731, + "1991": 0.739, + "1992": 0.739, + "1993": 0.747, + "1994": 0.807, + "1995": 0.794, + "1996": 0.8, + "1997": 0.794, + "1998": 0.795, + "1999": 0.794, + "2000": 0.801, + "2001": 0.811, + "2002": 0.799, + "2003": 0.802, + "2004": 0.794, + "2005": 0.8, + "2006": 0.806, + "2007": 0.809, + "2008": 0.813, + "2009": 0.819, + "2010": 0.824, + "2011": 0.843, + "2012": 0.835, + "2013": 0.841, + "2014": 0.847, + "2015": 0.854, + "2016": 0.854, + "2017": 0.868, + "2018": 0.87, + "2019": 0.87, + "2020": 0.874, + "2021": 0.874 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr109", + "Region": "Zuid-Holland", + "1990": 0.776, + "1991": 0.785, + "1992": 0.785, + "1993": 0.794, + "1994": 0.857, + "1995": 0.843, + "1996": 0.851, + "1997": 0.844, + "1998": 0.845, + "1999": 0.844, + "2000": 0.851, + "2001": 0.854, + "2002": 0.843, + "2003": 0.843, + "2004": 0.841, + "2005": 0.844, + "2006": 0.849, + "2007": 0.859, + "2008": 0.86, + "2009": 0.861, + "2010": 0.865, + "2011": 0.889, + "2012": 0.893, + "2013": 0.897, + "2014": 0.897, + "2015": 0.899, + "2016": 0.901, + "2017": 0.909, + "2018": 0.911, + "2019": 0.915, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "National", + "GDLCODE": "NZLt", + "Region": "Total", + "1990": 0.74, + "1991": 0.758, + "1992": 0.777, + "1993": 0.808, + "1994": 0.833, + "1995": 0.85, + "1996": 0.863, + "1997": 0.875, + "1998": 0.887, + "1999": 0.899, + "2000": 0.911, + "2001": 0.923, + "2002": 0.928, + "2003": 0.932, + "2004": 0.937, + "2005": 0.942, + "2006": 0.944, + "2007": 0.945, + "2008": 0.945, + "2009": 0.945, + "2010": 0.946, + "2011": 0.946, + "2012": 0.946, + "2013": 0.944, + "2014": 0.943, + "2015": 0.941, + "2016": 0.944, + "2017": 0.941, + "2018": 0.938, + "2019": 0.935, + "2020": 0.931, + "2021": 0.931 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr102", + "Region": "Auckland", + "1990": 0.766, + "1991": 0.784, + "1992": 0.803, + "1993": 0.836, + "1994": 0.862, + "1995": 0.88, + "1996": 0.893, + "1997": 0.905, + "1998": 0.918, + "1999": 0.93, + "2000": 0.941, + "2001": 0.95, + "2002": 0.952, + "2003": 0.954, + "2004": 0.956, + "2005": 0.957, + "2006": 0.959, + "2007": 0.96, + "2008": 0.96, + "2009": 0.961, + "2010": 0.961, + "2011": 0.962, + "2012": 0.962, + "2013": 0.96, + "2014": 0.958, + "2015": 0.957, + "2016": 0.96, + "2017": 0.957, + "2018": 0.953, + "2019": 0.95, + "2020": 0.947, + "2021": 0.947 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr104", + "Region": "Bay of Plenty", + "1990": 0.714, + "1991": 0.731, + "1992": 0.749, + "1993": 0.779, + "1994": 0.804, + "1995": 0.82, + "1996": 0.833, + "1997": 0.844, + "1998": 0.856, + "1999": 0.867, + "2000": 0.879, + "2001": 0.89, + "2002": 0.895, + "2003": 0.899, + "2004": 0.904, + "2005": 0.908, + "2006": 0.913, + "2007": 0.916, + "2008": 0.92, + "2009": 0.924, + "2010": 0.927, + "2011": 0.931, + "2012": 0.931, + "2013": 0.929, + "2014": 0.928, + "2015": 0.926, + "2016": 0.916, + "2017": 0.927, + "2018": 0.923, + "2019": 0.92, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr113", + "Region": "Canterbury", + "1990": 0.735, + "1991": 0.753, + "1992": 0.771, + "1993": 0.803, + "1994": 0.827, + "1995": 0.845, + "1996": 0.857, + "1997": 0.869, + "1998": 0.881, + "1999": 0.893, + "2000": 0.905, + "2001": 0.916, + "2002": 0.921, + "2003": 0.926, + "2004": 0.93, + "2005": 0.935, + "2006": 0.94, + "2007": 0.941, + "2008": 0.942, + "2009": 0.942, + "2010": 0.942, + "2011": 0.943, + "2012": 0.942, + "2013": 0.94, + "2014": 0.939, + "2015": 0.937, + "2016": 0.94, + "2017": 0.937, + "2018": 0.934, + "2019": 0.931, + "2020": 0.928, + "2021": 0.928 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr105", + "Region": "Gisborne", + "1990": 0.692, + "1991": 0.708, + "1992": 0.726, + "1993": 0.755, + "1994": 0.778, + "1995": 0.795, + "1996": 0.807, + "1997": 0.818, + "1998": 0.829, + "1999": 0.84, + "2000": 0.851, + "2001": 0.862, + "2002": 0.867, + "2003": 0.871, + "2004": 0.875, + "2005": 0.88, + "2006": 0.884, + "2007": 0.888, + "2008": 0.892, + "2009": 0.896, + "2010": 0.9, + "2011": 0.904, + "2012": 0.907, + "2013": 0.909, + "2014": 0.907, + "2015": 0.907, + "2016": 0.891, + "2017": 0.906, + "2018": 0.904, + "2019": 0.909, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr106", + "Region": "Hawkes Bay", + "1990": 0.705, + "1991": 0.722, + "1992": 0.739, + "1993": 0.769, + "1994": 0.793, + "1995": 0.81, + "1996": 0.822, + "1997": 0.833, + "1998": 0.844, + "1999": 0.856, + "2000": 0.867, + "2001": 0.878, + "2002": 0.883, + "2003": 0.887, + "2004": 0.892, + "2005": 0.896, + "2006": 0.901, + "2007": 0.904, + "2008": 0.908, + "2009": 0.911, + "2010": 0.915, + "2011": 0.919, + "2012": 0.921, + "2013": 0.923, + "2014": 0.92, + "2015": 0.921, + "2016": 0.904, + "2017": 0.92, + "2018": 0.918, + "2019": 0.915, + "2020": 0.912, + "2021": 0.912 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr108", + "Region": "Manawatu-Wanganui", + "1990": 0.71, + "1991": 0.727, + "1992": 0.745, + "1993": 0.775, + "1994": 0.799, + "1995": 0.815, + "1996": 0.828, + "1997": 0.839, + "1998": 0.85, + "1999": 0.862, + "2000": 0.873, + "2001": 0.885, + "2002": 0.889, + "2003": 0.894, + "2004": 0.898, + "2005": 0.903, + "2006": 0.907, + "2007": 0.909, + "2008": 0.911, + "2009": 0.913, + "2010": 0.915, + "2011": 0.917, + "2012": 0.919, + "2013": 0.919, + "2014": 0.916, + "2015": 0.916, + "2016": 0.9, + "2017": 0.916, + "2018": 0.914, + "2019": 0.913, + "2020": 0.91, + "2021": 0.91 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr111", + "Region": "Marlborough", + "1990": 0.711, + "1991": 0.728, + "1992": 0.746, + "1993": 0.776, + "1994": 0.8, + "1995": 0.817, + "1996": 0.829, + "1997": 0.841, + "1998": 0.852, + "1999": 0.864, + "2000": 0.875, + "2001": 0.887, + "2002": 0.891, + "2003": 0.896, + "2004": 0.9, + "2005": 0.905, + "2006": 0.909, + "2007": 0.912, + "2008": 0.915, + "2009": 0.918, + "2010": 0.92, + "2011": 0.923, + "2012": 0.925, + "2013": 0.925, + "2014": 0.924, + "2015": 0.922, + "2016": 0.907, + "2017": 0.922, + "2018": 0.919, + "2019": 0.916, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr101", + "Region": "Northland", + "1990": 0.699, + "1991": 0.716, + "1992": 0.734, + "1993": 0.763, + "1994": 0.787, + "1995": 0.803, + "1996": 0.815, + "1997": 0.827, + "1998": 0.838, + "1999": 0.849, + "2000": 0.86, + "2001": 0.872, + "2002": 0.876, + "2003": 0.88, + "2004": 0.885, + "2005": 0.889, + "2006": 0.894, + "2007": 0.897, + "2008": 0.9, + "2009": 0.904, + "2010": 0.907, + "2011": 0.911, + "2012": 0.913, + "2013": 0.914, + "2014": 0.912, + "2015": 0.912, + "2016": 0.896, + "2017": 0.912, + "2018": 0.91, + "2019": 0.911, + "2020": 0.908, + "2021": 0.908 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr114", + "Region": "Otago", + "1990": 0.749, + "1991": 0.767, + "1992": 0.785, + "1993": 0.817, + "1994": 0.842, + "1995": 0.86, + "1996": 0.873, + "1997": 0.885, + "1998": 0.897, + "1999": 0.909, + "2000": 0.921, + "2001": 0.933, + "2002": 0.938, + "2003": 0.943, + "2004": 0.946, + "2005": 0.947, + "2006": 0.949, + "2007": 0.949, + "2008": 0.949, + "2009": 0.949, + "2010": 0.949, + "2011": 0.949, + "2012": 0.948, + "2013": 0.946, + "2014": 0.944, + "2015": 0.942, + "2016": 0.946, + "2017": 0.943, + "2018": 0.939, + "2019": 0.936, + "2020": 0.933, + "2021": 0.933 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr115", + "Region": "Southland", + "1990": 0.681, + "1991": 0.698, + "1992": 0.715, + "1993": 0.744, + "1994": 0.767, + "1995": 0.783, + "1996": 0.795, + "1997": 0.806, + "1998": 0.817, + "1999": 0.828, + "2000": 0.838, + "2001": 0.849, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.867, + "2006": 0.871, + "2007": 0.874, + "2008": 0.877, + "2009": 0.88, + "2010": 0.883, + "2011": 0.886, + "2012": 0.889, + "2013": 0.89, + "2014": 0.888, + "2015": 0.888, + "2016": 0.872, + "2017": 0.887, + "2018": 0.885, + "2019": 0.9, + "2020": 0.897, + "2021": 0.897 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr107", + "Region": "Taranaki", + "1990": 0.696, + "1991": 0.713, + "1992": 0.73, + "1993": 0.759, + "1994": 0.783, + "1995": 0.799, + "1996": 0.811, + "1997": 0.823, + "1998": 0.834, + "1999": 0.845, + "2000": 0.856, + "2001": 0.867, + "2002": 0.872, + "2003": 0.876, + "2004": 0.881, + "2005": 0.885, + "2006": 0.889, + "2007": 0.892, + "2008": 0.895, + "2009": 0.898, + "2010": 0.901, + "2011": 0.904, + "2012": 0.906, + "2013": 0.907, + "2014": 0.904, + "2015": 0.905, + "2016": 0.888, + "2017": 0.904, + "2018": 0.902, + "2019": 0.907, + "2020": 0.904, + "2021": 0.904 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr110", + "Region": "Tasman - Nelson", + "1990": 0.731, + "1991": 0.748, + "1992": 0.767, + "1993": 0.798, + "1994": 0.822, + "1995": 0.84, + "1996": 0.852, + "1997": 0.864, + "1998": 0.876, + "1999": 0.887, + "2000": 0.899, + "2001": 0.911, + "2002": 0.916, + "2003": 0.92, + "2004": 0.925, + "2005": 0.929, + "2006": 0.934, + "2007": 0.938, + "2008": 0.94, + "2009": 0.94, + "2010": 0.941, + "2011": 0.942, + "2012": 0.941, + "2013": 0.94, + "2014": 0.938, + "2015": 0.937, + "2016": 0.939, + "2017": 0.937, + "2018": 0.934, + "2019": 0.931, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr103", + "Region": "Waikato", + "1990": 0.717, + "1991": 0.734, + "1992": 0.753, + "1993": 0.783, + "1994": 0.807, + "1995": 0.824, + "1996": 0.836, + "1997": 0.848, + "1998": 0.859, + "1999": 0.871, + "2000": 0.882, + "2001": 0.894, + "2002": 0.899, + "2003": 0.903, + "2004": 0.908, + "2005": 0.912, + "2006": 0.917, + "2007": 0.92, + "2008": 0.923, + "2009": 0.927, + "2010": 0.93, + "2011": 0.932, + "2012": 0.932, + "2013": 0.93, + "2014": 0.928, + "2015": 0.927, + "2016": 0.918, + "2017": 0.927, + "2018": 0.924, + "2019": 0.921, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr109", + "Region": "Wellington", + "1990": 0.777, + "1991": 0.796, + "1992": 0.816, + "1993": 0.848, + "1994": 0.875, + "1995": 0.893, + "1996": 0.906, + "1997": 0.919, + "1998": 0.929, + "1999": 0.939, + "2000": 0.948, + "2001": 0.957, + "2002": 0.959, + "2003": 0.961, + "2004": 0.963, + "2005": 0.964, + "2006": 0.966, + "2007": 0.967, + "2008": 0.968, + "2009": 0.968, + "2010": 0.969, + "2011": 0.97, + "2012": 0.97, + "2013": 0.968, + "2014": 0.966, + "2015": 0.965, + "2016": 0.968, + "2017": 0.965, + "2018": 0.961, + "2019": 0.958, + "2020": 0.955, + "2021": 0.955 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr112", + "Region": "West Coast", + "1990": 0.68, + "1991": 0.696, + "1992": 0.713, + "1993": 0.742, + "1994": 0.765, + "1995": 0.781, + "1996": 0.793, + "1997": 0.804, + "1998": 0.814, + "1999": 0.825, + "2000": 0.836, + "2001": 0.847, + "2002": 0.852, + "2003": 0.856, + "2004": 0.86, + "2005": 0.864, + "2006": 0.869, + "2007": 0.872, + "2008": 0.874, + "2009": 0.877, + "2010": 0.88, + "2011": 0.883, + "2012": 0.885, + "2013": 0.886, + "2014": 0.883, + "2015": 0.884, + "2016": 0.868, + "2017": 0.883, + "2018": 0.881, + "2019": 0.898, + "2020": 0.895, + "2021": 0.895 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "National", + "GDLCODE": "NICt", + "Region": "Total", + "1990": 0.344, + "1991": 0.362, + "1992": 0.37, + "1993": 0.377, + "1994": 0.385, + "1995": 0.393, + "1996": 0.405, + "1997": 0.417, + "1998": 0.429, + "1999": 0.442, + "2000": 0.454, + "2001": 0.465, + "2002": 0.476, + "2003": 0.48, + "2004": 0.484, + "2005": 0.487, + "2006": 0.489, + "2007": 0.49, + "2008": 0.492, + "2009": 0.494, + "2010": 0.502, + "2011": 0.512, + "2012": 0.522, + "2013": 0.532, + "2014": 0.541, + "2015": 0.551, + "2016": 0.561, + "2017": 0.57, + "2018": 0.58, + "2019": 0.589, + "2020": 0.589, + "2021": 0.589 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr103", + "Region": "Atlantico (Rio San Juan, Atlantico Norte (Raan), Atlantico Sur (Raas))", + "1990": 0.266, + "1991": 0.281, + "1992": 0.287, + "1993": 0.293, + "1994": 0.299, + "1995": 0.305, + "1996": 0.314, + "1997": 0.324, + "1998": 0.334, + "1999": 0.334, + "2000": 0.334, + "2001": 0.333, + "2002": 0.347, + "2003": 0.355, + "2004": 0.362, + "2005": 0.369, + "2006": 0.374, + "2007": 0.378, + "2008": 0.377, + "2009": 0.375, + "2010": 0.379, + "2011": 0.384, + "2012": 0.388, + "2013": 0.395, + "2014": 0.402, + "2015": 0.41, + "2016": 0.417, + "2017": 0.424, + "2018": 0.431, + "2019": 0.438, + "2020": 0.438, + "2021": 0.438 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr102", + "Region": "Central-Norte (Boaco, Chontales, Jinotega, Matagalpa, Esteli, Madriz, Nueva Segovia)", + "1990": 0.27, + "1991": 0.285, + "1992": 0.291, + "1993": 0.297, + "1994": 0.303, + "1995": 0.309, + "1996": 0.319, + "1997": 0.328, + "1998": 0.338, + "1999": 0.354, + "2000": 0.37, + "2001": 0.386, + "2002": 0.407, + "2003": 0.421, + "2004": 0.434, + "2005": 0.447, + "2006": 0.457, + "2007": 0.467, + "2008": 0.462, + "2009": 0.457, + "2010": 0.457, + "2011": 0.459, + "2012": 0.459, + "2013": 0.468, + "2014": 0.477, + "2015": 0.485, + "2016": 0.494, + "2017": 0.502, + "2018": 0.51, + "2019": 0.519, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr101", + "Region": "Pacifico (Chinandega, Leon, Managua, Masaya, Granada, Carazo, Rivas)", + "1990": 0.392, + "1991": 0.412, + "1992": 0.421, + "1993": 0.429, + "1994": 0.438, + "1995": 0.447, + "1996": 0.461, + "1997": 0.475, + "1998": 0.488, + "1999": 0.506, + "2000": 0.523, + "2001": 0.539, + "2002": 0.545, + "2003": 0.543, + "2004": 0.541, + "2005": 0.54, + "2006": 0.536, + "2007": 0.533, + "2008": 0.538, + "2009": 0.544, + "2010": 0.558, + "2011": 0.574, + "2012": 0.59, + "2013": 0.601, + "2014": 0.612, + "2015": 0.623, + "2016": 0.633, + "2017": 0.644, + "2018": 0.655, + "2019": 0.666, + "2020": 0.666, + "2021": 0.666 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "National", + "GDLCODE": "NERt", + "Region": "Total", + "1990": 0.081, + "1991": 0.084, + "1992": 0.086, + "1993": 0.09, + "1994": 0.093, + "1995": 0.097, + "1996": 0.101, + "1997": 0.105, + "1998": 0.109, + "1999": 0.113, + "2000": 0.117, + "2001": 0.12, + "2002": 0.124, + "2003": 0.128, + "2004": 0.139, + "2005": 0.147, + "2006": 0.152, + "2007": 0.156, + "2008": 0.164, + "2009": 0.171, + "2010": 0.182, + "2011": 0.191, + "2012": 0.2, + "2013": 0.208, + "2014": 0.216, + "2015": 0.225, + "2016": 0.235, + "2017": 0.243, + "2018": 0.253, + "2019": 0.264, + "2020": 0.264, + "2021": 0.264 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr101", + "Region": "Agadez", + "1990": 0.222, + "1991": 0.229, + "1992": 0.235, + "1993": 0.246, + "1994": 0.256, + "1995": 0.266, + "1996": 0.277, + "1997": 0.289, + "1998": 0.3, + "1999": 0.293, + "2000": 0.285, + "2001": 0.278, + "2002": 0.27, + "2003": 0.261, + "2004": 0.266, + "2005": 0.263, + "2006": 0.256, + "2007": 0.258, + "2008": 0.265, + "2009": 0.272, + "2010": 0.282, + "2011": 0.292, + "2012": 0.299, + "2013": 0.312, + "2014": 0.324, + "2015": 0.336, + "2016": 0.352, + "2017": 0.364, + "2018": 0.379, + "2019": 0.395, + "2020": 0.395, + "2021": 0.395 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr102", + "Region": "Diffa", + "1990": 0.109, + "1991": 0.111, + "1992": 0.113, + "1993": 0.118, + "1994": 0.123, + "1995": 0.128, + "1996": 0.132, + "1997": 0.137, + "1998": 0.142, + "1999": 0.137, + "2000": 0.132, + "2001": 0.127, + "2002": 0.123, + "2003": 0.119, + "2004": 0.122, + "2005": 0.121, + "2006": 0.118, + "2007": 0.119, + "2008": 0.122, + "2009": 0.125, + "2010": 0.13, + "2011": 0.134, + "2012": 0.137, + "2013": 0.143, + "2014": 0.149, + "2015": 0.154, + "2016": 0.162, + "2017": 0.167, + "2018": 0.174, + "2019": 0.181, + "2020": 0.181, + "2021": 0.181 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr103", + "Region": "Dosso", + "1990": 0.087, + "1991": 0.089, + "1992": 0.091, + "1993": 0.095, + "1994": 0.099, + "1995": 0.103, + "1996": 0.107, + "1997": 0.111, + "1998": 0.115, + "1999": 0.118, + "2000": 0.122, + "2001": 0.125, + "2002": 0.129, + "2003": 0.132, + "2004": 0.143, + "2005": 0.151, + "2006": 0.156, + "2007": 0.158, + "2008": 0.164, + "2009": 0.169, + "2010": 0.177, + "2011": 0.184, + "2012": 0.189, + "2013": 0.197, + "2014": 0.205, + "2015": 0.213, + "2016": 0.224, + "2017": 0.231, + "2018": 0.241, + "2019": 0.251, + "2020": 0.251, + "2021": 0.251 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr104", + "Region": "Maradi", + "1990": 0.058, + "1991": 0.059, + "1992": 0.061, + "1993": 0.063, + "1994": 0.066, + "1995": 0.069, + "1996": 0.071, + "1997": 0.074, + "1998": 0.077, + "1999": 0.081, + "2000": 0.086, + "2001": 0.09, + "2002": 0.095, + "2003": 0.099, + "2004": 0.109, + "2005": 0.117, + "2006": 0.123, + "2007": 0.129, + "2008": 0.138, + "2009": 0.146, + "2010": 0.158, + "2011": 0.169, + "2012": 0.178, + "2013": 0.186, + "2014": 0.193, + "2015": 0.201, + "2016": 0.211, + "2017": 0.218, + "2018": 0.227, + "2019": 0.236, + "2020": 0.236, + "2021": 0.236 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr106", + "Region": "Tahoua", + "1990": 0.043, + "1991": 0.044, + "1992": 0.046, + "1993": 0.048, + "1994": 0.05, + "1995": 0.051, + "1996": 0.054, + "1997": 0.056, + "1998": 0.058, + "1999": 0.063, + "2000": 0.068, + "2001": 0.073, + "2002": 0.078, + "2003": 0.082, + "2004": 0.092, + "2005": 0.1, + "2006": 0.106, + "2007": 0.109, + "2008": 0.114, + "2009": 0.119, + "2010": 0.126, + "2011": 0.133, + "2012": 0.139, + "2013": 0.144, + "2014": 0.15, + "2015": 0.156, + "2016": 0.164, + "2017": 0.169, + "2018": 0.176, + "2019": 0.183, + "2020": 0.183, + "2021": 0.183 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr105", + "Region": "Tillabery (incl Niamey)", + "1990": 0.129, + "1991": 0.133, + "1992": 0.137, + "1993": 0.143, + "1994": 0.149, + "1995": 0.155, + "1996": 0.161, + "1997": 0.168, + "1998": 0.174, + "1999": 0.181, + "2000": 0.187, + "2001": 0.193, + "2002": 0.199, + "2003": 0.205, + "2004": 0.221, + "2005": 0.233, + "2006": 0.241, + "2007": 0.251, + "2008": 0.265, + "2009": 0.279, + "2010": 0.297, + "2011": 0.315, + "2012": 0.331, + "2013": 0.344, + "2014": 0.358, + "2015": 0.371, + "2016": 0.389, + "2017": 0.403, + "2018": 0.419, + "2019": 0.436, + "2020": 0.436, + "2021": 0.436 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr107", + "Region": "Zinder", + "1990": 0.06, + "1991": 0.062, + "1992": 0.063, + "1993": 0.066, + "1994": 0.068, + "1995": 0.071, + "1996": 0.074, + "1997": 0.077, + "1998": 0.08, + "1999": 0.082, + "2000": 0.085, + "2001": 0.087, + "2002": 0.089, + "2003": 0.092, + "2004": 0.099, + "2005": 0.105, + "2006": 0.108, + "2007": 0.115, + "2008": 0.123, + "2009": 0.132, + "2010": 0.143, + "2011": 0.153, + "2012": 0.163, + "2013": 0.17, + "2014": 0.176, + "2015": 0.183, + "2016": 0.192, + "2017": 0.199, + "2018": 0.207, + "2019": 0.215, + "2020": 0.215, + "2021": 0.215 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "National", + "GDLCODE": "NGAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.395, + "2004": 0.413, + "2005": 0.422, + "2006": 0.425, + "2007": 0.429, + "2008": 0.432, + "2009": 0.419, + "2010": 0.407, + "2011": 0.424, + "2012": 0.437, + "2013": 0.449, + "2014": 0.458, + "2015": 0.467, + "2016": 0.481, + "2017": 0.494, + "2018": 0.508, + "2019": 0.521, + "2020": 0.521, + "2021": 0.521 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr122", + "Region": "Abia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.553, + "2004": 0.576, + "2005": 0.584, + "2006": 0.585, + "2007": 0.587, + "2008": 0.588, + "2009": 0.572, + "2010": 0.556, + "2011": 0.579, + "2012": 0.597, + "2013": 0.616, + "2014": 0.626, + "2015": 0.636, + "2016": 0.653, + "2017": 0.67, + "2018": 0.687, + "2019": 0.704, + "2020": 0.704, + "2021": 0.704 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr137", + "Region": "Abuja FCT", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.395, + "2004": 0.456, + "2005": 0.507, + "2006": 0.551, + "2007": 0.595, + "2008": 0.638, + "2009": 0.624, + "2010": 0.609, + "2011": 0.64, + "2012": 0.665, + "2013": 0.691, + "2014": 0.681, + "2015": 0.671, + "2016": 0.669, + "2017": 0.666, + "2018": 0.663, + "2019": 0.679, + "2020": 0.679, + "2021": 0.679 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr108", + "Region": "Adamawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.378, + "2004": 0.387, + "2005": 0.386, + "2006": 0.38, + "2007": 0.374, + "2008": 0.367, + "2009": 0.375, + "2010": 0.381, + "2011": 0.414, + "2012": 0.443, + "2013": 0.474, + "2014": 0.454, + "2015": 0.433, + "2016": 0.415, + "2017": 0.395, + "2018": 0.375, + "2019": 0.385, + "2020": 0.385, + "2021": 0.385 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr101", + "Region": "Akwa Ibom", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.542, + "2004": 0.562, + "2005": 0.569, + "2006": 0.569, + "2007": 0.569, + "2008": 0.569, + "2009": 0.553, + "2010": 0.538, + "2011": 0.562, + "2012": 0.58, + "2013": 0.599, + "2014": 0.604, + "2015": 0.608, + "2016": 0.619, + "2017": 0.63, + "2018": 0.64, + "2019": 0.656, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr102", + "Region": "Anambra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.562, + "2004": 0.574, + "2005": 0.575, + "2006": 0.568, + "2007": 0.561, + "2008": 0.555, + "2009": 0.554, + "2010": 0.552, + "2011": 0.591, + "2012": 0.625, + "2013": 0.661, + "2014": 0.661, + "2015": 0.661, + "2016": 0.668, + "2017": 0.675, + "2018": 0.682, + "2019": 0.699, + "2020": 0.699, + "2021": 0.699 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr103", + "Region": "Bauchi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.153, + "2004": 0.162, + "2005": 0.167, + "2006": 0.17, + "2007": 0.172, + "2008": 0.175, + "2009": 0.183, + "2010": 0.191, + "2011": 0.213, + "2012": 0.233, + "2013": 0.254, + "2014": 0.263, + "2015": 0.272, + "2016": 0.283, + "2017": 0.295, + "2018": 0.306, + "2019": 0.314, + "2020": 0.314, + "2021": 0.314 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr131", + "Region": "Bayelsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.475, + "2004": 0.505, + "2005": 0.524, + "2006": 0.537, + "2007": 0.55, + "2008": 0.562, + "2009": 0.555, + "2010": 0.548, + "2011": 0.581, + "2012": 0.61, + "2013": 0.639, + "2014": 0.643, + "2015": 0.647, + "2016": 0.658, + "2017": 0.669, + "2018": 0.68, + "2019": 0.697, + "2020": 0.697, + "2021": 0.697 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr105", + "Region": "Benue", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.456, + "2004": 0.469, + "2005": 0.472, + "2006": 0.467, + "2007": 0.463, + "2008": 0.458, + "2009": 0.455, + "2010": 0.452, + "2011": 0.479, + "2012": 0.503, + "2013": 0.527, + "2014": 0.54, + "2015": 0.552, + "2016": 0.569, + "2017": 0.587, + "2018": 0.604, + "2019": 0.619, + "2020": 0.619, + "2021": 0.619 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr106", + "Region": "Borno", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.305, + "2004": 0.279, + "2005": 0.246, + "2006": 0.21, + "2007": 0.175, + "2008": 0.141, + "2009": 0.156, + "2010": 0.171, + "2011": 0.197, + "2012": 0.224, + "2013": 0.251, + "2014": 0.279, + "2015": 0.308, + "2016": 0.34, + "2017": 0.372, + "2018": 0.406, + "2019": 0.415, + "2020": 0.415, + "2021": 0.415 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr107", + "Region": "Cross River", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.522, + "2004": 0.542, + "2005": 0.548, + "2006": 0.547, + "2007": 0.547, + "2008": 0.546, + "2009": 0.531, + "2010": 0.517, + "2011": 0.539, + "2012": 0.556, + "2013": 0.572, + "2014": 0.589, + "2015": 0.605, + "2016": 0.628, + "2017": 0.651, + "2018": 0.674, + "2019": 0.691, + "2020": 0.691, + "2021": 0.691 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr123", + "Region": "Delta", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.55, + "2004": 0.568, + "2005": 0.574, + "2006": 0.573, + "2007": 0.571, + "2008": 0.57, + "2009": 0.562, + "2010": 0.553, + "2011": 0.585, + "2012": 0.612, + "2013": 0.639, + "2014": 0.647, + "2015": 0.654, + "2016": 0.669, + "2017": 0.683, + "2018": 0.698, + "2019": 0.715, + "2020": 0.715, + "2021": 0.715 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr132", + "Region": "Ebonyi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.415, + "2004": 0.439, + "2005": 0.449, + "2006": 0.453, + "2007": 0.457, + "2008": 0.46, + "2009": 0.459, + "2010": 0.458, + "2011": 0.488, + "2012": 0.513, + "2013": 0.539, + "2014": 0.547, + "2015": 0.555, + "2016": 0.567, + "2017": 0.579, + "2018": 0.591, + "2019": 0.606, + "2020": 0.606, + "2021": 0.606 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr104", + "Region": "Edo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.495, + "2004": 0.531, + "2005": 0.554, + "2006": 0.569, + "2007": 0.585, + "2008": 0.6, + "2009": 0.583, + "2010": 0.566, + "2011": 0.59, + "2012": 0.609, + "2013": 0.627, + "2014": 0.626, + "2015": 0.626, + "2016": 0.632, + "2017": 0.637, + "2018": 0.643, + "2019": 0.659, + "2020": 0.659, + "2021": 0.659 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr133", + "Region": "Ekiti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.536, + "2004": 0.564, + "2005": 0.579, + "2006": 0.586, + "2007": 0.593, + "2008": 0.601, + "2009": 0.591, + "2010": 0.58, + "2011": 0.61, + "2012": 0.636, + "2013": 0.662, + "2014": 0.664, + "2015": 0.666, + "2016": 0.675, + "2017": 0.684, + "2018": 0.693, + "2019": 0.71, + "2020": 0.71, + "2021": 0.71 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr124", + "Region": "Enugu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.549, + "2004": 0.556, + "2005": 0.55, + "2006": 0.536, + "2007": 0.523, + "2008": 0.509, + "2009": 0.499, + "2010": 0.489, + "2011": 0.513, + "2012": 0.531, + "2013": 0.549, + "2014": 0.571, + "2015": 0.592, + "2016": 0.62, + "2017": 0.647, + "2018": 0.676, + "2019": 0.692, + "2020": 0.692, + "2021": 0.692 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr134", + "Region": "Gombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.313, + "2004": 0.32, + "2005": 0.32, + "2006": 0.315, + "2007": 0.311, + "2008": 0.306, + "2009": 0.294, + "2010": 0.281, + "2011": 0.288, + "2012": 0.292, + "2013": 0.295, + "2014": 0.292, + "2015": 0.289, + "2016": 0.289, + "2017": 0.288, + "2018": 0.287, + "2019": 0.294, + "2020": 0.294, + "2021": 0.294 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr109", + "Region": "Imo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.647, + "2004": 0.643, + "2005": 0.627, + "2006": 0.604, + "2007": 0.58, + "2008": 0.557, + "2009": 0.549, + "2010": 0.54, + "2011": 0.571, + "2012": 0.596, + "2013": 0.622, + "2014": 0.635, + "2015": 0.647, + "2016": 0.667, + "2017": 0.686, + "2018": 0.705, + "2019": 0.723, + "2020": 0.723, + "2021": 0.723 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr125", + "Region": "Jigawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.097, + "2004": 0.114, + "2005": 0.128, + "2006": 0.141, + "2007": 0.153, + "2008": 0.165, + "2009": 0.166, + "2010": 0.167, + "2011": 0.179, + "2012": 0.19, + "2013": 0.202, + "2014": 0.224, + "2015": 0.247, + "2016": 0.272, + "2017": 0.298, + "2018": 0.325, + "2019": 0.333, + "2020": 0.333, + "2021": 0.333 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr110", + "Region": "Kaduna", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.359, + "2004": 0.386, + "2005": 0.404, + "2006": 0.416, + "2007": 0.428, + "2008": 0.44, + "2009": 0.428, + "2010": 0.415, + "2011": 0.432, + "2012": 0.445, + "2013": 0.458, + "2014": 0.464, + "2015": 0.47, + "2016": 0.482, + "2017": 0.493, + "2018": 0.505, + "2019": 0.517, + "2020": 0.517, + "2021": 0.517 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr111", + "Region": "Kano", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.272, + "2004": 0.289, + "2005": 0.298, + "2006": 0.303, + "2007": 0.307, + "2008": 0.312, + "2009": 0.308, + "2010": 0.304, + "2011": 0.321, + "2012": 0.335, + "2013": 0.349, + "2014": 0.363, + "2015": 0.378, + "2016": 0.395, + "2017": 0.412, + "2018": 0.429, + "2019": 0.44, + "2020": 0.44, + "2021": 0.44 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr112", + "Region": "Katsina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.271, + "2004": 0.257, + "2005": 0.237, + "2006": 0.214, + "2007": 0.191, + "2008": 0.168, + "2009": 0.171, + "2010": 0.173, + "2011": 0.187, + "2012": 0.2, + "2013": 0.212, + "2014": 0.244, + "2015": 0.276, + "2016": 0.311, + "2017": 0.347, + "2018": 0.384, + "2019": 0.393, + "2020": 0.393, + "2021": 0.393 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr126", + "Region": "Kebbi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.164, + "2004": 0.17, + "2005": 0.173, + "2006": 0.173, + "2007": 0.173, + "2008": 0.173, + "2009": 0.172, + "2010": 0.172, + "2011": 0.184, + "2012": 0.195, + "2013": 0.205, + "2014": 0.2, + "2015": 0.194, + "2016": 0.19, + "2017": 0.185, + "2018": 0.18, + "2019": 0.184, + "2020": 0.184, + "2021": 0.184 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr127", + "Region": "Kogi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.504, + "2004": 0.524, + "2005": 0.531, + "2006": 0.53, + "2007": 0.53, + "2008": 0.53, + "2009": 0.519, + "2010": 0.508, + "2011": 0.532, + "2012": 0.551, + "2013": 0.571, + "2014": 0.576, + "2015": 0.581, + "2016": 0.591, + "2017": 0.601, + "2018": 0.611, + "2019": 0.626, + "2020": 0.626, + "2021": 0.626 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr113", + "Region": "Kwara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.522, + "2004": 0.517, + "2005": 0.499, + "2006": 0.474, + "2007": 0.45, + "2008": 0.427, + "2009": 0.445, + "2010": 0.462, + "2011": 0.512, + "2012": 0.559, + "2013": 0.609, + "2014": 0.587, + "2015": 0.566, + "2016": 0.549, + "2017": 0.532, + "2018": 0.513, + "2019": 0.526, + "2020": 0.526, + "2021": 0.526 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr114", + "Region": "Lagos", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.614, + "2004": 0.633, + "2005": 0.64, + "2006": 0.641, + "2007": 0.641, + "2008": 0.641, + "2009": 0.622, + "2010": 0.603, + "2011": 0.629, + "2012": 0.65, + "2013": 0.671, + "2014": 0.679, + "2015": 0.687, + "2016": 0.703, + "2017": 0.72, + "2018": 0.736, + "2019": 0.755, + "2020": 0.755, + "2021": 0.755 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr135", + "Region": "Nassarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.373, + "2004": 0.397, + "2005": 0.411, + "2006": 0.418, + "2007": 0.426, + "2008": 0.433, + "2009": 0.428, + "2010": 0.422, + "2011": 0.446, + "2012": 0.466, + "2013": 0.487, + "2014": 0.505, + "2015": 0.523, + "2016": 0.546, + "2017": 0.57, + "2018": 0.594, + "2019": 0.608, + "2020": 0.608, + "2021": 0.608 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr115", + "Region": "Niger", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.352, + "2004": 0.348, + "2005": 0.334, + "2006": 0.315, + "2007": 0.297, + "2008": 0.279, + "2009": 0.285, + "2010": 0.289, + "2011": 0.314, + "2012": 0.337, + "2013": 0.361, + "2014": 0.358, + "2015": 0.355, + "2016": 0.354, + "2017": 0.352, + "2018": 0.351, + "2019": 0.359, + "2020": 0.359, + "2021": 0.359 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr116", + "Region": "Ogun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.464, + "2004": 0.478, + "2005": 0.482, + "2006": 0.48, + "2007": 0.478, + "2008": 0.475, + "2009": 0.473, + "2010": 0.469, + "2011": 0.499, + "2012": 0.525, + "2013": 0.551, + "2014": 0.571, + "2015": 0.59, + "2016": 0.615, + "2017": 0.64, + "2018": 0.666, + "2019": 0.683, + "2020": 0.683, + "2021": 0.683 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr117", + "Region": "Ondo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.507, + "2004": 0.532, + "2005": 0.545, + "2006": 0.55, + "2007": 0.555, + "2008": 0.56, + "2009": 0.552, + "2010": 0.543, + "2011": 0.573, + "2012": 0.598, + "2013": 0.623, + "2014": 0.622, + "2015": 0.622, + "2016": 0.628, + "2017": 0.634, + "2018": 0.639, + "2019": 0.655, + "2020": 0.655, + "2021": 0.655 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr128", + "Region": "Osun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.476, + "2004": 0.513, + "2005": 0.537, + "2006": 0.554, + "2007": 0.57, + "2008": 0.586, + "2009": 0.577, + "2010": 0.567, + "2011": 0.598, + "2012": 0.624, + "2013": 0.65, + "2014": 0.645, + "2015": 0.641, + "2016": 0.643, + "2017": 0.644, + "2018": 0.645, + "2019": 0.661, + "2020": 0.661, + "2021": 0.661 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr118", + "Region": "Oyo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.507, + "2004": 0.513, + "2005": 0.507, + "2006": 0.494, + "2007": 0.481, + "2008": 0.469, + "2009": 0.464, + "2010": 0.459, + "2011": 0.487, + "2012": 0.511, + "2013": 0.535, + "2014": 0.554, + "2015": 0.574, + "2016": 0.599, + "2017": 0.625, + "2018": 0.652, + "2019": 0.668, + "2020": 0.668, + "2021": 0.668 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr119", + "Region": "Plateau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.481, + "2004": 0.493, + "2005": 0.494, + "2006": 0.488, + "2007": 0.482, + "2008": 0.476, + "2009": 0.466, + "2010": 0.456, + "2011": 0.477, + "2012": 0.493, + "2013": 0.51, + "2014": 0.521, + "2015": 0.532, + "2016": 0.549, + "2017": 0.565, + "2018": 0.582, + "2019": 0.596, + "2020": 0.596, + "2021": 0.596 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr120", + "Region": "Rivers", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.577, + "2004": 0.595, + "2005": 0.602, + "2006": 0.601, + "2007": 0.6, + "2008": 0.599, + "2009": 0.588, + "2010": 0.577, + "2011": 0.608, + "2012": 0.635, + "2013": 0.663, + "2014": 0.666, + "2015": 0.669, + "2016": 0.68, + "2017": 0.691, + "2018": 0.702, + "2019": 0.72, + "2020": 0.72, + "2021": 0.72 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr121", + "Region": "Sokoto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.081, + "2004": 0.101, + "2005": 0.12, + "2006": 0.137, + "2007": 0.153, + "2008": 0.169, + "2009": 0.166, + "2010": 0.163, + "2011": 0.172, + "2012": 0.179, + "2013": 0.186, + "2014": 0.183, + "2015": 0.18, + "2016": 0.178, + "2017": 0.176, + "2018": 0.174, + "2019": 0.178, + "2020": 0.178, + "2021": 0.178 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr129", + "Region": "Taraba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.225, + "2004": 0.264, + "2005": 0.297, + "2006": 0.325, + "2007": 0.353, + "2008": 0.38, + "2009": 0.371, + "2010": 0.362, + "2011": 0.378, + "2012": 0.389, + "2013": 0.401, + "2014": 0.413, + "2015": 0.425, + "2016": 0.441, + "2017": 0.457, + "2018": 0.473, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr130", + "Region": "Yobe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.279, + "2004": 0.264, + "2005": 0.243, + "2006": 0.218, + "2007": 0.194, + "2008": 0.17, + "2009": 0.153, + "2010": 0.136, + "2011": 0.128, + "2012": 0.117, + "2013": 0.106, + "2014": 0.125, + "2015": 0.144, + "2016": 0.165, + "2017": 0.187, + "2018": 0.209, + "2019": 0.214, + "2020": 0.214, + "2021": 0.214 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr136", + "Region": "Zamfora", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.226, + "2004": 0.219, + "2005": 0.205, + "2006": 0.187, + "2007": 0.17, + "2008": 0.154, + "2009": 0.158, + "2010": 0.162, + "2011": 0.177, + "2012": 0.19, + "2013": 0.205, + "2014": 0.217, + "2015": 0.23, + "2016": 0.245, + "2017": 0.259, + "2018": 0.274, + "2019": 0.281, + "2020": 0.281, + "2021": 0.281 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "National", + "GDLCODE": "MKDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.543, + "2001": 0.552, + "2002": 0.561, + "2003": 0.567, + "2004": 0.572, + "2005": 0.582, + "2006": 0.591, + "2007": 0.599, + "2008": 0.63, + "2009": 0.635, + "2010": 0.64, + "2011": 0.647, + "2012": 0.654, + "2013": 0.66, + "2014": 0.666, + "2015": 0.682, + "2016": 0.692, + "2017": 0.701, + "2018": 0.705, + "2019": 0.714, + "2020": 0.719, + "2021": 0.719 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr108", + "Region": "East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.627, + "2001": 0.637, + "2002": 0.647, + "2003": 0.654, + "2004": 0.66, + "2005": 0.672, + "2006": 0.659, + "2007": 0.648, + "2008": 0.66, + "2009": 0.646, + "2010": 0.632, + "2011": 0.621, + "2012": 0.626, + "2013": 0.63, + "2014": 0.634, + "2015": 0.648, + "2016": 0.655, + "2017": 0.662, + "2018": 0.664, + "2019": 0.67, + "2020": 0.676, + "2021": 0.676 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr104", + "Region": "North East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.567, + "2001": 0.576, + "2002": 0.584, + "2003": 0.59, + "2004": 0.596, + "2005": 0.606, + "2006": 0.601, + "2007": 0.597, + "2008": 0.616, + "2009": 0.609, + "2010": 0.602, + "2011": 0.598, + "2012": 0.605, + "2013": 0.613, + "2014": 0.62, + "2015": 0.636, + "2016": 0.646, + "2017": 0.656, + "2018": 0.661, + "2019": 0.671, + "2020": 0.676, + "2021": 0.676 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr102", + "Region": "Pelagoniski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.527, + "2001": 0.536, + "2002": 0.545, + "2003": 0.551, + "2004": 0.557, + "2005": 0.567, + "2006": 0.583, + "2007": 0.599, + "2008": 0.636, + "2009": 0.648, + "2010": 0.66, + "2011": 0.674, + "2012": 0.68, + "2013": 0.686, + "2014": 0.692, + "2015": 0.708, + "2016": 0.718, + "2017": 0.727, + "2018": 0.73, + "2019": 0.739, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr107", + "Region": "Poloski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.543, + "2001": 0.552, + "2002": 0.56, + "2003": 0.566, + "2004": 0.572, + "2005": 0.582, + "2006": 0.58, + "2007": 0.579, + "2008": 0.6, + "2009": 0.596, + "2010": 0.593, + "2011": 0.591, + "2012": 0.601, + "2013": 0.611, + "2014": 0.621, + "2015": 0.64, + "2016": 0.652, + "2017": 0.665, + "2018": 0.672, + "2019": 0.684, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr101", + "Region": "Skopski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.546, + "2001": 0.555, + "2002": 0.564, + "2003": 0.57, + "2004": 0.576, + "2005": 0.586, + "2006": 0.603, + "2007": 0.62, + "2008": 0.659, + "2009": 0.672, + "2010": 0.685, + "2011": 0.7, + "2012": 0.705, + "2013": 0.709, + "2014": 0.713, + "2015": 0.727, + "2016": 0.735, + "2017": 0.742, + "2018": 0.743, + "2019": 0.75, + "2020": 0.757, + "2021": 0.757 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr106", + "Region": "South East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.45, + "2001": 0.458, + "2002": 0.466, + "2003": 0.471, + "2004": 0.476, + "2005": 0.485, + "2006": 0.503, + "2007": 0.52, + "2008": 0.557, + "2009": 0.571, + "2010": 0.585, + "2011": 0.601, + "2012": 0.604, + "2013": 0.607, + "2014": 0.61, + "2015": 0.621, + "2016": 0.627, + "2017": 0.632, + "2018": 0.633, + "2019": 0.638, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr105", + "Region": "South West", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.513, + "2001": 0.521, + "2002": 0.529, + "2003": 0.534, + "2004": 0.539, + "2005": 0.548, + "2006": 0.561, + "2007": 0.573, + "2008": 0.608, + "2009": 0.617, + "2010": 0.626, + "2011": 0.637, + "2012": 0.644, + "2013": 0.652, + "2014": 0.659, + "2015": 0.676, + "2016": 0.687, + "2017": 0.697, + "2018": 0.701, + "2019": 0.712, + "2020": 0.717, + "2021": 0.717 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr103", + "Region": "Vardarski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.578, + "2001": 0.588, + "2002": 0.597, + "2003": 0.604, + "2004": 0.611, + "2005": 0.621, + "2006": 0.624, + "2007": 0.626, + "2008": 0.651, + "2009": 0.65, + "2010": 0.65, + "2011": 0.652, + "2012": 0.657, + "2013": 0.661, + "2014": 0.665, + "2015": 0.678, + "2016": 0.686, + "2017": 0.693, + "2018": 0.694, + "2019": 0.701, + "2020": 0.706, + "2021": 0.706 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "National", + "GDLCODE": "NORt", + "Region": "Total", + "1990": 0.76, + "1991": 0.771, + "1992": 0.781, + "1993": 0.799, + "1994": 0.83, + "1995": 0.817, + "1996": 0.825, + "1997": 0.834, + "1998": 0.862, + "1999": 0.871, + "2000": 0.884, + "2001": 0.875, + "2002": 0.878, + "2003": 0.891, + "2004": 0.897, + "2005": 0.895, + "2006": 0.901, + "2007": 0.901, + "2008": 0.899, + "2009": 0.899, + "2010": 0.906, + "2011": 0.908, + "2012": 0.907, + "2013": 0.914, + "2014": 0.915, + "2015": 0.92, + "2016": 0.926, + "2017": 0.932, + "2018": 0.933, + "2019": 0.933, + "2020": 0.933, + "2021": 0.933 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr104", + "Region": "Agder og Rogaland", + "1990": 0.743, + "1991": 0.754, + "1992": 0.764, + "1993": 0.781, + "1994": 0.811, + "1995": 0.799, + "1996": 0.806, + "1997": 0.815, + "1998": 0.842, + "1999": 0.851, + "2000": 0.863, + "2001": 0.855, + "2002": 0.861, + "2003": 0.871, + "2004": 0.88, + "2005": 0.876, + "2006": 0.875, + "2007": 0.879, + "2008": 0.876, + "2009": 0.872, + "2010": 0.882, + "2011": 0.885, + "2012": 0.885, + "2013": 0.894, + "2014": 0.892, + "2015": 0.898, + "2016": 0.904, + "2017": 0.913, + "2018": 0.919, + "2019": 0.922, + "2020": 0.922, + "2021": 0.922 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr102", + "Region": "Hedmark og Oppland", + "1990": 0.734, + "1991": 0.745, + "1992": 0.755, + "1993": 0.772, + "1994": 0.802, + "1995": 0.79, + "1996": 0.798, + "1997": 0.806, + "1998": 0.833, + "1999": 0.842, + "2000": 0.854, + "2001": 0.847, + "2002": 0.851, + "2003": 0.861, + "2004": 0.869, + "2005": 0.869, + "2006": 0.861, + "2007": 0.864, + "2008": 0.861, + "2009": 0.866, + "2010": 0.875, + "2011": 0.876, + "2012": 0.876, + "2013": 0.88, + "2014": 0.885, + "2015": 0.889, + "2016": 0.899, + "2017": 0.908, + "2018": 0.906, + "2019": 0.906, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr107", + "Region": "Nord-Norge", + "1990": 0.736, + "1991": 0.747, + "1992": 0.757, + "1993": 0.774, + "1994": 0.804, + "1995": 0.792, + "1996": 0.799, + "1997": 0.808, + "1998": 0.835, + "1999": 0.844, + "2000": 0.856, + "2001": 0.853, + "2002": 0.855, + "2003": 0.862, + "2004": 0.875, + "2005": 0.874, + "2006": 0.867, + "2007": 0.87, + "2008": 0.873, + "2009": 0.874, + "2010": 0.881, + "2011": 0.882, + "2012": 0.875, + "2013": 0.887, + "2014": 0.891, + "2015": 0.895, + "2016": 0.903, + "2017": 0.91, + "2018": 0.915, + "2019": 0.918, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr101", + "Region": "Oslo og Akershus", + "1990": 0.792, + "1991": 0.803, + "1992": 0.814, + "1993": 0.832, + "1994": 0.865, + "1995": 0.852, + "1996": 0.86, + "1997": 0.869, + "1998": 0.898, + "1999": 0.907, + "2000": 0.919, + "2001": 0.916, + "2002": 0.916, + "2003": 0.924, + "2004": 0.929, + "2005": 0.936, + "2006": 0.932, + "2007": 0.934, + "2008": 0.94, + "2009": 0.937, + "2010": 0.939, + "2011": 0.943, + "2012": 0.946, + "2013": 0.945, + "2014": 0.945, + "2015": 0.946, + "2016": 0.947, + "2017": 0.953, + "2018": 0.953, + "2019": 0.953, + "2020": 0.953, + "2021": 0.953 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr103", + "Region": "Sor-Ostlandet", + "1990": 0.723, + "1991": 0.733, + "1992": 0.743, + "1993": 0.759, + "1994": 0.788, + "1995": 0.777, + "1996": 0.784, + "1997": 0.792, + "1998": 0.818, + "1999": 0.827, + "2000": 0.838, + "2001": 0.835, + "2002": 0.835, + "2003": 0.843, + "2004": 0.852, + "2005": 0.851, + "2006": 0.846, + "2007": 0.849, + "2008": 0.85, + "2009": 0.851, + "2010": 0.855, + "2011": 0.858, + "2012": 0.859, + "2013": 0.865, + "2014": 0.862, + "2015": 0.866, + "2016": 0.872, + "2017": 0.874, + "2018": 0.88, + "2019": 0.888, + "2020": 0.888, + "2021": 0.888 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr106", + "Region": "Trondelag", + "1990": 0.802, + "1991": 0.814, + "1992": 0.825, + "1993": 0.844, + "1994": 0.879, + "1995": 0.865, + "1996": 0.873, + "1997": 0.883, + "1998": 0.889, + "1999": 0.891, + "2000": 0.894, + "2001": 0.901, + "2002": 0.904, + "2003": 0.906, + "2004": 0.912, + "2005": 0.914, + "2006": 0.907, + "2007": 0.91, + "2008": 0.918, + "2009": 0.919, + "2010": 0.92, + "2011": 0.923, + "2012": 0.922, + "2013": 0.921, + "2014": 0.923, + "2015": 0.931, + "2016": 0.931, + "2017": 0.934, + "2018": 0.935, + "2019": 0.936, + "2020": 0.936, + "2021": 0.936 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr105", + "Region": "Vestlandet", + "1990": 0.763, + "1991": 0.774, + "1992": 0.785, + "1993": 0.802, + "1994": 0.834, + "1995": 0.821, + "1996": 0.829, + "1997": 0.838, + "1998": 0.866, + "1999": 0.875, + "2000": 0.888, + "2001": 0.886, + "2002": 0.892, + "2003": 0.9, + "2004": 0.908, + "2005": 0.905, + "2006": 0.903, + "2007": 0.906, + "2008": 0.908, + "2009": 0.911, + "2010": 0.917, + "2011": 0.917, + "2012": 0.914, + "2013": 0.922, + "2014": 0.925, + "2015": 0.927, + "2016": 0.929, + "2017": 0.934, + "2018": 0.935, + "2019": 0.934, + "2020": 0.934, + "2021": 0.934 + }, + { + "Country": "Oman", + "Continent": "Asia/Pacific", + "ISO_Code": "OMN", + "Level": "National", + "GDLCODE": "OMNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.476, + "2001": 0.493, + "2002": 0.51, + "2003": 0.528, + "2004": 0.543, + "2005": 0.558, + "2006": 0.571, + "2007": 0.59, + "2008": 0.611, + "2009": 0.637, + "2010": 0.636, + "2011": 0.647, + "2012": 0.663, + "2013": 0.678, + "2014": 0.696, + "2015": 0.715, + "2016": 0.739, + "2017": 0.74, + "2018": 0.752, + "2019": 0.772, + "2020": 0.793, + "2021": 0.793 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "National", + "GDLCODE": "PAKt", + "Region": "Total", + "1990": 0.205, + "1991": 0.21, + "1992": 0.214, + "1993": 0.219, + "1994": 0.224, + "1995": 0.229, + "1996": 0.234, + "1997": 0.239, + "1998": 0.243, + "1999": 0.248, + "2000": 0.253, + "2001": 0.263, + "2002": 0.273, + "2003": 0.283, + "2004": 0.302, + "2005": 0.32, + "2006": 0.325, + "2007": 0.334, + "2008": 0.33, + "2009": 0.338, + "2010": 0.342, + "2011": 0.347, + "2012": 0.353, + "2013": 0.359, + "2014": 0.375, + "2015": 0.383, + "2016": 0.394, + "2017": 0.391, + "2018": 0.391, + "2019": 0.392, + "2020": 0.392, + "2021": 0.392 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr107", + "Region": "AJK", + "1990": 0.326, + "1991": 0.333, + "1992": 0.341, + "1993": 0.349, + "1994": 0.357, + "1995": 0.365, + "1996": 0.372, + "1997": 0.38, + "1998": 0.388, + "1999": 0.396, + "2000": 0.404, + "2001": 0.42, + "2002": 0.436, + "2003": 0.452, + "2004": 0.484, + "2005": 0.513, + "2006": 0.52, + "2007": 0.533, + "2008": 0.517, + "2009": 0.52, + "2010": 0.518, + "2011": 0.515, + "2012": 0.515, + "2013": 0.512, + "2014": 0.522, + "2015": 0.522, + "2016": 0.526, + "2017": 0.51, + "2018": 0.5, + "2019": 0.502, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr104", + "Region": "Balochistan", + "1990": 0.172, + "1991": 0.176, + "1992": 0.18, + "1993": 0.183, + "1994": 0.187, + "1995": 0.191, + "1996": 0.195, + "1997": 0.199, + "1998": 0.203, + "1999": 0.207, + "2000": 0.211, + "2001": 0.218, + "2002": 0.226, + "2003": 0.234, + "2004": 0.25, + "2005": 0.265, + "2006": 0.27, + "2007": 0.277, + "2008": 0.267, + "2009": 0.265, + "2010": 0.26, + "2011": 0.255, + "2012": 0.253, + "2013": 0.251, + "2014": 0.257, + "2015": 0.258, + "2016": 0.26, + "2017": 0.253, + "2018": 0.249, + "2019": 0.25, + "2020": 0.25, + "2021": 0.25 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr108", + "Region": "FATA", + "1990": 0.161, + "1991": 0.164, + "1992": 0.168, + "1993": 0.171, + "1994": 0.174, + "1995": 0.178, + "1996": 0.181, + "1997": 0.185, + "1998": 0.188, + "1999": 0.192, + "2000": 0.195, + "2001": 0.201, + "2002": 0.208, + "2003": 0.214, + "2004": 0.23, + "2005": 0.243, + "2006": 0.248, + "2007": 0.256, + "2008": 0.25, + "2009": 0.251, + "2010": 0.249, + "2011": 0.247, + "2012": 0.247, + "2013": 0.246, + "2014": 0.251, + "2015": 0.252, + "2016": 0.255, + "2017": 0.248, + "2018": 0.246, + "2019": 0.249, + "2020": 0.249, + "2021": 0.249 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr106", + "Region": "Gilgit Baltistan", + "1990": 0.239, + "1991": 0.244, + "1992": 0.249, + "1993": 0.254, + "1994": 0.259, + "1995": 0.264, + "1996": 0.268, + "1997": 0.273, + "1998": 0.278, + "1999": 0.283, + "2000": 0.288, + "2001": 0.298, + "2002": 0.307, + "2003": 0.316, + "2004": 0.339, + "2005": 0.359, + "2006": 0.366, + "2007": 0.379, + "2008": 0.37, + "2009": 0.371, + "2010": 0.368, + "2011": 0.365, + "2012": 0.366, + "2013": 0.379, + "2014": 0.404, + "2015": 0.421, + "2016": 0.442, + "2017": 0.446, + "2018": 0.455, + "2019": 0.458, + "2020": 0.458, + "2021": 0.458 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr105", + "Region": "Islamabad (ICT)", + "1990": 0.309, + "1991": 0.317, + "1992": 0.325, + "1993": 0.333, + "1994": 0.341, + "1995": 0.349, + "1996": 0.357, + "1997": 0.365, + "1998": 0.373, + "1999": 0.381, + "2000": 0.389, + "2001": 0.406, + "2002": 0.423, + "2003": 0.44, + "2004": 0.47, + "2005": 0.498, + "2006": 0.505, + "2007": 0.514, + "2008": 0.528, + "2009": 0.561, + "2010": 0.589, + "2011": 0.617, + "2012": 0.647, + "2013": 0.635, + "2014": 0.638, + "2015": 0.626, + "2016": 0.619, + "2017": 0.592, + "2018": 0.569, + "2019": 0.567, + "2020": 0.567, + "2021": 0.567 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr103", + "Region": "Khyber Pakhtunkhwa (NWFrontier)", + "1990": 0.193, + "1991": 0.197, + "1992": 0.201, + "1993": 0.205, + "1994": 0.209, + "1995": 0.214, + "1996": 0.218, + "1997": 0.222, + "1998": 0.226, + "1999": 0.23, + "2000": 0.235, + "2001": 0.243, + "2002": 0.251, + "2003": 0.259, + "2004": 0.278, + "2005": 0.294, + "2006": 0.299, + "2007": 0.309, + "2008": 0.307, + "2009": 0.316, + "2010": 0.32, + "2011": 0.325, + "2012": 0.332, + "2013": 0.331, + "2014": 0.339, + "2015": 0.341, + "2016": 0.345, + "2017": 0.337, + "2018": 0.333, + "2019": 0.335, + "2020": 0.335, + "2021": 0.335 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr101", + "Region": "Punjab", + "1990": 0.198, + "1991": 0.202, + "1992": 0.206, + "1993": 0.211, + "1994": 0.215, + "1995": 0.219, + "1996": 0.224, + "1997": 0.228, + "1998": 0.233, + "1999": 0.237, + "2000": 0.242, + "2001": 0.25, + "2002": 0.259, + "2003": 0.268, + "2004": 0.286, + "2005": 0.304, + "2006": 0.309, + "2007": 0.318, + "2008": 0.321, + "2009": 0.334, + "2010": 0.344, + "2011": 0.353, + "2012": 0.365, + "2013": 0.372, + "2014": 0.388, + "2015": 0.397, + "2016": 0.409, + "2017": 0.406, + "2018": 0.406, + "2019": 0.407, + "2020": 0.407, + "2021": 0.407 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr102", + "Region": "Sindh", + "1990": 0.189, + "1991": 0.194, + "1992": 0.199, + "1993": 0.203, + "1994": 0.208, + "1995": 0.213, + "1996": 0.218, + "1997": 0.223, + "1998": 0.227, + "1999": 0.232, + "2000": 0.237, + "2001": 0.247, + "2002": 0.257, + "2003": 0.267, + "2004": 0.286, + "2005": 0.303, + "2006": 0.307, + "2007": 0.313, + "2008": 0.312, + "2009": 0.324, + "2010": 0.331, + "2011": 0.339, + "2012": 0.348, + "2013": 0.349, + "2014": 0.358, + "2015": 0.359, + "2016": 0.363, + "2017": 0.355, + "2018": 0.349, + "2019": 0.349, + "2020": 0.349, + "2021": 0.349 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "National", + "GDLCODE": "PSEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.603, + "2005": 0.607, + "2006": 0.615, + "2007": 0.634, + "2008": 0.639, + "2009": 0.646, + "2010": 0.65, + "2011": 0.656, + "2012": 0.665, + "2013": 0.66, + "2014": 0.663, + "2015": 0.669, + "2016": 0.672, + "2017": 0.68, + "2018": 0.69, + "2019": 0.697, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr104", + "Region": "Bethlehem, Hebron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.576, + "2005": 0.58, + "2006": 0.588, + "2007": 0.606, + "2008": 0.61, + "2009": 0.617, + "2010": 0.621, + "2011": 0.627, + "2012": 0.635, + "2013": 0.631, + "2014": 0.634, + "2015": 0.642, + "2016": 0.646, + "2017": 0.655, + "2018": 0.666, + "2019": 0.674, + "2020": 0.68, + "2021": 0.68 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr106", + "Region": "Deir El-Balah, Khan Yunis, Rafah", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.64, + "2005": 0.645, + "2006": 0.654, + "2007": 0.674, + "2008": 0.679, + "2009": 0.686, + "2010": 0.691, + "2011": 0.697, + "2012": 0.706, + "2013": 0.7, + "2014": 0.702, + "2015": 0.708, + "2016": 0.708, + "2017": 0.716, + "2018": 0.725, + "2019": 0.73, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr101", + "Region": "Jenin, Tubas, Tulkarm, Nablus, Qalqiliya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.595, + "2005": 0.599, + "2006": 0.607, + "2007": 0.626, + "2008": 0.631, + "2009": 0.637, + "2010": 0.641, + "2011": 0.652, + "2012": 0.665, + "2013": 0.665, + "2014": 0.673, + "2015": 0.678, + "2016": 0.68, + "2017": 0.688, + "2018": 0.697, + "2019": 0.703, + "2020": 0.709, + "2021": 0.709 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr103", + "Region": "Jerusalem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.593, + "2005": 0.598, + "2006": 0.606, + "2007": 0.624, + "2008": 0.629, + "2009": 0.636, + "2010": 0.641, + "2011": 0.645, + "2012": 0.652, + "2013": 0.645, + "2014": 0.647, + "2015": 0.648, + "2016": 0.645, + "2017": 0.648, + "2018": 0.651, + "2019": 0.652, + "2020": 0.658, + "2021": 0.658 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr105", + "Region": "North Gaza, Gaza", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.619, + "2005": 0.624, + "2006": 0.632, + "2007": 0.652, + "2008": 0.657, + "2009": 0.664, + "2010": 0.669, + "2011": 0.666, + "2012": 0.667, + "2013": 0.654, + "2014": 0.649, + "2015": 0.66, + "2016": 0.667, + "2017": 0.68, + "2018": 0.694, + "2019": 0.706, + "2020": 0.711, + "2021": 0.711 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr102", + "Region": "Salfit, Ramallah, Al-Bireh, Jericho, Al Aghwar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.589, + "2005": 0.593, + "2006": 0.602, + "2007": 0.62, + "2008": 0.625, + "2009": 0.631, + "2010": 0.636, + "2011": 0.647, + "2012": 0.661, + "2013": 0.662, + "2014": 0.671, + "2015": 0.674, + "2016": 0.673, + "2017": 0.679, + "2018": 0.686, + "2019": 0.689, + "2020": 0.695, + "2021": 0.695 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "National", + "GDLCODE": "PANt", + "Region": "Total", + "1990": 0.543, + "1991": 0.545, + "1992": 0.549, + "1993": 0.556, + "1994": 0.556, + "1995": 0.564, + "1996": 0.571, + "1997": 0.58, + "1998": 0.588, + "1999": 0.597, + "2000": 0.605, + "2001": 0.616, + "2002": 0.626, + "2003": 0.633, + "2004": 0.64, + "2005": 0.644, + "2006": 0.649, + "2007": 0.655, + "2008": 0.655, + "2009": 0.659, + "2010": 0.665, + "2011": 0.665, + "2012": 0.671, + "2013": 0.676, + "2014": 0.681, + "2015": 0.686, + "2016": 0.696, + "2017": 0.702, + "2018": 0.708, + "2019": 0.714, + "2020": 0.714, + "2021": 0.714 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr101", + "Region": "Bocas del Toro", + "1990": 0.456, + "1991": 0.458, + "1992": 0.462, + "1993": 0.467, + "1994": 0.467, + "1995": 0.474, + "1996": 0.481, + "1997": 0.488, + "1998": 0.496, + "1999": 0.503, + "2000": 0.511, + "2001": 0.52, + "2002": 0.528, + "2003": 0.534, + "2004": 0.539, + "2005": 0.543, + "2006": 0.546, + "2007": 0.551, + "2008": 0.55, + "2009": 0.553, + "2010": 0.558, + "2011": 0.558, + "2012": 0.561, + "2013": 0.565, + "2014": 0.569, + "2015": 0.573, + "2016": 0.581, + "2017": 0.586, + "2018": 0.591, + "2019": 0.596, + "2020": 0.596, + "2021": 0.596 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr104", + "Region": "Chiriqui", + "1990": 0.538, + "1991": 0.54, + "1992": 0.544, + "1993": 0.551, + "1994": 0.551, + "1995": 0.559, + "1996": 0.566, + "1997": 0.575, + "1998": 0.583, + "1999": 0.592, + "2000": 0.6, + "2001": 0.611, + "2002": 0.621, + "2003": 0.628, + "2004": 0.634, + "2005": 0.639, + "2006": 0.643, + "2007": 0.65, + "2008": 0.649, + "2009": 0.653, + "2010": 0.659, + "2011": 0.659, + "2012": 0.664, + "2013": 0.669, + "2014": 0.674, + "2015": 0.679, + "2016": 0.689, + "2017": 0.695, + "2018": 0.701, + "2019": 0.707, + "2020": 0.707, + "2021": 0.707 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr102", + "Region": "Cocle", + "1990": 0.513, + "1991": 0.514, + "1992": 0.519, + "1993": 0.525, + "1994": 0.525, + "1995": 0.533, + "1996": 0.54, + "1997": 0.548, + "1998": 0.557, + "1999": 0.565, + "2000": 0.573, + "2001": 0.583, + "2002": 0.593, + "2003": 0.599, + "2004": 0.606, + "2005": 0.609, + "2006": 0.613, + "2007": 0.619, + "2008": 0.618, + "2009": 0.621, + "2010": 0.627, + "2011": 0.627, + "2012": 0.631, + "2013": 0.636, + "2014": 0.641, + "2015": 0.645, + "2016": 0.654, + "2017": 0.66, + "2018": 0.665, + "2019": 0.671, + "2020": 0.671, + "2021": 0.671 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr103", + "Region": "Colon", + "1990": 0.55, + "1991": 0.552, + "1992": 0.557, + "1993": 0.563, + "1994": 0.564, + "1995": 0.571, + "1996": 0.579, + "1997": 0.587, + "1998": 0.595, + "1999": 0.604, + "2000": 0.612, + "2001": 0.623, + "2002": 0.633, + "2003": 0.64, + "2004": 0.648, + "2005": 0.652, + "2006": 0.657, + "2007": 0.664, + "2008": 0.664, + "2009": 0.669, + "2010": 0.675, + "2011": 0.676, + "2012": 0.682, + "2013": 0.687, + "2014": 0.693, + "2015": 0.698, + "2016": 0.708, + "2017": 0.714, + "2018": 0.721, + "2019": 0.727, + "2020": 0.727, + "2021": 0.727 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr105", + "Region": "Darien", + "1990": 0.427, + "1991": 0.428, + "1992": 0.432, + "1993": 0.437, + "1994": 0.437, + "1995": 0.444, + "1996": 0.45, + "1997": 0.457, + "1998": 0.464, + "1999": 0.472, + "2000": 0.479, + "2001": 0.487, + "2002": 0.495, + "2003": 0.5, + "2004": 0.505, + "2005": 0.508, + "2006": 0.511, + "2007": 0.516, + "2008": 0.514, + "2009": 0.517, + "2010": 0.521, + "2011": 0.52, + "2012": 0.524, + "2013": 0.527, + "2014": 0.531, + "2015": 0.534, + "2016": 0.542, + "2017": 0.546, + "2018": 0.55, + "2019": 0.554, + "2020": 0.554, + "2021": 0.554 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr111", + "Region": "Embera Wounaan", + "1990": 0.379, + "1991": 0.38, + "1992": 0.384, + "1993": 0.389, + "1994": 0.388, + "1995": 0.394, + "1996": 0.4, + "1997": 0.407, + "1998": 0.414, + "1999": 0.421, + "2000": 0.428, + "2001": 0.436, + "2002": 0.443, + "2003": 0.447, + "2004": 0.451, + "2005": 0.453, + "2006": 0.455, + "2007": 0.459, + "2008": 0.456, + "2009": 0.458, + "2010": 0.462, + "2011": 0.46, + "2012": 0.462, + "2013": 0.465, + "2014": 0.467, + "2015": 0.47, + "2016": 0.477, + "2017": 0.48, + "2018": 0.484, + "2019": 0.487, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr106", + "Region": "Herrera", + "1990": 0.541, + "1991": 0.543, + "1992": 0.547, + "1993": 0.554, + "1994": 0.554, + "1995": 0.562, + "1996": 0.57, + "1997": 0.579, + "1998": 0.588, + "1999": 0.597, + "2000": 0.606, + "2001": 0.616, + "2002": 0.626, + "2003": 0.633, + "2004": 0.639, + "2005": 0.643, + "2006": 0.647, + "2007": 0.654, + "2008": 0.652, + "2009": 0.656, + "2010": 0.662, + "2011": 0.661, + "2012": 0.666, + "2013": 0.671, + "2014": 0.675, + "2015": 0.68, + "2016": 0.69, + "2017": 0.695, + "2018": 0.701, + "2019": 0.707, + "2020": 0.707, + "2021": 0.707 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr110", + "Region": "Kuna Yala", + "1990": 0.327, + "1991": 0.328, + "1992": 0.331, + "1993": 0.335, + "1994": 0.335, + "1995": 0.34, + "1996": 0.345, + "1997": 0.351, + "1998": 0.357, + "1999": 0.363, + "2000": 0.369, + "2001": 0.376, + "2002": 0.382, + "2003": 0.385, + "2004": 0.389, + "2005": 0.391, + "2006": 0.392, + "2007": 0.396, + "2008": 0.394, + "2009": 0.395, + "2010": 0.398, + "2011": 0.397, + "2012": 0.399, + "2013": 0.401, + "2014": 0.403, + "2015": 0.405, + "2016": 0.411, + "2017": 0.414, + "2018": 0.417, + "2019": 0.42, + "2020": 0.42, + "2021": 0.42 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr107", + "Region": "Los Santos", + "1990": 0.529, + "1991": 0.531, + "1992": 0.535, + "1993": 0.541, + "1994": 0.542, + "1995": 0.549, + "1996": 0.557, + "1997": 0.566, + "1998": 0.574, + "1999": 0.583, + "2000": 0.592, + "2001": 0.602, + "2002": 0.612, + "2003": 0.618, + "2004": 0.625, + "2005": 0.629, + "2006": 0.633, + "2007": 0.639, + "2008": 0.638, + "2009": 0.641, + "2010": 0.647, + "2011": 0.647, + "2012": 0.651, + "2013": 0.656, + "2014": 0.66, + "2015": 0.665, + "2016": 0.674, + "2017": 0.68, + "2018": 0.686, + "2019": 0.691, + "2020": 0.691, + "2021": 0.691 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr112", + "Region": "Ngobe Bugle", + "1990": 0.328, + "1991": 0.329, + "1992": 0.332, + "1993": 0.336, + "1994": 0.336, + "1995": 0.342, + "1996": 0.347, + "1997": 0.353, + "1998": 0.36, + "1999": 0.366, + "2000": 0.373, + "2001": 0.379, + "2002": 0.385, + "2003": 0.388, + "2004": 0.392, + "2005": 0.393, + "2006": 0.395, + "2007": 0.398, + "2008": 0.395, + "2009": 0.395, + "2010": 0.399, + "2011": 0.396, + "2012": 0.398, + "2013": 0.4, + "2014": 0.402, + "2015": 0.403, + "2016": 0.409, + "2017": 0.412, + "2018": 0.415, + "2019": 0.417, + "2020": 0.417, + "2021": 0.417 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr108", + "Region": "Panama", + "1990": 0.58, + "1991": 0.582, + "1992": 0.587, + "1993": 0.594, + "1994": 0.594, + "1995": 0.602, + "1996": 0.61, + "1997": 0.619, + "1998": 0.627, + "1999": 0.636, + "2000": 0.645, + "2001": 0.657, + "2002": 0.667, + "2003": 0.675, + "2004": 0.682, + "2005": 0.688, + "2006": 0.693, + "2007": 0.7, + "2008": 0.7, + "2009": 0.704, + "2010": 0.712, + "2011": 0.712, + "2012": 0.718, + "2013": 0.724, + "2014": 0.73, + "2015": 0.735, + "2016": 0.746, + "2017": 0.752, + "2018": 0.759, + "2019": 0.766, + "2020": 0.766, + "2021": 0.766 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr109", + "Region": "Veraguas", + "1990": 0.486, + "1991": 0.487, + "1992": 0.492, + "1993": 0.498, + "1994": 0.497, + "1995": 0.505, + "1996": 0.512, + "1997": 0.52, + "1998": 0.528, + "1999": 0.537, + "2000": 0.545, + "2001": 0.555, + "2002": 0.564, + "2003": 0.569, + "2004": 0.575, + "2005": 0.578, + "2006": 0.582, + "2007": 0.587, + "2008": 0.586, + "2009": 0.588, + "2010": 0.594, + "2011": 0.593, + "2012": 0.597, + "2013": 0.601, + "2014": 0.605, + "2015": 0.608, + "2016": 0.617, + "2017": 0.622, + "2018": 0.627, + "2019": 0.632, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "National", + "GDLCODE": "PNGt", + "Region": "Total", + "1990": 0.182, + "1991": 0.191, + "1992": 0.2, + "1993": 0.209, + "1994": 0.218, + "1995": 0.228, + "1996": 0.236, + "1997": 0.245, + "1998": 0.253, + "1999": 0.262, + "2000": 0.271, + "2001": 0.279, + "2002": 0.288, + "2003": 0.296, + "2004": 0.305, + "2005": 0.313, + "2006": 0.322, + "2007": 0.332, + "2008": 0.341, + "2009": 0.35, + "2010": 0.36, + "2011": 0.37, + "2012": 0.381, + "2013": 0.392, + "2014": 0.403, + "2015": 0.414, + "2016": 0.421, + "2017": 0.429, + "2018": 0.437, + "2019": 0.446, + "2020": 0.446, + "2021": 0.446 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr120", + "Region": "Autonomous Region of Bougainville", + "1990": 0.209, + "1991": 0.219, + "1992": 0.229, + "1993": 0.239, + "1994": 0.25, + "1995": 0.261, + "1996": 0.27, + "1997": 0.279, + "1998": 0.288, + "1999": 0.298, + "2000": 0.308, + "2001": 0.317, + "2002": 0.327, + "2003": 0.336, + "2004": 0.345, + "2005": 0.354, + "2006": 0.365, + "2007": 0.375, + "2008": 0.385, + "2009": 0.395, + "2010": 0.406, + "2011": 0.418, + "2012": 0.43, + "2013": 0.442, + "2014": 0.455, + "2015": 0.467, + "2016": 0.475, + "2017": 0.484, + "2018": 0.493, + "2019": 0.502, + "2020": 0.502, + "2021": 0.502 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr103", + "Region": "Central", + "1990": 0.183, + "1991": 0.192, + "1992": 0.201, + "1993": 0.21, + "1994": 0.219, + "1995": 0.229, + "1996": 0.237, + "1997": 0.245, + "1998": 0.253, + "1999": 0.261, + "2000": 0.27, + "2001": 0.278, + "2002": 0.286, + "2003": 0.294, + "2004": 0.302, + "2005": 0.31, + "2006": 0.319, + "2007": 0.328, + "2008": 0.337, + "2009": 0.346, + "2010": 0.355, + "2011": 0.366, + "2012": 0.377, + "2013": 0.387, + "2014": 0.398, + "2015": 0.409, + "2016": 0.416, + "2017": 0.424, + "2018": 0.431, + "2019": 0.439, + "2020": 0.439, + "2021": 0.439 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr110", + "Region": "Chimbu, Simbu", + "1990": 0.192, + "1991": 0.201, + "1992": 0.211, + "1993": 0.22, + "1994": 0.23, + "1995": 0.24, + "1996": 0.249, + "1997": 0.258, + "1998": 0.267, + "1999": 0.277, + "2000": 0.286, + "2001": 0.296, + "2002": 0.305, + "2003": 0.315, + "2004": 0.324, + "2005": 0.333, + "2006": 0.343, + "2007": 0.353, + "2008": 0.363, + "2009": 0.373, + "2010": 0.383, + "2011": 0.395, + "2012": 0.406, + "2013": 0.418, + "2014": 0.429, + "2015": 0.441, + "2016": 0.449, + "2017": 0.458, + "2018": 0.467, + "2019": 0.476, + "2020": 0.476, + "2021": 0.476 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr118", + "Region": "East New Britain", + "1990": 0.215, + "1991": 0.225, + "1992": 0.236, + "1993": 0.247, + "1994": 0.258, + "1995": 0.269, + "1996": 0.278, + "1997": 0.288, + "1998": 0.297, + "1999": 0.307, + "2000": 0.317, + "2001": 0.327, + "2002": 0.337, + "2003": 0.346, + "2004": 0.356, + "2005": 0.365, + "2006": 0.376, + "2007": 0.386, + "2008": 0.397, + "2009": 0.408, + "2010": 0.418, + "2011": 0.431, + "2012": 0.443, + "2013": 0.456, + "2014": 0.469, + "2015": 0.481, + "2016": 0.49, + "2017": 0.499, + "2018": 0.508, + "2019": 0.517, + "2020": 0.517, + "2021": 0.517 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr114", + "Region": "East Sepik", + "1990": 0.181, + "1991": 0.19, + "1992": 0.199, + "1993": 0.208, + "1994": 0.217, + "1995": 0.226, + "1996": 0.235, + "1997": 0.243, + "1998": 0.252, + "1999": 0.26, + "2000": 0.269, + "2001": 0.278, + "2002": 0.287, + "2003": 0.295, + "2004": 0.304, + "2005": 0.312, + "2006": 0.322, + "2007": 0.331, + "2008": 0.34, + "2009": 0.349, + "2010": 0.359, + "2011": 0.37, + "2012": 0.38, + "2013": 0.391, + "2014": 0.402, + "2015": 0.413, + "2016": 0.421, + "2017": 0.429, + "2018": 0.437, + "2019": 0.445, + "2020": 0.445, + "2021": 0.445 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr111", + "Region": "Eastern Highlands", + "1990": 0.166, + "1991": 0.174, + "1992": 0.182, + "1993": 0.19, + "1994": 0.198, + "1995": 0.207, + "1996": 0.215, + "1997": 0.223, + "1998": 0.231, + "1999": 0.239, + "2000": 0.248, + "2001": 0.256, + "2002": 0.264, + "2003": 0.272, + "2004": 0.28, + "2005": 0.288, + "2006": 0.297, + "2007": 0.306, + "2008": 0.314, + "2009": 0.323, + "2010": 0.332, + "2011": 0.342, + "2012": 0.352, + "2013": 0.362, + "2014": 0.372, + "2015": 0.381, + "2016": 0.389, + "2017": 0.397, + "2018": 0.404, + "2019": 0.413, + "2020": 0.413, + "2021": 0.413 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr108", + "Region": "Enga", + "1990": 0.144, + "1991": 0.151, + "1992": 0.158, + "1993": 0.165, + "1994": 0.172, + "1995": 0.18, + "1996": 0.187, + "1997": 0.194, + "1998": 0.201, + "1999": 0.209, + "2000": 0.216, + "2001": 0.224, + "2002": 0.231, + "2003": 0.239, + "2004": 0.246, + "2005": 0.254, + "2006": 0.261, + "2007": 0.269, + "2008": 0.277, + "2009": 0.285, + "2010": 0.293, + "2011": 0.301, + "2012": 0.31, + "2013": 0.319, + "2014": 0.328, + "2015": 0.336, + "2016": 0.343, + "2017": 0.35, + "2018": 0.358, + "2019": 0.365, + "2020": 0.365, + "2021": 0.365 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr102", + "Region": "Gulf", + "1990": 0.157, + "1991": 0.164, + "1992": 0.172, + "1993": 0.179, + "1994": 0.187, + "1995": 0.196, + "1996": 0.203, + "1997": 0.21, + "1998": 0.217, + "1999": 0.224, + "2000": 0.231, + "2001": 0.239, + "2002": 0.246, + "2003": 0.253, + "2004": 0.26, + "2005": 0.267, + "2006": 0.275, + "2007": 0.283, + "2008": 0.29, + "2009": 0.298, + "2010": 0.306, + "2011": 0.315, + "2012": 0.324, + "2013": 0.334, + "2014": 0.343, + "2015": 0.352, + "2016": 0.359, + "2017": 0.365, + "2018": 0.372, + "2019": 0.379, + "2020": 0.379, + "2021": 0.379 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr121", + "Region": "Hela", + "1990": 0.114, + "1991": 0.119, + "1992": 0.125, + "1993": 0.13, + "1994": 0.136, + "1995": 0.142, + "1996": 0.147, + "1997": 0.153, + "1998": 0.159, + "1999": 0.164, + "2000": 0.17, + "2001": 0.176, + "2002": 0.182, + "2003": 0.188, + "2004": 0.193, + "2005": 0.199, + "2006": 0.205, + "2007": 0.211, + "2008": 0.218, + "2009": 0.224, + "2010": 0.23, + "2011": 0.237, + "2012": 0.243, + "2013": 0.25, + "2014": 0.257, + "2015": 0.264, + "2016": 0.269, + "2017": 0.275, + "2018": 0.28, + "2019": 0.286, + "2020": 0.286, + "2021": 0.286 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr122", + "Region": "Jiwaka", + "1990": 0.185, + "1991": 0.193, + "1992": 0.202, + "1993": 0.211, + "1994": 0.221, + "1995": 0.23, + "1996": 0.239, + "1997": 0.248, + "1998": 0.257, + "1999": 0.266, + "2000": 0.276, + "2001": 0.285, + "2002": 0.294, + "2003": 0.303, + "2004": 0.312, + "2005": 0.321, + "2006": 0.331, + "2007": 0.341, + "2008": 0.351, + "2009": 0.36, + "2010": 0.37, + "2011": 0.381, + "2012": 0.392, + "2013": 0.403, + "2014": 0.414, + "2015": 0.425, + "2016": 0.434, + "2017": 0.443, + "2018": 0.451, + "2019": 0.461, + "2020": 0.461, + "2021": 0.461 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr113", + "Region": "Madang", + "1990": 0.181, + "1991": 0.19, + "1992": 0.199, + "1993": 0.208, + "1994": 0.217, + "1995": 0.227, + "1996": 0.235, + "1997": 0.243, + "1998": 0.251, + "1999": 0.26, + "2000": 0.269, + "2001": 0.277, + "2002": 0.285, + "2003": 0.294, + "2004": 0.302, + "2005": 0.31, + "2006": 0.319, + "2007": 0.329, + "2008": 0.338, + "2009": 0.347, + "2010": 0.356, + "2011": 0.367, + "2012": 0.377, + "2013": 0.388, + "2014": 0.399, + "2015": 0.409, + "2016": 0.417, + "2017": 0.425, + "2018": 0.433, + "2019": 0.441, + "2020": 0.441, + "2021": 0.441 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr116", + "Region": "Manus", + "1990": 0.231, + "1991": 0.242, + "1992": 0.253, + "1993": 0.264, + "1994": 0.276, + "1995": 0.288, + "1996": 0.298, + "1997": 0.308, + "1998": 0.318, + "1999": 0.329, + "2000": 0.339, + "2001": 0.349, + "2002": 0.359, + "2003": 0.369, + "2004": 0.379, + "2005": 0.389, + "2006": 0.401, + "2007": 0.412, + "2008": 0.423, + "2009": 0.434, + "2010": 0.445, + "2011": 0.459, + "2012": 0.472, + "2013": 0.486, + "2014": 0.499, + "2015": 0.512, + "2016": 0.522, + "2017": 0.531, + "2018": 0.54, + "2019": 0.55, + "2020": 0.55, + "2021": 0.55 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr105", + "Region": "Milne Bay", + "1990": 0.182, + "1991": 0.191, + "1992": 0.2, + "1993": 0.209, + "1994": 0.218, + "1995": 0.227, + "1996": 0.236, + "1997": 0.244, + "1998": 0.252, + "1999": 0.26, + "2000": 0.269, + "2001": 0.277, + "2002": 0.285, + "2003": 0.293, + "2004": 0.302, + "2005": 0.31, + "2006": 0.319, + "2007": 0.328, + "2008": 0.337, + "2009": 0.346, + "2010": 0.355, + "2011": 0.365, + "2012": 0.376, + "2013": 0.387, + "2014": 0.398, + "2015": 0.408, + "2016": 0.416, + "2017": 0.423, + "2018": 0.431, + "2019": 0.439, + "2020": 0.439, + "2021": 0.439 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr112", + "Region": "Morobe", + "1990": 0.203, + "1991": 0.213, + "1992": 0.223, + "1993": 0.233, + "1994": 0.243, + "1995": 0.254, + "1996": 0.263, + "1997": 0.272, + "1998": 0.281, + "1999": 0.291, + "2000": 0.3, + "2001": 0.31, + "2002": 0.319, + "2003": 0.328, + "2004": 0.337, + "2005": 0.346, + "2006": 0.356, + "2007": 0.367, + "2008": 0.377, + "2009": 0.387, + "2010": 0.397, + "2011": 0.409, + "2012": 0.421, + "2013": 0.433, + "2014": 0.445, + "2015": 0.457, + "2016": 0.465, + "2017": 0.474, + "2018": 0.482, + "2019": 0.491, + "2020": 0.491, + "2021": 0.491 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr104", + "Region": "National Capital District", + "1990": 0.278, + "1991": 0.291, + "1992": 0.305, + "1993": 0.319, + "1994": 0.333, + "1995": 0.347, + "1996": 0.359, + "1997": 0.371, + "1998": 0.382, + "1999": 0.395, + "2000": 0.407, + "2001": 0.419, + "2002": 0.43, + "2003": 0.442, + "2004": 0.454, + "2005": 0.465, + "2006": 0.478, + "2007": 0.492, + "2008": 0.505, + "2009": 0.518, + "2010": 0.531, + "2011": 0.547, + "2012": 0.563, + "2013": 0.579, + "2014": 0.595, + "2015": 0.612, + "2016": 0.622, + "2017": 0.632, + "2018": 0.643, + "2019": 0.654, + "2020": 0.654, + "2021": 0.654 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr117", + "Region": "New Ireland", + "1990": 0.231, + "1991": 0.242, + "1992": 0.253, + "1993": 0.265, + "1994": 0.277, + "1995": 0.289, + "1996": 0.299, + "1997": 0.309, + "1998": 0.319, + "1999": 0.33, + "2000": 0.34, + "2001": 0.351, + "2002": 0.361, + "2003": 0.371, + "2004": 0.381, + "2005": 0.391, + "2006": 0.403, + "2007": 0.414, + "2008": 0.425, + "2009": 0.437, + "2010": 0.448, + "2011": 0.461, + "2012": 0.475, + "2013": 0.489, + "2014": 0.502, + "2015": 0.516, + "2016": 0.525, + "2017": 0.534, + "2018": 0.544, + "2019": 0.554, + "2020": 0.554, + "2021": 0.554 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr106", + "Region": "Northern, Oro", + "1990": 0.182, + "1991": 0.191, + "1992": 0.2, + "1993": 0.209, + "1994": 0.218, + "1995": 0.228, + "1996": 0.236, + "1997": 0.244, + "1998": 0.252, + "1999": 0.261, + "2000": 0.269, + "2001": 0.278, + "2002": 0.286, + "2003": 0.294, + "2004": 0.303, + "2005": 0.311, + "2006": 0.32, + "2007": 0.329, + "2008": 0.338, + "2009": 0.347, + "2010": 0.356, + "2011": 0.367, + "2012": 0.378, + "2013": 0.388, + "2014": 0.399, + "2015": 0.41, + "2016": 0.417, + "2017": 0.425, + "2018": 0.433, + "2019": 0.441, + "2020": 0.441, + "2021": 0.441 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr107", + "Region": "Southern Highlands", + "1990": 0.149, + "1991": 0.156, + "1992": 0.163, + "1993": 0.17, + "1994": 0.178, + "1995": 0.186, + "1996": 0.193, + "1997": 0.2, + "1998": 0.208, + "1999": 0.216, + "2000": 0.224, + "2001": 0.231, + "2002": 0.239, + "2003": 0.247, + "2004": 0.255, + "2005": 0.262, + "2006": 0.271, + "2007": 0.279, + "2008": 0.287, + "2009": 0.295, + "2010": 0.303, + "2011": 0.312, + "2012": 0.321, + "2013": 0.33, + "2014": 0.339, + "2015": 0.348, + "2016": 0.356, + "2017": 0.363, + "2018": 0.37, + "2019": 0.378, + "2020": 0.378, + "2021": 0.378 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr119", + "Region": "West New Britain", + "1990": 0.2, + "1991": 0.21, + "1992": 0.22, + "1993": 0.23, + "1994": 0.24, + "1995": 0.25, + "1996": 0.259, + "1997": 0.268, + "1998": 0.277, + "1999": 0.286, + "2000": 0.296, + "2001": 0.305, + "2002": 0.314, + "2003": 0.323, + "2004": 0.332, + "2005": 0.341, + "2006": 0.351, + "2007": 0.361, + "2008": 0.371, + "2009": 0.381, + "2010": 0.39, + "2011": 0.402, + "2012": 0.414, + "2013": 0.426, + "2014": 0.438, + "2015": 0.449, + "2016": 0.458, + "2017": 0.466, + "2018": 0.474, + "2019": 0.483, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr115", + "Region": "West Sepik, Sandaun", + "1990": 0.165, + "1991": 0.172, + "1992": 0.18, + "1993": 0.189, + "1994": 0.197, + "1995": 0.205, + "1996": 0.213, + "1997": 0.221, + "1998": 0.228, + "1999": 0.236, + "2000": 0.244, + "2001": 0.252, + "2002": 0.259, + "2003": 0.267, + "2004": 0.275, + "2005": 0.282, + "2006": 0.291, + "2007": 0.299, + "2008": 0.307, + "2009": 0.316, + "2010": 0.324, + "2011": 0.334, + "2012": 0.343, + "2013": 0.353, + "2014": 0.363, + "2015": 0.373, + "2016": 0.38, + "2017": 0.387, + "2018": 0.394, + "2019": 0.402, + "2020": 0.402, + "2021": 0.402 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr101", + "Region": "Western", + "1990": 0.195, + "1991": 0.204, + "1992": 0.213, + "1993": 0.223, + "1994": 0.233, + "1995": 0.243, + "1996": 0.252, + "1997": 0.26, + "1998": 0.269, + "1999": 0.278, + "2000": 0.287, + "2001": 0.296, + "2002": 0.305, + "2003": 0.313, + "2004": 0.322, + "2005": 0.331, + "2006": 0.34, + "2007": 0.35, + "2008": 0.36, + "2009": 0.369, + "2010": 0.379, + "2011": 0.39, + "2012": 0.402, + "2013": 0.413, + "2014": 0.425, + "2015": 0.436, + "2016": 0.444, + "2017": 0.452, + "2018": 0.46, + "2019": 0.469, + "2020": 0.469, + "2021": 0.469 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr109", + "Region": "Western Highlands", + "1990": 0.189, + "1991": 0.198, + "1992": 0.207, + "1993": 0.217, + "1994": 0.226, + "1995": 0.236, + "1996": 0.245, + "1997": 0.254, + "1998": 0.263, + "1999": 0.273, + "2000": 0.283, + "2001": 0.292, + "2002": 0.301, + "2003": 0.31, + "2004": 0.32, + "2005": 0.329, + "2006": 0.339, + "2007": 0.349, + "2008": 0.359, + "2009": 0.369, + "2010": 0.379, + "2011": 0.39, + "2012": 0.401, + "2013": 0.413, + "2014": 0.424, + "2015": 0.435, + "2016": 0.444, + "2017": 0.453, + "2018": 0.462, + "2019": 0.471, + "2020": 0.471, + "2021": 0.471 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "National", + "GDLCODE": "PRYt", + "Region": "Total", + "1990": 0.428, + "1991": 0.439, + "1992": 0.45, + "1993": 0.462, + "1994": 0.471, + "1995": 0.48, + "1996": 0.493, + "1997": 0.508, + "1998": 0.523, + "1999": 0.538, + "2000": 0.548, + "2001": 0.563, + "2002": 0.579, + "2003": 0.567, + "2004": 0.577, + "2005": 0.578, + "2006": 0.566, + "2007": 0.565, + "2008": 0.579, + "2009": 0.573, + "2010": 0.58, + "2011": 0.601, + "2012": 0.615, + "2013": 0.636, + "2014": 0.633, + "2015": 0.645, + "2016": 0.633, + "2017": 0.635, + "2018": 0.64, + "2019": 0.654, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr105", + "Region": "Central (Asuncion, Central)", + "1990": 0.468, + "1991": 0.48, + "1992": 0.492, + "1993": 0.504, + "1994": 0.514, + "1995": 0.523, + "1996": 0.537, + "1997": 0.552, + "1998": 0.568, + "1999": 0.584, + "2000": 0.594, + "2001": 0.609, + "2002": 0.626, + "2003": 0.61, + "2004": 0.617, + "2005": 0.614, + "2006": 0.596, + "2007": 0.592, + "2008": 0.61, + "2009": 0.604, + "2010": 0.615, + "2011": 0.64, + "2012": 0.658, + "2013": 0.683, + "2014": 0.68, + "2015": 0.694, + "2016": 0.681, + "2017": 0.684, + "2018": 0.69, + "2019": 0.705, + "2020": 0.707, + "2021": 0.707 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr102", + "Region": "North-East (Caaguazu, Alto Parana, Canideyu)", + "1990": 0.405, + "1991": 0.416, + "1992": 0.427, + "1993": 0.438, + "1994": 0.447, + "1995": 0.455, + "1996": 0.468, + "1997": 0.483, + "1998": 0.498, + "1999": 0.513, + "2000": 0.522, + "2001": 0.537, + "2002": 0.553, + "2003": 0.542, + "2004": 0.554, + "2005": 0.556, + "2006": 0.547, + "2007": 0.548, + "2008": 0.56, + "2009": 0.555, + "2010": 0.56, + "2011": 0.579, + "2012": 0.591, + "2013": 0.611, + "2014": 0.609, + "2015": 0.619, + "2016": 0.608, + "2017": 0.609, + "2018": 0.614, + "2019": 0.627, + "2020": 0.629, + "2021": 0.629 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr101", + "Region": "North-West (Boqueron, Alto Paraguay, Presidente Hayes, Conception, Amambay, San pedro, Cordillera)", + "1990": 0.395, + "1991": 0.405, + "1992": 0.416, + "1993": 0.427, + "1994": 0.435, + "1995": 0.444, + "1996": 0.456, + "1997": 0.471, + "1998": 0.485, + "1999": 0.5, + "2000": 0.509, + "2001": 0.524, + "2002": 0.539, + "2003": 0.529, + "2004": 0.54, + "2005": 0.542, + "2006": 0.533, + "2007": 0.534, + "2008": 0.549, + "2009": 0.548, + "2010": 0.557, + "2011": 0.58, + "2012": 0.596, + "2013": 0.616, + "2014": 0.613, + "2015": 0.624, + "2016": 0.612, + "2017": 0.614, + "2018": 0.619, + "2019": 0.632, + "2020": 0.634, + "2021": 0.634 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr104", + "Region": "South-East (Guaira, Misiones, Paraguari, Neembucu)", + "1990": 0.396, + "1991": 0.407, + "1992": 0.417, + "1993": 0.428, + "1994": 0.437, + "1995": 0.445, + "1996": 0.457, + "1997": 0.472, + "1998": 0.486, + "1999": 0.501, + "2000": 0.51, + "2001": 0.524, + "2002": 0.54, + "2003": 0.537, + "2004": 0.555, + "2005": 0.563, + "2006": 0.559, + "2007": 0.565, + "2008": 0.573, + "2009": 0.561, + "2010": 0.562, + "2011": 0.577, + "2012": 0.584, + "2013": 0.604, + "2014": 0.601, + "2015": 0.612, + "2016": 0.601, + "2017": 0.602, + "2018": 0.607, + "2019": 0.62, + "2020": 0.622, + "2021": 0.622 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr103", + "Region": "South-West (Caazapa, Itapua)", + "1990": 0.402, + "1991": 0.413, + "1992": 0.424, + "1993": 0.435, + "1994": 0.444, + "1995": 0.453, + "1996": 0.465, + "1997": 0.481, + "1998": 0.496, + "1999": 0.511, + "2000": 0.52, + "2001": 0.535, + "2002": 0.551, + "2003": 0.54, + "2004": 0.552, + "2005": 0.554, + "2006": 0.545, + "2007": 0.546, + "2008": 0.558, + "2009": 0.554, + "2010": 0.559, + "2011": 0.578, + "2012": 0.59, + "2013": 0.609, + "2014": 0.606, + "2015": 0.616, + "2016": 0.605, + "2017": 0.606, + "2018": 0.611, + "2019": 0.624, + "2020": 0.626, + "2021": 0.626 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "National", + "GDLCODE": "PERt", + "Region": "Total", + "1990": 0.585, + "1991": 0.586, + "1992": 0.582, + "1993": 0.584, + "1994": 0.589, + "1995": 0.601, + "1996": 0.601, + "1997": 0.601, + "1998": 0.62, + "1999": 0.639, + "2000": 0.637, + "2001": 0.652, + "2002": 0.64, + "2003": 0.628, + "2004": 0.637, + "2005": 0.614, + "2006": 0.62, + "2007": 0.635, + "2008": 0.64, + "2009": 0.647, + "2010": 0.674, + "2011": 0.681, + "2012": 0.693, + "2013": 0.7, + "2014": 0.707, + "2015": 0.71, + "2016": 0.723, + "2017": 0.734, + "2018": 0.747, + "2019": 0.757, + "2020": 0.757, + "2021": 0.757 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr106", + "Region": "Central (Huancavelica, Huanuco, Junin, Pasco)", + "1990": 0.549, + "1991": 0.55, + "1992": 0.546, + "1993": 0.547, + "1994": 0.552, + "1995": 0.563, + "1996": 0.564, + "1997": 0.559, + "1998": 0.574, + "1999": 0.589, + "2000": 0.582, + "2001": 0.594, + "2002": 0.579, + "2003": 0.563, + "2004": 0.568, + "2005": 0.557, + "2006": 0.569, + "2007": 0.577, + "2008": 0.578, + "2009": 0.584, + "2010": 0.625, + "2011": 0.641, + "2012": 0.638, + "2013": 0.645, + "2014": 0.651, + "2015": 0.655, + "2016": 0.667, + "2017": 0.676, + "2018": 0.688, + "2019": 0.697, + "2020": 0.697, + "2021": 0.697 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr103", + "Region": "East (Madre de Dios, Cusco, Puno, Apurimac)", + "1990": 0.531, + "1991": 0.532, + "1992": 0.527, + "1993": 0.528, + "1994": 0.532, + "1995": 0.544, + "1996": 0.544, + "1997": 0.54, + "1998": 0.555, + "1999": 0.571, + "2000": 0.564, + "2001": 0.584, + "2002": 0.576, + "2003": 0.566, + "2004": 0.578, + "2005": 0.567, + "2006": 0.578, + "2007": 0.596, + "2008": 0.607, + "2009": 0.605, + "2010": 0.63, + "2011": 0.608, + "2012": 0.627, + "2013": 0.634, + "2014": 0.64, + "2015": 0.644, + "2016": 0.656, + "2017": 0.665, + "2018": 0.676, + "2019": 0.685, + "2020": 0.685, + "2021": 0.685 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr101", + "Region": "North (Tumbes, Piura, Lambayeque, Cajamarca, La Libertad)", + "1990": 0.499, + "1991": 0.5, + "1992": 0.496, + "1993": 0.498, + "1994": 0.502, + "1995": 0.512, + "1996": 0.513, + "1997": 0.52, + "1998": 0.544, + "1999": 0.568, + "2000": 0.573, + "2001": 0.594, + "2002": 0.59, + "2003": 0.584, + "2004": 0.599, + "2005": 0.568, + "2006": 0.563, + "2007": 0.573, + "2008": 0.575, + "2009": 0.605, + "2010": 0.63, + "2011": 0.62, + "2012": 0.63, + "2013": 0.637, + "2014": 0.643, + "2015": 0.647, + "2016": 0.658, + "2017": 0.668, + "2018": 0.68, + "2019": 0.689, + "2020": 0.689, + "2021": 0.689 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr102", + "Region": "North East (Amazonas, Loreto, San Martin, Ucayali)", + "1990": 0.544, + "1991": 0.546, + "1992": 0.541, + "1993": 0.543, + "1994": 0.547, + "1995": 0.559, + "1996": 0.559, + "1997": 0.553, + "1998": 0.565, + "1999": 0.577, + "2000": 0.569, + "2001": 0.58, + "2002": 0.566, + "2003": 0.552, + "2004": 0.557, + "2005": 0.539, + "2006": 0.545, + "2007": 0.564, + "2008": 0.577, + "2009": 0.571, + "2010": 0.579, + "2011": 0.588, + "2012": 0.61, + "2013": 0.616, + "2014": 0.622, + "2015": 0.625, + "2016": 0.637, + "2017": 0.646, + "2018": 0.657, + "2019": 0.666, + "2020": 0.666, + "2021": 0.666 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr104", + "Region": "South (Tacna, Moquegua, Arequipa, Ica, Ayacucho)", + "1990": 0.627, + "1991": 0.629, + "1992": 0.624, + "1993": 0.626, + "1994": 0.631, + "1995": 0.644, + "1996": 0.645, + "1997": 0.647, + "1998": 0.669, + "1999": 0.691, + "2000": 0.69, + "2001": 0.705, + "2002": 0.691, + "2003": 0.676, + "2004": 0.684, + "2005": 0.662, + "2006": 0.67, + "2007": 0.681, + "2008": 0.683, + "2009": 0.668, + "2010": 0.705, + "2011": 0.713, + "2012": 0.729, + "2013": 0.737, + "2014": 0.743, + "2015": 0.748, + "2016": 0.761, + "2017": 0.773, + "2018": 0.786, + "2019": 0.797, + "2020": 0.797, + "2021": 0.797 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr105", + "Region": "West (Ancash, Lima, Callao)", + "1990": 0.658, + "1991": 0.66, + "1992": 0.656, + "1993": 0.658, + "1994": 0.664, + "1995": 0.676, + "1996": 0.678, + "1997": 0.676, + "1998": 0.695, + "1999": 0.714, + "2000": 0.71, + "2001": 0.724, + "2002": 0.71, + "2003": 0.695, + "2004": 0.702, + "2005": 0.677, + "2006": 0.684, + "2007": 0.702, + "2008": 0.709, + "2009": 0.711, + "2010": 0.741, + "2011": 0.759, + "2012": 0.77, + "2013": 0.778, + "2014": 0.784, + "2015": 0.788, + "2016": 0.803, + "2017": 0.815, + "2018": 0.83, + "2019": 0.841, + "2020": 0.841, + "2021": 0.841 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "National", + "GDLCODE": "PHLt", + "Region": "Total", + "1990": 0.539, + "1991": 0.54, + "1992": 0.542, + "1993": 0.543, + "1994": 0.544, + "1995": 0.545, + "1996": 0.556, + "1997": 0.559, + "1998": 0.561, + "1999": 0.567, + "2000": 0.568, + "2001": 0.577, + "2002": 0.592, + "2003": 0.601, + "2004": 0.611, + "2005": 0.609, + "2006": 0.605, + "2007": 0.61, + "2008": 0.615, + "2009": 0.609, + "2010": 0.62, + "2011": 0.63, + "2012": 0.639, + "2013": 0.649, + "2014": 0.65, + "2015": 0.649, + "2016": 0.644, + "2017": 0.647, + "2018": 0.657, + "2019": 0.671, + "2020": 0.664, + "2021": 0.664 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr117", + "Region": "ARMM", + "1990": 0.43, + "1991": 0.431, + "1992": 0.432, + "1993": 0.432, + "1994": 0.433, + "1995": 0.434, + "1996": 0.443, + "1997": 0.445, + "1998": 0.448, + "1999": 0.451, + "2000": 0.45, + "2001": 0.455, + "2002": 0.464, + "2003": 0.469, + "2004": 0.474, + "2005": 0.47, + "2006": 0.465, + "2007": 0.468, + "2008": 0.47, + "2009": 0.464, + "2010": 0.471, + "2011": 0.478, + "2012": 0.484, + "2013": 0.491, + "2014": 0.497, + "2015": 0.501, + "2016": 0.501, + "2017": 0.508, + "2018": 0.515, + "2019": 0.525, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr102", + "Region": "Cordillera Admin Region", + "1990": 0.514, + "1991": 0.515, + "1992": 0.517, + "1993": 0.517, + "1994": 0.518, + "1995": 0.519, + "1996": 0.53, + "1997": 0.533, + "1998": 0.535, + "1999": 0.555, + "2000": 0.57, + "2001": 0.593, + "2002": 0.622, + "2003": 0.645, + "2004": 0.65, + "2005": 0.642, + "2006": 0.633, + "2007": 0.634, + "2008": 0.635, + "2009": 0.633, + "2010": 0.648, + "2011": 0.663, + "2012": 0.678, + "2013": 0.692, + "2014": 0.689, + "2015": 0.684, + "2016": 0.674, + "2017": 0.673, + "2018": 0.683, + "2019": 0.698, + "2020": 0.69, + "2021": 0.69 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr103", + "Region": "I-Ilocos", + "1990": 0.548, + "1991": 0.549, + "1992": 0.551, + "1993": 0.552, + "1994": 0.553, + "1995": 0.554, + "1996": 0.565, + "1997": 0.568, + "1998": 0.571, + "1999": 0.576, + "2000": 0.577, + "2001": 0.586, + "2002": 0.601, + "2003": 0.61, + "2004": 0.622, + "2005": 0.623, + "2006": 0.622, + "2007": 0.63, + "2008": 0.638, + "2009": 0.631, + "2010": 0.641, + "2011": 0.65, + "2012": 0.659, + "2013": 0.668, + "2014": 0.666, + "2015": 0.662, + "2016": 0.654, + "2017": 0.654, + "2018": 0.665, + "2019": 0.679, + "2020": 0.672, + "2021": 0.672 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr104", + "Region": "II-Cagayan Valley", + "1990": 0.566, + "1991": 0.567, + "1992": 0.569, + "1993": 0.57, + "1994": 0.571, + "1995": 0.572, + "1996": 0.584, + "1997": 0.587, + "1998": 0.589, + "1999": 0.587, + "2000": 0.58, + "2001": 0.581, + "2002": 0.587, + "2003": 0.587, + "2004": 0.599, + "2005": 0.599, + "2006": 0.599, + "2007": 0.607, + "2008": 0.614, + "2009": 0.606, + "2010": 0.613, + "2011": 0.619, + "2012": 0.625, + "2013": 0.632, + "2014": 0.631, + "2015": 0.628, + "2016": 0.62, + "2017": 0.621, + "2018": 0.63, + "2019": 0.644, + "2020": 0.637, + "2021": 0.637 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr105", + "Region": "III-Central Luzon", + "1990": 0.503, + "1991": 0.504, + "1992": 0.506, + "1993": 0.506, + "1994": 0.507, + "1995": 0.508, + "1996": 0.519, + "1997": 0.521, + "1998": 0.524, + "1999": 0.538, + "2000": 0.547, + "2001": 0.564, + "2002": 0.586, + "2003": 0.604, + "2004": 0.612, + "2005": 0.608, + "2006": 0.602, + "2007": 0.605, + "2008": 0.609, + "2009": 0.603, + "2010": 0.613, + "2011": 0.623, + "2012": 0.632, + "2013": 0.641, + "2014": 0.642, + "2015": 0.64, + "2016": 0.634, + "2017": 0.635, + "2018": 0.645, + "2019": 0.659, + "2020": 0.652, + "2021": 0.652 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr106", + "Region": "IVA-CALABARZON", + "1990": 0.535, + "1991": 0.536, + "1992": 0.538, + "1993": 0.539, + "1994": 0.54, + "1995": 0.541, + "1996": 0.552, + "1997": 0.555, + "1998": 0.558, + "1999": 0.571, + "2000": 0.579, + "2001": 0.595, + "2002": 0.617, + "2003": 0.635, + "2004": 0.643, + "2005": 0.639, + "2006": 0.634, + "2007": 0.638, + "2008": 0.641, + "2009": 0.635, + "2010": 0.645, + "2011": 0.654, + "2012": 0.663, + "2013": 0.672, + "2014": 0.672, + "2015": 0.669, + "2016": 0.662, + "2017": 0.663, + "2018": 0.673, + "2019": 0.688, + "2020": 0.681, + "2021": 0.681 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr107", + "Region": "IVB-MIMAROPA", + "1990": 0.5, + "1991": 0.501, + "1992": 0.502, + "1993": 0.503, + "1994": 0.504, + "1995": 0.505, + "1996": 0.516, + "1997": 0.518, + "1998": 0.521, + "1999": 0.523, + "2000": 0.522, + "2001": 0.527, + "2002": 0.537, + "2003": 0.543, + "2004": 0.551, + "2005": 0.548, + "2006": 0.545, + "2007": 0.549, + "2008": 0.554, + "2009": 0.549, + "2010": 0.56, + "2011": 0.57, + "2012": 0.58, + "2013": 0.59, + "2014": 0.599, + "2015": 0.605, + "2016": 0.606, + "2017": 0.615, + "2018": 0.624, + "2019": 0.638, + "2020": 0.63, + "2021": 0.63 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr112", + "Region": "IX-Zamboanga Peninsula", + "1990": 0.532, + "1991": 0.534, + "1992": 0.535, + "1993": 0.536, + "1994": 0.537, + "1995": 0.538, + "1996": 0.549, + "1997": 0.552, + "1998": 0.555, + "1999": 0.553, + "2000": 0.547, + "2001": 0.548, + "2002": 0.554, + "2003": 0.555, + "2004": 0.567, + "2005": 0.57, + "2006": 0.57, + "2007": 0.579, + "2008": 0.588, + "2009": 0.581, + "2010": 0.589, + "2011": 0.596, + "2012": 0.603, + "2013": 0.61, + "2014": 0.61, + "2015": 0.608, + "2016": 0.602, + "2017": 0.604, + "2018": 0.613, + "2019": 0.626, + "2020": 0.618, + "2021": 0.618 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr101", + "Region": "National Capital Region", + "1990": 0.545, + "1991": 0.546, + "1992": 0.548, + "1993": 0.549, + "1994": 0.55, + "1995": 0.551, + "1996": 0.562, + "1997": 0.565, + "1998": 0.568, + "1999": 0.589, + "2000": 0.605, + "2001": 0.631, + "2002": 0.663, + "2003": 0.69, + "2004": 0.699, + "2005": 0.694, + "2006": 0.687, + "2007": 0.689, + "2008": 0.692, + "2009": 0.685, + "2010": 0.694, + "2011": 0.703, + "2012": 0.711, + "2013": 0.72, + "2014": 0.721, + "2015": 0.72, + "2016": 0.715, + "2017": 0.717, + "2018": 0.729, + "2019": 0.745, + "2020": 0.738, + "2021": 0.738 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr108", + "Region": "V-Bicol", + "1990": 0.457, + "1991": 0.458, + "1992": 0.46, + "1993": 0.46, + "1994": 0.461, + "1995": 0.462, + "1996": 0.472, + "1997": 0.474, + "1998": 0.476, + "1999": 0.497, + "2000": 0.513, + "2001": 0.537, + "2002": 0.566, + "2003": 0.59, + "2004": 0.599, + "2005": 0.597, + "2006": 0.593, + "2007": 0.597, + "2008": 0.602, + "2009": 0.597, + "2010": 0.608, + "2011": 0.618, + "2012": 0.628, + "2013": 0.638, + "2014": 0.64, + "2015": 0.639, + "2016": 0.634, + "2017": 0.637, + "2018": 0.646, + "2019": 0.66, + "2020": 0.653, + "2021": 0.653 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr109", + "Region": "VI-Western Visayas", + "1990": 0.485, + "1991": 0.486, + "1992": 0.488, + "1993": 0.489, + "1994": 0.489, + "1995": 0.49, + "1996": 0.501, + "1997": 0.503, + "1998": 0.505, + "1999": 0.518, + "2000": 0.526, + "2001": 0.541, + "2002": 0.562, + "2003": 0.578, + "2004": 0.59, + "2005": 0.591, + "2006": 0.591, + "2007": 0.599, + "2008": 0.607, + "2009": 0.6, + "2010": 0.61, + "2011": 0.618, + "2012": 0.627, + "2013": 0.636, + "2014": 0.636, + "2015": 0.635, + "2016": 0.629, + "2017": 0.631, + "2018": 0.64, + "2019": 0.654, + "2020": 0.647, + "2021": 0.647 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr110", + "Region": "VII-Central Visayas", + "1990": 0.516, + "1991": 0.517, + "1992": 0.519, + "1993": 0.52, + "1994": 0.521, + "1995": 0.522, + "1996": 0.533, + "1997": 0.535, + "1998": 0.538, + "1999": 0.545, + "2000": 0.549, + "2001": 0.559, + "2002": 0.576, + "2003": 0.587, + "2004": 0.595, + "2005": 0.591, + "2006": 0.586, + "2007": 0.59, + "2008": 0.594, + "2009": 0.589, + "2010": 0.6, + "2011": 0.61, + "2012": 0.62, + "2013": 0.63, + "2014": 0.631, + "2015": 0.63, + "2016": 0.625, + "2017": 0.627, + "2018": 0.637, + "2019": 0.65, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr111", + "Region": "VIII-Eastern Visayas", + "1990": 0.507, + "1991": 0.508, + "1992": 0.51, + "1993": 0.511, + "1994": 0.512, + "1995": 0.513, + "1996": 0.523, + "1997": 0.526, + "1998": 0.528, + "1999": 0.529, + "2000": 0.526, + "2001": 0.529, + "2002": 0.537, + "2003": 0.54, + "2004": 0.556, + "2005": 0.562, + "2006": 0.566, + "2007": 0.579, + "2008": 0.591, + "2009": 0.587, + "2010": 0.6, + "2011": 0.611, + "2012": 0.623, + "2013": 0.634, + "2014": 0.636, + "2015": 0.636, + "2016": 0.631, + "2017": 0.634, + "2018": 0.643, + "2019": 0.657, + "2020": 0.649, + "2021": 0.649 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr113", + "Region": "X-Northern Mindanao", + "1990": 0.634, + "1991": 0.635, + "1992": 0.637, + "1993": 0.639, + "1994": 0.64, + "1995": 0.641, + "1996": 0.654, + "1997": 0.657, + "1998": 0.66, + "1999": 0.644, + "2000": 0.623, + "2001": 0.61, + "2002": 0.603, + "2003": 0.589, + "2004": 0.597, + "2005": 0.594, + "2006": 0.59, + "2007": 0.594, + "2008": 0.598, + "2009": 0.59, + "2010": 0.596, + "2011": 0.602, + "2012": 0.608, + "2013": 0.614, + "2014": 0.621, + "2015": 0.625, + "2016": 0.625, + "2017": 0.631, + "2018": 0.641, + "2019": 0.655, + "2020": 0.648, + "2021": 0.648 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr114", + "Region": "XI-Davao", + "1990": 0.522, + "1991": 0.523, + "1992": 0.524, + "1993": 0.525, + "1994": 0.526, + "1995": 0.527, + "1996": 0.538, + "1997": 0.541, + "1998": 0.543, + "1999": 0.547, + "2000": 0.547, + "2001": 0.554, + "2002": 0.566, + "2003": 0.573, + "2004": 0.582, + "2005": 0.579, + "2006": 0.574, + "2007": 0.578, + "2008": 0.582, + "2009": 0.582, + "2010": 0.597, + "2011": 0.612, + "2012": 0.628, + "2013": 0.643, + "2014": 0.644, + "2015": 0.644, + "2016": 0.639, + "2017": 0.643, + "2018": 0.652, + "2019": 0.666, + "2020": 0.658, + "2021": 0.658 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr115", + "Region": "XII-SOCCSKSARGEN", + "1990": 0.401, + "1991": 0.402, + "1992": 0.403, + "1993": 0.404, + "1994": 0.404, + "1995": 0.405, + "1996": 0.414, + "1997": 0.416, + "1998": 0.418, + "1999": 0.444, + "2000": 0.467, + "2001": 0.495, + "2002": 0.53, + "2003": 0.56, + "2004": 0.567, + "2005": 0.563, + "2006": 0.558, + "2007": 0.561, + "2008": 0.564, + "2009": 0.56, + "2010": 0.571, + "2011": 0.582, + "2012": 0.592, + "2013": 0.603, + "2014": 0.605, + "2015": 0.605, + "2016": 0.6, + "2017": 0.603, + "2018": 0.612, + "2019": 0.625, + "2020": 0.618, + "2021": 0.618 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr116", + "Region": "XIII-Caraga", + "1990": 0.518, + "1991": 0.52, + "1992": 0.521, + "1993": 0.522, + "1994": 0.523, + "1995": 0.524, + "1996": 0.535, + "1997": 0.537, + "1998": 0.54, + "1999": 0.546, + "2000": 0.547, + "2001": 0.556, + "2002": 0.57, + "2003": 0.579, + "2004": 0.586, + "2005": 0.582, + "2006": 0.576, + "2007": 0.579, + "2008": 0.582, + "2009": 0.578, + "2010": 0.59, + "2011": 0.6, + "2012": 0.611, + "2013": 0.622, + "2014": 0.625, + "2015": 0.625, + "2016": 0.621, + "2017": 0.625, + "2018": 0.635, + "2019": 0.648, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "National", + "GDLCODE": "POLt", + "Region": "Total", + "1990": 0.662, + "1991": 0.67, + "1992": 0.675, + "1993": 0.699, + "1994": 0.711, + "1995": 0.716, + "1996": 0.726, + "1997": 0.745, + "1998": 0.761, + "1999": 0.776, + "2000": 0.784, + "2001": 0.795, + "2002": 0.808, + "2003": 0.815, + "2004": 0.801, + "2005": 0.81, + "2006": 0.814, + "2007": 0.818, + "2008": 0.822, + "2009": 0.83, + "2010": 0.836, + "2011": 0.841, + "2012": 0.852, + "2013": 0.879, + "2014": 0.872, + "2015": 0.876, + "2016": 0.879, + "2017": 0.882, + "2018": 0.881, + "2019": 0.883, + "2020": 0.884, + "2021": 0.884 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr112", + "Region": "Dolnoslaskie", + "1990": 0.665, + "1991": 0.672, + "1992": 0.678, + "1993": 0.702, + "1994": 0.714, + "1995": 0.719, + "1996": 0.729, + "1997": 0.748, + "1998": 0.764, + "1999": 0.779, + "2000": 0.787, + "2001": 0.802, + "2002": 0.813, + "2003": 0.819, + "2004": 0.806, + "2005": 0.82, + "2006": 0.824, + "2007": 0.826, + "2008": 0.827, + "2009": 0.833, + "2010": 0.837, + "2011": 0.845, + "2012": 0.855, + "2013": 0.884, + "2014": 0.883, + "2015": 0.882, + "2016": 0.886, + "2017": 0.89, + "2018": 0.891, + "2019": 0.899, + "2020": 0.9, + "2021": 0.9 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr114", + "Region": "Kujawsko-Pomorskie", + "1990": 0.658, + "1991": 0.665, + "1992": 0.671, + "1993": 0.695, + "1994": 0.707, + "1995": 0.712, + "1996": 0.722, + "1997": 0.74, + "1998": 0.756, + "1999": 0.771, + "2000": 0.779, + "2001": 0.787, + "2002": 0.801, + "2003": 0.808, + "2004": 0.789, + "2005": 0.796, + "2006": 0.792, + "2007": 0.794, + "2008": 0.804, + "2009": 0.809, + "2010": 0.816, + "2011": 0.828, + "2012": 0.837, + "2013": 0.863, + "2014": 0.851, + "2015": 0.856, + "2016": 0.863, + "2017": 0.867, + "2018": 0.864, + "2019": 0.857, + "2020": 0.859, + "2021": 0.859 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr101", + "Region": "Lodzkie", + "1990": 0.665, + "1991": 0.672, + "1992": 0.678, + "1993": 0.702, + "1994": 0.714, + "1995": 0.719, + "1996": 0.729, + "1997": 0.748, + "1998": 0.764, + "1999": 0.779, + "2000": 0.787, + "2001": 0.793, + "2002": 0.803, + "2003": 0.808, + "2004": 0.796, + "2005": 0.808, + "2006": 0.812, + "2007": 0.817, + "2008": 0.822, + "2009": 0.826, + "2010": 0.832, + "2011": 0.838, + "2012": 0.852, + "2013": 0.874, + "2014": 0.871, + "2015": 0.878, + "2016": 0.88, + "2017": 0.877, + "2018": 0.88, + "2019": 0.877, + "2020": 0.878, + "2021": 0.878 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr105", + "Region": "Lubelskie", + "1990": 0.659, + "1991": 0.666, + "1992": 0.672, + "1993": 0.696, + "1994": 0.708, + "1995": 0.713, + "1996": 0.723, + "1997": 0.741, + "1998": 0.758, + "1999": 0.772, + "2000": 0.78, + "2001": 0.793, + "2002": 0.808, + "2003": 0.815, + "2004": 0.802, + "2005": 0.813, + "2006": 0.813, + "2007": 0.817, + "2008": 0.823, + "2009": 0.832, + "2010": 0.833, + "2011": 0.839, + "2012": 0.854, + "2013": 0.882, + "2014": 0.876, + "2015": 0.878, + "2016": 0.876, + "2017": 0.874, + "2018": 0.877, + "2019": 0.884, + "2020": 0.886, + "2021": 0.886 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr111", + "Region": "Lubuskie", + "1990": 0.663, + "1991": 0.67, + "1992": 0.676, + "1993": 0.7, + "1994": 0.712, + "1995": 0.717, + "1996": 0.727, + "1997": 0.746, + "1998": 0.762, + "1999": 0.777, + "2000": 0.785, + "2001": 0.797, + "2002": 0.807, + "2003": 0.812, + "2004": 0.801, + "2005": 0.806, + "2006": 0.806, + "2007": 0.811, + "2008": 0.813, + "2009": 0.816, + "2010": 0.825, + "2011": 0.832, + "2012": 0.834, + "2013": 0.864, + "2014": 0.863, + "2015": 0.862, + "2016": 0.862, + "2017": 0.864, + "2018": 0.862, + "2019": 0.862, + "2020": 0.864, + "2021": 0.864 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr103", + "Region": "Malopolskie", + "1990": 0.674, + "1991": 0.682, + "1992": 0.688, + "1993": 0.712, + "1994": 0.724, + "1995": 0.729, + "1996": 0.74, + "1997": 0.759, + "1998": 0.775, + "1999": 0.79, + "2000": 0.798, + "2001": 0.808, + "2002": 0.82, + "2003": 0.825, + "2004": 0.81, + "2005": 0.816, + "2006": 0.827, + "2007": 0.831, + "2008": 0.833, + "2009": 0.841, + "2010": 0.85, + "2011": 0.855, + "2012": 0.866, + "2013": 0.893, + "2014": 0.884, + "2015": 0.89, + "2016": 0.895, + "2017": 0.905, + "2018": 0.901, + "2019": 0.899, + "2020": 0.901, + "2021": 0.901 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr102", + "Region": "Mazowieckie", + "1990": 0.679, + "1991": 0.687, + "1992": 0.692, + "1993": 0.717, + "1994": 0.73, + "1995": 0.735, + "1996": 0.745, + "1997": 0.764, + "1998": 0.78, + "1999": 0.796, + "2000": 0.804, + "2001": 0.815, + "2002": 0.827, + "2003": 0.838, + "2004": 0.829, + "2005": 0.842, + "2006": 0.85, + "2007": 0.859, + "2008": 0.859, + "2009": 0.867, + "2010": 0.877, + "2011": 0.881, + "2012": 0.895, + "2013": 0.924, + "2014": 0.922, + "2015": 0.922, + "2016": 0.924, + "2017": 0.93, + "2018": 0.931, + "2019": 0.933, + "2020": 0.934, + "2021": 0.934 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr113", + "Region": "Opolskie", + "1990": 0.662, + "1991": 0.669, + "1992": 0.675, + "1993": 0.699, + "1994": 0.711, + "1995": 0.716, + "1996": 0.726, + "1997": 0.744, + "1998": 0.76, + "1999": 0.775, + "2000": 0.783, + "2001": 0.794, + "2002": 0.807, + "2003": 0.814, + "2004": 0.796, + "2005": 0.806, + "2006": 0.807, + "2007": 0.812, + "2008": 0.822, + "2009": 0.818, + "2010": 0.826, + "2011": 0.829, + "2012": 0.842, + "2013": 0.868, + "2014": 0.864, + "2015": 0.872, + "2016": 0.872, + "2017": 0.875, + "2018": 0.872, + "2019": 0.872, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr106", + "Region": "Podkarpackie", + "1990": 0.663, + "1991": 0.671, + "1992": 0.676, + "1993": 0.7, + "1994": 0.713, + "1995": 0.718, + "1996": 0.728, + "1997": 0.746, + "1998": 0.762, + "1999": 0.777, + "2000": 0.785, + "2001": 0.792, + "2002": 0.802, + "2003": 0.812, + "2004": 0.795, + "2005": 0.803, + "2006": 0.808, + "2007": 0.814, + "2008": 0.822, + "2009": 0.835, + "2010": 0.838, + "2011": 0.836, + "2012": 0.848, + "2013": 0.876, + "2014": 0.867, + "2015": 0.874, + "2016": 0.885, + "2017": 0.886, + "2018": 0.881, + "2019": 0.882, + "2020": 0.883, + "2021": 0.883 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr108", + "Region": "Podlaskie", + "1990": 0.656, + "1991": 0.664, + "1992": 0.669, + "1993": 0.693, + "1994": 0.705, + "1995": 0.71, + "1996": 0.72, + "1997": 0.738, + "1998": 0.754, + "1999": 0.769, + "2000": 0.777, + "2001": 0.787, + "2002": 0.803, + "2003": 0.811, + "2004": 0.793, + "2005": 0.801, + "2006": 0.813, + "2007": 0.816, + "2008": 0.817, + "2009": 0.825, + "2010": 0.834, + "2011": 0.844, + "2012": 0.852, + "2013": 0.88, + "2014": 0.876, + "2015": 0.878, + "2016": 0.883, + "2017": 0.886, + "2018": 0.888, + "2019": 0.889, + "2020": 0.89, + "2021": 0.89 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr116", + "Region": "Pomorskie", + "1990": 0.674, + "1991": 0.681, + "1992": 0.687, + "1993": 0.711, + "1994": 0.724, + "1995": 0.729, + "1996": 0.739, + "1997": 0.758, + "1998": 0.774, + "1999": 0.789, + "2000": 0.797, + "2001": 0.805, + "2002": 0.811, + "2003": 0.821, + "2004": 0.806, + "2005": 0.812, + "2006": 0.816, + "2007": 0.823, + "2008": 0.827, + "2009": 0.833, + "2010": 0.841, + "2011": 0.847, + "2012": 0.861, + "2013": 0.886, + "2014": 0.874, + "2015": 0.882, + "2016": 0.892, + "2017": 0.898, + "2018": 0.894, + "2019": 0.898, + "2020": 0.9, + "2021": 0.9 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr104", + "Region": "Slaskie", + "1990": 0.658, + "1991": 0.665, + "1992": 0.671, + "1993": 0.695, + "1994": 0.707, + "1995": 0.712, + "1996": 0.722, + "1997": 0.74, + "1998": 0.756, + "1999": 0.771, + "2000": 0.779, + "2001": 0.796, + "2002": 0.812, + "2003": 0.822, + "2004": 0.808, + "2005": 0.817, + "2006": 0.821, + "2007": 0.823, + "2008": 0.83, + "2009": 0.842, + "2010": 0.846, + "2011": 0.853, + "2012": 0.862, + "2013": 0.888, + "2014": 0.879, + "2015": 0.882, + "2016": 0.886, + "2017": 0.887, + "2018": 0.888, + "2019": 0.891, + "2020": 0.893, + "2021": 0.893 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr107", + "Region": "Swietokrzyskie", + "1990": 0.652, + "1991": 0.659, + "1992": 0.664, + "1993": 0.688, + "1994": 0.7, + "1995": 0.705, + "1996": 0.715, + "1997": 0.733, + "1998": 0.749, + "1999": 0.763, + "2000": 0.771, + "2001": 0.784, + "2002": 0.807, + "2003": 0.819, + "2004": 0.803, + "2005": 0.807, + "2006": 0.802, + "2007": 0.81, + "2008": 0.821, + "2009": 0.832, + "2010": 0.835, + "2011": 0.837, + "2012": 0.852, + "2013": 0.884, + "2014": 0.871, + "2015": 0.869, + "2016": 0.878, + "2017": 0.878, + "2018": 0.879, + "2019": 0.882, + "2020": 0.883, + "2021": 0.883 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr115", + "Region": "Warminsko-Mazurskie", + "1990": 0.646, + "1991": 0.653, + "1992": 0.659, + "1993": 0.682, + "1994": 0.694, + "1995": 0.699, + "1996": 0.709, + "1997": 0.727, + "1998": 0.743, + "1999": 0.757, + "2000": 0.765, + "2001": 0.777, + "2002": 0.789, + "2003": 0.795, + "2004": 0.783, + "2005": 0.791, + "2006": 0.795, + "2007": 0.8, + "2008": 0.8, + "2009": 0.817, + "2010": 0.817, + "2011": 0.818, + "2012": 0.822, + "2013": 0.851, + "2014": 0.846, + "2015": 0.85, + "2016": 0.848, + "2017": 0.85, + "2018": 0.849, + "2019": 0.845, + "2020": 0.847, + "2021": 0.847 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr109", + "Region": "Wielkopolskie", + "1990": 0.661, + "1991": 0.669, + "1992": 0.674, + "1993": 0.698, + "1994": 0.71, + "1995": 0.715, + "1996": 0.725, + "1997": 0.744, + "1998": 0.76, + "1999": 0.775, + "2000": 0.783, + "2001": 0.794, + "2002": 0.806, + "2003": 0.815, + "2004": 0.8, + "2005": 0.812, + "2006": 0.817, + "2007": 0.818, + "2008": 0.823, + "2009": 0.821, + "2010": 0.835, + "2011": 0.843, + "2012": 0.853, + "2013": 0.879, + "2014": 0.873, + "2015": 0.877, + "2016": 0.875, + "2017": 0.873, + "2018": 0.874, + "2019": 0.878, + "2020": 0.879, + "2021": 0.879 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr110", + "Region": "Zachodniopomorskie", + "1990": 0.662, + "1991": 0.67, + "1992": 0.675, + "1993": 0.699, + "1994": 0.712, + "1995": 0.717, + "1996": 0.727, + "1997": 0.745, + "1998": 0.761, + "1999": 0.776, + "2000": 0.784, + "2001": 0.793, + "2002": 0.802, + "2003": 0.807, + "2004": 0.799, + "2005": 0.805, + "2006": 0.812, + "2007": 0.823, + "2008": 0.82, + "2009": 0.827, + "2010": 0.83, + "2011": 0.831, + "2012": 0.845, + "2013": 0.872, + "2014": 0.861, + "2015": 0.862, + "2016": 0.867, + "2017": 0.87, + "2018": 0.874, + "2019": 0.872, + "2020": 0.873, + "2021": 0.873 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "National", + "GDLCODE": "PRTt", + "Region": "Total", + "1990": 0.503, + "1991": 0.521, + "1992": 0.549, + "1993": 0.586, + "1994": 0.605, + "1995": 0.62, + "1996": 0.639, + "1997": 0.651, + "1998": 0.663, + "1999": 0.653, + "2000": 0.662, + "2001": 0.671, + "2002": 0.671, + "2003": 0.679, + "2004": 0.674, + "2005": 0.678, + "2006": 0.682, + "2007": 0.693, + "2008": 0.703, + "2009": 0.709, + "2010": 0.716, + "2011": 0.726, + "2012": 0.736, + "2013": 0.754, + "2014": 0.755, + "2015": 0.756, + "2016": 0.759, + "2017": 0.767, + "2018": 0.769, + "2019": 0.78, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr105", + "Region": "Alentejo", + "1990": 0.477, + "1991": 0.495, + "1992": 0.521, + "1993": 0.556, + "1994": 0.574, + "1995": 0.589, + "1996": 0.606, + "1997": 0.618, + "1998": 0.629, + "1999": 0.62, + "2000": 0.629, + "2001": 0.636, + "2002": 0.639, + "2003": 0.642, + "2004": 0.638, + "2005": 0.643, + "2006": 0.645, + "2007": 0.659, + "2008": 0.67, + "2009": 0.673, + "2010": 0.682, + "2011": 0.69, + "2012": 0.697, + "2013": 0.715, + "2014": 0.711, + "2015": 0.718, + "2016": 0.722, + "2017": 0.731, + "2018": 0.735, + "2019": 0.743, + "2020": 0.751, + "2021": 0.751 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr102", + "Region": "Algarve", + "1990": 0.48, + "1991": 0.498, + "1992": 0.524, + "1993": 0.56, + "1994": 0.578, + "1995": 0.592, + "1996": 0.61, + "1997": 0.622, + "1998": 0.633, + "1999": 0.624, + "2000": 0.633, + "2001": 0.639, + "2002": 0.644, + "2003": 0.653, + "2004": 0.655, + "2005": 0.66, + "2006": 0.661, + "2007": 0.666, + "2008": 0.679, + "2009": 0.689, + "2010": 0.696, + "2011": 0.704, + "2012": 0.715, + "2013": 0.731, + "2014": 0.724, + "2015": 0.716, + "2016": 0.717, + "2017": 0.728, + "2018": 0.727, + "2019": 0.734, + "2020": 0.742, + "2021": 0.742 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr104", + "Region": "Area Metropolitana de Lisboa", + "1990": 0.542, + "1991": 0.561, + "1992": 0.591, + "1993": 0.632, + "1994": 0.653, + "1995": 0.669, + "1996": 0.689, + "1997": 0.702, + "1998": 0.715, + "1999": 0.704, + "2000": 0.714, + "2001": 0.723, + "2002": 0.723, + "2003": 0.735, + "2004": 0.73, + "2005": 0.734, + "2006": 0.737, + "2007": 0.749, + "2008": 0.759, + "2009": 0.766, + "2010": 0.774, + "2011": 0.783, + "2012": 0.792, + "2013": 0.81, + "2014": 0.818, + "2015": 0.82, + "2016": 0.82, + "2017": 0.827, + "2018": 0.825, + "2019": 0.834, + "2020": 0.843, + "2021": 0.843 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr103", + "Region": "Centro", + "1990": 0.501, + "1991": 0.519, + "1992": 0.547, + "1993": 0.585, + "1994": 0.604, + "1995": 0.619, + "1996": 0.637, + "1997": 0.649, + "1998": 0.661, + "1999": 0.651, + "2000": 0.66, + "2001": 0.669, + "2002": 0.669, + "2003": 0.678, + "2004": 0.672, + "2005": 0.674, + "2006": 0.68, + "2007": 0.691, + "2008": 0.698, + "2009": 0.703, + "2010": 0.711, + "2011": 0.723, + "2012": 0.735, + "2013": 0.752, + "2014": 0.751, + "2015": 0.754, + "2016": 0.756, + "2017": 0.761, + "2018": 0.765, + "2019": 0.775, + "2020": 0.783, + "2021": 0.783 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr101", + "Region": "Norte", + "1990": 0.489, + "1991": 0.507, + "1992": 0.534, + "1993": 0.571, + "1994": 0.589, + "1995": 0.604, + "1996": 0.622, + "1997": 0.634, + "1998": 0.645, + "1999": 0.636, + "2000": 0.645, + "2001": 0.653, + "2002": 0.653, + "2003": 0.659, + "2004": 0.654, + "2005": 0.657, + "2006": 0.662, + "2007": 0.673, + "2008": 0.683, + "2009": 0.689, + "2010": 0.695, + "2011": 0.706, + "2012": 0.715, + "2013": 0.731, + "2014": 0.73, + "2015": 0.732, + "2016": 0.736, + "2017": 0.746, + "2018": 0.75, + "2019": 0.759, + "2020": 0.767, + "2021": 0.767 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr107", + "Region": "Regiao Autonoma da Madeira", + "1990": 0.452, + "1991": 0.468, + "1992": 0.493, + "1993": 0.526, + "1994": 0.543, + "1995": 0.557, + "1996": 0.573, + "1997": 0.584, + "1998": 0.595, + "1999": 0.587, + "2000": 0.595, + "2001": 0.603, + "2002": 0.605, + "2003": 0.615, + "2004": 0.613, + "2005": 0.616, + "2006": 0.618, + "2007": 0.631, + "2008": 0.641, + "2009": 0.646, + "2010": 0.651, + "2011": 0.66, + "2012": 0.667, + "2013": 0.684, + "2014": 0.679, + "2015": 0.677, + "2016": 0.681, + "2017": 0.691, + "2018": 0.693, + "2019": 0.7, + "2020": 0.708, + "2021": 0.708 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr106", + "Region": "Regiao Autonoma dos Acores", + "1990": 0.454, + "1991": 0.47, + "1992": 0.495, + "1993": 0.528, + "1994": 0.545, + "1995": 0.559, + "1996": 0.576, + "1997": 0.587, + "1998": 0.598, + "1999": 0.589, + "2000": 0.598, + "2001": 0.606, + "2002": 0.604, + "2003": 0.61, + "2004": 0.605, + "2005": 0.61, + "2006": 0.613, + "2007": 0.621, + "2008": 0.628, + "2009": 0.635, + "2010": 0.642, + "2011": 0.647, + "2012": 0.658, + "2013": 0.67, + "2014": 0.673, + "2015": 0.678, + "2016": 0.677, + "2017": 0.679, + "2018": 0.679, + "2019": 0.682, + "2020": 0.689, + "2021": 0.689 + }, + { + "Country": "Qatar", + "Continent": "Asia/Pacific", + "ISO_Code": "QAT", + "Level": "National", + "GDLCODE": "QATt", + "Region": "Total", + "1990": 0.543, + "1991": 0.538, + "1992": 0.533, + "1993": 0.548, + "1994": 0.563, + "1995": 0.574, + "1996": 0.585, + "1997": 0.596, + "1998": 0.606, + "1999": 0.612, + "2000": 0.61, + "2001": 0.609, + "2002": 0.622, + "2003": 0.642, + "2004": 0.646, + "2005": 0.656, + "2006": 0.644, + "2007": 0.662, + "2008": 0.67, + "2009": 0.661, + "2010": 0.645, + "2011": 0.663, + "2012": 0.625, + "2013": 0.634, + "2014": 0.642, + "2015": 0.656, + "2016": 0.662, + "2017": 0.655, + "2018": 0.663, + "2019": 0.675, + "2020": 0.684, + "2021": 0.684 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "National", + "GDLCODE": "ROUt", + "Region": "Total", + "1990": 0.614, + "1991": 0.592, + "1992": 0.583, + "1993": 0.581, + "1994": 0.582, + "1995": 0.589, + "1996": 0.605, + "1997": 0.612, + "1998": 0.619, + "1999": 0.633, + "2000": 0.639, + "2001": 0.65, + "2002": 0.667, + "2003": 0.685, + "2004": 0.706, + "2005": 0.72, + "2006": 0.737, + "2007": 0.759, + "2008": 0.782, + "2009": 0.792, + "2010": 0.79, + "2011": 0.784, + "2012": 0.771, + "2013": 0.773, + "2014": 0.768, + "2015": 0.773, + "2016": 0.767, + "2017": 0.768, + "2018": 0.77, + "2019": 0.771, + "2020": 0.771, + "2021": 0.771 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr108", + "Region": "Bucuresti", + "1990": 0.714, + "1991": 0.686, + "1992": 0.675, + "1993": 0.672, + "1994": 0.673, + "1995": 0.681, + "1996": 0.701, + "1997": 0.709, + "1998": 0.716, + "1999": 0.733, + "2000": 0.74, + "2001": 0.752, + "2002": 0.773, + "2003": 0.796, + "2004": 0.822, + "2005": 0.839, + "2006": 0.86, + "2007": 0.885, + "2008": 0.892, + "2009": 0.893, + "2010": 0.895, + "2011": 0.904, + "2012": 0.903, + "2013": 0.906, + "2014": 0.907, + "2015": 0.904, + "2016": 0.91, + "2017": 0.914, + "2018": 0.918, + "2019": 0.924, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr107", + "Region": "Centru", + "1990": 0.609, + "1991": 0.588, + "1992": 0.579, + "1993": 0.577, + "1994": 0.578, + "1995": 0.585, + "1996": 0.601, + "1997": 0.608, + "1998": 0.614, + "1999": 0.628, + "2000": 0.634, + "2001": 0.645, + "2002": 0.66, + "2003": 0.678, + "2004": 0.699, + "2005": 0.714, + "2006": 0.732, + "2007": 0.752, + "2008": 0.774, + "2009": 0.784, + "2010": 0.78, + "2011": 0.775, + "2012": 0.762, + "2013": 0.766, + "2014": 0.757, + "2015": 0.765, + "2016": 0.758, + "2017": 0.763, + "2018": 0.764, + "2019": 0.764, + "2020": 0.764, + "2021": 0.764 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr101", + "Region": "Nord-Est", + "1990": 0.593, + "1991": 0.571, + "1992": 0.563, + "1993": 0.561, + "1994": 0.562, + "1995": 0.569, + "1996": 0.585, + "1997": 0.591, + "1998": 0.597, + "1999": 0.611, + "2000": 0.617, + "2001": 0.627, + "2002": 0.643, + "2003": 0.661, + "2004": 0.683, + "2005": 0.698, + "2006": 0.714, + "2007": 0.735, + "2008": 0.755, + "2009": 0.764, + "2010": 0.761, + "2011": 0.756, + "2012": 0.743, + "2013": 0.744, + "2014": 0.736, + "2015": 0.735, + "2016": 0.726, + "2017": 0.727, + "2018": 0.73, + "2019": 0.728, + "2020": 0.728, + "2021": 0.728 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr106", + "Region": "Nord-Vest", + "1990": 0.613, + "1991": 0.59, + "1992": 0.581, + "1993": 0.579, + "1994": 0.58, + "1995": 0.587, + "1996": 0.604, + "1997": 0.61, + "1998": 0.617, + "1999": 0.631, + "2000": 0.637, + "2001": 0.65, + "2002": 0.665, + "2003": 0.682, + "2004": 0.704, + "2005": 0.716, + "2006": 0.733, + "2007": 0.758, + "2008": 0.781, + "2009": 0.79, + "2010": 0.79, + "2011": 0.783, + "2012": 0.769, + "2013": 0.772, + "2014": 0.771, + "2015": 0.782, + "2016": 0.778, + "2017": 0.783, + "2018": 0.79, + "2019": 0.795, + "2020": 0.795, + "2021": 0.795 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr103", + "Region": "Sud", + "1990": 0.572, + "1991": 0.553, + "1992": 0.545, + "1993": 0.543, + "1994": 0.545, + "1995": 0.551, + "1996": 0.566, + "1997": 0.572, + "1998": 0.578, + "1999": 0.591, + "2000": 0.597, + "2001": 0.609, + "2002": 0.623, + "2003": 0.641, + "2004": 0.658, + "2005": 0.672, + "2006": 0.688, + "2007": 0.707, + "2008": 0.726, + "2009": 0.734, + "2010": 0.734, + "2011": 0.728, + "2012": 0.717, + "2013": 0.72, + "2014": 0.707, + "2015": 0.713, + "2016": 0.708, + "2017": 0.707, + "2018": 0.706, + "2019": 0.705, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr102", + "Region": "Sud-Est", + "1990": 0.598, + "1991": 0.576, + "1992": 0.568, + "1993": 0.566, + "1994": 0.567, + "1995": 0.574, + "1996": 0.59, + "1997": 0.596, + "1998": 0.602, + "1999": 0.616, + "2000": 0.622, + "2001": 0.632, + "2002": 0.649, + "2003": 0.666, + "2004": 0.684, + "2005": 0.697, + "2006": 0.713, + "2007": 0.733, + "2008": 0.754, + "2009": 0.765, + "2010": 0.763, + "2011": 0.757, + "2012": 0.744, + "2013": 0.746, + "2014": 0.738, + "2015": 0.734, + "2016": 0.736, + "2017": 0.728, + "2018": 0.727, + "2019": 0.73, + "2020": 0.73, + "2021": 0.73 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr104", + "Region": "Sud-Vest Oltenia", + "1990": 0.606, + "1991": 0.584, + "1992": 0.576, + "1993": 0.573, + "1994": 0.574, + "1995": 0.582, + "1996": 0.598, + "1997": 0.604, + "1998": 0.611, + "1999": 0.624, + "2000": 0.631, + "2001": 0.644, + "2002": 0.661, + "2003": 0.68, + "2004": 0.7, + "2005": 0.714, + "2006": 0.731, + "2007": 0.753, + "2008": 0.775, + "2009": 0.785, + "2010": 0.781, + "2011": 0.774, + "2012": 0.763, + "2013": 0.765, + "2014": 0.763, + "2015": 0.762, + "2016": 0.754, + "2017": 0.746, + "2018": 0.743, + "2019": 0.745, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr105", + "Region": "Vest", + "1990": 0.628, + "1991": 0.605, + "1992": 0.595, + "1993": 0.593, + "1994": 0.594, + "1995": 0.601, + "1996": 0.618, + "1997": 0.625, + "1998": 0.632, + "1999": 0.646, + "2000": 0.652, + "2001": 0.663, + "2002": 0.68, + "2003": 0.697, + "2004": 0.718, + "2005": 0.733, + "2006": 0.749, + "2007": 0.773, + "2008": 0.798, + "2009": 0.811, + "2010": 0.808, + "2011": 0.802, + "2012": 0.787, + "2013": 0.787, + "2014": 0.779, + "2015": 0.785, + "2016": 0.778, + "2017": 0.775, + "2018": 0.777, + "2019": 0.778, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "National", + "GDLCODE": "RUSt", + "Region": "Total", + "1990": 0.678, + "1991": 0.68, + "1992": 0.679, + "1993": 0.675, + "1994": 0.674, + "1995": 0.68, + "1996": 0.693, + "1997": 0.703, + "1998": 0.715, + "1999": 0.729, + "2000": 0.751, + "2001": 0.766, + "2002": 0.78, + "2003": 0.794, + "2004": 0.792, + "2005": 0.791, + "2006": 0.793, + "2007": 0.797, + "2008": 0.8, + "2009": 0.794, + "2010": 0.808, + "2011": 0.821, + "2012": 0.819, + "2013": 0.826, + "2014": 0.827, + "2015": 0.838, + "2016": 0.841, + "2017": 0.842, + "2018": 0.86, + "2019": 0.864, + "2020": 0.864, + "2021": 0.864 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr101", + "Region": "The Central Federal District", + "1990": 0.711, + "1991": 0.713, + "1992": 0.711, + "1993": 0.708, + "1994": 0.707, + "1995": 0.713, + "1996": 0.727, + "1997": 0.737, + "1998": 0.75, + "1999": 0.764, + "2000": 0.787, + "2001": 0.803, + "2002": 0.818, + "2003": 0.832, + "2004": 0.83, + "2005": 0.829, + "2006": 0.831, + "2007": 0.835, + "2008": 0.839, + "2009": 0.832, + "2010": 0.847, + "2011": 0.86, + "2012": 0.859, + "2013": 0.856, + "2014": 0.849, + "2015": 0.852, + "2016": 0.848, + "2017": 0.848, + "2018": 0.867, + "2019": 0.871, + "2020": 0.871, + "2021": 0.871 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr108", + "Region": "The Far East Federal District", + "1990": 0.695, + "1991": 0.697, + "1992": 0.696, + "1993": 0.692, + "1994": 0.691, + "1995": 0.697, + "1996": 0.71, + "1997": 0.72, + "1998": 0.733, + "1999": 0.747, + "2000": 0.77, + "2001": 0.785, + "2002": 0.8, + "2003": 0.813, + "2004": 0.812, + "2005": 0.81, + "2006": 0.812, + "2007": 0.816, + "2008": 0.82, + "2009": 0.814, + "2010": 0.828, + "2011": 0.841, + "2012": 0.84, + "2013": 0.831, + "2014": 0.818, + "2015": 0.815, + "2016": 0.805, + "2017": 0.806, + "2018": 0.824, + "2019": 0.827, + "2020": 0.827, + "2021": 0.827 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr102", + "Region": "The North West Federal District", + "1990": 0.681, + "1991": 0.683, + "1992": 0.682, + "1993": 0.678, + "1994": 0.677, + "1995": 0.683, + "1996": 0.696, + "1997": 0.706, + "1998": 0.718, + "1999": 0.732, + "2000": 0.754, + "2001": 0.769, + "2002": 0.784, + "2003": 0.797, + "2004": 0.796, + "2005": 0.794, + "2006": 0.796, + "2007": 0.8, + "2008": 0.804, + "2009": 0.797, + "2010": 0.811, + "2011": 0.824, + "2012": 0.823, + "2013": 0.832, + "2014": 0.836, + "2015": 0.85, + "2016": 0.855, + "2017": 0.855, + "2018": 0.875, + "2019": 0.878, + "2020": 0.878, + "2021": 0.878 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr104", + "Region": "The North-Caucasian Federal District", + "1990": 0.73, + "1991": 0.732, + "1992": 0.73, + "1993": 0.727, + "1994": 0.726, + "1995": 0.732, + "1996": 0.746, + "1997": 0.757, + "1998": 0.77, + "1999": 0.784, + "2000": 0.808, + "2001": 0.824, + "2002": 0.84, + "2003": 0.854, + "2004": 0.853, + "2005": 0.851, + "2006": 0.853, + "2007": 0.857, + "2008": 0.861, + "2009": 0.855, + "2010": 0.869, + "2011": 0.883, + "2012": 0.882, + "2013": 0.879, + "2014": 0.872, + "2015": 0.876, + "2016": 0.871, + "2017": 0.871, + "2018": 0.891, + "2019": 0.894, + "2020": 0.894, + "2021": 0.894 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr105", + "Region": "The Privolzhsky (Volga) Federal District", + "1990": 0.662, + "1991": 0.664, + "1992": 0.662, + "1993": 0.659, + "1994": 0.658, + "1995": 0.664, + "1996": 0.677, + "1997": 0.686, + "1998": 0.698, + "1999": 0.711, + "2000": 0.733, + "2001": 0.747, + "2002": 0.762, + "2003": 0.775, + "2004": 0.773, + "2005": 0.772, + "2006": 0.774, + "2007": 0.777, + "2008": 0.781, + "2009": 0.775, + "2010": 0.788, + "2011": 0.801, + "2012": 0.8, + "2013": 0.812, + "2014": 0.818, + "2015": 0.835, + "2016": 0.843, + "2017": 0.844, + "2018": 0.863, + "2019": 0.866, + "2020": 0.866, + "2021": 0.866 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr107", + "Region": "The Siberian Federal District", + "1990": 0.642, + "1991": 0.644, + "1992": 0.643, + "1993": 0.64, + "1994": 0.639, + "1995": 0.645, + "1996": 0.657, + "1997": 0.666, + "1998": 0.678, + "1999": 0.69, + "2000": 0.712, + "2001": 0.725, + "2002": 0.739, + "2003": 0.752, + "2004": 0.751, + "2005": 0.749, + "2006": 0.751, + "2007": 0.755, + "2008": 0.758, + "2009": 0.752, + "2010": 0.765, + "2011": 0.778, + "2012": 0.776, + "2013": 0.788, + "2014": 0.795, + "2015": 0.811, + "2016": 0.819, + "2017": 0.82, + "2018": 0.838, + "2019": 0.841, + "2020": 0.841, + "2021": 0.841 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr103", + "Region": "The South Federal District", + "1990": 0.67, + "1991": 0.672, + "1992": 0.671, + "1993": 0.667, + "1994": 0.666, + "1995": 0.672, + "1996": 0.685, + "1997": 0.695, + "1998": 0.707, + "1999": 0.72, + "2000": 0.742, + "2001": 0.757, + "2002": 0.771, + "2003": 0.785, + "2004": 0.783, + "2005": 0.782, + "2006": 0.783, + "2007": 0.787, + "2008": 0.791, + "2009": 0.785, + "2010": 0.798, + "2011": 0.811, + "2012": 0.81, + "2013": 0.817, + "2014": 0.818, + "2015": 0.83, + "2016": 0.834, + "2017": 0.834, + "2018": 0.853, + "2019": 0.856, + "2020": 0.856, + "2021": 0.856 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr106", + "Region": "The Urals Federal District", + "1990": 0.647, + "1991": 0.649, + "1992": 0.648, + "1993": 0.645, + "1994": 0.644, + "1995": 0.65, + "1996": 0.662, + "1997": 0.671, + "1998": 0.683, + "1999": 0.696, + "2000": 0.717, + "2001": 0.731, + "2002": 0.745, + "2003": 0.758, + "2004": 0.757, + "2005": 0.755, + "2006": 0.757, + "2007": 0.761, + "2008": 0.764, + "2009": 0.758, + "2010": 0.771, + "2011": 0.784, + "2012": 0.782, + "2013": 0.799, + "2014": 0.809, + "2015": 0.83, + "2016": 0.841, + "2017": 0.842, + "2018": 0.861, + "2019": 0.864, + "2020": 0.864, + "2021": 0.864 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "National", + "GDLCODE": "RWAt", + "Region": "Total", + "1990": 0.22, + "1991": 0.226, + "1992": 0.232, + "1993": 0.239, + "1994": 0.245, + "1995": 0.251, + "1996": 0.258, + "1997": 0.265, + "1998": 0.272, + "1999": 0.279, + "2000": 0.29, + "2001": 0.291, + "2002": 0.303, + "2003": 0.321, + "2004": 0.343, + "2005": 0.356, + "2006": 0.384, + "2007": 0.4, + "2008": 0.405, + "2009": 0.425, + "2010": 0.437, + "2011": 0.443, + "2012": 0.45, + "2013": 0.45, + "2014": 0.453, + "2015": 0.446, + "2016": 0.459, + "2017": 0.462, + "2018": 0.455, + "2019": 0.459, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr101", + "Region": "City of Kigali", + "1990": 0.243, + "1991": 0.25, + "1992": 0.257, + "1993": 0.278, + "1994": 0.3, + "1995": 0.321, + "1996": 0.343, + "1997": 0.365, + "1998": 0.387, + "1999": 0.409, + "2000": 0.436, + "2001": 0.43, + "2002": 0.438, + "2003": 0.451, + "2004": 0.47, + "2005": 0.477, + "2006": 0.505, + "2007": 0.52, + "2008": 0.523, + "2009": 0.542, + "2010": 0.552, + "2011": 0.554, + "2012": 0.555, + "2013": 0.553, + "2014": 0.554, + "2015": 0.542, + "2016": 0.559, + "2017": 0.565, + "2018": 0.562, + "2019": 0.57, + "2020": 0.572, + "2021": 0.572 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr105", + "Region": "East", + "1990": 0.19, + "1991": 0.196, + "1992": 0.201, + "1993": 0.21, + "1994": 0.22, + "1995": 0.229, + "1996": 0.239, + "1997": 0.249, + "1998": 0.259, + "1999": 0.27, + "2000": 0.283, + "2001": 0.286, + "2002": 0.3, + "2003": 0.319, + "2004": 0.343, + "2005": 0.356, + "2006": 0.381, + "2007": 0.392, + "2008": 0.392, + "2009": 0.409, + "2010": 0.416, + "2011": 0.421, + "2012": 0.426, + "2013": 0.425, + "2014": 0.426, + "2015": 0.417, + "2016": 0.435, + "2017": 0.443, + "2018": 0.442, + "2019": 0.451, + "2020": 0.456, + "2021": 0.456 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr104", + "Region": "North", + "1990": 0.222, + "1991": 0.228, + "1992": 0.234, + "1993": 0.238, + "1994": 0.242, + "1995": 0.245, + "1996": 0.249, + "1997": 0.253, + "1998": 0.257, + "1999": 0.262, + "2000": 0.269, + "2001": 0.272, + "2002": 0.285, + "2003": 0.304, + "2004": 0.326, + "2005": 0.34, + "2006": 0.369, + "2007": 0.385, + "2008": 0.39, + "2009": 0.411, + "2010": 0.422, + "2011": 0.43, + "2012": 0.438, + "2013": 0.44, + "2014": 0.444, + "2015": 0.437, + "2016": 0.447, + "2017": 0.446, + "2018": 0.437, + "2019": 0.438, + "2020": 0.435, + "2021": 0.435 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr102", + "Region": "South", + "1990": 0.224, + "1991": 0.231, + "1992": 0.237, + "1993": 0.241, + "1994": 0.244, + "1995": 0.248, + "1996": 0.252, + "1997": 0.256, + "1998": 0.26, + "1999": 0.265, + "2000": 0.272, + "2001": 0.273, + "2002": 0.285, + "2003": 0.302, + "2004": 0.323, + "2005": 0.335, + "2006": 0.367, + "2007": 0.387, + "2008": 0.395, + "2009": 0.42, + "2010": 0.435, + "2011": 0.44, + "2012": 0.445, + "2013": 0.444, + "2014": 0.445, + "2015": 0.435, + "2016": 0.447, + "2017": 0.447, + "2018": 0.439, + "2019": 0.441, + "2020": 0.44, + "2021": 0.44 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr103", + "Region": "West", + "1990": 0.207, + "1991": 0.213, + "1992": 0.219, + "1993": 0.228, + "1994": 0.237, + "1995": 0.246, + "1996": 0.255, + "1997": 0.265, + "1998": 0.274, + "1999": 0.284, + "2000": 0.298, + "2001": 0.294, + "2002": 0.302, + "2003": 0.316, + "2004": 0.335, + "2005": 0.343, + "2006": 0.37, + "2007": 0.384, + "2008": 0.387, + "2009": 0.405, + "2010": 0.415, + "2011": 0.425, + "2012": 0.435, + "2013": 0.439, + "2014": 0.445, + "2015": 0.44, + "2016": 0.449, + "2017": 0.446, + "2018": 0.435, + "2019": 0.434, + "2020": 0.429, + "2021": 0.429 + }, + { + "Country": "Saint Kitts and Nevis", + "Continent": "America", + "ISO_Code": "KNA", + "Level": "National", + "GDLCODE": "KNAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.636, + "2006": 0.643, + "2007": 0.649, + "2008": 0.656, + "2009": 0.662, + "2010": 0.669, + "2011": 0.676, + "2012": 0.683, + "2013": 0.69, + "2014": 0.697, + "2015": 0.699, + "2016": 0.701, + "2017": 0.704, + "2018": 0.71, + "2019": 0.717, + "2020": 0.717, + "2021": 0.717 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "National", + "GDLCODE": "LCAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.6, + "2001": 0.6, + "2002": 0.6, + "2003": 0.599, + "2004": 0.599, + "2005": 0.609, + "2006": 0.622, + "2007": 0.62, + "2008": 0.627, + "2009": 0.635, + "2010": 0.642, + "2011": 0.647, + "2012": 0.651, + "2013": 0.656, + "2014": 0.661, + "2015": 0.667, + "2016": 0.68, + "2017": 0.673, + "2018": 0.673, + "2019": 0.644, + "2020": 0.642, + "2021": 0.642 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr102", + "Region": "St Lucia rural", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.602, + "2001": 0.601, + "2002": 0.601, + "2003": 0.6, + "2004": 0.6, + "2005": 0.61, + "2006": 0.623, + "2007": 0.621, + "2008": 0.629, + "2009": 0.636, + "2010": 0.644, + "2011": 0.648, + "2012": 0.653, + "2013": 0.657, + "2014": 0.663, + "2015": 0.668, + "2016": 0.682, + "2017": 0.675, + "2018": 0.674, + "2019": 0.646, + "2020": 0.643, + "2021": 0.643 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr101", + "Region": "St Lucia urban", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.592, + "2001": 0.592, + "2002": 0.592, + "2003": 0.592, + "2004": 0.592, + "2005": 0.602, + "2006": 0.614, + "2007": 0.613, + "2008": 0.62, + "2009": 0.628, + "2010": 0.635, + "2011": 0.639, + "2012": 0.643, + "2013": 0.648, + "2014": 0.653, + "2015": 0.658, + "2016": 0.671, + "2017": 0.665, + "2018": 0.664, + "2019": 0.637, + "2020": 0.635, + "2021": 0.635 + }, + { + "Country": "Saint Vincent and the Grenadines", + "Continent": "America", + "ISO_Code": "VCT", + "Level": "National", + "GDLCODE": "VCTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.606, + "2001": 0.613, + "2002": 0.616, + "2003": 0.626, + "2004": 0.629, + "2005": 0.634, + "2006": 0.639, + "2007": 0.645, + "2008": 0.65, + "2009": 0.656, + "2010": 0.661, + "2011": 0.666, + "2012": 0.672, + "2013": 0.691, + "2014": 0.71, + "2015": 0.726, + "2016": 0.745, + "2017": 0.764, + "2018": 0.766, + "2019": 0.769, + "2020": 0.769, + "2021": 0.769 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "National", + "GDLCODE": "WSMt", + "Region": "Total", + "1990": 0.669, + "1991": 0.671, + "1992": 0.674, + "1993": 0.677, + "1994": 0.679, + "1995": 0.682, + "1996": 0.685, + "1997": 0.687, + "1998": 0.69, + "1999": 0.696, + "2000": 0.695, + "2001": 0.698, + "2002": 0.701, + "2003": 0.704, + "2004": 0.707, + "2005": 0.71, + "2006": 0.714, + "2007": 0.717, + "2008": 0.72, + "2009": 0.723, + "2010": 0.726, + "2011": 0.729, + "2012": 0.729, + "2013": 0.728, + "2014": 0.728, + "2015": 0.727, + "2016": 0.727, + "2017": 0.726, + "2018": 0.726, + "2019": 0.726, + "2020": 0.725, + "2021": 0.725 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr101", + "Region": "Apia Urban Area", + "1990": 0.884, + "1991": 0.884, + "1992": 0.885, + "1993": 0.882, + "1994": 0.882, + "1995": 0.879, + "1996": 0.88, + "1997": 0.883, + "1998": 0.877, + "1999": 0.878, + "2000": 0.877, + "2001": 0.878, + "2002": 0.875, + "2003": 0.876, + "2004": 0.867, + "2005": 0.866, + "2006": 0.864, + "2007": 0.858, + "2008": 0.863, + "2009": 0.853, + "2010": 0.841, + "2011": 0.833, + "2012": 0.835, + "2013": 0.831, + "2014": 0.826, + "2015": 0.829, + "2016": 0.828, + "2017": 0.825, + "2018": 0.824, + "2019": 0.792, + "2020": 0.791, + "2021": 0.791 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr102", + "Region": "North West Upolu", + "1990": 0.848, + "1991": 0.845, + "1992": 0.842, + "1993": 0.831, + "1994": 0.828, + "1995": 0.823, + "1996": 0.821, + "1997": 0.816, + "1998": 0.809, + "1999": 0.807, + "2000": 0.804, + "2001": 0.803, + "2002": 0.793, + "2003": 0.792, + "2004": 0.783, + "2005": 0.781, + "2006": 0.78, + "2007": 0.775, + "2008": 0.779, + "2009": 0.77, + "2010": 0.759, + "2011": 0.752, + "2012": 0.754, + "2013": 0.751, + "2014": 0.746, + "2015": 0.748, + "2016": 0.748, + "2017": 0.745, + "2018": 0.744, + "2019": 0.715, + "2020": 0.715, + "2021": 0.715 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr103", + "Region": "Rest of Upolu", + "1990": 0.847, + "1991": 0.846, + "1992": 0.843, + "1993": 0.831, + "1994": 0.829, + "1995": 0.824, + "1996": 0.822, + "1997": 0.817, + "1998": 0.809, + "1999": 0.807, + "2000": 0.805, + "2001": 0.803, + "2002": 0.794, + "2003": 0.793, + "2004": 0.783, + "2005": 0.782, + "2006": 0.781, + "2007": 0.775, + "2008": 0.78, + "2009": 0.77, + "2010": 0.759, + "2011": 0.752, + "2012": 0.754, + "2013": 0.751, + "2014": 0.746, + "2015": 0.749, + "2016": 0.748, + "2017": 0.745, + "2018": 0.744, + "2019": 0.715, + "2020": 0.715, + "2021": 0.715 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr104", + "Region": "Savaii", + "1990": 0.821, + "1991": 0.818, + "1992": 0.815, + "1993": 0.804, + "1994": 0.802, + "1995": 0.797, + "1996": 0.794, + "1997": 0.789, + "1998": 0.782, + "1999": 0.78, + "2000": 0.778, + "2001": 0.776, + "2002": 0.767, + "2003": 0.766, + "2004": 0.757, + "2005": 0.756, + "2006": 0.755, + "2007": 0.749, + "2008": 0.753, + "2009": 0.744, + "2010": 0.734, + "2011": 0.726, + "2012": 0.728, + "2013": 0.725, + "2014": 0.721, + "2015": 0.723, + "2016": 0.722, + "2017": 0.719, + "2018": 0.718, + "2019": 0.689, + "2020": 0.689, + "2021": 0.689 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "National", + "GDLCODE": "STPt", + "Region": "Total", + "1990": 0.372, + "1991": 0.376, + "1992": 0.38, + "1993": 0.383, + "1994": 0.387, + "1995": 0.391, + "1996": 0.395, + "1997": 0.399, + "1998": 0.403, + "1999": 0.408, + "2000": 0.412, + "2001": 0.416, + "2002": 0.42, + "2003": 0.425, + "2004": 0.434, + "2005": 0.442, + "2006": 0.447, + "2007": 0.451, + "2008": 0.446, + "2009": 0.462, + "2010": 0.46, + "2011": 0.467, + "2012": 0.474, + "2013": 0.489, + "2014": 0.504, + "2015": 0.531, + "2016": 0.543, + "2017": 0.555, + "2018": 0.567, + "2019": 0.578, + "2020": 0.578, + "2021": 0.578 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr101", + "Region": "Regiao Centro", + "1990": 0.396, + "1991": 0.4, + "1992": 0.404, + "1993": 0.408, + "1994": 0.412, + "1995": 0.417, + "1996": 0.421, + "1997": 0.425, + "1998": 0.429, + "1999": 0.434, + "2000": 0.438, + "2001": 0.443, + "2002": 0.447, + "2003": 0.452, + "2004": 0.462, + "2005": 0.471, + "2006": 0.475, + "2007": 0.48, + "2008": 0.475, + "2009": 0.492, + "2010": 0.487, + "2011": 0.493, + "2012": 0.499, + "2013": 0.513, + "2014": 0.527, + "2015": 0.555, + "2016": 0.567, + "2017": 0.579, + "2018": 0.591, + "2019": 0.603, + "2020": 0.603, + "2021": 0.603 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr104", + "Region": "Regiao do Principe", + "1990": 0.39, + "1991": 0.394, + "1992": 0.398, + "1993": 0.402, + "1994": 0.407, + "1995": 0.411, + "1996": 0.415, + "1997": 0.419, + "1998": 0.423, + "1999": 0.428, + "2000": 0.432, + "2001": 0.437, + "2002": 0.441, + "2003": 0.446, + "2004": 0.456, + "2005": 0.465, + "2006": 0.469, + "2007": 0.474, + "2008": 0.468, + "2009": 0.485, + "2010": 0.479, + "2011": 0.484, + "2012": 0.488, + "2013": 0.501, + "2014": 0.513, + "2015": 0.539, + "2016": 0.548, + "2017": 0.557, + "2018": 0.567, + "2019": 0.576, + "2020": 0.576, + "2021": 0.576 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr103", + "Region": "Regiao Norte", + "1990": 0.332, + "1991": 0.335, + "1992": 0.339, + "1993": 0.342, + "1994": 0.346, + "1995": 0.349, + "1996": 0.353, + "1997": 0.356, + "1998": 0.36, + "1999": 0.364, + "2000": 0.367, + "2001": 0.371, + "2002": 0.375, + "2003": 0.379, + "2004": 0.387, + "2005": 0.395, + "2006": 0.399, + "2007": 0.403, + "2008": 0.398, + "2009": 0.413, + "2010": 0.41, + "2011": 0.415, + "2012": 0.421, + "2013": 0.435, + "2014": 0.448, + "2015": 0.478, + "2016": 0.493, + "2017": 0.508, + "2018": 0.523, + "2019": 0.538, + "2020": 0.538, + "2021": 0.538 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr102", + "Region": "Regiao Sul", + "1990": 0.322, + "1991": 0.325, + "1992": 0.329, + "1993": 0.332, + "1994": 0.335, + "1995": 0.339, + "1996": 0.342, + "1997": 0.346, + "1998": 0.349, + "1999": 0.353, + "2000": 0.356, + "2001": 0.36, + "2002": 0.364, + "2003": 0.367, + "2004": 0.376, + "2005": 0.383, + "2006": 0.387, + "2007": 0.391, + "2008": 0.386, + "2009": 0.4, + "2010": 0.401, + "2011": 0.411, + "2012": 0.421, + "2013": 0.438, + "2014": 0.456, + "2015": 0.484, + "2016": 0.497, + "2017": 0.509, + "2018": 0.522, + "2019": 0.535, + "2020": 0.535, + "2021": 0.535 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "National", + "GDLCODE": "SAUt", + "Region": "Total", + "1990": 0.452, + "1991": 0.46, + "1992": 0.469, + "1993": 0.478, + "1994": 0.486, + "1995": 0.495, + "1996": 0.505, + "1997": 0.514, + "1998": 0.524, + "1999": 0.534, + "2000": 0.544, + "2001": 0.557, + "2002": 0.571, + "2003": 0.584, + "2004": 0.598, + "2005": 0.612, + "2006": 0.626, + "2007": 0.64, + "2008": 0.655, + "2009": 0.669, + "2010": 0.687, + "2011": 0.705, + "2012": 0.723, + "2013": 0.741, + "2014": 0.755, + "2015": 0.77, + "2016": 0.784, + "2017": 0.775, + "2018": 0.788, + "2019": 0.81, + "2020": 0.825, + "2021": 0.825 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr101", + "Region": "Center (Riadh, Qassim)", + "1990": 0.483, + "1991": 0.492, + "1992": 0.501, + "1993": 0.51, + "1994": 0.52, + "1995": 0.529, + "1996": 0.539, + "1997": 0.55, + "1998": 0.56, + "1999": 0.571, + "2000": 0.581, + "2001": 0.595, + "2002": 0.61, + "2003": 0.624, + "2004": 0.639, + "2005": 0.654, + "2006": 0.669, + "2007": 0.684, + "2008": 0.7, + "2009": 0.715, + "2010": 0.734, + "2011": 0.753, + "2012": 0.772, + "2013": 0.791, + "2014": 0.807, + "2015": 0.822, + "2016": 0.838, + "2017": 0.828, + "2018": 0.842, + "2019": 0.866, + "2020": 0.882, + "2021": 0.882 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr104", + "Region": "Eastern province", + "1990": 0.427, + "1991": 0.435, + "1992": 0.443, + "1993": 0.451, + "1994": 0.459, + "1995": 0.468, + "1996": 0.477, + "1997": 0.486, + "1998": 0.495, + "1999": 0.505, + "2000": 0.514, + "2001": 0.526, + "2002": 0.539, + "2003": 0.552, + "2004": 0.565, + "2005": 0.579, + "2006": 0.592, + "2007": 0.605, + "2008": 0.619, + "2009": 0.632, + "2010": 0.649, + "2011": 0.666, + "2012": 0.683, + "2013": 0.7, + "2014": 0.713, + "2015": 0.727, + "2016": 0.741, + "2017": 0.732, + "2018": 0.745, + "2019": 0.765, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr105", + "Region": "North (Northern Borders, Al Jawf, Hail)", + "1990": 0.453, + "1991": 0.461, + "1992": 0.47, + "1993": 0.478, + "1994": 0.487, + "1995": 0.496, + "1996": 0.505, + "1997": 0.515, + "1998": 0.525, + "1999": 0.535, + "2000": 0.545, + "2001": 0.558, + "2002": 0.571, + "2003": 0.585, + "2004": 0.598, + "2005": 0.613, + "2006": 0.627, + "2007": 0.641, + "2008": 0.655, + "2009": 0.67, + "2010": 0.688, + "2011": 0.706, + "2012": 0.723, + "2013": 0.741, + "2014": 0.756, + "2015": 0.77, + "2016": 0.785, + "2017": 0.776, + "2018": 0.789, + "2019": 0.811, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr103", + "Region": "South (Bahah, Jizan, Asir, Najran)", + "1990": 0.419, + "1991": 0.427, + "1992": 0.435, + "1993": 0.443, + "1994": 0.451, + "1995": 0.459, + "1996": 0.468, + "1997": 0.477, + "1998": 0.486, + "1999": 0.495, + "2000": 0.504, + "2001": 0.516, + "2002": 0.529, + "2003": 0.541, + "2004": 0.554, + "2005": 0.567, + "2006": 0.58, + "2007": 0.593, + "2008": 0.607, + "2009": 0.62, + "2010": 0.637, + "2011": 0.653, + "2012": 0.67, + "2013": 0.686, + "2014": 0.7, + "2015": 0.713, + "2016": 0.727, + "2017": 0.718, + "2018": 0.73, + "2019": 0.751, + "2020": 0.765, + "2021": 0.765 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr102", + "Region": "West (Makka, Madinah, Tabuk)", + "1990": 0.457, + "1991": 0.466, + "1992": 0.474, + "1993": 0.483, + "1994": 0.492, + "1995": 0.501, + "1996": 0.51, + "1997": 0.52, + "1998": 0.53, + "1999": 0.54, + "2000": 0.55, + "2001": 0.563, + "2002": 0.577, + "2003": 0.591, + "2004": 0.604, + "2005": 0.619, + "2006": 0.633, + "2007": 0.647, + "2008": 0.662, + "2009": 0.677, + "2010": 0.695, + "2011": 0.713, + "2012": 0.731, + "2013": 0.749, + "2014": 0.763, + "2015": 0.778, + "2016": 0.793, + "2017": 0.783, + "2018": 0.797, + "2019": 0.819, + "2020": 0.834, + "2021": 0.834 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "National", + "GDLCODE": "SENt", + "Region": "Total", + "1990": 0.189, + "1991": 0.191, + "1992": 0.192, + "1993": 0.194, + "1994": 0.195, + "1995": 0.196, + "1996": 0.198, + "1997": 0.199, + "1998": 0.201, + "1999": 0.203, + "2000": 0.209, + "2001": 0.214, + "2002": 0.219, + "2003": 0.224, + "2004": 0.229, + "2005": 0.233, + "2006": 0.242, + "2007": 0.259, + "2008": 0.275, + "2009": 0.286, + "2010": 0.298, + "2011": 0.322, + "2012": 0.335, + "2013": 0.344, + "2014": 0.351, + "2015": 0.351, + "2016": 0.349, + "2017": 0.346, + "2018": 0.345, + "2019": 0.344, + "2020": 0.347, + "2021": 0.347 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr101", + "Region": "Dakar", + "1990": 0.386, + "1991": 0.388, + "1992": 0.389, + "1993": 0.381, + "1994": 0.374, + "1995": 0.367, + "1996": 0.36, + "1997": 0.354, + "1998": 0.349, + "1999": 0.345, + "2000": 0.347, + "2001": 0.347, + "2002": 0.346, + "2003": 0.346, + "2004": 0.345, + "2005": 0.345, + "2006": 0.359, + "2007": 0.383, + "2008": 0.406, + "2009": 0.423, + "2010": 0.439, + "2011": 0.473, + "2012": 0.478, + "2013": 0.49, + "2014": 0.498, + "2015": 0.514, + "2016": 0.51, + "2017": 0.522, + "2018": 0.524, + "2019": 0.478, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr103", + "Region": "Diourbel", + "1990": 0.059, + "1991": 0.06, + "1992": 0.061, + "1993": 0.064, + "1994": 0.066, + "1995": 0.069, + "1996": 0.072, + "1997": 0.074, + "1998": 0.077, + "1999": 0.08, + "2000": 0.084, + "2001": 0.088, + "2002": 0.092, + "2003": 0.097, + "2004": 0.101, + "2005": 0.105, + "2006": 0.109, + "2007": 0.116, + "2008": 0.124, + "2009": 0.129, + "2010": 0.134, + "2011": 0.146, + "2012": 0.13, + "2013": 0.148, + "2014": 0.167, + "2015": 0.189, + "2016": 0.187, + "2017": 0.185, + "2018": 0.167, + "2019": 0.16, + "2020": 0.161, + "2021": 0.161 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr109", + "Region": "Fatick", + "1990": 0.155, + "1991": 0.157, + "1992": 0.158, + "1993": 0.163, + "1994": 0.167, + "1995": 0.171, + "1996": 0.175, + "1997": 0.178, + "1998": 0.183, + "1999": 0.187, + "2000": 0.196, + "2001": 0.204, + "2002": 0.213, + "2003": 0.221, + "2004": 0.229, + "2005": 0.238, + "2006": 0.249, + "2007": 0.27, + "2008": 0.291, + "2009": 0.306, + "2010": 0.32, + "2011": 0.352, + "2012": 0.385, + "2013": 0.391, + "2014": 0.399, + "2015": 0.362, + "2016": 0.359, + "2017": 0.379, + "2018": 0.4, + "2019": 0.356, + "2020": 0.359, + "2021": 0.359 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr106", + "Region": "Kaolack", + "1990": 0.095, + "1991": 0.096, + "1992": 0.097, + "1993": 0.103, + "1994": 0.108, + "1995": 0.113, + "1996": 0.117, + "1997": 0.122, + "1998": 0.126, + "1999": 0.131, + "2000": 0.138, + "2001": 0.145, + "2002": 0.152, + "2003": 0.159, + "2004": 0.165, + "2005": 0.172, + "2006": 0.181, + "2007": 0.196, + "2008": 0.211, + "2009": 0.221, + "2010": 0.232, + "2011": 0.254, + "2012": 0.274, + "2013": 0.249, + "2014": 0.226, + "2015": 0.272, + "2016": 0.27, + "2017": 0.242, + "2018": 0.129, + "2019": 0.266, + "2020": 0.269, + "2021": 0.269 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr110", + "Region": "Kolda", + "1990": 0.1, + "1991": 0.101, + "1992": 0.102, + "1993": 0.111, + "1994": 0.12, + "1995": 0.129, + "1996": 0.136, + "1997": 0.144, + "1998": 0.152, + "1999": 0.16, + "2000": 0.172, + "2001": 0.183, + "2002": 0.194, + "2003": 0.205, + "2004": 0.217, + "2005": 0.228, + "2006": 0.235, + "2007": 0.25, + "2008": 0.266, + "2009": 0.276, + "2010": 0.285, + "2011": 0.31, + "2012": 0.319, + "2013": 0.321, + "2014": 0.324, + "2015": 0.328, + "2016": 0.325, + "2017": 0.287, + "2018": 0.275, + "2019": 0.339, + "2020": 0.343, + "2021": 0.343 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr108", + "Region": "Louga", + "1990": 0.09, + "1991": 0.091, + "1992": 0.092, + "1993": 0.095, + "1994": 0.098, + "1995": 0.1, + "1996": 0.103, + "1997": 0.105, + "1998": 0.108, + "1999": 0.111, + "2000": 0.116, + "2001": 0.122, + "2002": 0.127, + "2003": 0.132, + "2004": 0.137, + "2005": 0.142, + "2006": 0.144, + "2007": 0.15, + "2008": 0.156, + "2009": 0.159, + "2010": 0.161, + "2011": 0.172, + "2012": 0.25, + "2013": 0.243, + "2014": 0.237, + "2015": 0.195, + "2016": 0.193, + "2017": 0.214, + "2018": 0.186, + "2019": 0.263, + "2020": 0.265, + "2021": 0.265 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr104", + "Region": "Saint Louis", + "1990": 0.149, + "1991": 0.15, + "1992": 0.151, + "1993": 0.152, + "1994": 0.154, + "1995": 0.155, + "1996": 0.156, + "1997": 0.158, + "1998": 0.16, + "1999": 0.161, + "2000": 0.167, + "2001": 0.171, + "2002": 0.176, + "2003": 0.181, + "2004": 0.185, + "2005": 0.19, + "2006": 0.199, + "2007": 0.214, + "2008": 0.229, + "2009": 0.239, + "2010": 0.25, + "2011": 0.272, + "2012": 0.328, + "2013": 0.312, + "2014": 0.295, + "2015": 0.293, + "2016": 0.29, + "2017": 0.285, + "2018": 0.205, + "2019": 0.277, + "2020": 0.28, + "2021": 0.28 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr105", + "Region": "Tambacounda", + "1990": 0.095, + "1991": 0.096, + "1992": 0.097, + "1993": 0.102, + "1994": 0.106, + "1995": 0.111, + "1996": 0.115, + "1997": 0.119, + "1998": 0.124, + "1999": 0.129, + "2000": 0.136, + "2001": 0.144, + "2002": 0.151, + "2003": 0.158, + "2004": 0.166, + "2005": 0.173, + "2006": 0.178, + "2007": 0.189, + "2008": 0.2, + "2009": 0.206, + "2010": 0.213, + "2011": 0.23, + "2012": 0.195, + "2013": 0.214, + "2014": 0.234, + "2015": 0.26, + "2016": 0.258, + "2017": 0.221, + "2018": 0.28, + "2019": 0.282, + "2020": 0.285, + "2021": 0.285 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr107", + "Region": "Thies", + "1990": 0.206, + "1991": 0.207, + "1992": 0.209, + "1993": 0.209, + "1994": 0.209, + "1995": 0.209, + "1996": 0.209, + "1997": 0.209, + "1998": 0.21, + "1999": 0.211, + "2000": 0.216, + "2001": 0.22, + "2002": 0.224, + "2003": 0.228, + "2004": 0.232, + "2005": 0.236, + "2006": 0.246, + "2007": 0.264, + "2008": 0.282, + "2009": 0.294, + "2010": 0.306, + "2011": 0.332, + "2012": 0.334, + "2013": 0.372, + "2014": 0.408, + "2015": 0.372, + "2016": 0.369, + "2017": 0.363, + "2018": 0.387, + "2019": 0.403, + "2020": 0.406, + "2021": 0.406 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr102", + "Region": "Ziguinchor", + "1990": 0.366, + "1991": 0.37, + "1992": 0.373, + "1993": 0.371, + "1994": 0.368, + "1995": 0.367, + "1996": 0.365, + "1997": 0.363, + "1998": 0.364, + "1999": 0.364, + "2000": 0.373, + "2001": 0.38, + "2002": 0.387, + "2003": 0.394, + "2004": 0.402, + "2005": 0.409, + "2006": 0.421, + "2007": 0.448, + "2008": 0.475, + "2009": 0.493, + "2010": 0.511, + "2011": 0.553, + "2012": 0.589, + "2013": 0.576, + "2014": 0.56, + "2015": 0.565, + "2016": 0.561, + "2017": 0.522, + "2018": 0.514, + "2019": 0.552, + "2020": 0.557, + "2021": 0.557 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "National", + "GDLCODE": "SRBt", + "Region": "Total", + "1990": 0.554, + "1991": 0.56, + "1992": 0.567, + "1993": 0.573, + "1994": 0.58, + "1995": 0.586, + "1996": 0.591, + "1997": 0.596, + "1998": 0.601, + "1999": 0.607, + "2000": 0.612, + "2001": 0.618, + "2002": 0.617, + "2003": 0.634, + "2004": 0.65, + "2005": 0.672, + "2006": 0.689, + "2007": 0.703, + "2008": 0.719, + "2009": 0.722, + "2010": 0.721, + "2011": 0.742, + "2012": 0.745, + "2013": 0.749, + "2014": 0.756, + "2015": 0.771, + "2016": 0.778, + "2017": 0.782, + "2018": 0.785, + "2019": 0.786, + "2020": 0.779, + "2021": 0.779 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr101", + "Region": "Belgrade", + "1990": 0.608, + "1991": 0.616, + "1992": 0.623, + "1993": 0.631, + "1994": 0.638, + "1995": 0.646, + "1996": 0.651, + "1997": 0.657, + "1998": 0.663, + "1999": 0.668, + "2000": 0.674, + "2001": 0.681, + "2002": 0.681, + "2003": 0.701, + "2004": 0.72, + "2005": 0.744, + "2006": 0.762, + "2007": 0.775, + "2008": 0.792, + "2009": 0.793, + "2010": 0.79, + "2011": 0.812, + "2012": 0.815, + "2013": 0.819, + "2014": 0.827, + "2015": 0.845, + "2016": 0.854, + "2017": 0.861, + "2018": 0.866, + "2019": 0.869, + "2020": 0.861, + "2021": 0.861 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr104", + "Region": "South and East Serbia", + "1990": 0.534, + "1991": 0.54, + "1992": 0.546, + "1993": 0.552, + "1994": 0.558, + "1995": 0.565, + "1996": 0.569, + "1997": 0.574, + "1998": 0.579, + "1999": 0.584, + "2000": 0.589, + "2001": 0.595, + "2002": 0.593, + "2003": 0.61, + "2004": 0.625, + "2005": 0.645, + "2006": 0.666, + "2007": 0.682, + "2008": 0.702, + "2009": 0.709, + "2010": 0.712, + "2011": 0.73, + "2012": 0.729, + "2013": 0.73, + "2014": 0.734, + "2015": 0.749, + "2016": 0.756, + "2017": 0.761, + "2018": 0.764, + "2019": 0.765, + "2020": 0.758, + "2021": 0.758 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr103", + "Region": "Sumadija and West Serbia", + "1990": 0.54, + "1991": 0.546, + "1992": 0.552, + "1993": 0.558, + "1994": 0.565, + "1995": 0.571, + "1996": 0.576, + "1997": 0.581, + "1998": 0.585, + "1999": 0.59, + "2000": 0.595, + "2001": 0.601, + "2002": 0.599, + "2003": 0.616, + "2004": 0.631, + "2005": 0.651, + "2006": 0.668, + "2007": 0.68, + "2008": 0.696, + "2009": 0.699, + "2010": 0.698, + "2011": 0.719, + "2012": 0.722, + "2013": 0.726, + "2014": 0.733, + "2015": 0.746, + "2016": 0.75, + "2017": 0.753, + "2018": 0.753, + "2019": 0.753, + "2020": 0.746, + "2021": 0.746 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr102", + "Region": "Vojvodina", + "1990": 0.546, + "1991": 0.553, + "1992": 0.559, + "1993": 0.566, + "1994": 0.572, + "1995": 0.579, + "1996": 0.584, + "1997": 0.589, + "1998": 0.594, + "1999": 0.599, + "2000": 0.604, + "2001": 0.61, + "2002": 0.609, + "2003": 0.626, + "2004": 0.642, + "2005": 0.663, + "2006": 0.678, + "2007": 0.69, + "2008": 0.704, + "2009": 0.704, + "2010": 0.701, + "2011": 0.723, + "2012": 0.728, + "2013": 0.733, + "2014": 0.742, + "2015": 0.756, + "2016": 0.761, + "2017": 0.764, + "2018": 0.766, + "2019": 0.766, + "2020": 0.759, + "2021": 0.759 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "National", + "GDLCODE": "SLEt", + "Region": "Total", + "1990": 0.189, + "1991": 0.184, + "1992": 0.193, + "1993": 0.202, + "1994": 0.211, + "1995": 0.22, + "1996": 0.228, + "1997": 0.237, + "1998": 0.246, + "1999": 0.254, + "2000": 0.263, + "2001": 0.272, + "2002": 0.282, + "2003": 0.293, + "2004": 0.303, + "2005": 0.314, + "2006": 0.326, + "2007": 0.338, + "2008": 0.35, + "2009": 0.361, + "2010": 0.373, + "2011": 0.378, + "2012": 0.382, + "2013": 0.386, + "2014": 0.391, + "2015": 0.395, + "2016": 0.401, + "2017": 0.407, + "2018": 0.413, + "2019": 0.418, + "2020": 0.418, + "2021": 0.418 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr109", + "Region": "Bo", + "1990": 0.192, + "1991": 0.187, + "1992": 0.196, + "1993": 0.205, + "1994": 0.214, + "1995": 0.223, + "1996": 0.232, + "1997": 0.241, + "1998": 0.249, + "1999": 0.258, + "2000": 0.267, + "2001": 0.276, + "2002": 0.287, + "2003": 0.297, + "2004": 0.308, + "2005": 0.32, + "2006": 0.331, + "2007": 0.344, + "2008": 0.356, + "2009": 0.369, + "2010": 0.383, + "2011": 0.389, + "2012": 0.395, + "2013": 0.401, + "2014": 0.408, + "2015": 0.414, + "2016": 0.421, + "2017": 0.429, + "2018": 0.421, + "2019": 0.415, + "2020": 0.415, + "2021": 0.415 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr101", + "Region": "Bombali", + "1990": 0.199, + "1991": 0.193, + "1992": 0.203, + "1993": 0.212, + "1994": 0.221, + "1995": 0.231, + "1996": 0.24, + "1997": 0.249, + "1998": 0.258, + "1999": 0.268, + "2000": 0.277, + "2001": 0.286, + "2002": 0.297, + "2003": 0.308, + "2004": 0.32, + "2005": 0.332, + "2006": 0.344, + "2007": 0.357, + "2008": 0.37, + "2009": 0.384, + "2010": 0.397, + "2011": 0.402, + "2012": 0.407, + "2013": 0.412, + "2014": 0.408, + "2015": 0.404, + "2016": 0.401, + "2017": 0.399, + "2018": 0.401, + "2019": 0.405, + "2020": 0.405, + "2021": 0.405 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr110", + "Region": "Bonthe", + "1990": 0.143, + "1991": 0.139, + "1992": 0.146, + "1993": 0.152, + "1994": 0.159, + "1995": 0.166, + "1996": 0.173, + "1997": 0.179, + "1998": 0.186, + "1999": 0.192, + "2000": 0.199, + "2001": 0.206, + "2002": 0.214, + "2003": 0.222, + "2004": 0.23, + "2005": 0.238, + "2006": 0.247, + "2007": 0.256, + "2008": 0.266, + "2009": 0.273, + "2010": 0.281, + "2011": 0.282, + "2012": 0.284, + "2013": 0.285, + "2014": 0.286, + "2015": 0.288, + "2016": 0.29, + "2017": 0.292, + "2018": 0.317, + "2019": 0.339, + "2020": 0.339, + "2021": 0.339 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr106", + "Region": "Kailahun", + "1990": 0.159, + "1991": 0.154, + "1992": 0.162, + "1993": 0.169, + "1994": 0.177, + "1995": 0.184, + "1996": 0.192, + "1997": 0.199, + "1998": 0.206, + "1999": 0.214, + "2000": 0.221, + "2001": 0.228, + "2002": 0.237, + "2003": 0.246, + "2004": 0.255, + "2005": 0.265, + "2006": 0.275, + "2007": 0.285, + "2008": 0.295, + "2009": 0.312, + "2010": 0.328, + "2011": 0.338, + "2012": 0.348, + "2013": 0.358, + "2014": 0.358, + "2015": 0.359, + "2016": 0.361, + "2017": 0.363, + "2018": 0.372, + "2019": 0.38, + "2020": 0.38, + "2021": 0.38 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr102", + "Region": "Kambia", + "1990": 0.127, + "1991": 0.121, + "1992": 0.127, + "1993": 0.133, + "1994": 0.139, + "1995": 0.145, + "1996": 0.151, + "1997": 0.157, + "1998": 0.163, + "1999": 0.169, + "2000": 0.175, + "2001": 0.181, + "2002": 0.188, + "2003": 0.195, + "2004": 0.203, + "2005": 0.211, + "2006": 0.219, + "2007": 0.227, + "2008": 0.235, + "2009": 0.244, + "2010": 0.253, + "2011": 0.256, + "2012": 0.259, + "2013": 0.262, + "2014": 0.27, + "2015": 0.278, + "2016": 0.287, + "2017": 0.294, + "2018": 0.324, + "2019": 0.353, + "2020": 0.353, + "2021": 0.353 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr107", + "Region": "Kenema", + "1990": 0.171, + "1991": 0.165, + "1992": 0.173, + "1993": 0.181, + "1994": 0.189, + "1995": 0.197, + "1996": 0.205, + "1997": 0.213, + "1998": 0.221, + "1999": 0.229, + "2000": 0.237, + "2001": 0.245, + "2002": 0.254, + "2003": 0.264, + "2004": 0.274, + "2005": 0.284, + "2006": 0.295, + "2007": 0.305, + "2008": 0.316, + "2009": 0.329, + "2010": 0.34, + "2011": 0.345, + "2012": 0.35, + "2013": 0.355, + "2014": 0.365, + "2015": 0.376, + "2016": 0.387, + "2017": 0.398, + "2018": 0.397, + "2019": 0.397, + "2020": 0.397, + "2021": 0.397 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr103", + "Region": "Koinadugu", + "1990": 0.099, + "1991": 0.095, + "1992": 0.1, + "1993": 0.104, + "1994": 0.109, + "1995": 0.114, + "1996": 0.118, + "1997": 0.123, + "1998": 0.128, + "1999": 0.132, + "2000": 0.137, + "2001": 0.142, + "2002": 0.147, + "2003": 0.153, + "2004": 0.159, + "2005": 0.165, + "2006": 0.172, + "2007": 0.178, + "2008": 0.185, + "2009": 0.2, + "2010": 0.216, + "2011": 0.226, + "2012": 0.237, + "2013": 0.248, + "2014": 0.254, + "2015": 0.26, + "2016": 0.266, + "2017": 0.272, + "2018": 0.295, + "2019": 0.318, + "2020": 0.318, + "2021": 0.318 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr108", + "Region": "Kono", + "1990": 0.176, + "1991": 0.17, + "1992": 0.178, + "1993": 0.187, + "1994": 0.195, + "1995": 0.203, + "1996": 0.211, + "1997": 0.219, + "1998": 0.227, + "1999": 0.236, + "2000": 0.244, + "2001": 0.252, + "2002": 0.262, + "2003": 0.272, + "2004": 0.282, + "2005": 0.292, + "2006": 0.303, + "2007": 0.315, + "2008": 0.326, + "2009": 0.332, + "2010": 0.338, + "2011": 0.336, + "2012": 0.335, + "2013": 0.333, + "2014": 0.342, + "2015": 0.35, + "2016": 0.36, + "2017": 0.368, + "2018": 0.382, + "2019": 0.395, + "2020": 0.395, + "2021": 0.395 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr111", + "Region": "Moyamba", + "1990": 0.148, + "1991": 0.144, + "1992": 0.151, + "1993": 0.158, + "1994": 0.165, + "1995": 0.172, + "1996": 0.179, + "1997": 0.186, + "1998": 0.192, + "1999": 0.199, + "2000": 0.206, + "2001": 0.213, + "2002": 0.221, + "2003": 0.229, + "2004": 0.238, + "2005": 0.246, + "2006": 0.255, + "2007": 0.265, + "2008": 0.274, + "2009": 0.283, + "2010": 0.293, + "2011": 0.296, + "2012": 0.299, + "2013": 0.303, + "2014": 0.298, + "2015": 0.294, + "2016": 0.292, + "2017": 0.289, + "2018": 0.328, + "2019": 0.365, + "2020": 0.365, + "2021": 0.365 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr104", + "Region": "Port Loko", + "1990": 0.158, + "1991": 0.153, + "1992": 0.16, + "1993": 0.168, + "1994": 0.175, + "1995": 0.183, + "1996": 0.19, + "1997": 0.197, + "1998": 0.205, + "1999": 0.212, + "2000": 0.219, + "2001": 0.227, + "2002": 0.235, + "2003": 0.244, + "2004": 0.254, + "2005": 0.263, + "2006": 0.273, + "2007": 0.283, + "2008": 0.293, + "2009": 0.303, + "2010": 0.313, + "2011": 0.317, + "2012": 0.321, + "2013": 0.324, + "2014": 0.334, + "2015": 0.344, + "2016": 0.354, + "2017": 0.364, + "2018": 0.368, + "2019": 0.372, + "2020": 0.372, + "2021": 0.372 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr112", + "Region": "Pujehun", + "1990": 0.095, + "1991": 0.092, + "1992": 0.096, + "1993": 0.101, + "1994": 0.105, + "1995": 0.11, + "1996": 0.114, + "1997": 0.119, + "1998": 0.123, + "1999": 0.127, + "2000": 0.132, + "2001": 0.136, + "2002": 0.141, + "2003": 0.147, + "2004": 0.152, + "2005": 0.158, + "2006": 0.164, + "2007": 0.17, + "2008": 0.176, + "2009": 0.198, + "2010": 0.22, + "2011": 0.238, + "2012": 0.256, + "2013": 0.274, + "2014": 0.281, + "2015": 0.287, + "2016": 0.293, + "2017": 0.299, + "2018": 0.308, + "2019": 0.316, + "2020": 0.316, + "2021": 0.316 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr105", + "Region": "Tonkolili", + "1990": 0.136, + "1991": 0.131, + "1992": 0.137, + "1993": 0.144, + "1994": 0.15, + "1995": 0.157, + "1996": 0.163, + "1997": 0.169, + "1998": 0.176, + "1999": 0.182, + "2000": 0.188, + "2001": 0.195, + "2002": 0.202, + "2003": 0.21, + "2004": 0.218, + "2005": 0.227, + "2006": 0.235, + "2007": 0.244, + "2008": 0.253, + "2009": 0.272, + "2010": 0.291, + "2011": 0.304, + "2012": 0.316, + "2013": 0.329, + "2014": 0.32, + "2015": 0.313, + "2016": 0.308, + "2017": 0.303, + "2018": 0.331, + "2019": 0.359, + "2020": 0.359, + "2021": 0.359 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr113", + "Region": "Western Rural", + "1990": 0.234, + "1991": 0.231, + "1992": 0.242, + "1993": 0.253, + "1994": 0.264, + "1995": 0.275, + "1996": 0.286, + "1997": 0.297, + "1998": 0.307, + "1999": 0.318, + "2000": 0.328, + "2001": 0.339, + "2002": 0.352, + "2003": 0.365, + "2004": 0.378, + "2005": 0.391, + "2006": 0.405, + "2007": 0.419, + "2008": 0.433, + "2009": 0.453, + "2010": 0.474, + "2011": 0.486, + "2012": 0.498, + "2013": 0.51, + "2014": 0.501, + "2015": 0.494, + "2016": 0.49, + "2017": 0.487, + "2018": 0.497, + "2019": 0.507, + "2020": 0.507, + "2021": 0.507 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr114", + "Region": "Western Urban", + "1990": 0.356, + "1991": 0.354, + "1992": 0.371, + "1993": 0.388, + "1994": 0.405, + "1995": 0.422, + "1996": 0.438, + "1997": 0.454, + "1998": 0.47, + "1999": 0.486, + "2000": 0.502, + "2001": 0.519, + "2002": 0.538, + "2003": 0.557, + "2004": 0.576, + "2005": 0.596, + "2006": 0.617, + "2007": 0.637, + "2008": 0.658, + "2009": 0.663, + "2010": 0.668, + "2011": 0.663, + "2012": 0.657, + "2013": 0.652, + "2014": 0.631, + "2015": 0.614, + "2016": 0.602, + "2017": 0.593, + "2018": 0.599, + "2019": 0.607, + "2020": 0.607, + "2021": 0.607 + }, + { + "Country": "Singapore", + "Continent": "Asia/Pacific", + "ISO_Code": "SGP", + "Level": "National", + "GDLCODE": "SGPt", + "Region": "Total", + "1990": 0.507, + "1991": 0.522, + "1992": 0.538, + "1993": 0.553, + "1994": 0.569, + "1995": 0.584, + "1996": 0.599, + "1997": 0.614, + "1998": 0.629, + "1999": 0.645, + "2000": 0.66, + "2001": 0.666, + "2002": 0.678, + "2003": 0.687, + "2004": 0.693, + "2005": 0.738, + "2006": 0.74, + "2007": 0.746, + "2008": 0.76, + "2009": 0.763, + "2010": 0.795, + "2011": 0.803, + "2012": 0.814, + "2013": 0.818, + "2014": 0.829, + "2015": 0.833, + "2016": 0.84, + "2017": 0.842, + "2018": 0.85, + "2019": 0.854, + "2020": 0.857, + "2021": 0.857 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "National", + "GDLCODE": "SVKt", + "Region": "Total", + "1990": 0.549, + "1991": 0.562, + "1992": 0.574, + "1993": 0.587, + "1994": 0.6, + "1995": 0.615, + "1996": 0.63, + "1997": 0.643, + "1998": 0.669, + "1999": 0.683, + "2000": 0.7, + "2001": 0.709, + "2002": 0.725, + "2003": 0.738, + "2004": 0.751, + "2005": 0.766, + "2006": 0.78, + "2007": 0.796, + "2008": 0.807, + "2009": 0.817, + "2010": 0.826, + "2011": 0.832, + "2012": 0.828, + "2013": 0.83, + "2014": 0.826, + "2015": 0.829, + "2016": 0.827, + "2017": 0.828, + "2018": 0.831, + "2019": 0.834, + "2020": 0.834, + "2021": 0.834 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr101", + "Region": "Bratislavsky kraj", + "1990": 0.75, + "1991": 0.761, + "1992": 0.772, + "1993": 0.783, + "1994": 0.794, + "1995": 0.806, + "1996": 0.817, + "1997": 0.828, + "1998": 0.839, + "1999": 0.851, + "2000": 0.862, + "2001": 0.869, + "2002": 0.875, + "2003": 0.884, + "2004": 0.893, + "2005": 0.9, + "2006": 0.905, + "2007": 0.914, + "2008": 0.922, + "2009": 0.934, + "2010": 0.942, + "2011": 0.954, + "2012": 0.95, + "2013": 0.95, + "2014": 0.953, + "2015": 0.955, + "2016": 0.958, + "2017": 0.966, + "2018": 0.968, + "2019": 0.971, + "2020": 0.971, + "2021": 0.971 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr103", + "Region": "Stredne Slovensko", + "1990": 0.622, + "1991": 0.632, + "1992": 0.642, + "1993": 0.652, + "1994": 0.662, + "1995": 0.673, + "1996": 0.683, + "1997": 0.693, + "1998": 0.703, + "1999": 0.713, + "2000": 0.724, + "2001": 0.733, + "2002": 0.741, + "2003": 0.749, + "2004": 0.758, + "2005": 0.766, + "2006": 0.772, + "2007": 0.776, + "2008": 0.786, + "2009": 0.794, + "2010": 0.803, + "2011": 0.809, + "2012": 0.805, + "2013": 0.807, + "2014": 0.802, + "2015": 0.809, + "2016": 0.806, + "2017": 0.806, + "2018": 0.809, + "2019": 0.812, + "2020": 0.812, + "2021": 0.812 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr104", + "Region": "Vychodne Slovensko", + "1990": 0.598, + "1991": 0.607, + "1992": 0.618, + "1993": 0.628, + "1994": 0.638, + "1995": 0.648, + "1996": 0.658, + "1997": 0.669, + "1998": 0.679, + "1999": 0.689, + "2000": 0.699, + "2001": 0.711, + "2002": 0.719, + "2003": 0.726, + "2004": 0.732, + "2005": 0.737, + "2006": 0.747, + "2007": 0.755, + "2008": 0.762, + "2009": 0.768, + "2010": 0.775, + "2011": 0.782, + "2012": 0.777, + "2013": 0.781, + "2014": 0.78, + "2015": 0.781, + "2016": 0.779, + "2017": 0.779, + "2018": 0.786, + "2019": 0.785, + "2020": 0.785, + "2021": 0.785 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr102", + "Region": "Zapadne Slovensko", + "1990": 0.629, + "1991": 0.639, + "1992": 0.649, + "1993": 0.659, + "1994": 0.67, + "1995": 0.68, + "1996": 0.69, + "1997": 0.7, + "1998": 0.71, + "1999": 0.72, + "2000": 0.731, + "2001": 0.742, + "2002": 0.748, + "2003": 0.756, + "2004": 0.763, + "2005": 0.772, + "2006": 0.78, + "2007": 0.788, + "2008": 0.794, + "2009": 0.801, + "2010": 0.808, + "2011": 0.815, + "2012": 0.812, + "2013": 0.813, + "2014": 0.811, + "2015": 0.816, + "2016": 0.819, + "2017": 0.819, + "2018": 0.818, + "2019": 0.82, + "2020": 0.82, + "2021": 0.82 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "National", + "GDLCODE": "SVNt", + "Region": "Total", + "1990": 0.572, + "1991": 0.585, + "1992": 0.602, + "1993": 0.61, + "1994": 0.625, + "1995": 0.644, + "1996": 0.661, + "1997": 0.682, + "1998": 0.708, + "1999": 0.743, + "2000": 0.76, + "2001": 0.794, + "2002": 0.82, + "2003": 0.844, + "2004": 0.848, + "2005": 0.854, + "2006": 0.862, + "2007": 0.862, + "2008": 0.868, + "2009": 0.873, + "2010": 0.878, + "2011": 0.879, + "2012": 0.881, + "2013": 0.905, + "2014": 0.896, + "2015": 0.899, + "2016": 0.908, + "2017": 0.911, + "2018": 0.914, + "2019": 0.917, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr110", + "Region": "Gorenjska", + "1990": 0.577, + "1991": 0.59, + "1992": 0.607, + "1993": 0.615, + "1994": 0.63, + "1995": 0.649, + "1996": 0.667, + "1997": 0.687, + "1998": 0.714, + "1999": 0.749, + "2000": 0.766, + "2001": 0.801, + "2002": 0.826, + "2003": 0.851, + "2004": 0.855, + "2005": 0.86, + "2006": 0.869, + "2007": 0.869, + "2008": 0.875, + "2009": 0.88, + "2010": 0.885, + "2011": 0.886, + "2012": 0.888, + "2013": 0.911, + "2014": 0.902, + "2015": 0.905, + "2016": 0.914, + "2017": 0.917, + "2018": 0.919, + "2019": 0.923, + "2020": 0.923, + "2021": 0.923 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr111", + "Region": "Goriska", + "1990": 0.565, + "1991": 0.578, + "1992": 0.595, + "1993": 0.603, + "1994": 0.618, + "1995": 0.636, + "1996": 0.653, + "1997": 0.674, + "1998": 0.7, + "1999": 0.734, + "2000": 0.751, + "2001": 0.785, + "2002": 0.81, + "2003": 0.834, + "2004": 0.838, + "2005": 0.843, + "2006": 0.852, + "2007": 0.852, + "2008": 0.858, + "2009": 0.863, + "2010": 0.868, + "2011": 0.869, + "2012": 0.87, + "2013": 0.893, + "2014": 0.884, + "2015": 0.888, + "2016": 0.897, + "2017": 0.9, + "2018": 0.903, + "2019": 0.906, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr107", + "Region": "Jugovzhodna Slovenija", + "1990": 0.551, + "1991": 0.564, + "1992": 0.58, + "1993": 0.588, + "1994": 0.603, + "1995": 0.621, + "1996": 0.637, + "1997": 0.657, + "1998": 0.682, + "1999": 0.716, + "2000": 0.732, + "2001": 0.765, + "2002": 0.79, + "2003": 0.813, + "2004": 0.817, + "2005": 0.822, + "2006": 0.831, + "2007": 0.83, + "2008": 0.836, + "2009": 0.841, + "2010": 0.846, + "2011": 0.847, + "2012": 0.85, + "2013": 0.875, + "2014": 0.867, + "2015": 0.871, + "2016": 0.881, + "2017": 0.884, + "2018": 0.887, + "2019": 0.89, + "2020": 0.89, + "2021": 0.89 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr103", + "Region": "Koroska", + "1990": 0.556, + "1991": 0.568, + "1992": 0.585, + "1993": 0.593, + "1994": 0.608, + "1995": 0.626, + "1996": 0.642, + "1997": 0.662, + "1998": 0.688, + "1999": 0.722, + "2000": 0.738, + "2001": 0.772, + "2002": 0.796, + "2003": 0.82, + "2004": 0.824, + "2005": 0.829, + "2006": 0.838, + "2007": 0.837, + "2008": 0.843, + "2009": 0.849, + "2010": 0.853, + "2011": 0.854, + "2012": 0.856, + "2013": 0.878, + "2014": 0.869, + "2015": 0.873, + "2016": 0.882, + "2017": 0.884, + "2018": 0.887, + "2019": 0.89, + "2020": 0.89, + "2021": 0.89 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr112", + "Region": "Obalno-kraska", + "1990": 0.57, + "1991": 0.583, + "1992": 0.601, + "1993": 0.609, + "1994": 0.624, + "1995": 0.642, + "1996": 0.659, + "1997": 0.68, + "1998": 0.706, + "1999": 0.741, + "2000": 0.757, + "2001": 0.792, + "2002": 0.817, + "2003": 0.842, + "2004": 0.846, + "2005": 0.851, + "2006": 0.86, + "2007": 0.859, + "2008": 0.865, + "2009": 0.871, + "2010": 0.876, + "2011": 0.877, + "2012": 0.879, + "2013": 0.902, + "2014": 0.894, + "2015": 0.897, + "2016": 0.906, + "2017": 0.909, + "2018": 0.912, + "2019": 0.915, + "2020": 0.915, + "2021": 0.915 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr109", + "Region": "Osrednjeslovenska", + "1990": 0.6, + "1991": 0.613, + "1992": 0.632, + "1993": 0.64, + "1994": 0.656, + "1995": 0.675, + "1996": 0.693, + "1997": 0.715, + "1998": 0.743, + "1999": 0.78, + "2000": 0.797, + "2001": 0.833, + "2002": 0.859, + "2003": 0.885, + "2004": 0.89, + "2005": 0.895, + "2006": 0.904, + "2007": 0.904, + "2008": 0.91, + "2009": 0.916, + "2010": 0.921, + "2011": 0.922, + "2012": 0.924, + "2013": 0.932, + "2014": 0.934, + "2015": 0.939, + "2016": 0.942, + "2017": 0.944, + "2018": 0.945, + "2019": 0.947, + "2020": 0.947, + "2021": 0.947 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr102", + "Region": "Podravska", + "1990": 0.569, + "1991": 0.581, + "1992": 0.599, + "1993": 0.607, + "1994": 0.622, + "1995": 0.64, + "1996": 0.657, + "1997": 0.678, + "1998": 0.704, + "1999": 0.739, + "2000": 0.755, + "2001": 0.79, + "2002": 0.815, + "2003": 0.839, + "2004": 0.843, + "2005": 0.848, + "2006": 0.857, + "2007": 0.857, + "2008": 0.863, + "2009": 0.868, + "2010": 0.873, + "2011": 0.874, + "2012": 0.876, + "2013": 0.899, + "2014": 0.891, + "2015": 0.894, + "2016": 0.903, + "2017": 0.906, + "2018": 0.908, + "2019": 0.911, + "2020": 0.911, + "2021": 0.911 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr101", + "Region": "Pomurska", + "1990": 0.545, + "1991": 0.558, + "1992": 0.574, + "1993": 0.582, + "1994": 0.596, + "1995": 0.614, + "1996": 0.631, + "1997": 0.65, + "1998": 0.675, + "1999": 0.709, + "2000": 0.725, + "2001": 0.758, + "2002": 0.782, + "2003": 0.805, + "2004": 0.809, + "2005": 0.814, + "2006": 0.822, + "2007": 0.822, + "2008": 0.828, + "2009": 0.833, + "2010": 0.838, + "2011": 0.839, + "2012": 0.84, + "2013": 0.862, + "2014": 0.854, + "2015": 0.857, + "2016": 0.866, + "2017": 0.869, + "2018": 0.871, + "2019": 0.874, + "2020": 0.874, + "2021": 0.874 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr106", + "Region": "Posavska", + "1990": 0.55, + "1991": 0.562, + "1992": 0.579, + "1993": 0.587, + "1994": 0.601, + "1995": 0.619, + "1996": 0.636, + "1997": 0.655, + "1998": 0.681, + "1999": 0.715, + "2000": 0.731, + "2001": 0.764, + "2002": 0.788, + "2003": 0.812, + "2004": 0.816, + "2005": 0.821, + "2006": 0.829, + "2007": 0.829, + "2008": 0.835, + "2009": 0.84, + "2010": 0.845, + "2011": 0.845, + "2012": 0.848, + "2013": 0.872, + "2014": 0.864, + "2015": 0.868, + "2016": 0.878, + "2017": 0.881, + "2018": 0.883, + "2019": 0.886, + "2020": 0.886, + "2021": 0.886 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr108", + "Region": "Primorsko-notranjska", + "1990": 0.56, + "1991": 0.573, + "1992": 0.59, + "1993": 0.598, + "1994": 0.612, + "1995": 0.631, + "1996": 0.647, + "1997": 0.667, + "1998": 0.693, + "1999": 0.728, + "2000": 0.744, + "2001": 0.778, + "2002": 0.802, + "2003": 0.827, + "2004": 0.831, + "2005": 0.836, + "2006": 0.844, + "2007": 0.844, + "2008": 0.85, + "2009": 0.855, + "2010": 0.86, + "2011": 0.861, + "2012": 0.863, + "2013": 0.887, + "2014": 0.878, + "2015": 0.881, + "2016": 0.89, + "2017": 0.893, + "2018": 0.895, + "2019": 0.899, + "2020": 0.899, + "2021": 0.899 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr104", + "Region": "Savinjska", + "1990": 0.561, + "1991": 0.574, + "1992": 0.591, + "1993": 0.599, + "1994": 0.613, + "1995": 0.632, + "1996": 0.649, + "1997": 0.669, + "1998": 0.695, + "1999": 0.729, + "2000": 0.745, + "2001": 0.779, + "2002": 0.804, + "2003": 0.828, + "2004": 0.832, + "2005": 0.837, + "2006": 0.846, + "2007": 0.845, + "2008": 0.851, + "2009": 0.857, + "2010": 0.861, + "2011": 0.862, + "2012": 0.864, + "2013": 0.887, + "2014": 0.879, + "2015": 0.883, + "2016": 0.892, + "2017": 0.895, + "2018": 0.897, + "2019": 0.9, + "2020": 0.9, + "2021": 0.9 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr105", + "Region": "Zasavska", + "1990": 0.554, + "1991": 0.566, + "1992": 0.583, + "1993": 0.591, + "1994": 0.605, + "1995": 0.624, + "1996": 0.64, + "1997": 0.66, + "1998": 0.686, + "1999": 0.72, + "2000": 0.736, + "2001": 0.769, + "2002": 0.793, + "2003": 0.817, + "2004": 0.821, + "2005": 0.826, + "2006": 0.835, + "2007": 0.834, + "2008": 0.84, + "2009": 0.846, + "2010": 0.85, + "2011": 0.851, + "2012": 0.852, + "2013": 0.875, + "2014": 0.865, + "2015": 0.87, + "2016": 0.879, + "2017": 0.882, + "2018": 0.884, + "2019": 0.887, + "2020": 0.887, + "2021": 0.887 + }, + { + "Country": "Solomon Islands", + "Continent": "Asia/Pacific", + "ISO_Code": "SLB", + "Level": "National", + "GDLCODE": "SLBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.35, + "2000": 0.336, + "2001": 0.357, + "2002": 0.377, + "2003": 0.382, + "2004": 0.388, + "2005": 0.394, + "2006": 0.413, + "2007": 0.421, + "2008": 0.436, + "2009": 0.451, + "2010": 0.467, + "2011": 0.471, + "2012": 0.468, + "2013": 0.469, + "2014": 0.47, + "2015": 0.473, + "2016": 0.471, + "2017": 0.474, + "2018": 0.473, + "2019": 0.477, + "2020": 0.477, + "2021": 0.477 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "National", + "GDLCODE": "SOMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.283, + "2007": 0.271, + "2008": 0.259, + "2009": 0.247, + "2010": 0.235, + "2011": 0.223, + "2012": 0.211, + "2013": 0.212, + "2014": 0.214, + "2015": 0.218, + "2016": 0.22, + "2017": 0.222, + "2018": 0.224, + "2019": 0.227, + "2020": 0.227, + "2021": 0.227 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr102", + "Region": "Awdal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.257, + "2007": 0.246, + "2008": 0.236, + "2009": 0.225, + "2010": 0.215, + "2011": 0.205, + "2012": 0.194, + "2013": 0.195, + "2014": 0.197, + "2015": 0.201, + "2016": 0.202, + "2017": 0.204, + "2018": 0.206, + "2019": 0.209, + "2020": 0.209, + "2021": 0.209 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr109", + "Region": "Bakool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.22, + "2007": 0.207, + "2008": 0.194, + "2009": 0.181, + "2010": 0.168, + "2011": 0.155, + "2012": 0.141, + "2013": 0.142, + "2014": 0.144, + "2015": 0.146, + "2016": 0.147, + "2017": 0.149, + "2018": 0.15, + "2019": 0.152, + "2020": 0.152, + "2021": 0.152 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr116", + "Region": "Banadir", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.418, + "2007": 0.408, + "2008": 0.398, + "2009": 0.389, + "2010": 0.379, + "2011": 0.37, + "2012": 0.36, + "2013": 0.362, + "2014": 0.366, + "2015": 0.372, + "2016": 0.376, + "2017": 0.379, + "2018": 0.383, + "2019": 0.387, + "2020": 0.387, + "2021": 0.387 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr108", + "Region": "Bari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.33, + "2007": 0.32, + "2008": 0.31, + "2009": 0.3, + "2010": 0.289, + "2011": 0.279, + "2012": 0.268, + "2013": 0.27, + "2014": 0.273, + "2015": 0.278, + "2016": 0.28, + "2017": 0.283, + "2018": 0.286, + "2019": 0.288, + "2020": 0.288, + "2021": 0.288 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr110", + "Region": "Bay", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.244, + "2007": 0.228, + "2008": 0.212, + "2009": 0.196, + "2010": 0.18, + "2011": 0.164, + "2012": 0.147, + "2013": 0.148, + "2014": 0.15, + "2015": 0.153, + "2016": 0.154, + "2017": 0.155, + "2018": 0.157, + "2019": 0.159, + "2020": 0.159, + "2021": 0.159 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr117", + "Region": "Galguduud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.167, + "2007": 0.158, + "2008": 0.148, + "2009": 0.139, + "2010": 0.13, + "2011": 0.12, + "2012": 0.111, + "2013": 0.112, + "2014": 0.113, + "2015": 0.115, + "2016": 0.116, + "2017": 0.117, + "2018": 0.118, + "2019": 0.119, + "2020": 0.119, + "2021": 0.119 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr111", + "Region": "Gedo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.268, + "2007": 0.253, + "2008": 0.237, + "2009": 0.221, + "2010": 0.205, + "2011": 0.19, + "2012": 0.174, + "2013": 0.175, + "2014": 0.177, + "2015": 0.18, + "2016": 0.181, + "2017": 0.183, + "2018": 0.185, + "2019": 0.187, + "2020": 0.187, + "2021": 0.187 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr113", + "Region": "Hiran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.124, + "2007": 0.117, + "2008": 0.11, + "2009": 0.104, + "2010": 0.097, + "2011": 0.09, + "2012": 0.084, + "2013": 0.084, + "2014": 0.085, + "2015": 0.087, + "2016": 0.087, + "2017": 0.088, + "2018": 0.089, + "2019": 0.09, + "2020": 0.09, + "2021": 0.09 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr118", + "Region": "Lower Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.228, + "2007": 0.217, + "2008": 0.206, + "2009": 0.195, + "2010": 0.184, + "2011": 0.173, + "2012": 0.162, + "2013": 0.163, + "2014": 0.165, + "2015": 0.168, + "2016": 0.169, + "2017": 0.171, + "2018": 0.173, + "2019": 0.175, + "2020": 0.175, + "2021": 0.175 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr115", + "Region": "Lower Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.244, + "2007": 0.234, + "2008": 0.225, + "2009": 0.216, + "2010": 0.206, + "2011": 0.197, + "2012": 0.187, + "2013": 0.188, + "2014": 0.19, + "2015": 0.194, + "2016": 0.195, + "2017": 0.197, + "2018": 0.199, + "2019": 0.201, + "2020": 0.201, + "2021": 0.201 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr112", + "Region": "Middle Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.061, + "2007": 0.06, + "2008": 0.06, + "2009": 0.059, + "2010": 0.058, + "2011": 0.058, + "2012": 0.057, + "2013": 0.057, + "2014": 0.058, + "2015": 0.059, + "2016": 0.059, + "2017": 0.06, + "2018": 0.061, + "2019": 0.061, + "2020": 0.061, + "2021": 0.061 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr114", + "Region": "Middle Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.226, + "2007": 0.212, + "2008": 0.197, + "2009": 0.182, + "2010": 0.167, + "2011": 0.152, + "2012": 0.138, + "2013": 0.138, + "2014": 0.14, + "2015": 0.142, + "2016": 0.144, + "2017": 0.145, + "2018": 0.147, + "2019": 0.148, + "2020": 0.148, + "2021": 0.148 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr106", + "Region": "Mudug", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.287, + "2007": 0.273, + "2008": 0.259, + "2009": 0.245, + "2010": 0.231, + "2011": 0.217, + "2012": 0.202, + "2013": 0.204, + "2014": 0.206, + "2015": 0.21, + "2016": 0.211, + "2017": 0.214, + "2018": 0.216, + "2019": 0.218, + "2020": 0.218, + "2021": 0.218 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr107", + "Region": "Nugal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.316, + "2007": 0.301, + "2008": 0.286, + "2009": 0.27, + "2010": 0.255, + "2011": 0.24, + "2012": 0.224, + "2013": 0.226, + "2014": 0.228, + "2015": 0.232, + "2016": 0.234, + "2017": 0.236, + "2018": 0.239, + "2019": 0.241, + "2020": 0.241, + "2021": 0.241 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr103", + "Region": "Sanaag", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.377, + "2007": 0.364, + "2008": 0.35, + "2009": 0.337, + "2010": 0.323, + "2011": 0.31, + "2012": 0.296, + "2013": 0.298, + "2014": 0.301, + "2015": 0.307, + "2016": 0.309, + "2017": 0.312, + "2018": 0.315, + "2019": 0.319, + "2020": 0.319, + "2021": 0.319 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr104", + "Region": "Sool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.201, + "2007": 0.193, + "2008": 0.186, + "2009": 0.178, + "2010": 0.17, + "2011": 0.163, + "2012": 0.155, + "2013": 0.156, + "2014": 0.158, + "2015": 0.161, + "2016": 0.162, + "2017": 0.164, + "2018": 0.165, + "2019": 0.167, + "2020": 0.167, + "2021": 0.167 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr105", + "Region": "Togdhere", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.257, + "2007": 0.244, + "2008": 0.231, + "2009": 0.217, + "2010": 0.204, + "2011": 0.191, + "2012": 0.178, + "2013": 0.179, + "2014": 0.181, + "2015": 0.184, + "2016": 0.185, + "2017": 0.187, + "2018": 0.189, + "2019": 0.191, + "2020": 0.191, + "2021": 0.191 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr101", + "Region": "W Galbeed", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.389, + "2007": 0.379, + "2008": 0.368, + "2009": 0.358, + "2010": 0.347, + "2011": 0.336, + "2012": 0.325, + "2013": 0.327, + "2014": 0.331, + "2015": 0.337, + "2016": 0.34, + "2017": 0.343, + "2018": 0.347, + "2019": 0.35, + "2020": 0.35, + "2021": 0.35 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "National", + "GDLCODE": "ZAFt", + "Region": "Total", + "1990": 0.534, + "1991": 0.562, + "1992": 0.582, + "1993": 0.602, + "1994": 0.622, + "1995": 0.634, + "1996": 0.628, + "1997": 0.623, + "1998": 0.617, + "1999": 0.611, + "2000": 0.606, + "2001": 0.613, + "2002": 0.65, + "2003": 0.659, + "2004": 0.662, + "2005": 0.665, + "2006": 0.668, + "2007": 0.673, + "2008": 0.678, + "2009": 0.692, + "2010": 0.695, + "2011": 0.697, + "2012": 0.706, + "2013": 0.717, + "2014": 0.727, + "2015": 0.73, + "2016": 0.729, + "2017": 0.721, + "2018": 0.735, + "2019": 0.758, + "2020": 0.758, + "2021": 0.758 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr102", + "Region": "Eastern Cape", + "1990": 0.523, + "1991": 0.55, + "1992": 0.569, + "1993": 0.588, + "1994": 0.607, + "1995": 0.618, + "1996": 0.613, + "1997": 0.608, + "1998": 0.603, + "1999": 0.598, + "2000": 0.592, + "2001": 0.598, + "2002": 0.63, + "2003": 0.637, + "2004": 0.639, + "2005": 0.642, + "2006": 0.643, + "2007": 0.647, + "2008": 0.652, + "2009": 0.663, + "2010": 0.665, + "2011": 0.666, + "2012": 0.673, + "2013": 0.682, + "2014": 0.691, + "2015": 0.693, + "2016": 0.691, + "2017": 0.683, + "2018": 0.694, + "2019": 0.716, + "2020": 0.716, + "2021": 0.716 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr104", + "Region": "Free State", + "1990": 0.552, + "1991": 0.582, + "1992": 0.602, + "1993": 0.622, + "1994": 0.642, + "1995": 0.654, + "1996": 0.649, + "1997": 0.643, + "1998": 0.638, + "1999": 0.63, + "2000": 0.622, + "2001": 0.627, + "2002": 0.66, + "2003": 0.666, + "2004": 0.666, + "2005": 0.667, + "2006": 0.667, + "2007": 0.669, + "2008": 0.672, + "2009": 0.683, + "2010": 0.684, + "2011": 0.683, + "2012": 0.694, + "2013": 0.706, + "2014": 0.719, + "2015": 0.724, + "2016": 0.725, + "2017": 0.717, + "2018": 0.73, + "2019": 0.753, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr107", + "Region": "Gauteng", + "1990": 0.597, + "1991": 0.629, + "1992": 0.652, + "1993": 0.675, + "1994": 0.698, + "1995": 0.714, + "1996": 0.706, + "1997": 0.699, + "1998": 0.691, + "1999": 0.681, + "2000": 0.671, + "2001": 0.677, + "2002": 0.719, + "2003": 0.727, + "2004": 0.728, + "2005": 0.729, + "2006": 0.729, + "2007": 0.732, + "2008": 0.736, + "2009": 0.749, + "2010": 0.75, + "2011": 0.75, + "2012": 0.756, + "2013": 0.763, + "2014": 0.77, + "2015": 0.769, + "2016": 0.764, + "2017": 0.756, + "2018": 0.772, + "2019": 0.797, + "2020": 0.797, + "2021": 0.797 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr105", + "Region": "KwaZulu Natal", + "1990": 0.489, + "1991": 0.515, + "1992": 0.533, + "1993": 0.551, + "1994": 0.569, + "1995": 0.581, + "1996": 0.575, + "1997": 0.57, + "1998": 0.565, + "1999": 0.563, + "2000": 0.561, + "2001": 0.571, + "2002": 0.607, + "2003": 0.618, + "2004": 0.624, + "2005": 0.63, + "2006": 0.636, + "2007": 0.644, + "2008": 0.652, + "2009": 0.668, + "2010": 0.674, + "2011": 0.678, + "2012": 0.687, + "2013": 0.698, + "2014": 0.709, + "2015": 0.713, + "2016": 0.712, + "2017": 0.705, + "2018": 0.717, + "2019": 0.739, + "2020": 0.739, + "2021": 0.739 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr108", + "Region": "Mpumalanga", + "1990": 0.502, + "1991": 0.529, + "1992": 0.547, + "1993": 0.565, + "1994": 0.582, + "1995": 0.593, + "1996": 0.588, + "1997": 0.584, + "1998": 0.58, + "1999": 0.576, + "2000": 0.573, + "2001": 0.581, + "2002": 0.613, + "2003": 0.622, + "2004": 0.627, + "2005": 0.631, + "2006": 0.635, + "2007": 0.641, + "2008": 0.647, + "2009": 0.661, + "2010": 0.665, + "2011": 0.668, + "2012": 0.678, + "2013": 0.69, + "2014": 0.703, + "2015": 0.708, + "2016": 0.709, + "2017": 0.701, + "2018": 0.713, + "2019": 0.735, + "2020": 0.735, + "2021": 0.735 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr106", + "Region": "North West", + "1990": 0.52, + "1991": 0.547, + "1992": 0.566, + "1993": 0.585, + "1994": 0.603, + "1995": 0.615, + "1996": 0.61, + "1997": 0.605, + "1998": 0.6, + "1999": 0.593, + "2000": 0.586, + "2001": 0.591, + "2002": 0.622, + "2003": 0.628, + "2004": 0.629, + "2005": 0.63, + "2006": 0.63, + "2007": 0.633, + "2008": 0.636, + "2009": 0.647, + "2010": 0.647, + "2011": 0.647, + "2012": 0.657, + "2013": 0.668, + "2014": 0.679, + "2015": 0.683, + "2016": 0.683, + "2017": 0.676, + "2018": 0.688, + "2019": 0.71, + "2020": 0.71, + "2021": 0.71 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr103", + "Region": "Northern Cape", + "1990": 0.48, + "1991": 0.506, + "1992": 0.524, + "1993": 0.542, + "1994": 0.56, + "1995": 0.571, + "1996": 0.566, + "1997": 0.561, + "1998": 0.555, + "1999": 0.55, + "2000": 0.545, + "2001": 0.552, + "2002": 0.586, + "2003": 0.594, + "2004": 0.597, + "2005": 0.601, + "2006": 0.603, + "2007": 0.608, + "2008": 0.613, + "2009": 0.626, + "2010": 0.629, + "2011": 0.631, + "2012": 0.643, + "2013": 0.656, + "2014": 0.67, + "2015": 0.677, + "2016": 0.679, + "2017": 0.672, + "2018": 0.684, + "2019": 0.705, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr109", + "Region": "Northern Province", + "1990": 0.509, + "1991": 0.536, + "1992": 0.554, + "1993": 0.571, + "1994": 0.589, + "1995": 0.598, + "1996": 0.595, + "1997": 0.591, + "1998": 0.587, + "1999": 0.585, + "2000": 0.582, + "2001": 0.59, + "2002": 0.62, + "2003": 0.629, + "2004": 0.633, + "2005": 0.638, + "2006": 0.642, + "2007": 0.648, + "2008": 0.654, + "2009": 0.667, + "2010": 0.672, + "2011": 0.675, + "2012": 0.687, + "2013": 0.703, + "2014": 0.718, + "2015": 0.726, + "2016": 0.729, + "2017": 0.721, + "2018": 0.732, + "2019": 0.753, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr101", + "Region": "Western Cape", + "1990": 0.546, + "1991": 0.575, + "1992": 0.596, + "1993": 0.617, + "1994": 0.638, + "1995": 0.653, + "1996": 0.646, + "1997": 0.639, + "1998": 0.632, + "1999": 0.624, + "2000": 0.617, + "2001": 0.624, + "2002": 0.665, + "2003": 0.674, + "2004": 0.676, + "2005": 0.679, + "2006": 0.681, + "2007": 0.685, + "2008": 0.691, + "2009": 0.705, + "2010": 0.707, + "2011": 0.708, + "2012": 0.719, + "2013": 0.73, + "2014": 0.741, + "2015": 0.746, + "2016": 0.745, + "2017": 0.738, + "2018": 0.754, + "2019": 0.78, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "National", + "GDLCODE": "KORt", + "Region": "Total", + "1990": 0.686, + "1991": 0.695, + "1992": 0.7, + "1993": 0.711, + "1994": 0.724, + "1995": 0.736, + "1996": 0.751, + "1997": 0.772, + "1998": 0.768, + "1999": 0.779, + "2000": 0.788, + "2001": 0.794, + "2002": 0.799, + "2003": 0.808, + "2004": 0.818, + "2005": 0.828, + "2006": 0.828, + "2007": 0.831, + "2008": 0.83, + "2009": 0.828, + "2010": 0.856, + "2011": 0.86, + "2012": 0.859, + "2013": 0.86, + "2014": 0.863, + "2015": 0.865, + "2016": 0.866, + "2017": 0.868, + "2018": 0.872, + "2019": 0.876, + "2020": 0.876, + "2021": 0.876 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr101", + "Region": "Capital Region", + "1990": 0.739, + "1991": 0.748, + "1992": 0.753, + "1993": 0.765, + "1994": 0.779, + "1995": 0.792, + "1996": 0.808, + "1997": 0.831, + "1998": 0.827, + "1999": 0.838, + "2000": 0.848, + "2001": 0.854, + "2002": 0.86, + "2003": 0.87, + "2004": 0.88, + "2005": 0.891, + "2006": 0.892, + "2007": 0.895, + "2008": 0.893, + "2009": 0.89, + "2010": 0.918, + "2011": 0.921, + "2012": 0.924, + "2013": 0.926, + "2014": 0.929, + "2015": 0.931, + "2016": 0.932, + "2017": 0.934, + "2018": 0.938, + "2019": 0.943, + "2020": 0.943, + "2021": 0.943 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr105", + "Region": "Chungcheong Region", + "1990": 0.636, + "1991": 0.644, + "1992": 0.649, + "1993": 0.659, + "1994": 0.671, + "1995": 0.682, + "1996": 0.696, + "1997": 0.716, + "1998": 0.712, + "1999": 0.722, + "2000": 0.731, + "2001": 0.736, + "2002": 0.741, + "2003": 0.749, + "2004": 0.758, + "2005": 0.767, + "2006": 0.768, + "2007": 0.771, + "2008": 0.77, + "2009": 0.768, + "2010": 0.793, + "2011": 0.797, + "2012": 0.797, + "2013": 0.797, + "2014": 0.8, + "2015": 0.802, + "2016": 0.802, + "2017": 0.805, + "2018": 0.808, + "2019": 0.812, + "2020": 0.812, + "2021": 0.812 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr106", + "Region": "Gangwon Region", + "1990": 0.668, + "1991": 0.676, + "1992": 0.681, + "1993": 0.691, + "1994": 0.704, + "1995": 0.716, + "1996": 0.73, + "1997": 0.751, + "1998": 0.747, + "1999": 0.757, + "2000": 0.767, + "2001": 0.772, + "2002": 0.777, + "2003": 0.786, + "2004": 0.795, + "2005": 0.805, + "2006": 0.806, + "2007": 0.809, + "2008": 0.808, + "2009": 0.806, + "2010": 0.833, + "2011": 0.836, + "2012": 0.836, + "2013": 0.836, + "2014": 0.839, + "2015": 0.841, + "2016": 0.842, + "2017": 0.844, + "2018": 0.848, + "2019": 0.852, + "2020": 0.852, + "2021": 0.852 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr103", + "Region": "Gyeongbuk Region", + "1990": 0.557, + "1991": 0.564, + "1992": 0.568, + "1993": 0.577, + "1994": 0.588, + "1995": 0.598, + "1996": 0.61, + "1997": 0.627, + "1998": 0.624, + "1999": 0.632, + "2000": 0.64, + "2001": 0.645, + "2002": 0.649, + "2003": 0.657, + "2004": 0.664, + "2005": 0.672, + "2006": 0.673, + "2007": 0.675, + "2008": 0.674, + "2009": 0.673, + "2010": 0.695, + "2011": 0.698, + "2012": 0.698, + "2013": 0.698, + "2014": 0.701, + "2015": 0.703, + "2016": 0.703, + "2017": 0.705, + "2018": 0.708, + "2019": 0.711, + "2020": 0.711, + "2021": 0.711 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr102", + "Region": "Gyeongnam Region", + "1990": 0.712, + "1991": 0.721, + "1992": 0.726, + "1993": 0.738, + "1994": 0.751, + "1995": 0.764, + "1996": 0.779, + "1997": 0.801, + "1998": 0.797, + "1999": 0.808, + "2000": 0.818, + "2001": 0.824, + "2002": 0.829, + "2003": 0.839, + "2004": 0.849, + "2005": 0.859, + "2006": 0.86, + "2007": 0.863, + "2008": 0.862, + "2009": 0.86, + "2010": 0.888, + "2011": 0.892, + "2012": 0.892, + "2013": 0.893, + "2014": 0.896, + "2015": 0.898, + "2016": 0.898, + "2017": 0.901, + "2018": 0.905, + "2019": 0.909, + "2020": 0.909, + "2021": 0.909 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr107", + "Region": "Jeju", + "1990": 0.656, + "1991": 0.664, + "1992": 0.669, + "1993": 0.68, + "1994": 0.692, + "1995": 0.704, + "1996": 0.718, + "1997": 0.738, + "1998": 0.735, + "1999": 0.745, + "2000": 0.754, + "2001": 0.759, + "2002": 0.764, + "2003": 0.773, + "2004": 0.782, + "2005": 0.791, + "2006": 0.792, + "2007": 0.795, + "2008": 0.794, + "2009": 0.792, + "2010": 0.819, + "2011": 0.822, + "2012": 0.822, + "2013": 0.823, + "2014": 0.825, + "2015": 0.827, + "2016": 0.828, + "2017": 0.83, + "2018": 0.834, + "2019": 0.838, + "2020": 0.838, + "2021": 0.838 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr104", + "Region": "Jeolla Region", + "1990": 0.656, + "1991": 0.664, + "1992": 0.669, + "1993": 0.68, + "1994": 0.692, + "1995": 0.704, + "1996": 0.718, + "1997": 0.738, + "1998": 0.735, + "1999": 0.745, + "2000": 0.754, + "2001": 0.759, + "2002": 0.764, + "2003": 0.773, + "2004": 0.782, + "2005": 0.791, + "2006": 0.792, + "2007": 0.795, + "2008": 0.794, + "2009": 0.792, + "2010": 0.819, + "2011": 0.822, + "2012": 0.822, + "2013": 0.823, + "2014": 0.825, + "2015": 0.827, + "2016": 0.828, + "2017": 0.83, + "2018": 0.834, + "2019": 0.838, + "2020": 0.838, + "2021": 0.838 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "National", + "GDLCODE": "SSDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.326, + "2011": 0.33, + "2012": 0.334, + "2013": 0.337, + "2014": 0.341, + "2015": 0.345, + "2016": 0.345, + "2017": 0.345, + "2018": 0.345, + "2019": 0.345, + "2020": 0.345, + "2021": 0.345 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr109", + "Region": "Central Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.553, + "2011": 0.559, + "2012": 0.566, + "2013": 0.573, + "2014": 0.58, + "2015": 0.586, + "2016": 0.586, + "2017": 0.586, + "2018": 0.586, + "2019": 0.586, + "2020": 0.586, + "2021": 0.586 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr110", + "Region": "Eastern Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.338, + "2011": 0.342, + "2012": 0.346, + "2013": 0.35, + "2014": 0.354, + "2015": 0.358, + "2016": 0.358, + "2017": 0.358, + "2018": 0.358, + "2019": 0.358, + "2020": 0.358, + "2021": 0.358 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr102", + "Region": "Jonglei", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.193, + "2011": 0.195, + "2012": 0.197, + "2013": 0.199, + "2014": 0.201, + "2015": 0.203, + "2016": 0.203, + "2017": 0.203, + "2018": 0.203, + "2019": 0.203, + "2020": 0.203, + "2021": 0.203 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr107", + "Region": "Lakes", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.207, + "2011": 0.209, + "2012": 0.212, + "2013": 0.214, + "2014": 0.216, + "2015": 0.218, + "2016": 0.218, + "2017": 0.218, + "2018": 0.218, + "2019": 0.218, + "2020": 0.218, + "2021": 0.218 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr105", + "Region": "Northern Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.204, + "2011": 0.206, + "2012": 0.209, + "2013": 0.211, + "2014": 0.214, + "2015": 0.216, + "2016": 0.216, + "2017": 0.216, + "2018": 0.216, + "2019": 0.216, + "2020": 0.216, + "2021": 0.216 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr103", + "Region": "Unity", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.192, + "2011": 0.194, + "2012": 0.195, + "2013": 0.197, + "2014": 0.199, + "2015": 0.2, + "2016": 0.2, + "2017": 0.2, + "2018": 0.2, + "2019": 0.2, + "2020": 0.2, + "2021": 0.2 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr101", + "Region": "Upper Nile", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.393, + "2011": 0.398, + "2012": 0.403, + "2013": 0.408, + "2014": 0.413, + "2015": 0.418, + "2016": 0.418, + "2017": 0.418, + "2018": 0.418, + "2019": 0.418, + "2020": 0.418, + "2021": 0.418 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr104", + "Region": "Warrap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.194, + "2011": 0.197, + "2012": 0.199, + "2013": 0.201, + "2014": 0.203, + "2015": 0.205, + "2016": 0.205, + "2017": 0.205, + "2018": 0.205, + "2019": 0.205, + "2020": 0.205, + "2021": 0.205 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr106", + "Region": "Western Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.399, + "2011": 0.403, + "2012": 0.408, + "2013": 0.413, + "2014": 0.417, + "2015": 0.422, + "2016": 0.422, + "2017": 0.422, + "2018": 0.422, + "2019": 0.422, + "2020": 0.422, + "2021": 0.422 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr108", + "Region": "Western Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.452, + "2011": 0.458, + "2012": 0.464, + "2013": 0.47, + "2014": 0.476, + "2015": 0.481, + "2016": 0.481, + "2017": 0.481, + "2018": 0.481, + "2019": 0.481, + "2020": 0.481, + "2021": 0.481 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "National", + "GDLCODE": "ESPt", + "Region": "Total", + "1990": 0.586, + "1991": 0.599, + "1992": 0.613, + "1993": 0.633, + "1994": 0.648, + "1995": 0.659, + "1996": 0.671, + "1997": 0.677, + "1998": 0.682, + "1999": 0.69, + "2000": 0.698, + "2001": 0.704, + "2002": 0.708, + "2003": 0.715, + "2004": 0.725, + "2005": 0.738, + "2006": 0.744, + "2007": 0.746, + "2008": 0.749, + "2009": 0.753, + "2010": 0.766, + "2011": 0.778, + "2012": 0.788, + "2013": 0.798, + "2014": 0.804, + "2015": 0.816, + "2016": 0.821, + "2017": 0.825, + "2018": 0.831, + "2019": 0.843, + "2020": 0.851, + "2021": 0.851 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr115", + "Region": "Andalucia", + "1990": 0.578, + "1991": 0.592, + "1992": 0.604, + "1993": 0.624, + "1994": 0.639, + "1995": 0.65, + "1996": 0.662, + "1997": 0.668, + "1998": 0.673, + "1999": 0.68, + "2000": 0.688, + "2001": 0.692, + "2002": 0.696, + "2003": 0.703, + "2004": 0.713, + "2005": 0.724, + "2006": 0.729, + "2007": 0.731, + "2008": 0.735, + "2009": 0.739, + "2010": 0.751, + "2011": 0.762, + "2012": 0.772, + "2013": 0.781, + "2014": 0.778, + "2015": 0.789, + "2016": 0.795, + "2017": 0.799, + "2018": 0.806, + "2019": 0.818, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr107", + "Region": "Aragon", + "1990": 0.581, + "1991": 0.594, + "1992": 0.608, + "1993": 0.627, + "1994": 0.643, + "1995": 0.654, + "1996": 0.666, + "1997": 0.672, + "1998": 0.677, + "1999": 0.685, + "2000": 0.693, + "2001": 0.701, + "2002": 0.703, + "2003": 0.715, + "2004": 0.725, + "2005": 0.737, + "2006": 0.745, + "2007": 0.748, + "2008": 0.75, + "2009": 0.752, + "2010": 0.766, + "2011": 0.779, + "2012": 0.787, + "2013": 0.794, + "2014": 0.803, + "2015": 0.813, + "2016": 0.821, + "2017": 0.826, + "2018": 0.833, + "2019": 0.845, + "2020": 0.852, + "2021": 0.852 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr119", + "Region": "Canarias", + "1990": 0.553, + "1991": 0.565, + "1992": 0.578, + "1993": 0.597, + "1994": 0.611, + "1995": 0.622, + "1996": 0.633, + "1997": 0.639, + "1998": 0.645, + "1999": 0.652, + "2000": 0.66, + "2001": 0.666, + "2002": 0.673, + "2003": 0.677, + "2004": 0.688, + "2005": 0.699, + "2006": 0.701, + "2007": 0.705, + "2008": 0.704, + "2009": 0.708, + "2010": 0.719, + "2011": 0.729, + "2012": 0.74, + "2013": 0.75, + "2014": 0.758, + "2015": 0.77, + "2016": 0.773, + "2017": 0.773, + "2018": 0.777, + "2019": 0.788, + "2020": 0.795, + "2021": 0.795 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr103", + "Region": "Cantabria", + "1990": 0.579, + "1991": 0.592, + "1992": 0.605, + "1993": 0.625, + "1994": 0.64, + "1995": 0.651, + "1996": 0.663, + "1997": 0.67, + "1998": 0.675, + "1999": 0.682, + "2000": 0.691, + "2001": 0.695, + "2002": 0.699, + "2003": 0.711, + "2004": 0.72, + "2005": 0.734, + "2006": 0.736, + "2007": 0.74, + "2008": 0.746, + "2009": 0.749, + "2010": 0.766, + "2011": 0.774, + "2012": 0.787, + "2013": 0.797, + "2014": 0.806, + "2015": 0.819, + "2016": 0.826, + "2017": 0.833, + "2018": 0.843, + "2019": 0.854, + "2020": 0.862, + "2021": 0.862 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr109", + "Region": "Castilla y Leon", + "1990": 0.609, + "1991": 0.623, + "1992": 0.637, + "1993": 0.658, + "1994": 0.674, + "1995": 0.685, + "1996": 0.697, + "1997": 0.703, + "1998": 0.709, + "1999": 0.716, + "2000": 0.724, + "2001": 0.729, + "2002": 0.732, + "2003": 0.742, + "2004": 0.752, + "2005": 0.763, + "2006": 0.769, + "2007": 0.771, + "2008": 0.775, + "2009": 0.779, + "2010": 0.792, + "2011": 0.806, + "2012": 0.818, + "2013": 0.822, + "2014": 0.825, + "2015": 0.83, + "2016": 0.832, + "2017": 0.835, + "2018": 0.837, + "2019": 0.845, + "2020": 0.853, + "2021": 0.853 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr110", + "Region": "Castilla-la Mancha", + "1990": 0.547, + "1991": 0.559, + "1992": 0.572, + "1993": 0.59, + "1994": 0.605, + "1995": 0.615, + "1996": 0.626, + "1997": 0.632, + "1998": 0.637, + "1999": 0.644, + "2000": 0.651, + "2001": 0.658, + "2002": 0.664, + "2003": 0.67, + "2004": 0.677, + "2005": 0.689, + "2006": 0.696, + "2007": 0.7, + "2008": 0.701, + "2009": 0.707, + "2010": 0.719, + "2011": 0.731, + "2012": 0.739, + "2013": 0.747, + "2014": 0.755, + "2015": 0.763, + "2016": 0.763, + "2017": 0.764, + "2018": 0.768, + "2019": 0.78, + "2020": 0.787, + "2021": 0.787 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr112", + "Region": "Cataluna", + "1990": 0.584, + "1991": 0.597, + "1992": 0.61, + "1993": 0.63, + "1994": 0.646, + "1995": 0.657, + "1996": 0.669, + "1997": 0.675, + "1998": 0.68, + "1999": 0.688, + "2000": 0.696, + "2001": 0.701, + "2002": 0.706, + "2003": 0.713, + "2004": 0.724, + "2005": 0.737, + "2006": 0.742, + "2007": 0.743, + "2008": 0.746, + "2009": 0.749, + "2010": 0.761, + "2011": 0.773, + "2012": 0.782, + "2013": 0.793, + "2014": 0.803, + "2015": 0.818, + "2016": 0.827, + "2017": 0.83, + "2018": 0.835, + "2019": 0.847, + "2020": 0.855, + "2021": 0.855 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr117", + "Region": "Ciudad Autonoma de Ceuta", + "1990": 0.549, + "1991": 0.562, + "1992": 0.574, + "1993": 0.593, + "1994": 0.608, + "1995": 0.618, + "1996": 0.63, + "1997": 0.636, + "1998": 0.641, + "1999": 0.648, + "2000": 0.656, + "2001": 0.669, + "2002": 0.664, + "2003": 0.676, + "2004": 0.672, + "2005": 0.688, + "2006": 0.68, + "2007": 0.683, + "2008": 0.695, + "2009": 0.701, + "2010": 0.705, + "2011": 0.711, + "2012": 0.726, + "2013": 0.734, + "2014": 0.744, + "2015": 0.762, + "2016": 0.762, + "2017": 0.767, + "2018": 0.767, + "2019": 0.778, + "2020": 0.785, + "2021": 0.785 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr118", + "Region": "Ciudad Autonoma de Melilla", + "1990": 0.542, + "1991": 0.555, + "1992": 0.567, + "1993": 0.586, + "1994": 0.6, + "1995": 0.611, + "1996": 0.623, + "1997": 0.629, + "1998": 0.635, + "1999": 0.642, + "2000": 0.65, + "2001": 0.656, + "2002": 0.657, + "2003": 0.665, + "2004": 0.671, + "2005": 0.682, + "2006": 0.684, + "2007": 0.675, + "2008": 0.678, + "2009": 0.678, + "2010": 0.684, + "2011": 0.708, + "2012": 0.709, + "2013": 0.72, + "2014": 0.734, + "2015": 0.739, + "2016": 0.749, + "2017": 0.763, + "2018": 0.763, + "2019": 0.778, + "2020": 0.785, + "2021": 0.785 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr108", + "Region": "Comunidad de Madrid", + "1990": 0.628, + "1991": 0.643, + "1992": 0.657, + "1993": 0.678, + "1994": 0.695, + "1995": 0.707, + "1996": 0.719, + "1997": 0.726, + "1998": 0.732, + "1999": 0.74, + "2000": 0.748, + "2001": 0.757, + "2002": 0.762, + "2003": 0.765, + "2004": 0.777, + "2005": 0.791, + "2006": 0.798, + "2007": 0.803, + "2008": 0.806, + "2009": 0.807, + "2010": 0.824, + "2011": 0.838, + "2012": 0.846, + "2013": 0.851, + "2014": 0.855, + "2015": 0.86, + "2016": 0.861, + "2017": 0.863, + "2018": 0.863, + "2019": 0.872, + "2020": 0.881, + "2021": 0.881 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr105", + "Region": "Comunidad Foral de Navarra", + "1990": 0.591, + "1991": 0.605, + "1992": 0.618, + "1993": 0.639, + "1994": 0.654, + "1995": 0.666, + "1996": 0.678, + "1997": 0.684, + "1998": 0.69, + "1999": 0.698, + "2000": 0.706, + "2001": 0.716, + "2002": 0.721, + "2003": 0.726, + "2004": 0.734, + "2005": 0.751, + "2006": 0.755, + "2007": 0.759, + "2008": 0.758, + "2009": 0.762, + "2010": 0.779, + "2011": 0.79, + "2012": 0.799, + "2013": 0.808, + "2014": 0.817, + "2015": 0.825, + "2016": 0.837, + "2017": 0.84, + "2018": 0.844, + "2019": 0.86, + "2020": 0.868, + "2021": 0.868 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr113", + "Region": "Comunidad Valenciana", + "1990": 0.583, + "1991": 0.596, + "1992": 0.609, + "1993": 0.629, + "1994": 0.645, + "1995": 0.656, + "1996": 0.667, + "1997": 0.673, + "1998": 0.678, + "1999": 0.686, + "2000": 0.694, + "2001": 0.697, + "2002": 0.701, + "2003": 0.708, + "2004": 0.722, + "2005": 0.736, + "2006": 0.741, + "2007": 0.742, + "2008": 0.745, + "2009": 0.748, + "2010": 0.762, + "2011": 0.775, + "2012": 0.784, + "2013": 0.793, + "2014": 0.803, + "2015": 0.813, + "2016": 0.814, + "2017": 0.818, + "2018": 0.827, + "2019": 0.841, + "2020": 0.848, + "2021": 0.848 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr111", + "Region": "Extremadura", + "1990": 0.565, + "1991": 0.578, + "1992": 0.591, + "1993": 0.61, + "1994": 0.625, + "1995": 0.636, + "1996": 0.647, + "1997": 0.653, + "1998": 0.658, + "1999": 0.665, + "2000": 0.672, + "2001": 0.676, + "2002": 0.682, + "2003": 0.688, + "2004": 0.695, + "2005": 0.707, + "2006": 0.713, + "2007": 0.716, + "2008": 0.718, + "2009": 0.721, + "2010": 0.734, + "2011": 0.745, + "2012": 0.752, + "2013": 0.761, + "2014": 0.769, + "2015": 0.775, + "2016": 0.774, + "2017": 0.779, + "2018": 0.784, + "2019": 0.793, + "2020": 0.8, + "2021": 0.8 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr101", + "Region": "Galicia", + "1990": 0.586, + "1991": 0.599, + "1992": 0.612, + "1993": 0.632, + "1994": 0.647, + "1995": 0.658, + "1996": 0.67, + "1997": 0.676, + "1998": 0.681, + "1999": 0.688, + "2000": 0.696, + "2001": 0.703, + "2002": 0.708, + "2003": 0.717, + "2004": 0.727, + "2005": 0.741, + "2006": 0.748, + "2007": 0.75, + "2008": 0.754, + "2009": 0.757, + "2010": 0.77, + "2011": 0.783, + "2012": 0.792, + "2013": 0.801, + "2014": 0.808, + "2015": 0.823, + "2016": 0.829, + "2017": 0.831, + "2018": 0.836, + "2019": 0.844, + "2020": 0.852, + "2021": 0.852 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr114", + "Region": "Illes Balears", + "1990": 0.521, + "1991": 0.533, + "1992": 0.545, + "1993": 0.563, + "1994": 0.577, + "1995": 0.587, + "1996": 0.598, + "1997": 0.604, + "1998": 0.609, + "1999": 0.616, + "2000": 0.624, + "2001": 0.63, + "2002": 0.636, + "2003": 0.641, + "2004": 0.645, + "2005": 0.658, + "2006": 0.667, + "2007": 0.663, + "2008": 0.667, + "2009": 0.672, + "2010": 0.683, + "2011": 0.694, + "2012": 0.705, + "2013": 0.715, + "2014": 0.717, + "2015": 0.731, + "2016": 0.735, + "2017": 0.736, + "2018": 0.741, + "2019": 0.754, + "2020": 0.761, + "2021": 0.761 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr106", + "Region": "La Rioja", + "1990": 0.578, + "1991": 0.591, + "1992": 0.604, + "1993": 0.624, + "1994": 0.639, + "1995": 0.651, + "1996": 0.662, + "1997": 0.668, + "1998": 0.674, + "1999": 0.681, + "2000": 0.689, + "2001": 0.695, + "2002": 0.702, + "2003": 0.707, + "2004": 0.719, + "2005": 0.735, + "2006": 0.738, + "2007": 0.743, + "2008": 0.744, + "2009": 0.756, + "2010": 0.765, + "2011": 0.772, + "2012": 0.785, + "2013": 0.793, + "2014": 0.815, + "2015": 0.833, + "2016": 0.835, + "2017": 0.84, + "2018": 0.841, + "2019": 0.846, + "2020": 0.853, + "2021": 0.853 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr104", + "Region": "Pais Vasco", + "1990": 0.624, + "1991": 0.638, + "1992": 0.652, + "1993": 0.673, + "1994": 0.69, + "1995": 0.702, + "1996": 0.714, + "1997": 0.721, + "1998": 0.727, + "1999": 0.734, + "2000": 0.743, + "2001": 0.75, + "2002": 0.753, + "2003": 0.762, + "2004": 0.774, + "2005": 0.79, + "2006": 0.798, + "2007": 0.8, + "2008": 0.802, + "2009": 0.808, + "2010": 0.821, + "2011": 0.834, + "2012": 0.846, + "2013": 0.85, + "2014": 0.852, + "2015": 0.86, + "2016": 0.863, + "2017": 0.866, + "2018": 0.866, + "2019": 0.873, + "2020": 0.881, + "2021": 0.881 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr102", + "Region": "Principado de Asturias", + "1990": 0.589, + "1991": 0.602, + "1992": 0.615, + "1993": 0.635, + "1994": 0.651, + "1995": 0.662, + "1996": 0.674, + "1997": 0.68, + "1998": 0.685, + "1999": 0.692, + "2000": 0.701, + "2001": 0.704, + "2002": 0.711, + "2003": 0.718, + "2004": 0.728, + "2005": 0.747, + "2006": 0.748, + "2007": 0.751, + "2008": 0.757, + "2009": 0.762, + "2010": 0.775, + "2011": 0.789, + "2012": 0.801, + "2013": 0.812, + "2014": 0.819, + "2015": 0.834, + "2016": 0.84, + "2017": 0.841, + "2018": 0.851, + "2019": 0.858, + "2020": 0.866, + "2021": 0.866 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr116", + "Region": "Region de Murcia", + "1990": 0.577, + "1991": 0.59, + "1992": 0.603, + "1993": 0.622, + "1994": 0.638, + "1995": 0.649, + "1996": 0.66, + "1997": 0.666, + "1998": 0.671, + "1999": 0.679, + "2000": 0.687, + "2001": 0.693, + "2002": 0.695, + "2003": 0.702, + "2004": 0.712, + "2005": 0.719, + "2006": 0.725, + "2007": 0.727, + "2008": 0.73, + "2009": 0.732, + "2010": 0.742, + "2011": 0.755, + "2012": 0.765, + "2013": 0.776, + "2014": 0.778, + "2015": 0.791, + "2016": 0.797, + "2017": 0.809, + "2018": 0.815, + "2019": 0.822, + "2020": 0.829, + "2021": 0.829 + }, + { + "Country": "Sri Lanka", + "Continent": "Asia/Pacific", + "ISO_Code": "LKA", + "Level": "National", + "GDLCODE": "LKAt", + "Region": "Total", + "1990": 0.585, + "1991": 0.594, + "1992": 0.603, + "1993": 0.612, + "1994": 0.622, + "1995": 0.631, + "1996": 0.641, + "1997": 0.652, + "1998": 0.662, + "1999": 0.672, + "2000": 0.683, + "2001": 0.687, + "2002": 0.69, + "2003": 0.693, + "2004": 0.696, + "2005": 0.699, + "2006": 0.702, + "2007": 0.705, + "2008": 0.708, + "2009": 0.715, + "2010": 0.719, + "2011": 0.724, + "2012": 0.726, + "2013": 0.734, + "2014": 0.734, + "2015": 0.734, + "2016": 0.734, + "2017": 0.739, + "2018": 0.747, + "2019": 0.747, + "2020": 0.754, + "2021": 0.754 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "National", + "GDLCODE": "SDNt", + "Region": "Total", + "1990": 0.167, + "1991": 0.173, + "1992": 0.18, + "1993": 0.186, + "1994": 0.193, + "1995": 0.2, + "1996": 0.207, + "1997": 0.214, + "1998": 0.221, + "1999": 0.229, + "2000": 0.236, + "2001": 0.244, + "2002": 0.249, + "2003": 0.255, + "2004": 0.267, + "2005": 0.274, + "2006": 0.282, + "2007": 0.282, + "2008": 0.297, + "2009": 0.304, + "2010": 0.305, + "2011": 0.3, + "2012": 0.312, + "2013": 0.322, + "2014": 0.326, + "2015": 0.332, + "2016": 0.336, + "2017": 0.34, + "2018": 0.344, + "2019": 0.348, + "2020": 0.348, + "2021": 0.348 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr105", + "Region": "Al Gedarif", + "1990": 0.162, + "1991": 0.168, + "1992": 0.174, + "1993": 0.18, + "1994": 0.187, + "1995": 0.193, + "1996": 0.199, + "1997": 0.206, + "1998": 0.213, + "1999": 0.22, + "2000": 0.227, + "2001": 0.232, + "2002": 0.234, + "2003": 0.237, + "2004": 0.247, + "2005": 0.251, + "2006": 0.257, + "2007": 0.254, + "2008": 0.267, + "2009": 0.278, + "2010": 0.281, + "2011": 0.268, + "2012": 0.27, + "2013": 0.27, + "2014": 0.265, + "2015": 0.269, + "2016": 0.272, + "2017": 0.275, + "2018": 0.279, + "2019": 0.282, + "2020": 0.282, + "2021": 0.282 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr107", + "Region": "Al Gezira", + "1990": 0.228, + "1991": 0.236, + "1992": 0.245, + "1993": 0.254, + "1994": 0.263, + "1995": 0.272, + "1996": 0.281, + "1997": 0.291, + "1998": 0.3, + "1999": 0.31, + "2000": 0.32, + "2001": 0.325, + "2002": 0.327, + "2003": 0.331, + "2004": 0.342, + "2005": 0.346, + "2006": 0.353, + "2007": 0.347, + "2008": 0.362, + "2009": 0.353, + "2010": 0.335, + "2011": 0.328, + "2012": 0.339, + "2013": 0.348, + "2014": 0.35, + "2015": 0.356, + "2016": 0.36, + "2017": 0.365, + "2018": 0.369, + "2019": 0.373, + "2020": 0.373, + "2021": 0.373 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr110", + "Region": "Blue Nile", + "1990": 0.104, + "1991": 0.108, + "1992": 0.113, + "1993": 0.117, + "1994": 0.121, + "1995": 0.126, + "1996": 0.13, + "1997": 0.135, + "1998": 0.14, + "1999": 0.144, + "2000": 0.149, + "2001": 0.157, + "2002": 0.162, + "2003": 0.169, + "2004": 0.179, + "2005": 0.186, + "2006": 0.194, + "2007": 0.195, + "2008": 0.21, + "2009": 0.223, + "2010": 0.229, + "2011": 0.218, + "2012": 0.219, + "2013": 0.219, + "2014": 0.214, + "2015": 0.218, + "2016": 0.22, + "2017": 0.223, + "2018": 0.226, + "2019": 0.228, + "2020": 0.228, + "2021": 0.228 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr104", + "Region": "Kassala", + "1990": 0.197, + "1991": 0.203, + "1992": 0.21, + "1993": 0.217, + "1994": 0.224, + "1995": 0.231, + "1996": 0.239, + "1997": 0.246, + "1998": 0.254, + "1999": 0.262, + "2000": 0.27, + "2001": 0.263, + "2002": 0.253, + "2003": 0.244, + "2004": 0.242, + "2005": 0.233, + "2006": 0.226, + "2007": 0.211, + "2008": 0.21, + "2009": 0.228, + "2010": 0.243, + "2011": 0.234, + "2012": 0.24, + "2013": 0.244, + "2014": 0.243, + "2015": 0.246, + "2016": 0.249, + "2017": 0.252, + "2018": 0.255, + "2019": 0.258, + "2020": 0.258, + "2021": 0.258 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr106", + "Region": "Khartoum", + "1990": 0.166, + "1991": 0.173, + "1992": 0.181, + "1993": 0.188, + "1994": 0.196, + "1995": 0.203, + "1996": 0.211, + "1997": 0.219, + "1998": 0.227, + "1999": 0.235, + "2000": 0.243, + "2001": 0.268, + "2002": 0.291, + "2003": 0.316, + "2004": 0.347, + "2005": 0.373, + "2006": 0.4, + "2007": 0.416, + "2008": 0.452, + "2009": 0.441, + "2010": 0.423, + "2011": 0.422, + "2012": 0.441, + "2013": 0.458, + "2014": 0.467, + "2015": 0.476, + "2016": 0.482, + "2017": 0.488, + "2018": 0.493, + "2019": 0.499, + "2020": 0.499, + "2021": 0.499 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr102", + "Region": "Nahr El Nil", + "1990": 0.164, + "1991": 0.171, + "1992": 0.178, + "1993": 0.185, + "1994": 0.192, + "1995": 0.2, + "1996": 0.207, + "1997": 0.215, + "1998": 0.222, + "1999": 0.23, + "2000": 0.238, + "2001": 0.252, + "2002": 0.265, + "2003": 0.278, + "2004": 0.297, + "2005": 0.311, + "2006": 0.326, + "2007": 0.332, + "2008": 0.356, + "2009": 0.35, + "2010": 0.335, + "2011": 0.343, + "2012": 0.37, + "2013": 0.395, + "2014": 0.414, + "2015": 0.422, + "2016": 0.427, + "2017": 0.432, + "2018": 0.437, + "2019": 0.442, + "2020": 0.442, + "2021": 0.442 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr113", + "Region": "North Darfur", + "1990": 0.211, + "1991": 0.218, + "1992": 0.226, + "1993": 0.234, + "1994": 0.242, + "1995": 0.25, + "1996": 0.259, + "1997": 0.267, + "1998": 0.276, + "1999": 0.285, + "2000": 0.294, + "2001": 0.29, + "2002": 0.282, + "2003": 0.277, + "2004": 0.277, + "2005": 0.271, + "2006": 0.268, + "2007": 0.254, + "2008": 0.257, + "2009": 0.279, + "2010": 0.297, + "2011": 0.294, + "2012": 0.309, + "2013": 0.322, + "2014": 0.328, + "2015": 0.333, + "2016": 0.337, + "2017": 0.341, + "2018": 0.345, + "2019": 0.349, + "2020": 0.349, + "2021": 0.349 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr111", + "Region": "North Kordofan", + "1990": 0.126, + "1991": 0.13, + "1992": 0.135, + "1993": 0.14, + "1994": 0.146, + "1995": 0.151, + "1996": 0.156, + "1997": 0.161, + "1998": 0.167, + "1999": 0.172, + "2000": 0.178, + "2001": 0.183, + "2002": 0.186, + "2003": 0.19, + "2004": 0.198, + "2005": 0.202, + "2006": 0.208, + "2007": 0.206, + "2008": 0.218, + "2009": 0.231, + "2010": 0.238, + "2011": 0.239, + "2012": 0.254, + "2013": 0.268, + "2014": 0.276, + "2015": 0.281, + "2016": 0.284, + "2017": 0.287, + "2018": 0.291, + "2019": 0.294, + "2020": 0.294, + "2021": 0.294 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr101", + "Region": "Northern", + "1990": 0.263, + "1991": 0.272, + "1992": 0.282, + "1993": 0.292, + "1994": 0.302, + "1995": 0.313, + "1996": 0.323, + "1997": 0.334, + "1998": 0.345, + "1999": 0.356, + "2000": 0.367, + "2001": 0.37, + "2002": 0.368, + "2003": 0.368, + "2004": 0.378, + "2005": 0.378, + "2006": 0.382, + "2007": 0.372, + "2008": 0.385, + "2009": 0.387, + "2010": 0.378, + "2011": 0.379, + "2012": 0.399, + "2013": 0.418, + "2014": 0.429, + "2015": 0.437, + "2016": 0.442, + "2017": 0.448, + "2018": 0.453, + "2019": 0.458, + "2020": 0.458, + "2021": 0.458 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr103", + "Region": "Red Sea", + "1990": 0.183, + "1991": 0.189, + "1992": 0.196, + "1993": 0.203, + "1994": 0.209, + "1995": 0.216, + "1996": 0.223, + "1997": 0.231, + "1998": 0.238, + "1999": 0.245, + "2000": 0.253, + "2001": 0.249, + "2002": 0.242, + "2003": 0.236, + "2004": 0.237, + "2005": 0.231, + "2006": 0.227, + "2007": 0.216, + "2008": 0.217, + "2009": 0.247, + "2010": 0.277, + "2011": 0.285, + "2012": 0.311, + "2013": 0.336, + "2014": 0.354, + "2015": 0.36, + "2016": 0.364, + "2017": 0.369, + "2018": 0.373, + "2019": 0.377, + "2020": 0.377, + "2021": 0.377 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr109", + "Region": "Sinnar", + "1990": 0.147, + "1991": 0.153, + "1992": 0.158, + "1993": 0.164, + "1994": 0.17, + "1995": 0.176, + "1996": 0.182, + "1997": 0.188, + "1998": 0.194, + "1999": 0.201, + "2000": 0.207, + "2001": 0.216, + "2002": 0.222, + "2003": 0.229, + "2004": 0.242, + "2005": 0.25, + "2006": 0.26, + "2007": 0.261, + "2008": 0.278, + "2009": 0.279, + "2010": 0.272, + "2011": 0.268, + "2012": 0.279, + "2013": 0.289, + "2014": 0.294, + "2015": 0.299, + "2016": 0.302, + "2017": 0.306, + "2018": 0.309, + "2019": 0.313, + "2020": 0.313, + "2021": 0.313 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr115", + "Region": "South Darfur", + "1990": 0.099, + "1991": 0.103, + "1992": 0.108, + "1993": 0.112, + "1994": 0.117, + "1995": 0.121, + "1996": 0.126, + "1997": 0.13, + "1998": 0.135, + "1999": 0.14, + "2000": 0.144, + "2001": 0.15, + "2002": 0.154, + "2003": 0.158, + "2004": 0.166, + "2005": 0.171, + "2006": 0.176, + "2007": 0.176, + "2008": 0.186, + "2009": 0.228, + "2010": 0.27, + "2011": 0.26, + "2012": 0.266, + "2013": 0.27, + "2014": 0.268, + "2015": 0.273, + "2016": 0.276, + "2017": 0.279, + "2018": 0.282, + "2019": 0.286, + "2020": 0.286, + "2021": 0.286 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr112", + "Region": "South Kordofan", + "1990": 0.16, + "1991": 0.166, + "1992": 0.172, + "1993": 0.178, + "1994": 0.184, + "1995": 0.191, + "1996": 0.197, + "1997": 0.204, + "1998": 0.21, + "1999": 0.217, + "2000": 0.224, + "2001": 0.226, + "2002": 0.224, + "2003": 0.224, + "2004": 0.229, + "2005": 0.229, + "2006": 0.231, + "2007": 0.224, + "2008": 0.232, + "2009": 0.235, + "2010": 0.235, + "2011": 0.229, + "2012": 0.238, + "2013": 0.246, + "2014": 0.248, + "2015": 0.252, + "2016": 0.255, + "2017": 0.258, + "2018": 0.261, + "2019": 0.264, + "2020": 0.264, + "2021": 0.264 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr114", + "Region": "West Darfur", + "1990": 0.144, + "1991": 0.15, + "1992": 0.155, + "1993": 0.161, + "1994": 0.166, + "1995": 0.172, + "1996": 0.178, + "1997": 0.184, + "1998": 0.19, + "1999": 0.196, + "2000": 0.202, + "2001": 0.2, + "2002": 0.195, + "2003": 0.192, + "2004": 0.193, + "2005": 0.189, + "2006": 0.187, + "2007": 0.178, + "2008": 0.18, + "2009": 0.202, + "2010": 0.221, + "2011": 0.225, + "2012": 0.244, + "2013": 0.262, + "2014": 0.274, + "2015": 0.278, + "2016": 0.281, + "2017": 0.285, + "2018": 0.288, + "2019": 0.291, + "2020": 0.291, + "2021": 0.291 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr108", + "Region": "White Nile", + "1990": 0.138, + "1991": 0.144, + "1992": 0.15, + "1993": 0.156, + "1994": 0.163, + "1995": 0.169, + "1996": 0.175, + "1997": 0.181, + "1998": 0.188, + "1999": 0.194, + "2000": 0.201, + "2001": 0.214, + "2002": 0.225, + "2003": 0.237, + "2004": 0.254, + "2005": 0.267, + "2006": 0.281, + "2007": 0.285, + "2008": 0.308, + "2009": 0.312, + "2010": 0.308, + "2011": 0.299, + "2012": 0.307, + "2013": 0.313, + "2014": 0.313, + "2015": 0.319, + "2016": 0.322, + "2017": 0.326, + "2018": 0.33, + "2019": 0.334, + "2020": 0.334, + "2021": 0.334 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "National", + "GDLCODE": "SURt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.581, + "2005": 0.591, + "2006": 0.601, + "2007": 0.611, + "2008": 0.621, + "2009": 0.632, + "2010": 0.642, + "2011": 0.652, + "2012": 0.658, + "2013": 0.662, + "2014": 0.667, + "2015": 0.671, + "2016": 0.675, + "2017": 0.679, + "2018": 0.684, + "2019": 0.688, + "2020": 0.688, + "2021": 0.688 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr105", + "Region": "Brokopondo and Sipaliwini", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.295, + "2005": 0.3, + "2006": 0.305, + "2007": 0.318, + "2008": 0.331, + "2009": 0.345, + "2010": 0.358, + "2011": 0.372, + "2012": 0.384, + "2013": 0.395, + "2014": 0.405, + "2015": 0.416, + "2016": 0.426, + "2017": 0.437, + "2018": 0.447, + "2019": 0.45, + "2020": 0.45, + "2021": 0.45 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr104", + "Region": "Commewijne and Marowijne", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.547, + "2005": 0.556, + "2006": 0.565, + "2007": 0.569, + "2008": 0.573, + "2009": 0.577, + "2010": 0.581, + "2011": 0.593, + "2012": 0.602, + "2013": 0.609, + "2014": 0.615, + "2015": 0.622, + "2016": 0.628, + "2017": 0.635, + "2018": 0.641, + "2019": 0.645, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr103", + "Region": "Nickerie, Coronie and Saramacca", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.555, + "2005": 0.565, + "2006": 0.574, + "2007": 0.582, + "2008": 0.59, + "2009": 0.599, + "2010": 0.607, + "2011": 0.616, + "2012": 0.623, + "2013": 0.627, + "2014": 0.631, + "2015": 0.635, + "2016": 0.639, + "2017": 0.643, + "2018": 0.647, + "2019": 0.651, + "2020": 0.651, + "2021": 0.651 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr101", + "Region": "Paramaribo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.656, + "2005": 0.667, + "2006": 0.679, + "2007": 0.686, + "2008": 0.694, + "2009": 0.701, + "2010": 0.709, + "2011": 0.718, + "2012": 0.723, + "2013": 0.725, + "2014": 0.728, + "2015": 0.731, + "2016": 0.733, + "2017": 0.736, + "2018": 0.739, + "2019": 0.743, + "2020": 0.743, + "2021": 0.743 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr102", + "Region": "Wanica and Para", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.577, + "2005": 0.587, + "2006": 0.597, + "2007": 0.607, + "2008": 0.617, + "2009": 0.627, + "2010": 0.636, + "2011": 0.648, + "2012": 0.656, + "2013": 0.662, + "2014": 0.668, + "2015": 0.674, + "2016": 0.68, + "2017": 0.686, + "2018": 0.692, + "2019": 0.696, + "2020": 0.696, + "2021": 0.696 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "National", + "GDLCODE": "SWEt", + "Region": "Total", + "1990": 0.677, + "1991": 0.685, + "1992": 0.702, + "1993": 0.76, + "1994": 0.777, + "1995": 0.792, + "1996": 0.81, + "1997": 0.837, + "1998": 0.869, + "1999": 0.875, + "2000": 0.882, + "2001": 0.888, + "2002": 0.894, + "2003": 0.9, + "2004": 0.849, + "2005": 0.85, + "2006": 0.851, + "2007": 0.85, + "2008": 0.84, + "2009": 0.842, + "2010": 0.849, + "2011": 0.848, + "2012": 0.85, + "2013": 0.908, + "2014": 0.91, + "2015": 0.912, + "2016": 0.914, + "2017": 0.916, + "2018": 0.918, + "2019": 0.92, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr107", + "Region": "Mellersta Norrland", + "1990": 0.657, + "1991": 0.665, + "1992": 0.681, + "1993": 0.737, + "1994": 0.754, + "1995": 0.769, + "1996": 0.786, + "1997": 0.812, + "1998": 0.858, + "1999": 0.866, + "2000": 0.872, + "2001": 0.883, + "2002": 0.882, + "2003": 0.888, + "2004": 0.825, + "2005": 0.828, + "2006": 0.829, + "2007": 0.83, + "2008": 0.82, + "2009": 0.82, + "2010": 0.827, + "2011": 0.824, + "2012": 0.824, + "2013": 0.884, + "2014": 0.885, + "2015": 0.895, + "2016": 0.901, + "2017": 0.903, + "2018": 0.908, + "2019": 0.911, + "2020": 0.911, + "2021": 0.911 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr106", + "Region": "Norra Mellansverige", + "1990": 0.658, + "1991": 0.666, + "1992": 0.683, + "1993": 0.739, + "1994": 0.756, + "1995": 0.771, + "1996": 0.789, + "1997": 0.814, + "1998": 0.859, + "1999": 0.865, + "2000": 0.871, + "2001": 0.874, + "2002": 0.881, + "2003": 0.888, + "2004": 0.823, + "2005": 0.826, + "2006": 0.825, + "2007": 0.821, + "2008": 0.811, + "2009": 0.816, + "2010": 0.824, + "2011": 0.822, + "2012": 0.823, + "2013": 0.88, + "2014": 0.886, + "2015": 0.895, + "2016": 0.898, + "2017": 0.9, + "2018": 0.901, + "2019": 0.9, + "2020": 0.9, + "2021": 0.9 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr102", + "Region": "Ostra Mellansverige", + "1990": 0.682, + "1991": 0.69, + "1992": 0.708, + "1993": 0.767, + "1994": 0.784, + "1995": 0.8, + "1996": 0.818, + "1997": 0.845, + "1998": 0.866, + "1999": 0.872, + "2000": 0.878, + "2001": 0.884, + "2002": 0.889, + "2003": 0.895, + "2004": 0.854, + "2005": 0.859, + "2006": 0.858, + "2007": 0.855, + "2008": 0.845, + "2009": 0.847, + "2010": 0.854, + "2011": 0.851, + "2012": 0.855, + "2013": 0.904, + "2014": 0.906, + "2015": 0.906, + "2016": 0.908, + "2017": 0.911, + "2018": 0.912, + "2019": 0.917, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr108", + "Region": "Ovre Norrland", + "1990": 0.694, + "1991": 0.703, + "1992": 0.72, + "1993": 0.78, + "1994": 0.798, + "1995": 0.814, + "1996": 0.832, + "1997": 0.859, + "1998": 0.874, + "1999": 0.88, + "2000": 0.886, + "2001": 0.887, + "2002": 0.895, + "2003": 0.899, + "2004": 0.866, + "2005": 0.87, + "2006": 0.87, + "2007": 0.868, + "2008": 0.856, + "2009": 0.856, + "2010": 0.867, + "2011": 0.867, + "2012": 0.869, + "2013": 0.91, + "2014": 0.91, + "2015": 0.911, + "2016": 0.911, + "2017": 0.912, + "2018": 0.916, + "2019": 0.919, + "2020": 0.919, + "2021": 0.919 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr103", + "Region": "Smaland med oarna", + "1990": 0.655, + "1991": 0.663, + "1992": 0.679, + "1993": 0.736, + "1994": 0.753, + "1995": 0.768, + "1996": 0.785, + "1997": 0.811, + "1998": 0.848, + "1999": 0.853, + "2000": 0.859, + "2001": 0.873, + "2002": 0.879, + "2003": 0.886, + "2004": 0.833, + "2005": 0.832, + "2006": 0.831, + "2007": 0.831, + "2008": 0.823, + "2009": 0.824, + "2010": 0.83, + "2011": 0.829, + "2012": 0.832, + "2013": 0.891, + "2014": 0.896, + "2015": 0.899, + "2016": 0.9, + "2017": 0.901, + "2018": 0.905, + "2019": 0.908, + "2020": 0.908, + "2021": 0.908 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr101", + "Region": "Stockholm", + "1990": 0.69, + "1991": 0.698, + "1992": 0.716, + "1993": 0.773, + "1994": 0.791, + "1995": 0.806, + "1996": 0.825, + "1997": 0.851, + "1998": 0.889, + "1999": 0.895, + "2000": 0.901, + "2001": 0.906, + "2002": 0.914, + "2003": 0.92, + "2004": 0.863, + "2005": 0.864, + "2006": 0.865, + "2007": 0.863, + "2008": 0.854, + "2009": 0.857, + "2010": 0.863, + "2011": 0.862, + "2012": 0.863, + "2013": 0.922, + "2014": 0.926, + "2015": 0.929, + "2016": 0.932, + "2017": 0.933, + "2018": 0.936, + "2019": 0.937, + "2020": 0.937, + "2021": 0.937 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr104", + "Region": "Sydsverige", + "1990": 0.679, + "1991": 0.687, + "1992": 0.704, + "1993": 0.763, + "1994": 0.78, + "1995": 0.795, + "1996": 0.813, + "1997": 0.84, + "1998": 0.867, + "1999": 0.874, + "2000": 0.88, + "2001": 0.888, + "2002": 0.892, + "2003": 0.899, + "2004": 0.853, + "2005": 0.854, + "2006": 0.856, + "2007": 0.857, + "2008": 0.847, + "2009": 0.849, + "2010": 0.857, + "2011": 0.854, + "2012": 0.855, + "2013": 0.909, + "2014": 0.91, + "2015": 0.914, + "2016": 0.917, + "2017": 0.921, + "2018": 0.921, + "2019": 0.922, + "2020": 0.922, + "2021": 0.922 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr105", + "Region": "Vastsverige", + "1990": 0.672, + "1991": 0.68, + "1992": 0.697, + "1993": 0.754, + "1994": 0.771, + "1995": 0.787, + "1996": 0.805, + "1997": 0.83, + "1998": 0.869, + "1999": 0.875, + "2000": 0.881, + "2001": 0.886, + "2002": 0.893, + "2003": 0.898, + "2004": 0.843, + "2005": 0.841, + "2006": 0.843, + "2007": 0.845, + "2008": 0.832, + "2009": 0.833, + "2010": 0.842, + "2011": 0.841, + "2012": 0.844, + "2013": 0.903, + "2014": 0.91, + "2015": 0.911, + "2016": 0.911, + "2017": 0.914, + "2018": 0.917, + "2019": 0.919, + "2020": 0.919, + "2021": 0.919 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "National", + "GDLCODE": "CHEt", + "Region": "Total", + "1990": 0.724, + "1991": 0.729, + "1992": 0.733, + "1993": 0.743, + "1994": 0.746, + "1995": 0.75, + "1996": 0.755, + "1997": 0.763, + "1998": 0.77, + "1999": 0.773, + "2000": 0.777, + "2001": 0.782, + "2002": 0.779, + "2003": 0.787, + "2004": 0.794, + "2005": 0.798, + "2006": 0.817, + "2007": 0.835, + "2008": 0.854, + "2009": 0.874, + "2010": 0.878, + "2011": 0.881, + "2012": 0.886, + "2013": 0.895, + "2014": 0.902, + "2015": 0.907, + "2016": 0.907, + "2017": 0.911, + "2018": 0.916, + "2019": 0.92, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr106", + "Region": "Central Switzerland", + "1990": 0.705, + "1991": 0.71, + "1992": 0.714, + "1993": 0.723, + "1994": 0.726, + "1995": 0.73, + "1996": 0.735, + "1997": 0.742, + "1998": 0.749, + "1999": 0.752, + "2000": 0.756, + "2001": 0.76, + "2002": 0.754, + "2003": 0.763, + "2004": 0.769, + "2005": 0.771, + "2006": 0.791, + "2007": 0.809, + "2008": 0.829, + "2009": 0.852, + "2010": 0.853, + "2011": 0.855, + "2012": 0.861, + "2013": 0.87, + "2014": 0.876, + "2015": 0.879, + "2016": 0.885, + "2017": 0.888, + "2018": 0.889, + "2019": 0.89, + "2020": 0.89, + "2021": 0.89 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr105", + "Region": "Eastern Switzerland", + "1990": 0.688, + "1991": 0.693, + "1992": 0.697, + "1993": 0.706, + "1994": 0.709, + "1995": 0.713, + "1996": 0.717, + "1997": 0.724, + "1998": 0.731, + "1999": 0.734, + "2000": 0.738, + "2001": 0.742, + "2002": 0.742, + "2003": 0.748, + "2004": 0.756, + "2005": 0.76, + "2006": 0.779, + "2007": 0.797, + "2008": 0.816, + "2009": 0.835, + "2010": 0.839, + "2011": 0.841, + "2012": 0.845, + "2013": 0.852, + "2014": 0.86, + "2015": 0.865, + "2016": 0.866, + "2017": 0.869, + "2018": 0.875, + "2019": 0.879, + "2020": 0.879, + "2021": 0.879 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr102", + "Region": "Espace Mittelland", + "1990": 0.717, + "1991": 0.722, + "1992": 0.726, + "1993": 0.735, + "1994": 0.739, + "1995": 0.743, + "1996": 0.748, + "1997": 0.755, + "1998": 0.762, + "1999": 0.765, + "2000": 0.769, + "2001": 0.774, + "2002": 0.77, + "2003": 0.776, + "2004": 0.784, + "2005": 0.787, + "2006": 0.806, + "2007": 0.822, + "2008": 0.842, + "2009": 0.86, + "2010": 0.866, + "2011": 0.868, + "2012": 0.874, + "2013": 0.882, + "2014": 0.889, + "2015": 0.895, + "2016": 0.892, + "2017": 0.896, + "2018": 0.898, + "2019": 0.903, + "2020": 0.903, + "2021": 0.903 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr101", + "Region": "Lake Geneva region", + "1990": 0.738, + "1991": 0.743, + "1992": 0.747, + "1993": 0.757, + "1994": 0.761, + "1995": 0.765, + "1996": 0.771, + "1997": 0.778, + "1998": 0.786, + "1999": 0.789, + "2000": 0.793, + "2001": 0.797, + "2002": 0.798, + "2003": 0.805, + "2004": 0.811, + "2005": 0.816, + "2006": 0.835, + "2007": 0.856, + "2008": 0.873, + "2009": 0.892, + "2010": 0.897, + "2011": 0.901, + "2012": 0.904, + "2013": 0.909, + "2014": 0.914, + "2015": 0.919, + "2016": 0.914, + "2017": 0.922, + "2018": 0.928, + "2019": 0.932, + "2020": 0.932, + "2021": 0.932 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr103", + "Region": "Northwestern Switzerland", + "1990": 0.709, + "1991": 0.713, + "1992": 0.717, + "1993": 0.726, + "1994": 0.73, + "1995": 0.733, + "1996": 0.738, + "1997": 0.745, + "1998": 0.752, + "1999": 0.756, + "2000": 0.759, + "2001": 0.764, + "2002": 0.76, + "2003": 0.77, + "2004": 0.775, + "2005": 0.779, + "2006": 0.796, + "2007": 0.814, + "2008": 0.837, + "2009": 0.856, + "2010": 0.86, + "2011": 0.861, + "2012": 0.867, + "2013": 0.879, + "2014": 0.884, + "2015": 0.888, + "2016": 0.888, + "2017": 0.891, + "2018": 0.895, + "2019": 0.901, + "2020": 0.901, + "2021": 0.901 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr107", + "Region": "Ticino", + "1990": 0.693, + "1991": 0.698, + "1992": 0.702, + "1993": 0.711, + "1994": 0.715, + "1995": 0.719, + "1996": 0.724, + "1997": 0.731, + "1998": 0.738, + "1999": 0.741, + "2000": 0.745, + "2001": 0.749, + "2002": 0.755, + "2003": 0.763, + "2004": 0.768, + "2005": 0.774, + "2006": 0.794, + "2007": 0.812, + "2008": 0.83, + "2009": 0.847, + "2010": 0.849, + "2011": 0.854, + "2012": 0.859, + "2013": 0.868, + "2014": 0.879, + "2015": 0.89, + "2016": 0.886, + "2017": 0.891, + "2018": 0.896, + "2019": 0.898, + "2020": 0.898, + "2021": 0.898 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr104", + "Region": "Zurich", + "1990": 0.769, + "1991": 0.775, + "1992": 0.779, + "1993": 0.79, + "1994": 0.794, + "1995": 0.798, + "1996": 0.804, + "1997": 0.812, + "1998": 0.82, + "1999": 0.823, + "2000": 0.827, + "2001": 0.832, + "2002": 0.828, + "2003": 0.837, + "2004": 0.844, + "2005": 0.847, + "2006": 0.869, + "2007": 0.888, + "2008": 0.905, + "2009": 0.927, + "2010": 0.931, + "2011": 0.937, + "2012": 0.944, + "2013": 0.953, + "2014": 0.96, + "2015": 0.965, + "2016": 0.969, + "2017": 0.97, + "2018": 0.975, + "2019": 0.982, + "2020": 0.982, + "2021": 0.982 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "National", + "GDLCODE": "SYRt", + "Region": "Total", + "1990": 0.411, + "1991": 0.415, + "1992": 0.414, + "1993": 0.414, + "1994": 0.413, + "1995": 0.411, + "1996": 0.413, + "1997": 0.416, + "1998": 0.419, + "1999": 0.422, + "2000": 0.425, + "2001": 0.433, + "2002": 0.441, + "2003": 0.464, + "2004": 0.487, + "2005": 0.511, + "2006": 0.525, + "2007": 0.54, + "2008": 0.528, + "2009": 0.536, + "2010": 0.534, + "2011": 0.545, + "2012": 0.567, + "2013": 0.463, + "2014": 0.442, + "2015": 0.423, + "2016": 0.423, + "2017": 0.425, + "2018": 0.425, + "2019": 0.425, + "2020": 0.425, + "2021": 0.425 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr111", + "Region": "Al Hasaka", + "1990": 0.371, + "1991": 0.374, + "1992": 0.372, + "1993": 0.371, + "1994": 0.37, + "1995": 0.366, + "1996": 0.369, + "1997": 0.372, + "1998": 0.374, + "1999": 0.377, + "2000": 0.379, + "2001": 0.386, + "2002": 0.393, + "2003": 0.412, + "2004": 0.431, + "2005": 0.451, + "2006": 0.462, + "2007": 0.473, + "2008": 0.465, + "2009": 0.47, + "2010": 0.471, + "2011": 0.481, + "2012": 0.503, + "2013": 0.401, + "2014": 0.386, + "2015": 0.372, + "2016": 0.372, + "2017": 0.373, + "2018": 0.373, + "2019": 0.373, + "2020": 0.373, + "2021": 0.373 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr106", + "Region": "Al Latakia", + "1990": 0.509, + "1991": 0.514, + "1992": 0.512, + "1993": 0.513, + "1994": 0.512, + "1995": 0.509, + "1996": 0.512, + "1997": 0.516, + "1998": 0.519, + "1999": 0.523, + "2000": 0.526, + "2001": 0.537, + "2002": 0.547, + "2003": 0.575, + "2004": 0.603, + "2005": 0.633, + "2006": 0.651, + "2007": 0.669, + "2008": 0.654, + "2009": 0.664, + "2010": 0.662, + "2011": 0.675, + "2012": 0.703, + "2013": 0.573, + "2014": 0.548, + "2015": 0.524, + "2016": 0.524, + "2017": 0.526, + "2018": 0.526, + "2019": 0.526, + "2020": 0.526, + "2021": 0.526 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr114", + "Region": "Al Qunitara - Quneitra", + "1990": 0.411, + "1991": 0.414, + "1992": 0.412, + "1993": 0.412, + "1994": 0.41, + "1995": 0.407, + "1996": 0.41, + "1997": 0.413, + "1998": 0.415, + "1999": 0.418, + "2000": 0.421, + "2001": 0.429, + "2002": 0.436, + "2003": 0.458, + "2004": 0.48, + "2005": 0.503, + "2006": 0.515, + "2007": 0.528, + "2008": 0.518, + "2009": 0.525, + "2010": 0.525, + "2011": 0.536, + "2012": 0.559, + "2013": 0.449, + "2014": 0.431, + "2015": 0.415, + "2016": 0.415, + "2017": 0.416, + "2018": 0.416, + "2019": 0.416, + "2020": 0.416, + "2021": 0.416 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr109", + "Region": "Al Raka-Raqqa", + "1990": 0.336, + "1991": 0.339, + "1992": 0.337, + "1993": 0.336, + "1994": 0.335, + "1995": 0.332, + "1996": 0.334, + "1997": 0.336, + "1998": 0.339, + "1999": 0.341, + "2000": 0.343, + "2001": 0.349, + "2002": 0.355, + "2003": 0.373, + "2004": 0.39, + "2005": 0.408, + "2006": 0.418, + "2007": 0.428, + "2008": 0.42, + "2009": 0.425, + "2010": 0.425, + "2011": 0.435, + "2012": 0.455, + "2013": 0.362, + "2014": 0.348, + "2015": 0.336, + "2016": 0.336, + "2017": 0.337, + "2018": 0.337, + "2019": 0.337, + "2020": 0.337, + "2021": 0.337 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr112", + "Region": "Al Swida - Sweida", + "1990": 0.511, + "1991": 0.515, + "1992": 0.513, + "1993": 0.514, + "1994": 0.513, + "1995": 0.51, + "1996": 0.513, + "1997": 0.517, + "1998": 0.52, + "1999": 0.524, + "2000": 0.527, + "2001": 0.537, + "2002": 0.548, + "2003": 0.576, + "2004": 0.604, + "2005": 0.634, + "2006": 0.651, + "2007": 0.67, + "2008": 0.655, + "2009": 0.664, + "2010": 0.662, + "2011": 0.675, + "2012": 0.703, + "2013": 0.573, + "2014": 0.548, + "2015": 0.525, + "2016": 0.525, + "2017": 0.526, + "2018": 0.526, + "2019": 0.526, + "2020": 0.526, + "2021": 0.526 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr101", + "Region": "Damascus", + "1990": 0.477, + "1991": 0.482, + "1992": 0.481, + "1993": 0.482, + "1994": 0.482, + "1995": 0.479, + "1996": 0.483, + "1997": 0.486, + "1998": 0.489, + "1999": 0.492, + "2000": 0.496, + "2001": 0.506, + "2002": 0.516, + "2003": 0.543, + "2004": 0.571, + "2005": 0.599, + "2006": 0.617, + "2007": 0.636, + "2008": 0.62, + "2009": 0.631, + "2010": 0.627, + "2011": 0.639, + "2012": 0.664, + "2013": 0.548, + "2014": 0.521, + "2015": 0.498, + "2016": 0.498, + "2017": 0.499, + "2018": 0.499, + "2019": 0.499, + "2020": 0.499, + "2021": 0.499 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr113", + "Region": "Daraa", + "1990": 0.436, + "1991": 0.44, + "1992": 0.438, + "1993": 0.439, + "1994": 0.438, + "1995": 0.435, + "1996": 0.438, + "1997": 0.441, + "1998": 0.444, + "1999": 0.447, + "2000": 0.45, + "2001": 0.459, + "2002": 0.468, + "2003": 0.492, + "2004": 0.516, + "2005": 0.542, + "2006": 0.557, + "2007": 0.573, + "2008": 0.56, + "2009": 0.568, + "2010": 0.566, + "2011": 0.577, + "2012": 0.601, + "2013": 0.491, + "2014": 0.469, + "2015": 0.449, + "2016": 0.449, + "2017": 0.45, + "2018": 0.45, + "2019": 0.45, + "2020": 0.45, + "2021": 0.45 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr110", + "Region": "Der El Zour - Deir Ezzor", + "1990": 0.368, + "1991": 0.371, + "1992": 0.369, + "1993": 0.369, + "1994": 0.368, + "1995": 0.365, + "1996": 0.368, + "1997": 0.37, + "1998": 0.373, + "1999": 0.375, + "2000": 0.378, + "2001": 0.385, + "2002": 0.392, + "2003": 0.411, + "2004": 0.431, + "2005": 0.451, + "2006": 0.463, + "2007": 0.475, + "2008": 0.466, + "2009": 0.471, + "2010": 0.471, + "2011": 0.481, + "2012": 0.502, + "2013": 0.404, + "2014": 0.387, + "2015": 0.373, + "2016": 0.373, + "2017": 0.374, + "2018": 0.374, + "2019": 0.374, + "2020": 0.374, + "2021": 0.374 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr107", + "Region": "Edlab Idleb", + "1990": 0.377, + "1991": 0.38, + "1992": 0.378, + "1993": 0.378, + "1994": 0.377, + "1995": 0.374, + "1996": 0.377, + "1997": 0.38, + "1998": 0.382, + "1999": 0.385, + "2000": 0.387, + "2001": 0.395, + "2002": 0.402, + "2003": 0.422, + "2004": 0.442, + "2005": 0.464, + "2006": 0.476, + "2007": 0.489, + "2008": 0.479, + "2009": 0.485, + "2010": 0.485, + "2011": 0.494, + "2012": 0.516, + "2013": 0.417, + "2014": 0.399, + "2015": 0.384, + "2016": 0.384, + "2017": 0.385, + "2018": 0.385, + "2019": 0.385, + "2020": 0.385, + "2021": 0.385 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr108", + "Region": "Halab - Aleppo", + "1990": 0.353, + "1991": 0.357, + "1992": 0.355, + "1993": 0.356, + "1994": 0.355, + "1995": 0.352, + "1996": 0.355, + "1997": 0.357, + "1998": 0.36, + "1999": 0.362, + "2000": 0.365, + "2001": 0.372, + "2002": 0.379, + "2003": 0.398, + "2004": 0.418, + "2005": 0.438, + "2006": 0.45, + "2007": 0.463, + "2008": 0.453, + "2009": 0.459, + "2010": 0.458, + "2011": 0.467, + "2012": 0.487, + "2013": 0.396, + "2014": 0.379, + "2015": 0.363, + "2016": 0.363, + "2017": 0.364, + "2018": 0.364, + "2019": 0.364, + "2020": 0.364, + "2021": 0.364 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr104", + "Region": "Hamaa", + "1990": 0.429, + "1991": 0.433, + "1992": 0.431, + "1993": 0.432, + "1994": 0.431, + "1995": 0.428, + "1996": 0.431, + "1997": 0.434, + "1998": 0.437, + "1999": 0.44, + "2000": 0.442, + "2001": 0.451, + "2002": 0.459, + "2003": 0.483, + "2004": 0.506, + "2005": 0.531, + "2006": 0.546, + "2007": 0.561, + "2008": 0.549, + "2009": 0.557, + "2010": 0.555, + "2011": 0.566, + "2012": 0.59, + "2013": 0.48, + "2014": 0.459, + "2015": 0.44, + "2016": 0.44, + "2017": 0.441, + "2018": 0.441, + "2019": 0.441, + "2020": 0.441, + "2021": 0.441 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr103", + "Region": "Homs", + "1990": 0.443, + "1991": 0.447, + "1992": 0.445, + "1993": 0.446, + "1994": 0.445, + "1995": 0.443, + "1996": 0.446, + "1997": 0.449, + "1998": 0.452, + "1999": 0.455, + "2000": 0.458, + "2001": 0.467, + "2002": 0.476, + "2003": 0.501, + "2004": 0.525, + "2005": 0.551, + "2006": 0.567, + "2007": 0.583, + "2008": 0.57, + "2009": 0.579, + "2010": 0.577, + "2011": 0.588, + "2012": 0.612, + "2013": 0.501, + "2014": 0.478, + "2015": 0.457, + "2016": 0.457, + "2017": 0.459, + "2018": 0.459, + "2019": 0.459, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr102", + "Region": "Rural Damascus", + "1990": 0.437, + "1991": 0.442, + "1992": 0.441, + "1993": 0.441, + "1994": 0.441, + "1995": 0.438, + "1996": 0.441, + "1997": 0.444, + "1998": 0.447, + "1999": 0.45, + "2000": 0.453, + "2001": 0.462, + "2002": 0.471, + "2003": 0.496, + "2004": 0.521, + "2005": 0.547, + "2006": 0.563, + "2007": 0.579, + "2008": 0.566, + "2009": 0.575, + "2010": 0.572, + "2011": 0.583, + "2012": 0.606, + "2013": 0.498, + "2014": 0.475, + "2015": 0.454, + "2016": 0.454, + "2017": 0.455, + "2018": 0.455, + "2019": 0.455, + "2020": 0.455, + "2021": 0.455 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr105", + "Region": "Tartous", + "1990": 0.481, + "1991": 0.485, + "1992": 0.484, + "1993": 0.484, + "1994": 0.483, + "1995": 0.48, + "1996": 0.483, + "1997": 0.486, + "1998": 0.49, + "1999": 0.493, + "2000": 0.496, + "2001": 0.506, + "2002": 0.516, + "2003": 0.542, + "2004": 0.569, + "2005": 0.596, + "2006": 0.613, + "2007": 0.63, + "2008": 0.616, + "2009": 0.625, + "2010": 0.623, + "2011": 0.636, + "2012": 0.662, + "2013": 0.539, + "2014": 0.515, + "2015": 0.494, + "2016": 0.494, + "2017": 0.495, + "2018": 0.495, + "2019": 0.495, + "2020": 0.495, + "2021": 0.495 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "National", + "GDLCODE": "TJKt", + "Region": "Total", + "1990": 0.643, + "1991": 0.646, + "1992": 0.65, + "1993": 0.633, + "1994": 0.62, + "1995": 0.626, + "1996": 0.625, + "1997": 0.625, + "1998": 0.624, + "1999": 0.623, + "2000": 0.63, + "2001": 0.635, + "2002": 0.643, + "2003": 0.656, + "2004": 0.658, + "2005": 0.665, + "2006": 0.67, + "2007": 0.671, + "2008": 0.68, + "2009": 0.682, + "2010": 0.684, + "2011": 0.684, + "2012": 0.689, + "2013": 0.692, + "2014": 0.695, + "2015": 0.697, + "2016": 0.7, + "2017": 0.702, + "2018": 0.702, + "2019": 0.701, + "2020": 0.701, + "2021": 0.701 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr104", + "Region": "DRS", + "1990": 0.604, + "1991": 0.607, + "1992": 0.61, + "1993": 0.595, + "1994": 0.582, + "1995": 0.587, + "1996": 0.587, + "1997": 0.586, + "1998": 0.585, + "1999": 0.584, + "2000": 0.59, + "2001": 0.596, + "2002": 0.604, + "2003": 0.617, + "2004": 0.62, + "2005": 0.627, + "2006": 0.634, + "2007": 0.636, + "2008": 0.646, + "2009": 0.649, + "2010": 0.652, + "2011": 0.654, + "2012": 0.659, + "2013": 0.662, + "2014": 0.664, + "2015": 0.667, + "2016": 0.669, + "2017": 0.671, + "2018": 0.67, + "2019": 0.67, + "2020": 0.67, + "2021": 0.67 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr101", + "Region": "Duchanbe", + "1990": 0.751, + "1991": 0.755, + "1992": 0.759, + "1993": 0.74, + "1994": 0.724, + "1995": 0.731, + "1996": 0.73, + "1997": 0.729, + "1998": 0.728, + "1999": 0.728, + "2000": 0.735, + "2001": 0.741, + "2002": 0.75, + "2003": 0.765, + "2004": 0.769, + "2005": 0.776, + "2006": 0.779, + "2007": 0.776, + "2008": 0.783, + "2009": 0.782, + "2010": 0.78, + "2011": 0.777, + "2012": 0.779, + "2013": 0.779, + "2014": 0.777, + "2015": 0.776, + "2016": 0.774, + "2017": 0.773, + "2018": 0.772, + "2019": 0.772, + "2020": 0.772, + "2021": 0.772 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr105", + "Region": "GBAO", + "1990": 0.691, + "1991": 0.688, + "1992": 0.685, + "1993": 0.66, + "1994": 0.639, + "1995": 0.638, + "1996": 0.634, + "1997": 0.629, + "1998": 0.624, + "1999": 0.62, + "2000": 0.623, + "2001": 0.628, + "2002": 0.637, + "2003": 0.651, + "2004": 0.655, + "2005": 0.662, + "2006": 0.674, + "2007": 0.68, + "2008": 0.696, + "2009": 0.703, + "2010": 0.71, + "2011": 0.716, + "2012": 0.726, + "2013": 0.729, + "2014": 0.731, + "2015": 0.732, + "2016": 0.734, + "2017": 0.735, + "2018": 0.737, + "2019": 0.738, + "2020": 0.738, + "2021": 0.738 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr102", + "Region": "Khatlon", + "1990": 0.643, + "1991": 0.647, + "1992": 0.65, + "1993": 0.633, + "1994": 0.619, + "1995": 0.625, + "1996": 0.624, + "1997": 0.623, + "1998": 0.623, + "1999": 0.622, + "2000": 0.628, + "2001": 0.634, + "2002": 0.643, + "2003": 0.657, + "2004": 0.661, + "2005": 0.668, + "2006": 0.67, + "2007": 0.668, + "2008": 0.674, + "2009": 0.672, + "2010": 0.671, + "2011": 0.668, + "2012": 0.67, + "2013": 0.673, + "2014": 0.675, + "2015": 0.677, + "2016": 0.679, + "2017": 0.681, + "2018": 0.681, + "2019": 0.681, + "2020": 0.681, + "2021": 0.681 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr103", + "Region": "Sughd (formerly Leninabad)", + "1990": 0.64, + "1991": 0.643, + "1992": 0.647, + "1993": 0.632, + "1994": 0.619, + "1995": 0.625, + "1996": 0.625, + "1997": 0.624, + "1998": 0.624, + "1999": 0.623, + "2000": 0.63, + "2001": 0.632, + "2002": 0.638, + "2003": 0.648, + "2004": 0.649, + "2005": 0.653, + "2006": 0.662, + "2007": 0.666, + "2008": 0.678, + "2009": 0.683, + "2010": 0.687, + "2011": 0.691, + "2012": 0.698, + "2013": 0.704, + "2014": 0.709, + "2015": 0.714, + "2016": 0.718, + "2017": 0.723, + "2018": 0.723, + "2019": 0.722, + "2020": 0.722, + "2021": 0.722 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "National", + "GDLCODE": "TZAt", + "Region": "Total", + "1990": 0.269, + "1991": 0.271, + "1992": 0.272, + "1993": 0.276, + "1994": 0.277, + "1995": 0.279, + "1996": 0.28, + "1997": 0.284, + "1998": 0.295, + "1999": 0.306, + "2000": 0.318, + "2001": 0.327, + "2002": 0.336, + "2003": 0.348, + "2004": 0.36, + "2005": 0.372, + "2006": 0.384, + "2007": 0.396, + "2008": 0.408, + "2009": 0.42, + "2010": 0.432, + "2011": 0.432, + "2012": 0.431, + "2013": 0.431, + "2014": 0.431, + "2015": 0.431, + "2016": 0.43, + "2017": 0.428, + "2018": 0.443, + "2019": 0.459, + "2020": 0.469, + "2021": 0.469 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr202", + "Region": " Arusha, Manyara", + "1990": 0.287, + "1991": 0.289, + "1992": 0.291, + "1993": 0.278, + "1994": 0.262, + "1995": 0.249, + "1996": 0.235, + "1997": 0.25, + "1998": 0.271, + "1999": 0.293, + "2000": 0.308, + "2001": 0.321, + "2002": 0.333, + "2003": 0.349, + "2004": 0.364, + "2005": 0.376, + "2006": 0.389, + "2007": 0.401, + "2008": 0.414, + "2009": 0.427, + "2010": 0.439, + "2011": 0.438, + "2012": 0.437, + "2013": 0.436, + "2014": 0.435, + "2015": 0.434, + "2016": 0.433, + "2017": 0.431, + "2018": 0.447, + "2019": 0.462, + "2020": 0.472, + "2021": 0.472 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr207", + "Region": " Dar Es Salam", + "1990": 0.363, + "1991": 0.367, + "1992": 0.37, + "1993": 0.377, + "1994": 0.381, + "1995": 0.386, + "1996": 0.389, + "1997": 0.399, + "1998": 0.418, + "1999": 0.437, + "2000": 0.446, + "2001": 0.453, + "2002": 0.46, + "2003": 0.472, + "2004": 0.484, + "2005": 0.499, + "2006": 0.514, + "2007": 0.529, + "2008": 0.544, + "2009": 0.56, + "2010": 0.575, + "2011": 0.579, + "2012": 0.583, + "2013": 0.588, + "2014": 0.593, + "2015": 0.598, + "2016": 0.597, + "2017": 0.597, + "2018": 0.617, + "2019": 0.638, + "2020": 0.65, + "2021": 0.65 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr201", + "Region": " Dodoma", + "1990": 0.245, + "1991": 0.247, + "1992": 0.248, + "1993": 0.255, + "1994": 0.259, + "1995": 0.263, + "1996": 0.267, + "1997": 0.267, + "1998": 0.273, + "1999": 0.278, + "2000": 0.288, + "2001": 0.296, + "2002": 0.304, + "2003": 0.314, + "2004": 0.324, + "2005": 0.33, + "2006": 0.336, + "2007": 0.341, + "2008": 0.346, + "2009": 0.351, + "2010": 0.356, + "2011": 0.362, + "2012": 0.368, + "2013": 0.374, + "2014": 0.381, + "2015": 0.387, + "2016": 0.385, + "2017": 0.383, + "2018": 0.397, + "2019": 0.411, + "2020": 0.42, + "2021": 0.42 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr211", + "Region": " Iringa, Njombe", + "1990": 0.254, + "1991": 0.255, + "1992": 0.257, + "1993": 0.26, + "1994": 0.26, + "1995": 0.261, + "1996": 0.261, + "1997": 0.281, + "1998": 0.31, + "1999": 0.341, + "2000": 0.348, + "2001": 0.354, + "2002": 0.361, + "2003": 0.37, + "2004": 0.38, + "2005": 0.397, + "2006": 0.414, + "2007": 0.432, + "2008": 0.449, + "2009": 0.467, + "2010": 0.485, + "2011": 0.483, + "2012": 0.481, + "2013": 0.479, + "2014": 0.478, + "2015": 0.476, + "2016": 0.474, + "2017": 0.472, + "2018": 0.489, + "2019": 0.506, + "2020": 0.518, + "2021": 0.518 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr218", + "Region": " Kagera", + "1990": 0.273, + "1991": 0.276, + "1992": 0.278, + "1993": 0.282, + "1994": 0.283, + "1995": 0.285, + "1996": 0.286, + "1997": 0.279, + "1998": 0.278, + "1999": 0.276, + "2000": 0.294, + "2001": 0.309, + "2002": 0.324, + "2003": 0.342, + "2004": 0.358, + "2005": 0.368, + "2006": 0.377, + "2007": 0.386, + "2008": 0.395, + "2009": 0.404, + "2010": 0.412, + "2011": 0.413, + "2012": 0.413, + "2013": 0.414, + "2014": 0.414, + "2015": 0.415, + "2016": 0.413, + "2017": 0.41, + "2018": 0.425, + "2019": 0.44, + "2020": 0.451, + "2021": 0.451 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr216", + "Region": " Kigoma", + "1990": 0.23, + "1991": 0.231, + "1992": 0.232, + "1993": 0.24, + "1994": 0.244, + "1995": 0.249, + "1996": 0.254, + "1997": 0.269, + "1998": 0.292, + "1999": 0.317, + "2000": 0.325, + "2001": 0.331, + "2002": 0.338, + "2003": 0.347, + "2004": 0.356, + "2005": 0.365, + "2006": 0.373, + "2007": 0.381, + "2008": 0.389, + "2009": 0.397, + "2010": 0.405, + "2011": 0.4, + "2012": 0.396, + "2013": 0.392, + "2014": 0.387, + "2015": 0.384, + "2016": 0.382, + "2017": 0.38, + "2018": 0.393, + "2019": 0.407, + "2020": 0.417, + "2021": 0.417 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr203", + "Region": " Kilimanjaro", + "1990": 0.374, + "1991": 0.377, + "1992": 0.38, + "1993": 0.385, + "1994": 0.385, + "1995": 0.387, + "1996": 0.388, + "1997": 0.394, + "1998": 0.409, + "1999": 0.424, + "2000": 0.429, + "2001": 0.431, + "2002": 0.434, + "2003": 0.441, + "2004": 0.449, + "2005": 0.466, + "2006": 0.483, + "2007": 0.5, + "2008": 0.518, + "2009": 0.535, + "2010": 0.553, + "2011": 0.552, + "2012": 0.551, + "2013": 0.55, + "2014": 0.55, + "2015": 0.55, + "2016": 0.547, + "2017": 0.544, + "2018": 0.564, + "2019": 0.584, + "2020": 0.597, + "2021": 0.597 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr208", + "Region": " Lindi", + "1990": 0.205, + "1991": 0.206, + "1992": 0.208, + "1993": 0.224, + "1994": 0.238, + "1995": 0.252, + "1996": 0.264, + "1997": 0.257, + "1998": 0.255, + "1999": 0.253, + "2000": 0.272, + "2001": 0.29, + "2002": 0.307, + "2003": 0.326, + "2004": 0.344, + "2005": 0.345, + "2006": 0.345, + "2007": 0.344, + "2008": 0.343, + "2009": 0.342, + "2010": 0.341, + "2011": 0.347, + "2012": 0.354, + "2013": 0.361, + "2014": 0.368, + "2015": 0.375, + "2016": 0.373, + "2017": 0.371, + "2018": 0.385, + "2019": 0.398, + "2020": 0.407, + "2021": 0.407 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr220", + "Region": " Mara", + "1990": 0.261, + "1991": 0.263, + "1992": 0.265, + "1993": 0.279, + "1994": 0.289, + "1995": 0.3, + "1996": 0.31, + "1997": 0.322, + "1998": 0.342, + "1999": 0.363, + "2000": 0.365, + "2001": 0.366, + "2002": 0.367, + "2003": 0.372, + "2004": 0.377, + "2005": 0.389, + "2006": 0.4, + "2007": 0.412, + "2008": 0.424, + "2009": 0.435, + "2010": 0.447, + "2011": 0.447, + "2012": 0.448, + "2013": 0.449, + "2014": 0.45, + "2015": 0.452, + "2016": 0.45, + "2017": 0.448, + "2018": 0.464, + "2019": 0.48, + "2020": 0.491, + "2021": 0.491 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr212", + "Region": " Mbeya", + "1990": 0.293, + "1991": 0.295, + "1992": 0.296, + "1993": 0.302, + "1994": 0.304, + "1995": 0.307, + "1996": 0.309, + "1997": 0.32, + "1998": 0.339, + "1999": 0.359, + "2000": 0.345, + "2001": 0.331, + "2002": 0.318, + "2003": 0.309, + "2004": 0.3, + "2005": 0.319, + "2006": 0.339, + "2007": 0.359, + "2008": 0.379, + "2009": 0.4, + "2010": 0.42, + "2011": 0.427, + "2012": 0.434, + "2013": 0.441, + "2014": 0.448, + "2015": 0.456, + "2016": 0.454, + "2017": 0.452, + "2018": 0.468, + "2019": 0.484, + "2020": 0.495, + "2021": 0.495 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr205", + "Region": " Morogoro", + "1990": 0.253, + "1991": 0.255, + "1992": 0.257, + "1993": 0.258, + "1994": 0.256, + "1995": 0.256, + "1996": 0.255, + "1997": 0.264, + "1998": 0.28, + "1999": 0.295, + "2000": 0.311, + "2001": 0.324, + "2002": 0.338, + "2003": 0.353, + "2004": 0.369, + "2005": 0.381, + "2006": 0.393, + "2007": 0.405, + "2008": 0.417, + "2009": 0.429, + "2010": 0.441, + "2011": 0.438, + "2012": 0.434, + "2013": 0.431, + "2014": 0.428, + "2015": 0.425, + "2016": 0.423, + "2017": 0.422, + "2018": 0.437, + "2019": 0.452, + "2020": 0.462, + "2021": 0.462 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr209", + "Region": " Mtwara", + "1990": 0.219, + "1991": 0.22, + "1992": 0.221, + "1993": 0.222, + "1994": 0.221, + "1995": 0.22, + "1996": 0.22, + "1997": 0.226, + "1998": 0.238, + "1999": 0.251, + "2000": 0.269, + "2001": 0.285, + "2002": 0.3, + "2003": 0.317, + "2004": 0.334, + "2005": 0.346, + "2006": 0.358, + "2007": 0.37, + "2008": 0.382, + "2009": 0.394, + "2010": 0.406, + "2011": 0.399, + "2012": 0.391, + "2013": 0.383, + "2014": 0.376, + "2015": 0.369, + "2016": 0.367, + "2017": 0.366, + "2018": 0.379, + "2019": 0.392, + "2020": 0.401, + "2021": 0.401 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr219", + "Region": " Mwanza, Geita", + "1990": 0.265, + "1991": 0.266, + "1992": 0.268, + "1993": 0.265, + "1994": 0.259, + "1995": 0.254, + "1996": 0.25, + "1997": 0.254, + "1998": 0.264, + "1999": 0.273, + "2000": 0.293, + "2001": 0.31, + "2002": 0.327, + "2003": 0.346, + "2004": 0.364, + "2005": 0.372, + "2006": 0.379, + "2007": 0.386, + "2008": 0.392, + "2009": 0.399, + "2010": 0.405, + "2011": 0.404, + "2012": 0.402, + "2013": 0.401, + "2014": 0.4, + "2015": 0.399, + "2016": 0.397, + "2017": 0.396, + "2018": 0.41, + "2019": 0.424, + "2020": 0.434, + "2021": 0.434 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr224", + "Region": " Pemba North", + "1990": 0.183, + "1991": 0.183, + "1992": 0.184, + "1993": 0.203, + "1994": 0.219, + "1995": 0.234, + "1996": 0.249, + "1997": 0.289, + "1998": 0.34, + "1999": 0.394, + "2000": 0.376, + "2001": 0.359, + "2002": 0.344, + "2003": 0.332, + "2004": 0.322, + "2005": 0.337, + "2006": 0.354, + "2007": 0.37, + "2008": 0.386, + "2009": 0.403, + "2010": 0.42, + "2011": 0.417, + "2012": 0.414, + "2013": 0.412, + "2014": 0.409, + "2015": 0.407, + "2016": 0.404, + "2017": 0.401, + "2018": 0.416, + "2019": 0.431, + "2020": 0.442, + "2021": 0.442 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr225", + "Region": " Pemba South", + "1990": 0.252, + "1991": 0.253, + "1992": 0.254, + "1993": 0.278, + "1994": 0.297, + "1995": 0.317, + "1996": 0.335, + "1997": 0.323, + "1998": 0.321, + "1999": 0.317, + "2000": 0.329, + "2001": 0.34, + "2002": 0.351, + "2003": 0.365, + "2004": 0.379, + "2005": 0.394, + "2006": 0.409, + "2007": 0.423, + "2008": 0.438, + "2009": 0.454, + "2010": 0.469, + "2011": 0.468, + "2012": 0.468, + "2013": 0.468, + "2014": 0.468, + "2015": 0.468, + "2016": 0.465, + "2017": 0.462, + "2018": 0.479, + "2019": 0.496, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr206", + "Region": " Pwani", + "1990": 0.213, + "1991": 0.214, + "1992": 0.215, + "1993": 0.231, + "1994": 0.243, + "1995": 0.256, + "1996": 0.268, + "1997": 0.246, + "1998": 0.229, + "1999": 0.209, + "2000": 0.239, + "2001": 0.265, + "2002": 0.29, + "2003": 0.317, + "2004": 0.343, + "2005": 0.357, + "2006": 0.371, + "2007": 0.385, + "2008": 0.399, + "2009": 0.414, + "2010": 0.428, + "2011": 0.423, + "2012": 0.417, + "2013": 0.412, + "2014": 0.407, + "2015": 0.402, + "2016": 0.4, + "2017": 0.398, + "2018": 0.413, + "2019": 0.427, + "2020": 0.437, + "2021": 0.437 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr215", + "Region": " Rukwa, Katavi", + "1990": 0.23, + "1991": 0.232, + "1992": 0.233, + "1993": 0.237, + "1994": 0.238, + "1995": 0.241, + "1996": 0.242, + "1997": 0.248, + "1998": 0.26, + "1999": 0.272, + "2000": 0.278, + "2001": 0.283, + "2002": 0.288, + "2003": 0.295, + "2004": 0.302, + "2005": 0.315, + "2006": 0.328, + "2007": 0.341, + "2008": 0.354, + "2009": 0.367, + "2010": 0.381, + "2011": 0.374, + "2012": 0.368, + "2013": 0.362, + "2014": 0.356, + "2015": 0.35, + "2016": 0.349, + "2017": 0.348, + "2018": 0.36, + "2019": 0.372, + "2020": 0.38, + "2021": 0.38 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr210", + "Region": " Ruvuma", + "1990": 0.297, + "1991": 0.299, + "1992": 0.302, + "1993": 0.305, + "1994": 0.305, + "1995": 0.306, + "1996": 0.307, + "1997": 0.322, + "1998": 0.345, + "1999": 0.371, + "2000": 0.378, + "2001": 0.385, + "2002": 0.391, + "2003": 0.401, + "2004": 0.411, + "2005": 0.423, + "2006": 0.435, + "2007": 0.447, + "2008": 0.459, + "2009": 0.47, + "2010": 0.482, + "2011": 0.474, + "2012": 0.466, + "2013": 0.458, + "2014": 0.451, + "2015": 0.443, + "2016": 0.442, + "2017": 0.44, + "2018": 0.456, + "2019": 0.471, + "2020": 0.482, + "2021": 0.482 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr217", + "Region": " Shinyanga, Simiyu", + "1990": 0.235, + "1991": 0.236, + "1992": 0.237, + "1993": 0.239, + "1994": 0.238, + "1995": 0.238, + "1996": 0.238, + "1997": 0.225, + "1998": 0.217, + "1999": 0.208, + "2000": 0.23, + "2001": 0.25, + "2002": 0.269, + "2003": 0.289, + "2004": 0.309, + "2005": 0.318, + "2006": 0.328, + "2007": 0.337, + "2008": 0.346, + "2009": 0.355, + "2010": 0.363, + "2011": 0.365, + "2012": 0.366, + "2013": 0.367, + "2014": 0.369, + "2015": 0.37, + "2016": 0.369, + "2017": 0.367, + "2018": 0.38, + "2019": 0.394, + "2020": 0.402, + "2021": 0.402 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr213", + "Region": " Singida", + "1990": 0.263, + "1991": 0.264, + "1992": 0.265, + "1993": 0.272, + "1994": 0.276, + "1995": 0.28, + "1996": 0.284, + "1997": 0.283, + "1998": 0.29, + "1999": 0.296, + "2000": 0.305, + "2001": 0.313, + "2002": 0.32, + "2003": 0.331, + "2004": 0.341, + "2005": 0.354, + "2006": 0.368, + "2007": 0.382, + "2008": 0.396, + "2009": 0.41, + "2010": 0.424, + "2011": 0.423, + "2012": 0.423, + "2013": 0.423, + "2014": 0.422, + "2015": 0.422, + "2016": 0.421, + "2017": 0.419, + "2018": 0.434, + "2019": 0.449, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr214", + "Region": " Tabora", + "1990": 0.229, + "1991": 0.229, + "1992": 0.23, + "1993": 0.238, + "1994": 0.243, + "1995": 0.248, + "1996": 0.253, + "1997": 0.231, + "1998": 0.213, + "1999": 0.193, + "2000": 0.2, + "2001": 0.206, + "2002": 0.212, + "2003": 0.219, + "2004": 0.227, + "2005": 0.243, + "2006": 0.259, + "2007": 0.275, + "2008": 0.292, + "2009": 0.309, + "2010": 0.326, + "2011": 0.322, + "2012": 0.317, + "2013": 0.313, + "2014": 0.309, + "2015": 0.304, + "2016": 0.303, + "2017": 0.302, + "2018": 0.313, + "2019": 0.324, + "2020": 0.331, + "2021": 0.331 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr204", + "Region": " Tanga", + "1990": 0.305, + "1991": 0.307, + "1992": 0.308, + "1993": 0.307, + "1994": 0.301, + "1995": 0.298, + "1996": 0.294, + "1997": 0.304, + "1998": 0.322, + "1999": 0.341, + "2000": 0.348, + "2001": 0.354, + "2002": 0.359, + "2003": 0.368, + "2004": 0.376, + "2005": 0.389, + "2006": 0.402, + "2007": 0.415, + "2008": 0.428, + "2009": 0.441, + "2010": 0.454, + "2011": 0.45, + "2012": 0.447, + "2013": 0.443, + "2014": 0.44, + "2015": 0.437, + "2016": 0.435, + "2017": 0.433, + "2018": 0.449, + "2019": 0.464, + "2020": 0.475, + "2021": 0.475 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr221", + "Region": " Zanzibar North", + "1990": 0.258, + "1991": 0.26, + "1992": 0.261, + "1993": 0.262, + "1994": 0.259, + "1995": 0.258, + "1996": 0.256, + "1997": 0.276, + "1998": 0.305, + "1999": 0.336, + "2000": 0.342, + "2001": 0.347, + "2002": 0.352, + "2003": 0.361, + "2004": 0.369, + "2005": 0.378, + "2006": 0.388, + "2007": 0.397, + "2008": 0.407, + "2009": 0.416, + "2010": 0.425, + "2011": 0.432, + "2012": 0.439, + "2013": 0.447, + "2014": 0.454, + "2015": 0.461, + "2016": 0.458, + "2017": 0.455, + "2018": 0.472, + "2019": 0.489, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr222", + "Region": " Zanzibar South", + "1990": 0.352, + "1991": 0.354, + "1992": 0.356, + "1993": 0.373, + "1994": 0.384, + "1995": 0.397, + "1996": 0.408, + "1997": 0.451, + "1998": 0.507, + "1999": 0.567, + "2000": 0.542, + "2001": 0.517, + "2002": 0.494, + "2003": 0.478, + "2004": 0.462, + "2005": 0.472, + "2006": 0.482, + "2007": 0.491, + "2008": 0.5, + "2009": 0.509, + "2010": 0.518, + "2011": 0.523, + "2012": 0.528, + "2013": 0.533, + "2014": 0.538, + "2015": 0.543, + "2016": 0.541, + "2017": 0.539, + "2018": 0.558, + "2019": 0.578, + "2020": 0.59, + "2021": 0.59 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr223", + "Region": " Zanzibar West", + "1990": 0.338, + "1991": 0.34, + "1992": 0.343, + "1993": 0.352, + "1994": 0.356, + "1995": 0.362, + "1996": 0.366, + "1997": 0.409, + "1998": 0.463, + "1999": 0.522, + "2000": 0.52, + "2001": 0.516, + "2002": 0.513, + "2003": 0.516, + "2004": 0.519, + "2005": 0.535, + "2006": 0.551, + "2007": 0.567, + "2008": 0.583, + "2009": 0.598, + "2010": 0.614, + "2011": 0.619, + "2012": 0.624, + "2013": 0.629, + "2014": 0.635, + "2015": 0.64, + "2016": 0.639, + "2017": 0.638, + "2018": 0.66, + "2019": 0.682, + "2020": 0.696, + "2021": 0.696 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "National", + "GDLCODE": "THAt", + "Region": "Total", + "1990": 0.385, + "1991": 0.396, + "1992": 0.407, + "1993": 0.418, + "1994": 0.427, + "1995": 0.436, + "1996": 0.445, + "1997": 0.459, + "1998": 0.476, + "1999": 0.488, + "2000": 0.501, + "2001": 0.522, + "2002": 0.542, + "2003": 0.561, + "2004": 0.581, + "2005": 0.589, + "2006": 0.588, + "2007": 0.607, + "2008": 0.61, + "2009": 0.617, + "2010": 0.623, + "2011": 0.633, + "2012": 0.63, + "2013": 0.629, + "2014": 0.705, + "2015": 0.705, + "2016": 0.706, + "2017": 0.711, + "2018": 0.716, + "2019": 0.731, + "2020": 0.731, + "2021": 0.731 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr101", + "Region": "Bangkok", + "1990": 0.461, + "1991": 0.474, + "1992": 0.487, + "1993": 0.5, + "1994": 0.512, + "1995": 0.523, + "1996": 0.534, + "1997": 0.55, + "1998": 0.57, + "1999": 0.584, + "2000": 0.598, + "2001": 0.625, + "2002": 0.651, + "2003": 0.675, + "2004": 0.7, + "2005": 0.708, + "2006": 0.706, + "2007": 0.727, + "2008": 0.732, + "2009": 0.74, + "2010": 0.747, + "2011": 0.758, + "2012": 0.755, + "2013": 0.754, + "2014": 0.835, + "2015": 0.835, + "2016": 0.835, + "2017": 0.839, + "2018": 0.838, + "2019": 0.849, + "2020": 0.849, + "2021": 0.849 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr102", + "Region": "Central", + "1990": 0.377, + "1991": 0.388, + "1992": 0.399, + "1993": 0.41, + "1994": 0.419, + "1995": 0.428, + "1996": 0.437, + "1997": 0.45, + "1998": 0.467, + "1999": 0.479, + "2000": 0.491, + "2001": 0.512, + "2002": 0.532, + "2003": 0.551, + "2004": 0.571, + "2005": 0.579, + "2006": 0.577, + "2007": 0.601, + "2008": 0.611, + "2009": 0.624, + "2010": 0.635, + "2011": 0.651, + "2012": 0.654, + "2013": 0.65, + "2014": 0.721, + "2015": 0.718, + "2016": 0.715, + "2017": 0.716, + "2018": 0.729, + "2019": 0.752, + "2020": 0.752, + "2021": 0.752 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr103", + "Region": "North", + "1990": 0.367, + "1991": 0.378, + "1992": 0.388, + "1993": 0.399, + "1994": 0.408, + "1995": 0.417, + "1996": 0.425, + "1997": 0.438, + "1998": 0.455, + "1999": 0.467, + "2000": 0.479, + "2001": 0.499, + "2002": 0.517, + "2003": 0.535, + "2004": 0.552, + "2005": 0.562, + "2006": 0.561, + "2007": 0.577, + "2008": 0.578, + "2009": 0.581, + "2010": 0.584, + "2011": 0.591, + "2012": 0.585, + "2013": 0.583, + "2014": 0.656, + "2015": 0.655, + "2016": 0.654, + "2017": 0.658, + "2018": 0.671, + "2019": 0.692, + "2020": 0.692, + "2021": 0.692 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr104", + "Region": "Northeast", + "1990": 0.37, + "1991": 0.381, + "1992": 0.392, + "1993": 0.402, + "1994": 0.411, + "1995": 0.42, + "1996": 0.429, + "1997": 0.442, + "1998": 0.459, + "1999": 0.471, + "2000": 0.483, + "2001": 0.503, + "2002": 0.522, + "2003": 0.54, + "2004": 0.558, + "2005": 0.567, + "2006": 0.566, + "2007": 0.582, + "2008": 0.582, + "2009": 0.585, + "2010": 0.587, + "2011": 0.594, + "2012": 0.588, + "2013": 0.589, + "2014": 0.664, + "2015": 0.665, + "2016": 0.667, + "2017": 0.674, + "2018": 0.671, + "2019": 0.677, + "2020": 0.677, + "2021": 0.677 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr105", + "Region": "South", + "1990": 0.367, + "1991": 0.378, + "1992": 0.388, + "1993": 0.399, + "1994": 0.408, + "1995": 0.417, + "1996": 0.425, + "1997": 0.438, + "1998": 0.455, + "1999": 0.466, + "2000": 0.478, + "2001": 0.498, + "2002": 0.518, + "2003": 0.536, + "2004": 0.555, + "2005": 0.563, + "2006": 0.561, + "2007": 0.583, + "2008": 0.59, + "2009": 0.6, + "2010": 0.609, + "2011": 0.622, + "2012": 0.623, + "2013": 0.621, + "2014": 0.693, + "2015": 0.692, + "2016": 0.691, + "2017": 0.695, + "2018": 0.695, + "2019": 0.705, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "National", + "GDLCODE": "TLSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.39, + "2003": 0.404, + "2004": 0.418, + "2005": 0.433, + "2006": 0.447, + "2007": 0.462, + "2008": 0.477, + "2009": 0.492, + "2010": 0.493, + "2011": 0.514, + "2012": 0.518, + "2013": 0.516, + "2014": 0.518, + "2015": 0.523, + "2016": 0.526, + "2017": 0.526, + "2018": 0.526, + "2019": 0.532, + "2020": 0.532, + "2021": 0.532 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr101", + "Region": "Aileu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.372, + "2003": 0.386, + "2004": 0.399, + "2005": 0.413, + "2006": 0.427, + "2007": 0.44, + "2008": 0.455, + "2009": 0.469, + "2010": 0.469, + "2011": 0.489, + "2012": 0.491, + "2013": 0.488, + "2014": 0.488, + "2015": 0.492, + "2016": 0.495, + "2017": 0.495, + "2018": 0.495, + "2019": 0.501, + "2020": 0.501, + "2021": 0.501 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr102", + "Region": "Ainaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.343, + "2003": 0.355, + "2004": 0.368, + "2005": 0.381, + "2006": 0.393, + "2007": 0.406, + "2008": 0.419, + "2009": 0.432, + "2010": 0.431, + "2011": 0.448, + "2012": 0.449, + "2013": 0.444, + "2014": 0.443, + "2015": 0.445, + "2016": 0.446, + "2017": 0.446, + "2018": 0.446, + "2019": 0.451, + "2020": 0.451, + "2021": 0.451 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr103", + "Region": "Baucau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.383, + "2003": 0.397, + "2004": 0.411, + "2005": 0.425, + "2006": 0.44, + "2007": 0.454, + "2008": 0.469, + "2009": 0.483, + "2010": 0.479, + "2011": 0.494, + "2012": 0.492, + "2013": 0.485, + "2014": 0.482, + "2015": 0.481, + "2016": 0.48, + "2017": 0.48, + "2018": 0.48, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr104", + "Region": "Bobonaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.337, + "2003": 0.349, + "2004": 0.362, + "2005": 0.374, + "2006": 0.386, + "2007": 0.399, + "2008": 0.412, + "2009": 0.425, + "2010": 0.426, + "2011": 0.446, + "2012": 0.449, + "2013": 0.447, + "2014": 0.448, + "2015": 0.452, + "2016": 0.455, + "2017": 0.455, + "2018": 0.455, + "2019": 0.461, + "2020": 0.461, + "2021": 0.461 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr105", + "Region": "Cova Lima", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.431, + "2003": 0.446, + "2004": 0.462, + "2005": 0.478, + "2006": 0.494, + "2007": 0.51, + "2008": 0.526, + "2009": 0.543, + "2010": 0.532, + "2011": 0.543, + "2012": 0.535, + "2013": 0.521, + "2014": 0.511, + "2015": 0.506, + "2016": 0.498, + "2017": 0.498, + "2018": 0.498, + "2019": 0.504, + "2020": 0.504, + "2021": 0.504 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr106", + "Region": "Dili", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.518, + "2003": 0.536, + "2004": 0.555, + "2005": 0.574, + "2006": 0.594, + "2007": 0.614, + "2008": 0.634, + "2009": 0.654, + "2010": 0.658, + "2011": 0.683, + "2012": 0.69, + "2013": 0.689, + "2014": 0.693, + "2015": 0.7, + "2016": 0.705, + "2017": 0.705, + "2018": 0.705, + "2019": 0.712, + "2020": 0.712, + "2021": 0.712 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr107", + "Region": "Ermera", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.294, + "2003": 0.304, + "2004": 0.315, + "2005": 0.326, + "2006": 0.336, + "2007": 0.347, + "2008": 0.358, + "2009": 0.37, + "2010": 0.372, + "2011": 0.391, + "2012": 0.395, + "2013": 0.394, + "2014": 0.397, + "2015": 0.402, + "2016": 0.405, + "2017": 0.405, + "2018": 0.405, + "2019": 0.41, + "2020": 0.41, + "2021": 0.41 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr109", + "Region": "Lautem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.449, + "2003": 0.465, + "2004": 0.481, + "2005": 0.498, + "2006": 0.514, + "2007": 0.531, + "2008": 0.548, + "2009": 0.566, + "2010": 0.545, + "2011": 0.547, + "2012": 0.529, + "2013": 0.506, + "2014": 0.488, + "2015": 0.473, + "2016": 0.456, + "2017": 0.456, + "2018": 0.456, + "2019": 0.462, + "2020": 0.462, + "2021": 0.462 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr108", + "Region": "Liquica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.349, + "2003": 0.361, + "2004": 0.374, + "2005": 0.387, + "2006": 0.4, + "2007": 0.413, + "2008": 0.426, + "2009": 0.439, + "2010": 0.448, + "2011": 0.475, + "2012": 0.485, + "2013": 0.49, + "2014": 0.498, + "2015": 0.508, + "2016": 0.517, + "2017": 0.517, + "2018": 0.517, + "2019": 0.523, + "2020": 0.523, + "2021": 0.523 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr111", + "Region": "Manatuto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.402, + "2003": 0.416, + "2004": 0.431, + "2005": 0.446, + "2006": 0.461, + "2007": 0.476, + "2008": 0.491, + "2009": 0.507, + "2010": 0.504, + "2011": 0.522, + "2012": 0.522, + "2013": 0.516, + "2014": 0.514, + "2015": 0.516, + "2016": 0.516, + "2017": 0.516, + "2018": 0.516, + "2019": 0.522, + "2020": 0.522, + "2021": 0.522 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr110", + "Region": "Manufahi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.393, + "2003": 0.407, + "2004": 0.421, + "2005": 0.436, + "2006": 0.45, + "2007": 0.465, + "2008": 0.48, + "2009": 0.495, + "2010": 0.493, + "2011": 0.51, + "2012": 0.51, + "2013": 0.505, + "2014": 0.503, + "2015": 0.505, + "2016": 0.505, + "2017": 0.505, + "2018": 0.505, + "2019": 0.511, + "2020": 0.511, + "2021": 0.511 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr112", + "Region": "Oecussi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.309, + "2003": 0.321, + "2004": 0.332, + "2005": 0.343, + "2006": 0.355, + "2007": 0.366, + "2008": 0.378, + "2009": 0.39, + "2010": 0.4, + "2011": 0.428, + "2012": 0.44, + "2013": 0.446, + "2014": 0.455, + "2015": 0.467, + "2016": 0.477, + "2017": 0.477, + "2018": 0.477, + "2019": 0.483, + "2020": 0.483, + "2021": 0.483 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr113", + "Region": "Viqueque", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.391, + "2003": 0.405, + "2004": 0.42, + "2005": 0.434, + "2006": 0.449, + "2007": 0.463, + "2008": 0.478, + "2009": 0.493, + "2010": 0.491, + "2011": 0.51, + "2012": 0.511, + "2013": 0.505, + "2014": 0.504, + "2015": 0.506, + "2016": 0.507, + "2017": 0.507, + "2018": 0.507, + "2019": 0.513, + "2020": 0.513, + "2021": 0.513 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "National", + "GDLCODE": "TGOt", + "Region": "Total", + "1990": 0.301, + "1991": 0.315, + "1992": 0.303, + "1993": 0.308, + "1994": 0.312, + "1995": 0.339, + "1996": 0.354, + "1997": 0.363, + "1998": 0.372, + "1999": 0.381, + "2000": 0.389, + "2001": 0.4, + "2002": 0.406, + "2003": 0.411, + "2004": 0.416, + "2005": 0.42, + "2006": 0.432, + "2007": 0.417, + "2008": 0.43, + "2009": 0.443, + "2010": 0.45, + "2011": 0.456, + "2012": 0.466, + "2013": 0.477, + "2014": 0.487, + "2015": 0.497, + "2016": 0.505, + "2017": 0.512, + "2018": 0.519, + "2019": 0.527, + "2020": 0.527, + "2021": 0.527 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr104", + "Region": "Centrale", + "1990": 0.28, + "1991": 0.293, + "1992": 0.28, + "1993": 0.284, + "1994": 0.287, + "1995": 0.314, + "1996": 0.328, + "1997": 0.337, + "1998": 0.345, + "1999": 0.354, + "2000": 0.363, + "2001": 0.375, + "2002": 0.38, + "2003": 0.386, + "2004": 0.391, + "2005": 0.395, + "2006": 0.407, + "2007": 0.395, + "2008": 0.412, + "2009": 0.429, + "2010": 0.441, + "2011": 0.453, + "2012": 0.465, + "2013": 0.477, + "2014": 0.49, + "2015": 0.492, + "2016": 0.493, + "2017": 0.494, + "2018": 0.501, + "2019": 0.508, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr105", + "Region": "Kara", + "1990": 0.269, + "1991": 0.282, + "1992": 0.269, + "1993": 0.272, + "1994": 0.276, + "1995": 0.301, + "1996": 0.316, + "1997": 0.323, + "1998": 0.331, + "1999": 0.337, + "2000": 0.344, + "2001": 0.352, + "2002": 0.355, + "2003": 0.358, + "2004": 0.361, + "2005": 0.362, + "2006": 0.372, + "2007": 0.361, + "2008": 0.377, + "2009": 0.394, + "2010": 0.405, + "2011": 0.416, + "2012": 0.428, + "2013": 0.44, + "2014": 0.452, + "2015": 0.462, + "2016": 0.469, + "2017": 0.477, + "2018": 0.484, + "2019": 0.491, + "2020": 0.491, + "2021": 0.491 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr101", + "Region": "Lome", + "1990": 0.431, + "1991": 0.45, + "1992": 0.44, + "1993": 0.449, + "1994": 0.457, + "1995": 0.49, + "1996": 0.51, + "1997": 0.523, + "1998": 0.536, + "1999": 0.54, + "2000": 0.546, + "2001": 0.553, + "2002": 0.554, + "2003": 0.556, + "2004": 0.557, + "2005": 0.557, + "2006": 0.567, + "2007": 0.546, + "2008": 0.557, + "2009": 0.567, + "2010": 0.566, + "2011": 0.565, + "2012": 0.576, + "2013": 0.587, + "2014": 0.598, + "2015": 0.607, + "2016": 0.61, + "2017": 0.614, + "2018": 0.624, + "2019": 0.634, + "2020": 0.634, + "2021": 0.634 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr102", + "Region": "Maritime", + "1990": 0.308, + "1991": 0.322, + "1992": 0.309, + "1993": 0.312, + "1994": 0.316, + "1995": 0.345, + "1996": 0.361, + "1997": 0.37, + "1998": 0.379, + "1999": 0.391, + "2000": 0.403, + "2001": 0.417, + "2002": 0.425, + "2003": 0.433, + "2004": 0.44, + "2005": 0.445, + "2006": 0.46, + "2007": 0.445, + "2008": 0.46, + "2009": 0.475, + "2010": 0.483, + "2011": 0.49, + "2012": 0.501, + "2013": 0.513, + "2014": 0.525, + "2015": 0.518, + "2016": 0.509, + "2017": 0.501, + "2018": 0.508, + "2019": 0.515, + "2020": 0.515, + "2021": 0.515 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr103", + "Region": "Plateaux", + "1990": 0.294, + "1991": 0.308, + "1992": 0.297, + "1993": 0.301, + "1994": 0.305, + "1995": 0.332, + "1996": 0.346, + "1997": 0.355, + "1998": 0.364, + "1999": 0.373, + "2000": 0.383, + "2001": 0.394, + "2002": 0.401, + "2003": 0.407, + "2004": 0.413, + "2005": 0.417, + "2006": 0.43, + "2007": 0.411, + "2008": 0.42, + "2009": 0.429, + "2010": 0.432, + "2011": 0.435, + "2012": 0.441, + "2013": 0.446, + "2014": 0.452, + "2015": 0.471, + "2016": 0.487, + "2017": 0.503, + "2018": 0.51, + "2019": 0.517, + "2020": 0.517, + "2021": 0.517 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr106", + "Region": "Savanes", + "1990": 0.166, + "1991": 0.173, + "1992": 0.164, + "1993": 0.166, + "1994": 0.168, + "1995": 0.184, + "1996": 0.193, + "1997": 0.198, + "1998": 0.203, + "1999": 0.206, + "2000": 0.208, + "2001": 0.212, + "2002": 0.212, + "2003": 0.213, + "2004": 0.213, + "2005": 0.212, + "2006": 0.217, + "2007": 0.219, + "2008": 0.239, + "2009": 0.259, + "2010": 0.277, + "2011": 0.295, + "2012": 0.312, + "2013": 0.328, + "2014": 0.345, + "2015": 0.355, + "2016": 0.364, + "2017": 0.372, + "2018": 0.377, + "2019": 0.382, + "2020": 0.382, + "2021": 0.382 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "National", + "GDLCODE": "TONt", + "Region": "Total", + "1990": null, + "1991": 0.65, + "1992": 0.661, + "1993": 0.672, + "1994": 0.683, + "1995": 0.694, + "1996": 0.699, + "1997": 0.704, + "1998": 0.709, + "1999": 0.715, + "2000": 0.701, + "2001": 0.707, + "2002": 0.713, + "2003": 0.739, + "2004": 0.741, + "2005": 0.744, + "2006": 0.747, + "2007": 0.755, + "2008": 0.763, + "2009": 0.771, + "2010": 0.779, + "2011": 0.787, + "2012": 0.793, + "2013": 0.798, + "2014": 0.804, + "2015": 0.809, + "2016": 0.813, + "2017": 0.816, + "2018": 0.82, + "2019": 0.823, + "2020": 0.826, + "2021": 0.826 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr104", + "Region": "Eua", + "1990": null, + "1991": 0.6, + "1992": 0.61, + "1993": 0.62, + "1994": 0.63, + "1995": 0.64, + "1996": 0.644, + "1997": 0.649, + "1998": 0.654, + "1999": 0.659, + "2000": 0.646, + "2001": 0.652, + "2002": 0.658, + "2003": 0.681, + "2004": 0.683, + "2005": 0.685, + "2006": 0.688, + "2007": 0.695, + "2008": 0.703, + "2009": 0.71, + "2010": 0.718, + "2011": 0.726, + "2012": 0.731, + "2013": 0.736, + "2014": 0.741, + "2015": 0.746, + "2016": 0.749, + "2017": 0.752, + "2018": 0.755, + "2019": 0.758, + "2020": 0.761, + "2021": 0.761 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr103", + "Region": "Ha-apai", + "1990": null, + "1991": 0.608, + "1992": 0.618, + "1993": 0.629, + "1994": 0.639, + "1995": 0.649, + "1996": 0.654, + "1997": 0.659, + "1998": 0.664, + "1999": 0.669, + "2000": 0.656, + "2001": 0.662, + "2002": 0.667, + "2003": 0.691, + "2004": 0.694, + "2005": 0.696, + "2006": 0.699, + "2007": 0.706, + "2008": 0.714, + "2009": 0.721, + "2010": 0.729, + "2011": 0.737, + "2012": 0.742, + "2013": 0.747, + "2014": 0.752, + "2015": 0.757, + "2016": 0.76, + "2017": 0.764, + "2018": 0.767, + "2019": 0.77, + "2020": 0.772, + "2021": 0.772 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr105", + "Region": "Ongo Niua", + "1990": null, + "1991": 0.629, + "1992": 0.639, + "1993": 0.65, + "1994": 0.66, + "1995": 0.671, + "1996": 0.676, + "1997": 0.681, + "1998": 0.686, + "1999": 0.692, + "2000": 0.678, + "2001": 0.684, + "2002": 0.691, + "2003": 0.717, + "2004": 0.719, + "2005": 0.722, + "2006": 0.725, + "2007": 0.732, + "2008": 0.74, + "2009": 0.748, + "2010": 0.755, + "2011": 0.763, + "2012": 0.768, + "2013": 0.773, + "2014": 0.779, + "2015": 0.784, + "2016": 0.787, + "2017": 0.791, + "2018": 0.794, + "2019": 0.798, + "2020": 0.8, + "2021": 0.8 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr101", + "Region": "Tongatapu", + "1990": null, + "1991": 0.662, + "1992": 0.673, + "1993": 0.684, + "1994": 0.695, + "1995": 0.706, + "1996": 0.711, + "1997": 0.716, + "1998": 0.722, + "1999": 0.727, + "2000": 0.713, + "2001": 0.72, + "2002": 0.726, + "2003": 0.752, + "2004": 0.754, + "2005": 0.757, + "2006": 0.76, + "2007": 0.768, + "2008": 0.776, + "2009": 0.785, + "2010": 0.793, + "2011": 0.801, + "2012": 0.807, + "2013": 0.812, + "2014": 0.818, + "2015": 0.823, + "2016": 0.827, + "2017": 0.83, + "2018": 0.834, + "2019": 0.837, + "2020": 0.84, + "2021": 0.84 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr102", + "Region": "Vava-u", + "1990": null, + "1991": 0.635, + "1992": 0.645, + "1993": 0.656, + "1994": 0.667, + "1995": 0.677, + "1996": 0.682, + "1997": 0.687, + "1998": 0.692, + "1999": 0.698, + "2000": 0.684, + "2001": 0.691, + "2002": 0.697, + "2003": 0.722, + "2004": 0.724, + "2005": 0.727, + "2006": 0.73, + "2007": 0.738, + "2008": 0.745, + "2009": 0.753, + "2010": 0.761, + "2011": 0.769, + "2012": 0.774, + "2013": 0.78, + "2014": 0.785, + "2015": 0.79, + "2016": 0.794, + "2017": 0.797, + "2018": 0.801, + "2019": 0.804, + "2020": 0.806, + "2021": 0.806 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "National", + "GDLCODE": "TTOt", + "Region": "Total", + "1990": 0.55, + "1991": 0.554, + "1992": 0.558, + "1993": 0.565, + "1994": 0.573, + "1995": 0.582, + "1996": 0.591, + "1997": 0.6, + "1998": 0.609, + "1999": 0.617, + "2000": 0.626, + "2001": 0.635, + "2002": 0.644, + "2003": 0.653, + "2004": 0.661, + "2005": 0.67, + "2006": 0.679, + "2007": 0.69, + "2008": 0.701, + "2009": 0.707, + "2010": 0.718, + "2011": 0.729, + "2012": 0.736, + "2013": 0.744, + "2014": 0.751, + "2015": 0.759, + "2016": 0.767, + "2017": 0.775, + "2018": 0.783, + "2019": 0.791, + "2020": 0.791, + "2021": 0.791 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr103", + "Region": "Central", + "1990": 0.549, + "1991": 0.553, + "1992": 0.557, + "1993": 0.563, + "1994": 0.572, + "1995": 0.58, + "1996": 0.589, + "1997": 0.598, + "1998": 0.607, + "1999": 0.616, + "2000": 0.624, + "2001": 0.633, + "2002": 0.642, + "2003": 0.651, + "2004": 0.66, + "2005": 0.668, + "2006": 0.677, + "2007": 0.69, + "2008": 0.703, + "2009": 0.711, + "2010": 0.724, + "2011": 0.737, + "2012": 0.744, + "2013": 0.752, + "2014": 0.76, + "2015": 0.768, + "2016": 0.775, + "2017": 0.783, + "2018": 0.791, + "2019": 0.799, + "2020": 0.799, + "2021": 0.799 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr102", + "Region": "East", + "1990": 0.529, + "1991": 0.532, + "1992": 0.536, + "1993": 0.542, + "1994": 0.55, + "1995": 0.559, + "1996": 0.567, + "1997": 0.575, + "1998": 0.584, + "1999": 0.592, + "2000": 0.6, + "2001": 0.609, + "2002": 0.617, + "2003": 0.626, + "2004": 0.634, + "2005": 0.642, + "2006": 0.651, + "2007": 0.659, + "2008": 0.667, + "2009": 0.67, + "2010": 0.678, + "2011": 0.685, + "2012": 0.692, + "2013": 0.7, + "2014": 0.707, + "2015": 0.714, + "2016": 0.721, + "2017": 0.729, + "2018": 0.736, + "2019": 0.744, + "2020": 0.744, + "2021": 0.744 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr101", + "Region": "North West", + "1990": 0.56, + "1991": 0.564, + "1992": 0.568, + "1993": 0.575, + "1994": 0.584, + "1995": 0.593, + "1996": 0.602, + "1997": 0.611, + "1998": 0.62, + "1999": 0.629, + "2000": 0.638, + "2001": 0.647, + "2002": 0.656, + "2003": 0.665, + "2004": 0.674, + "2005": 0.683, + "2006": 0.693, + "2007": 0.704, + "2008": 0.716, + "2009": 0.721, + "2010": 0.733, + "2011": 0.745, + "2012": 0.752, + "2013": 0.76, + "2014": 0.768, + "2015": 0.776, + "2016": 0.784, + "2017": 0.792, + "2018": 0.8, + "2019": 0.808, + "2020": 0.808, + "2021": 0.808 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr104", + "Region": "South West", + "1990": 0.547, + "1991": 0.55, + "1992": 0.554, + "1993": 0.56, + "1994": 0.569, + "1995": 0.578, + "1996": 0.586, + "1997": 0.595, + "1998": 0.604, + "1999": 0.613, + "2000": 0.621, + "2001": 0.63, + "2002": 0.639, + "2003": 0.647, + "2004": 0.656, + "2005": 0.665, + "2006": 0.674, + "2007": 0.684, + "2008": 0.694, + "2009": 0.699, + "2010": 0.709, + "2011": 0.719, + "2012": 0.726, + "2013": 0.734, + "2014": 0.741, + "2015": 0.749, + "2016": 0.757, + "2017": 0.764, + "2018": 0.772, + "2019": 0.78, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr105", + "Region": "Tobago", + "1990": 0.572, + "1991": 0.576, + "1992": 0.58, + "1993": 0.586, + "1994": 0.595, + "1995": 0.604, + "1996": 0.613, + "1997": 0.622, + "1998": 0.631, + "1999": 0.64, + "2000": 0.65, + "2001": 0.659, + "2002": 0.668, + "2003": 0.677, + "2004": 0.686, + "2005": 0.695, + "2006": 0.704, + "2007": 0.705, + "2008": 0.705, + "2009": 0.7, + "2010": 0.7, + "2011": 0.7, + "2012": 0.707, + "2013": 0.714, + "2014": 0.721, + "2015": 0.729, + "2016": 0.736, + "2017": 0.744, + "2018": 0.751, + "2019": 0.759, + "2020": 0.759, + "2021": 0.759 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "National", + "GDLCODE": "TUNt", + "Region": "Total", + "1990": 0.406, + "1991": 0.414, + "1992": 0.421, + "1993": 0.432, + "1994": 0.449, + "1995": 0.46, + "1996": 0.471, + "1997": 0.477, + "1998": 0.497, + "1999": 0.514, + "2000": 0.527, + "2001": 0.54, + "2002": 0.55, + "2003": 0.559, + "2004": 0.574, + "2005": 0.587, + "2006": 0.595, + "2007": 0.603, + "2008": 0.611, + "2009": 0.616, + "2010": 0.624, + "2011": 0.634, + "2012": 0.634, + "2013": 0.64, + "2014": 0.642, + "2015": 0.65, + "2016": 0.66, + "2017": 0.665, + "2018": 0.671, + "2019": 0.676, + "2020": 0.676, + "2021": 0.676 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr105", + "Region": "Centre Est (Sousse, Monastir, Mahdia, Sfax)", + "1990": 0.412, + "1991": 0.419, + "1992": 0.427, + "1993": 0.438, + "1994": 0.455, + "1995": 0.466, + "1996": 0.477, + "1997": 0.484, + "1998": 0.504, + "1999": 0.521, + "2000": 0.535, + "2001": 0.548, + "2002": 0.558, + "2003": 0.567, + "2004": 0.583, + "2005": 0.596, + "2006": 0.605, + "2007": 0.613, + "2008": 0.621, + "2009": 0.626, + "2010": 0.635, + "2011": 0.645, + "2012": 0.644, + "2013": 0.647, + "2014": 0.647, + "2015": 0.651, + "2016": 0.658, + "2017": 0.66, + "2018": 0.662, + "2019": 0.667, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr104", + "Region": "Centre Ouest (Kairouan, Kasserine, Sidi Bouzid)", + "1990": 0.34, + "1991": 0.345, + "1992": 0.351, + "1993": 0.359, + "1994": 0.373, + "1995": 0.383, + "1996": 0.391, + "1997": 0.396, + "1998": 0.413, + "1999": 0.427, + "2000": 0.437, + "2001": 0.448, + "2002": 0.455, + "2003": 0.462, + "2004": 0.475, + "2005": 0.486, + "2006": 0.492, + "2007": 0.497, + "2008": 0.503, + "2009": 0.507, + "2010": 0.513, + "2011": 0.521, + "2012": 0.521, + "2013": 0.529, + "2014": 0.534, + "2015": 0.542, + "2016": 0.554, + "2017": 0.561, + "2018": 0.568, + "2019": 0.573, + "2020": 0.573, + "2021": 0.573 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr101", + "Region": "Grand Tunis (Tunis, Ariana, Ben Arous, Manouba)", + "1990": 0.456, + "1991": 0.464, + "1992": 0.473, + "1993": 0.485, + "1994": 0.504, + "1995": 0.517, + "1996": 0.529, + "1997": 0.536, + "1998": 0.559, + "1999": 0.578, + "2000": 0.593, + "2001": 0.608, + "2002": 0.619, + "2003": 0.629, + "2004": 0.647, + "2005": 0.662, + "2006": 0.671, + "2007": 0.68, + "2008": 0.69, + "2009": 0.696, + "2010": 0.706, + "2011": 0.717, + "2012": 0.716, + "2013": 0.723, + "2014": 0.726, + "2015": 0.735, + "2016": 0.746, + "2017": 0.752, + "2018": 0.758, + "2019": 0.764, + "2020": 0.764, + "2021": 0.764 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr102", + "Region": "Nord Est (Nabeul, Zaghouan, Bizerte)", + "1990": 0.416, + "1991": 0.423, + "1992": 0.43, + "1993": 0.441, + "1994": 0.458, + "1995": 0.47, + "1996": 0.481, + "1997": 0.487, + "1998": 0.508, + "1999": 0.525, + "2000": 0.538, + "2001": 0.551, + "2002": 0.561, + "2003": 0.57, + "2004": 0.586, + "2005": 0.599, + "2006": 0.607, + "2007": 0.615, + "2008": 0.623, + "2009": 0.628, + "2010": 0.636, + "2011": 0.646, + "2012": 0.646, + "2013": 0.647, + "2014": 0.646, + "2015": 0.649, + "2016": 0.655, + "2017": 0.656, + "2018": 0.657, + "2019": 0.662, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr103", + "Region": "Nord Ouest (Beja, Jendouba, Kef, Siliana)", + "1990": 0.367, + "1991": 0.373, + "1992": 0.379, + "1993": 0.389, + "1994": 0.404, + "1995": 0.414, + "1996": 0.423, + "1997": 0.428, + "1998": 0.447, + "1999": 0.462, + "2000": 0.473, + "2001": 0.484, + "2002": 0.493, + "2003": 0.5, + "2004": 0.513, + "2005": 0.525, + "2006": 0.531, + "2007": 0.538, + "2008": 0.544, + "2009": 0.548, + "2010": 0.555, + "2011": 0.563, + "2012": 0.563, + "2013": 0.574, + "2014": 0.582, + "2015": 0.594, + "2016": 0.61, + "2017": 0.62, + "2018": 0.631, + "2019": 0.636, + "2020": 0.636, + "2021": 0.636 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr107", + "Region": "Sud Est (Gabes, Medinine, Tataouine)", + "1990": 0.391, + "1991": 0.398, + "1992": 0.405, + "1993": 0.415, + "1994": 0.432, + "1995": 0.443, + "1996": 0.453, + "1997": 0.459, + "1998": 0.479, + "1999": 0.495, + "2000": 0.507, + "2001": 0.52, + "2002": 0.529, + "2003": 0.538, + "2004": 0.553, + "2005": 0.565, + "2006": 0.573, + "2007": 0.58, + "2008": 0.588, + "2009": 0.593, + "2010": 0.601, + "2011": 0.611, + "2012": 0.61, + "2013": 0.619, + "2014": 0.624, + "2015": 0.634, + "2016": 0.647, + "2017": 0.655, + "2018": 0.663, + "2019": 0.668, + "2020": 0.668, + "2021": 0.668 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr106", + "Region": "Sud Ouest (Gafsa, Tozeur, Kebili)", + "1990": 0.41, + "1991": 0.418, + "1992": 0.425, + "1993": 0.435, + "1994": 0.453, + "1995": 0.464, + "1996": 0.475, + "1997": 0.481, + "1998": 0.502, + "1999": 0.518, + "2000": 0.531, + "2001": 0.545, + "2002": 0.554, + "2003": 0.563, + "2004": 0.579, + "2005": 0.592, + "2006": 0.6, + "2007": 0.608, + "2008": 0.616, + "2009": 0.62, + "2010": 0.629, + "2011": 0.639, + "2012": 0.638, + "2013": 0.646, + "2014": 0.65, + "2015": 0.659, + "2016": 0.671, + "2017": 0.678, + "2018": 0.685, + "2019": 0.691, + "2020": 0.691, + "2021": 0.691 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "National", + "GDLCODE": "TURt", + "Region": "Total", + "1990": 0.4, + "1991": 0.406, + "1992": 0.411, + "1993": 0.417, + "1994": 0.422, + "1995": 0.428, + "1996": 0.435, + "1997": 0.442, + "1998": 0.459, + "1999": 0.476, + "2000": 0.492, + "2001": 0.507, + "2002": 0.522, + "2003": 0.528, + "2004": 0.529, + "2005": 0.53, + "2006": 0.544, + "2007": 0.554, + "2008": 0.56, + "2009": 0.579, + "2010": 0.62, + "2011": 0.643, + "2012": 0.65, + "2013": 0.712, + "2014": 0.73, + "2015": 0.746, + "2016": 0.762, + "2017": 0.775, + "2018": 0.782, + "2019": 0.788, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr103", + "Region": "Aegean (Afyon, Aydin, Denizli, Izmir, Kutahya, Man", + "1990": 0.44, + "1991": 0.446, + "1992": 0.452, + "1993": 0.458, + "1994": 0.46, + "1995": 0.463, + "1996": 0.467, + "1997": 0.471, + "1998": 0.485, + "1999": 0.502, + "2000": 0.518, + "2001": 0.532, + "2002": 0.546, + "2003": 0.553, + "2004": 0.55, + "2005": 0.55, + "2006": 0.563, + "2007": 0.577, + "2008": 0.588, + "2009": 0.603, + "2010": 0.642, + "2011": 0.661, + "2012": 0.661, + "2013": 0.724, + "2014": 0.719, + "2015": 0.736, + "2016": 0.75, + "2017": 0.765, + "2018": 0.777, + "2019": 0.787, + "2020": 0.787, + "2021": 0.787 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr107", + "Region": "Central Anatolia (Kayseri, Kirsehir, Nevsehir, Nig", + "1990": 0.378, + "1991": 0.384, + "1992": 0.388, + "1993": 0.394, + "1994": 0.401, + "1995": 0.407, + "1996": 0.415, + "1997": 0.423, + "1998": 0.441, + "1999": 0.461, + "2000": 0.481, + "2001": 0.5, + "2002": 0.518, + "2003": 0.528, + "2004": 0.529, + "2005": 0.531, + "2006": 0.544, + "2007": 0.55, + "2008": 0.542, + "2009": 0.577, + "2010": 0.621, + "2011": 0.645, + "2012": 0.655, + "2013": 0.711, + "2014": 0.721, + "2015": 0.738, + "2016": 0.753, + "2017": 0.767, + "2018": 0.774, + "2019": 0.78, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr111", + "Region": "Central East Anatolia (Bingol, Bitlis, Elazig, Hak", + "1990": 0.243, + "1991": 0.246, + "1992": 0.249, + "1993": 0.253, + "1994": 0.26, + "1995": 0.268, + "1996": 0.276, + "1997": 0.284, + "1998": 0.299, + "1999": 0.331, + "2000": 0.363, + "2001": 0.393, + "2002": 0.423, + "2003": 0.446, + "2004": 0.458, + "2005": 0.467, + "2006": 0.484, + "2007": 0.49, + "2008": 0.436, + "2009": 0.516, + "2010": 0.558, + "2011": 0.583, + "2012": 0.59, + "2013": 0.611, + "2014": 0.663, + "2015": 0.673, + "2016": 0.684, + "2017": 0.696, + "2018": 0.705, + "2019": 0.72, + "2020": 0.72, + "2021": 0.72 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr109", + "Region": "East Black Sea (Artvin, Giresun, Gumushane, Ordu,", + "1990": 0.399, + "1991": 0.405, + "1992": 0.41, + "1993": 0.416, + "1994": 0.424, + "1995": 0.432, + "1996": 0.44, + "1997": 0.449, + "1998": 0.468, + "1999": 0.483, + "2000": 0.496, + "2001": 0.508, + "2002": 0.521, + "2003": 0.525, + "2004": 0.536, + "2005": 0.545, + "2006": 0.565, + "2007": 0.571, + "2008": 0.555, + "2009": 0.589, + "2010": 0.629, + "2011": 0.65, + "2012": 0.65, + "2013": 0.689, + "2014": 0.728, + "2015": 0.744, + "2016": 0.76, + "2017": 0.771, + "2018": 0.778, + "2019": 0.784, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr104", + "Region": "East Marmara (Bilecik, Bolu, Bursa, Duzce, Eskiseh", + "1990": 0.403, + "1991": 0.409, + "1992": 0.414, + "1993": 0.42, + "1994": 0.438, + "1995": 0.457, + "1996": 0.477, + "1997": 0.497, + "1998": 0.528, + "1999": 0.539, + "2000": 0.549, + "2001": 0.558, + "2002": 0.566, + "2003": 0.567, + "2004": 0.561, + "2005": 0.558, + "2006": 0.57, + "2007": 0.579, + "2008": 0.604, + "2009": 0.603, + "2010": 0.641, + "2011": 0.662, + "2012": 0.667, + "2013": 0.732, + "2014": 0.763, + "2015": 0.769, + "2016": 0.773, + "2017": 0.778, + "2018": 0.785, + "2019": 0.791, + "2020": 0.791, + "2021": 0.791 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr101", + "Region": "Istanbul", + "1990": 0.511, + "1991": 0.518, + "1992": 0.525, + "1993": 0.532, + "1994": 0.527, + "1995": 0.522, + "1996": 0.518, + "1997": 0.515, + "1998": 0.523, + "1999": 0.539, + "2000": 0.553, + "2001": 0.566, + "2002": 0.578, + "2003": 0.583, + "2004": 0.572, + "2005": 0.565, + "2006": 0.573, + "2007": 0.582, + "2008": 0.62, + "2009": 0.606, + "2010": 0.642, + "2011": 0.664, + "2012": 0.67, + "2013": 0.75, + "2014": 0.72, + "2015": 0.737, + "2016": 0.754, + "2017": 0.767, + "2018": 0.779, + "2019": 0.788, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr106", + "Region": "Mediterranean (Adana, Antalya, Burdur, Hatay, Ispa", + "1990": 0.418, + "1991": 0.423, + "1992": 0.429, + "1993": 0.435, + "1994": 0.439, + "1995": 0.444, + "1996": 0.45, + "1997": 0.456, + "1998": 0.472, + "1999": 0.483, + "2000": 0.493, + "2001": 0.502, + "2002": 0.51, + "2003": 0.512, + "2004": 0.517, + "2005": 0.523, + "2006": 0.54, + "2007": 0.548, + "2008": 0.533, + "2009": 0.569, + "2010": 0.611, + "2011": 0.636, + "2012": 0.642, + "2013": 0.693, + "2014": 0.694, + "2015": 0.709, + "2016": 0.722, + "2017": 0.734, + "2018": 0.744, + "2019": 0.756, + "2020": 0.756, + "2021": 0.756 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr110", + "Region": "North East Anatolia (Agri, Erzincan, Erzurum, Kars", + "1990": 0.325, + "1991": 0.329, + "1992": 0.333, + "1993": 0.339, + "1994": 0.334, + "1995": 0.329, + "1996": 0.325, + "1997": 0.321, + "1998": 0.324, + "1999": 0.358, + "2000": 0.391, + "2001": 0.422, + "2002": 0.453, + "2003": 0.477, + "2004": 0.486, + "2005": 0.493, + "2006": 0.509, + "2007": 0.515, + "2008": 0.481, + "2009": 0.537, + "2010": 0.575, + "2011": 0.596, + "2012": 0.608, + "2013": 0.611, + "2014": 0.697, + "2015": 0.726, + "2016": 0.753, + "2017": 0.761, + "2018": 0.766, + "2019": 0.775, + "2020": 0.775, + "2021": 0.775 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr112", + "Region": "South East Anatolia (Adiyaman, Diyarbakir, Gaziant", + "1990": 0.277, + "1991": 0.281, + "1992": 0.285, + "1993": 0.289, + "1994": 0.292, + "1995": 0.295, + "1996": 0.299, + "1997": 0.302, + "1998": 0.313, + "1999": 0.333, + "2000": 0.352, + "2001": 0.37, + "2002": 0.387, + "2003": 0.399, + "2004": 0.427, + "2005": 0.449, + "2006": 0.477, + "2007": 0.487, + "2008": 0.436, + "2009": 0.517, + "2010": 0.561, + "2011": 0.583, + "2012": 0.588, + "2013": 0.607, + "2014": 0.639, + "2015": 0.652, + "2016": 0.664, + "2017": 0.676, + "2018": 0.684, + "2019": 0.693, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr105", + "Region": "West Anatolia (Ankara, Konya, Karaman)", + "1990": 0.463, + "1991": 0.469, + "1992": 0.475, + "1993": 0.482, + "1994": 0.499, + "1995": 0.517, + "1996": 0.536, + "1997": 0.556, + "1998": 0.588, + "1999": 0.593, + "2000": 0.597, + "2001": 0.599, + "2002": 0.601, + "2003": 0.596, + "2004": 0.585, + "2005": 0.579, + "2006": 0.588, + "2007": 0.598, + "2008": 0.652, + "2009": 0.632, + "2010": 0.677, + "2011": 0.704, + "2012": 0.714, + "2013": 0.805, + "2014": 0.741, + "2015": 0.753, + "2016": 0.763, + "2017": 0.775, + "2018": 0.786, + "2019": 0.799, + "2020": 0.799, + "2021": 0.799 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr108", + "Region": "West Black Sea (Amasya, Cankiri, Corum, Kastamonu,", + "1990": 0.377, + "1991": 0.382, + "1992": 0.387, + "1993": 0.393, + "1994": 0.401, + "1995": 0.41, + "1996": 0.419, + "1997": 0.429, + "1998": 0.449, + "1999": 0.468, + "2000": 0.487, + "2001": 0.504, + "2002": 0.521, + "2003": 0.53, + "2004": 0.532, + "2005": 0.535, + "2006": 0.549, + "2007": 0.557, + "2008": 0.536, + "2009": 0.584, + "2010": 0.629, + "2011": 0.655, + "2012": 0.664, + "2013": 0.715, + "2014": 0.713, + "2015": 0.731, + "2016": 0.748, + "2017": 0.762, + "2018": 0.771, + "2019": 0.778, + "2020": 0.778, + "2021": 0.778 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr102", + "Region": "West Marmara (Balikesir, Canakkale, Edirne, Kirkla", + "1990": 0.368, + "1991": 0.373, + "1992": 0.377, + "1993": 0.383, + "1994": 0.405, + "1995": 0.428, + "1996": 0.451, + "1997": 0.475, + "1998": 0.509, + "1999": 0.524, + "2000": 0.537, + "2001": 0.549, + "2002": 0.56, + "2003": 0.563, + "2004": 0.558, + "2005": 0.553, + "2006": 0.563, + "2007": 0.569, + "2008": 0.566, + "2009": 0.598, + "2010": 0.646, + "2011": 0.678, + "2012": 0.692, + "2013": 0.762, + "2014": 0.736, + "2015": 0.749, + "2016": 0.761, + "2017": 0.776, + "2018": 0.783, + "2019": 0.79, + "2020": 0.79, + "2021": 0.79 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "National", + "GDLCODE": "TKMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.666, + "2011": 0.675, + "2012": 0.685, + "2013": 0.695, + "2014": 0.705, + "2015": 0.715, + "2016": 0.724, + "2017": 0.728, + "2018": 0.731, + "2019": 0.735, + "2020": 0.742, + "2021": 0.742 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr102", + "Region": "Akhal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.657, + "2011": 0.666, + "2012": 0.674, + "2013": 0.683, + "2014": 0.692, + "2015": 0.701, + "2016": 0.71, + "2017": 0.713, + "2018": 0.716, + "2019": 0.719, + "2020": 0.726, + "2021": 0.726 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr101", + "Region": "Ashgabat City", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.732, + "2011": 0.742, + "2012": 0.753, + "2013": 0.764, + "2014": 0.775, + "2015": 0.785, + "2016": 0.799, + "2017": 0.806, + "2018": 0.813, + "2019": 0.82, + "2020": 0.828, + "2021": 0.828 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr103", + "Region": "Balkan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.667, + "2011": 0.677, + "2012": 0.688, + "2013": 0.698, + "2014": 0.709, + "2015": 0.719, + "2016": 0.729, + "2017": 0.732, + "2018": 0.736, + "2019": 0.739, + "2020": 0.747, + "2021": 0.747 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr104", + "Region": "Dashoguz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.651, + "2011": 0.66, + "2012": 0.669, + "2013": 0.677, + "2014": 0.686, + "2015": 0.694, + "2016": 0.701, + "2017": 0.701, + "2018": 0.702, + "2019": 0.702, + "2020": 0.71, + "2021": 0.71 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr105", + "Region": "Lebap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.667, + "2011": 0.678, + "2012": 0.69, + "2013": 0.701, + "2014": 0.713, + "2015": 0.724, + "2016": 0.731, + "2017": 0.732, + "2018": 0.733, + "2019": 0.734, + "2020": 0.742, + "2021": 0.742 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr106", + "Region": "Mary", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.652, + "2011": 0.661, + "2012": 0.67, + "2013": 0.679, + "2014": 0.688, + "2015": 0.697, + "2016": 0.709, + "2017": 0.715, + "2018": 0.72, + "2019": 0.725, + "2020": 0.733, + "2021": 0.733 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "National", + "GDLCODE": "TUVt", + "Region": "Total", + "1990": 0.52, + "1991": 0.522, + "1992": 0.525, + "1993": 0.528, + "1994": 0.53, + "1995": 0.533, + "1996": 0.536, + "1997": 0.538, + "1998": 0.541, + "1999": 0.554, + "2000": 0.568, + "2001": 0.582, + "2002": 0.586, + "2003": 0.59, + "2004": 0.594, + "2005": 0.599, + "2006": 0.603, + "2007": 0.607, + "2008": 0.612, + "2009": 0.616, + "2010": 0.62, + "2011": 0.624, + "2012": 0.629, + "2013": 0.633, + "2014": 0.637, + "2015": 0.654, + "2016": 0.618, + "2017": 0.617, + "2018": 0.617, + "2019": 0.616, + "2020": 0.614, + "2021": 0.614 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr103", + "Region": "Funafuti", + "1990": 0.561, + "1991": 0.564, + "1992": 0.567, + "1993": 0.57, + "1994": 0.573, + "1995": 0.575, + "1996": 0.578, + "1997": 0.581, + "1998": 0.584, + "1999": 0.598, + "2000": 0.613, + "2001": 0.628, + "2002": 0.632, + "2003": 0.637, + "2004": 0.642, + "2005": 0.646, + "2006": 0.651, + "2007": 0.655, + "2008": 0.66, + "2009": 0.665, + "2010": 0.669, + "2011": 0.674, + "2012": 0.678, + "2013": 0.683, + "2014": 0.687, + "2015": 0.706, + "2016": 0.666, + "2017": 0.665, + "2018": 0.665, + "2019": 0.664, + "2020": 0.661, + "2021": 0.661 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr101", + "Region": "Nanumea, Nanumaga, Niutao", + "1990": 0.408, + "1991": 0.41, + "1992": 0.413, + "1993": 0.415, + "1994": 0.417, + "1995": 0.42, + "1996": 0.422, + "1997": 0.425, + "1998": 0.427, + "1999": 0.437, + "2000": 0.448, + "2001": 0.458, + "2002": 0.462, + "2003": 0.465, + "2004": 0.469, + "2005": 0.472, + "2006": 0.476, + "2007": 0.48, + "2008": 0.483, + "2009": 0.487, + "2010": 0.49, + "2011": 0.494, + "2012": 0.498, + "2013": 0.501, + "2014": 0.505, + "2015": 0.518, + "2016": 0.492, + "2017": 0.492, + "2018": 0.492, + "2019": 0.492, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr102", + "Region": "Vaitupu, Nui, Nukufetau", + "1990": 0.443, + "1991": 0.445, + "1992": 0.448, + "1993": 0.45, + "1994": 0.453, + "1995": 0.455, + "1996": 0.458, + "1997": 0.46, + "1998": 0.463, + "1999": 0.474, + "2000": 0.485, + "2001": 0.497, + "2002": 0.501, + "2003": 0.505, + "2004": 0.508, + "2005": 0.512, + "2006": 0.516, + "2007": 0.52, + "2008": 0.524, + "2009": 0.528, + "2010": 0.532, + "2011": 0.535, + "2012": 0.539, + "2013": 0.543, + "2014": 0.547, + "2015": 0.561, + "2016": 0.533, + "2017": 0.533, + "2018": 0.532, + "2019": 0.533, + "2020": 0.531, + "2021": 0.531 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "National", + "GDLCODE": "UGAt", + "Region": "Total", + "1990": 0.265, + "1991": 0.267, + "1992": 0.254, + "1993": 0.266, + "1994": 0.269, + "1995": 0.274, + "1996": 0.293, + "1997": 0.311, + "1998": 0.33, + "1999": 0.349, + "2000": 0.368, + "2001": 0.387, + "2002": 0.406, + "2003": 0.428, + "2004": 0.45, + "2005": 0.455, + "2006": 0.461, + "2007": 0.469, + "2008": 0.476, + "2009": 0.491, + "2010": 0.505, + "2011": 0.495, + "2012": 0.478, + "2013": 0.479, + "2014": 0.479, + "2015": 0.48, + "2016": 0.478, + "2017": 0.476, + "2018": 0.475, + "2019": 0.473, + "2020": 0.473, + "2021": 0.473 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr101", + "Region": "Central 1 (Central South)", + "1990": 0.287, + "1991": 0.289, + "1992": 0.276, + "1993": 0.288, + "1994": 0.293, + "1995": 0.297, + "1996": 0.317, + "1997": 0.337, + "1998": 0.357, + "1999": 0.376, + "2000": 0.396, + "2001": 0.416, + "2002": 0.436, + "2003": 0.459, + "2004": 0.483, + "2005": 0.489, + "2006": 0.495, + "2007": 0.5, + "2008": 0.506, + "2009": 0.518, + "2010": 0.531, + "2011": 0.516, + "2012": 0.506, + "2013": 0.516, + "2014": 0.525, + "2015": 0.535, + "2016": 0.541, + "2017": 0.54, + "2018": 0.539, + "2019": 0.538, + "2020": 0.538, + "2021": 0.538 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr102", + "Region": "Central 2 (Central North)", + "1990": 0.279, + "1991": 0.281, + "1992": 0.268, + "1993": 0.28, + "1994": 0.284, + "1995": 0.289, + "1996": 0.308, + "1997": 0.328, + "1998": 0.348, + "1999": 0.367, + "2000": 0.387, + "2001": 0.407, + "2002": 0.426, + "2003": 0.45, + "2004": 0.473, + "2005": 0.479, + "2006": 0.484, + "2007": 0.492, + "2008": 0.499, + "2009": 0.514, + "2010": 0.529, + "2011": 0.516, + "2012": 0.497, + "2013": 0.496, + "2014": 0.496, + "2015": 0.495, + "2016": 0.492, + "2017": 0.49, + "2018": 0.489, + "2019": 0.487, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr104", + "Region": "East Central (Busoga)", + "1990": 0.277, + "1991": 0.279, + "1992": 0.266, + "1993": 0.278, + "1994": 0.281, + "1995": 0.286, + "1996": 0.306, + "1997": 0.326, + "1998": 0.346, + "1999": 0.366, + "2000": 0.386, + "2001": 0.406, + "2002": 0.426, + "2003": 0.449, + "2004": 0.472, + "2005": 0.478, + "2006": 0.483, + "2007": 0.488, + "2008": 0.493, + "2009": 0.504, + "2010": 0.516, + "2011": 0.502, + "2012": 0.49, + "2013": 0.493, + "2014": 0.497, + "2015": 0.501, + "2016": 0.502, + "2017": 0.5, + "2018": 0.498, + "2019": 0.496, + "2020": 0.496, + "2021": 0.496 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr105", + "Region": "Eastern (Bukedi, Bugishu, Teso)", + "1990": 0.267, + "1991": 0.269, + "1992": 0.255, + "1993": 0.267, + "1994": 0.271, + "1995": 0.275, + "1996": 0.295, + "1997": 0.314, + "1998": 0.334, + "1999": 0.354, + "2000": 0.374, + "2001": 0.393, + "2002": 0.413, + "2003": 0.436, + "2004": 0.459, + "2005": 0.463, + "2006": 0.468, + "2007": 0.474, + "2008": 0.48, + "2009": 0.492, + "2010": 0.503, + "2011": 0.492, + "2012": 0.481, + "2013": 0.484, + "2014": 0.488, + "2015": 0.492, + "2016": 0.493, + "2017": 0.491, + "2018": 0.489, + "2019": 0.487, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr103", + "Region": "Kampala", + "1990": 0.395, + "1991": 0.4, + "1992": 0.388, + "1993": 0.403, + "1994": 0.41, + "1995": 0.417, + "1996": 0.44, + "1997": 0.464, + "1998": 0.488, + "1999": 0.511, + "2000": 0.535, + "2001": 0.559, + "2002": 0.582, + "2003": 0.613, + "2004": 0.643, + "2005": 0.654, + "2006": 0.665, + "2007": 0.667, + "2008": 0.67, + "2009": 0.684, + "2010": 0.699, + "2011": 0.665, + "2012": 0.632, + "2013": 0.631, + "2014": 0.63, + "2015": 0.628, + "2016": 0.623, + "2017": 0.622, + "2018": 0.622, + "2019": 0.621, + "2020": 0.621, + "2021": 0.621 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr106", + "Region": "North (Karamoja, Lango, Acholi)", + "1990": 0.219, + "1991": 0.221, + "1992": 0.21, + "1993": 0.219, + "1994": 0.222, + "1995": 0.226, + "1996": 0.242, + "1997": 0.258, + "1998": 0.274, + "1999": 0.291, + "2000": 0.307, + "2001": 0.323, + "2002": 0.339, + "2003": 0.358, + "2004": 0.377, + "2005": 0.38, + "2006": 0.384, + "2007": 0.391, + "2008": 0.398, + "2009": 0.409, + "2010": 0.421, + "2011": 0.413, + "2012": 0.4, + "2013": 0.399, + "2014": 0.399, + "2015": 0.398, + "2016": 0.396, + "2017": 0.394, + "2018": 0.393, + "2019": 0.391, + "2020": 0.391, + "2021": 0.391 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr109", + "Region": "Southwest (Ankole, Kigezi)", + "1990": 0.247, + "1991": 0.248, + "1992": 0.236, + "1993": 0.247, + "1994": 0.25, + "1995": 0.254, + "1996": 0.272, + "1997": 0.291, + "1998": 0.309, + "1999": 0.327, + "2000": 0.345, + "2001": 0.363, + "2002": 0.381, + "2003": 0.402, + "2004": 0.423, + "2005": 0.427, + "2006": 0.432, + "2007": 0.439, + "2008": 0.446, + "2009": 0.459, + "2010": 0.472, + "2011": 0.464, + "2012": 0.453, + "2013": 0.456, + "2014": 0.459, + "2015": 0.462, + "2016": 0.463, + "2017": 0.461, + "2018": 0.459, + "2019": 0.458, + "2020": 0.458, + "2021": 0.458 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr107", + "Region": "West Nile", + "1990": 0.256, + "1991": 0.258, + "1992": 0.245, + "1993": 0.256, + "1994": 0.259, + "1995": 0.263, + "1996": 0.282, + "1997": 0.301, + "1998": 0.32, + "1999": 0.339, + "2000": 0.359, + "2001": 0.378, + "2002": 0.397, + "2003": 0.419, + "2004": 0.441, + "2005": 0.445, + "2006": 0.449, + "2007": 0.449, + "2008": 0.448, + "2009": 0.453, + "2010": 0.458, + "2011": 0.442, + "2012": 0.43, + "2013": 0.431, + "2014": 0.433, + "2015": 0.434, + "2016": 0.434, + "2017": 0.432, + "2018": 0.43, + "2019": 0.429, + "2020": 0.429, + "2021": 0.429 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr108", + "Region": "Western (Bunyoro, Tooro)", + "1990": 0.242, + "1991": 0.243, + "1992": 0.231, + "1993": 0.242, + "1994": 0.245, + "1995": 0.249, + "1996": 0.266, + "1997": 0.284, + "1998": 0.302, + "1999": 0.32, + "2000": 0.337, + "2001": 0.355, + "2002": 0.373, + "2003": 0.393, + "2004": 0.414, + "2005": 0.418, + "2006": 0.423, + "2007": 0.435, + "2008": 0.447, + "2009": 0.465, + "2010": 0.483, + "2011": 0.478, + "2012": 0.457, + "2013": 0.451, + "2014": 0.446, + "2015": 0.44, + "2016": 0.433, + "2017": 0.431, + "2018": 0.429, + "2019": 0.428, + "2020": 0.428, + "2021": 0.428 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "National", + "GDLCODE": "UKRt", + "Region": "Total", + "1990": 0.653, + "1991": 0.659, + "1992": 0.659, + "1993": 0.66, + "1994": 0.663, + "1995": 0.676, + "1996": 0.687, + "1997": 0.698, + "1998": 0.709, + "1999": 0.72, + "2000": 0.722, + "2001": 0.746, + "2002": 0.76, + "2003": 0.772, + "2004": 0.773, + "2005": 0.782, + "2006": 0.786, + "2007": 0.79, + "2008": 0.792, + "2009": 0.793, + "2010": 0.794, + "2011": 0.792, + "2012": 0.792, + "2013": 0.789, + "2014": 0.787, + "2015": 0.786, + "2016": 0.786, + "2017": 0.786, + "2018": 0.786, + "2019": 0.787, + "2020": 0.787, + "2021": 0.787 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr102", + "Region": "Central", + "1990": 0.63, + "1991": 0.636, + "1992": 0.636, + "1993": 0.637, + "1994": 0.64, + "1995": 0.652, + "1996": 0.663, + "1997": 0.673, + "1998": 0.684, + "1999": 0.695, + "2000": 0.697, + "2001": 0.72, + "2002": 0.733, + "2003": 0.745, + "2004": 0.746, + "2005": 0.755, + "2006": 0.762, + "2007": 0.768, + "2008": 0.775, + "2009": 0.779, + "2010": 0.785, + "2011": 0.787, + "2012": 0.791, + "2013": 0.788, + "2014": 0.786, + "2015": 0.784, + "2016": 0.785, + "2017": 0.785, + "2018": 0.785, + "2019": 0.785, + "2020": 0.785, + "2021": 0.785 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr103", + "Region": "East", + "1990": 0.671, + "1991": 0.677, + "1992": 0.677, + "1993": 0.678, + "1994": 0.681, + "1995": 0.694, + "1996": 0.706, + "1997": 0.717, + "1998": 0.729, + "1999": 0.74, + "2000": 0.742, + "2001": 0.767, + "2002": 0.781, + "2003": 0.793, + "2004": 0.794, + "2005": 0.803, + "2006": 0.804, + "2007": 0.804, + "2008": 0.804, + "2009": 0.803, + "2010": 0.803, + "2011": 0.8, + "2012": 0.798, + "2013": 0.794, + "2014": 0.792, + "2015": 0.791, + "2016": 0.791, + "2017": 0.791, + "2018": 0.791, + "2019": 0.792, + "2020": 0.792, + "2021": 0.792 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr101", + "Region": "North", + "1990": 0.689, + "1991": 0.695, + "1992": 0.695, + "1993": 0.696, + "1994": 0.699, + "1995": 0.713, + "1996": 0.724, + "1997": 0.736, + "1998": 0.748, + "1999": 0.759, + "2000": 0.762, + "2001": 0.787, + "2002": 0.801, + "2003": 0.814, + "2004": 0.815, + "2005": 0.825, + "2006": 0.814, + "2007": 0.801, + "2008": 0.804, + "2009": 0.805, + "2010": 0.807, + "2011": 0.806, + "2012": 0.807, + "2013": 0.803, + "2014": 0.802, + "2015": 0.8, + "2016": 0.8, + "2017": 0.801, + "2018": 0.801, + "2019": 0.801, + "2020": 0.801, + "2021": 0.801 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr104", + "Region": "South", + "1990": 0.619, + "1991": 0.625, + "1992": 0.625, + "1993": 0.626, + "1994": 0.629, + "1995": 0.641, + "1996": 0.652, + "1997": 0.662, + "1998": 0.673, + "1999": 0.683, + "2000": 0.685, + "2001": 0.708, + "2002": 0.721, + "2003": 0.732, + "2004": 0.733, + "2005": 0.741, + "2006": 0.771, + "2007": 0.8, + "2008": 0.8, + "2009": 0.8, + "2010": 0.799, + "2011": 0.796, + "2012": 0.794, + "2013": 0.79, + "2014": 0.789, + "2015": 0.787, + "2016": 0.787, + "2017": 0.788, + "2018": 0.788, + "2019": 0.788, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr105", + "Region": "West", + "1990": 0.637, + "1991": 0.643, + "1992": 0.642, + "1993": 0.643, + "1994": 0.646, + "1995": 0.658, + "1996": 0.669, + "1997": 0.68, + "1998": 0.691, + "1999": 0.702, + "2000": 0.704, + "2001": 0.727, + "2002": 0.741, + "2003": 0.752, + "2004": 0.754, + "2005": 0.763, + "2006": 0.763, + "2007": 0.763, + "2008": 0.766, + "2009": 0.768, + "2010": 0.77, + "2011": 0.77, + "2012": 0.771, + "2013": 0.768, + "2014": 0.766, + "2015": 0.765, + "2016": 0.765, + "2017": 0.765, + "2018": 0.765, + "2019": 0.766, + "2020": 0.766, + "2021": 0.766 + }, + { + "Country": "United Arab Emirates", + "Continent": "Asia/Pacific", + "ISO_Code": "ARE", + "Level": "National", + "GDLCODE": "AREt", + "Region": "Total", + "1990": 0.483, + "1991": 0.503, + "1992": 0.508, + "1993": 0.519, + "1994": 0.532, + "1995": 0.545, + "1996": 0.557, + "1997": 0.568, + "1998": 0.58, + "1999": 0.591, + "2000": 0.603, + "2001": 0.609, + "2002": 0.616, + "2003": 0.623, + "2004": 0.63, + "2005": 0.636, + "2006": 0.645, + "2007": 0.654, + "2008": 0.663, + "2009": 0.672, + "2010": 0.681, + "2011": 0.69, + "2012": 0.699, + "2013": 0.708, + "2014": 0.716, + "2015": 0.725, + "2016": 0.734, + "2017": 0.8, + "2018": 0.833, + "2019": 0.859, + "2020": 0.86, + "2021": 0.86 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "National", + "GDLCODE": "GBRt", + "Region": "Total", + "1990": 0.7, + "1991": 0.711, + "1992": 0.724, + "1993": 0.732, + "1994": 0.741, + "1995": 0.75, + "1996": 0.76, + "1997": 0.77, + "1998": 0.78, + "1999": 0.794, + "2000": 0.804, + "2001": 0.813, + "2002": 0.821, + "2003": 0.829, + "2004": 0.85, + "2005": 0.861, + "2006": 0.854, + "2007": 0.858, + "2008": 0.87, + "2009": 0.884, + "2010": 0.895, + "2011": 0.877, + "2012": 0.88, + "2013": 0.918, + "2014": 0.915, + "2015": 0.914, + "2016": 0.919, + "2017": 0.925, + "2018": 0.921, + "2019": 0.925, + "2020": 0.928, + "2021": 0.928 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr104", + "Region": "East Midlands", + "1990": 0.692, + "1991": 0.703, + "1992": 0.715, + "1993": 0.724, + "1994": 0.733, + "1995": 0.742, + "1996": 0.751, + "1997": 0.761, + "1998": 0.771, + "1999": 0.785, + "2000": 0.795, + "2001": 0.803, + "2002": 0.811, + "2003": 0.82, + "2004": 0.844, + "2005": 0.853, + "2006": 0.849, + "2007": 0.849, + "2008": 0.861, + "2009": 0.875, + "2010": 0.884, + "2011": 0.865, + "2012": 0.863, + "2013": 0.907, + "2014": 0.906, + "2015": 0.903, + "2016": 0.911, + "2017": 0.914, + "2018": 0.91, + "2019": 0.918, + "2020": 0.921, + "2021": 0.921 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr106", + "Region": "East of England", + "1990": 0.682, + "1991": 0.692, + "1992": 0.704, + "1993": 0.712, + "1994": 0.721, + "1995": 0.73, + "1996": 0.739, + "1997": 0.749, + "1998": 0.759, + "1999": 0.772, + "2000": 0.782, + "2001": 0.794, + "2002": 0.8, + "2003": 0.808, + "2004": 0.829, + "2005": 0.839, + "2006": 0.832, + "2007": 0.837, + "2008": 0.847, + "2009": 0.861, + "2010": 0.868, + "2011": 0.85, + "2012": 0.859, + "2013": 0.893, + "2014": 0.894, + "2015": 0.886, + "2016": 0.888, + "2017": 0.892, + "2018": 0.886, + "2019": 0.893, + "2020": 0.895, + "2021": 0.895 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr107", + "Region": "London", + "1990": 0.741, + "1991": 0.752, + "1992": 0.765, + "1993": 0.774, + "1994": 0.783, + "1995": 0.792, + "1996": 0.803, + "1997": 0.813, + "1998": 0.824, + "1999": 0.838, + "2000": 0.848, + "2001": 0.859, + "2002": 0.864, + "2003": 0.871, + "2004": 0.89, + "2005": 0.9, + "2006": 0.892, + "2007": 0.893, + "2008": 0.906, + "2009": 0.915, + "2010": 0.919, + "2011": 0.905, + "2012": 0.91, + "2013": 0.947, + "2014": 0.946, + "2015": 0.945, + "2016": 0.951, + "2017": 0.952, + "2018": 0.95, + "2019": 0.96, + "2020": 0.963, + "2021": 0.963 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr101", + "Region": "North East", + "1990": 0.696, + "1991": 0.707, + "1992": 0.72, + "1993": 0.729, + "1994": 0.737, + "1995": 0.746, + "1996": 0.756, + "1997": 0.766, + "1998": 0.776, + "1999": 0.79, + "2000": 0.8, + "2001": 0.813, + "2002": 0.819, + "2003": 0.83, + "2004": 0.849, + "2005": 0.862, + "2006": 0.857, + "2007": 0.859, + "2008": 0.869, + "2009": 0.879, + "2010": 0.892, + "2011": 0.873, + "2012": 0.872, + "2013": 0.907, + "2014": 0.911, + "2015": 0.916, + "2016": 0.92, + "2017": 0.921, + "2018": 0.912, + "2019": 0.914, + "2020": 0.917, + "2021": 0.917 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr102", + "Region": "North West", + "1990": 0.702, + "1991": 0.712, + "1992": 0.725, + "1993": 0.734, + "1994": 0.742, + "1995": 0.751, + "1996": 0.761, + "1997": 0.771, + "1998": 0.781, + "1999": 0.795, + "2000": 0.805, + "2001": 0.811, + "2002": 0.818, + "2003": 0.827, + "2004": 0.85, + "2005": 0.86, + "2006": 0.853, + "2007": 0.857, + "2008": 0.869, + "2009": 0.883, + "2010": 0.891, + "2011": 0.87, + "2012": 0.873, + "2013": 0.91, + "2014": 0.916, + "2015": 0.916, + "2016": 0.921, + "2017": 0.923, + "2018": 0.918, + "2019": 0.923, + "2020": 0.925, + "2021": 0.925 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr112", + "Region": "Northern Ireland", + "1990": 0.681, + "1991": 0.691, + "1992": 0.704, + "1993": 0.712, + "1994": 0.721, + "1995": 0.73, + "1996": 0.739, + "1997": 0.749, + "1998": 0.759, + "1999": 0.772, + "2000": 0.782, + "2001": 0.794, + "2002": 0.806, + "2003": 0.813, + "2004": 0.834, + "2005": 0.843, + "2006": 0.839, + "2007": 0.842, + "2008": 0.856, + "2009": 0.861, + "2010": 0.873, + "2011": 0.846, + "2012": 0.854, + "2013": 0.89, + "2014": 0.87, + "2015": 0.874, + "2016": 0.865, + "2017": 0.874, + "2018": 0.874, + "2019": 0.878, + "2020": 0.88, + "2021": 0.88 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr111", + "Region": "Scotland", + "1990": 0.706, + "1991": 0.716, + "1992": 0.729, + "1993": 0.738, + "1994": 0.746, + "1995": 0.755, + "1996": 0.765, + "1997": 0.775, + "1998": 0.785, + "1999": 0.799, + "2000": 0.809, + "2001": 0.819, + "2002": 0.826, + "2003": 0.829, + "2004": 0.853, + "2005": 0.864, + "2006": 0.857, + "2007": 0.867, + "2008": 0.88, + "2009": 0.897, + "2010": 0.898, + "2011": 0.881, + "2012": 0.879, + "2013": 0.919, + "2014": 0.918, + "2015": 0.926, + "2016": 0.943, + "2017": 0.95, + "2018": 0.949, + "2019": 0.945, + "2020": 0.948, + "2021": 0.948 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr108", + "Region": "South East", + "1990": 0.707, + "1991": 0.717, + "1992": 0.73, + "1993": 0.739, + "1994": 0.748, + "1995": 0.756, + "1996": 0.767, + "1997": 0.777, + "1998": 0.787, + "1999": 0.801, + "2000": 0.81, + "2001": 0.819, + "2002": 0.831, + "2003": 0.836, + "2004": 0.856, + "2005": 0.868, + "2006": 0.861, + "2007": 0.864, + "2008": 0.877, + "2009": 0.891, + "2010": 0.9, + "2011": 0.883, + "2012": 0.886, + "2013": 0.922, + "2014": 0.926, + "2015": 0.92, + "2016": 0.92, + "2017": 0.926, + "2018": 0.921, + "2019": 0.932, + "2020": 0.935, + "2021": 0.935 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr109", + "Region": "South West", + "1990": 0.706, + "1991": 0.716, + "1992": 0.729, + "1993": 0.738, + "1994": 0.747, + "1995": 0.755, + "1996": 0.766, + "1997": 0.776, + "1998": 0.786, + "1999": 0.8, + "2000": 0.809, + "2001": 0.819, + "2002": 0.826, + "2003": 0.834, + "2004": 0.853, + "2005": 0.866, + "2006": 0.862, + "2007": 0.865, + "2008": 0.875, + "2009": 0.887, + "2010": 0.897, + "2011": 0.879, + "2012": 0.883, + "2013": 0.917, + "2014": 0.921, + "2015": 0.92, + "2016": 0.92, + "2017": 0.929, + "2018": 0.92, + "2019": 0.922, + "2020": 0.925, + "2021": 0.925 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr110", + "Region": "Wales", + "1990": 0.68, + "1991": 0.69, + "1992": 0.702, + "1993": 0.711, + "1994": 0.719, + "1995": 0.728, + "1996": 0.737, + "1997": 0.747, + "1998": 0.757, + "1999": 0.77, + "2000": 0.779, + "2001": 0.785, + "2002": 0.799, + "2003": 0.808, + "2004": 0.826, + "2005": 0.834, + "2006": 0.827, + "2007": 0.833, + "2008": 0.847, + "2009": 0.863, + "2010": 0.871, + "2011": 0.852, + "2012": 0.853, + "2013": 0.89, + "2014": 0.878, + "2015": 0.885, + "2016": 0.874, + "2017": 0.889, + "2018": 0.889, + "2019": 0.899, + "2020": 0.902, + "2021": 0.902 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr105", + "Region": "West Midlands", + "1990": 0.688, + "1991": 0.698, + "1992": 0.711, + "1993": 0.72, + "1994": 0.728, + "1995": 0.737, + "1996": 0.747, + "1997": 0.757, + "1998": 0.766, + "1999": 0.78, + "2000": 0.79, + "2001": 0.798, + "2002": 0.805, + "2003": 0.813, + "2004": 0.836, + "2005": 0.847, + "2006": 0.84, + "2007": 0.844, + "2008": 0.855, + "2009": 0.866, + "2010": 0.872, + "2011": 0.853, + "2012": 0.857, + "2013": 0.893, + "2014": 0.899, + "2015": 0.901, + "2016": 0.906, + "2017": 0.911, + "2018": 0.909, + "2019": 0.917, + "2020": 0.919, + "2021": 0.919 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr103", + "Region": "Yorkshire and The Humber", + "1990": 0.696, + "1991": 0.707, + "1992": 0.72, + "1993": 0.728, + "1994": 0.737, + "1995": 0.746, + "1996": 0.756, + "1997": 0.766, + "1998": 0.776, + "1999": 0.79, + "2000": 0.799, + "2001": 0.807, + "2002": 0.815, + "2003": 0.826, + "2004": 0.845, + "2005": 0.854, + "2006": 0.848, + "2007": 0.85, + "2008": 0.866, + "2009": 0.88, + "2010": 0.883, + "2011": 0.864, + "2012": 0.868, + "2013": 0.907, + "2014": 0.909, + "2015": 0.907, + "2016": 0.911, + "2017": 0.915, + "2018": 0.913, + "2019": 0.914, + "2020": 0.916, + "2021": 0.916 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "National", + "GDLCODE": "USAt", + "Region": "Total", + "1990": 0.861, + "1991": 0.864, + "1992": 0.869, + "1993": 0.882, + "1994": 0.884, + "1995": 0.883, + "1996": 0.88, + "1997": 0.874, + "1998": 0.878, + "1999": 0.861, + "2000": 0.861, + "2001": 0.862, + "2002": 0.862, + "2003": 0.863, + "2004": 0.864, + "2005": 0.865, + "2006": 0.87, + "2007": 0.872, + "2008": 0.875, + "2009": 0.877, + "2010": 0.88, + "2011": 0.883, + "2012": 0.885, + "2013": 0.889, + "2014": 0.889, + "2015": 0.892, + "2016": 0.897, + "2017": 0.9, + "2018": 0.902, + "2019": 0.905, + "2020": 0.908, + "2021": 0.908 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr101", + "Region": "Alabama", + "1990": 0.813, + "1991": 0.818, + "1992": 0.824, + "1993": 0.838, + "1994": 0.842, + "1995": 0.842, + "1996": 0.841, + "1997": 0.838, + "1998": 0.843, + "1999": 0.828, + "2000": 0.83, + "2001": 0.831, + "2002": 0.833, + "2003": 0.834, + "2004": 0.835, + "2005": 0.837, + "2006": 0.842, + "2007": 0.845, + "2008": 0.848, + "2009": 0.85, + "2010": 0.853, + "2011": 0.857, + "2012": 0.861, + "2013": 0.865, + "2014": 0.867, + "2015": 0.871, + "2016": 0.876, + "2017": 0.879, + "2018": 0.881, + "2019": 0.884, + "2020": 0.887, + "2021": 0.887 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr102", + "Region": "Alaska", + "1990": 0.913, + "1991": 0.914, + "1992": 0.917, + "1993": 0.928, + "1994": 0.929, + "1995": 0.925, + "1996": 0.92, + "1997": 0.912, + "1998": 0.913, + "1999": 0.893, + "2000": 0.892, + "2001": 0.892, + "2002": 0.891, + "2003": 0.891, + "2004": 0.891, + "2005": 0.893, + "2006": 0.897, + "2007": 0.899, + "2008": 0.902, + "2009": 0.903, + "2010": 0.906, + "2011": 0.907, + "2012": 0.907, + "2013": 0.908, + "2014": 0.907, + "2015": 0.906, + "2016": 0.912, + "2017": 0.915, + "2018": 0.917, + "2019": 0.92, + "2020": 0.923, + "2021": 0.923 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr103", + "Region": "Arizona", + "1990": 0.874, + "1991": 0.876, + "1992": 0.88, + "1993": 0.892, + "1994": 0.893, + "1995": 0.89, + "1996": 0.886, + "1997": 0.879, + "1998": 0.881, + "1999": 0.862, + "2000": 0.862, + "2001": 0.861, + "2002": 0.86, + "2003": 0.86, + "2004": 0.859, + "2005": 0.86, + "2006": 0.864, + "2007": 0.867, + "2008": 0.87, + "2009": 0.872, + "2010": 0.875, + "2011": 0.877, + "2012": 0.878, + "2013": 0.88, + "2014": 0.88, + "2015": 0.881, + "2016": 0.887, + "2017": 0.89, + "2018": 0.892, + "2019": 0.895, + "2020": 0.898, + "2021": 0.898 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr104", + "Region": "Arkansas", + "1990": 0.805, + "1991": 0.81, + "1992": 0.816, + "1993": 0.831, + "1994": 0.835, + "1995": 0.836, + "1996": 0.835, + "1997": 0.832, + "1998": 0.837, + "1999": 0.822, + "2000": 0.825, + "2001": 0.826, + "2002": 0.828, + "2003": 0.829, + "2004": 0.83, + "2005": 0.833, + "2006": 0.837, + "2007": 0.84, + "2008": 0.843, + "2009": 0.846, + "2010": 0.849, + "2011": 0.853, + "2012": 0.856, + "2013": 0.86, + "2014": 0.862, + "2015": 0.865, + "2016": 0.87, + "2017": 0.873, + "2018": 0.875, + "2019": 0.878, + "2020": 0.881, + "2021": 0.881 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr105", + "Region": "California", + "1990": 0.87, + "1991": 0.87, + "1992": 0.873, + "1993": 0.884, + "1994": 0.884, + "1995": 0.88, + "1996": 0.875, + "1997": 0.867, + "1998": 0.868, + "1999": 0.849, + "2000": 0.847, + "2001": 0.848, + "2002": 0.848, + "2003": 0.848, + "2004": 0.848, + "2005": 0.85, + "2006": 0.853, + "2007": 0.855, + "2008": 0.857, + "2009": 0.858, + "2010": 0.86, + "2011": 0.862, + "2012": 0.865, + "2013": 0.868, + "2014": 0.869, + "2015": 0.871, + "2016": 0.876, + "2017": 0.879, + "2018": 0.881, + "2019": 0.884, + "2020": 0.887, + "2021": 0.887 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr106", + "Region": "Colorado", + "1990": 0.918, + "1991": 0.92, + "1992": 0.924, + "1993": 0.936, + "1994": 0.937, + "1995": 0.935, + "1996": 0.93, + "1997": 0.923, + "1998": 0.926, + "1999": 0.906, + "2000": 0.906, + "2001": 0.905, + "2002": 0.904, + "2003": 0.903, + "2004": 0.902, + "2005": 0.903, + "2006": 0.907, + "2007": 0.91, + "2008": 0.913, + "2009": 0.915, + "2010": 0.918, + "2011": 0.922, + "2012": 0.924, + "2013": 0.928, + "2014": 0.928, + "2015": 0.93, + "2016": 0.936, + "2017": 0.94, + "2018": 0.942, + "2019": 0.945, + "2020": 0.948, + "2021": 0.948 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr107", + "Region": "Connecticut", + "1990": 0.896, + "1991": 0.899, + "1992": 0.904, + "1993": 0.917, + "1994": 0.919, + "1995": 0.917, + "1996": 0.914, + "1997": 0.908, + "1998": 0.911, + "1999": 0.893, + "2000": 0.893, + "2001": 0.893, + "2002": 0.894, + "2003": 0.894, + "2004": 0.895, + "2005": 0.896, + "2006": 0.901, + "2007": 0.903, + "2008": 0.906, + "2009": 0.908, + "2010": 0.911, + "2011": 0.913, + "2012": 0.916, + "2013": 0.919, + "2014": 0.919, + "2015": 0.921, + "2016": 0.927, + "2017": 0.931, + "2018": 0.932, + "2019": 0.936, + "2020": 0.939, + "2021": 0.939 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr108", + "Region": "Delaware", + "1990": 0.877, + "1991": 0.88, + "1992": 0.885, + "1993": 0.898, + "1994": 0.9, + "1995": 0.898, + "1996": 0.896, + "1997": 0.89, + "1998": 0.893, + "1999": 0.876, + "2000": 0.876, + "2001": 0.875, + "2002": 0.874, + "2003": 0.873, + "2004": 0.873, + "2005": 0.873, + "2006": 0.877, + "2007": 0.879, + "2008": 0.882, + "2009": 0.883, + "2010": 0.886, + "2011": 0.89, + "2012": 0.894, + "2013": 0.898, + "2014": 0.9, + "2015": 0.903, + "2016": 0.909, + "2017": 0.912, + "2018": 0.914, + "2019": 0.917, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr109", + "Region": "District of Columbia", + "1990": 0.891, + "1991": 0.894, + "1992": 0.899, + "1993": 0.912, + "1994": 0.915, + "1995": 0.913, + "1996": 0.91, + "1997": 0.905, + "1998": 0.908, + "1999": 0.89, + "2000": 0.891, + "2001": 0.893, + "2002": 0.895, + "2003": 0.897, + "2004": 0.899, + "2005": 0.902, + "2006": 0.91, + "2007": 0.917, + "2008": 0.923, + "2009": 0.929, + "2010": 0.935, + "2011": 0.942, + "2012": 0.948, + "2013": 0.955, + "2014": 0.959, + "2015": 0.965, + "2016": 0.97, + "2017": 0.974, + "2018": 0.976, + "2019": 0.98, + "2020": 0.983, + "2021": 0.983 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr110", + "Region": "Florida", + "1990": 0.859, + "1991": 0.862, + "1992": 0.867, + "1993": 0.88, + "1994": 0.882, + "1995": 0.881, + "1996": 0.879, + "1997": 0.873, + "1998": 0.877, + "1999": 0.86, + "2000": 0.86, + "2001": 0.861, + "2002": 0.862, + "2003": 0.862, + "2004": 0.863, + "2005": 0.865, + "2006": 0.869, + "2007": 0.871, + "2008": 0.872, + "2009": 0.874, + "2010": 0.876, + "2011": 0.879, + "2012": 0.882, + "2013": 0.885, + "2014": 0.887, + "2015": 0.889, + "2016": 0.894, + "2017": 0.898, + "2018": 0.9, + "2019": 0.903, + "2020": 0.906, + "2021": 0.906 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr111", + "Region": "Georgia", + "1990": 0.837, + "1991": 0.842, + "1992": 0.849, + "1993": 0.863, + "1994": 0.867, + "1995": 0.867, + "1996": 0.866, + "1997": 0.862, + "1998": 0.867, + "1999": 0.851, + "2000": 0.854, + "2001": 0.854, + "2002": 0.855, + "2003": 0.856, + "2004": 0.857, + "2005": 0.859, + "2006": 0.862, + "2007": 0.865, + "2008": 0.867, + "2009": 0.869, + "2010": 0.871, + "2011": 0.875, + "2012": 0.878, + "2013": 0.882, + "2014": 0.883, + "2015": 0.886, + "2016": 0.891, + "2017": 0.895, + "2018": 0.897, + "2019": 0.9, + "2020": 0.903, + "2021": 0.903 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr112", + "Region": "Hawaii", + "1990": 0.88, + "1991": 0.884, + "1992": 0.888, + "1993": 0.901, + "1994": 0.903, + "1995": 0.901, + "1996": 0.898, + "1997": 0.892, + "1998": 0.896, + "1999": 0.878, + "2000": 0.878, + "2001": 0.879, + "2002": 0.879, + "2003": 0.879, + "2004": 0.88, + "2005": 0.882, + "2006": 0.887, + "2007": 0.89, + "2008": 0.894, + "2009": 0.897, + "2010": 0.9, + "2011": 0.903, + "2012": 0.904, + "2013": 0.907, + "2014": 0.907, + "2015": 0.908, + "2016": 0.914, + "2017": 0.917, + "2018": 0.919, + "2019": 0.922, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr113", + "Region": "Idaho", + "1990": 0.876, + "1991": 0.879, + "1992": 0.884, + "1993": 0.896, + "1994": 0.898, + "1995": 0.896, + "1996": 0.893, + "1997": 0.886, + "1998": 0.889, + "1999": 0.871, + "2000": 0.872, + "2001": 0.87, + "2002": 0.869, + "2003": 0.868, + "2004": 0.867, + "2005": 0.867, + "2006": 0.872, + "2007": 0.875, + "2008": 0.878, + "2009": 0.881, + "2010": 0.884, + "2011": 0.886, + "2012": 0.888, + "2013": 0.89, + "2014": 0.89, + "2015": 0.891, + "2016": 0.897, + "2017": 0.9, + "2018": 0.902, + "2019": 0.905, + "2020": 0.908, + "2021": 0.908 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr114", + "Region": "Illinois", + "1990": 0.868, + "1991": 0.872, + "1992": 0.877, + "1993": 0.89, + "1994": 0.892, + "1995": 0.891, + "1996": 0.889, + "1997": 0.883, + "1998": 0.886, + "1999": 0.869, + "2000": 0.87, + "2001": 0.871, + "2002": 0.872, + "2003": 0.874, + "2004": 0.875, + "2005": 0.877, + "2006": 0.882, + "2007": 0.885, + "2008": 0.888, + "2009": 0.89, + "2010": 0.893, + "2011": 0.896, + "2012": 0.898, + "2013": 0.901, + "2014": 0.901, + "2015": 0.903, + "2016": 0.909, + "2017": 0.912, + "2018": 0.914, + "2019": 0.917, + "2020": 0.92, + "2021": 0.92 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr115", + "Region": "Indiana", + "1990": 0.853, + "1991": 0.857, + "1992": 0.862, + "1993": 0.875, + "1994": 0.878, + "1995": 0.877, + "1996": 0.874, + "1997": 0.869, + "1998": 0.873, + "1999": 0.856, + "2000": 0.857, + "2001": 0.856, + "2002": 0.856, + "2003": 0.856, + "2004": 0.856, + "2005": 0.857, + "2006": 0.862, + "2007": 0.865, + "2008": 0.869, + "2009": 0.872, + "2010": 0.875, + "2011": 0.878, + "2012": 0.881, + "2013": 0.884, + "2014": 0.884, + "2015": 0.886, + "2016": 0.892, + "2017": 0.895, + "2018": 0.897, + "2019": 0.9, + "2020": 0.903, + "2021": 0.903 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr116", + "Region": "Iowa", + "1990": 0.873, + "1991": 0.876, + "1992": 0.882, + "1993": 0.895, + "1994": 0.898, + "1995": 0.896, + "1996": 0.894, + "1997": 0.888, + "1998": 0.892, + "1999": 0.875, + "2000": 0.876, + "2001": 0.876, + "2002": 0.876, + "2003": 0.877, + "2004": 0.877, + "2005": 0.879, + "2006": 0.883, + "2007": 0.886, + "2008": 0.889, + "2009": 0.891, + "2010": 0.894, + "2011": 0.897, + "2012": 0.899, + "2013": 0.903, + "2014": 0.903, + "2015": 0.905, + "2016": 0.911, + "2017": 0.914, + "2018": 0.916, + "2019": 0.919, + "2020": 0.922, + "2021": 0.922 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr117", + "Region": "Kansas", + "1990": 0.89, + "1991": 0.893, + "1992": 0.897, + "1993": 0.91, + "1994": 0.912, + "1995": 0.911, + "1996": 0.907, + "1997": 0.901, + "1998": 0.904, + "1999": 0.886, + "2000": 0.887, + "2001": 0.886, + "2002": 0.886, + "2003": 0.885, + "2004": 0.885, + "2005": 0.885, + "2006": 0.89, + "2007": 0.892, + "2008": 0.895, + "2009": 0.897, + "2010": 0.899, + "2011": 0.902, + "2012": 0.903, + "2013": 0.906, + "2014": 0.906, + "2015": 0.907, + "2016": 0.913, + "2017": 0.916, + "2018": 0.918, + "2019": 0.921, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr118", + "Region": "Kentucky", + "1990": 0.794, + "1991": 0.799, + "1992": 0.806, + "1993": 0.82, + "1994": 0.825, + "1995": 0.826, + "1996": 0.826, + "1997": 0.823, + "1998": 0.828, + "1999": 0.814, + "2000": 0.817, + "2001": 0.818, + "2002": 0.82, + "2003": 0.822, + "2004": 0.824, + "2005": 0.827, + "2006": 0.833, + "2007": 0.837, + "2008": 0.841, + "2009": 0.845, + "2010": 0.85, + "2011": 0.854, + "2012": 0.857, + "2013": 0.861, + "2014": 0.863, + "2015": 0.866, + "2016": 0.871, + "2017": 0.874, + "2018": 0.876, + "2019": 0.879, + "2020": 0.882, + "2021": 0.882 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr119", + "Region": "Louisiana", + "1990": 0.815, + "1991": 0.82, + "1992": 0.825, + "1993": 0.839, + "1994": 0.842, + "1995": 0.842, + "1996": 0.84, + "1997": 0.836, + "1998": 0.84, + "1999": 0.825, + "2000": 0.826, + "2001": 0.828, + "2002": 0.83, + "2003": 0.831, + "2004": 0.833, + "2005": 0.836, + "2006": 0.84, + "2007": 0.842, + "2008": 0.845, + "2009": 0.847, + "2010": 0.85, + "2011": 0.853, + "2012": 0.857, + "2013": 0.86, + "2014": 0.862, + "2015": 0.865, + "2016": 0.87, + "2017": 0.873, + "2018": 0.875, + "2019": 0.878, + "2020": 0.881, + "2021": 0.881 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr120", + "Region": "Maine", + "1990": 0.872, + "1991": 0.876, + "1992": 0.882, + "1993": 0.895, + "1994": 0.898, + "1995": 0.897, + "1996": 0.895, + "1997": 0.89, + "1998": 0.894, + "1999": 0.877, + "2000": 0.879, + "2001": 0.879, + "2002": 0.879, + "2003": 0.88, + "2004": 0.88, + "2005": 0.882, + "2006": 0.886, + "2007": 0.889, + "2008": 0.892, + "2009": 0.894, + "2010": 0.897, + "2011": 0.901, + "2012": 0.904, + "2013": 0.908, + "2014": 0.91, + "2015": 0.912, + "2016": 0.918, + "2017": 0.922, + "2018": 0.924, + "2019": 0.927, + "2020": 0.93, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr121", + "Region": "Maryland", + "1990": 0.893, + "1991": 0.896, + "1992": 0.901, + "1993": 0.914, + "1994": 0.917, + "1995": 0.916, + "1996": 0.913, + "1997": 0.907, + "1998": 0.91, + "1999": 0.893, + "2000": 0.893, + "2001": 0.893, + "2002": 0.894, + "2003": 0.894, + "2004": 0.894, + "2005": 0.895, + "2006": 0.899, + "2007": 0.902, + "2008": 0.904, + "2009": 0.906, + "2010": 0.908, + "2011": 0.912, + "2012": 0.915, + "2013": 0.919, + "2014": 0.921, + "2015": 0.923, + "2016": 0.929, + "2017": 0.933, + "2018": 0.935, + "2019": 0.938, + "2020": 0.941, + "2021": 0.941 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr122", + "Region": "Massachusetts", + "1990": 0.897, + "1991": 0.901, + "1992": 0.906, + "1993": 0.919, + "1994": 0.922, + "1995": 0.921, + "1996": 0.918, + "1997": 0.912, + "1998": 0.915, + "1999": 0.898, + "2000": 0.898, + "2001": 0.899, + "2002": 0.899, + "2003": 0.899, + "2004": 0.9, + "2005": 0.902, + "2006": 0.906, + "2007": 0.909, + "2008": 0.913, + "2009": 0.915, + "2010": 0.919, + "2011": 0.921, + "2012": 0.924, + "2013": 0.927, + "2014": 0.927, + "2015": 0.929, + "2016": 0.935, + "2017": 0.938, + "2018": 0.94, + "2019": 0.943, + "2020": 0.947, + "2021": 0.947 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr123", + "Region": "Michigan", + "1990": 0.864, + "1991": 0.868, + "1992": 0.873, + "1993": 0.887, + "1994": 0.89, + "1995": 0.889, + "1996": 0.886, + "1997": 0.881, + "1998": 0.885, + "1999": 0.868, + "2000": 0.869, + "2001": 0.87, + "2002": 0.87, + "2003": 0.871, + "2004": 0.872, + "2005": 0.873, + "2006": 0.878, + "2007": 0.881, + "2008": 0.884, + "2009": 0.887, + "2010": 0.89, + "2011": 0.893, + "2012": 0.895, + "2013": 0.898, + "2014": 0.899, + "2015": 0.9, + "2016": 0.906, + "2017": 0.91, + "2018": 0.911, + "2019": 0.914, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr124", + "Region": "Minnesota", + "1990": 0.895, + "1991": 0.898, + "1992": 0.904, + "1993": 0.917, + "1994": 0.92, + "1995": 0.918, + "1996": 0.916, + "1997": 0.91, + "1998": 0.914, + "1999": 0.896, + "2000": 0.897, + "2001": 0.897, + "2002": 0.897, + "2003": 0.897, + "2004": 0.898, + "2005": 0.899, + "2006": 0.904, + "2007": 0.907, + "2008": 0.91, + "2009": 0.912, + "2010": 0.915, + "2011": 0.918, + "2012": 0.92, + "2013": 0.924, + "2014": 0.924, + "2015": 0.926, + "2016": 0.931, + "2017": 0.935, + "2018": 0.937, + "2019": 0.94, + "2020": 0.943, + "2021": 0.943 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr125", + "Region": "Mississippi", + "1990": 0.798, + "1991": 0.803, + "1992": 0.81, + "1993": 0.824, + "1994": 0.828, + "1995": 0.828, + "1996": 0.828, + "1997": 0.824, + "1998": 0.829, + "1999": 0.815, + "2000": 0.817, + "2001": 0.818, + "2002": 0.819, + "2003": 0.821, + "2004": 0.822, + "2005": 0.824, + "2006": 0.829, + "2007": 0.832, + "2008": 0.836, + "2009": 0.838, + "2010": 0.842, + "2011": 0.845, + "2012": 0.848, + "2013": 0.852, + "2014": 0.853, + "2015": 0.856, + "2016": 0.861, + "2017": 0.864, + "2018": 0.866, + "2019": 0.869, + "2020": 0.872, + "2021": 0.872 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr126", + "Region": "Missouri", + "1990": 0.85, + "1991": 0.855, + "1992": 0.861, + "1993": 0.874, + "1994": 0.878, + "1995": 0.877, + "1996": 0.876, + "1997": 0.871, + "1998": 0.876, + "1999": 0.86, + "2000": 0.861, + "2001": 0.862, + "2002": 0.862, + "2003": 0.862, + "2004": 0.863, + "2005": 0.864, + "2006": 0.869, + "2007": 0.872, + "2008": 0.875, + "2009": 0.878, + "2010": 0.881, + "2011": 0.885, + "2012": 0.887, + "2013": 0.891, + "2014": 0.892, + "2015": 0.895, + "2016": 0.9, + "2017": 0.904, + "2018": 0.906, + "2019": 0.909, + "2020": 0.912, + "2021": 0.912 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr127", + "Region": "Montana", + "1990": 0.89, + "1991": 0.894, + "1992": 0.899, + "1993": 0.912, + "1994": 0.914, + "1995": 0.913, + "1996": 0.91, + "1997": 0.904, + "1998": 0.907, + "1999": 0.889, + "2000": 0.89, + "2001": 0.89, + "2002": 0.89, + "2003": 0.889, + "2004": 0.889, + "2005": 0.89, + "2006": 0.897, + "2007": 0.901, + "2008": 0.906, + "2009": 0.91, + "2010": 0.915, + "2011": 0.916, + "2012": 0.917, + "2013": 0.918, + "2014": 0.917, + "2015": 0.918, + "2016": 0.923, + "2017": 0.927, + "2018": 0.929, + "2019": 0.932, + "2020": 0.935, + "2021": 0.935 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr128", + "Region": "Nebraska", + "1990": 0.885, + "1991": 0.889, + "1992": 0.893, + "1993": 0.906, + "1994": 0.908, + "1995": 0.907, + "1996": 0.904, + "1997": 0.898, + "1998": 0.901, + "1999": 0.883, + "2000": 0.883, + "2001": 0.883, + "2002": 0.883, + "2003": 0.883, + "2004": 0.882, + "2005": 0.883, + "2006": 0.888, + "2007": 0.892, + "2008": 0.895, + "2009": 0.898, + "2010": 0.901, + "2011": 0.903, + "2012": 0.904, + "2013": 0.906, + "2014": 0.906, + "2015": 0.906, + "2016": 0.912, + "2017": 0.915, + "2018": 0.917, + "2019": 0.92, + "2020": 0.923, + "2021": 0.923 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr129", + "Region": "Nevada", + "1990": 0.873, + "1991": 0.874, + "1992": 0.877, + "1993": 0.888, + "1994": 0.888, + "1995": 0.885, + "1996": 0.88, + "1997": 0.872, + "1998": 0.873, + "1999": 0.854, + "2000": 0.853, + "2001": 0.851, + "2002": 0.85, + "2003": 0.848, + "2004": 0.846, + "2005": 0.846, + "2006": 0.851, + "2007": 0.854, + "2008": 0.857, + "2009": 0.86, + "2010": 0.863, + "2011": 0.866, + "2012": 0.868, + "2013": 0.871, + "2014": 0.871, + "2015": 0.873, + "2016": 0.878, + "2017": 0.882, + "2018": 0.884, + "2019": 0.887, + "2020": 0.89, + "2021": 0.89 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr130", + "Region": "New Hampshire", + "1990": 0.903, + "1991": 0.906, + "1992": 0.911, + "1993": 0.924, + "1994": 0.926, + "1995": 0.925, + "1996": 0.922, + "1997": 0.916, + "1998": 0.919, + "1999": 0.901, + "2000": 0.901, + "2001": 0.9, + "2002": 0.899, + "2003": 0.898, + "2004": 0.897, + "2005": 0.897, + "2006": 0.903, + "2007": 0.907, + "2008": 0.911, + "2009": 0.915, + "2010": 0.919, + "2011": 0.922, + "2012": 0.925, + "2013": 0.928, + "2014": 0.929, + "2015": 0.931, + "2016": 0.936, + "2017": 0.94, + "2018": 0.942, + "2019": 0.945, + "2020": 0.948, + "2021": 0.948 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr131", + "Region": "New Jersey", + "1990": 0.882, + "1991": 0.885, + "1992": 0.89, + "1993": 0.904, + "1994": 0.906, + "1995": 0.905, + "1996": 0.902, + "1997": 0.897, + "1998": 0.9, + "1999": 0.883, + "2000": 0.883, + "2001": 0.885, + "2002": 0.887, + "2003": 0.888, + "2004": 0.89, + "2005": 0.893, + "2006": 0.897, + "2007": 0.9, + "2008": 0.902, + "2009": 0.904, + "2010": 0.907, + "2011": 0.909, + "2012": 0.911, + "2013": 0.914, + "2014": 0.914, + "2015": 0.916, + "2016": 0.921, + "2017": 0.925, + "2018": 0.927, + "2019": 0.93, + "2020": 0.933, + "2021": 0.933 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr132", + "Region": "New Mexico", + "1990": 0.856, + "1991": 0.859, + "1992": 0.863, + "1993": 0.875, + "1994": 0.876, + "1995": 0.874, + "1996": 0.871, + "1997": 0.864, + "1998": 0.867, + "1999": 0.849, + "2000": 0.849, + "2001": 0.849, + "2002": 0.849, + "2003": 0.849, + "2004": 0.85, + "2005": 0.851, + "2006": 0.854, + "2007": 0.855, + "2008": 0.857, + "2009": 0.858, + "2010": 0.859, + "2011": 0.862, + "2012": 0.864, + "2013": 0.867, + "2014": 0.867, + "2015": 0.869, + "2016": 0.874, + "2017": 0.878, + "2018": 0.88, + "2019": 0.882, + "2020": 0.885, + "2021": 0.885 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr133", + "Region": "New York", + "1990": 0.871, + "1991": 0.874, + "1992": 0.878, + "1993": 0.89, + "1994": 0.892, + "1995": 0.89, + "1996": 0.887, + "1997": 0.881, + "1998": 0.884, + "1999": 0.866, + "2000": 0.866, + "2001": 0.868, + "2002": 0.87, + "2003": 0.871, + "2004": 0.873, + "2005": 0.876, + "2006": 0.879, + "2007": 0.881, + "2008": 0.882, + "2009": 0.883, + "2010": 0.884, + "2011": 0.887, + "2012": 0.89, + "2013": 0.893, + "2014": 0.894, + "2015": 0.896, + "2016": 0.902, + "2017": 0.905, + "2018": 0.907, + "2019": 0.91, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr134", + "Region": "North Carolina", + "1990": 0.828, + "1991": 0.833, + "1992": 0.84, + "1993": 0.854, + "1994": 0.858, + "1995": 0.858, + "1996": 0.857, + "1997": 0.854, + "1998": 0.859, + "1999": 0.843, + "2000": 0.846, + "2001": 0.847, + "2002": 0.848, + "2003": 0.849, + "2004": 0.85, + "2005": 0.852, + "2006": 0.857, + "2007": 0.861, + "2008": 0.865, + "2009": 0.868, + "2010": 0.872, + "2011": 0.875, + "2012": 0.878, + "2013": 0.882, + "2014": 0.883, + "2015": 0.886, + "2016": 0.891, + "2017": 0.895, + "2018": 0.897, + "2019": 0.9, + "2020": 0.903, + "2021": 0.903 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr135", + "Region": "North Dakota", + "1990": 0.861, + "1991": 0.865, + "1992": 0.871, + "1993": 0.884, + "1994": 0.887, + "1995": 0.886, + "1996": 0.884, + "1997": 0.879, + "1998": 0.883, + "1999": 0.866, + "2000": 0.868, + "2001": 0.869, + "2002": 0.871, + "2003": 0.873, + "2004": 0.875, + "2005": 0.878, + "2006": 0.884, + "2007": 0.889, + "2008": 0.894, + "2009": 0.898, + "2010": 0.903, + "2011": 0.907, + "2012": 0.91, + "2013": 0.913, + "2014": 0.915, + "2015": 0.917, + "2016": 0.922, + "2017": 0.926, + "2018": 0.928, + "2019": 0.931, + "2020": 0.934, + "2021": 0.934 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr136", + "Region": "Ohio", + "1990": 0.858, + "1991": 0.862, + "1992": 0.868, + "1993": 0.881, + "1994": 0.885, + "1995": 0.884, + "1996": 0.882, + "1997": 0.877, + "1998": 0.881, + "1999": 0.865, + "2000": 0.866, + "2001": 0.866, + "2002": 0.866, + "2003": 0.867, + "2004": 0.867, + "2005": 0.868, + "2006": 0.873, + "2007": 0.876, + "2008": 0.879, + "2009": 0.882, + "2010": 0.885, + "2011": 0.888, + "2012": 0.891, + "2013": 0.894, + "2014": 0.894, + "2015": 0.896, + "2016": 0.902, + "2017": 0.905, + "2018": 0.907, + "2019": 0.91, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr137", + "Region": "Oklahoma", + "1990": 0.853, + "1991": 0.857, + "1992": 0.862, + "1993": 0.874, + "1994": 0.877, + "1995": 0.875, + "1996": 0.873, + "1997": 0.867, + "1998": 0.871, + "1999": 0.854, + "2000": 0.854, + "2001": 0.855, + "2002": 0.856, + "2003": 0.856, + "2004": 0.857, + "2005": 0.859, + "2006": 0.862, + "2007": 0.865, + "2008": 0.867, + "2009": 0.868, + "2010": 0.871, + "2011": 0.873, + "2012": 0.876, + "2013": 0.879, + "2014": 0.879, + "2015": 0.881, + "2016": 0.886, + "2017": 0.89, + "2018": 0.892, + "2019": 0.895, + "2020": 0.898, + "2021": 0.898 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr138", + "Region": "Oregon", + "1990": 0.893, + "1991": 0.895, + "1992": 0.899, + "1993": 0.911, + "1994": 0.912, + "1995": 0.91, + "1996": 0.906, + "1997": 0.899, + "1998": 0.901, + "1999": 0.883, + "2000": 0.882, + "2001": 0.882, + "2002": 0.881, + "2003": 0.881, + "2004": 0.881, + "2005": 0.881, + "2006": 0.886, + "2007": 0.889, + "2008": 0.892, + "2009": 0.894, + "2010": 0.897, + "2011": 0.9, + "2012": 0.903, + "2013": 0.906, + "2014": 0.907, + "2015": 0.909, + "2016": 0.915, + "2017": 0.919, + "2018": 0.92, + "2019": 0.923, + "2020": 0.927, + "2021": 0.927 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr139", + "Region": "Pennsylvania", + "1990": 0.857, + "1991": 0.861, + "1992": 0.866, + "1993": 0.88, + "1994": 0.883, + "1995": 0.882, + "1996": 0.881, + "1997": 0.876, + "1998": 0.88, + "1999": 0.863, + "2000": 0.865, + "2001": 0.866, + "2002": 0.868, + "2003": 0.869, + "2004": 0.871, + "2005": 0.874, + "2006": 0.879, + "2007": 0.882, + "2008": 0.885, + "2009": 0.887, + "2010": 0.891, + "2011": 0.893, + "2012": 0.896, + "2013": 0.899, + "2014": 0.899, + "2015": 0.901, + "2016": 0.906, + "2017": 0.91, + "2018": 0.912, + "2019": 0.915, + "2020": 0.918, + "2021": 0.918 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr140", + "Region": "Rhode Island", + "1990": 0.849, + "1991": 0.853, + "1992": 0.858, + "1993": 0.87, + "1994": 0.873, + "1995": 0.872, + "1996": 0.869, + "1997": 0.864, + "1998": 0.867, + "1999": 0.85, + "2000": 0.851, + "2001": 0.853, + "2002": 0.855, + "2003": 0.856, + "2004": 0.858, + "2005": 0.861, + "2006": 0.865, + "2007": 0.867, + "2008": 0.87, + "2009": 0.871, + "2010": 0.874, + "2011": 0.879, + "2012": 0.884, + "2013": 0.889, + "2014": 0.892, + "2015": 0.896, + "2016": 0.902, + "2017": 0.905, + "2018": 0.907, + "2019": 0.91, + "2020": 0.913, + "2021": 0.913 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr141", + "Region": "South Carolina", + "1990": 0.817, + "1991": 0.822, + "1992": 0.829, + "1993": 0.843, + "1994": 0.847, + "1995": 0.847, + "1996": 0.847, + "1997": 0.843, + "1998": 0.848, + "1999": 0.833, + "2000": 0.836, + "2001": 0.838, + "2002": 0.839, + "2003": 0.841, + "2004": 0.843, + "2005": 0.846, + "2006": 0.851, + "2007": 0.855, + "2008": 0.859, + "2009": 0.862, + "2010": 0.866, + "2011": 0.87, + "2012": 0.873, + "2013": 0.877, + "2014": 0.879, + "2015": 0.882, + "2016": 0.888, + "2017": 0.891, + "2018": 0.893, + "2019": 0.896, + "2020": 0.899, + "2021": 0.899 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr142", + "Region": "South Dakota", + "1990": 0.859, + "1991": 0.863, + "1992": 0.869, + "1993": 0.883, + "1994": 0.887, + "1995": 0.887, + "1996": 0.885, + "1997": 0.881, + "1998": 0.885, + "1999": 0.869, + "2000": 0.871, + "2001": 0.871, + "2002": 0.871, + "2003": 0.872, + "2004": 0.872, + "2005": 0.874, + "2006": 0.881, + "2007": 0.886, + "2008": 0.891, + "2009": 0.896, + "2010": 0.902, + "2011": 0.903, + "2012": 0.904, + "2013": 0.906, + "2014": 0.905, + "2015": 0.906, + "2016": 0.911, + "2017": 0.915, + "2018": 0.917, + "2019": 0.92, + "2020": 0.923, + "2021": 0.923 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr143", + "Region": "Tennessee", + "1990": 0.813, + "1991": 0.818, + "1992": 0.825, + "1993": 0.839, + "1994": 0.843, + "1995": 0.844, + "1996": 0.843, + "1997": 0.84, + "1998": 0.845, + "1999": 0.83, + "2000": 0.833, + "2001": 0.834, + "2002": 0.836, + "2003": 0.837, + "2004": 0.839, + "2005": 0.841, + "2006": 0.846, + "2007": 0.85, + "2008": 0.854, + "2009": 0.857, + "2010": 0.861, + "2011": 0.865, + "2012": 0.869, + "2013": 0.873, + "2014": 0.875, + "2015": 0.878, + "2016": 0.884, + "2017": 0.887, + "2018": 0.889, + "2019": 0.892, + "2020": 0.895, + "2021": 0.895 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr144", + "Region": "Texas", + "1990": 0.837, + "1991": 0.84, + "1992": 0.844, + "1993": 0.856, + "1994": 0.858, + "1995": 0.856, + "1996": 0.853, + "1997": 0.846, + "1998": 0.849, + "1999": 0.832, + "2000": 0.832, + "2001": 0.832, + "2002": 0.832, + "2003": 0.832, + "2004": 0.832, + "2005": 0.833, + "2006": 0.838, + "2007": 0.84, + "2008": 0.843, + "2009": 0.845, + "2010": 0.848, + "2011": 0.851, + "2012": 0.854, + "2013": 0.858, + "2014": 0.859, + "2015": 0.861, + "2016": 0.866, + "2017": 0.87, + "2018": 0.872, + "2019": 0.875, + "2020": 0.878, + "2021": 0.878 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr145", + "Region": "Utah", + "1990": 0.912, + "1991": 0.914, + "1992": 0.917, + "1993": 0.929, + "1994": 0.93, + "1995": 0.927, + "1996": 0.922, + "1997": 0.915, + "1998": 0.917, + "1999": 0.897, + "2000": 0.896, + "2001": 0.895, + "2002": 0.894, + "2003": 0.893, + "2004": 0.892, + "2005": 0.893, + "2006": 0.897, + "2007": 0.899, + "2008": 0.902, + "2009": 0.903, + "2010": 0.906, + "2011": 0.909, + "2012": 0.911, + "2013": 0.913, + "2014": 0.914, + "2015": 0.915, + "2016": 0.921, + "2017": 0.924, + "2018": 0.926, + "2019": 0.929, + "2020": 0.932, + "2021": 0.932 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr146", + "Region": "Vermont", + "1990": 0.897, + "1991": 0.9, + "1992": 0.905, + "1993": 0.919, + "1994": 0.921, + "1995": 0.92, + "1996": 0.917, + "1997": 0.912, + "1998": 0.915, + "1999": 0.897, + "2000": 0.898, + "2001": 0.898, + "2002": 0.898, + "2003": 0.899, + "2004": 0.899, + "2005": 0.9, + "2006": 0.906, + "2007": 0.91, + "2008": 0.914, + "2009": 0.918, + "2010": 0.922, + "2011": 0.924, + "2012": 0.925, + "2013": 0.927, + "2014": 0.927, + "2015": 0.928, + "2016": 0.933, + "2017": 0.937, + "2018": 0.939, + "2019": 0.942, + "2020": 0.945, + "2021": 0.945 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr147", + "Region": "Virginia", + "1990": 0.868, + "1991": 0.872, + "1992": 0.878, + "1993": 0.891, + "1994": 0.894, + "1995": 0.894, + "1996": 0.892, + "1997": 0.887, + "1998": 0.891, + "1999": 0.874, + "2000": 0.876, + "2001": 0.877, + "2002": 0.878, + "2003": 0.879, + "2004": 0.881, + "2005": 0.883, + "2006": 0.888, + "2007": 0.89, + "2008": 0.893, + "2009": 0.895, + "2010": 0.898, + "2011": 0.902, + "2012": 0.905, + "2013": 0.909, + "2014": 0.911, + "2015": 0.914, + "2016": 0.919, + "2017": 0.923, + "2018": 0.925, + "2019": 0.928, + "2020": 0.931, + "2021": 0.931 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr148", + "Region": "Washington", + "1990": 0.905, + "1991": 0.908, + "1992": 0.912, + "1993": 0.924, + "1994": 0.926, + "1995": 0.923, + "1996": 0.919, + "1997": 0.913, + "1998": 0.915, + "1999": 0.896, + "2000": 0.896, + "2001": 0.895, + "2002": 0.894, + "2003": 0.892, + "2004": 0.891, + "2005": 0.891, + "2006": 0.895, + "2007": 0.897, + "2008": 0.9, + "2009": 0.901, + "2010": 0.904, + "2011": 0.907, + "2012": 0.91, + "2013": 0.913, + "2014": 0.914, + "2015": 0.916, + "2016": 0.921, + "2017": 0.925, + "2018": 0.927, + "2019": 0.93, + "2020": 0.933, + "2021": 0.933 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr149", + "Region": "West Virginia", + "1990": 0.799, + "1991": 0.803, + "1992": 0.81, + "1993": 0.824, + "1994": 0.828, + "1995": 0.828, + "1996": 0.828, + "1997": 0.824, + "1998": 0.829, + "1999": 0.815, + "2000": 0.817, + "2001": 0.82, + "2002": 0.822, + "2003": 0.825, + "2004": 0.827, + "2005": 0.831, + "2006": 0.835, + "2007": 0.837, + "2008": 0.84, + "2009": 0.842, + "2010": 0.845, + "2011": 0.849, + "2012": 0.853, + "2013": 0.857, + "2014": 0.86, + "2015": 0.863, + "2016": 0.868, + "2017": 0.872, + "2018": 0.874, + "2019": 0.876, + "2020": 0.879, + "2021": 0.879 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr150", + "Region": "Wisconsin", + "1990": 0.87, + "1991": 0.874, + "1992": 0.88, + "1993": 0.893, + "1994": 0.896, + "1995": 0.896, + "1996": 0.893, + "1997": 0.888, + "1998": 0.892, + "1999": 0.875, + "2000": 0.877, + "2001": 0.878, + "2002": 0.878, + "2003": 0.879, + "2004": 0.88, + "2005": 0.882, + "2006": 0.887, + "2007": 0.89, + "2008": 0.893, + "2009": 0.895, + "2010": 0.898, + "2011": 0.901, + "2012": 0.903, + "2013": 0.905, + "2014": 0.906, + "2015": 0.907, + "2016": 0.913, + "2017": 0.916, + "2018": 0.918, + "2019": 0.921, + "2020": 0.924, + "2021": 0.924 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr151", + "Region": "Wyoming", + "1990": 0.891, + "1991": 0.894, + "1992": 0.898, + "1993": 0.911, + "1994": 0.912, + "1995": 0.91, + "1996": 0.906, + "1997": 0.899, + "1998": 0.902, + "1999": 0.884, + "2000": 0.883, + "2001": 0.883, + "2002": 0.883, + "2003": 0.883, + "2004": 0.883, + "2005": 0.884, + "2006": 0.89, + "2007": 0.894, + "2008": 0.897, + "2009": 0.9, + "2010": 0.904, + "2011": 0.907, + "2012": 0.909, + "2013": 0.911, + "2014": 0.912, + "2015": 0.913, + "2016": 0.918, + "2017": 0.922, + "2018": 0.924, + "2019": 0.927, + "2020": 0.93, + "2021": 0.93 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "National", + "GDLCODE": "URYt", + "Region": "Total", + "1990": 0.596, + "1991": 0.601, + "1992": 0.597, + "1993": 0.6, + "1994": 0.604, + "1995": 0.608, + "1996": 0.615, + "1997": 0.631, + "1998": 0.648, + "1999": 0.656, + "2000": 0.672, + "2001": 0.692, + "2002": 0.71, + "2003": 0.73, + "2004": 0.719, + "2005": 0.7, + "2006": 0.692, + "2007": 0.688, + "2008": 0.688, + "2009": 0.697, + "2010": 0.706, + "2011": 0.716, + "2012": 0.726, + "2013": 0.735, + "2014": 0.74, + "2015": 0.743, + "2016": 0.752, + "2017": 0.762, + "2018": 0.762, + "2019": 0.767, + "2020": 0.767, + "2021": 0.767 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr105", + "Region": "Centro (Durazno and Tacuarembo)", + "1990": 0.525, + "1991": 0.529, + "1992": 0.525, + "1993": 0.528, + "1994": 0.532, + "1995": 0.535, + "1996": 0.541, + "1997": 0.555, + "1998": 0.57, + "1999": 0.576, + "2000": 0.59, + "2001": 0.608, + "2002": 0.624, + "2003": 0.641, + "2004": 0.633, + "2005": 0.616, + "2006": 0.61, + "2007": 0.606, + "2008": 0.608, + "2009": 0.62, + "2010": 0.631, + "2011": 0.643, + "2012": 0.655, + "2013": 0.669, + "2014": 0.674, + "2015": 0.676, + "2016": 0.684, + "2017": 0.693, + "2018": 0.693, + "2019": 0.698, + "2020": 0.698, + "2021": 0.698 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr106", + "Region": "Centro Sur (Flores, Florida and Lavalleja)", + "1990": 0.6, + "1991": 0.604, + "1992": 0.6, + "1993": 0.604, + "1994": 0.608, + "1995": 0.611, + "1996": 0.618, + "1997": 0.634, + "1998": 0.651, + "1999": 0.658, + "2000": 0.674, + "2001": 0.695, + "2002": 0.713, + "2003": 0.733, + "2004": 0.723, + "2005": 0.704, + "2006": 0.698, + "2007": 0.693, + "2008": 0.694, + "2009": 0.707, + "2010": 0.718, + "2011": 0.731, + "2012": 0.744, + "2013": 0.736, + "2014": 0.741, + "2015": 0.744, + "2016": 0.753, + "2017": 0.759, + "2018": 0.761, + "2019": 0.763, + "2020": 0.763, + "2021": 0.763 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr103", + "Region": "Costa Este (Canelones, Maldonado and Rocha)", + "1990": 0.598, + "1991": 0.602, + "1992": 0.598, + "1993": 0.601, + "1994": 0.605, + "1995": 0.609, + "1996": 0.616, + "1997": 0.632, + "1998": 0.649, + "1999": 0.656, + "2000": 0.672, + "2001": 0.693, + "2002": 0.711, + "2003": 0.73, + "2004": 0.72, + "2005": 0.701, + "2006": 0.694, + "2007": 0.689, + "2008": 0.689, + "2009": 0.699, + "2010": 0.707, + "2011": 0.718, + "2012": 0.728, + "2013": 0.738, + "2014": 0.743, + "2015": 0.746, + "2016": 0.755, + "2017": 0.765, + "2018": 0.764, + "2019": 0.77, + "2020": 0.77, + "2021": 0.77 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr107", + "Region": "Litoral Norte (Paysandu, Salto and Rio Negro)", + "1990": 0.519, + "1991": 0.523, + "1992": 0.519, + "1993": 0.523, + "1994": 0.526, + "1995": 0.529, + "1996": 0.535, + "1997": 0.55, + "1998": 0.564, + "1999": 0.571, + "2000": 0.585, + "2001": 0.603, + "2002": 0.619, + "2003": 0.635, + "2004": 0.626, + "2005": 0.609, + "2006": 0.602, + "2007": 0.599, + "2008": 0.599, + "2009": 0.607, + "2010": 0.614, + "2011": 0.623, + "2012": 0.632, + "2013": 0.634, + "2014": 0.639, + "2015": 0.641, + "2016": 0.649, + "2017": 0.658, + "2018": 0.657, + "2019": 0.662, + "2020": 0.662, + "2021": 0.662 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr104", + "Region": "Litoral Sur (Soriano, Colonia and San Jose)", + "1990": 0.551, + "1991": 0.555, + "1992": 0.551, + "1993": 0.555, + "1994": 0.558, + "1995": 0.562, + "1996": 0.568, + "1997": 0.584, + "1998": 0.599, + "1999": 0.607, + "2000": 0.621, + "2001": 0.64, + "2002": 0.657, + "2003": 0.675, + "2004": 0.665, + "2005": 0.646, + "2006": 0.639, + "2007": 0.636, + "2008": 0.633, + "2009": 0.639, + "2010": 0.644, + "2011": 0.651, + "2012": 0.658, + "2013": 0.654, + "2014": 0.659, + "2015": 0.661, + "2016": 0.67, + "2017": 0.679, + "2018": 0.678, + "2019": 0.683, + "2020": 0.683, + "2021": 0.683 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr101", + "Region": "Montevideo and Metropolitan area", + "1990": 0.639, + "1991": 0.643, + "1992": 0.639, + "1993": 0.643, + "1994": 0.647, + "1995": 0.651, + "1996": 0.659, + "1997": 0.676, + "1998": 0.694, + "1999": 0.703, + "2000": 0.72, + "2001": 0.742, + "2002": 0.761, + "2003": 0.782, + "2004": 0.77, + "2005": 0.749, + "2006": 0.74, + "2007": 0.737, + "2008": 0.736, + "2009": 0.746, + "2010": 0.754, + "2011": 0.764, + "2012": 0.774, + "2013": 0.779, + "2014": 0.785, + "2015": 0.788, + "2016": 0.797, + "2017": 0.808, + "2018": 0.807, + "2019": 0.813, + "2020": 0.813, + "2021": 0.813 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr102", + "Region": "Norte (Artigas, Rivera, Cerro Largo and Trienta y Tres)", + "1990": 0.545, + "1991": 0.549, + "1992": 0.545, + "1993": 0.548, + "1994": 0.552, + "1995": 0.555, + "1996": 0.561, + "1997": 0.576, + "1998": 0.591, + "1999": 0.599, + "2000": 0.613, + "2001": 0.632, + "2002": 0.648, + "2003": 0.666, + "2004": 0.657, + "2005": 0.639, + "2006": 0.633, + "2007": 0.628, + "2008": 0.628, + "2009": 0.636, + "2010": 0.643, + "2011": 0.652, + "2012": 0.661, + "2013": 0.658, + "2014": 0.663, + "2015": 0.666, + "2016": 0.674, + "2017": 0.683, + "2018": 0.682, + "2019": 0.687, + "2020": 0.687, + "2021": 0.687 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "National", + "GDLCODE": "UZBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.635, + "2001": 0.644, + "2002": 0.653, + "2003": 0.661, + "2004": 0.664, + "2005": 0.669, + "2006": 0.671, + "2007": 0.676, + "2008": 0.675, + "2009": 0.68, + "2010": 0.684, + "2011": 0.688, + "2012": 0.696, + "2013": 0.7, + "2014": 0.703, + "2015": 0.705, + "2016": 0.719, + "2017": 0.726, + "2018": 0.733, + "2019": 0.743, + "2020": 0.743, + "2021": 0.743 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr102", + "Region": "Central (Navoi, Bukhara, Samarkand)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.634, + "2001": 0.642, + "2002": 0.65, + "2003": 0.658, + "2004": 0.66, + "2005": 0.664, + "2006": 0.665, + "2007": 0.67, + "2008": 0.669, + "2009": 0.674, + "2010": 0.679, + "2011": 0.682, + "2012": 0.69, + "2013": 0.694, + "2014": 0.698, + "2015": 0.699, + "2016": 0.714, + "2017": 0.72, + "2018": 0.727, + "2019": 0.737, + "2020": 0.737, + "2021": 0.737 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr104", + "Region": "Central-East (Dzhizak, Syrdarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.63, + "2001": 0.64, + "2002": 0.649, + "2003": 0.659, + "2004": 0.664, + "2005": 0.669, + "2006": 0.672, + "2007": 0.677, + "2008": 0.676, + "2009": 0.681, + "2010": 0.685, + "2011": 0.689, + "2012": 0.697, + "2013": 0.701, + "2014": 0.704, + "2015": 0.706, + "2016": 0.72, + "2017": 0.727, + "2018": 0.734, + "2019": 0.744, + "2020": 0.744, + "2021": 0.744 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr105", + "Region": "East (Namangan, Fergana, Andizhan)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.621, + "2001": 0.631, + "2002": 0.641, + "2003": 0.651, + "2004": 0.655, + "2005": 0.662, + "2006": 0.665, + "2007": 0.669, + "2008": 0.668, + "2009": 0.673, + "2010": 0.678, + "2011": 0.681, + "2012": 0.689, + "2013": 0.693, + "2014": 0.696, + "2015": 0.698, + "2016": 0.712, + "2017": 0.718, + "2018": 0.726, + "2019": 0.736, + "2020": 0.736, + "2021": 0.736 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr103", + "Region": "South (Kashkadarya, Surkhandarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.641, + "2001": 0.647, + "2002": 0.653, + "2003": 0.66, + "2004": 0.66, + "2005": 0.663, + "2006": 0.662, + "2007": 0.667, + "2008": 0.666, + "2009": 0.671, + "2010": 0.675, + "2011": 0.679, + "2012": 0.686, + "2013": 0.69, + "2014": 0.694, + "2015": 0.696, + "2016": 0.71, + "2017": 0.716, + "2018": 0.723, + "2019": 0.733, + "2020": 0.733, + "2021": 0.733 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr106", + "Region": "Tashkent", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.669, + "2001": 0.684, + "2002": 0.699, + "2003": 0.714, + "2004": 0.723, + "2005": 0.734, + "2006": 0.741, + "2007": 0.746, + "2008": 0.745, + "2009": 0.751, + "2010": 0.756, + "2011": 0.76, + "2012": 0.768, + "2013": 0.773, + "2014": 0.777, + "2015": 0.779, + "2016": 0.795, + "2017": 0.801, + "2018": 0.809, + "2019": 0.821, + "2020": 0.821, + "2021": 0.821 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr101", + "Region": "West (Karakalpakstan, Khorezm)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.639, + "2001": 0.647, + "2002": 0.655, + "2003": 0.663, + "2004": 0.666, + "2005": 0.67, + "2006": 0.672, + "2007": 0.677, + "2008": 0.676, + "2009": 0.681, + "2010": 0.685, + "2011": 0.689, + "2012": 0.696, + "2013": 0.7, + "2014": 0.704, + "2015": 0.706, + "2016": 0.72, + "2017": 0.727, + "2018": 0.734, + "2019": 0.744, + "2020": 0.744, + "2021": 0.744 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "National", + "GDLCODE": "VUTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.513, + "2006": 0.516, + "2007": 0.519, + "2008": 0.521, + "2009": 0.525, + "2010": 0.528, + "2011": 0.531, + "2012": 0.533, + "2013": 0.536, + "2014": 0.538, + "2015": 0.54, + "2016": 0.538, + "2017": 0.542, + "2018": 0.547, + "2019": 0.556, + "2020": 0.556, + "2021": 0.556 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr108", + "Region": "Luganville", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.646, + "2006": 0.65, + "2007": 0.654, + "2008": 0.656, + "2009": 0.661, + "2010": 0.665, + "2011": 0.669, + "2012": 0.672, + "2013": 0.676, + "2014": 0.678, + "2015": 0.68, + "2016": 0.678, + "2017": 0.684, + "2018": 0.689, + "2019": 0.7, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr103", + "Region": "Malampa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.515, + "2006": 0.518, + "2007": 0.521, + "2008": 0.523, + "2009": 0.527, + "2010": 0.53, + "2011": 0.533, + "2012": 0.536, + "2013": 0.538, + "2014": 0.54, + "2015": 0.542, + "2016": 0.54, + "2017": 0.545, + "2018": 0.549, + "2019": 0.558, + "2020": 0.558, + "2021": 0.558 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr104", + "Region": "Penama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.435, + "2006": 0.437, + "2007": 0.44, + "2008": 0.441, + "2009": 0.445, + "2010": 0.447, + "2011": 0.45, + "2012": 0.452, + "2013": 0.455, + "2014": 0.456, + "2015": 0.458, + "2016": 0.456, + "2017": 0.46, + "2018": 0.463, + "2019": 0.471, + "2020": 0.471, + "2021": 0.471 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr107", + "Region": "Port Vila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.649, + "2006": 0.652, + "2007": 0.656, + "2008": 0.658, + "2009": 0.664, + "2010": 0.667, + "2011": 0.671, + "2012": 0.675, + "2013": 0.678, + "2014": 0.68, + "2015": 0.682, + "2016": 0.679, + "2017": 0.685, + "2018": 0.691, + "2019": 0.703, + "2020": 0.703, + "2021": 0.703 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr105", + "Region": "Sanma", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.465, + "2006": 0.468, + "2007": 0.47, + "2008": 0.472, + "2009": 0.476, + "2010": 0.478, + "2011": 0.481, + "2012": 0.484, + "2013": 0.486, + "2014": 0.488, + "2015": 0.489, + "2016": 0.487, + "2017": 0.491, + "2018": 0.496, + "2019": 0.504, + "2020": 0.504, + "2021": 0.504 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr102", + "Region": "Shefa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.469, + "2006": 0.471, + "2007": 0.474, + "2008": 0.476, + "2009": 0.479, + "2010": 0.482, + "2011": 0.485, + "2012": 0.487, + "2013": 0.49, + "2014": 0.491, + "2015": 0.493, + "2016": 0.49, + "2017": 0.495, + "2018": 0.499, + "2019": 0.508, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr101", + "Region": "Tafea", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.447, + "2006": 0.45, + "2007": 0.452, + "2008": 0.454, + "2009": 0.457, + "2010": 0.46, + "2011": 0.463, + "2012": 0.465, + "2013": 0.468, + "2014": 0.469, + "2015": 0.471, + "2016": 0.47, + "2017": 0.474, + "2018": 0.477, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr106", + "Region": "Torba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.45, + "2006": 0.452, + "2007": 0.455, + "2008": 0.457, + "2009": 0.46, + "2010": 0.463, + "2011": 0.465, + "2012": 0.468, + "2013": 0.47, + "2014": 0.472, + "2015": 0.473, + "2016": 0.472, + "2017": 0.476, + "2018": 0.48, + "2019": 0.487, + "2020": 0.487, + "2021": 0.487 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "National", + "GDLCODE": "VENt", + "Region": "Total", + "1990": 0.469, + "1991": 0.481, + "1992": 0.49, + "1993": 0.493, + "1994": 0.497, + "1995": 0.5, + "1996": 0.504, + "1997": 0.507, + "1998": 0.51, + "1999": 0.514, + "2000": 0.517, + "2001": 0.539, + "2002": 0.56, + "2003": 0.565, + "2004": 0.575, + "2005": 0.595, + "2006": 0.615, + "2007": 0.647, + "2008": 0.667, + "2009": 0.673, + "2010": 0.668, + "2011": 0.684, + "2012": 0.692, + "2013": 0.708, + "2014": 0.709, + "2015": 0.71, + "2016": 0.721, + "2017": 0.708, + "2018": 0.717, + "2019": 0.726, + "2020": 0.726, + "2021": 0.726 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr110", + "Region": "Amacuros Delta Federal Territory", + "1990": 0.46, + "1991": 0.472, + "1992": 0.48, + "1993": 0.484, + "1994": 0.487, + "1995": 0.49, + "1996": 0.494, + "1997": 0.497, + "1998": 0.5, + "1999": 0.504, + "2000": 0.507, + "2001": 0.528, + "2002": 0.549, + "2003": 0.554, + "2004": 0.564, + "2005": 0.584, + "2006": 0.603, + "2007": 0.634, + "2008": 0.654, + "2009": 0.66, + "2010": 0.655, + "2011": 0.67, + "2012": 0.678, + "2013": 0.694, + "2014": 0.695, + "2015": 0.695, + "2016": 0.707, + "2017": 0.694, + "2018": 0.702, + "2019": 0.711, + "2020": 0.711, + "2021": 0.711 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr102", + "Region": "Amazonas Federal Territory", + "1990": 0.485, + "1991": 0.497, + "1992": 0.506, + "1993": 0.509, + "1994": 0.513, + "1995": 0.516, + "1996": 0.52, + "1997": 0.524, + "1998": 0.527, + "1999": 0.531, + "2000": 0.534, + "2001": 0.556, + "2002": 0.578, + "2003": 0.583, + "2004": 0.594, + "2005": 0.615, + "2006": 0.635, + "2007": 0.668, + "2008": 0.689, + "2009": 0.695, + "2010": 0.69, + "2011": 0.706, + "2012": 0.714, + "2013": 0.731, + "2014": 0.733, + "2015": 0.733, + "2016": 0.745, + "2017": 0.732, + "2018": 0.741, + "2019": 0.75, + "2020": 0.75, + "2021": 0.75 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr103", + "Region": "Anzoategui", + "1990": 0.476, + "1991": 0.489, + "1992": 0.497, + "1993": 0.501, + "1994": 0.504, + "1995": 0.508, + "1996": 0.512, + "1997": 0.515, + "1998": 0.519, + "1999": 0.523, + "2000": 0.526, + "2001": 0.548, + "2002": 0.569, + "2003": 0.574, + "2004": 0.585, + "2005": 0.605, + "2006": 0.625, + "2007": 0.657, + "2008": 0.678, + "2009": 0.684, + "2010": 0.68, + "2011": 0.696, + "2012": 0.704, + "2013": 0.72, + "2014": 0.722, + "2015": 0.722, + "2016": 0.735, + "2017": 0.723, + "2018": 0.732, + "2019": 0.741, + "2020": 0.741, + "2021": 0.741 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr104", + "Region": "Apure", + "1990": 0.396, + "1991": 0.406, + "1992": 0.413, + "1993": 0.415, + "1994": 0.418, + "1995": 0.421, + "1996": 0.423, + "1997": 0.426, + "1998": 0.428, + "1999": 0.431, + "2000": 0.433, + "2001": 0.452, + "2002": 0.47, + "2003": 0.474, + "2004": 0.483, + "2005": 0.5, + "2006": 0.517, + "2007": 0.543, + "2008": 0.561, + "2009": 0.565, + "2010": 0.56, + "2011": 0.572, + "2012": 0.578, + "2013": 0.592, + "2014": 0.593, + "2015": 0.593, + "2016": 0.601, + "2017": 0.588, + "2018": 0.595, + "2019": 0.602, + "2020": 0.602, + "2021": 0.602 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr105", + "Region": "Aragua", + "1990": 0.493, + "1991": 0.506, + "1992": 0.514, + "1993": 0.518, + "1994": 0.522, + "1995": 0.526, + "1996": 0.529, + "1997": 0.533, + "1998": 0.537, + "1999": 0.54, + "2000": 0.544, + "2001": 0.566, + "2002": 0.588, + "2003": 0.594, + "2004": 0.605, + "2005": 0.626, + "2006": 0.647, + "2007": 0.68, + "2008": 0.701, + "2009": 0.707, + "2010": 0.703, + "2011": 0.72, + "2012": 0.728, + "2013": 0.744, + "2014": 0.746, + "2015": 0.747, + "2016": 0.76, + "2017": 0.746, + "2018": 0.756, + "2019": 0.766, + "2020": 0.766, + "2021": 0.766 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr106", + "Region": "Barinas", + "1990": 0.409, + "1991": 0.42, + "1992": 0.427, + "1993": 0.429, + "1994": 0.432, + "1995": 0.435, + "1996": 0.437, + "1997": 0.44, + "1998": 0.442, + "1999": 0.445, + "2000": 0.448, + "2001": 0.467, + "2002": 0.486, + "2003": 0.49, + "2004": 0.499, + "2005": 0.517, + "2006": 0.534, + "2007": 0.561, + "2008": 0.579, + "2009": 0.584, + "2010": 0.578, + "2011": 0.591, + "2012": 0.597, + "2013": 0.611, + "2014": 0.613, + "2015": 0.612, + "2016": 0.62, + "2017": 0.608, + "2018": 0.615, + "2019": 0.622, + "2020": 0.622, + "2021": 0.622 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr107", + "Region": "Bolivar", + "1990": 0.476, + "1991": 0.489, + "1992": 0.497, + "1993": 0.501, + "1994": 0.505, + "1995": 0.508, + "1996": 0.512, + "1997": 0.516, + "1998": 0.52, + "1999": 0.523, + "2000": 0.527, + "2001": 0.548, + "2002": 0.57, + "2003": 0.575, + "2004": 0.586, + "2005": 0.606, + "2006": 0.626, + "2007": 0.658, + "2008": 0.679, + "2009": 0.684, + "2010": 0.681, + "2011": 0.698, + "2012": 0.706, + "2013": 0.722, + "2014": 0.724, + "2015": 0.724, + "2016": 0.738, + "2017": 0.726, + "2018": 0.735, + "2019": 0.745, + "2020": 0.745, + "2021": 0.745 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr108", + "Region": "Carabobo", + "1990": 0.489, + "1991": 0.501, + "1992": 0.51, + "1993": 0.514, + "1994": 0.518, + "1995": 0.522, + "1996": 0.525, + "1997": 0.529, + "1998": 0.533, + "1999": 0.537, + "2000": 0.541, + "2001": 0.562, + "2002": 0.584, + "2003": 0.59, + "2004": 0.601, + "2005": 0.621, + "2006": 0.642, + "2007": 0.675, + "2008": 0.696, + "2009": 0.702, + "2010": 0.698, + "2011": 0.715, + "2012": 0.723, + "2013": 0.74, + "2014": 0.742, + "2015": 0.742, + "2016": 0.756, + "2017": 0.743, + "2018": 0.753, + "2019": 0.763, + "2020": 0.763, + "2021": 0.763 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr109", + "Region": "Cojedes", + "1990": 0.453, + "1991": 0.464, + "1992": 0.472, + "1993": 0.476, + "1994": 0.479, + "1995": 0.482, + "1996": 0.485, + "1997": 0.488, + "1998": 0.491, + "1999": 0.494, + "2000": 0.497, + "2001": 0.518, + "2002": 0.539, + "2003": 0.543, + "2004": 0.553, + "2005": 0.573, + "2006": 0.592, + "2007": 0.622, + "2008": 0.642, + "2009": 0.648, + "2010": 0.642, + "2011": 0.656, + "2012": 0.664, + "2013": 0.679, + "2014": 0.681, + "2015": 0.68, + "2016": 0.691, + "2017": 0.677, + "2018": 0.685, + "2019": 0.693, + "2020": 0.693, + "2021": 0.693 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr111", + "Region": "Falcon", + "1990": 0.457, + "1991": 0.469, + "1992": 0.477, + "1993": 0.48, + "1994": 0.483, + "1995": 0.486, + "1996": 0.49, + "1997": 0.493, + "1998": 0.496, + "1999": 0.499, + "2000": 0.502, + "2001": 0.523, + "2002": 0.544, + "2003": 0.549, + "2004": 0.559, + "2005": 0.579, + "2006": 0.598, + "2007": 0.629, + "2008": 0.649, + "2009": 0.654, + "2010": 0.649, + "2011": 0.664, + "2012": 0.671, + "2013": 0.687, + "2014": 0.688, + "2015": 0.688, + "2016": 0.699, + "2017": 0.685, + "2018": 0.693, + "2019": 0.702, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr101", + "Region": "Federal District", + "1990": 0.521, + "1991": 0.535, + "1992": 0.544, + "1993": 0.548, + "1994": 0.552, + "1995": 0.556, + "1996": 0.56, + "1997": 0.564, + "1998": 0.568, + "1999": 0.573, + "2000": 0.577, + "2001": 0.6, + "2002": 0.623, + "2003": 0.629, + "2004": 0.641, + "2005": 0.663, + "2006": 0.685, + "2007": 0.72, + "2008": 0.742, + "2009": 0.749, + "2010": 0.745, + "2011": 0.763, + "2012": 0.772, + "2013": 0.789, + "2014": 0.792, + "2015": 0.792, + "2016": 0.807, + "2017": 0.793, + "2018": 0.804, + "2019": 0.814, + "2020": 0.814, + "2021": 0.814 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr112", + "Region": "Guarico", + "1990": 0.43, + "1991": 0.441, + "1992": 0.449, + "1993": 0.451, + "1994": 0.454, + "1995": 0.457, + "1996": 0.46, + "1997": 0.462, + "1998": 0.465, + "1999": 0.468, + "2000": 0.471, + "2001": 0.491, + "2002": 0.511, + "2003": 0.515, + "2004": 0.524, + "2005": 0.543, + "2006": 0.562, + "2007": 0.59, + "2008": 0.609, + "2009": 0.614, + "2010": 0.608, + "2011": 0.621, + "2012": 0.628, + "2013": 0.643, + "2014": 0.644, + "2015": 0.644, + "2016": 0.653, + "2017": 0.639, + "2018": 0.647, + "2019": 0.654, + "2020": 0.654, + "2021": 0.654 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr113", + "Region": "Lara", + "1990": 0.454, + "1991": 0.465, + "1992": 0.473, + "1993": 0.477, + "1994": 0.48, + "1995": 0.483, + "1996": 0.486, + "1997": 0.489, + "1998": 0.492, + "1999": 0.495, + "2000": 0.498, + "2001": 0.519, + "2002": 0.54, + "2003": 0.545, + "2004": 0.555, + "2005": 0.574, + "2006": 0.594, + "2007": 0.624, + "2008": 0.644, + "2009": 0.649, + "2010": 0.644, + "2011": 0.658, + "2012": 0.666, + "2013": 0.681, + "2014": 0.683, + "2015": 0.682, + "2016": 0.693, + "2017": 0.679, + "2018": 0.688, + "2019": 0.696, + "2020": 0.696, + "2021": 0.696 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr114", + "Region": "Merida", + "1990": 0.461, + "1991": 0.473, + "1992": 0.481, + "1993": 0.484, + "1994": 0.487, + "1995": 0.49, + "1996": 0.493, + "1997": 0.496, + "1998": 0.499, + "1999": 0.502, + "2000": 0.505, + "2001": 0.526, + "2002": 0.547, + "2003": 0.552, + "2004": 0.562, + "2005": 0.582, + "2006": 0.603, + "2007": 0.633, + "2008": 0.653, + "2009": 0.659, + "2010": 0.652, + "2011": 0.666, + "2012": 0.673, + "2013": 0.689, + "2014": 0.691, + "2015": 0.69, + "2016": 0.699, + "2017": 0.684, + "2018": 0.692, + "2019": 0.7, + "2020": 0.7, + "2021": 0.7 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr115", + "Region": "Miranda", + "1990": 0.503, + "1991": 0.517, + "1992": 0.526, + "1993": 0.53, + "1994": 0.534, + "1995": 0.538, + "1996": 0.542, + "1997": 0.546, + "1998": 0.55, + "1999": 0.554, + "2000": 0.558, + "2001": 0.58, + "2002": 0.602, + "2003": 0.608, + "2004": 0.619, + "2005": 0.641, + "2006": 0.662, + "2007": 0.696, + "2008": 0.718, + "2009": 0.724, + "2010": 0.72, + "2011": 0.738, + "2012": 0.746, + "2013": 0.763, + "2014": 0.766, + "2015": 0.766, + "2016": 0.78, + "2017": 0.768, + "2018": 0.778, + "2019": 0.788, + "2020": 0.788, + "2021": 0.788 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr116", + "Region": "Monagas", + "1990": 0.463, + "1991": 0.475, + "1992": 0.483, + "1993": 0.487, + "1994": 0.49, + "1995": 0.493, + "1996": 0.497, + "1997": 0.5, + "1998": 0.504, + "1999": 0.507, + "2000": 0.51, + "2001": 0.531, + "2002": 0.552, + "2003": 0.557, + "2004": 0.568, + "2005": 0.587, + "2006": 0.607, + "2007": 0.638, + "2008": 0.658, + "2009": 0.664, + "2010": 0.659, + "2011": 0.675, + "2012": 0.683, + "2013": 0.698, + "2014": 0.7, + "2015": 0.7, + "2016": 0.712, + "2017": 0.699, + "2018": 0.708, + "2019": 0.717, + "2020": 0.717, + "2021": 0.717 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr117", + "Region": "Nueva Esparta", + "1990": 0.483, + "1991": 0.495, + "1992": 0.504, + "1993": 0.508, + "1994": 0.512, + "1995": 0.515, + "1996": 0.519, + "1997": 0.523, + "1998": 0.527, + "1999": 0.53, + "2000": 0.534, + "2001": 0.556, + "2002": 0.577, + "2003": 0.583, + "2004": 0.593, + "2005": 0.614, + "2006": 0.634, + "2007": 0.667, + "2008": 0.688, + "2009": 0.694, + "2010": 0.69, + "2011": 0.707, + "2012": 0.715, + "2013": 0.731, + "2014": 0.733, + "2015": 0.733, + "2016": 0.747, + "2017": 0.734, + "2018": 0.744, + "2019": 0.753, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr118", + "Region": "Portuguesa", + "1990": 0.416, + "1991": 0.427, + "1992": 0.434, + "1993": 0.437, + "1994": 0.44, + "1995": 0.443, + "1996": 0.445, + "1997": 0.448, + "1998": 0.451, + "1999": 0.454, + "2000": 0.456, + "2001": 0.475, + "2002": 0.495, + "2003": 0.499, + "2004": 0.508, + "2005": 0.526, + "2006": 0.544, + "2007": 0.572, + "2008": 0.59, + "2009": 0.595, + "2010": 0.589, + "2011": 0.602, + "2012": 0.609, + "2013": 0.623, + "2014": 0.625, + "2015": 0.624, + "2016": 0.633, + "2017": 0.62, + "2018": 0.627, + "2019": 0.635, + "2020": 0.635, + "2021": 0.635 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr119", + "Region": "Sucre", + "1990": 0.44, + "1991": 0.452, + "1992": 0.459, + "1993": 0.462, + "1994": 0.465, + "1995": 0.467, + "1996": 0.47, + "1997": 0.473, + "1998": 0.475, + "1999": 0.478, + "2000": 0.481, + "2001": 0.501, + "2002": 0.522, + "2003": 0.526, + "2004": 0.536, + "2005": 0.555, + "2006": 0.574, + "2007": 0.603, + "2008": 0.623, + "2009": 0.628, + "2010": 0.621, + "2011": 0.634, + "2012": 0.641, + "2013": 0.656, + "2014": 0.657, + "2015": 0.657, + "2016": 0.665, + "2017": 0.65, + "2018": 0.658, + "2019": 0.665, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr120", + "Region": "Tachira", + "1990": 0.459, + "1991": 0.471, + "1992": 0.479, + "1993": 0.483, + "1994": 0.486, + "1995": 0.489, + "1996": 0.492, + "1997": 0.495, + "1998": 0.498, + "1999": 0.501, + "2000": 0.504, + "2001": 0.525, + "2002": 0.546, + "2003": 0.551, + "2004": 0.561, + "2005": 0.581, + "2006": 0.601, + "2007": 0.631, + "2008": 0.652, + "2009": 0.657, + "2010": 0.651, + "2011": 0.665, + "2012": 0.673, + "2013": 0.689, + "2014": 0.69, + "2015": 0.69, + "2016": 0.7, + "2017": 0.686, + "2018": 0.694, + "2019": 0.702, + "2020": 0.702, + "2021": 0.702 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr121", + "Region": "Trujillo", + "1990": 0.436, + "1991": 0.447, + "1992": 0.455, + "1993": 0.458, + "1994": 0.46, + "1995": 0.463, + "1996": 0.465, + "1997": 0.468, + "1998": 0.471, + "1999": 0.473, + "2000": 0.476, + "2001": 0.496, + "2002": 0.517, + "2003": 0.521, + "2004": 0.531, + "2005": 0.55, + "2006": 0.569, + "2007": 0.597, + "2008": 0.617, + "2009": 0.622, + "2010": 0.615, + "2011": 0.628, + "2012": 0.635, + "2013": 0.65, + "2014": 0.651, + "2015": 0.651, + "2016": 0.659, + "2017": 0.644, + "2018": 0.652, + "2019": 0.659, + "2020": 0.659, + "2021": 0.659 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr124", + "Region": "Vargas", + "1990": 0.476, + "1991": 0.488, + "1992": 0.497, + "1993": 0.5, + "1994": 0.504, + "1995": 0.508, + "1996": 0.511, + "1997": 0.515, + "1998": 0.519, + "1999": 0.522, + "2000": 0.526, + "2001": 0.547, + "2002": 0.569, + "2003": 0.574, + "2004": 0.585, + "2005": 0.605, + "2006": 0.625, + "2007": 0.657, + "2008": 0.678, + "2009": 0.683, + "2010": 0.68, + "2011": 0.696, + "2012": 0.704, + "2013": 0.72, + "2014": 0.722, + "2015": 0.722, + "2016": 0.735, + "2017": 0.723, + "2018": 0.732, + "2019": 0.742, + "2020": 0.742, + "2021": 0.742 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr122", + "Region": "Yaracuy", + "1990": 0.437, + "1991": 0.448, + "1992": 0.456, + "1993": 0.459, + "1994": 0.462, + "1995": 0.464, + "1996": 0.467, + "1997": 0.47, + "1998": 0.473, + "1999": 0.476, + "2000": 0.479, + "2001": 0.499, + "2002": 0.519, + "2003": 0.524, + "2004": 0.533, + "2005": 0.552, + "2006": 0.571, + "2007": 0.6, + "2008": 0.619, + "2009": 0.624, + "2010": 0.619, + "2011": 0.633, + "2012": 0.64, + "2013": 0.655, + "2014": 0.656, + "2015": 0.656, + "2016": 0.665, + "2017": 0.652, + "2018": 0.659, + "2019": 0.667, + "2020": 0.667, + "2021": 0.667 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr123", + "Region": "Zulia", + "1990": 0.456, + "1991": 0.468, + "1992": 0.476, + "1993": 0.479, + "1994": 0.483, + "1995": 0.486, + "1996": 0.489, + "1997": 0.493, + "1998": 0.496, + "1999": 0.499, + "2000": 0.503, + "2001": 0.523, + "2002": 0.544, + "2003": 0.549, + "2004": 0.559, + "2005": 0.578, + "2006": 0.598, + "2007": 0.628, + "2008": 0.648, + "2009": 0.654, + "2010": 0.649, + "2011": 0.664, + "2012": 0.672, + "2013": 0.687, + "2014": 0.689, + "2015": 0.689, + "2016": 0.701, + "2017": 0.688, + "2018": 0.696, + "2019": 0.705, + "2020": 0.705, + "2021": 0.705 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "National", + "GDLCODE": "VNMt", + "Region": "Total", + "1990": 0.355, + "1991": 0.368, + "1992": 0.381, + "1993": 0.394, + "1994": 0.407, + "1995": 0.421, + "1996": 0.435, + "1997": 0.449, + "1998": 0.464, + "1999": 0.479, + "2000": 0.494, + "2001": 0.511, + "2002": 0.527, + "2003": 0.539, + "2004": 0.55, + "2005": 0.561, + "2006": 0.572, + "2007": 0.58, + "2008": 0.589, + "2009": 0.597, + "2010": 0.601, + "2011": 0.605, + "2012": 0.609, + "2013": 0.614, + "2014": 0.618, + "2015": 0.622, + "2016": 0.626, + "2017": 0.63, + "2018": 0.635, + "2019": 0.639, + "2020": 0.639, + "2021": 0.639 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr104", + "Region": "Central Highlands", + "1990": 0.331, + "1991": 0.344, + "1992": 0.356, + "1993": 0.368, + "1994": 0.381, + "1995": 0.393, + "1996": 0.406, + "1997": 0.42, + "1998": 0.429, + "1999": 0.438, + "2000": 0.448, + "2001": 0.458, + "2002": 0.468, + "2003": 0.487, + "2004": 0.506, + "2005": 0.525, + "2006": 0.544, + "2007": 0.547, + "2008": 0.549, + "2009": 0.551, + "2010": 0.55, + "2011": 0.545, + "2012": 0.54, + "2013": 0.536, + "2014": 0.531, + "2015": 0.539, + "2016": 0.546, + "2017": 0.554, + "2018": 0.561, + "2019": 0.569, + "2020": 0.573, + "2021": 0.576 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr106", + "Region": "Mekong River Delta", + "1990": 0.298, + "1991": 0.309, + "1992": 0.32, + "1993": 0.331, + "1994": 0.343, + "1995": 0.354, + "1996": 0.366, + "1997": 0.378, + "1998": 0.39, + "1999": 0.402, + "2000": 0.415, + "2001": 0.428, + "2002": 0.442, + "2003": 0.452, + "2004": 0.462, + "2005": 0.472, + "2006": 0.482, + "2007": 0.492, + "2008": 0.502, + "2009": 0.512, + "2010": 0.518, + "2011": 0.521, + "2012": 0.524, + "2013": 0.528, + "2014": 0.531, + "2015": 0.533, + "2016": 0.536, + "2017": 0.539, + "2018": 0.542, + "2019": 0.545, + "2020": 0.544, + "2021": 0.543 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr103", + "Region": "North Central Coast and South Central Coast", + "1990": 0.36, + "1991": 0.373, + "1992": 0.387, + "1993": 0.4, + "1994": 0.414, + "1995": 0.427, + "1996": 0.442, + "1997": 0.456, + "1998": 0.472, + "1999": 0.49, + "2000": 0.507, + "2001": 0.525, + "2002": 0.544, + "2003": 0.556, + "2004": 0.568, + "2005": 0.58, + "2006": 0.592, + "2007": 0.595, + "2008": 0.598, + "2009": 0.601, + "2010": 0.6, + "2011": 0.606, + "2012": 0.612, + "2013": 0.618, + "2014": 0.624, + "2015": 0.629, + "2016": 0.633, + "2017": 0.638, + "2018": 0.642, + "2019": 0.647, + "2020": 0.647, + "2021": 0.647 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr102", + "Region": "North East, North West", + "1990": 0.335, + "1991": 0.348, + "1992": 0.36, + "1993": 0.373, + "1994": 0.385, + "1995": 0.398, + "1996": 0.412, + "1997": 0.425, + "1998": 0.439, + "1999": 0.453, + "2000": 0.468, + "2001": 0.483, + "2002": 0.499, + "2003": 0.505, + "2004": 0.511, + "2005": 0.517, + "2006": 0.523, + "2007": 0.537, + "2008": 0.551, + "2009": 0.565, + "2010": 0.575, + "2011": 0.574, + "2012": 0.574, + "2013": 0.573, + "2014": 0.573, + "2015": 0.576, + "2016": 0.579, + "2017": 0.582, + "2018": 0.585, + "2019": 0.588, + "2020": 0.587, + "2021": 0.586 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr101", + "Region": "Red River Delta", + "1990": 0.398, + "1991": 0.412, + "1992": 0.427, + "1993": 0.442, + "1994": 0.457, + "1995": 0.472, + "1996": 0.488, + "1997": 0.504, + "1998": 0.52, + "1999": 0.537, + "2000": 0.554, + "2001": 0.573, + "2002": 0.592, + "2003": 0.605, + "2004": 0.619, + "2005": 0.632, + "2006": 0.645, + "2007": 0.657, + "2008": 0.668, + "2009": 0.68, + "2010": 0.686, + "2011": 0.692, + "2012": 0.698, + "2013": 0.704, + "2014": 0.71, + "2015": 0.711, + "2016": 0.713, + "2017": 0.715, + "2018": 0.717, + "2019": 0.719, + "2020": 0.716, + "2021": 0.713 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr105", + "Region": "South East", + "1990": 0.383, + "1991": 0.397, + "1992": 0.411, + "1993": 0.426, + "1994": 0.44, + "1995": 0.454, + "1996": 0.47, + "1997": 0.485, + "1998": 0.497, + "1999": 0.51, + "2000": 0.524, + "2001": 0.538, + "2002": 0.553, + "2003": 0.567, + "2004": 0.581, + "2005": 0.596, + "2006": 0.61, + "2007": 0.616, + "2008": 0.623, + "2009": 0.63, + "2010": 0.632, + "2011": 0.635, + "2012": 0.639, + "2013": 0.643, + "2014": 0.646, + "2015": 0.65, + "2016": 0.654, + "2017": 0.657, + "2018": 0.661, + "2019": 0.664, + "2020": 0.663, + "2021": 0.662 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "National", + "GDLCODE": "YEMt", + "Region": "Total", + "1990": 0.189, + "1991": 0.195, + "1992": 0.202, + "1993": 0.208, + "1994": 0.215, + "1995": 0.222, + "1996": 0.23, + "1997": 0.238, + "1998": 0.246, + "1999": 0.255, + "2000": 0.263, + "2001": 0.273, + "2002": 0.282, + "2003": 0.292, + "2004": 0.301, + "2005": 0.307, + "2006": 0.309, + "2007": 0.312, + "2008": 0.314, + "2009": 0.322, + "2010": 0.329, + "2011": 0.346, + "2012": 0.353, + "2013": 0.353, + "2014": 0.353, + "2015": 0.353, + "2016": 0.353, + "2017": 0.353, + "2018": 0.359, + "2019": 0.359, + "2020": 0.359, + "2021": 0.359 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr102", + "Region": "Abyan, Aden (town and countryside), Lahej, Ad Dali (Al Dhalih)", + "1990": 0.221, + "1991": 0.23, + "1992": 0.239, + "1993": 0.248, + "1994": 0.258, + "1995": 0.267, + "1996": 0.279, + "1997": 0.291, + "1998": 0.303, + "1999": 0.314, + "2000": 0.326, + "2001": 0.339, + "2002": 0.352, + "2003": 0.366, + "2004": 0.378, + "2005": 0.386, + "2006": 0.391, + "2007": 0.39, + "2008": 0.388, + "2009": 0.393, + "2010": 0.397, + "2011": 0.413, + "2012": 0.416, + "2013": 0.411, + "2014": 0.411, + "2015": 0.411, + "2016": 0.411, + "2017": 0.411, + "2018": 0.42, + "2019": 0.42, + "2020": 0.42, + "2021": 0.42 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr104", + "Region": "Beida (Al Bayda), Dhamar, Raimah", + "1990": 0.17, + "1991": 0.175, + "1992": 0.18, + "1993": 0.186, + "1994": 0.191, + "1995": 0.197, + "1996": 0.203, + "1997": 0.21, + "1998": 0.214, + "1999": 0.217, + "2000": 0.221, + "2001": 0.225, + "2002": 0.23, + "2003": 0.234, + "2004": 0.238, + "2005": 0.238, + "2006": 0.237, + "2007": 0.242, + "2008": 0.247, + "2009": 0.256, + "2010": 0.265, + "2011": 0.282, + "2012": 0.29, + "2013": 0.294, + "2014": 0.294, + "2015": 0.294, + "2016": 0.294, + "2017": 0.294, + "2018": 0.299, + "2019": 0.299, + "2020": 0.299, + "2021": 0.299 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr107", + "Region": "Hajja, Sada, Amran (Omran)", + "1990": 0.142, + "1991": 0.147, + "1992": 0.152, + "1993": 0.156, + "1994": 0.161, + "1995": 0.166, + "1996": 0.171, + "1997": 0.177, + "1998": 0.185, + "1999": 0.194, + "2000": 0.202, + "2001": 0.212, + "2002": 0.221, + "2003": 0.23, + "2004": 0.239, + "2005": 0.245, + "2006": 0.249, + "2007": 0.25, + "2008": 0.25, + "2009": 0.255, + "2010": 0.26, + "2011": 0.273, + "2012": 0.277, + "2013": 0.277, + "2014": 0.277, + "2015": 0.277, + "2016": 0.277, + "2017": 0.277, + "2018": 0.281, + "2019": 0.281, + "2020": 0.281, + "2021": 0.281 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr108", + "Region": "Hodeida (Al Hudaydah), Mahweit (Al Mahwit)", + "1990": 0.157, + "1991": 0.162, + "1992": 0.167, + "1993": 0.172, + "1994": 0.177, + "1995": 0.182, + "1996": 0.188, + "1997": 0.194, + "1998": 0.2, + "1999": 0.206, + "2000": 0.212, + "2001": 0.219, + "2002": 0.226, + "2003": 0.232, + "2004": 0.239, + "2005": 0.242, + "2006": 0.243, + "2007": 0.248, + "2008": 0.253, + "2009": 0.261, + "2010": 0.269, + "2011": 0.286, + "2012": 0.294, + "2013": 0.297, + "2014": 0.297, + "2015": 0.297, + "2016": 0.297, + "2017": 0.297, + "2018": 0.302, + "2019": 0.302, + "2020": 0.302, + "2021": 0.302 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr101", + "Region": "Ibb", + "1990": 0.176, + "1991": 0.182, + "1992": 0.187, + "1993": 0.192, + "1994": 0.198, + "1995": 0.203, + "1996": 0.209, + "1997": 0.216, + "1998": 0.228, + "1999": 0.241, + "2000": 0.254, + "2001": 0.268, + "2002": 0.282, + "2003": 0.297, + "2004": 0.311, + "2005": 0.321, + "2006": 0.328, + "2007": 0.326, + "2008": 0.324, + "2009": 0.328, + "2010": 0.331, + "2011": 0.345, + "2012": 0.347, + "2013": 0.344, + "2014": 0.344, + "2015": 0.344, + "2016": 0.344, + "2017": 0.344, + "2018": 0.349, + "2019": 0.349, + "2020": 0.349, + "2021": 0.349 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr106", + "Region": "Jawf, Hadramet, Shabda (Shabwah), Marib, Mohra (Al Mahrah)", + "1990": 0.191, + "1991": 0.198, + "1992": 0.205, + "1993": 0.213, + "1994": 0.22, + "1995": 0.227, + "1996": 0.237, + "1997": 0.246, + "1998": 0.254, + "1999": 0.261, + "2000": 0.269, + "2001": 0.277, + "2002": 0.286, + "2003": 0.294, + "2004": 0.302, + "2005": 0.306, + "2006": 0.307, + "2007": 0.314, + "2008": 0.321, + "2009": 0.333, + "2010": 0.345, + "2011": 0.368, + "2012": 0.38, + "2013": 0.385, + "2014": 0.385, + "2015": 0.385, + "2016": 0.385, + "2017": 0.385, + "2018": 0.393, + "2019": 0.393, + "2020": 0.393, + "2021": 0.393 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr103", + "Region": "Sana a (capital; Al Amana), Sana a (governorate)", + "1990": 0.214, + "1991": 0.221, + "1992": 0.228, + "1993": 0.236, + "1994": 0.244, + "1995": 0.251, + "1996": 0.261, + "1997": 0.27, + "1998": 0.284, + "1999": 0.298, + "2000": 0.313, + "2001": 0.328, + "2002": 0.344, + "2003": 0.36, + "2004": 0.376, + "2005": 0.387, + "2006": 0.395, + "2007": 0.395, + "2008": 0.395, + "2009": 0.401, + "2010": 0.406, + "2011": 0.424, + "2012": 0.43, + "2013": 0.426, + "2014": 0.426, + "2015": 0.426, + "2016": 0.426, + "2017": 0.426, + "2018": 0.435, + "2019": 0.435, + "2020": 0.435, + "2021": 0.435 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr105", + "Region": "Taiz", + "1990": 0.229, + "1991": 0.236, + "1992": 0.243, + "1993": 0.251, + "1994": 0.258, + "1995": 0.266, + "1996": 0.275, + "1997": 0.285, + "1998": 0.29, + "1999": 0.295, + "2000": 0.3, + "2001": 0.306, + "2002": 0.312, + "2003": 0.318, + "2004": 0.323, + "2005": 0.325, + "2006": 0.323, + "2007": 0.331, + "2008": 0.339, + "2009": 0.351, + "2010": 0.363, + "2011": 0.387, + "2012": 0.398, + "2013": 0.402, + "2014": 0.402, + "2015": 0.402, + "2016": 0.402, + "2017": 0.402, + "2018": 0.41, + "2019": 0.41, + "2020": 0.41, + "2021": 0.41 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "National", + "GDLCODE": "ZMBt", + "Region": "Total", + "1990": 0.359, + "1991": 0.369, + "1992": 0.38, + "1993": 0.391, + "1994": 0.402, + "1995": 0.413, + "1996": 0.415, + "1997": 0.417, + "1998": 0.419, + "1999": 0.421, + "2000": 0.424, + "2001": 0.43, + "2002": 0.436, + "2003": 0.451, + "2004": 0.466, + "2005": 0.481, + "2006": 0.495, + "2007": 0.509, + "2008": 0.511, + "2009": 0.512, + "2010": 0.514, + "2011": 0.517, + "2012": 0.519, + "2013": 0.521, + "2014": 0.524, + "2015": 0.526, + "2016": 0.53, + "2017": 0.535, + "2018": 0.539, + "2019": 0.543, + "2020": 0.543, + "2021": 0.543 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr101", + "Region": "Central", + "1990": 0.374, + "1991": 0.385, + "1992": 0.396, + "1993": 0.408, + "1994": 0.419, + "1995": 0.431, + "1996": 0.432, + "1997": 0.435, + "1998": 0.438, + "1999": 0.441, + "2000": 0.444, + "2001": 0.451, + "2002": 0.458, + "2003": 0.468, + "2004": 0.479, + "2005": 0.49, + "2006": 0.499, + "2007": 0.509, + "2008": 0.507, + "2009": 0.505, + "2010": 0.504, + "2011": 0.503, + "2012": 0.502, + "2013": 0.5, + "2014": 0.499, + "2015": 0.501, + "2016": 0.504, + "2017": 0.508, + "2018": 0.511, + "2019": 0.515, + "2020": 0.515, + "2021": 0.515 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr102", + "Region": "Copperbelt", + "1990": 0.45, + "1991": 0.464, + "1992": 0.478, + "1993": 0.492, + "1994": 0.506, + "1995": 0.52, + "1996": 0.522, + "1997": 0.522, + "1998": 0.522, + "1999": 0.523, + "2000": 0.523, + "2001": 0.528, + "2002": 0.533, + "2003": 0.548, + "2004": 0.563, + "2005": 0.578, + "2006": 0.592, + "2007": 0.606, + "2008": 0.606, + "2009": 0.607, + "2010": 0.608, + "2011": 0.61, + "2012": 0.612, + "2013": 0.613, + "2014": 0.615, + "2015": 0.613, + "2016": 0.613, + "2017": 0.613, + "2018": 0.614, + "2019": 0.619, + "2020": 0.619, + "2021": 0.619 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr103", + "Region": "Eastern", + "1990": 0.237, + "1991": 0.244, + "1992": 0.251, + "1993": 0.258, + "1994": 0.265, + "1995": 0.272, + "1996": 0.273, + "1997": 0.283, + "1998": 0.293, + "1999": 0.303, + "2000": 0.313, + "2001": 0.326, + "2002": 0.338, + "2003": 0.356, + "2004": 0.374, + "2005": 0.392, + "2006": 0.409, + "2007": 0.426, + "2008": 0.424, + "2009": 0.422, + "2010": 0.42, + "2011": 0.419, + "2012": 0.418, + "2013": 0.416, + "2014": 0.415, + "2015": 0.418, + "2016": 0.422, + "2017": 0.426, + "2018": 0.43, + "2019": 0.434, + "2020": 0.434, + "2021": 0.434 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr104", + "Region": "Luapula", + "1990": 0.309, + "1991": 0.318, + "1992": 0.327, + "1993": 0.336, + "1994": 0.345, + "1995": 0.354, + "1996": 0.356, + "1997": 0.354, + "1998": 0.352, + "1999": 0.351, + "2000": 0.349, + "2001": 0.351, + "2002": 0.352, + "2003": 0.376, + "2004": 0.399, + "2005": 0.422, + "2006": 0.445, + "2007": 0.467, + "2008": 0.467, + "2009": 0.466, + "2010": 0.465, + "2011": 0.465, + "2012": 0.465, + "2013": 0.465, + "2014": 0.465, + "2015": 0.466, + "2016": 0.468, + "2017": 0.47, + "2018": 0.473, + "2019": 0.476, + "2020": 0.476, + "2021": 0.476 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr105", + "Region": "Lusaka", + "1990": 0.455, + "1991": 0.47, + "1992": 0.485, + "1993": 0.499, + "1994": 0.514, + "1995": 0.529, + "1996": 0.531, + "1997": 0.529, + "1998": 0.528, + "1999": 0.526, + "2000": 0.525, + "2001": 0.529, + "2002": 0.533, + "2003": 0.546, + "2004": 0.559, + "2005": 0.572, + "2006": 0.584, + "2007": 0.596, + "2008": 0.598, + "2009": 0.601, + "2010": 0.604, + "2011": 0.607, + "2012": 0.611, + "2013": 0.614, + "2014": 0.618, + "2015": 0.621, + "2016": 0.628, + "2017": 0.634, + "2018": 0.64, + "2019": 0.645, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr107", + "Region": "North-Western", + "1990": 0.32, + "1991": 0.329, + "1992": 0.337, + "1993": 0.346, + "1994": 0.355, + "1995": 0.364, + "1996": 0.365, + "1997": 0.376, + "1998": 0.387, + "1999": 0.398, + "2000": 0.409, + "2001": 0.423, + "2002": 0.436, + "2003": 0.444, + "2004": 0.452, + "2005": 0.46, + "2006": 0.467, + "2007": 0.474, + "2008": 0.478, + "2009": 0.481, + "2010": 0.484, + "2011": 0.487, + "2012": 0.491, + "2013": 0.494, + "2014": 0.498, + "2015": 0.51, + "2016": 0.525, + "2017": 0.539, + "2018": 0.554, + "2019": 0.558, + "2020": 0.558, + "2021": 0.558 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr106", + "Region": "Northern", + "1990": 0.318, + "1991": 0.328, + "1992": 0.337, + "1993": 0.347, + "1994": 0.356, + "1995": 0.366, + "1996": 0.367, + "1997": 0.373, + "1998": 0.38, + "1999": 0.386, + "2000": 0.392, + "2001": 0.402, + "2002": 0.412, + "2003": 0.421, + "2004": 0.431, + "2005": 0.441, + "2006": 0.45, + "2007": 0.459, + "2008": 0.461, + "2009": 0.463, + "2010": 0.465, + "2011": 0.467, + "2012": 0.47, + "2013": 0.472, + "2014": 0.475, + "2015": 0.477, + "2016": 0.481, + "2017": 0.484, + "2018": 0.488, + "2019": 0.491, + "2020": 0.491, + "2021": 0.491 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr108", + "Region": "Southern", + "1990": 0.344, + "1991": 0.354, + "1992": 0.365, + "1993": 0.375, + "1994": 0.386, + "1995": 0.396, + "1996": 0.397, + "1997": 0.399, + "1998": 0.4, + "1999": 0.402, + "2000": 0.403, + "2001": 0.408, + "2002": 0.413, + "2003": 0.436, + "2004": 0.458, + "2005": 0.481, + "2006": 0.503, + "2007": 0.524, + "2008": 0.524, + "2009": 0.524, + "2010": 0.524, + "2011": 0.525, + "2012": 0.525, + "2013": 0.526, + "2014": 0.526, + "2015": 0.533, + "2016": 0.541, + "2017": 0.55, + "2018": 0.559, + "2019": 0.563, + "2020": 0.563, + "2021": 0.563 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr109", + "Region": "Western", + "1990": 0.308, + "1991": 0.317, + "1992": 0.326, + "1993": 0.334, + "1994": 0.343, + "1995": 0.351, + "1996": 0.353, + "1997": 0.348, + "1998": 0.344, + "1999": 0.339, + "2000": 0.335, + "2001": 0.333, + "2002": 0.331, + "2003": 0.348, + "2004": 0.365, + "2005": 0.382, + "2006": 0.398, + "2007": 0.414, + "2008": 0.42, + "2009": 0.425, + "2010": 0.431, + "2011": 0.437, + "2012": 0.443, + "2013": 0.448, + "2014": 0.454, + "2015": 0.461, + "2016": 0.47, + "2017": 0.478, + "2018": 0.487, + "2019": 0.49, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "National", + "GDLCODE": "ZWEt", + "Region": "Total", + "1990": 0.439, + "1991": 0.459, + "1992": 0.455, + "1993": 0.461, + "1994": 0.467, + "1995": 0.473, + "1996": 0.48, + "1997": 0.486, + "1998": 0.492, + "1999": 0.498, + "2000": 0.505, + "2001": 0.521, + "2002": 0.512, + "2003": 0.507, + "2004": 0.515, + "2005": 0.523, + "2006": 0.532, + "2007": 0.54, + "2008": 0.548, + "2009": 0.556, + "2010": 0.564, + "2011": 0.572, + "2012": 0.58, + "2013": 0.582, + "2014": 0.589, + "2015": 0.597, + "2016": 0.604, + "2017": 0.611, + "2018": 0.619, + "2019": 0.627, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr110", + "Region": "Bulawayo", + "1990": 0.512, + "1991": 0.535, + "1992": 0.532, + "1993": 0.54, + "1994": 0.548, + "1995": 0.557, + "1996": 0.567, + "1997": 0.576, + "1998": 0.586, + "1999": 0.595, + "2000": 0.603, + "2001": 0.622, + "2002": 0.613, + "2003": 0.607, + "2004": 0.616, + "2005": 0.626, + "2006": 0.635, + "2007": 0.637, + "2008": 0.639, + "2009": 0.642, + "2010": 0.645, + "2011": 0.647, + "2012": 0.662, + "2013": 0.67, + "2014": 0.685, + "2015": 0.699, + "2016": 0.708, + "2017": 0.718, + "2018": 0.728, + "2019": 0.739, + "2020": 0.739, + "2021": 0.739 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr109", + "Region": "Harare", + "1990": 0.556, + "1991": 0.581, + "1992": 0.579, + "1993": 0.588, + "1994": 0.597, + "1995": 0.602, + "1996": 0.606, + "1997": 0.611, + "1998": 0.616, + "1999": 0.621, + "2000": 0.625, + "2001": 0.639, + "2002": 0.626, + "2003": 0.616, + "2004": 0.62, + "2005": 0.625, + "2006": 0.629, + "2007": 0.635, + "2008": 0.641, + "2009": 0.647, + "2010": 0.653, + "2011": 0.658, + "2012": 0.671, + "2013": 0.678, + "2014": 0.69, + "2015": 0.702, + "2016": 0.71, + "2017": 0.717, + "2018": 0.724, + "2019": 0.732, + "2020": 0.732, + "2021": 0.732 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr101", + "Region": "Manicaland", + "1990": 0.41, + "1991": 0.429, + "1992": 0.424, + "1993": 0.43, + "1994": 0.435, + "1995": 0.442, + "1996": 0.449, + "1997": 0.455, + "1998": 0.462, + "1999": 0.469, + "2000": 0.479, + "2001": 0.499, + "2002": 0.494, + "2003": 0.492, + "2004": 0.504, + "2005": 0.517, + "2006": 0.529, + "2007": 0.539, + "2008": 0.549, + "2009": 0.559, + "2010": 0.569, + "2011": 0.579, + "2012": 0.577, + "2013": 0.568, + "2014": 0.565, + "2015": 0.562, + "2016": 0.58, + "2017": 0.599, + "2018": 0.62, + "2019": 0.641, + "2020": 0.641, + "2021": 0.641 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr102", + "Region": "Mashonaland Central", + "1990": 0.364, + "1991": 0.382, + "1992": 0.377, + "1993": 0.382, + "1994": 0.386, + "1995": 0.396, + "1996": 0.405, + "1997": 0.414, + "1998": 0.423, + "1999": 0.431, + "2000": 0.437, + "2001": 0.451, + "2002": 0.444, + "2003": 0.438, + "2004": 0.446, + "2005": 0.453, + "2006": 0.461, + "2007": 0.474, + "2008": 0.488, + "2009": 0.501, + "2010": 0.515, + "2011": 0.528, + "2012": 0.532, + "2013": 0.529, + "2014": 0.532, + "2015": 0.535, + "2016": 0.537, + "2017": 0.539, + "2018": 0.541, + "2019": 0.542, + "2020": 0.542, + "2021": 0.542 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr103", + "Region": "Mashonaland East", + "1990": 0.434, + "1991": 0.455, + "1992": 0.449, + "1993": 0.455, + "1994": 0.461, + "1995": 0.461, + "1996": 0.462, + "1997": 0.462, + "1998": 0.463, + "1999": 0.464, + "2000": 0.475, + "2001": 0.496, + "2002": 0.492, + "2003": 0.491, + "2004": 0.505, + "2005": 0.518, + "2006": 0.531, + "2007": 0.539, + "2008": 0.548, + "2009": 0.556, + "2010": 0.564, + "2011": 0.572, + "2012": 0.575, + "2013": 0.572, + "2014": 0.575, + "2015": 0.578, + "2016": 0.585, + "2017": 0.593, + "2018": 0.601, + "2019": 0.608, + "2020": 0.608, + "2021": 0.608 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr104", + "Region": "Mashonaland West", + "1990": 0.395, + "1991": 0.413, + "1992": 0.409, + "1993": 0.414, + "1994": 0.42, + "1995": 0.424, + "1996": 0.429, + "1997": 0.433, + "1998": 0.437, + "1999": 0.442, + "2000": 0.452, + "2001": 0.47, + "2002": 0.466, + "2003": 0.465, + "2004": 0.476, + "2005": 0.488, + "2006": 0.499, + "2007": 0.509, + "2008": 0.518, + "2009": 0.527, + "2010": 0.537, + "2011": 0.546, + "2012": 0.561, + "2013": 0.569, + "2014": 0.582, + "2015": 0.596, + "2016": 0.596, + "2017": 0.595, + "2018": 0.594, + "2019": 0.593, + "2020": 0.593, + "2021": 0.593 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr108", + "Region": "Masvingo", + "1990": 0.42, + "1991": 0.44, + "1992": 0.434, + "1993": 0.439, + "1994": 0.444, + "1995": 0.45, + "1996": 0.456, + "1997": 0.462, + "1998": 0.468, + "1999": 0.474, + "2000": 0.48, + "2001": 0.496, + "2002": 0.487, + "2003": 0.482, + "2004": 0.49, + "2005": 0.498, + "2006": 0.507, + "2007": 0.513, + "2008": 0.519, + "2009": 0.526, + "2010": 0.532, + "2011": 0.539, + "2012": 0.553, + "2013": 0.561, + "2014": 0.575, + "2015": 0.588, + "2016": 0.592, + "2017": 0.595, + "2018": 0.599, + "2019": 0.602, + "2020": 0.602, + "2021": 0.602 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr105", + "Region": "Matebeleland North", + "1990": 0.355, + "1991": 0.371, + "1992": 0.367, + "1993": 0.372, + "1994": 0.376, + "1995": 0.389, + "1996": 0.403, + "1997": 0.416, + "1998": 0.429, + "1999": 0.442, + "2000": 0.445, + "2001": 0.457, + "2002": 0.447, + "2003": 0.439, + "2004": 0.444, + "2005": 0.448, + "2006": 0.453, + "2007": 0.46, + "2008": 0.466, + "2009": 0.473, + "2010": 0.48, + "2011": 0.487, + "2012": 0.499, + "2013": 0.504, + "2014": 0.515, + "2015": 0.526, + "2016": 0.525, + "2017": 0.523, + "2018": 0.521, + "2019": 0.519, + "2020": 0.519, + "2021": 0.519 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr106", + "Region": "Matebeleland South", + "1990": 0.39, + "1991": 0.408, + "1992": 0.404, + "1993": 0.409, + "1994": 0.414, + "1995": 0.424, + "1996": 0.434, + "1997": 0.443, + "1998": 0.453, + "1999": 0.463, + "2000": 0.471, + "2001": 0.488, + "2002": 0.482, + "2003": 0.479, + "2004": 0.488, + "2005": 0.498, + "2006": 0.508, + "2007": 0.509, + "2008": 0.51, + "2009": 0.511, + "2010": 0.513, + "2011": 0.514, + "2012": 0.517, + "2013": 0.514, + "2014": 0.516, + "2015": 0.518, + "2016": 0.53, + "2017": 0.542, + "2018": 0.554, + "2019": 0.566, + "2020": 0.566, + "2021": 0.566 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr107", + "Region": "Midlands", + "1990": 0.454, + "1991": 0.475, + "1992": 0.471, + "1993": 0.477, + "1994": 0.484, + "1995": 0.485, + "1996": 0.486, + "1997": 0.486, + "1998": 0.487, + "1999": 0.488, + "2000": 0.495, + "2001": 0.512, + "2002": 0.505, + "2003": 0.5, + "2004": 0.509, + "2005": 0.517, + "2006": 0.526, + "2007": 0.535, + "2008": 0.544, + "2009": 0.552, + "2010": 0.561, + "2011": 0.57, + "2012": 0.576, + "2013": 0.575, + "2014": 0.58, + "2015": 0.586, + "2016": 0.597, + "2017": 0.609, + "2018": 0.622, + "2019": 0.635, + "2020": 0.635, + "2021": 0.635 + } +] diff --git a/public/gdl-data/healthcare.json b/public/gdl-data/healthcare.json new file mode 100644 index 0000000..1801888 --- /dev/null +++ b/public/gdl-data/healthcare.json @@ -0,0 +1,78882 @@ +[ + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "National", + "GDLCODE": "AFGt", + "Region": "Total", + "1990": 0.399, + "1991": 0.41, + "1992": 0.425, + "1993": 0.484, + "1994": 0.485, + "1995": 0.501, + "1996": 0.511, + "1997": 0.517, + "1998": 0.507, + "1999": 0.536, + "2000": 0.543, + "2001": 0.551, + "2002": 0.561, + "2003": 0.575, + "2004": 0.584, + "2005": 0.59, + "2006": 0.595, + "2007": 0.602, + "2008": 0.613, + "2009": 0.621, + "2010": 0.628, + "2011": 0.637, + "2012": 0.645, + "2013": 0.653, + "2014": 0.655, + "2015": 0.656, + "2016": 0.664, + "2017": 0.662, + "2018": 0.663, + "2019": 0.67, + "2020": 0.655, + "2021": 0.646 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr101", + "Region": "Central (Kabul Wardak Kapisa Logar Parwan Panjsher)", + "1990": 0.415, + "1991": 0.426, + "1992": 0.441, + "1993": 0.501, + "1994": 0.502, + "1995": 0.518, + "1996": 0.529, + "1997": 0.536, + "1998": 0.525, + "1999": 0.555, + "2000": 0.562, + "2001": 0.57, + "2002": 0.58, + "2003": 0.594, + "2004": 0.603, + "2005": 0.61, + "2006": 0.615, + "2007": 0.622, + "2008": 0.633, + "2009": 0.641, + "2010": 0.649, + "2011": 0.66, + "2012": 0.669, + "2013": 0.678, + "2014": 0.682, + "2015": 0.685, + "2016": 0.693, + "2017": 0.691, + "2018": 0.692, + "2019": 0.7, + "2020": 0.684, + "2021": 0.675 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr102", + "Region": "Central Highlands (Bamyan Daikundi)", + "1990": 0.375, + "1991": 0.386, + "1992": 0.4, + "1993": 0.457, + "1994": 0.458, + "1995": 0.473, + "1996": 0.484, + "1997": 0.489, + "1998": 0.479, + "1999": 0.507, + "2000": 0.514, + "2001": 0.522, + "2002": 0.531, + "2003": 0.544, + "2004": 0.553, + "2005": 0.56, + "2006": 0.564, + "2007": 0.571, + "2008": 0.582, + "2009": 0.589, + "2010": 0.597, + "2011": 0.613, + "2012": 0.629, + "2013": 0.644, + "2014": 0.654, + "2015": 0.663, + "2016": 0.67, + "2017": 0.669, + "2018": 0.67, + "2019": 0.677, + "2020": 0.662, + "2021": 0.653 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr103", + "Region": "East (Nangarhar Kunar Laghman Nooristan)", + "1990": 0.453, + "1991": 0.465, + "1992": 0.48, + "1993": 0.544, + "1994": 0.544, + "1995": 0.562, + "1996": 0.573, + "1997": 0.58, + "1998": 0.568, + "1999": 0.6, + "2000": 0.607, + "2001": 0.616, + "2002": 0.627, + "2003": 0.641, + "2004": 0.651, + "2005": 0.658, + "2006": 0.663, + "2007": 0.671, + "2008": 0.683, + "2009": 0.691, + "2010": 0.699, + "2011": 0.692, + "2012": 0.683, + "2013": 0.675, + "2014": 0.662, + "2015": 0.648, + "2016": 0.656, + "2017": 0.654, + "2018": 0.655, + "2019": 0.662, + "2020": 0.647, + "2021": 0.638 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr104", + "Region": "North (Samangan Sar-e-Pul Balkh Jawzjan Faryab)", + "1990": 0.375, + "1991": 0.385, + "1992": 0.399, + "1993": 0.457, + "1994": 0.457, + "1995": 0.473, + "1996": 0.483, + "1997": 0.489, + "1998": 0.479, + "1999": 0.507, + "2000": 0.514, + "2001": 0.521, + "2002": 0.531, + "2003": 0.544, + "2004": 0.553, + "2005": 0.559, + "2006": 0.564, + "2007": 0.57, + "2008": 0.581, + "2009": 0.589, + "2010": 0.596, + "2011": 0.608, + "2012": 0.619, + "2013": 0.629, + "2014": 0.634, + "2015": 0.639, + "2016": 0.646, + "2017": 0.644, + "2018": 0.645, + "2019": 0.652, + "2020": 0.637, + "2021": 0.628 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr105", + "Region": "North East (Baghlan Takhar Badakhshan Kunduz)", + "1990": 0.404, + "1991": 0.415, + "1992": 0.429, + "1993": 0.489, + "1994": 0.49, + "1995": 0.506, + "1996": 0.517, + "1997": 0.523, + "1998": 0.512, + "1999": 0.542, + "2000": 0.549, + "2001": 0.556, + "2002": 0.567, + "2003": 0.58, + "2004": 0.59, + "2005": 0.596, + "2006": 0.601, + "2007": 0.608, + "2008": 0.619, + "2009": 0.627, + "2010": 0.635, + "2011": 0.637, + "2012": 0.639, + "2013": 0.641, + "2014": 0.637, + "2015": 0.633, + "2016": 0.64, + "2017": 0.639, + "2018": 0.64, + "2019": 0.647, + "2020": 0.632, + "2021": 0.623 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr106", + "Region": "South (Uruzgan Helmand Zabul Nimroz Kandahar)", + "1990": 0.444, + "1991": 0.455, + "1992": 0.47, + "1993": 0.534, + "1994": 0.534, + "1995": 0.551, + "1996": 0.563, + "1997": 0.569, + "1998": 0.558, + "1999": 0.589, + "2000": 0.596, + "2001": 0.604, + "2002": 0.615, + "2003": 0.63, + "2004": 0.64, + "2005": 0.646, + "2006": 0.652, + "2007": 0.659, + "2008": 0.671, + "2009": 0.679, + "2010": 0.687, + "2011": 0.683, + "2012": 0.678, + "2013": 0.674, + "2014": 0.664, + "2015": 0.654, + "2016": 0.661, + "2017": 0.659, + "2018": 0.66, + "2019": 0.668, + "2020": 0.652, + "2021": 0.643 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr107", + "Region": "South East (Ghazni Paktya Paktika Khost)", + "1990": 0.372, + "1991": 0.383, + "1992": 0.396, + "1993": 0.454, + "1994": 0.454, + "1995": 0.47, + "1996": 0.48, + "1997": 0.486, + "1998": 0.476, + "1999": 0.504, + "2000": 0.51, + "2001": 0.518, + "2002": 0.528, + "2003": 0.541, + "2004": 0.55, + "2005": 0.556, + "2006": 0.561, + "2007": 0.567, + "2008": 0.578, + "2009": 0.585, + "2010": 0.593, + "2011": 0.617, + "2012": 0.64, + "2013": 0.662, + "2014": 0.679, + "2015": 0.694, + "2016": 0.702, + "2017": 0.7, + "2018": 0.701, + "2019": 0.709, + "2020": 0.693, + "2021": 0.684 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr108", + "Region": "West (Ghor Herat Badghis Farah)", + "1990": 0.369, + "1991": 0.379, + "1992": 0.393, + "1993": 0.45, + "1994": 0.45, + "1995": 0.466, + "1996": 0.476, + "1997": 0.482, + "1998": 0.472, + "1999": 0.5, + "2000": 0.506, + "2001": 0.514, + "2002": 0.523, + "2003": 0.537, + "2004": 0.545, + "2005": 0.552, + "2006": 0.556, + "2007": 0.563, + "2008": 0.573, + "2009": 0.581, + "2010": 0.588, + "2011": 0.603, + "2012": 0.617, + "2013": 0.631, + "2014": 0.639, + "2015": 0.647, + "2016": 0.654, + "2017": 0.652, + "2018": 0.653, + "2019": 0.661, + "2020": 0.646, + "2021": 0.637 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "National", + "GDLCODE": "ALBt", + "Region": "Total", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr201", + "Region": " Berat", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr202", + "Region": " Diber", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr203", + "Region": " Durres", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr204", + "Region": " Elbasan", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr205", + "Region": " Fier", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr206", + "Region": " Gjirokaster", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr207", + "Region": " Korce", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr208", + "Region": " Kukes", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr209", + "Region": " Lezhe", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr210", + "Region": " Shkoder", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr211", + "Region": " Tirana", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr212", + "Region": " Vlore", + "1990": 0.818, + "1991": 0.821, + "1992": 0.826, + "1993": 0.83, + "1994": 0.833, + "1995": 0.836, + "1996": 0.84, + "1997": 0.829, + "1998": 0.846, + "1999": 0.849, + "2000": 0.852, + "2001": 0.856, + "2002": 0.86, + "2003": 0.864, + "2004": 0.867, + "2005": 0.871, + "2006": 0.874, + "2007": 0.885, + "2008": 0.887, + "2009": 0.889, + "2010": 0.891, + "2011": 0.894, + "2012": 0.893, + "2013": 0.894, + "2014": 0.899, + "2015": 0.902, + "2016": 0.906, + "2017": 0.908, + "2018": 0.911, + "2019": 0.912, + "2020": 0.877, + "2021": 0.869 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "National", + "GDLCODE": "DZAt", + "Region": "Total", + "1990": 0.729, + "1991": 0.734, + "1992": 0.735, + "1993": 0.734, + "1994": 0.729, + "1995": 0.73, + "1996": 0.75, + "1997": 0.756, + "1998": 0.761, + "1999": 0.77, + "2000": 0.777, + "2001": 0.782, + "2002": 0.788, + "2003": 0.789, + "2004": 0.796, + "2005": 0.801, + "2006": 0.805, + "2007": 0.809, + "2008": 0.814, + "2009": 0.825, + "2010": 0.828, + "2011": 0.833, + "2012": 0.834, + "2013": 0.84, + "2014": 0.848, + "2015": 0.856, + "2016": 0.857, + "2017": 0.858, + "2018": 0.863, + "2019": 0.869, + "2020": 0.838, + "2021": 0.867 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr104", + "Region": "Hauts Plateaux Centre (Djelfa, Laghouat, MSila)", + "1990": 0.704, + "1991": 0.708, + "1992": 0.709, + "1993": 0.709, + "1994": 0.703, + "1995": 0.705, + "1996": 0.724, + "1997": 0.73, + "1998": 0.735, + "1999": 0.743, + "2000": 0.75, + "2001": 0.755, + "2002": 0.761, + "2003": 0.762, + "2004": 0.769, + "2005": 0.774, + "2006": 0.778, + "2007": 0.782, + "2008": 0.787, + "2009": 0.797, + "2010": 0.8, + "2011": 0.805, + "2012": 0.806, + "2013": 0.812, + "2014": 0.823, + "2015": 0.835, + "2016": 0.84, + "2017": 0.843, + "2018": 0.852, + "2019": 0.862, + "2020": 0.831, + "2021": 0.86 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr105", + "Region": "Hauts Plateaux Est (Setif, Batna, Khenchela, Bordj Bou Arreridj, Oum El Bouaghi, Tebessa)", + "1990": 0.738, + "1991": 0.742, + "1992": 0.743, + "1993": 0.742, + "1994": 0.737, + "1995": 0.738, + "1996": 0.758, + "1997": 0.765, + "1998": 0.769, + "1999": 0.778, + "2000": 0.785, + "2001": 0.791, + "2002": 0.797, + "2003": 0.798, + "2004": 0.805, + "2005": 0.81, + "2006": 0.814, + "2007": 0.818, + "2008": 0.823, + "2009": 0.834, + "2010": 0.837, + "2011": 0.842, + "2012": 0.843, + "2013": 0.849, + "2014": 0.854, + "2015": 0.86, + "2016": 0.859, + "2017": 0.857, + "2018": 0.859, + "2019": 0.863, + "2020": 0.832, + "2021": 0.861 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr106", + "Region": "Hauts Plateaux Ouest (Tiaret, Saida, Tissemsilt, Naama, El Bayadh)", + "1990": 0.723, + "1991": 0.727, + "1992": 0.728, + "1993": 0.728, + "1994": 0.722, + "1995": 0.724, + "1996": 0.743, + "1997": 0.75, + "1998": 0.754, + "1999": 0.763, + "2000": 0.77, + "2001": 0.775, + "2002": 0.781, + "2003": 0.782, + "2004": 0.789, + "2005": 0.794, + "2006": 0.798, + "2007": 0.802, + "2008": 0.807, + "2009": 0.818, + "2010": 0.821, + "2011": 0.825, + "2012": 0.827, + "2013": 0.833, + "2014": 0.842, + "2015": 0.852, + "2016": 0.856, + "2017": 0.858, + "2018": 0.865, + "2019": 0.873, + "2020": 0.842, + "2021": 0.871 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr101", + "Region": "Nord Centre (Alger, Blida, Boumerdes, Tipaza, Bouira, Medea, Tizi-Ouzou, Bejaia, Chlef, Ain Defla)", + "1990": 0.746, + "1991": 0.75, + "1992": 0.751, + "1993": 0.751, + "1994": 0.745, + "1995": 0.746, + "1996": 0.767, + "1997": 0.773, + "1998": 0.778, + "1999": 0.787, + "2000": 0.794, + "2001": 0.799, + "2002": 0.805, + "2003": 0.806, + "2004": 0.814, + "2005": 0.818, + "2006": 0.823, + "2007": 0.827, + "2008": 0.832, + "2009": 0.843, + "2010": 0.846, + "2011": 0.851, + "2012": 0.852, + "2013": 0.858, + "2014": 0.866, + "2015": 0.873, + "2016": 0.875, + "2017": 0.874, + "2018": 0.879, + "2019": 0.885, + "2020": 0.853, + "2021": 0.883 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr102", + "Region": "Nord Est (Annaba, Constantine, Skikda, Jijel, Mila, Souk Ahras, El Tarf, Guelma)", + "1990": 0.745, + "1991": 0.75, + "1992": 0.751, + "1993": 0.75, + "1994": 0.745, + "1995": 0.746, + "1996": 0.766, + "1997": 0.773, + "1998": 0.777, + "1999": 0.786, + "2000": 0.793, + "2001": 0.799, + "2002": 0.805, + "2003": 0.806, + "2004": 0.813, + "2005": 0.818, + "2006": 0.822, + "2007": 0.826, + "2008": 0.832, + "2009": 0.842, + "2010": 0.845, + "2011": 0.85, + "2012": 0.851, + "2013": 0.858, + "2014": 0.856, + "2015": 0.854, + "2016": 0.846, + "2017": 0.836, + "2018": 0.832, + "2019": 0.828, + "2020": 0.798, + "2021": 0.827 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr103", + "Region": "Nord Ouest (Oran, Tlemcen, Mostaganem, Ain Temouchent, Relizane, Sidi Bel Abbes, Mascara)", + "1990": 0.718, + "1991": 0.722, + "1992": 0.723, + "1993": 0.722, + "1994": 0.717, + "1995": 0.718, + "1996": 0.738, + "1997": 0.745, + "1998": 0.749, + "1999": 0.758, + "2000": 0.764, + "2001": 0.77, + "2002": 0.776, + "2003": 0.777, + "2004": 0.784, + "2005": 0.789, + "2006": 0.793, + "2007": 0.797, + "2008": 0.802, + "2009": 0.812, + "2010": 0.815, + "2011": 0.82, + "2012": 0.821, + "2013": 0.827, + "2014": 0.841, + "2015": 0.854, + "2016": 0.861, + "2017": 0.867, + "2018": 0.877, + "2019": 0.889, + "2020": 0.858, + "2021": 0.888 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr107", + "Region": "Sud (Bechar, Tindouf, Adrar, Ghardaia, Biskra, El Oued, Ouargla, Tamanrasset,Illizi)", + "1990": 0.7, + "1991": 0.704, + "1992": 0.705, + "1993": 0.705, + "1994": 0.7, + "1995": 0.701, + "1996": 0.72, + "1997": 0.727, + "1998": 0.731, + "1999": 0.739, + "2000": 0.746, + "2001": 0.751, + "2002": 0.757, + "2003": 0.758, + "2004": 0.765, + "2005": 0.77, + "2006": 0.774, + "2007": 0.778, + "2008": 0.783, + "2009": 0.793, + "2010": 0.796, + "2011": 0.801, + "2012": 0.802, + "2013": 0.808, + "2014": 0.819, + "2015": 0.829, + "2016": 0.834, + "2017": 0.837, + "2018": 0.845, + "2019": 0.855, + "2020": 0.824, + "2021": 0.853 + }, + { + "Country": "Andorra", + "Continent": "Europe", + "ISO_Code": "AND", + "Level": "National", + "GDLCODE": "ANDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.937, + "2001": 0.949, + "2002": 0.957, + "2003": 0.983, + "2004": 0.924, + "2005": 0.95, + "2006": 0.969, + "2007": 0.964, + "2008": 0.965, + "2009": 0.965, + "2010": 0.966, + "2011": 0.968, + "2012": 0.968, + "2013": 0.968, + "2014": 0.968, + "2015": 0.969, + "2016": 0.969, + "2017": 0.969, + "2018": 0.969, + "2019": 0.969, + "2020": 0.908, + "2021": 0.929 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "National", + "GDLCODE": "AGOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.391, + "2000": 0.4, + "2001": 0.409, + "2002": 0.421, + "2003": 0.456, + "2004": 0.471, + "2005": 0.486, + "2006": 0.498, + "2007": 0.518, + "2008": 0.533, + "2009": 0.55, + "2010": 0.565, + "2011": 0.578, + "2012": 0.594, + "2013": 0.605, + "2014": 0.616, + "2015": 0.625, + "2016": 0.632, + "2017": 0.641, + "2018": 0.648, + "2019": 0.653, + "2020": 0.65, + "2021": 0.641 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr218", + "Region": " Bengo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.351, + "2000": 0.36, + "2001": 0.369, + "2002": 0.38, + "2003": 0.413, + "2004": 0.427, + "2005": 0.441, + "2006": 0.453, + "2007": 0.471, + "2008": 0.485, + "2009": 0.502, + "2010": 0.516, + "2011": 0.528, + "2012": 0.577, + "2013": 0.621, + "2014": 0.665, + "2015": 0.708, + "2016": 0.748, + "2017": 0.758, + "2018": 0.766, + "2019": 0.771, + "2020": 0.768, + "2021": 0.757 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr209", + "Region": " Benguela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.344, + "2000": 0.353, + "2001": 0.361, + "2002": 0.372, + "2003": 0.404, + "2004": 0.418, + "2005": 0.432, + "2006": 0.444, + "2007": 0.462, + "2008": 0.476, + "2009": 0.492, + "2010": 0.506, + "2011": 0.519, + "2012": 0.524, + "2013": 0.524, + "2014": 0.525, + "2015": 0.525, + "2016": 0.522, + "2017": 0.53, + "2018": 0.536, + "2019": 0.54, + "2020": 0.537, + "2021": 0.529 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr211", + "Region": " Bie", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.454, + "2000": 0.465, + "2001": 0.474, + "2002": 0.487, + "2003": 0.525, + "2004": 0.541, + "2005": 0.558, + "2006": 0.571, + "2007": 0.592, + "2008": 0.609, + "2009": 0.628, + "2010": 0.644, + "2011": 0.659, + "2012": 0.659, + "2013": 0.653, + "2014": 0.648, + "2015": 0.641, + "2016": 0.631, + "2017": 0.64, + "2018": 0.648, + "2019": 0.652, + "2020": 0.649, + "2021": 0.64 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr201", + "Region": " Cabinda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.357, + "2000": 0.367, + "2001": 0.375, + "2002": 0.387, + "2003": 0.419, + "2004": 0.434, + "2005": 0.448, + "2006": 0.46, + "2007": 0.478, + "2008": 0.493, + "2009": 0.509, + "2010": 0.524, + "2011": 0.536, + "2012": 0.577, + "2013": 0.612, + "2014": 0.648, + "2015": 0.683, + "2016": 0.714, + "2017": 0.724, + "2018": 0.731, + "2019": 0.737, + "2020": 0.733, + "2021": 0.723 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr216", + "Region": " Cunene", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.331, + "2000": 0.34, + "2001": 0.348, + "2002": 0.359, + "2003": 0.39, + "2004": 0.404, + "2005": 0.418, + "2006": 0.429, + "2007": 0.447, + "2008": 0.461, + "2009": 0.476, + "2010": 0.49, + "2011": 0.502, + "2012": 0.536, + "2013": 0.565, + "2014": 0.595, + "2015": 0.623, + "2016": 0.648, + "2017": 0.657, + "2018": 0.665, + "2019": 0.669, + "2020": 0.667, + "2021": 0.657 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr210", + "Region": " Huambo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.347, + "2000": 0.356, + "2001": 0.364, + "2002": 0.376, + "2003": 0.408, + "2004": 0.422, + "2005": 0.436, + "2006": 0.447, + "2007": 0.466, + "2008": 0.48, + "2009": 0.496, + "2010": 0.51, + "2011": 0.523, + "2012": 0.543, + "2013": 0.559, + "2014": 0.575, + "2015": 0.59, + "2016": 0.602, + "2017": 0.611, + "2018": 0.618, + "2019": 0.622, + "2020": 0.619, + "2021": 0.61 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr215", + "Region": " Huila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.366, + "2000": 0.376, + "2001": 0.384, + "2002": 0.396, + "2003": 0.429, + "2004": 0.443, + "2005": 0.458, + "2006": 0.47, + "2007": 0.489, + "2008": 0.503, + "2009": 0.52, + "2010": 0.534, + "2011": 0.547, + "2012": 0.555, + "2013": 0.558, + "2014": 0.562, + "2015": 0.564, + "2016": 0.564, + "2017": 0.572, + "2018": 0.579, + "2019": 0.583, + "2020": 0.58, + "2021": 0.572 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr213", + "Region": " Kuando Kubango", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.354, + "2000": 0.363, + "2001": 0.371, + "2002": 0.383, + "2003": 0.415, + "2004": 0.429, + "2005": 0.444, + "2006": 0.455, + "2007": 0.474, + "2008": 0.488, + "2009": 0.505, + "2010": 0.519, + "2011": 0.531, + "2012": 0.56, + "2013": 0.583, + "2014": 0.606, + "2015": 0.628, + "2016": 0.648, + "2017": 0.657, + "2018": 0.664, + "2019": 0.669, + "2020": 0.666, + "2021": 0.656 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr205", + "Region": " Kuanza Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.344, + "2000": 0.353, + "2001": 0.361, + "2002": 0.372, + "2003": 0.404, + "2004": 0.418, + "2005": 0.432, + "2006": 0.444, + "2007": 0.462, + "2008": 0.476, + "2009": 0.493, + "2010": 0.506, + "2011": 0.519, + "2012": 0.543, + "2013": 0.562, + "2014": 0.582, + "2015": 0.6, + "2016": 0.616, + "2017": 0.624, + "2018": 0.631, + "2019": 0.636, + "2020": 0.633, + "2021": 0.624 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr206", + "Region": " Kuanza Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.34, + "2000": 0.349, + "2001": 0.357, + "2002": 0.369, + "2003": 0.401, + "2004": 0.415, + "2005": 0.429, + "2006": 0.44, + "2007": 0.458, + "2008": 0.472, + "2009": 0.488, + "2010": 0.502, + "2011": 0.515, + "2012": 0.524, + "2013": 0.528, + "2014": 0.533, + "2015": 0.536, + "2016": 0.537, + "2017": 0.545, + "2018": 0.551, + "2019": 0.556, + "2020": 0.553, + "2021": 0.544 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr204", + "Region": " Luanda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.434, + "2000": 0.444, + "2001": 0.454, + "2002": 0.467, + "2003": 0.503, + "2004": 0.519, + "2005": 0.535, + "2006": 0.548, + "2007": 0.569, + "2008": 0.585, + "2009": 0.603, + "2010": 0.619, + "2011": 0.634, + "2012": 0.653, + "2013": 0.666, + "2014": 0.681, + "2015": 0.693, + "2016": 0.702, + "2017": 0.712, + "2018": 0.72, + "2019": 0.725, + "2020": 0.722, + "2021": 0.711 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr208", + "Region": " Lunda Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.477, + "2000": 0.488, + "2001": 0.498, + "2002": 0.512, + "2003": 0.55, + "2004": 0.567, + "2005": 0.584, + "2006": 0.598, + "2007": 0.62, + "2008": 0.637, + "2009": 0.656, + "2010": 0.673, + "2011": 0.688, + "2012": 0.691, + "2013": 0.687, + "2014": 0.684, + "2015": 0.68, + "2016": 0.672, + "2017": 0.682, + "2018": 0.689, + "2019": 0.694, + "2020": 0.691, + "2021": 0.681 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr217", + "Region": " Lunda Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.433, + "2000": 0.443, + "2001": 0.453, + "2002": 0.466, + "2003": 0.502, + "2004": 0.518, + "2005": 0.534, + "2006": 0.547, + "2007": 0.568, + "2008": 0.584, + "2009": 0.602, + "2010": 0.618, + "2011": 0.632, + "2012": 0.653, + "2013": 0.668, + "2014": 0.684, + "2015": 0.697, + "2016": 0.708, + "2017": 0.718, + "2018": 0.726, + "2019": 0.731, + "2020": 0.728, + "2021": 0.717 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr207", + "Region": " Malange", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.465, + "2000": 0.476, + "2001": 0.485, + "2002": 0.499, + "2003": 0.537, + "2004": 0.553, + "2005": 0.57, + "2006": 0.584, + "2007": 0.605, + "2008": 0.622, + "2009": 0.641, + "2010": 0.658, + "2011": 0.673, + "2012": 0.68, + "2013": 0.682, + "2014": 0.684, + "2015": 0.685, + "2016": 0.683, + "2017": 0.692, + "2018": 0.7, + "2019": 0.705, + "2020": 0.701, + "2021": 0.691 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr212", + "Region": " Moxico", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.422, + "2000": 0.432, + "2001": 0.442, + "2002": 0.454, + "2003": 0.49, + "2004": 0.506, + "2005": 0.522, + "2006": 0.534, + "2007": 0.555, + "2008": 0.571, + "2009": 0.589, + "2010": 0.605, + "2011": 0.618, + "2012": 0.624, + "2013": 0.624, + "2014": 0.625, + "2015": 0.624, + "2016": 0.62, + "2017": 0.629, + "2018": 0.636, + "2019": 0.641, + "2020": 0.638, + "2021": 0.628 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr214", + "Region": " Namibe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.429, + "2000": 0.44, + "2001": 0.449, + "2002": 0.462, + "2003": 0.498, + "2004": 0.514, + "2005": 0.53, + "2006": 0.543, + "2007": 0.563, + "2008": 0.579, + "2009": 0.598, + "2010": 0.613, + "2011": 0.628, + "2012": 0.629, + "2013": 0.625, + "2014": 0.622, + "2015": 0.617, + "2016": 0.609, + "2017": 0.618, + "2018": 0.625, + "2019": 0.629, + "2020": 0.627, + "2021": 0.617 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr203", + "Region": " Uige", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.393, + "2000": 0.403, + "2001": 0.412, + "2002": 0.424, + "2003": 0.458, + "2004": 0.473, + "2005": 0.488, + "2006": 0.501, + "2007": 0.52, + "2008": 0.536, + "2009": 0.553, + "2010": 0.568, + "2011": 0.581, + "2012": 0.6, + "2013": 0.612, + "2014": 0.626, + "2015": 0.638, + "2016": 0.647, + "2017": 0.656, + "2018": 0.663, + "2019": 0.668, + "2020": 0.665, + "2021": 0.655 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr202", + "Region": " Zaire", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.476, + "2000": 0.487, + "2001": 0.497, + "2002": 0.511, + "2003": 0.549, + "2004": 0.566, + "2005": 0.583, + "2006": 0.597, + "2007": 0.619, + "2008": 0.636, + "2009": 0.655, + "2010": 0.672, + "2011": 0.687, + "2012": 0.693, + "2013": 0.693, + "2014": 0.694, + "2015": 0.693, + "2016": 0.689, + "2017": 0.698, + "2018": 0.706, + "2019": 0.711, + "2020": 0.708, + "2021": 0.698 + }, + { + "Country": "Antigua and Barbuda", + "Continent": "America", + "ISO_Code": "ATG", + "Level": "National", + "GDLCODE": "ATGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.859, + "2006": 0.858, + "2007": 0.864, + "2008": 0.868, + "2009": 0.872, + "2010": 0.874, + "2011": 0.879, + "2012": 0.882, + "2013": 0.886, + "2014": 0.89, + "2015": 0.891, + "2016": 0.895, + "2017": 0.896, + "2018": 0.9, + "2019": 0.903, + "2020": 0.905, + "2021": 0.9 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "National", + "GDLCODE": "ARGt", + "Region": "Total", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr104", + "Region": "Cuyo", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr101", + "Region": "Gran Buenos Aires", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr103", + "Region": "NEA", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr102", + "Region": "NOA", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr105", + "Region": "Pampeana", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr106", + "Region": "Patagonia", + "1990": 0.797, + "1991": 0.805, + "1992": 0.807, + "1993": 0.809, + "1994": 0.818, + "1995": 0.817, + "1996": 0.82, + "1997": 0.817, + "1998": 0.823, + "1999": 0.826, + "2000": 0.83, + "2001": 0.834, + "2002": 0.837, + "2003": 0.832, + "2004": 0.844, + "2005": 0.848, + "2006": 0.853, + "2007": 0.846, + "2008": 0.856, + "2009": 0.861, + "2010": 0.857, + "2011": 0.863, + "2012": 0.869, + "2013": 0.869, + "2014": 0.873, + "2015": 0.873, + "2016": 0.866, + "2017": 0.874, + "2018": 0.877, + "2019": 0.881, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "National", + "GDLCODE": "ARMt", + "Region": "Total", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr101", + "Region": "Aragatsotn", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr102", + "Region": "Ararat", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr103", + "Region": "Armavir", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr104", + "Region": "Gegharkunik", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr106", + "Region": "Kotayk", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr105", + "Region": "Lori", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr107", + "Region": "Shirak", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr108", + "Region": "Syunik", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr110", + "Region": "Tavush", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr109", + "Region": "Vayots Dzor", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr111", + "Region": "Yerevan", + "1990": 0.751, + "1991": 0.748, + "1992": 0.748, + "1993": 0.751, + "1994": 0.755, + "1995": 0.759, + "1996": 0.766, + "1997": 0.768, + "1998": 0.777, + "1999": 0.773, + "2000": 0.779, + "2001": 0.784, + "2002": 0.785, + "2003": 0.791, + "2004": 0.791, + "2005": 0.797, + "2006": 0.8, + "2007": 0.805, + "2008": 0.806, + "2009": 0.813, + "2010": 0.818, + "2011": 0.82, + "2012": 0.822, + "2013": 0.826, + "2014": 0.832, + "2015": 0.837, + "2016": 0.841, + "2017": 0.845, + "2018": 0.847, + "2019": 0.853, + "2020": 0.803, + "2021": 0.801 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "National", + "GDLCODE": "AUSt", + "Region": "Total", + "1990": 0.878, + "1991": 0.884, + "1992": 0.884, + "1993": 0.892, + "1994": 0.89, + "1995": 0.896, + "1996": 0.898, + "1997": 0.902, + "1998": 0.908, + "1999": 0.912, + "2000": 0.917, + "2001": 0.923, + "2002": 0.924, + "2003": 0.93, + "2004": 0.935, + "2005": 0.94, + "2006": 0.943, + "2007": 0.942, + "2008": 0.946, + "2009": 0.95, + "2010": 0.955, + "2011": 0.956, + "2012": 0.959, + "2013": 0.963, + "2014": 0.963, + "2015": 0.964, + "2016": 0.967, + "2017": 0.969, + "2018": 0.975, + "2019": 0.971, + "2020": 0.99, + "2021": 0.993 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr108", + "Region": "Australian Capital Territory", + "1990": 0.886, + "1991": 0.898, + "1992": 0.907, + "1993": 0.912, + "1994": 0.905, + "1995": 0.911, + "1996": 0.909, + "1997": 0.915, + "1998": 0.92, + "1999": 0.927, + "2000": 0.933, + "2001": 0.943, + "2002": 0.942, + "2003": 0.949, + "2004": 0.951, + "2005": 0.953, + "2006": 0.955, + "2007": 0.952, + "2008": 0.958, + "2009": 0.963, + "2010": 0.969, + "2011": 0.972, + "2012": 0.975, + "2013": 0.979, + "2014": 0.979, + "2015": 0.98, + "2016": 0.984, + "2017": 0.986, + "2018": 0.992, + "2019": 0.987, + "2020": 1, + "2021": 1 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr101", + "Region": "New South Wales", + "1990": 0.871, + "1991": 0.882, + "1992": 0.88, + "1993": 0.89, + "1994": 0.889, + "1995": 0.893, + "1996": 0.895, + "1997": 0.902, + "1998": 0.907, + "1999": 0.91, + "2000": 0.917, + "2001": 0.923, + "2002": 0.924, + "2003": 0.932, + "2004": 0.935, + "2005": 0.939, + "2006": 0.944, + "2007": 0.944, + "2008": 0.95, + "2009": 0.952, + "2010": 0.955, + "2011": 0.955, + "2012": 0.958, + "2013": 0.962, + "2014": 0.962, + "2015": 0.963, + "2016": 0.966, + "2017": 0.968, + "2018": 0.974, + "2019": 0.97, + "2020": 0.989, + "2021": 0.992 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr107", + "Region": "Northern Territory", + "1990": 0.759, + "1991": 0.766, + "1992": 0.776, + "1993": 0.793, + "1994": 0.788, + "1995": 0.803, + "1996": 0.804, + "1997": 0.811, + "1998": 0.813, + "1999": 0.811, + "2000": 0.824, + "2001": 0.831, + "2002": 0.837, + "2003": 0.847, + "2004": 0.849, + "2005": 0.848, + "2006": 0.851, + "2007": 0.851, + "2008": 0.862, + "2009": 0.871, + "2010": 0.889, + "2011": 0.883, + "2012": 0.886, + "2013": 0.89, + "2014": 0.889, + "2015": 0.89, + "2016": 0.893, + "2017": 0.895, + "2018": 0.901, + "2019": 0.897, + "2020": 0.915, + "2021": 0.917 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr103", + "Region": "Queensland", + "1990": 0.88, + "1991": 0.886, + "1992": 0.882, + "1993": 0.894, + "1994": 0.892, + "1995": 0.894, + "1996": 0.896, + "1997": 0.9, + "1998": 0.906, + "1999": 0.91, + "2000": 0.916, + "2001": 0.92, + "2002": 0.923, + "2003": 0.927, + "2004": 0.932, + "2005": 0.938, + "2006": 0.941, + "2007": 0.94, + "2008": 0.943, + "2009": 0.949, + "2010": 0.952, + "2011": 0.951, + "2012": 0.954, + "2013": 0.958, + "2014": 0.957, + "2015": 0.959, + "2016": 0.962, + "2017": 0.964, + "2018": 0.97, + "2019": 0.965, + "2020": 0.984, + "2021": 0.987 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr104", + "Region": "South Australia", + "1990": 0.881, + "1991": 0.887, + "1992": 0.893, + "1993": 0.889, + "1994": 0.892, + "1995": 0.899, + "1996": 0.9, + "1997": 0.904, + "1998": 0.912, + "1999": 0.914, + "2000": 0.918, + "2001": 0.923, + "2002": 0.923, + "2003": 0.93, + "2004": 0.932, + "2005": 0.94, + "2006": 0.943, + "2007": 0.943, + "2008": 0.946, + "2009": 0.948, + "2010": 0.953, + "2011": 0.954, + "2012": 0.958, + "2013": 0.962, + "2014": 0.961, + "2015": 0.962, + "2016": 0.966, + "2017": 0.968, + "2018": 0.974, + "2019": 0.969, + "2020": 0.988, + "2021": 0.991 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr106", + "Region": "Tasmania", + "1990": 0.861, + "1991": 0.869, + "1992": 0.871, + "1993": 0.878, + "1994": 0.875, + "1995": 0.879, + "1996": 0.882, + "1997": 0.887, + "1998": 0.893, + "1999": 0.899, + "2000": 0.9, + "2001": 0.906, + "2002": 0.904, + "2003": 0.91, + "2004": 0.915, + "2005": 0.921, + "2006": 0.923, + "2007": 0.92, + "2008": 0.922, + "2009": 0.926, + "2010": 0.931, + "2011": 0.934, + "2012": 0.937, + "2013": 0.941, + "2014": 0.94, + "2015": 0.941, + "2016": 0.945, + "2017": 0.947, + "2018": 0.953, + "2019": 0.948, + "2020": 0.967, + "2021": 0.97 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr102", + "Region": "Victoria", + "1990": 0.882, + "1991": 0.885, + "1992": 0.889, + "1993": 0.897, + "1994": 0.895, + "1995": 0.9, + "1996": 0.9, + "1997": 0.907, + "1998": 0.914, + "1999": 0.918, + "2000": 0.924, + "2001": 0.928, + "2002": 0.929, + "2003": 0.935, + "2004": 0.941, + "2005": 0.946, + "2006": 0.947, + "2007": 0.947, + "2008": 0.95, + "2009": 0.956, + "2010": 0.961, + "2011": 0.962, + "2012": 0.965, + "2013": 0.969, + "2014": 0.969, + "2015": 0.97, + "2016": 0.973, + "2017": 0.975, + "2018": 0.981, + "2019": 0.977, + "2020": 0.996, + "2021": 0.999 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr105", + "Region": "Western Australia", + "1990": 0.888, + "1991": 0.894, + "1992": 0.893, + "1993": 0.896, + "1994": 0.895, + "1995": 0.899, + "1996": 0.901, + "1997": 0.907, + "1998": 0.912, + "1999": 0.919, + "2000": 0.923, + "2001": 0.929, + "2002": 0.928, + "2003": 0.936, + "2004": 0.941, + "2005": 0.946, + "2006": 0.947, + "2007": 0.946, + "2008": 0.949, + "2009": 0.954, + "2010": 0.961, + "2011": 0.961, + "2012": 0.965, + "2013": 0.969, + "2014": 0.968, + "2015": 0.969, + "2016": 0.973, + "2017": 0.975, + "2018": 0.981, + "2019": 0.976, + "2020": 0.995, + "2021": 0.998 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "National", + "GDLCODE": "AUTt", + "Region": "Total", + "1990": 0.858, + "1991": 0.858, + "1992": 0.861, + "1993": 0.865, + "1994": 0.87, + "1995": 0.873, + "1996": 0.877, + "1997": 0.884, + "1998": 0.889, + "1999": 0.892, + "2000": 0.896, + "2001": 0.903, + "2002": 0.905, + "2003": 0.905, + "2004": 0.913, + "2005": 0.916, + "2006": 0.923, + "2007": 0.926, + "2008": 0.929, + "2009": 0.926, + "2010": 0.93, + "2011": 0.936, + "2012": 0.936, + "2013": 0.94, + "2014": 0.944, + "2015": 0.941, + "2016": 0.948, + "2017": 0.948, + "2018": 0.949, + "2019": 0.952, + "2020": 0.946, + "2021": 0.947 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr101", + "Region": "Burgenland", + "1990": 0.855, + "1991": 0.841, + "1992": 0.852, + "1993": 0.863, + "1994": 0.864, + "1995": 0.863, + "1996": 0.863, + "1997": 0.874, + "1998": 0.877, + "1999": 0.885, + "2000": 0.89, + "2001": 0.899, + "2002": 0.901, + "2003": 0.9, + "2004": 0.911, + "2005": 0.908, + "2006": 0.913, + "2007": 0.915, + "2008": 0.919, + "2009": 0.932, + "2010": 0.932, + "2011": 0.936, + "2012": 0.928, + "2013": 0.937, + "2014": 0.94, + "2015": 0.939, + "2016": 0.941, + "2017": 0.944, + "2018": 0.944, + "2019": 0.951, + "2020": 0.945, + "2021": 0.946 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr104", + "Region": "Karnten", + "1990": 0.86, + "1991": 0.858, + "1992": 0.866, + "1993": 0.869, + "1994": 0.881, + "1995": 0.885, + "1996": 0.89, + "1997": 0.891, + "1998": 0.903, + "1999": 0.897, + "2000": 0.902, + "2001": 0.913, + "2002": 0.911, + "2003": 0.917, + "2004": 0.922, + "2005": 0.919, + "2006": 0.926, + "2007": 0.932, + "2008": 0.934, + "2009": 0.931, + "2010": 0.934, + "2011": 0.939, + "2012": 0.937, + "2013": 0.946, + "2014": 0.946, + "2015": 0.942, + "2016": 0.947, + "2017": 0.95, + "2018": 0.946, + "2019": 0.955, + "2020": 0.949, + "2021": 0.95 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr102", + "Region": "Niederosterreich", + "1990": 0.852, + "1991": 0.854, + "1992": 0.856, + "1993": 0.861, + "1994": 0.862, + "1995": 0.866, + "1996": 0.87, + "1997": 0.876, + "1998": 0.88, + "1999": 0.885, + "2000": 0.887, + "2001": 0.898, + "2002": 0.898, + "2003": 0.897, + "2004": 0.903, + "2005": 0.908, + "2006": 0.916, + "2007": 0.918, + "2008": 0.919, + "2009": 0.92, + "2010": 0.926, + "2011": 0.93, + "2012": 0.928, + "2013": 0.935, + "2014": 0.939, + "2015": 0.936, + "2016": 0.941, + "2017": 0.946, + "2018": 0.944, + "2019": 0.948, + "2020": 0.941, + "2021": 0.943 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr106", + "Region": "Oberosterreich", + "1990": 0.863, + "1991": 0.863, + "1992": 0.869, + "1993": 0.866, + "1994": 0.87, + "1995": 0.873, + "1996": 0.876, + "1997": 0.884, + "1998": 0.89, + "1999": 0.892, + "2000": 0.902, + "2001": 0.908, + "2002": 0.908, + "2003": 0.908, + "2004": 0.915, + "2005": 0.919, + "2006": 0.927, + "2007": 0.928, + "2008": 0.934, + "2009": 0.931, + "2010": 0.934, + "2011": 0.941, + "2012": 0.942, + "2013": 0.941, + "2014": 0.949, + "2015": 0.944, + "2016": 0.954, + "2017": 0.952, + "2018": 0.955, + "2019": 0.957, + "2020": 0.951, + "2021": 0.952 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr107", + "Region": "Salzburg", + "1990": 0.867, + "1991": 0.875, + "1992": 0.881, + "1993": 0.878, + "1994": 0.884, + "1995": 0.888, + "1996": 0.893, + "1997": 0.894, + "1998": 0.903, + "1999": 0.903, + "2000": 0.902, + "2001": 0.91, + "2002": 0.911, + "2003": 0.913, + "2004": 0.925, + "2005": 0.919, + "2006": 0.936, + "2007": 0.94, + "2008": 0.948, + "2009": 0.94, + "2010": 0.943, + "2011": 0.947, + "2012": 0.951, + "2013": 0.954, + "2014": 0.959, + "2015": 0.958, + "2016": 0.961, + "2017": 0.958, + "2018": 0.966, + "2019": 0.965, + "2020": 0.958, + "2021": 0.959 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr105", + "Region": "Steiermark", + "1990": 0.858, + "1991": 0.858, + "1992": 0.862, + "1993": 0.866, + "1994": 0.873, + "1995": 0.876, + "1996": 0.88, + "1997": 0.881, + "1998": 0.891, + "1999": 0.894, + "2000": 0.896, + "2001": 0.905, + "2002": 0.907, + "2003": 0.908, + "2004": 0.917, + "2005": 0.919, + "2006": 0.922, + "2007": 0.931, + "2008": 0.928, + "2009": 0.928, + "2010": 0.934, + "2011": 0.939, + "2012": 0.942, + "2013": 0.947, + "2014": 0.949, + "2015": 0.941, + "2016": 0.952, + "2017": 0.949, + "2018": 0.955, + "2019": 0.955, + "2020": 0.949, + "2021": 0.95 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr108", + "Region": "Tirol", + "1990": 0.87, + "1991": 0.88, + "1992": 0.881, + "1993": 0.886, + "1994": 0.887, + "1995": 0.892, + "1996": 0.897, + "1997": 0.901, + "1998": 0.905, + "1999": 0.911, + "2000": 0.914, + "2001": 0.918, + "2002": 0.925, + "2003": 0.928, + "2004": 0.932, + "2005": 0.933, + "2006": 0.942, + "2007": 0.943, + "2008": 0.946, + "2009": 0.943, + "2010": 0.947, + "2011": 0.953, + "2012": 0.953, + "2013": 0.957, + "2014": 0.962, + "2015": 0.958, + "2016": 0.963, + "2017": 0.97, + "2018": 0.967, + "2019": 0.968, + "2020": 0.961, + "2021": 0.963 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr109", + "Region": "Vorarlberg", + "1990": 0.873, + "1991": 0.877, + "1992": 0.881, + "1993": 0.886, + "1994": 0.893, + "1995": 0.896, + "1996": 0.9, + "1997": 0.907, + "1998": 0.905, + "1999": 0.906, + "2000": 0.917, + "2001": 0.913, + "2002": 0.924, + "2003": 0.917, + "2004": 0.926, + "2005": 0.934, + "2006": 0.933, + "2007": 0.938, + "2008": 0.943, + "2009": 0.945, + "2010": 0.949, + "2011": 0.956, + "2012": 0.953, + "2013": 0.955, + "2014": 0.966, + "2015": 0.958, + "2016": 0.961, + "2017": 0.958, + "2018": 0.966, + "2019": 0.972, + "2020": 0.966, + "2021": 0.967 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr103", + "Region": "Wien", + "1990": 0.846, + "1991": 0.844, + "1992": 0.841, + "1993": 0.849, + "1994": 0.856, + "1995": 0.86, + "1996": 0.863, + "1997": 0.876, + "1998": 0.877, + "1999": 0.88, + "2000": 0.884, + "2001": 0.89, + "2002": 0.893, + "2003": 0.891, + "2004": 0.902, + "2005": 0.905, + "2006": 0.91, + "2007": 0.912, + "2008": 0.917, + "2009": 0.909, + "2010": 0.912, + "2011": 0.919, + "2012": 0.92, + "2013": 0.921, + "2014": 0.926, + "2015": 0.927, + "2016": 0.934, + "2017": 0.934, + "2018": 0.93, + "2019": 0.937, + "2020": 0.931, + "2021": 0.932 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "National", + "GDLCODE": "AZEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.651, + "1996": 0.656, + "1997": 0.661, + "1998": 0.67, + "1999": 0.68, + "2000": 0.691, + "2001": 0.7, + "2002": 0.711, + "2003": 0.719, + "2004": 0.728, + "2005": 0.732, + "2006": 0.741, + "2007": 0.748, + "2008": 0.751, + "2009": 0.759, + "2010": 0.762, + "2011": 0.769, + "2012": 0.775, + "2013": 0.783, + "2014": 0.786, + "2015": 0.792, + "2016": 0.8, + "2017": 0.804, + "2018": 0.812, + "2019": 0.817, + "2020": 0.721, + "2021": 0.759 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr102", + "Region": "Absheron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.676, + "1996": 0.681, + "1997": 0.687, + "1998": 0.696, + "1999": 0.706, + "2000": 0.717, + "2001": 0.727, + "2002": 0.738, + "2003": 0.746, + "2004": 0.756, + "2005": 0.759, + "2006": 0.769, + "2007": 0.776, + "2008": 0.779, + "2009": 0.787, + "2010": 0.79, + "2011": 0.797, + "2012": 0.803, + "2013": 0.811, + "2014": 0.815, + "2015": 0.82, + "2016": 0.829, + "2017": 0.833, + "2018": 0.841, + "2019": 0.847, + "2020": 0.748, + "2021": 0.788 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr107", + "Region": "Aran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.615, + "1996": 0.62, + "1997": 0.625, + "1998": 0.634, + "1999": 0.643, + "2000": 0.653, + "2001": 0.663, + "2002": 0.673, + "2003": 0.681, + "2004": 0.69, + "2005": 0.693, + "2006": 0.702, + "2007": 0.708, + "2008": 0.711, + "2009": 0.72, + "2010": 0.722, + "2011": 0.729, + "2012": 0.734, + "2013": 0.742, + "2014": 0.746, + "2015": 0.751, + "2016": 0.759, + "2017": 0.762, + "2018": 0.77, + "2019": 0.775, + "2020": 0.683, + "2021": 0.72 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr101", + "Region": "Baku", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.693, + "1996": 0.698, + "1997": 0.703, + "1998": 0.713, + "1999": 0.723, + "2000": 0.734, + "2001": 0.744, + "2002": 0.756, + "2003": 0.764, + "2004": 0.773, + "2005": 0.777, + "2006": 0.787, + "2007": 0.794, + "2008": 0.797, + "2009": 0.806, + "2010": 0.809, + "2011": 0.816, + "2012": 0.822, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.848, + "2017": 0.852, + "2018": 0.86, + "2019": 0.866, + "2020": 0.766, + "2021": 0.806 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr109", + "Region": "Dakhlik Shirvan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.671, + "1996": 0.676, + "1997": 0.682, + "1998": 0.691, + "1999": 0.701, + "2000": 0.712, + "2001": 0.722, + "2002": 0.733, + "2003": 0.741, + "2004": 0.751, + "2005": 0.754, + "2006": 0.763, + "2007": 0.77, + "2008": 0.774, + "2009": 0.782, + "2010": 0.785, + "2011": 0.792, + "2012": 0.798, + "2013": 0.806, + "2014": 0.81, + "2015": 0.815, + "2016": 0.824, + "2017": 0.828, + "2018": 0.836, + "2019": 0.841, + "2020": 0.743, + "2021": 0.782 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr103", + "Region": "Ganja Gazakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.614, + "1996": 0.619, + "1997": 0.624, + "1998": 0.633, + "1999": 0.642, + "2000": 0.653, + "2001": 0.662, + "2002": 0.673, + "2003": 0.68, + "2004": 0.689, + "2005": 0.692, + "2006": 0.701, + "2007": 0.708, + "2008": 0.711, + "2009": 0.719, + "2010": 0.721, + "2011": 0.728, + "2012": 0.734, + "2013": 0.741, + "2014": 0.745, + "2015": 0.75, + "2016": 0.758, + "2017": 0.762, + "2018": 0.769, + "2019": 0.774, + "2020": 0.682, + "2021": 0.719 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr106", + "Region": "Guba Khachmaz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.673, + "1996": 0.678, + "1997": 0.684, + "1998": 0.693, + "1999": 0.703, + "2000": 0.714, + "2001": 0.724, + "2002": 0.735, + "2003": 0.743, + "2004": 0.752, + "2005": 0.756, + "2006": 0.765, + "2007": 0.772, + "2008": 0.776, + "2009": 0.784, + "2010": 0.787, + "2011": 0.794, + "2012": 0.8, + "2013": 0.808, + "2014": 0.812, + "2015": 0.817, + "2016": 0.826, + "2017": 0.83, + "2018": 0.838, + "2019": 0.843, + "2020": 0.745, + "2021": 0.784 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr105", + "Region": "Lankaran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.663, + "1996": 0.668, + "1997": 0.673, + "1998": 0.683, + "1999": 0.692, + "2000": 0.703, + "2001": 0.713, + "2002": 0.724, + "2003": 0.732, + "2004": 0.741, + "2005": 0.745, + "2006": 0.754, + "2007": 0.761, + "2008": 0.764, + "2009": 0.773, + "2010": 0.775, + "2011": 0.783, + "2012": 0.788, + "2013": 0.797, + "2014": 0.8, + "2015": 0.805, + "2016": 0.814, + "2017": 0.818, + "2018": 0.826, + "2019": 0.831, + "2020": 0.734, + "2021": 0.773 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr104", + "Region": "Shaki Zaqatala", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.711, + "1996": 0.716, + "1997": 0.722, + "1998": 0.731, + "1999": 0.741, + "2000": 0.753, + "2001": 0.763, + "2002": 0.775, + "2003": 0.783, + "2004": 0.793, + "2005": 0.797, + "2006": 0.806, + "2007": 0.814, + "2008": 0.817, + "2009": 0.826, + "2010": 0.829, + "2011": 0.836, + "2012": 0.842, + "2013": 0.851, + "2014": 0.855, + "2015": 0.86, + "2016": 0.869, + "2017": 0.873, + "2018": 0.882, + "2019": 0.887, + "2020": 0.785, + "2021": 0.826 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr108", + "Region": "Yukhari Karabakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.587, + "1996": 0.591, + "1997": 0.596, + "1998": 0.605, + "1999": 0.614, + "2000": 0.624, + "2001": 0.633, + "2002": 0.643, + "2003": 0.651, + "2004": 0.659, + "2005": 0.662, + "2006": 0.671, + "2007": 0.677, + "2008": 0.68, + "2009": 0.688, + "2010": 0.69, + "2011": 0.697, + "2012": 0.702, + "2013": 0.71, + "2014": 0.713, + "2015": 0.718, + "2016": 0.726, + "2017": 0.729, + "2018": 0.737, + "2019": 0.742, + "2020": 0.652, + "2021": 0.688 + }, + { + "Country": "Bahamas", + "Continent": "America", + "ISO_Code": "BHS", + "Level": "National", + "GDLCODE": "BHSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.801, + "2001": 0.802, + "2002": 0.804, + "2003": 0.806, + "2004": 0.807, + "2005": 0.812, + "2006": 0.813, + "2007": 0.81, + "2008": 0.81, + "2009": 0.809, + "2010": 0.811, + "2011": 0.809, + "2012": 0.812, + "2013": 0.816, + "2014": 0.821, + "2015": 0.817, + "2016": 0.824, + "2017": 0.825, + "2018": 0.828, + "2019": 0.788, + "2020": 0.81, + "2021": 0.794 + }, + { + "Country": "Bahrain", + "Continent": "Asia/Pacific", + "ISO_Code": "BHR", + "Level": "National", + "GDLCODE": "BHRt", + "Region": "Total", + "1990": 0.81, + "1991": 0.812, + "1992": 0.815, + "1993": 0.821, + "1994": 0.823, + "1995": 0.828, + "1996": 0.836, + "1997": 0.839, + "1998": 0.841, + "1999": 0.846, + "2000": 0.854, + "2001": 0.86, + "2002": 0.863, + "2003": 0.867, + "2004": 0.87, + "2005": 0.876, + "2006": 0.879, + "2007": 0.887, + "2008": 0.894, + "2009": 0.899, + "2010": 0.904, + "2011": 0.906, + "2012": 0.909, + "2013": 0.911, + "2014": 0.913, + "2015": 0.914, + "2016": 0.916, + "2017": 0.918, + "2018": 0.921, + "2019": 0.923, + "2020": 0.91, + "2021": 0.904 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "National", + "GDLCODE": "BGDt", + "Region": "Total", + "1990": 0.554, + "1991": 0.525, + "1992": 0.579, + "1993": 0.583, + "1994": 0.594, + "1995": 0.607, + "1996": 0.608, + "1997": 0.637, + "1998": 0.676, + "1999": 0.711, + "2000": 0.704, + "2001": 0.71, + "2002": 0.717, + "2003": 0.72, + "2004": 0.726, + "2005": 0.728, + "2006": 0.727, + "2007": 0.719, + "2008": 0.724, + "2009": 0.729, + "2010": 0.748, + "2011": 0.751, + "2012": 0.762, + "2013": 0.763, + "2014": 0.769, + "2015": 0.777, + "2016": 0.786, + "2017": 0.797, + "2018": 0.809, + "2019": 0.812, + "2020": 0.8, + "2021": 0.806 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr214", + "Region": " Bagerhat, Khulna, Satkhira", + "1990": 0.57, + "1991": 0.542, + "1992": 0.596, + "1993": 0.601, + "1994": 0.611, + "1995": 0.625, + "1996": 0.625, + "1997": 0.655, + "1998": 0.694, + "1999": 0.73, + "2000": 0.723, + "2001": 0.729, + "2002": 0.736, + "2003": 0.739, + "2004": 0.745, + "2005": 0.749, + "2006": 0.75, + "2007": 0.744, + "2008": 0.751, + "2009": 0.758, + "2010": 0.78, + "2011": 0.784, + "2012": 0.809, + "2013": 0.823, + "2014": 0.843, + "2015": 0.836, + "2016": 0.831, + "2017": 0.828, + "2018": 0.825, + "2019": 0.814, + "2020": 0.801, + "2021": 0.807 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr204", + "Region": " Bandarban, Cox s Bazar", + "1990": 0.555, + "1991": 0.527, + "1992": 0.581, + "1993": 0.585, + "1994": 0.596, + "1995": 0.609, + "1996": 0.609, + "1997": 0.636, + "1998": 0.671, + "1999": 0.703, + "2000": 0.693, + "2001": 0.695, + "2002": 0.699, + "2003": 0.699, + "2004": 0.701, + "2005": 0.702, + "2006": 0.7, + "2007": 0.692, + "2008": 0.696, + "2009": 0.7, + "2010": 0.718, + "2011": 0.72, + "2012": 0.713, + "2013": 0.695, + "2014": 0.684, + "2015": 0.704, + "2016": 0.726, + "2017": 0.749, + "2018": 0.773, + "2019": 0.79, + "2020": 0.777, + "2021": 0.783 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr202", + "Region": " Barguna, Bhola, Patuakhali", + "1990": 0.575, + "1991": 0.546, + "1992": 0.601, + "1993": 0.606, + "1994": 0.617, + "1995": 0.63, + "1996": 0.631, + "1997": 0.661, + "1998": 0.7, + "1999": 0.736, + "2000": 0.729, + "2001": 0.734, + "2002": 0.741, + "2003": 0.744, + "2004": 0.75, + "2005": 0.748, + "2006": 0.743, + "2007": 0.73, + "2008": 0.732, + "2009": 0.733, + "2010": 0.749, + "2011": 0.748, + "2012": 0.763, + "2013": 0.767, + "2014": 0.778, + "2015": 0.783, + "2016": 0.79, + "2017": 0.798, + "2018": 0.808, + "2019": 0.809, + "2020": 0.797, + "2021": 0.803 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr201", + "Region": " Barisal, Jhalokati, Pirojpur", + "1990": 0.568, + "1991": 0.539, + "1992": 0.593, + "1993": 0.598, + "1994": 0.609, + "1995": 0.622, + "1996": 0.622, + "1997": 0.653, + "1998": 0.692, + "1999": 0.729, + "2000": 0.722, + "2001": 0.728, + "2002": 0.736, + "2003": 0.74, + "2004": 0.746, + "2005": 0.746, + "2006": 0.743, + "2007": 0.733, + "2008": 0.737, + "2009": 0.741, + "2010": 0.758, + "2011": 0.759, + "2012": 0.777, + "2013": 0.784, + "2014": 0.797, + "2015": 0.798, + "2016": 0.8, + "2017": 0.804, + "2018": 0.809, + "2019": 0.806, + "2020": 0.793, + "2021": 0.8 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr219", + "Region": " Bogra, Gaibandha, Jaypurhat", + "1990": 0.495, + "1991": 0.468, + "1992": 0.518, + "1993": 0.522, + "1994": 0.532, + "1995": 0.544, + "1996": 0.545, + "1997": 0.583, + "1998": 0.629, + "1999": 0.673, + "2000": 0.677, + "2001": 0.692, + "2002": 0.71, + "2003": 0.723, + "2004": 0.738, + "2005": 0.735, + "2006": 0.729, + "2007": 0.716, + "2008": 0.716, + "2009": 0.717, + "2010": 0.731, + "2011": 0.729, + "2012": 0.749, + "2013": 0.758, + "2014": 0.773, + "2015": 0.781, + "2016": 0.79, + "2017": 0.8, + "2018": 0.812, + "2019": 0.816, + "2020": 0.803, + "2021": 0.809 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr207", + "Region": " Brahmanbaria, Chandpur, Comilla", + "1990": 0.545, + "1991": 0.517, + "1992": 0.57, + "1993": 0.575, + "1994": 0.585, + "1995": 0.598, + "1996": 0.598, + "1997": 0.629, + "1998": 0.669, + "1999": 0.706, + "2000": 0.701, + "2001": 0.707, + "2002": 0.716, + "2003": 0.721, + "2004": 0.728, + "2005": 0.73, + "2006": 0.73, + "2007": 0.722, + "2008": 0.728, + "2009": 0.733, + "2010": 0.753, + "2011": 0.756, + "2012": 0.775, + "2013": 0.784, + "2014": 0.798, + "2015": 0.802, + "2016": 0.808, + "2017": 0.815, + "2018": 0.823, + "2019": 0.823, + "2020": 0.81, + "2021": 0.816 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr203", + "Region": " Chittagong", + "1990": 0.547, + "1991": 0.519, + "1992": 0.572, + "1993": 0.577, + "1994": 0.587, + "1995": 0.6, + "1996": 0.601, + "1997": 0.631, + "1998": 0.67, + "1999": 0.705, + "2000": 0.699, + "2001": 0.705, + "2002": 0.713, + "2003": 0.717, + "2004": 0.723, + "2005": 0.729, + "2006": 0.733, + "2007": 0.729, + "2008": 0.739, + "2009": 0.749, + "2010": 0.773, + "2011": 0.779, + "2012": 0.774, + "2013": 0.757, + "2014": 0.746, + "2015": 0.752, + "2016": 0.76, + "2017": 0.768, + "2018": 0.779, + "2019": 0.78, + "2020": 0.768, + "2021": 0.774 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr216", + "Region": " Chuadanga, Jhenaidah, Kushtia, Meherpur", + "1990": 0.627, + "1991": 0.596, + "1992": 0.654, + "1993": 0.659, + "1994": 0.671, + "1995": 0.685, + "1996": 0.685, + "1997": 0.711, + "1998": 0.745, + "1999": 0.776, + "2000": 0.762, + "2001": 0.761, + "2002": 0.761, + "2003": 0.758, + "2004": 0.757, + "2005": 0.761, + "2006": 0.762, + "2007": 0.756, + "2008": 0.763, + "2009": 0.771, + "2010": 0.793, + "2011": 0.798, + "2012": 0.791, + "2013": 0.772, + "2014": 0.76, + "2015": 0.771, + "2016": 0.783, + "2017": 0.796, + "2018": 0.811, + "2019": 0.817, + "2020": 0.804, + "2021": 0.811 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr208", + "Region": " Dhaka", + "1990": 0.609, + "1991": 0.579, + "1992": 0.636, + "1993": 0.641, + "1994": 0.652, + "1995": 0.666, + "1996": 0.666, + "1997": 0.693, + "1998": 0.729, + "1999": 0.761, + "2000": 0.749, + "2001": 0.749, + "2002": 0.752, + "2003": 0.751, + "2004": 0.752, + "2005": 0.757, + "2006": 0.76, + "2007": 0.755, + "2008": 0.764, + "2009": 0.773, + "2010": 0.796, + "2011": 0.802, + "2012": 0.811, + "2013": 0.809, + "2014": 0.814, + "2015": 0.817, + "2016": 0.823, + "2017": 0.829, + "2018": 0.837, + "2019": 0.837, + "2020": 0.824, + "2021": 0.83 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr220", + "Region": " Dinajpur, Nilphamari, Panchagarh, Thakurgaon", + "1990": 0.593, + "1991": 0.564, + "1992": 0.62, + "1993": 0.625, + "1994": 0.636, + "1995": 0.649, + "1996": 0.65, + "1997": 0.683, + "1998": 0.725, + "1999": 0.765, + "2000": 0.759, + "2001": 0.767, + "2002": 0.777, + "2003": 0.783, + "2004": 0.791, + "2005": 0.784, + "2006": 0.775, + "2007": 0.759, + "2008": 0.757, + "2009": 0.755, + "2010": 0.767, + "2011": 0.762, + "2012": 0.782, + "2013": 0.792, + "2014": 0.807, + "2015": 0.807, + "2016": 0.809, + "2017": 0.812, + "2018": 0.816, + "2019": 0.812, + "2020": 0.799, + "2021": 0.805 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr212", + "Region": " Faridpur, Manikganj, Rajbari", + "1990": 0.552, + "1991": 0.524, + "1992": 0.578, + "1993": 0.582, + "1994": 0.593, + "1995": 0.606, + "1996": 0.606, + "1997": 0.646, + "1998": 0.695, + "1999": 0.741, + "2000": 0.745, + "2001": 0.76, + "2002": 0.778, + "2003": 0.791, + "2004": 0.807, + "2005": 0.799, + "2006": 0.788, + "2007": 0.769, + "2008": 0.765, + "2009": 0.761, + "2010": 0.771, + "2011": 0.764, + "2012": 0.773, + "2013": 0.769, + "2014": 0.772, + "2015": 0.785, + "2016": 0.799, + "2017": 0.815, + "2018": 0.832, + "2019": 0.84, + "2020": 0.827, + "2021": 0.834 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr206", + "Region": " Feni, Lakshmipur, Noakhali", + "1990": 0.552, + "1991": 0.524, + "1992": 0.577, + "1993": 0.582, + "1994": 0.593, + "1995": 0.606, + "1996": 0.606, + "1997": 0.631, + "1998": 0.665, + "1999": 0.695, + "2000": 0.684, + "2001": 0.685, + "2002": 0.688, + "2003": 0.686, + "2004": 0.687, + "2005": 0.692, + "2006": 0.695, + "2007": 0.69, + "2008": 0.698, + "2009": 0.707, + "2010": 0.728, + "2011": 0.734, + "2012": 0.747, + "2013": 0.748, + "2014": 0.756, + "2015": 0.766, + "2016": 0.777, + "2017": 0.789, + "2018": 0.803, + "2019": 0.809, + "2020": 0.796, + "2021": 0.803 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr209", + "Region": " Gazipur, Narayanganj, Narsingdi", + "1990": 0.536, + "1991": 0.508, + "1992": 0.561, + "1993": 0.565, + "1994": 0.576, + "1995": 0.588, + "1996": 0.589, + "1997": 0.621, + "1998": 0.663, + "1999": 0.701, + "2000": 0.698, + "2001": 0.707, + "2002": 0.718, + "2003": 0.725, + "2004": 0.734, + "2005": 0.738, + "2006": 0.74, + "2007": 0.735, + "2008": 0.743, + "2009": 0.751, + "2010": 0.773, + "2011": 0.779, + "2012": 0.786, + "2013": 0.781, + "2014": 0.782, + "2015": 0.785, + "2016": 0.788, + "2017": 0.793, + "2018": 0.799, + "2019": 0.797, + "2020": 0.784, + "2021": 0.79 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr213", + "Region": " Gopalganj, Madaripur, Munshiganj, Shariatpur", + "1990": 0.604, + "1991": 0.574, + "1992": 0.631, + "1993": 0.635, + "1994": 0.647, + "1995": 0.66, + "1996": 0.661, + "1997": 0.689, + "1998": 0.725, + "1999": 0.759, + "2000": 0.748, + "2001": 0.75, + "2002": 0.754, + "2003": 0.754, + "2004": 0.756, + "2005": 0.757, + "2006": 0.756, + "2007": 0.748, + "2008": 0.753, + "2009": 0.758, + "2010": 0.777, + "2011": 0.779, + "2012": 0.794, + "2013": 0.796, + "2014": 0.805, + "2015": 0.812, + "2016": 0.819, + "2017": 0.828, + "2018": 0.839, + "2019": 0.841, + "2020": 0.828, + "2021": 0.834 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr223", + "Region": " Habiganj, Sunamganj", + "1990": 0.463, + "1991": 0.438, + "1992": 0.486, + "1993": 0.49, + "1994": 0.499, + "1995": 0.511, + "1996": 0.511, + "1997": 0.54, + "1998": 0.577, + "1999": 0.611, + "2000": 0.607, + "2001": 0.614, + "2002": 0.623, + "2003": 0.628, + "2004": 0.635, + "2005": 0.644, + "2006": 0.65, + "2007": 0.649, + "2008": 0.66, + "2009": 0.672, + "2010": 0.696, + "2011": 0.705, + "2012": 0.71, + "2013": 0.703, + "2014": 0.703, + "2015": 0.716, + "2016": 0.73, + "2017": 0.745, + "2018": 0.761, + "2019": 0.77, + "2020": 0.758, + "2021": 0.764 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr210", + "Region": " Jamalpur, Sherpur, Tangail", + "1990": 0.548, + "1991": 0.52, + "1992": 0.573, + "1993": 0.577, + "1994": 0.588, + "1995": 0.601, + "1996": 0.601, + "1997": 0.632, + "1998": 0.671, + "1999": 0.708, + "2000": 0.702, + "2001": 0.709, + "2002": 0.717, + "2003": 0.722, + "2004": 0.729, + "2005": 0.722, + "2006": 0.713, + "2007": 0.698, + "2008": 0.695, + "2009": 0.693, + "2010": 0.704, + "2011": 0.699, + "2012": 0.715, + "2013": 0.721, + "2014": 0.733, + "2015": 0.747, + "2016": 0.762, + "2017": 0.778, + "2018": 0.796, + "2019": 0.806, + "2020": 0.793, + "2021": 0.8 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr215", + "Region": " Jessore, Magura, Narail", + "1990": 0.633, + "1991": 0.602, + "1992": 0.661, + "1993": 0.665, + "1994": 0.677, + "1995": 0.691, + "1996": 0.692, + "1997": 0.719, + "1998": 0.756, + "1999": 0.789, + "2000": 0.777, + "2001": 0.778, + "2002": 0.781, + "2003": 0.779, + "2004": 0.781, + "2005": 0.778, + "2006": 0.773, + "2007": 0.761, + "2008": 0.762, + "2009": 0.764, + "2010": 0.78, + "2011": 0.779, + "2012": 0.784, + "2013": 0.777, + "2014": 0.777, + "2015": 0.791, + "2016": 0.807, + "2017": 0.825, + "2018": 0.844, + "2019": 0.854, + "2020": 0.841, + "2021": 0.847 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr205", + "Region": " Khagrachhari, Rangamati (Chattagram)", + "1990": 0.536, + "1991": 0.509, + "1992": 0.561, + "1993": 0.565, + "1994": 0.576, + "1995": 0.589, + "1996": 0.589, + "1997": 0.62, + "1998": 0.66, + "1999": 0.698, + "2000": 0.693, + "2001": 0.701, + "2002": 0.71, + "2003": 0.716, + "2004": 0.724, + "2005": 0.725, + "2006": 0.723, + "2007": 0.715, + "2008": 0.719, + "2009": 0.724, + "2010": 0.743, + "2011": 0.745, + "2012": 0.733, + "2013": 0.71, + "2014": 0.693, + "2015": 0.713, + "2016": 0.734, + "2017": 0.756, + "2018": 0.78, + "2019": 0.796, + "2020": 0.783, + "2021": 0.789 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr211", + "Region": " Kishoreganj, Mymensingh, Netrakona", + "1990": 0.534, + "1991": 0.507, + "1992": 0.559, + "1993": 0.563, + "1994": 0.574, + "1995": 0.586, + "1996": 0.587, + "1997": 0.611, + "1998": 0.644, + "1999": 0.673, + "2000": 0.662, + "2001": 0.662, + "2002": 0.664, + "2003": 0.663, + "2004": 0.664, + "2005": 0.667, + "2006": 0.667, + "2007": 0.661, + "2008": 0.667, + "2009": 0.674, + "2010": 0.693, + "2011": 0.697, + "2012": 0.722, + "2013": 0.736, + "2014": 0.757, + "2015": 0.767, + "2016": 0.779, + "2017": 0.792, + "2018": 0.807, + "2019": 0.813, + "2020": 0.8, + "2021": 0.807 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr221", + "Region": " Kurigram, Lalmonirhat, Rangpur", + "1990": 0.539, + "1991": 0.512, + "1992": 0.564, + "1993": 0.569, + "1994": 0.579, + "1995": 0.592, + "1996": 0.593, + "1997": 0.621, + "1998": 0.658, + "1999": 0.692, + "2000": 0.684, + "2001": 0.689, + "2002": 0.695, + "2003": 0.698, + "2004": 0.702, + "2005": 0.709, + "2006": 0.713, + "2007": 0.71, + "2008": 0.72, + "2009": 0.73, + "2010": 0.754, + "2011": 0.761, + "2012": 0.773, + "2013": 0.773, + "2014": 0.779, + "2015": 0.784, + "2016": 0.791, + "2017": 0.799, + "2018": 0.808, + "2019": 0.809, + "2020": 0.796, + "2021": 0.802 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr222", + "Region": " Maulvibazar, Sylhet", + "1990": 0.539, + "1991": 0.511, + "1992": 0.563, + "1993": 0.568, + "1994": 0.578, + "1995": 0.591, + "1996": 0.591, + "1997": 0.62, + "1998": 0.657, + "1999": 0.691, + "2000": 0.684, + "2001": 0.688, + "2002": 0.695, + "2003": 0.698, + "2004": 0.702, + "2005": 0.704, + "2006": 0.703, + "2007": 0.695, + "2008": 0.7, + "2009": 0.705, + "2010": 0.723, + "2011": 0.726, + "2012": 0.735, + "2013": 0.733, + "2014": 0.738, + "2015": 0.754, + "2016": 0.772, + "2017": 0.791, + "2018": 0.811, + "2019": 0.823, + "2020": 0.81, + "2021": 0.817 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr217", + "Region": " Naogaon, Nawabganj, Rajshahi", + "1990": 0.603, + "1991": 0.573, + "1992": 0.63, + "1993": 0.635, + "1994": 0.646, + "1995": 0.66, + "1996": 0.66, + "1997": 0.688, + "1998": 0.725, + "1999": 0.759, + "2000": 0.748, + "2001": 0.75, + "2002": 0.754, + "2003": 0.754, + "2004": 0.756, + "2005": 0.757, + "2006": 0.755, + "2007": 0.746, + "2008": 0.751, + "2009": 0.755, + "2010": 0.774, + "2011": 0.776, + "2012": 0.774, + "2013": 0.76, + "2014": 0.753, + "2015": 0.768, + "2016": 0.783, + "2017": 0.801, + "2018": 0.819, + "2019": 0.83, + "2020": 0.817, + "2021": 0.823 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr218", + "Region": " Natore, Pabna, Sirajganj", + "1990": 0.539, + "1991": 0.511, + "1992": 0.564, + "1993": 0.568, + "1994": 0.579, + "1995": 0.591, + "1996": 0.592, + "1997": 0.625, + "1998": 0.666, + "1999": 0.706, + "2000": 0.703, + "2001": 0.712, + "2002": 0.723, + "2003": 0.73, + "2004": 0.739, + "2005": 0.741, + "2006": 0.741, + "2007": 0.733, + "2008": 0.739, + "2009": 0.744, + "2010": 0.764, + "2011": 0.767, + "2012": 0.779, + "2013": 0.779, + "2014": 0.785, + "2015": 0.786, + "2016": 0.787, + "2017": 0.79, + "2018": 0.794, + "2019": 0.79, + "2020": 0.778, + "2021": 0.784 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "National", + "GDLCODE": "BRBt", + "Region": "Total", + "1990": 0.812, + "1991": 0.813, + "1992": 0.814, + "1993": 0.818, + "1994": 0.819, + "1995": 0.82, + "1996": 0.824, + "1997": 0.824, + "1998": 0.827, + "1999": 0.831, + "2000": 0.832, + "2001": 0.835, + "2002": 0.836, + "2003": 0.838, + "2004": 0.842, + "2005": 0.844, + "2006": 0.847, + "2007": 0.851, + "2008": 0.853, + "2009": 0.857, + "2010": 0.857, + "2011": 0.86, + "2012": 0.863, + "2013": 0.866, + "2014": 0.869, + "2015": 0.872, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.883, + "2021": 0.886 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr102", + "Region": "Christ Church and St. Philip", + "1990": 0.812, + "1991": 0.813, + "1992": 0.814, + "1993": 0.818, + "1994": 0.819, + "1995": 0.82, + "1996": 0.824, + "1997": 0.824, + "1998": 0.827, + "1999": 0.831, + "2000": 0.832, + "2001": 0.835, + "2002": 0.836, + "2003": 0.838, + "2004": 0.842, + "2005": 0.844, + "2006": 0.847, + "2007": 0.851, + "2008": 0.853, + "2009": 0.857, + "2010": 0.857, + "2011": 0.86, + "2012": 0.863, + "2013": 0.866, + "2014": 0.869, + "2015": 0.872, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.883, + "2021": 0.886 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr101", + "Region": "St Michael", + "1990": 0.812, + "1991": 0.813, + "1992": 0.814, + "1993": 0.818, + "1994": 0.819, + "1995": 0.82, + "1996": 0.824, + "1997": 0.824, + "1998": 0.827, + "1999": 0.831, + "2000": 0.832, + "2001": 0.835, + "2002": 0.836, + "2003": 0.838, + "2004": 0.842, + "2005": 0.844, + "2006": 0.847, + "2007": 0.851, + "2008": 0.853, + "2009": 0.857, + "2010": 0.857, + "2011": 0.86, + "2012": 0.863, + "2013": 0.866, + "2014": 0.869, + "2015": 0.872, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.883, + "2021": 0.886 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr103", + "Region": "St. James, St. George, and St. Thomas", + "1990": 0.812, + "1991": 0.813, + "1992": 0.814, + "1993": 0.818, + "1994": 0.819, + "1995": 0.82, + "1996": 0.824, + "1997": 0.824, + "1998": 0.827, + "1999": 0.831, + "2000": 0.832, + "2001": 0.835, + "2002": 0.836, + "2003": 0.838, + "2004": 0.842, + "2005": 0.844, + "2006": 0.847, + "2007": 0.851, + "2008": 0.853, + "2009": 0.857, + "2010": 0.857, + "2011": 0.86, + "2012": 0.863, + "2013": 0.866, + "2014": 0.869, + "2015": 0.872, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.883, + "2021": 0.886 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr104", + "Region": "St. Lucy, St. Peter, St. Andrew, St. Joseph, and St. John", + "1990": 0.812, + "1991": 0.813, + "1992": 0.814, + "1993": 0.818, + "1994": 0.819, + "1995": 0.82, + "1996": 0.824, + "1997": 0.824, + "1998": 0.827, + "1999": 0.831, + "2000": 0.832, + "2001": 0.835, + "2002": 0.836, + "2003": 0.838, + "2004": 0.842, + "2005": 0.844, + "2006": 0.847, + "2007": 0.851, + "2008": 0.853, + "2009": 0.857, + "2010": 0.857, + "2011": 0.86, + "2012": 0.863, + "2013": 0.866, + "2014": 0.869, + "2015": 0.872, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.883, + "2021": 0.886 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "National", + "GDLCODE": "BLRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr101", + "Region": "Brest region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr103", + "Region": "Gomel region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr104", + "Region": "Grodno region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr105", + "Region": "Minsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr106", + "Region": "Mogilev region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr102", + "Region": "Vitebsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.751, + "1996": 0.752, + "1997": 0.748, + "1998": 0.748, + "1999": 0.744, + "2000": 0.757, + "2001": 0.752, + "2002": 0.746, + "2003": 0.753, + "2004": 0.76, + "2005": 0.76, + "2006": 0.769, + "2007": 0.781, + "2008": 0.783, + "2009": 0.786, + "2010": 0.786, + "2011": 0.793, + "2012": 0.809, + "2013": 0.815, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.838, + "2018": 0.84, + "2019": 0.834, + "2020": 0.808, + "2021": 0.807 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "National", + "GDLCODE": "BELt", + "Region": "Total", + "1990": 0.862, + "1991": 0.865, + "1992": 0.867, + "1993": 0.867, + "1994": 0.873, + "1995": 0.874, + "1996": 0.88, + "1997": 0.883, + "1998": 0.884, + "1999": 0.887, + "2000": 0.889, + "2001": 0.894, + "2002": 0.895, + "2003": 0.897, + "2004": 0.907, + "2005": 0.909, + "2006": 0.914, + "2007": 0.916, + "2008": 0.917, + "2009": 0.921, + "2010": 0.924, + "2011": 0.929, + "2012": 0.927, + "2013": 0.93, + "2014": 0.94, + "2015": 0.937, + "2016": 0.943, + "2017": 0.944, + "2018": 0.946, + "2019": 0.951, + "2020": 0.935, + "2021": 0.952 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr101", + "Region": "Bruxelles - Brussel", + "1990": 0.867, + "1991": 0.866, + "1992": 0.87, + "1993": 0.876, + "1994": 0.875, + "1995": 0.872, + "1996": 0.884, + "1997": 0.883, + "1998": 0.886, + "1999": 0.885, + "2000": 0.891, + "2001": 0.893, + "2002": 0.892, + "2003": 0.893, + "2004": 0.905, + "2005": 0.908, + "2006": 0.909, + "2007": 0.918, + "2008": 0.914, + "2009": 0.918, + "2010": 0.922, + "2011": 0.931, + "2012": 0.922, + "2013": 0.929, + "2014": 0.936, + "2015": 0.934, + "2016": 0.939, + "2017": 0.938, + "2018": 0.943, + "2019": 0.943, + "2020": 0.927, + "2021": 0.944 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr102", + "Region": "Prov. Antwerpen", + "1990": 0.87, + "1991": 0.876, + "1992": 0.879, + "1993": 0.875, + "1994": 0.886, + "1995": 0.886, + "1996": 0.893, + "1997": 0.897, + "1998": 0.895, + "1999": 0.899, + "2000": 0.899, + "2001": 0.909, + "2002": 0.908, + "2003": 0.912, + "2004": 0.919, + "2005": 0.921, + "2006": 0.925, + "2007": 0.93, + "2008": 0.929, + "2009": 0.933, + "2010": 0.936, + "2011": 0.943, + "2012": 0.937, + "2013": 0.943, + "2014": 0.953, + "2015": 0.951, + "2016": 0.956, + "2017": 0.957, + "2018": 0.958, + "2019": 0.966, + "2020": 0.95, + "2021": 0.967 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr107", + "Region": "Prov. Brabant Wallon", + "1990": 0.864, + "1991": 0.865, + "1992": 0.874, + "1993": 0.875, + "1994": 0.884, + "1995": 0.883, + "1996": 0.881, + "1997": 0.891, + "1998": 0.887, + "1999": 0.897, + "2000": 0.899, + "2001": 0.904, + "2002": 0.906, + "2003": 0.901, + "2004": 0.919, + "2005": 0.924, + "2006": 0.926, + "2007": 0.928, + "2008": 0.922, + "2009": 0.933, + "2010": 0.936, + "2011": 0.938, + "2012": 0.935, + "2013": 0.95, + "2014": 0.945, + "2015": 0.946, + "2016": 0.956, + "2017": 0.952, + "2018": 0.962, + "2019": 0.966, + "2020": 0.95, + "2021": 0.967 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr108", + "Region": "Prov. Hainaut", + "1990": 0.84, + "1991": 0.841, + "1992": 0.841, + "1993": 0.841, + "1994": 0.845, + "1995": 0.85, + "1996": 0.85, + "1997": 0.851, + "1998": 0.855, + "1999": 0.859, + "2000": 0.857, + "2001": 0.861, + "2002": 0.863, + "2003": 0.866, + "2004": 0.873, + "2005": 0.874, + "2006": 0.88, + "2007": 0.879, + "2008": 0.882, + "2009": 0.886, + "2010": 0.888, + "2011": 0.891, + "2012": 0.892, + "2013": 0.893, + "2014": 0.902, + "2015": 0.899, + "2016": 0.901, + "2017": 0.911, + "2018": 0.906, + "2019": 0.912, + "2020": 0.897, + "2021": 0.913 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr109", + "Region": "Prov. Liege", + "1990": 0.841, + "1991": 0.847, + "1992": 0.848, + "1993": 0.849, + "1994": 0.856, + "1995": 0.86, + "1996": 0.864, + "1997": 0.868, + "1998": 0.867, + "1999": 0.871, + "2000": 0.872, + "2001": 0.875, + "2002": 0.877, + "2003": 0.878, + "2004": 0.893, + "2005": 0.889, + "2006": 0.895, + "2007": 0.893, + "2008": 0.898, + "2009": 0.901, + "2010": 0.902, + "2011": 0.903, + "2012": 0.908, + "2013": 0.91, + "2014": 0.917, + "2015": 0.911, + "2016": 0.919, + "2017": 0.918, + "2018": 0.92, + "2019": 0.928, + "2020": 0.912, + "2021": 0.928 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr103", + "Region": "Prov. Limburg", + "1990": 0.875, + "1991": 0.874, + "1992": 0.876, + "1993": 0.879, + "1994": 0.884, + "1995": 0.884, + "1996": 0.895, + "1997": 0.898, + "1998": 0.898, + "1999": 0.9, + "2000": 0.899, + "2001": 0.909, + "2002": 0.906, + "2003": 0.906, + "2004": 0.922, + "2005": 0.923, + "2006": 0.931, + "2007": 0.933, + "2008": 0.934, + "2009": 0.938, + "2010": 0.942, + "2011": 0.945, + "2012": 0.945, + "2013": 0.952, + "2014": 0.96, + "2015": 0.959, + "2016": 0.963, + "2017": 0.967, + "2018": 0.968, + "2019": 0.971, + "2020": 0.954, + "2021": 0.971 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr110", + "Region": "Prov. Luxembourg", + "1990": 0.849, + "1991": 0.844, + "1992": 0.853, + "1993": 0.843, + "1994": 0.852, + "1995": 0.858, + "1996": 0.859, + "1997": 0.858, + "1998": 0.861, + "1999": 0.866, + "2000": 0.879, + "2001": 0.875, + "2002": 0.885, + "2003": 0.884, + "2004": 0.888, + "2005": 0.889, + "2006": 0.889, + "2007": 0.896, + "2008": 0.891, + "2009": 0.901, + "2010": 0.902, + "2011": 0.909, + "2012": 0.911, + "2013": 0.907, + "2014": 0.927, + "2015": 0.922, + "2016": 0.917, + "2017": 0.924, + "2018": 0.929, + "2019": 0.928, + "2020": 0.912, + "2021": 0.928 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr111", + "Region": "Prov. Namur", + "1990": 0.837, + "1991": 0.828, + "1992": 0.851, + "1993": 0.84, + "1994": 0.845, + "1995": 0.843, + "1996": 0.861, + "1997": 0.858, + "1998": 0.864, + "1999": 0.866, + "2000": 0.865, + "2001": 0.869, + "2002": 0.869, + "2003": 0.876, + "2004": 0.881, + "2005": 0.883, + "2006": 0.892, + "2007": 0.896, + "2008": 0.891, + "2009": 0.899, + "2010": 0.9, + "2011": 0.906, + "2012": 0.9, + "2013": 0.9, + "2014": 0.91, + "2015": 0.91, + "2016": 0.914, + "2017": 0.915, + "2018": 0.919, + "2019": 0.925, + "2020": 0.909, + "2021": 0.925 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr104", + "Region": "Prov. Oost-Vlaanderen", + "1990": 0.867, + "1991": 0.869, + "1992": 0.87, + "1993": 0.869, + "1994": 0.877, + "1995": 0.875, + "1996": 0.883, + "1997": 0.884, + "1998": 0.889, + "1999": 0.891, + "2000": 0.894, + "2001": 0.896, + "2002": 0.9, + "2003": 0.906, + "2004": 0.91, + "2005": 0.914, + "2006": 0.917, + "2007": 0.918, + "2008": 0.923, + "2009": 0.926, + "2010": 0.931, + "2011": 0.934, + "2012": 0.934, + "2013": 0.936, + "2014": 0.951, + "2015": 0.943, + "2016": 0.953, + "2017": 0.954, + "2018": 0.955, + "2019": 0.96, + "2020": 0.944, + "2021": 0.961 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr105", + "Region": "Prov. Vlaams-Brabant", + "1990": 0.878, + "1991": 0.882, + "1992": 0.883, + "1993": 0.89, + "1994": 0.889, + "1995": 0.897, + "1996": 0.899, + "1997": 0.901, + "1998": 0.903, + "1999": 0.902, + "2000": 0.906, + "2001": 0.912, + "2002": 0.915, + "2003": 0.915, + "2004": 0.925, + "2005": 0.928, + "2006": 0.937, + "2007": 0.937, + "2008": 0.94, + "2009": 0.942, + "2010": 0.945, + "2011": 0.951, + "2012": 0.949, + "2013": 0.95, + "2014": 0.959, + "2015": 0.959, + "2016": 0.963, + "2017": 0.966, + "2018": 0.966, + "2019": 0.972, + "2020": 0.956, + "2021": 0.973 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr106", + "Region": "Prov. West-Vlaanderen", + "1990": 0.876, + "1991": 0.882, + "1992": 0.879, + "1993": 0.878, + "1994": 0.881, + "1995": 0.887, + "1996": 0.884, + "1997": 0.898, + "1998": 0.896, + "1999": 0.9, + "2000": 0.903, + "2001": 0.907, + "2002": 0.908, + "2003": 0.91, + "2004": 0.924, + "2005": 0.923, + "2006": 0.929, + "2007": 0.93, + "2008": 0.929, + "2009": 0.933, + "2010": 0.936, + "2011": 0.943, + "2012": 0.945, + "2013": 0.943, + "2014": 0.954, + "2015": 0.951, + "2016": 0.96, + "2017": 0.957, + "2018": 0.96, + "2019": 0.969, + "2020": 0.953, + "2021": 0.97 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "National", + "GDLCODE": "BLZt", + "Region": "Total", + "1990": 0.781, + "1991": 0.773, + "1992": 0.769, + "1993": 0.769, + "1994": 0.774, + "1995": 0.767, + "1996": 0.766, + "1997": 0.757, + "1998": 0.748, + "1999": 0.75, + "2000": 0.747, + "2001": 0.744, + "2002": 0.75, + "2003": 0.752, + "2004": 0.757, + "2005": 0.76, + "2006": 0.771, + "2007": 0.779, + "2008": 0.787, + "2009": 0.797, + "2010": 0.804, + "2011": 0.81, + "2012": 0.819, + "2013": 0.826, + "2014": 0.82, + "2015": 0.818, + "2016": 0.822, + "2017": 0.824, + "2018": 0.826, + "2019": 0.83, + "2020": 0.813, + "2021": 0.776 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr102", + "Region": "Belize", + "1990": 0.744, + "1991": 0.737, + "1992": 0.733, + "1993": 0.733, + "1994": 0.738, + "1995": 0.731, + "1996": 0.73, + "1997": 0.721, + "1998": 0.712, + "1999": 0.715, + "2000": 0.712, + "2001": 0.709, + "2002": 0.715, + "2003": 0.717, + "2004": 0.722, + "2005": 0.724, + "2006": 0.734, + "2007": 0.742, + "2008": 0.75, + "2009": 0.759, + "2010": 0.766, + "2011": 0.771, + "2012": 0.78, + "2013": 0.786, + "2014": 0.781, + "2015": 0.779, + "2016": 0.782, + "2017": 0.784, + "2018": 0.786, + "2019": 0.79, + "2020": 0.774, + "2021": 0.738 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr103", + "Region": "Cayo", + "1990": 0.761, + "1991": 0.754, + "1992": 0.75, + "1993": 0.75, + "1994": 0.755, + "1995": 0.748, + "1996": 0.747, + "1997": 0.738, + "1998": 0.729, + "1999": 0.732, + "2000": 0.728, + "2001": 0.725, + "2002": 0.731, + "2003": 0.734, + "2004": 0.739, + "2005": 0.741, + "2006": 0.752, + "2007": 0.76, + "2008": 0.767, + "2009": 0.777, + "2010": 0.784, + "2011": 0.79, + "2012": 0.799, + "2013": 0.805, + "2014": 0.8, + "2015": 0.798, + "2016": 0.801, + "2017": 0.804, + "2018": 0.806, + "2019": 0.809, + "2020": 0.793, + "2021": 0.757 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr101", + "Region": "Corozal, Orange Walk", + "1990": 0.77, + "1991": 0.762, + "1992": 0.758, + "1993": 0.758, + "1994": 0.763, + "1995": 0.757, + "1996": 0.755, + "1997": 0.746, + "1998": 0.737, + "1999": 0.74, + "2000": 0.737, + "2001": 0.733, + "2002": 0.739, + "2003": 0.742, + "2004": 0.747, + "2005": 0.749, + "2006": 0.76, + "2007": 0.773, + "2008": 0.785, + "2009": 0.8, + "2010": 0.812, + "2011": 0.822, + "2012": 0.832, + "2013": 0.838, + "2014": 0.833, + "2015": 0.831, + "2016": 0.834, + "2017": 0.836, + "2018": 0.839, + "2019": 0.842, + "2020": 0.825, + "2021": 0.788 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr104", + "Region": "Stann Creek, Toledo", + "1990": 0.769, + "1991": 0.761, + "1992": 0.757, + "1993": 0.757, + "1994": 0.762, + "1995": 0.756, + "1996": 0.754, + "1997": 0.745, + "1998": 0.736, + "1999": 0.739, + "2000": 0.736, + "2001": 0.732, + "2002": 0.738, + "2003": 0.741, + "2004": 0.746, + "2005": 0.748, + "2006": 0.759, + "2007": 0.775, + "2008": 0.79, + "2009": 0.808, + "2010": 0.822, + "2011": 0.836, + "2012": 0.845, + "2013": 0.852, + "2014": 0.846, + "2015": 0.844, + "2016": 0.847, + "2017": 0.85, + "2018": 0.852, + "2019": 0.856, + "2020": 0.839, + "2021": 0.801 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "National", + "GDLCODE": "BENt", + "Region": "Total", + "1990": 0.512, + "1991": 0.517, + "1992": 0.524, + "1993": 0.531, + "1994": 0.537, + "1995": 0.543, + "1996": 0.547, + "1997": 0.554, + "1998": 0.557, + "1999": 0.562, + "2000": 0.563, + "2001": 0.564, + "2002": 0.563, + "2003": 0.565, + "2004": 0.567, + "2005": 0.571, + "2006": 0.576, + "2007": 0.58, + "2008": 0.583, + "2009": 0.584, + "2010": 0.59, + "2011": 0.592, + "2012": 0.596, + "2013": 0.599, + "2014": 0.602, + "2015": 0.606, + "2016": 0.608, + "2017": 0.613, + "2018": 0.618, + "2019": 0.622, + "2020": 0.617, + "2021": 0.613 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr101", + "Region": "Atacora (incl Donga)", + "1990": 0.495, + "1991": 0.5, + "1992": 0.507, + "1993": 0.514, + "1994": 0.519, + "1995": 0.525, + "1996": 0.529, + "1997": 0.537, + "1998": 0.542, + "1999": 0.548, + "2000": 0.55, + "2001": 0.552, + "2002": 0.543, + "2003": 0.536, + "2004": 0.528, + "2005": 0.524, + "2006": 0.52, + "2007": 0.538, + "2008": 0.554, + "2009": 0.568, + "2010": 0.587, + "2011": 0.6, + "2012": 0.598, + "2013": 0.595, + "2014": 0.591, + "2015": 0.588, + "2016": 0.584, + "2017": 0.581, + "2018": 0.578, + "2019": 0.583, + "2020": 0.578, + "2021": 0.574 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr102", + "Region": "Atlantique (incl Littoral (Cotonou))", + "1990": 0.524, + "1991": 0.53, + "1992": 0.537, + "1993": 0.544, + "1994": 0.55, + "1995": 0.556, + "1996": 0.56, + "1997": 0.576, + "1998": 0.59, + "1999": 0.604, + "2000": 0.614, + "2001": 0.625, + "2002": 0.621, + "2003": 0.619, + "2004": 0.618, + "2005": 0.619, + "2006": 0.621, + "2007": 0.617, + "2008": 0.613, + "2009": 0.607, + "2010": 0.607, + "2011": 0.602, + "2012": 0.606, + "2013": 0.61, + "2014": 0.612, + "2015": 0.616, + "2016": 0.618, + "2017": 0.623, + "2018": 0.627, + "2019": 0.632, + "2020": 0.627, + "2021": 0.622 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr103", + "Region": "Borgou (incl Alibori)", + "1990": 0.524, + "1991": 0.529, + "1992": 0.536, + "1993": 0.543, + "1994": 0.549, + "1995": 0.555, + "1996": 0.559, + "1997": 0.56, + "1998": 0.558, + "1999": 0.556, + "2000": 0.551, + "2001": 0.547, + "2002": 0.547, + "2003": 0.55, + "2004": 0.553, + "2005": 0.559, + "2006": 0.565, + "2007": 0.568, + "2008": 0.571, + "2009": 0.572, + "2010": 0.578, + "2011": 0.58, + "2012": 0.588, + "2013": 0.596, + "2014": 0.602, + "2015": 0.611, + "2016": 0.617, + "2017": 0.627, + "2018": 0.636, + "2019": 0.641, + "2020": 0.635, + "2021": 0.631 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr104", + "Region": "Mono (incl Couffo)", + "1990": 0.507, + "1991": 0.512, + "1992": 0.519, + "1993": 0.526, + "1994": 0.532, + "1995": 0.538, + "1996": 0.542, + "1997": 0.552, + "1998": 0.559, + "1999": 0.568, + "2000": 0.572, + "2001": 0.577, + "2002": 0.581, + "2003": 0.587, + "2004": 0.593, + "2005": 0.602, + "2006": 0.612, + "2007": 0.606, + "2008": 0.601, + "2009": 0.593, + "2010": 0.592, + "2011": 0.586, + "2012": 0.589, + "2013": 0.592, + "2014": 0.593, + "2015": 0.596, + "2016": 0.598, + "2017": 0.602, + "2018": 0.605, + "2019": 0.61, + "2020": 0.604, + "2021": 0.6 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr105", + "Region": "Queme (incl Plateau)", + "1990": 0.532, + "1991": 0.537, + "1992": 0.544, + "1993": 0.551, + "1994": 0.557, + "1995": 0.563, + "1996": 0.567, + "1997": 0.572, + "1998": 0.574, + "1999": 0.577, + "2000": 0.576, + "2001": 0.576, + "2002": 0.57, + "2003": 0.567, + "2004": 0.564, + "2005": 0.564, + "2006": 0.564, + "2007": 0.577, + "2008": 0.589, + "2009": 0.599, + "2010": 0.613, + "2011": 0.623, + "2012": 0.625, + "2013": 0.627, + "2014": 0.627, + "2015": 0.629, + "2016": 0.63, + "2017": 0.633, + "2018": 0.635, + "2019": 0.64, + "2020": 0.634, + "2021": 0.63 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr106", + "Region": "Zou (incl Collines)", + "1990": 0.495, + "1991": 0.5, + "1992": 0.507, + "1993": 0.514, + "1994": 0.52, + "1995": 0.525, + "1996": 0.529, + "1997": 0.533, + "1998": 0.534, + "1999": 0.536, + "2000": 0.535, + "2001": 0.534, + "2002": 0.54, + "2003": 0.55, + "2004": 0.558, + "2005": 0.57, + "2006": 0.582, + "2007": 0.576, + "2008": 0.57, + "2009": 0.563, + "2010": 0.56, + "2011": 0.554, + "2012": 0.562, + "2013": 0.57, + "2014": 0.577, + "2015": 0.585, + "2016": 0.592, + "2017": 0.602, + "2018": 0.611, + "2019": 0.615, + "2020": 0.61, + "2021": 0.606 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "National", + "GDLCODE": "BTNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.705, + "2006": 0.713, + "2007": 0.722, + "2008": 0.731, + "2009": 0.737, + "2010": 0.745, + "2011": 0.752, + "2012": 0.759, + "2013": 0.765, + "2014": 0.77, + "2015": 0.775, + "2016": 0.778, + "2017": 0.782, + "2018": 0.787, + "2019": 0.791, + "2020": 0.794, + "2021": 0.797 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr101", + "Region": "Bumthang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.692, + "2006": 0.7, + "2007": 0.709, + "2008": 0.717, + "2009": 0.723, + "2010": 0.732, + "2011": 0.738, + "2012": 0.745, + "2013": 0.751, + "2014": 0.756, + "2015": 0.761, + "2016": 0.765, + "2017": 0.768, + "2018": 0.773, + "2019": 0.777, + "2020": 0.78, + "2021": 0.783 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr102", + "Region": "Chukha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.658, + "2006": 0.666, + "2007": 0.675, + "2008": 0.683, + "2009": 0.689, + "2010": 0.697, + "2011": 0.703, + "2012": 0.71, + "2013": 0.715, + "2014": 0.72, + "2015": 0.725, + "2016": 0.729, + "2017": 0.732, + "2018": 0.736, + "2019": 0.74, + "2020": 0.743, + "2021": 0.746 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr103", + "Region": "Dagana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.734, + "2006": 0.743, + "2007": 0.752, + "2008": 0.761, + "2009": 0.767, + "2010": 0.776, + "2011": 0.783, + "2012": 0.79, + "2013": 0.796, + "2014": 0.801, + "2015": 0.806, + "2016": 0.81, + "2017": 0.814, + "2018": 0.818, + "2019": 0.823, + "2020": 0.826, + "2021": 0.829 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr104", + "Region": "Gasa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.602, + "2006": 0.61, + "2007": 0.618, + "2008": 0.626, + "2009": 0.631, + "2010": 0.638, + "2011": 0.645, + "2012": 0.651, + "2013": 0.656, + "2014": 0.661, + "2015": 0.665, + "2016": 0.668, + "2017": 0.672, + "2018": 0.676, + "2019": 0.679, + "2020": 0.682, + "2021": 0.685 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr105", + "Region": "Haa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.799, + "2006": 0.809, + "2007": 0.819, + "2008": 0.828, + "2009": 0.835, + "2010": 0.844, + "2011": 0.851, + "2012": 0.859, + "2013": 0.865, + "2014": 0.871, + "2015": 0.876, + "2016": 0.88, + "2017": 0.884, + "2018": 0.889, + "2019": 0.893, + "2020": 0.897, + "2021": 0.9 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr106", + "Region": "Lhuntse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.785, + "2006": 0.795, + "2007": 0.805, + "2008": 0.814, + "2009": 0.82, + "2010": 0.829, + "2011": 0.837, + "2012": 0.844, + "2013": 0.85, + "2014": 0.856, + "2015": 0.861, + "2016": 0.865, + "2017": 0.869, + "2018": 0.874, + "2019": 0.878, + "2020": 0.882, + "2021": 0.885 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr107", + "Region": "Mongar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.673, + "2006": 0.682, + "2007": 0.69, + "2008": 0.699, + "2009": 0.705, + "2010": 0.712, + "2011": 0.719, + "2012": 0.726, + "2013": 0.732, + "2014": 0.737, + "2015": 0.741, + "2016": 0.745, + "2017": 0.749, + "2018": 0.753, + "2019": 0.757, + "2020": 0.76, + "2021": 0.763 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr108", + "Region": "Paro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.799, + "2006": 0.809, + "2007": 0.819, + "2008": 0.828, + "2009": 0.835, + "2010": 0.844, + "2011": 0.851, + "2012": 0.859, + "2013": 0.865, + "2014": 0.871, + "2015": 0.876, + "2016": 0.88, + "2017": 0.884, + "2018": 0.889, + "2019": 0.893, + "2020": 0.897, + "2021": 0.9 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr109", + "Region": "Pemagatshel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.675, + "2006": 0.683, + "2007": 0.692, + "2008": 0.7, + "2009": 0.706, + "2010": 0.714, + "2011": 0.721, + "2012": 0.727, + "2013": 0.733, + "2014": 0.738, + "2015": 0.743, + "2016": 0.746, + "2017": 0.75, + "2018": 0.754, + "2019": 0.758, + "2020": 0.761, + "2021": 0.765 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr110", + "Region": "Punakha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.711, + "2006": 0.719, + "2007": 0.728, + "2008": 0.737, + "2009": 0.743, + "2010": 0.751, + "2011": 0.758, + "2012": 0.765, + "2013": 0.771, + "2014": 0.776, + "2015": 0.781, + "2016": 0.785, + "2017": 0.789, + "2018": 0.793, + "2019": 0.797, + "2020": 0.8, + "2021": 0.804 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr111", + "Region": "Samdrup jongkhar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.644, + "2006": 0.652, + "2007": 0.66, + "2008": 0.668, + "2009": 0.674, + "2010": 0.682, + "2011": 0.688, + "2012": 0.695, + "2013": 0.7, + "2014": 0.705, + "2015": 0.709, + "2016": 0.713, + "2017": 0.717, + "2018": 0.721, + "2019": 0.725, + "2020": 0.728, + "2021": 0.731 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr112", + "Region": "Samtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.674, + "2006": 0.683, + "2007": 0.692, + "2008": 0.7, + "2009": 0.706, + "2010": 0.714, + "2011": 0.72, + "2012": 0.727, + "2013": 0.733, + "2014": 0.738, + "2015": 0.742, + "2016": 0.746, + "2017": 0.75, + "2018": 0.754, + "2019": 0.758, + "2020": 0.761, + "2021": 0.764 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr113", + "Region": "Sarpang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.745, + "2006": 0.754, + "2007": 0.764, + "2008": 0.772, + "2009": 0.779, + "2010": 0.787, + "2011": 0.795, + "2012": 0.802, + "2013": 0.808, + "2014": 0.813, + "2015": 0.818, + "2016": 0.822, + "2017": 0.826, + "2018": 0.831, + "2019": 0.835, + "2020": 0.838, + "2021": 0.842 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr114", + "Region": "Thimphu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.804, + "2006": 0.813, + "2007": 0.823, + "2008": 0.832, + "2009": 0.839, + "2010": 0.848, + "2011": 0.856, + "2012": 0.863, + "2013": 0.87, + "2014": 0.876, + "2015": 0.88, + "2016": 0.885, + "2017": 0.889, + "2018": 0.894, + "2019": 0.898, + "2020": 0.902, + "2021": 0.905 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr115", + "Region": "Trashigang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.65, + "2006": 0.658, + "2007": 0.667, + "2008": 0.675, + "2009": 0.68, + "2010": 0.688, + "2011": 0.695, + "2012": 0.701, + "2013": 0.707, + "2014": 0.712, + "2015": 0.716, + "2016": 0.72, + "2017": 0.723, + "2018": 0.728, + "2019": 0.731, + "2020": 0.735, + "2021": 0.738 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr116", + "Region": "Trashiyangtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.699, + "2006": 0.707, + "2007": 0.716, + "2008": 0.725, + "2009": 0.731, + "2010": 0.739, + "2011": 0.746, + "2012": 0.753, + "2013": 0.759, + "2014": 0.764, + "2015": 0.768, + "2016": 0.772, + "2017": 0.776, + "2018": 0.78, + "2019": 0.784, + "2020": 0.788, + "2021": 0.791 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr117", + "Region": "Trongsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.687, + "2006": 0.695, + "2007": 0.704, + "2008": 0.712, + "2009": 0.718, + "2010": 0.726, + "2011": 0.733, + "2012": 0.74, + "2013": 0.745, + "2014": 0.751, + "2015": 0.755, + "2016": 0.759, + "2017": 0.763, + "2018": 0.767, + "2019": 0.771, + "2020": 0.774, + "2021": 0.777 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr118", + "Region": "Tsirang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.73, + "2006": 0.739, + "2007": 0.749, + "2008": 0.757, + "2009": 0.763, + "2010": 0.772, + "2011": 0.779, + "2012": 0.786, + "2013": 0.792, + "2014": 0.797, + "2015": 0.802, + "2016": 0.806, + "2017": 0.81, + "2018": 0.814, + "2019": 0.819, + "2020": 0.822, + "2021": 0.825 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr119", + "Region": "Wangdi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.717, + "2006": 0.725, + "2007": 0.735, + "2008": 0.743, + "2009": 0.749, + "2010": 0.758, + "2011": 0.765, + "2012": 0.771, + "2013": 0.777, + "2014": 0.783, + "2015": 0.787, + "2016": 0.791, + "2017": 0.795, + "2018": 0.8, + "2019": 0.804, + "2020": 0.807, + "2021": 0.81 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr120", + "Region": "Zhemgang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.714, + "2006": 0.722, + "2007": 0.732, + "2008": 0.74, + "2009": 0.746, + "2010": 0.754, + "2011": 0.761, + "2012": 0.768, + "2013": 0.774, + "2014": 0.78, + "2015": 0.784, + "2016": 0.788, + "2017": 0.792, + "2018": 0.796, + "2019": 0.8, + "2020": 0.804, + "2021": 0.807 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "National", + "GDLCODE": "BOLt", + "Region": "Total", + "1990": 0.56, + "1991": 0.571, + "1992": 0.579, + "1993": 0.591, + "1994": 0.6, + "1995": 0.608, + "1996": 0.617, + "1997": 0.627, + "1998": 0.636, + "1999": 0.644, + "2000": 0.651, + "2001": 0.659, + "2002": 0.666, + "2003": 0.671, + "2004": 0.677, + "2005": 0.683, + "2006": 0.689, + "2007": 0.693, + "2008": 0.699, + "2009": 0.706, + "2010": 0.71, + "2011": 0.716, + "2012": 0.719, + "2013": 0.723, + "2014": 0.726, + "2015": 0.728, + "2016": 0.733, + "2017": 0.734, + "2018": 0.735, + "2019": 0.736, + "2020": 0.684, + "2021": 0.671 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr108", + "Region": "Beni", + "1990": 0.613, + "1991": 0.624, + "1992": 0.633, + "1993": 0.646, + "1994": 0.655, + "1995": 0.664, + "1996": 0.673, + "1997": 0.684, + "1998": 0.693, + "1999": 0.699, + "2000": 0.705, + "2001": 0.71, + "2002": 0.715, + "2003": 0.718, + "2004": 0.723, + "2005": 0.728, + "2006": 0.733, + "2007": 0.736, + "2008": 0.741, + "2009": 0.748, + "2010": 0.753, + "2011": 0.759, + "2012": 0.761, + "2013": 0.767, + "2014": 0.769, + "2015": 0.771, + "2016": 0.776, + "2017": 0.777, + "2018": 0.778, + "2019": 0.78, + "2020": 0.726, + "2021": 0.712 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr101", + "Region": "Chuquisaca", + "1990": 0.534, + "1991": 0.544, + "1992": 0.552, + "1993": 0.563, + "1994": 0.572, + "1995": 0.58, + "1996": 0.588, + "1997": 0.598, + "1998": 0.607, + "1999": 0.62, + "2000": 0.632, + "2001": 0.645, + "2002": 0.657, + "2003": 0.667, + "2004": 0.683, + "2005": 0.698, + "2006": 0.714, + "2007": 0.727, + "2008": 0.743, + "2009": 0.75, + "2010": 0.754, + "2011": 0.76, + "2012": 0.763, + "2013": 0.768, + "2014": 0.77, + "2015": 0.773, + "2016": 0.778, + "2017": 0.779, + "2018": 0.78, + "2019": 0.781, + "2020": 0.727, + "2021": 0.714 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr103", + "Region": "Cochabamba", + "1990": 0.545, + "1991": 0.555, + "1992": 0.563, + "1993": 0.575, + "1994": 0.583, + "1995": 0.592, + "1996": 0.6, + "1997": 0.61, + "1998": 0.619, + "1999": 0.626, + "2000": 0.632, + "2001": 0.639, + "2002": 0.645, + "2003": 0.649, + "2004": 0.655, + "2005": 0.662, + "2006": 0.669, + "2007": 0.674, + "2008": 0.681, + "2009": 0.688, + "2010": 0.692, + "2011": 0.698, + "2012": 0.7, + "2013": 0.705, + "2014": 0.707, + "2015": 0.71, + "2016": 0.714, + "2017": 0.715, + "2018": 0.716, + "2019": 0.718, + "2020": 0.667, + "2021": 0.654 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr102", + "Region": "La Paz", + "1990": 0.549, + "1991": 0.56, + "1992": 0.568, + "1993": 0.58, + "1994": 0.588, + "1995": 0.597, + "1996": 0.605, + "1997": 0.615, + "1998": 0.624, + "1999": 0.634, + "2000": 0.643, + "2001": 0.653, + "2002": 0.662, + "2003": 0.669, + "2004": 0.673, + "2005": 0.677, + "2006": 0.682, + "2007": 0.684, + "2008": 0.689, + "2009": 0.696, + "2010": 0.7, + "2011": 0.706, + "2012": 0.708, + "2013": 0.713, + "2014": 0.715, + "2015": 0.717, + "2016": 0.722, + "2017": 0.723, + "2018": 0.724, + "2019": 0.725, + "2020": 0.674, + "2021": 0.661 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr104", + "Region": "Oruro", + "1990": 0.571, + "1991": 0.581, + "1992": 0.59, + "1993": 0.602, + "1994": 0.611, + "1995": 0.619, + "1996": 0.628, + "1997": 0.638, + "1998": 0.647, + "1999": 0.646, + "2000": 0.644, + "2001": 0.642, + "2002": 0.639, + "2003": 0.634, + "2004": 0.65, + "2005": 0.667, + "2006": 0.683, + "2007": 0.697, + "2008": 0.714, + "2009": 0.721, + "2010": 0.725, + "2011": 0.731, + "2012": 0.734, + "2013": 0.739, + "2014": 0.741, + "2015": 0.743, + "2016": 0.748, + "2017": 0.749, + "2018": 0.75, + "2019": 0.751, + "2020": 0.699, + "2021": 0.686 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr109", + "Region": "Pando", + "1990": 0.559, + "1991": 0.57, + "1992": 0.578, + "1993": 0.59, + "1994": 0.599, + "1995": 0.607, + "1996": 0.616, + "1997": 0.626, + "1998": 0.635, + "1999": 0.653, + "2000": 0.671, + "2001": 0.689, + "2002": 0.706, + "2003": 0.722, + "2004": 0.723, + "2005": 0.725, + "2006": 0.727, + "2007": 0.727, + "2008": 0.729, + "2009": 0.736, + "2010": 0.741, + "2011": 0.746, + "2012": 0.749, + "2013": 0.754, + "2014": 0.756, + "2015": 0.759, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.714, + "2021": 0.7 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr105", + "Region": "Potosi", + "1990": 0.494, + "1991": 0.504, + "1992": 0.511, + "1993": 0.522, + "1994": 0.531, + "1995": 0.538, + "1996": 0.546, + "1997": 0.556, + "1998": 0.564, + "1999": 0.572, + "2000": 0.58, + "2001": 0.588, + "2002": 0.595, + "2003": 0.601, + "2004": 0.603, + "2005": 0.604, + "2006": 0.607, + "2007": 0.607, + "2008": 0.609, + "2009": 0.615, + "2010": 0.619, + "2011": 0.624, + "2012": 0.627, + "2013": 0.631, + "2014": 0.633, + "2015": 0.635, + "2016": 0.64, + "2017": 0.641, + "2018": 0.641, + "2019": 0.643, + "2020": 0.595, + "2021": 0.584 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr107", + "Region": "Santa Cruz", + "1990": 0.612, + "1991": 0.623, + "1992": 0.632, + "1993": 0.644, + "1994": 0.654, + "1995": 0.663, + "1996": 0.672, + "1997": 0.682, + "1998": 0.692, + "1999": 0.698, + "2000": 0.704, + "2001": 0.71, + "2002": 0.715, + "2003": 0.718, + "2004": 0.728, + "2005": 0.737, + "2006": 0.747, + "2007": 0.755, + "2008": 0.765, + "2009": 0.772, + "2010": 0.777, + "2011": 0.783, + "2012": 0.786, + "2013": 0.791, + "2014": 0.793, + "2015": 0.796, + "2016": 0.801, + "2017": 0.802, + "2018": 0.803, + "2019": 0.804, + "2020": 0.749, + "2021": 0.735 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr106", + "Region": "Tarija", + "1990": 0.612, + "1991": 0.623, + "1992": 0.632, + "1993": 0.645, + "1994": 0.654, + "1995": 0.663, + "1996": 0.672, + "1997": 0.683, + "1998": 0.692, + "1999": 0.701, + "2000": 0.71, + "2001": 0.718, + "2002": 0.726, + "2003": 0.732, + "2004": 0.738, + "2005": 0.744, + "2006": 0.75, + "2007": 0.753, + "2008": 0.76, + "2009": 0.767, + "2010": 0.772, + "2011": 0.778, + "2012": 0.78, + "2013": 0.786, + "2014": 0.788, + "2015": 0.79, + "2016": 0.795, + "2017": 0.797, + "2018": 0.797, + "2019": 0.799, + "2020": 0.744, + "2021": 0.73 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "National", + "GDLCODE": "BIHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.838, + "2001": 0.847, + "2002": 0.84, + "2003": 0.858, + "2004": 0.864, + "2005": 0.853, + "2006": 0.865, + "2007": 0.864, + "2008": 0.874, + "2009": 0.877, + "2010": 0.878, + "2011": 0.877, + "2012": 0.88, + "2013": 0.867, + "2014": 0.856, + "2015": 0.864, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.865, + "2021": 0.851 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr103", + "Region": "Central Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.838, + "2001": 0.847, + "2002": 0.84, + "2003": 0.858, + "2004": 0.864, + "2005": 0.853, + "2006": 0.865, + "2007": 0.864, + "2008": 0.874, + "2009": 0.877, + "2010": 0.878, + "2011": 0.877, + "2012": 0.88, + "2013": 0.867, + "2014": 0.856, + "2015": 0.864, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.865, + "2021": 0.851 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr102", + "Region": "Northern Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.838, + "2001": 0.847, + "2002": 0.84, + "2003": 0.858, + "2004": 0.864, + "2005": 0.853, + "2006": 0.865, + "2007": 0.864, + "2008": 0.874, + "2009": 0.877, + "2010": 0.878, + "2011": 0.877, + "2012": 0.88, + "2013": 0.867, + "2014": 0.856, + "2015": 0.864, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.865, + "2021": 0.851 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr105", + "Region": "Republica Srpska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.838, + "2001": 0.847, + "2002": 0.84, + "2003": 0.858, + "2004": 0.864, + "2005": 0.853, + "2006": 0.865, + "2007": 0.864, + "2008": 0.874, + "2009": 0.877, + "2010": 0.878, + "2011": 0.877, + "2012": 0.88, + "2013": 0.867, + "2014": 0.856, + "2015": 0.864, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.865, + "2021": 0.851 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr101", + "Region": "Western Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.838, + "2001": 0.847, + "2002": 0.84, + "2003": 0.858, + "2004": 0.864, + "2005": 0.853, + "2006": 0.865, + "2007": 0.864, + "2008": 0.874, + "2009": 0.877, + "2010": 0.878, + "2011": 0.877, + "2012": 0.88, + "2013": 0.867, + "2014": 0.856, + "2015": 0.864, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.865, + "2021": 0.851 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr104", + "Region": "Western herzegovina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.838, + "2001": 0.847, + "2002": 0.84, + "2003": 0.858, + "2004": 0.864, + "2005": 0.853, + "2006": 0.865, + "2007": 0.864, + "2008": 0.874, + "2009": 0.877, + "2010": 0.878, + "2011": 0.877, + "2012": 0.88, + "2013": 0.867, + "2014": 0.856, + "2015": 0.864, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.881, + "2020": 0.865, + "2021": 0.851 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "National", + "GDLCODE": "BWAt", + "Region": "Total", + "1990": 0.624, + "1991": 0.607, + "1992": 0.59, + "1993": 0.58, + "1994": 0.556, + "1995": 0.539, + "1996": 0.529, + "1997": 0.515, + "1998": 0.5, + "1999": 0.488, + "2000": 0.477, + "2001": 0.472, + "2002": 0.471, + "2003": 0.476, + "2004": 0.486, + "2005": 0.502, + "2006": 0.522, + "2007": 0.55, + "2008": 0.571, + "2009": 0.589, + "2010": 0.616, + "2011": 0.624, + "2012": 0.628, + "2013": 0.646, + "2014": 0.656, + "2015": 0.674, + "2016": 0.699, + "2017": 0.719, + "2018": 0.699, + "2019": 0.699, + "2020": 0.702, + "2021": 0.633 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr101", + "Region": "Central", + "1990": 0.601, + "1991": 0.585, + "1992": 0.569, + "1993": 0.559, + "1994": 0.536, + "1995": 0.519, + "1996": 0.509, + "1997": 0.495, + "1998": 0.481, + "1999": 0.469, + "2000": 0.458, + "2001": 0.453, + "2002": 0.454, + "2003": 0.461, + "2004": 0.472, + "2005": 0.489, + "2006": 0.51, + "2007": 0.54, + "2008": 0.563, + "2009": 0.582, + "2010": 0.61, + "2011": 0.62, + "2012": 0.624, + "2013": 0.643, + "2014": 0.652, + "2015": 0.671, + "2016": 0.696, + "2017": 0.716, + "2018": 0.695, + "2019": 0.696, + "2020": 0.699, + "2021": 0.63 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr110", + "Region": "Chobe", + "1990": 0.631, + "1991": 0.615, + "1992": 0.597, + "1993": 0.587, + "1994": 0.563, + "1995": 0.546, + "1996": 0.535, + "1997": 0.521, + "1998": 0.507, + "1999": 0.494, + "2000": 0.483, + "2001": 0.478, + "2002": 0.474, + "2003": 0.476, + "2004": 0.482, + "2005": 0.494, + "2006": 0.511, + "2007": 0.534, + "2008": 0.552, + "2009": 0.565, + "2010": 0.587, + "2011": 0.591, + "2012": 0.595, + "2013": 0.613, + "2014": 0.622, + "2015": 0.64, + "2016": 0.664, + "2017": 0.684, + "2018": 0.664, + "2019": 0.664, + "2020": 0.667, + "2021": 0.6 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr102", + "Region": "Ghanzi", + "1990": 0.63, + "1991": 0.614, + "1992": 0.596, + "1993": 0.586, + "1994": 0.562, + "1995": 0.545, + "1996": 0.534, + "1997": 0.52, + "1998": 0.506, + "1999": 0.493, + "2000": 0.483, + "2001": 0.477, + "2002": 0.476, + "2003": 0.479, + "2004": 0.489, + "2005": 0.503, + "2006": 0.522, + "2007": 0.549, + "2008": 0.569, + "2009": 0.585, + "2010": 0.611, + "2011": 0.617, + "2012": 0.621, + "2013": 0.64, + "2014": 0.649, + "2015": 0.667, + "2016": 0.693, + "2017": 0.712, + "2018": 0.692, + "2019": 0.693, + "2020": 0.695, + "2021": 0.627 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr103", + "Region": "Kgalagadi", + "1990": 0.541, + "1991": 0.526, + "1992": 0.51, + "1993": 0.502, + "1994": 0.48, + "1995": 0.464, + "1996": 0.454, + "1997": 0.442, + "1998": 0.429, + "1999": 0.417, + "2000": 0.407, + "2001": 0.403, + "2002": 0.408, + "2003": 0.419, + "2004": 0.435, + "2005": 0.455, + "2006": 0.481, + "2007": 0.514, + "2008": 0.541, + "2009": 0.566, + "2010": 0.599, + "2011": 0.614, + "2012": 0.618, + "2013": 0.636, + "2014": 0.645, + "2015": 0.664, + "2016": 0.689, + "2017": 0.708, + "2018": 0.688, + "2019": 0.689, + "2020": 0.692, + "2021": 0.623 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr104", + "Region": "Kgatleng", + "1990": 0.679, + "1991": 0.662, + "1992": 0.644, + "1993": 0.634, + "1994": 0.608, + "1995": 0.59, + "1996": 0.579, + "1997": 0.564, + "1998": 0.549, + "1999": 0.535, + "2000": 0.524, + "2001": 0.519, + "2002": 0.515, + "2003": 0.517, + "2004": 0.524, + "2005": 0.537, + "2006": 0.554, + "2007": 0.58, + "2008": 0.599, + "2009": 0.613, + "2010": 0.637, + "2011": 0.641, + "2012": 0.646, + "2013": 0.664, + "2014": 0.674, + "2015": 0.693, + "2016": 0.719, + "2017": 0.739, + "2018": 0.718, + "2019": 0.719, + "2020": 0.722, + "2021": 0.651 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr105", + "Region": "Kweneng", + "1990": 0.633, + "1991": 0.616, + "1992": 0.599, + "1993": 0.589, + "1994": 0.565, + "1995": 0.548, + "1996": 0.537, + "1997": 0.523, + "1998": 0.508, + "1999": 0.495, + "2000": 0.485, + "2001": 0.48, + "2002": 0.479, + "2003": 0.485, + "2004": 0.496, + "2005": 0.511, + "2006": 0.532, + "2007": 0.561, + "2008": 0.583, + "2009": 0.602, + "2010": 0.629, + "2011": 0.638, + "2012": 0.642, + "2013": 0.661, + "2014": 0.67, + "2015": 0.689, + "2016": 0.715, + "2017": 0.735, + "2018": 0.714, + "2019": 0.715, + "2020": 0.718, + "2021": 0.647 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr106", + "Region": "North-East", + "1990": 0.671, + "1991": 0.654, + "1992": 0.636, + "1993": 0.625, + "1994": 0.6, + "1995": 0.582, + "1996": 0.571, + "1997": 0.556, + "1998": 0.541, + "1999": 0.528, + "2000": 0.517, + "2001": 0.512, + "2002": 0.507, + "2003": 0.509, + "2004": 0.516, + "2005": 0.529, + "2006": 0.546, + "2007": 0.571, + "2008": 0.589, + "2009": 0.603, + "2010": 0.626, + "2011": 0.63, + "2012": 0.635, + "2013": 0.653, + "2014": 0.663, + "2015": 0.681, + "2016": 0.707, + "2017": 0.727, + "2018": 0.706, + "2019": 0.707, + "2020": 0.71, + "2021": 0.64 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr107", + "Region": "North-West, Ngamiland", + "1990": 0.566, + "1991": 0.551, + "1992": 0.535, + "1993": 0.526, + "1994": 0.503, + "1995": 0.487, + "1996": 0.477, + "1997": 0.464, + "1998": 0.451, + "1999": 0.439, + "2000": 0.429, + "2001": 0.424, + "2002": 0.427, + "2003": 0.434, + "2004": 0.447, + "2005": 0.465, + "2006": 0.487, + "2007": 0.517, + "2008": 0.541, + "2009": 0.562, + "2010": 0.591, + "2011": 0.602, + "2012": 0.607, + "2013": 0.625, + "2014": 0.634, + "2015": 0.652, + "2016": 0.677, + "2017": 0.696, + "2018": 0.676, + "2019": 0.677, + "2020": 0.679, + "2021": 0.612 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr108", + "Region": "South-East", + "1990": 0.668, + "1991": 0.651, + "1992": 0.633, + "1993": 0.623, + "1994": 0.598, + "1995": 0.58, + "1996": 0.569, + "1997": 0.554, + "1998": 0.539, + "1999": 0.526, + "2000": 0.515, + "2001": 0.509, + "2002": 0.505, + "2003": 0.506, + "2004": 0.513, + "2005": 0.525, + "2006": 0.542, + "2007": 0.567, + "2008": 0.584, + "2009": 0.598, + "2010": 0.621, + "2011": 0.625, + "2012": 0.629, + "2013": 0.647, + "2014": 0.657, + "2015": 0.675, + "2016": 0.701, + "2017": 0.721, + "2018": 0.7, + "2019": 0.701, + "2020": 0.704, + "2021": 0.634 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr109", + "Region": "Southern", + "1990": 0.617, + "1991": 0.601, + "1992": 0.584, + "1993": 0.574, + "1994": 0.55, + "1995": 0.534, + "1996": 0.523, + "1997": 0.509, + "1998": 0.495, + "1999": 0.482, + "2000": 0.472, + "2001": 0.467, + "2002": 0.466, + "2003": 0.472, + "2004": 0.483, + "2005": 0.498, + "2006": 0.519, + "2007": 0.547, + "2008": 0.569, + "2009": 0.588, + "2010": 0.615, + "2011": 0.624, + "2012": 0.628, + "2013": 0.646, + "2014": 0.655, + "2015": 0.674, + "2016": 0.699, + "2017": 0.719, + "2018": 0.699, + "2019": 0.699, + "2020": 0.702, + "2021": 0.633 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "National", + "GDLCODE": "BRAt", + "Region": "Total", + "1990": 0.707, + "1991": 0.712, + "1992": 0.719, + "1993": 0.725, + "1994": 0.732, + "1995": 0.737, + "1996": 0.745, + "1997": 0.751, + "1998": 0.757, + "1999": 0.762, + "2000": 0.765, + "2001": 0.772, + "2002": 0.776, + "2003": 0.78, + "2004": 0.787, + "2005": 0.796, + "2006": 0.801, + "2007": 0.806, + "2008": 0.811, + "2009": 0.815, + "2010": 0.818, + "2011": 0.821, + "2012": 0.824, + "2013": 0.83, + "2014": 0.835, + "2015": 0.836, + "2016": 0.838, + "2017": 0.843, + "2018": 0.848, + "2019": 0.851, + "2020": 0.831, + "2021": 0.812 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr102", + "Region": "Acre", + "1990": 0.703, + "1991": 0.708, + "1992": 0.714, + "1993": 0.721, + "1994": 0.728, + "1995": 0.733, + "1996": 0.74, + "1997": 0.747, + "1998": 0.752, + "1999": 0.758, + "2000": 0.761, + "2001": 0.767, + "2002": 0.769, + "2003": 0.773, + "2004": 0.778, + "2005": 0.786, + "2006": 0.789, + "2007": 0.793, + "2008": 0.798, + "2009": 0.8, + "2010": 0.803, + "2011": 0.805, + "2012": 0.808, + "2013": 0.814, + "2014": 0.82, + "2015": 0.82, + "2016": 0.822, + "2017": 0.828, + "2018": 0.832, + "2019": 0.835, + "2020": 0.815, + "2021": 0.796 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr114", + "Region": "Alagoas", + "1990": 0.6, + "1991": 0.604, + "1992": 0.61, + "1993": 0.615, + "1994": 0.622, + "1995": 0.626, + "1996": 0.633, + "1997": 0.639, + "1998": 0.644, + "1999": 0.648, + "2000": 0.651, + "2001": 0.667, + "2002": 0.679, + "2003": 0.692, + "2004": 0.706, + "2005": 0.724, + "2006": 0.737, + "2007": 0.75, + "2008": 0.764, + "2009": 0.776, + "2010": 0.788, + "2011": 0.791, + "2012": 0.794, + "2013": 0.799, + "2014": 0.805, + "2015": 0.805, + "2016": 0.807, + "2017": 0.813, + "2018": 0.817, + "2019": 0.82, + "2020": 0.801, + "2021": 0.782 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr106", + "Region": "Amapa", + "1990": 0.736, + "1991": 0.742, + "1992": 0.748, + "1993": 0.754, + "1994": 0.762, + "1995": 0.767, + "1996": 0.775, + "1997": 0.781, + "1998": 0.787, + "1999": 0.792, + "2000": 0.796, + "2001": 0.8, + "2002": 0.8, + "2003": 0.802, + "2004": 0.806, + "2005": 0.813, + "2006": 0.814, + "2007": 0.816, + "2008": 0.819, + "2009": 0.82, + "2010": 0.82, + "2011": 0.823, + "2012": 0.826, + "2013": 0.832, + "2014": 0.838, + "2015": 0.838, + "2016": 0.84, + "2017": 0.846, + "2018": 0.85, + "2019": 0.854, + "2020": 0.833, + "2021": 0.814 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr103", + "Region": "Amazonas", + "1990": 0.708, + "1991": 0.713, + "1992": 0.719, + "1993": 0.726, + "1994": 0.733, + "1995": 0.738, + "1996": 0.746, + "1997": 0.752, + "1998": 0.758, + "1999": 0.763, + "2000": 0.766, + "2001": 0.773, + "2002": 0.776, + "2003": 0.781, + "2004": 0.787, + "2005": 0.797, + "2006": 0.801, + "2007": 0.806, + "2008": 0.811, + "2009": 0.815, + "2010": 0.818, + "2011": 0.821, + "2012": 0.824, + "2013": 0.83, + "2014": 0.836, + "2015": 0.836, + "2016": 0.838, + "2017": 0.844, + "2018": 0.848, + "2019": 0.851, + "2020": 0.831, + "2021": 0.812 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr116", + "Region": "Bahia", + "1990": 0.675, + "1991": 0.68, + "1992": 0.686, + "1993": 0.692, + "1994": 0.699, + "1995": 0.704, + "1996": 0.711, + "1997": 0.717, + "1998": 0.723, + "1999": 0.728, + "2000": 0.731, + "2001": 0.74, + "2002": 0.745, + "2003": 0.751, + "2004": 0.76, + "2005": 0.771, + "2006": 0.777, + "2007": 0.784, + "2008": 0.791, + "2009": 0.797, + "2010": 0.802, + "2011": 0.805, + "2012": 0.808, + "2013": 0.813, + "2014": 0.819, + "2015": 0.82, + "2016": 0.821, + "2017": 0.827, + "2018": 0.831, + "2019": 0.835, + "2020": 0.815, + "2021": 0.796 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr110", + "Region": "Ceara", + "1990": 0.656, + "1991": 0.661, + "1992": 0.666, + "1993": 0.672, + "1994": 0.679, + "1995": 0.684, + "1996": 0.691, + "1997": 0.697, + "1998": 0.703, + "1999": 0.708, + "2000": 0.711, + "2001": 0.723, + "2002": 0.731, + "2003": 0.741, + "2004": 0.753, + "2005": 0.767, + "2006": 0.777, + "2007": 0.787, + "2008": 0.798, + "2009": 0.806, + "2010": 0.815, + "2011": 0.818, + "2012": 0.821, + "2013": 0.827, + "2014": 0.832, + "2015": 0.833, + "2016": 0.835, + "2017": 0.84, + "2018": 0.845, + "2019": 0.848, + "2020": 0.828, + "2021": 0.809 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr127", + "Region": "Distrito Federal", + "1990": 0.766, + "1991": 0.771, + "1992": 0.777, + "1993": 0.784, + "1994": 0.791, + "1995": 0.797, + "1996": 0.805, + "1997": 0.812, + "1998": 0.818, + "1999": 0.823, + "2000": 0.827, + "2001": 0.831, + "2002": 0.832, + "2003": 0.835, + "2004": 0.839, + "2005": 0.846, + "2006": 0.848, + "2007": 0.851, + "2008": 0.854, + "2009": 0.855, + "2010": 0.856, + "2011": 0.859, + "2012": 0.862, + "2013": 0.868, + "2014": 0.874, + "2015": 0.875, + "2016": 0.876, + "2017": 0.882, + "2018": 0.887, + "2019": 0.891, + "2020": 0.869, + "2021": 0.849 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr118", + "Region": "Espirito Santo", + "1990": 0.72, + "1991": 0.726, + "1992": 0.732, + "1993": 0.738, + "1994": 0.745, + "1995": 0.751, + "1996": 0.758, + "1997": 0.765, + "1998": 0.77, + "1999": 0.776, + "2000": 0.779, + "2001": 0.784, + "2002": 0.786, + "2003": 0.789, + "2004": 0.794, + "2005": 0.802, + "2006": 0.804, + "2007": 0.808, + "2008": 0.812, + "2009": 0.814, + "2010": 0.816, + "2011": 0.818, + "2012": 0.821, + "2013": 0.827, + "2014": 0.833, + "2015": 0.833, + "2016": 0.835, + "2017": 0.841, + "2018": 0.845, + "2019": 0.849, + "2020": 0.828, + "2021": 0.809 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr126", + "Region": "Goias", + "1990": 0.749, + "1991": 0.755, + "1992": 0.761, + "1993": 0.767, + "1994": 0.775, + "1995": 0.78, + "1996": 0.788, + "1997": 0.795, + "1998": 0.801, + "1999": 0.806, + "2000": 0.809, + "2001": 0.813, + "2002": 0.813, + "2003": 0.814, + "2004": 0.817, + "2005": 0.823, + "2006": 0.823, + "2007": 0.825, + "2008": 0.827, + "2009": 0.827, + "2010": 0.827, + "2011": 0.829, + "2012": 0.832, + "2013": 0.838, + "2014": 0.844, + "2015": 0.845, + "2016": 0.846, + "2017": 0.852, + "2018": 0.857, + "2019": 0.86, + "2020": 0.84, + "2021": 0.82 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr108", + "Region": "Maranhao", + "1990": 0.651, + "1991": 0.656, + "1992": 0.662, + "1993": 0.668, + "1994": 0.674, + "1995": 0.679, + "1996": 0.687, + "1997": 0.692, + "1998": 0.698, + "1999": 0.703, + "2000": 0.706, + "2001": 0.716, + "2002": 0.722, + "2003": 0.73, + "2004": 0.739, + "2005": 0.752, + "2006": 0.759, + "2007": 0.767, + "2008": 0.776, + "2009": 0.782, + "2010": 0.789, + "2011": 0.791, + "2012": 0.794, + "2013": 0.8, + "2014": 0.806, + "2015": 0.806, + "2016": 0.808, + "2017": 0.813, + "2018": 0.818, + "2019": 0.821, + "2020": 0.801, + "2021": 0.782 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr125", + "Region": "Mato Grosso", + "1990": 0.731, + "1991": 0.736, + "1992": 0.742, + "1993": 0.748, + "1994": 0.755, + "1995": 0.761, + "1996": 0.769, + "1997": 0.775, + "1998": 0.781, + "1999": 0.786, + "2000": 0.79, + "2001": 0.795, + "2002": 0.797, + "2003": 0.8, + "2004": 0.805, + "2005": 0.813, + "2006": 0.816, + "2007": 0.819, + "2008": 0.823, + "2009": 0.825, + "2010": 0.827, + "2011": 0.829, + "2012": 0.833, + "2013": 0.838, + "2014": 0.844, + "2015": 0.845, + "2016": 0.847, + "2017": 0.853, + "2018": 0.857, + "2019": 0.86, + "2020": 0.84, + "2021": 0.82 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr124", + "Region": "Mato Grosso do Sul", + "1990": 0.739, + "1991": 0.744, + "1992": 0.751, + "1993": 0.757, + "1994": 0.764, + "1995": 0.77, + "1996": 0.778, + "1997": 0.784, + "1998": 0.79, + "1999": 0.795, + "2000": 0.799, + "2001": 0.803, + "2002": 0.803, + "2003": 0.804, + "2004": 0.807, + "2005": 0.814, + "2006": 0.815, + "2007": 0.817, + "2008": 0.819, + "2009": 0.819, + "2010": 0.82, + "2011": 0.822, + "2012": 0.825, + "2013": 0.831, + "2014": 0.837, + "2015": 0.837, + "2016": 0.839, + "2017": 0.845, + "2018": 0.849, + "2019": 0.853, + "2020": 0.832, + "2021": 0.813 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr117", + "Region": "Minas Gerais", + "1990": 0.725, + "1991": 0.73, + "1992": 0.736, + "1993": 0.743, + "1994": 0.75, + "1995": 0.755, + "1996": 0.763, + "1997": 0.769, + "1998": 0.775, + "1999": 0.78, + "2000": 0.784, + "2001": 0.79, + "2002": 0.792, + "2003": 0.795, + "2004": 0.801, + "2005": 0.809, + "2006": 0.812, + "2007": 0.816, + "2008": 0.821, + "2009": 0.823, + "2010": 0.826, + "2011": 0.828, + "2012": 0.831, + "2013": 0.837, + "2014": 0.843, + "2015": 0.843, + "2016": 0.845, + "2017": 0.851, + "2018": 0.855, + "2019": 0.859, + "2020": 0.838, + "2021": 0.819 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr105", + "Region": "Para", + "1990": 0.691, + "1991": 0.696, + "1992": 0.702, + "1993": 0.708, + "1994": 0.715, + "1995": 0.72, + "1996": 0.728, + "1997": 0.734, + "1998": 0.74, + "1999": 0.745, + "2000": 0.748, + "2001": 0.755, + "2002": 0.759, + "2003": 0.764, + "2004": 0.771, + "2005": 0.781, + "2006": 0.785, + "2007": 0.791, + "2008": 0.796, + "2009": 0.8, + "2010": 0.804, + "2011": 0.807, + "2012": 0.81, + "2013": 0.816, + "2014": 0.821, + "2015": 0.822, + "2016": 0.824, + "2017": 0.829, + "2018": 0.834, + "2019": 0.837, + "2020": 0.817, + "2021": 0.798 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr112", + "Region": "Paraiba", + "1990": 0.636, + "1991": 0.641, + "1992": 0.647, + "1993": 0.653, + "1994": 0.659, + "1995": 0.664, + "1996": 0.671, + "1997": 0.677, + "1998": 0.682, + "1999": 0.687, + "2000": 0.69, + "2001": 0.703, + "2002": 0.713, + "2003": 0.724, + "2004": 0.736, + "2005": 0.752, + "2006": 0.762, + "2007": 0.773, + "2008": 0.785, + "2009": 0.794, + "2010": 0.804, + "2011": 0.807, + "2012": 0.81, + "2013": 0.815, + "2014": 0.821, + "2015": 0.822, + "2016": 0.823, + "2017": 0.829, + "2018": 0.833, + "2019": 0.837, + "2020": 0.817, + "2021": 0.798 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr121", + "Region": "Parana", + "1990": 0.739, + "1991": 0.744, + "1992": 0.75, + "1993": 0.757, + "1994": 0.764, + "1995": 0.769, + "1996": 0.777, + "1997": 0.784, + "1998": 0.79, + "1999": 0.795, + "2000": 0.798, + "2001": 0.802, + "2002": 0.803, + "2003": 0.805, + "2004": 0.808, + "2005": 0.815, + "2006": 0.816, + "2007": 0.819, + "2008": 0.821, + "2009": 0.822, + "2010": 0.823, + "2011": 0.825, + "2012": 0.828, + "2013": 0.834, + "2014": 0.84, + "2015": 0.84, + "2016": 0.842, + "2017": 0.848, + "2018": 0.852, + "2019": 0.856, + "2020": 0.835, + "2021": 0.816 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr113", + "Region": "Pernambuco", + "1990": 0.641, + "1991": 0.645, + "1992": 0.651, + "1993": 0.657, + "1994": 0.663, + "1995": 0.668, + "1996": 0.675, + "1997": 0.681, + "1998": 0.687, + "1999": 0.691, + "2000": 0.694, + "2001": 0.707, + "2002": 0.716, + "2003": 0.726, + "2004": 0.738, + "2005": 0.752, + "2006": 0.762, + "2007": 0.773, + "2008": 0.783, + "2009": 0.792, + "2010": 0.801, + "2011": 0.804, + "2012": 0.807, + "2013": 0.813, + "2014": 0.818, + "2015": 0.819, + "2016": 0.82, + "2017": 0.826, + "2018": 0.831, + "2019": 0.834, + "2020": 0.814, + "2021": 0.795 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr109", + "Region": "Piaui", + "1990": 0.668, + "1991": 0.672, + "1992": 0.678, + "1993": 0.684, + "1994": 0.691, + "1995": 0.696, + "1996": 0.703, + "1997": 0.709, + "1998": 0.715, + "1999": 0.72, + "2000": 0.723, + "2001": 0.729, + "2002": 0.732, + "2003": 0.736, + "2004": 0.742, + "2005": 0.75, + "2006": 0.754, + "2007": 0.758, + "2008": 0.763, + "2009": 0.766, + "2010": 0.769, + "2011": 0.771, + "2012": 0.774, + "2013": 0.78, + "2014": 0.785, + "2015": 0.786, + "2016": 0.787, + "2017": 0.793, + "2018": 0.797, + "2019": 0.801, + "2020": 0.781, + "2021": 0.763 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr119", + "Region": "Rio de Janeiro", + "1990": 0.731, + "1991": 0.736, + "1992": 0.742, + "1993": 0.749, + "1994": 0.756, + "1995": 0.761, + "1996": 0.769, + "1997": 0.775, + "1998": 0.781, + "1999": 0.787, + "2000": 0.79, + "2001": 0.797, + "2002": 0.801, + "2003": 0.805, + "2004": 0.812, + "2005": 0.822, + "2006": 0.826, + "2007": 0.831, + "2008": 0.837, + "2009": 0.84, + "2010": 0.844, + "2011": 0.846, + "2012": 0.85, + "2013": 0.855, + "2014": 0.861, + "2015": 0.862, + "2016": 0.864, + "2017": 0.87, + "2018": 0.874, + "2019": 0.878, + "2020": 0.857, + "2021": 0.837 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr111", + "Region": "Rio Grande do Norte", + "1990": 0.665, + "1991": 0.67, + "1992": 0.675, + "1993": 0.681, + "1994": 0.688, + "1995": 0.693, + "1996": 0.701, + "1997": 0.706, + "1998": 0.712, + "1999": 0.717, + "2000": 0.72, + "2001": 0.73, + "2002": 0.737, + "2003": 0.745, + "2004": 0.754, + "2005": 0.767, + "2006": 0.775, + "2007": 0.783, + "2008": 0.791, + "2009": 0.798, + "2010": 0.805, + "2011": 0.807, + "2012": 0.811, + "2013": 0.816, + "2014": 0.822, + "2015": 0.822, + "2016": 0.824, + "2017": 0.83, + "2018": 0.834, + "2019": 0.838, + "2020": 0.818, + "2021": 0.798 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr123", + "Region": "Rio Grande do Sul", + "1990": 0.761, + "1991": 0.766, + "1992": 0.773, + "1993": 0.779, + "1994": 0.787, + "1995": 0.792, + "1996": 0.8, + "1997": 0.807, + "1998": 0.813, + "1999": 0.818, + "2000": 0.822, + "2001": 0.825, + "2002": 0.824, + "2003": 0.824, + "2004": 0.826, + "2005": 0.832, + "2006": 0.832, + "2007": 0.833, + "2008": 0.834, + "2009": 0.833, + "2010": 0.832, + "2011": 0.835, + "2012": 0.838, + "2013": 0.844, + "2014": 0.85, + "2015": 0.85, + "2016": 0.852, + "2017": 0.858, + "2018": 0.863, + "2019": 0.866, + "2020": 0.845, + "2021": 0.826 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr101", + "Region": "Rondonia", + "1990": 0.695, + "1991": 0.699, + "1992": 0.706, + "1993": 0.712, + "1994": 0.719, + "1995": 0.724, + "1996": 0.731, + "1997": 0.737, + "1998": 0.743, + "1999": 0.748, + "2000": 0.752, + "2001": 0.761, + "2002": 0.766, + "2003": 0.773, + "2004": 0.781, + "2005": 0.792, + "2006": 0.799, + "2007": 0.806, + "2008": 0.813, + "2009": 0.819, + "2010": 0.824, + "2011": 0.827, + "2012": 0.83, + "2013": 0.836, + "2014": 0.842, + "2015": 0.842, + "2016": 0.844, + "2017": 0.85, + "2018": 0.854, + "2019": 0.858, + "2020": 0.837, + "2021": 0.818 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr104", + "Region": "Roraima", + "1990": 0.721, + "1991": 0.726, + "1992": 0.732, + "1993": 0.738, + "1994": 0.745, + "1995": 0.751, + "1996": 0.758, + "1997": 0.765, + "1998": 0.771, + "1999": 0.776, + "2000": 0.779, + "2001": 0.788, + "2002": 0.794, + "2003": 0.801, + "2004": 0.809, + "2005": 0.821, + "2006": 0.828, + "2007": 0.835, + "2008": 0.842, + "2009": 0.848, + "2010": 0.854, + "2011": 0.856, + "2012": 0.86, + "2013": 0.866, + "2014": 0.872, + "2015": 0.872, + "2016": 0.874, + "2017": 0.88, + "2018": 0.884, + "2019": 0.888, + "2020": 0.867, + "2021": 0.847 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr122", + "Region": "Santa Catarina", + "1990": 0.764, + "1991": 0.77, + "1992": 0.776, + "1993": 0.783, + "1994": 0.79, + "1995": 0.796, + "1996": 0.804, + "1997": 0.81, + "1998": 0.816, + "1999": 0.822, + "2000": 0.825, + "2001": 0.828, + "2002": 0.826, + "2003": 0.826, + "2004": 0.828, + "2005": 0.833, + "2006": 0.833, + "2007": 0.834, + "2008": 0.834, + "2009": 0.833, + "2010": 0.832, + "2011": 0.835, + "2012": 0.838, + "2013": 0.844, + "2014": 0.85, + "2015": 0.85, + "2016": 0.852, + "2017": 0.858, + "2018": 0.862, + "2019": 0.866, + "2020": 0.845, + "2021": 0.826 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr120", + "Region": "Sao Paulo", + "1990": 0.743, + "1991": 0.749, + "1992": 0.755, + "1993": 0.761, + "1994": 0.769, + "1995": 0.774, + "1996": 0.782, + "1997": 0.788, + "1998": 0.794, + "1999": 0.8, + "2000": 0.803, + "2001": 0.808, + "2002": 0.81, + "2003": 0.813, + "2004": 0.817, + "2005": 0.825, + "2006": 0.828, + "2007": 0.831, + "2008": 0.834, + "2009": 0.836, + "2010": 0.838, + "2011": 0.84, + "2012": 0.844, + "2013": 0.849, + "2014": 0.855, + "2015": 0.856, + "2016": 0.858, + "2017": 0.864, + "2018": 0.868, + "2019": 0.872, + "2020": 0.851, + "2021": 0.831 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr115", + "Region": "Sergipe", + "1990": 0.682, + "1991": 0.687, + "1992": 0.693, + "1993": 0.699, + "1994": 0.706, + "1995": 0.711, + "1996": 0.719, + "1997": 0.725, + "1998": 0.73, + "1999": 0.735, + "2000": 0.739, + "2001": 0.747, + "2002": 0.752, + "2003": 0.758, + "2004": 0.766, + "2005": 0.777, + "2006": 0.783, + "2007": 0.79, + "2008": 0.797, + "2009": 0.802, + "2010": 0.807, + "2011": 0.81, + "2012": 0.813, + "2013": 0.818, + "2014": 0.824, + "2015": 0.825, + "2016": 0.826, + "2017": 0.832, + "2018": 0.837, + "2019": 0.84, + "2020": 0.82, + "2021": 0.801 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr107", + "Region": "Tocantins", + "1990": 0.695, + "1991": 0.7, + "1992": 0.706, + "1993": 0.712, + "1994": 0.719, + "1995": 0.725, + "1996": 0.732, + "1997": 0.738, + "1998": 0.744, + "1999": 0.749, + "2000": 0.752, + "2001": 0.762, + "2002": 0.767, + "2003": 0.774, + "2004": 0.782, + "2005": 0.794, + "2006": 0.8, + "2007": 0.807, + "2008": 0.815, + "2009": 0.821, + "2010": 0.826, + "2011": 0.829, + "2012": 0.832, + "2013": 0.838, + "2014": 0.844, + "2015": 0.844, + "2016": 0.846, + "2017": 0.852, + "2018": 0.856, + "2019": 0.86, + "2020": 0.839, + "2021": 0.819 + }, + { + "Country": "Brunei Darussalam", + "Continent": "Asia/Pacific", + "ISO_Code": "BRN", + "Level": "National", + "GDLCODE": "BRNt", + "Region": "Total", + "1990": 0.795, + "1991": 0.798, + "1992": 0.801, + "1993": 0.805, + "1994": 0.809, + "1995": 0.813, + "1996": 0.817, + "1997": 0.821, + "1998": 0.825, + "1999": 0.829, + "2000": 0.832, + "2001": 0.835, + "2002": 0.837, + "2003": 0.839, + "2004": 0.841, + "2005": 0.842, + "2006": 0.843, + "2007": 0.843, + "2008": 0.844, + "2009": 0.844, + "2010": 0.844, + "2011": 0.844, + "2012": 0.843, + "2013": 0.843, + "2014": 0.843, + "2015": 0.842, + "2016": 0.842, + "2017": 0.842, + "2018": 0.842, + "2019": 0.842, + "2020": 0.843, + "2021": 0.841 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "National", + "GDLCODE": "BGRt", + "Region": "Total", + "1990": 0.79, + "1991": 0.788, + "1992": 0.788, + "1993": 0.788, + "1994": 0.783, + "1995": 0.785, + "1996": 0.783, + "1997": 0.775, + "1998": 0.783, + "1999": 0.794, + "2000": 0.794, + "2001": 0.799, + "2002": 0.802, + "2003": 0.806, + "2004": 0.809, + "2005": 0.809, + "2006": 0.811, + "2007": 0.816, + "2008": 0.821, + "2009": 0.826, + "2010": 0.828, + "2011": 0.834, + "2012": 0.836, + "2013": 0.844, + "2014": 0.838, + "2015": 0.841, + "2016": 0.844, + "2017": 0.843, + "2018": 0.845, + "2019": 0.847, + "2020": 0.825, + "2021": 0.797 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr102", + "Region": "Severen tsentralen", + "1990": 0.788, + "1991": 0.781, + "1992": 0.782, + "1993": 0.782, + "1994": 0.776, + "1995": 0.777, + "1996": 0.775, + "1997": 0.766, + "1998": 0.784, + "1999": 0.789, + "2000": 0.788, + "2001": 0.794, + "2002": 0.795, + "2003": 0.803, + "2004": 0.807, + "2005": 0.803, + "2006": 0.808, + "2007": 0.811, + "2008": 0.819, + "2009": 0.818, + "2010": 0.82, + "2011": 0.826, + "2012": 0.827, + "2013": 0.834, + "2014": 0.83, + "2015": 0.831, + "2016": 0.836, + "2017": 0.833, + "2018": 0.835, + "2019": 0.837, + "2020": 0.816, + "2021": 0.788 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr103", + "Region": "Severoiztochen", + "1990": 0.777, + "1991": 0.775, + "1992": 0.781, + "1993": 0.78, + "1994": 0.773, + "1995": 0.774, + "1996": 0.771, + "1997": 0.761, + "1998": 0.773, + "1999": 0.784, + "2000": 0.784, + "2001": 0.788, + "2002": 0.798, + "2003": 0.795, + "2004": 0.805, + "2005": 0.806, + "2006": 0.8, + "2007": 0.811, + "2008": 0.808, + "2009": 0.818, + "2010": 0.817, + "2011": 0.829, + "2012": 0.83, + "2013": 0.839, + "2014": 0.836, + "2015": 0.836, + "2016": 0.842, + "2017": 0.841, + "2018": 0.84, + "2019": 0.845, + "2020": 0.823, + "2021": 0.795 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr101", + "Region": "Severozapaden", + "1990": 0.782, + "1991": 0.78, + "1992": 0.785, + "1993": 0.786, + "1994": 0.781, + "1995": 0.783, + "1996": 0.781, + "1997": 0.774, + "1998": 0.777, + "1999": 0.793, + "2000": 0.79, + "2001": 0.794, + "2002": 0.8, + "2003": 0.801, + "2004": 0.796, + "2005": 0.792, + "2006": 0.799, + "2007": 0.802, + "2008": 0.81, + "2009": 0.814, + "2010": 0.811, + "2011": 0.815, + "2012": 0.813, + "2013": 0.825, + "2014": 0.814, + "2015": 0.822, + "2016": 0.819, + "2017": 0.822, + "2018": 0.823, + "2019": 0.825, + "2020": 0.804, + "2021": 0.776 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr104", + "Region": "Yugoiztochen", + "1990": 0.78, + "1991": 0.78, + "1992": 0.776, + "1993": 0.776, + "1994": 0.771, + "1995": 0.772, + "1996": 0.77, + "1997": 0.761, + "1998": 0.774, + "1999": 0.783, + "2000": 0.785, + "2001": 0.786, + "2002": 0.792, + "2003": 0.792, + "2004": 0.794, + "2005": 0.802, + "2006": 0.799, + "2007": 0.803, + "2008": 0.808, + "2009": 0.814, + "2010": 0.809, + "2011": 0.821, + "2012": 0.829, + "2013": 0.837, + "2014": 0.83, + "2015": 0.835, + "2016": 0.836, + "2017": 0.835, + "2018": 0.835, + "2019": 0.837, + "2020": 0.816, + "2021": 0.788 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr105", + "Region": "Yugozapaden", + "1990": 0.802, + "1991": 0.8, + "1992": 0.799, + "1993": 0.8, + "1994": 0.796, + "1995": 0.798, + "1996": 0.797, + "1997": 0.789, + "1998": 0.791, + "1999": 0.803, + "2000": 0.805, + "2001": 0.809, + "2002": 0.812, + "2003": 0.82, + "2004": 0.821, + "2005": 0.82, + "2006": 0.824, + "2007": 0.828, + "2008": 0.836, + "2009": 0.838, + "2010": 0.846, + "2011": 0.849, + "2012": 0.85, + "2013": 0.856, + "2014": 0.85, + "2015": 0.855, + "2016": 0.856, + "2017": 0.856, + "2018": 0.858, + "2019": 0.86, + "2020": 0.838, + "2021": 0.81 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr106", + "Region": "Yuzhen tsentralen", + "1990": 0.797, + "1991": 0.797, + "1992": 0.793, + "1993": 0.793, + "1994": 0.788, + "1995": 0.79, + "1996": 0.788, + "1997": 0.78, + "1998": 0.79, + "1999": 0.8, + "2000": 0.798, + "2001": 0.806, + "2002": 0.807, + "2003": 0.812, + "2004": 0.818, + "2005": 0.815, + "2006": 0.819, + "2007": 0.823, + "2008": 0.827, + "2009": 0.835, + "2010": 0.839, + "2011": 0.84, + "2012": 0.844, + "2013": 0.851, + "2014": 0.847, + "2015": 0.842, + "2016": 0.85, + "2017": 0.848, + "2018": 0.852, + "2019": 0.853, + "2020": 0.831, + "2021": 0.802 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "National", + "GDLCODE": "BFAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.475, + "2001": 0.478, + "2002": 0.481, + "2003": 0.489, + "2004": 0.499, + "2005": 0.509, + "2006": 0.519, + "2007": 0.529, + "2008": 0.544, + "2009": 0.553, + "2010": 0.561, + "2011": 0.571, + "2012": 0.579, + "2013": 0.582, + "2014": 0.59, + "2015": 0.598, + "2016": 0.605, + "2017": 0.608, + "2018": 0.616, + "2019": 0.616, + "2020": 0.611, + "2021": 0.604 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr101", + "Region": "Boucle de Mouhoun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.487, + "2001": 0.488, + "2002": 0.488, + "2003": 0.494, + "2004": 0.505, + "2005": 0.517, + "2006": 0.529, + "2007": 0.541, + "2008": 0.558, + "2009": 0.569, + "2010": 0.579, + "2011": 0.589, + "2012": 0.597, + "2013": 0.6, + "2014": 0.609, + "2015": 0.616, + "2016": 0.624, + "2017": 0.627, + "2018": 0.635, + "2019": 0.635, + "2020": 0.63, + "2021": 0.623 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr102", + "Region": "Cascades", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.459, + "2001": 0.463, + "2002": 0.467, + "2003": 0.475, + "2004": 0.482, + "2005": 0.491, + "2006": 0.499, + "2007": 0.507, + "2008": 0.52, + "2009": 0.527, + "2010": 0.533, + "2011": 0.543, + "2012": 0.55, + "2013": 0.553, + "2014": 0.561, + "2015": 0.568, + "2016": 0.576, + "2017": 0.579, + "2018": 0.586, + "2019": 0.586, + "2020": 0.582, + "2021": 0.575 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr103", + "Region": "Centre (incl Ouagadougou)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.552, + "2001": 0.556, + "2002": 0.561, + "2003": 0.57, + "2004": 0.582, + "2005": 0.593, + "2006": 0.605, + "2007": 0.616, + "2008": 0.633, + "2009": 0.644, + "2010": 0.653, + "2011": 0.664, + "2012": 0.673, + "2013": 0.676, + "2014": 0.685, + "2015": 0.694, + "2016": 0.702, + "2017": 0.705, + "2018": 0.714, + "2019": 0.714, + "2020": 0.709, + "2021": 0.701 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr104", + "Region": "Centre-Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.485, + "2001": 0.494, + "2002": 0.503, + "2003": 0.516, + "2004": 0.538, + "2005": 0.562, + "2006": 0.584, + "2007": 0.607, + "2008": 0.635, + "2009": 0.658, + "2010": 0.678, + "2011": 0.69, + "2012": 0.698, + "2013": 0.702, + "2014": 0.711, + "2015": 0.72, + "2016": 0.728, + "2017": 0.732, + "2018": 0.741, + "2019": 0.741, + "2020": 0.735, + "2021": 0.727 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr105", + "Region": "Centre-Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.473, + "2001": 0.476, + "2002": 0.478, + "2003": 0.485, + "2004": 0.502, + "2005": 0.52, + "2006": 0.537, + "2007": 0.555, + "2008": 0.577, + "2009": 0.595, + "2010": 0.61, + "2011": 0.621, + "2012": 0.629, + "2013": 0.632, + "2014": 0.641, + "2015": 0.649, + "2016": 0.656, + "2017": 0.66, + "2018": 0.668, + "2019": 0.668, + "2020": 0.663, + "2021": 0.655 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr106", + "Region": "Centre-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.465, + "2001": 0.467, + "2002": 0.468, + "2003": 0.474, + "2004": 0.486, + "2005": 0.5, + "2006": 0.513, + "2007": 0.526, + "2008": 0.544, + "2009": 0.557, + "2010": 0.568, + "2011": 0.578, + "2012": 0.586, + "2013": 0.589, + "2014": 0.598, + "2015": 0.605, + "2016": 0.613, + "2017": 0.616, + "2018": 0.624, + "2019": 0.624, + "2020": 0.619, + "2021": 0.612 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr107", + "Region": "Centre-Sud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.496, + "2001": 0.515, + "2002": 0.534, + "2003": 0.558, + "2004": 0.562, + "2005": 0.567, + "2006": 0.572, + "2007": 0.576, + "2008": 0.586, + "2009": 0.59, + "2010": 0.592, + "2011": 0.603, + "2012": 0.61, + "2013": 0.614, + "2014": 0.622, + "2015": 0.63, + "2016": 0.638, + "2017": 0.641, + "2018": 0.649, + "2019": 0.649, + "2020": 0.644, + "2021": 0.637 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr108", + "Region": "Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.473, + "2001": 0.483, + "2002": 0.492, + "2003": 0.506, + "2004": 0.507, + "2005": 0.508, + "2006": 0.509, + "2007": 0.51, + "2008": 0.516, + "2009": 0.517, + "2010": 0.516, + "2011": 0.525, + "2012": 0.532, + "2013": 0.535, + "2014": 0.543, + "2015": 0.55, + "2016": 0.557, + "2017": 0.56, + "2018": 0.568, + "2019": 0.568, + "2020": 0.563, + "2021": 0.557 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr109", + "Region": "Hauts Bassins", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.485, + "2001": 0.485, + "2002": 0.484, + "2003": 0.488, + "2004": 0.499, + "2005": 0.511, + "2006": 0.522, + "2007": 0.533, + "2008": 0.55, + "2009": 0.561, + "2010": 0.57, + "2011": 0.58, + "2012": 0.588, + "2013": 0.591, + "2014": 0.599, + "2015": 0.607, + "2016": 0.614, + "2017": 0.618, + "2018": 0.626, + "2019": 0.625, + "2020": 0.621, + "2021": 0.614 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr110", + "Region": "Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.457, + "2001": 0.458, + "2002": 0.458, + "2003": 0.463, + "2004": 0.475, + "2005": 0.488, + "2006": 0.501, + "2007": 0.513, + "2008": 0.531, + "2009": 0.543, + "2010": 0.553, + "2011": 0.563, + "2012": 0.571, + "2013": 0.574, + "2014": 0.582, + "2015": 0.59, + "2016": 0.597, + "2017": 0.6, + "2018": 0.608, + "2019": 0.608, + "2020": 0.603, + "2021": 0.596 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr111", + "Region": "Plateau Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.492, + "2001": 0.504, + "2002": 0.515, + "2003": 0.531, + "2004": 0.537, + "2005": 0.544, + "2006": 0.55, + "2007": 0.556, + "2008": 0.567, + "2009": 0.572, + "2010": 0.576, + "2011": 0.587, + "2012": 0.594, + "2013": 0.597, + "2014": 0.606, + "2015": 0.613, + "2016": 0.621, + "2017": 0.624, + "2018": 0.632, + "2019": 0.632, + "2020": 0.627, + "2021": 0.62 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr112", + "Region": "Sahel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.452, + "2001": 0.45, + "2002": 0.448, + "2003": 0.451, + "2004": 0.455, + "2005": 0.459, + "2006": 0.463, + "2007": 0.467, + "2008": 0.475, + "2009": 0.479, + "2010": 0.481, + "2011": 0.49, + "2012": 0.497, + "2013": 0.499, + "2014": 0.507, + "2015": 0.514, + "2016": 0.52, + "2017": 0.523, + "2018": 0.53, + "2019": 0.53, + "2020": 0.526, + "2021": 0.52 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr113", + "Region": "Sud-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.509, + "2001": 0.498, + "2002": 0.487, + "2003": 0.481, + "2004": 0.484, + "2005": 0.488, + "2006": 0.492, + "2007": 0.495, + "2008": 0.503, + "2009": 0.506, + "2010": 0.508, + "2011": 0.517, + "2012": 0.524, + "2013": 0.527, + "2014": 0.535, + "2015": 0.542, + "2016": 0.549, + "2017": 0.552, + "2018": 0.559, + "2019": 0.559, + "2020": 0.555, + "2021": 0.548 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "National", + "GDLCODE": "BDIt", + "Region": "Total", + "1990": 0.382, + "1991": 0.373, + "1992": 0.368, + "1993": 0.263, + "1994": 0.37, + "1995": 0.37, + "1996": 0.375, + "1997": 0.391, + "1998": 0.408, + "1999": 0.424, + "2000": 0.423, + "2001": 0.437, + "2002": 0.46, + "2003": 0.475, + "2004": 0.492, + "2005": 0.508, + "2006": 0.521, + "2007": 0.534, + "2008": 0.549, + "2009": 0.56, + "2010": 0.57, + "2011": 0.581, + "2012": 0.592, + "2013": 0.604, + "2014": 0.613, + "2015": 0.619, + "2016": 0.628, + "2017": 0.639, + "2018": 0.641, + "2019": 0.652, + "2020": 0.639, + "2021": 0.641 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr103", + "Region": "East (Cankuzo, Rutana, Ruyigi )", + "1990": 0.394, + "1991": 0.384, + "1992": 0.379, + "1993": 0.273, + "1994": 0.382, + "1995": 0.382, + "1996": 0.387, + "1997": 0.403, + "1998": 0.421, + "1999": 0.436, + "2000": 0.436, + "2001": 0.45, + "2002": 0.473, + "2003": 0.488, + "2004": 0.506, + "2005": 0.522, + "2006": 0.535, + "2007": 0.547, + "2008": 0.562, + "2009": 0.572, + "2010": 0.582, + "2011": 0.595, + "2012": 0.608, + "2013": 0.622, + "2014": 0.634, + "2015": 0.642, + "2016": 0.653, + "2017": 0.667, + "2018": 0.669, + "2019": 0.679, + "2020": 0.667, + "2021": 0.668 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr105", + "Region": "Middle (Gitega, Karuzi, Muramvya, Mwaro)", + "1990": 0.389, + "1991": 0.379, + "1992": 0.374, + "1993": 0.268, + "1994": 0.377, + "1995": 0.376, + "1996": 0.381, + "1997": 0.397, + "1998": 0.415, + "1999": 0.43, + "2000": 0.43, + "2001": 0.444, + "2002": 0.467, + "2003": 0.482, + "2004": 0.5, + "2005": 0.516, + "2006": 0.529, + "2007": 0.543, + "2008": 0.559, + "2009": 0.57, + "2010": 0.581, + "2011": 0.592, + "2012": 0.604, + "2013": 0.617, + "2014": 0.627, + "2015": 0.633, + "2016": 0.643, + "2017": 0.655, + "2018": 0.657, + "2019": 0.668, + "2020": 0.655, + "2021": 0.657 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr101", + "Region": "North (Kayanza, Kirundo, Muyinga, Ngozi)", + "1990": 0.365, + "1991": 0.355, + "1992": 0.35, + "1993": 0.249, + "1994": 0.353, + "1995": 0.353, + "1996": 0.358, + "1997": 0.373, + "1998": 0.39, + "1999": 0.405, + "2000": 0.405, + "2001": 0.418, + "2002": 0.44, + "2003": 0.455, + "2004": 0.472, + "2005": 0.487, + "2006": 0.496, + "2007": 0.506, + "2008": 0.517, + "2009": 0.524, + "2010": 0.531, + "2011": 0.539, + "2012": 0.548, + "2013": 0.557, + "2014": 0.565, + "2015": 0.569, + "2016": 0.576, + "2017": 0.585, + "2018": 0.587, + "2019": 0.597, + "2020": 0.585, + "2021": 0.587 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr102", + "Region": "South (Bururi, Makamba)", + "1990": 0.416, + "1991": 0.406, + "1992": 0.401, + "1993": 0.291, + "1994": 0.404, + "1995": 0.403, + "1996": 0.408, + "1997": 0.425, + "1998": 0.443, + "1999": 0.459, + "2000": 0.459, + "2001": 0.474, + "2002": 0.497, + "2003": 0.513, + "2004": 0.531, + "2005": 0.548, + "2006": 0.566, + "2007": 0.585, + "2008": 0.606, + "2009": 0.622, + "2010": 0.638, + "2011": 0.646, + "2012": 0.655, + "2013": 0.664, + "2014": 0.671, + "2015": 0.674, + "2016": 0.681, + "2017": 0.69, + "2018": 0.693, + "2019": 0.703, + "2020": 0.691, + "2021": 0.692 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr104", + "Region": "West (Bubanza, Buja Rural, Cibitoke, Mairie de Bujumbura)", + "1990": 0.387, + "1991": 0.377, + "1992": 0.372, + "1993": 0.267, + "1994": 0.375, + "1995": 0.374, + "1996": 0.379, + "1997": 0.395, + "1998": 0.413, + "1999": 0.428, + "2000": 0.428, + "2001": 0.442, + "2002": 0.465, + "2003": 0.48, + "2004": 0.497, + "2005": 0.513, + "2006": 0.526, + "2007": 0.54, + "2008": 0.555, + "2009": 0.566, + "2010": 0.577, + "2011": 0.59, + "2012": 0.603, + "2013": 0.616, + "2014": 0.628, + "2015": 0.635, + "2016": 0.646, + "2017": 0.66, + "2018": 0.662, + "2019": 0.672, + "2020": 0.66, + "2021": 0.661 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "National", + "GDLCODE": "KHMt", + "Region": "Total", + "1990": 0.545, + "1991": 0.551, + "1992": 0.554, + "1993": 0.555, + "1994": 0.554, + "1995": 0.559, + "1996": 0.559, + "1997": 0.565, + "1998": 0.57, + "1999": 0.58, + "2000": 0.594, + "2001": 0.615, + "2002": 0.634, + "2003": 0.654, + "2004": 0.67, + "2005": 0.681, + "2006": 0.693, + "2007": 0.704, + "2008": 0.715, + "2009": 0.73, + "2010": 0.734, + "2011": 0.745, + "2012": 0.753, + "2013": 0.759, + "2014": 0.765, + "2015": 0.767, + "2016": 0.773, + "2017": 0.777, + "2018": 0.778, + "2019": 0.78, + "2020": 0.776, + "2021": 0.763 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr101", + "Region": "Banteay Mean Chey", + "1990": 0.567, + "1991": 0.573, + "1992": 0.576, + "1993": 0.577, + "1994": 0.577, + "1995": 0.581, + "1996": 0.582, + "1997": 0.588, + "1998": 0.592, + "1999": 0.603, + "2000": 0.618, + "2001": 0.637, + "2002": 0.656, + "2003": 0.675, + "2004": 0.69, + "2005": 0.701, + "2006": 0.705, + "2007": 0.708, + "2008": 0.712, + "2009": 0.72, + "2010": 0.718, + "2011": 0.742, + "2012": 0.764, + "2013": 0.784, + "2014": 0.804, + "2015": 0.806, + "2016": 0.812, + "2017": 0.817, + "2018": 0.817, + "2019": 0.819, + "2020": 0.815, + "2021": 0.802 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr113", + "Region": "Bat Dambang-Krong Pailin", + "1990": 0.538, + "1991": 0.543, + "1992": 0.547, + "1993": 0.548, + "1994": 0.547, + "1995": 0.551, + "1996": 0.552, + "1997": 0.558, + "1998": 0.562, + "1999": 0.572, + "2000": 0.586, + "2001": 0.605, + "2002": 0.623, + "2003": 0.64, + "2004": 0.654, + "2005": 0.664, + "2006": 0.686, + "2007": 0.706, + "2008": 0.727, + "2009": 0.752, + "2010": 0.766, + "2011": 0.775, + "2012": 0.782, + "2013": 0.786, + "2014": 0.791, + "2015": 0.793, + "2016": 0.799, + "2017": 0.803, + "2018": 0.804, + "2019": 0.806, + "2020": 0.802, + "2021": 0.789 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr102", + "Region": "Kampong Cham (incl Tboung Khmum)", + "1990": 0.527, + "1991": 0.533, + "1992": 0.536, + "1993": 0.537, + "1994": 0.537, + "1995": 0.541, + "1996": 0.541, + "1997": 0.547, + "1998": 0.551, + "1999": 0.561, + "2000": 0.576, + "2001": 0.598, + "2002": 0.619, + "2003": 0.641, + "2004": 0.659, + "2005": 0.673, + "2006": 0.691, + "2007": 0.708, + "2008": 0.726, + "2009": 0.747, + "2010": 0.758, + "2011": 0.763, + "2012": 0.764, + "2013": 0.764, + "2014": 0.765, + "2015": 0.767, + "2016": 0.773, + "2017": 0.777, + "2018": 0.778, + "2019": 0.78, + "2020": 0.776, + "2021": 0.763 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr103", + "Region": "Kampong Chhnang", + "1990": 0.494, + "1991": 0.499, + "1992": 0.503, + "1993": 0.503, + "1994": 0.503, + "1995": 0.507, + "1996": 0.507, + "1997": 0.513, + "1998": 0.517, + "1999": 0.527, + "2000": 0.54, + "2001": 0.573, + "2002": 0.605, + "2003": 0.637, + "2004": 0.667, + "2005": 0.691, + "2006": 0.689, + "2007": 0.685, + "2008": 0.683, + "2009": 0.684, + "2010": 0.675, + "2011": 0.696, + "2012": 0.714, + "2013": 0.73, + "2014": 0.747, + "2015": 0.749, + "2016": 0.755, + "2017": 0.759, + "2018": 0.76, + "2019": 0.762, + "2020": 0.758, + "2021": 0.745 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr104", + "Region": "Kampong Spueu", + "1990": 0.599, + "1991": 0.605, + "1992": 0.608, + "1993": 0.609, + "1994": 0.609, + "1995": 0.613, + "1996": 0.614, + "1997": 0.62, + "1998": 0.625, + "1999": 0.636, + "2000": 0.651, + "2001": 0.656, + "2002": 0.658, + "2003": 0.661, + "2004": 0.66, + "2005": 0.653, + "2006": 0.668, + "2007": 0.682, + "2008": 0.697, + "2009": 0.715, + "2010": 0.722, + "2011": 0.747, + "2012": 0.768, + "2013": 0.787, + "2014": 0.807, + "2015": 0.81, + "2016": 0.815, + "2017": 0.82, + "2018": 0.821, + "2019": 0.823, + "2020": 0.818, + "2021": 0.805 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr105", + "Region": "Kampong Thum", + "1990": 0.582, + "1991": 0.588, + "1992": 0.592, + "1993": 0.593, + "1994": 0.592, + "1995": 0.596, + "1996": 0.597, + "1997": 0.603, + "1998": 0.608, + "1999": 0.618, + "2000": 0.633, + "2001": 0.647, + "2002": 0.66, + "2003": 0.672, + "2004": 0.681, + "2005": 0.684, + "2006": 0.696, + "2007": 0.706, + "2008": 0.717, + "2009": 0.732, + "2010": 0.735, + "2011": 0.739, + "2012": 0.739, + "2013": 0.737, + "2014": 0.737, + "2015": 0.739, + "2016": 0.744, + "2017": 0.748, + "2018": 0.749, + "2019": 0.751, + "2020": 0.747, + "2021": 0.734 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr114", + "Region": "Kampot-Krong Kaeb-Krong Preah Sihanouk", + "1990": 0.541, + "1991": 0.546, + "1992": 0.55, + "1993": 0.551, + "1994": 0.55, + "1995": 0.554, + "1996": 0.555, + "1997": 0.561, + "1998": 0.565, + "1999": 0.576, + "2000": 0.59, + "2001": 0.617, + "2002": 0.643, + "2003": 0.67, + "2004": 0.693, + "2005": 0.711, + "2006": 0.716, + "2007": 0.72, + "2008": 0.724, + "2009": 0.733, + "2010": 0.73, + "2011": 0.745, + "2012": 0.757, + "2013": 0.767, + "2014": 0.778, + "2015": 0.78, + "2016": 0.786, + "2017": 0.79, + "2018": 0.791, + "2019": 0.793, + "2020": 0.789, + "2021": 0.776 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr106", + "Region": "Kandal", + "1990": 0.566, + "1991": 0.572, + "1992": 0.576, + "1993": 0.577, + "1994": 0.576, + "1995": 0.58, + "1996": 0.581, + "1997": 0.587, + "1998": 0.592, + "1999": 0.602, + "2000": 0.617, + "2001": 0.635, + "2002": 0.652, + "2003": 0.669, + "2004": 0.683, + "2005": 0.691, + "2006": 0.701, + "2007": 0.709, + "2008": 0.718, + "2009": 0.731, + "2010": 0.733, + "2011": 0.749, + "2012": 0.761, + "2013": 0.772, + "2014": 0.784, + "2015": 0.786, + "2016": 0.791, + "2017": 0.796, + "2018": 0.797, + "2019": 0.799, + "2020": 0.794, + "2021": 0.781 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr107", + "Region": "Kaoh Kong", + "1990": 0.596, + "1991": 0.602, + "1992": 0.606, + "1993": 0.607, + "1994": 0.606, + "1995": 0.611, + "1996": 0.611, + "1997": 0.618, + "1998": 0.622, + "1999": 0.633, + "2000": 0.648, + "2001": 0.666, + "2002": 0.682, + "2003": 0.698, + "2004": 0.71, + "2005": 0.717, + "2006": 0.721, + "2007": 0.723, + "2008": 0.726, + "2009": 0.733, + "2010": 0.729, + "2011": 0.74, + "2012": 0.748, + "2013": 0.754, + "2014": 0.761, + "2015": 0.763, + "2016": 0.768, + "2017": 0.773, + "2018": 0.774, + "2019": 0.776, + "2020": 0.771, + "2021": 0.759 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr116", + "Region": "Mondol Kiri-Rotanak Kiri", + "1990": 0.438, + "1991": 0.443, + "1992": 0.446, + "1993": 0.447, + "1994": 0.446, + "1995": 0.45, + "1996": 0.45, + "1997": 0.456, + "1998": 0.459, + "1999": 0.468, + "2000": 0.481, + "2001": 0.505, + "2002": 0.529, + "2003": 0.553, + "2004": 0.573, + "2005": 0.59, + "2006": 0.605, + "2007": 0.618, + "2008": 0.632, + "2009": 0.65, + "2010": 0.657, + "2011": 0.669, + "2012": 0.678, + "2013": 0.685, + "2014": 0.693, + "2015": 0.695, + "2016": 0.7, + "2017": 0.704, + "2018": 0.705, + "2019": 0.706, + "2020": 0.702, + "2021": 0.691 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr108", + "Region": "Phnom Penh", + "1990": 0.679, + "1991": 0.685, + "1992": 0.689, + "1993": 0.69, + "1994": 0.689, + "1995": 0.694, + "1996": 0.695, + "1997": 0.702, + "1998": 0.707, + "1999": 0.719, + "2000": 0.736, + "2001": 0.752, + "2002": 0.767, + "2003": 0.783, + "2004": 0.793, + "2005": 0.799, + "2006": 0.812, + "2007": 0.823, + "2008": 0.836, + "2009": 0.852, + "2010": 0.857, + "2011": 0.852, + "2012": 0.844, + "2013": 0.835, + "2014": 0.827, + "2015": 0.829, + "2016": 0.835, + "2017": 0.839, + "2018": 0.84, + "2019": 0.842, + "2020": 0.838, + "2021": 0.824 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr110", + "Region": "Pousat", + "1990": 0.48, + "1991": 0.486, + "1992": 0.489, + "1993": 0.49, + "1994": 0.489, + "1995": 0.493, + "1996": 0.493, + "1997": 0.499, + "1998": 0.503, + "1999": 0.512, + "2000": 0.526, + "2001": 0.559, + "2002": 0.592, + "2003": 0.626, + "2004": 0.657, + "2005": 0.683, + "2006": 0.699, + "2007": 0.714, + "2008": 0.73, + "2009": 0.75, + "2010": 0.758, + "2011": 0.771, + "2012": 0.78, + "2013": 0.787, + "2014": 0.795, + "2015": 0.797, + "2016": 0.803, + "2017": 0.807, + "2018": 0.808, + "2019": 0.81, + "2020": 0.806, + "2021": 0.792 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr115", + "Region": "Preah Vihear-Stueng Traeng-Kracheh", + "1990": 0.548, + "1991": 0.554, + "1992": 0.558, + "1993": 0.558, + "1994": 0.558, + "1995": 0.562, + "1996": 0.563, + "1997": 0.569, + "1998": 0.573, + "1999": 0.583, + "2000": 0.598, + "2001": 0.609, + "2002": 0.62, + "2003": 0.63, + "2004": 0.636, + "2005": 0.638, + "2006": 0.645, + "2007": 0.65, + "2008": 0.656, + "2009": 0.666, + "2010": 0.666, + "2011": 0.676, + "2012": 0.684, + "2013": 0.69, + "2014": 0.696, + "2015": 0.698, + "2016": 0.703, + "2017": 0.707, + "2018": 0.708, + "2019": 0.71, + "2020": 0.706, + "2021": 0.694 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr109", + "Region": "Prey Veaeng", + "1990": 0.504, + "1991": 0.51, + "1992": 0.513, + "1993": 0.514, + "1994": 0.513, + "1995": 0.517, + "1996": 0.518, + "1997": 0.524, + "1998": 0.528, + "1999": 0.537, + "2000": 0.551, + "2001": 0.568, + "2002": 0.584, + "2003": 0.6, + "2004": 0.612, + "2005": 0.62, + "2006": 0.642, + "2007": 0.662, + "2008": 0.683, + "2009": 0.708, + "2010": 0.722, + "2011": 0.72, + "2012": 0.716, + "2013": 0.709, + "2014": 0.704, + "2015": 0.706, + "2016": 0.711, + "2017": 0.715, + "2018": 0.716, + "2019": 0.718, + "2020": 0.714, + "2021": 0.702 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr117", + "Region": "Siem Reab-Otdar Mean Chey", + "1990": 0.541, + "1991": 0.546, + "1992": 0.55, + "1993": 0.551, + "1994": 0.55, + "1995": 0.554, + "1996": 0.555, + "1997": 0.561, + "1998": 0.565, + "1999": 0.575, + "2000": 0.59, + "2001": 0.615, + "2002": 0.639, + "2003": 0.664, + "2004": 0.685, + "2005": 0.701, + "2006": 0.714, + "2007": 0.725, + "2008": 0.737, + "2009": 0.752, + "2010": 0.757, + "2011": 0.759, + "2012": 0.757, + "2013": 0.754, + "2014": 0.752, + "2015": 0.754, + "2016": 0.76, + "2017": 0.764, + "2018": 0.765, + "2019": 0.767, + "2020": 0.763, + "2021": 0.75 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr111", + "Region": "Svay Rieng", + "1990": 0.533, + "1991": 0.539, + "1992": 0.542, + "1993": 0.543, + "1994": 0.542, + "1995": 0.547, + "1996": 0.547, + "1997": 0.553, + "1998": 0.558, + "1999": 0.568, + "2000": 0.582, + "2001": 0.603, + "2002": 0.624, + "2003": 0.645, + "2004": 0.662, + "2005": 0.674, + "2006": 0.677, + "2007": 0.678, + "2008": 0.681, + "2009": 0.687, + "2010": 0.682, + "2011": 0.697, + "2012": 0.709, + "2013": 0.719, + "2014": 0.73, + "2015": 0.732, + "2016": 0.738, + "2017": 0.742, + "2018": 0.743, + "2019": 0.745, + "2020": 0.74, + "2021": 0.728 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr112", + "Region": "Takaev", + "1990": 0.55, + "1991": 0.556, + "1992": 0.56, + "1993": 0.561, + "1994": 0.56, + "1995": 0.564, + "1996": 0.565, + "1997": 0.571, + "1998": 0.575, + "1999": 0.585, + "2000": 0.6, + "2001": 0.621, + "2002": 0.641, + "2003": 0.661, + "2004": 0.677, + "2005": 0.689, + "2006": 0.692, + "2007": 0.694, + "2008": 0.698, + "2009": 0.704, + "2010": 0.7, + "2011": 0.73, + "2012": 0.756, + "2013": 0.781, + "2014": 0.806, + "2015": 0.808, + "2016": 0.813, + "2017": 0.818, + "2018": 0.819, + "2019": 0.821, + "2020": 0.816, + "2021": 0.803 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "National", + "GDLCODE": "CMRt", + "Region": "Total", + "1990": 0.536, + "1991": 0.533, + "1992": 0.53, + "1993": 0.524, + "1994": 0.516, + "1995": 0.511, + "1996": 0.505, + "1997": 0.504, + "1998": 0.501, + "1999": 0.503, + "2000": 0.507, + "2001": 0.51, + "2002": 0.514, + "2003": 0.521, + "2004": 0.526, + "2005": 0.529, + "2006": 0.536, + "2007": 0.541, + "2008": 0.549, + "2009": 0.555, + "2010": 0.563, + "2011": 0.571, + "2012": 0.581, + "2013": 0.592, + "2014": 0.599, + "2015": 0.61, + "2016": 0.619, + "2017": 0.628, + "2018": 0.634, + "2019": 0.64, + "2020": 0.628, + "2021": 0.621 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr101", + "Region": "Adamaoua", + "1990": 0.495, + "1991": 0.492, + "1992": 0.489, + "1993": 0.483, + "1994": 0.475, + "1995": 0.471, + "1996": 0.465, + "1997": 0.464, + "1998": 0.461, + "1999": 0.472, + "2000": 0.485, + "2001": 0.497, + "2002": 0.511, + "2003": 0.527, + "2004": 0.541, + "2005": 0.542, + "2006": 0.547, + "2007": 0.549, + "2008": 0.555, + "2009": 0.559, + "2010": 0.564, + "2011": 0.57, + "2012": 0.578, + "2013": 0.587, + "2014": 0.593, + "2015": 0.602, + "2016": 0.609, + "2017": 0.617, + "2018": 0.621, + "2019": 0.627, + "2020": 0.615, + "2021": 0.608 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr102", + "Region": "Centre (incl Yaounde)", + "1990": 0.564, + "1991": 0.561, + "1992": 0.558, + "1993": 0.551, + "1994": 0.543, + "1995": 0.538, + "1996": 0.532, + "1997": 0.53, + "1998": 0.528, + "1999": 0.533, + "2000": 0.539, + "2001": 0.546, + "2002": 0.553, + "2003": 0.564, + "2004": 0.572, + "2005": 0.575, + "2006": 0.584, + "2007": 0.589, + "2008": 0.598, + "2009": 0.606, + "2010": 0.614, + "2011": 0.623, + "2012": 0.632, + "2013": 0.64, + "2014": 0.645, + "2015": 0.655, + "2016": 0.662, + "2017": 0.669, + "2018": 0.672, + "2019": 0.679, + "2020": 0.667, + "2021": 0.659 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr103", + "Region": "Est", + "1990": 0.526, + "1991": 0.523, + "1992": 0.52, + "1993": 0.514, + "1994": 0.505, + "1995": 0.501, + "1996": 0.495, + "1997": 0.493, + "1998": 0.491, + "1999": 0.487, + "2000": 0.485, + "2001": 0.482, + "2002": 0.48, + "2003": 0.481, + "2004": 0.48, + "2005": 0.497, + "2006": 0.519, + "2007": 0.539, + "2008": 0.561, + "2009": 0.582, + "2010": 0.604, + "2011": 0.628, + "2012": 0.621, + "2013": 0.615, + "2014": 0.606, + "2015": 0.601, + "2016": 0.593, + "2017": 0.586, + "2018": 0.576, + "2019": 0.582, + "2020": 0.571, + "2021": 0.564 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr104", + "Region": "Extreme Nord", + "1990": 0.474, + "1991": 0.471, + "1992": 0.468, + "1993": 0.462, + "1994": 0.455, + "1995": 0.45, + "1996": 0.445, + "1997": 0.444, + "1998": 0.441, + "1999": 0.446, + "2000": 0.452, + "2001": 0.458, + "2002": 0.464, + "2003": 0.474, + "2004": 0.481, + "2005": 0.482, + "2006": 0.489, + "2007": 0.492, + "2008": 0.498, + "2009": 0.504, + "2010": 0.51, + "2011": 0.517, + "2012": 0.531, + "2013": 0.546, + "2014": 0.558, + "2015": 0.574, + "2016": 0.587, + "2017": 0.601, + "2018": 0.611, + "2019": 0.617, + "2020": 0.606, + "2021": 0.598 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr105", + "Region": "Littoral (incl Douala)", + "1990": 0.595, + "1991": 0.592, + "1992": 0.589, + "1993": 0.582, + "1994": 0.573, + "1995": 0.568, + "1996": 0.561, + "1997": 0.56, + "1998": 0.558, + "1999": 0.566, + "2000": 0.576, + "2001": 0.587, + "2002": 0.598, + "2003": 0.612, + "2004": 0.624, + "2005": 0.624, + "2006": 0.628, + "2007": 0.63, + "2008": 0.635, + "2009": 0.639, + "2010": 0.644, + "2011": 0.649, + "2012": 0.661, + "2013": 0.674, + "2014": 0.683, + "2015": 0.696, + "2016": 0.707, + "2017": 0.718, + "2018": 0.725, + "2019": 0.732, + "2020": 0.719, + "2021": 0.711 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr106", + "Region": "Nord", + "1990": 0.467, + "1991": 0.464, + "1992": 0.461, + "1993": 0.455, + "1994": 0.448, + "1995": 0.443, + "1996": 0.438, + "1997": 0.436, + "1998": 0.434, + "1999": 0.437, + "2000": 0.442, + "2001": 0.447, + "2002": 0.453, + "2003": 0.461, + "2004": 0.467, + "2005": 0.467, + "2006": 0.472, + "2007": 0.474, + "2008": 0.479, + "2009": 0.483, + "2010": 0.487, + "2011": 0.493, + "2012": 0.503, + "2013": 0.514, + "2014": 0.522, + "2015": 0.533, + "2016": 0.543, + "2017": 0.552, + "2018": 0.559, + "2019": 0.564, + "2020": 0.554, + "2021": 0.547 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr107", + "Region": "Nord Ouest", + "1990": 0.638, + "1991": 0.634, + "1992": 0.631, + "1993": 0.624, + "1994": 0.614, + "1995": 0.609, + "1996": 0.602, + "1997": 0.601, + "1998": 0.598, + "1999": 0.597, + "2000": 0.598, + "2001": 0.598, + "2002": 0.6, + "2003": 0.604, + "2004": 0.606, + "2005": 0.613, + "2006": 0.626, + "2007": 0.635, + "2008": 0.647, + "2009": 0.659, + "2010": 0.671, + "2011": 0.685, + "2012": 0.688, + "2013": 0.693, + "2014": 0.693, + "2015": 0.698, + "2016": 0.7, + "2017": 0.703, + "2018": 0.702, + "2019": 0.709, + "2020": 0.696, + "2021": 0.688 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr108", + "Region": "Ouest", + "1990": 0.655, + "1991": 0.652, + "1992": 0.649, + "1993": 0.641, + "1994": 0.632, + "1995": 0.626, + "1996": 0.619, + "1997": 0.618, + "1998": 0.615, + "1999": 0.603, + "2000": 0.593, + "2001": 0.582, + "2002": 0.573, + "2003": 0.566, + "2004": 0.556, + "2005": 0.562, + "2006": 0.572, + "2007": 0.579, + "2008": 0.589, + "2009": 0.599, + "2010": 0.609, + "2011": 0.62, + "2012": 0.627, + "2013": 0.634, + "2014": 0.637, + "2015": 0.644, + "2016": 0.649, + "2017": 0.654, + "2018": 0.656, + "2019": 0.663, + "2020": 0.651, + "2021": 0.643 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr109", + "Region": "Sud", + "1990": 0.55, + "1991": 0.547, + "1992": 0.544, + "1993": 0.537, + "1994": 0.529, + "1995": 0.524, + "1996": 0.518, + "1997": 0.517, + "1998": 0.514, + "1999": 0.512, + "2000": 0.512, + "2001": 0.512, + "2002": 0.513, + "2003": 0.516, + "2004": 0.517, + "2005": 0.527, + "2006": 0.542, + "2007": 0.554, + "2008": 0.569, + "2009": 0.583, + "2010": 0.598, + "2011": 0.614, + "2012": 0.618, + "2013": 0.623, + "2014": 0.624, + "2015": 0.629, + "2016": 0.632, + "2017": 0.635, + "2018": 0.635, + "2019": 0.641, + "2020": 0.63, + "2021": 0.622 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr110", + "Region": "Sud Ouest", + "1990": 0.585, + "1991": 0.581, + "1992": 0.578, + "1993": 0.572, + "1994": 0.563, + "1995": 0.558, + "1996": 0.551, + "1997": 0.55, + "1998": 0.547, + "1999": 0.542, + "2000": 0.539, + "2001": 0.535, + "2002": 0.533, + "2003": 0.533, + "2004": 0.53, + "2005": 0.533, + "2006": 0.54, + "2007": 0.544, + "2008": 0.552, + "2009": 0.558, + "2010": 0.565, + "2011": 0.573, + "2012": 0.591, + "2013": 0.608, + "2014": 0.622, + "2015": 0.64, + "2016": 0.656, + "2017": 0.671, + "2018": 0.684, + "2019": 0.69, + "2020": 0.678, + "2021": 0.67 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "National", + "GDLCODE": "CANt", + "Region": "Total", + "1990": 0.884, + "1991": 0.886, + "1992": 0.89, + "1993": 0.888, + "1994": 0.891, + "1995": 0.893, + "1996": 0.896, + "1997": 0.899, + "1998": 0.903, + "1999": 0.906, + "2000": 0.911, + "2001": 0.915, + "2002": 0.916, + "2003": 0.919, + "2004": 0.924, + "2005": 0.925, + "2006": 0.931, + "2007": 0.932, + "2008": 0.934, + "2009": 0.94, + "2010": 0.944, + "2011": 0.947, + "2012": 0.95, + "2013": 0.951, + "2014": 0.952, + "2015": 0.953, + "2016": 0.955, + "2017": 0.954, + "2018": 0.955, + "2019": 0.959, + "2020": 0.955, + "2021": 0.964 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr109", + "Region": "Alberta", + "1990": 0.887, + "1991": 0.889, + "1992": 0.893, + "1993": 0.891, + "1994": 0.895, + "1995": 0.896, + "1996": 0.9, + "1997": 0.903, + "1998": 0.907, + "1999": 0.911, + "2000": 0.913, + "2001": 0.915, + "2002": 0.916, + "2003": 0.919, + "2004": 0.922, + "2005": 0.924, + "2006": 0.928, + "2007": 0.927, + "2008": 0.928, + "2009": 0.935, + "2010": 0.939, + "2011": 0.942, + "2012": 0.945, + "2013": 0.945, + "2014": 0.945, + "2015": 0.945, + "2016": 0.947, + "2017": 0.946, + "2018": 0.947, + "2019": 0.952, + "2020": 0.947, + "2021": 0.956 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr110", + "Region": "British Columbia", + "1990": 0.89, + "1991": 0.892, + "1992": 0.896, + "1993": 0.894, + "1994": 0.9, + "1995": 0.902, + "1996": 0.906, + "1997": 0.909, + "1998": 0.913, + "1999": 0.92, + "2000": 0.925, + "2001": 0.927, + "2002": 0.927, + "2003": 0.93, + "2004": 0.934, + "2005": 0.933, + "2006": 0.939, + "2007": 0.939, + "2008": 0.944, + "2009": 0.949, + "2010": 0.953, + "2011": 0.957, + "2012": 0.96, + "2013": 0.962, + "2014": 0.961, + "2015": 0.96, + "2016": 0.962, + "2017": 0.962, + "2018": 0.962, + "2019": 0.967, + "2020": 0.962, + "2021": 0.972 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr107", + "Region": "Manitoba", + "1990": 0.88, + "1991": 0.883, + "1992": 0.887, + "1993": 0.885, + "1994": 0.886, + "1995": 0.886, + "1996": 0.889, + "1997": 0.89, + "1998": 0.89, + "1999": 0.891, + "2000": 0.894, + "2001": 0.898, + "2002": 0.9, + "2003": 0.901, + "2004": 0.904, + "2005": 0.905, + "2006": 0.91, + "2007": 0.91, + "2008": 0.91, + "2009": 0.917, + "2010": 0.918, + "2011": 0.92, + "2012": 0.923, + "2013": 0.925, + "2014": 0.924, + "2015": 0.922, + "2016": 0.924, + "2017": 0.923, + "2018": 0.924, + "2019": 0.929, + "2020": 0.924, + "2021": 0.933 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr104", + "Region": "New Brunswick", + "1990": 0.877, + "1991": 0.88, + "1992": 0.884, + "1993": 0.882, + "1994": 0.885, + "1995": 0.886, + "1996": 0.89, + "1997": 0.892, + "1998": 0.892, + "1999": 0.897, + "2000": 0.902, + "2001": 0.905, + "2002": 0.907, + "2003": 0.91, + "2004": 0.914, + "2005": 0.916, + "2006": 0.921, + "2007": 0.921, + "2008": 0.921, + "2009": 0.927, + "2010": 0.931, + "2011": 0.934, + "2012": 0.937, + "2013": 0.937, + "2014": 0.936, + "2015": 0.933, + "2016": 0.935, + "2017": 0.934, + "2018": 0.935, + "2019": 0.939, + "2020": 0.935, + "2021": 0.944 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr101", + "Region": "Newfoundland and Labrador", + "1990": 0.865, + "1991": 0.868, + "1992": 0.872, + "1993": 0.87, + "1994": 0.874, + "1995": 0.876, + "1996": 0.878, + "1997": 0.878, + "1998": 0.88, + "1999": 0.881, + "2000": 0.887, + "2001": 0.889, + "2002": 0.892, + "2003": 0.893, + "2004": 0.893, + "2005": 0.891, + "2006": 0.895, + "2007": 0.895, + "2008": 0.901, + "2009": 0.912, + "2010": 0.916, + "2011": 0.916, + "2012": 0.917, + "2013": 0.914, + "2014": 0.912, + "2015": 0.913, + "2016": 0.914, + "2017": 0.914, + "2018": 0.915, + "2019": 0.919, + "2020": 0.915, + "2021": 0.924 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr103", + "Region": "Nova Scotia", + "1990": 0.871, + "1991": 0.874, + "1992": 0.878, + "1993": 0.876, + "1994": 0.883, + "1995": 0.883, + "1996": 0.887, + "1997": 0.887, + "1998": 0.892, + "1999": 0.897, + "2000": 0.904, + "2001": 0.904, + "2002": 0.904, + "2003": 0.905, + "2004": 0.908, + "2005": 0.908, + "2006": 0.916, + "2007": 0.916, + "2008": 0.919, + "2009": 0.924, + "2010": 0.925, + "2011": 0.927, + "2012": 0.93, + "2013": 0.931, + "2014": 0.929, + "2015": 0.93, + "2016": 0.931, + "2017": 0.931, + "2018": 0.932, + "2019": 0.936, + "2020": 0.931, + "2021": 0.941 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr106", + "Region": "Ontario", + "1990": 0.887, + "1991": 0.889, + "1992": 0.893, + "1993": 0.891, + "1994": 0.894, + "1995": 0.896, + "1996": 0.9, + "1997": 0.904, + "1998": 0.907, + "1999": 0.911, + "2000": 0.916, + "2001": 0.918, + "2002": 0.919, + "2003": 0.924, + "2004": 0.928, + "2005": 0.93, + "2006": 0.936, + "2007": 0.938, + "2008": 0.941, + "2009": 0.946, + "2010": 0.948, + "2011": 0.953, + "2012": 0.957, + "2013": 0.959, + "2014": 0.959, + "2015": 0.96, + "2016": 0.962, + "2017": 0.962, + "2018": 0.962, + "2019": 0.967, + "2020": 0.962, + "2021": 0.972 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr102", + "Region": "Prince Edward Island, Yukon Territory, Northwest Territories, Nunavut", + "1990": 0.876, + "1991": 0.878, + "1992": 0.882, + "1993": 0.88, + "1994": 0.883, + "1995": 0.882, + "1996": 0.89, + "1997": 0.89, + "1998": 0.897, + "1999": 0.891, + "2000": 0.899, + "2001": 0.899, + "2002": 0.903, + "2003": 0.905, + "2004": 0.913, + "2005": 0.913, + "2006": 0.924, + "2007": 0.921, + "2008": 0.921, + "2009": 0.929, + "2010": 0.93, + "2011": 0.935, + "2012": 0.934, + "2013": 0.937, + "2014": 0.942, + "2015": 0.949, + "2016": 0.951, + "2017": 0.95, + "2018": 0.951, + "2019": 0.956, + "2020": 0.951, + "2021": 0.96 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr105", + "Region": "Quebec", + "1990": 0.877, + "1991": 0.88, + "1992": 0.884, + "1993": 0.882, + "1994": 0.885, + "1995": 0.886, + "1996": 0.889, + "1997": 0.892, + "1998": 0.895, + "1999": 0.901, + "2000": 0.907, + "2001": 0.91, + "2002": 0.912, + "2003": 0.916, + "2004": 0.922, + "2005": 0.924, + "2006": 0.931, + "2007": 0.933, + "2008": 0.936, + "2009": 0.941, + "2010": 0.944, + "2011": 0.947, + "2012": 0.951, + "2013": 0.954, + "2014": 0.956, + "2015": 0.959, + "2016": 0.961, + "2017": 0.96, + "2018": 0.961, + "2019": 0.966, + "2020": 0.961, + "2021": 0.97 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr108", + "Region": "Saskatchewan", + "1990": 0.893, + "1991": 0.895, + "1992": 0.899, + "1993": 0.897, + "1994": 0.895, + "1995": 0.894, + "1996": 0.895, + "1997": 0.896, + "1998": 0.898, + "1999": 0.898, + "2000": 0.904, + "2001": 0.905, + "2002": 0.906, + "2003": 0.905, + "2004": 0.908, + "2005": 0.908, + "2006": 0.913, + "2007": 0.91, + "2008": 0.911, + "2009": 0.915, + "2010": 0.916, + "2011": 0.919, + "2012": 0.923, + "2013": 0.925, + "2014": 0.924, + "2015": 0.925, + "2016": 0.927, + "2017": 0.926, + "2018": 0.927, + "2019": 0.932, + "2020": 0.927, + "2021": 0.936 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "National", + "GDLCODE": "CPVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.748, + "2001": 0.768, + "2002": 0.78, + "2003": 0.791, + "2004": 0.8, + "2005": 0.81, + "2006": 0.804, + "2007": 0.813, + "2008": 0.808, + "2009": 0.817, + "2010": 0.823, + "2011": 0.835, + "2012": 0.838, + "2013": 0.847, + "2014": 0.85, + "2015": 0.84, + "2016": 0.858, + "2017": 0.871, + "2018": 0.857, + "2019": 0.862, + "2020": 0.843, + "2021": 0.832 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr105", + "Region": "Fogo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.748, + "2001": 0.768, + "2002": 0.78, + "2003": 0.791, + "2004": 0.8, + "2005": 0.81, + "2006": 0.804, + "2007": 0.813, + "2008": 0.808, + "2009": 0.817, + "2010": 0.823, + "2011": 0.835, + "2012": 0.838, + "2013": 0.847, + "2014": 0.85, + "2015": 0.84, + "2016": 0.858, + "2017": 0.871, + "2018": 0.857, + "2019": 0.862, + "2020": 0.843, + "2021": 0.832 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr101", + "Region": "S.Antao", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.748, + "2001": 0.768, + "2002": 0.78, + "2003": 0.791, + "2004": 0.8, + "2005": 0.81, + "2006": 0.804, + "2007": 0.813, + "2008": 0.808, + "2009": 0.817, + "2010": 0.823, + "2011": 0.835, + "2012": 0.838, + "2013": 0.847, + "2014": 0.85, + "2015": 0.84, + "2016": 0.858, + "2017": 0.871, + "2018": 0.857, + "2019": 0.862, + "2020": 0.843, + "2021": 0.832 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr102", + "Region": "S.Vicente", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.748, + "2001": 0.768, + "2002": 0.78, + "2003": 0.791, + "2004": 0.8, + "2005": 0.81, + "2006": 0.804, + "2007": 0.813, + "2008": 0.808, + "2009": 0.817, + "2010": 0.823, + "2011": 0.835, + "2012": 0.838, + "2013": 0.847, + "2014": 0.85, + "2015": 0.84, + "2016": 0.858, + "2017": 0.871, + "2018": 0.857, + "2019": 0.862, + "2020": 0.843, + "2021": 0.832 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr104", + "Region": "Santiago- Praia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.748, + "2001": 0.768, + "2002": 0.78, + "2003": 0.791, + "2004": 0.8, + "2005": 0.81, + "2006": 0.804, + "2007": 0.813, + "2008": 0.808, + "2009": 0.817, + "2010": 0.823, + "2011": 0.835, + "2012": 0.838, + "2013": 0.847, + "2014": 0.85, + "2015": 0.84, + "2016": 0.858, + "2017": 0.871, + "2018": 0.857, + "2019": 0.862, + "2020": 0.843, + "2021": 0.832 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr103", + "Region": "Santiago-Interior", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.748, + "2001": 0.768, + "2002": 0.78, + "2003": 0.791, + "2004": 0.8, + "2005": 0.81, + "2006": 0.804, + "2007": 0.813, + "2008": 0.808, + "2009": 0.817, + "2010": 0.823, + "2011": 0.835, + "2012": 0.838, + "2013": 0.847, + "2014": 0.85, + "2015": 0.84, + "2016": 0.858, + "2017": 0.871, + "2018": 0.857, + "2019": 0.862, + "2020": 0.843, + "2021": 0.832 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "National", + "GDLCODE": "CAFt", + "Region": "Total", + "1990": 0.456, + "1991": 0.45, + "1992": 0.443, + "1993": 0.436, + "1994": 0.429, + "1995": 0.421, + "1996": 0.413, + "1997": 0.405, + "1998": 0.4, + "1999": 0.396, + "2000": 0.391, + "2001": 0.391, + "2002": 0.391, + "2003": 0.396, + "2004": 0.401, + "2005": 0.407, + "2006": 0.413, + "2007": 0.422, + "2008": 0.431, + "2009": 0.441, + "2010": 0.45, + "2011": 0.461, + "2012": 0.472, + "2013": 0.475, + "2014": 0.47, + "2015": 0.505, + "2016": 0.515, + "2017": 0.519, + "2018": 0.529, + "2019": 0.539, + "2020": 0.532, + "2021": 0.521 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr106", + "Region": "Bangui", + "1990": 0.521, + "1991": 0.515, + "1992": 0.507, + "1993": 0.5, + "1994": 0.491, + "1995": 0.486, + "1996": 0.48, + "1997": 0.474, + "1998": 0.472, + "1999": 0.47, + "2000": 0.467, + "2001": 0.47, + "2002": 0.473, + "2003": 0.482, + "2004": 0.49, + "2005": 0.499, + "2006": 0.51, + "2007": 0.518, + "2008": 0.526, + "2009": 0.535, + "2010": 0.544, + "2011": 0.552, + "2012": 0.561, + "2013": 0.561, + "2014": 0.552, + "2015": 0.586, + "2016": 0.594, + "2017": 0.595, + "2018": 0.603, + "2019": 0.61, + "2020": 0.603, + "2021": 0.591 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr101", + "Region": "RS I (Ombella Mpoko, Lobaye, Kemo, Nana Grebizi, Ouaka)", + "1990": 0.433, + "1991": 0.427, + "1992": 0.42, + "1993": 0.413, + "1994": 0.406, + "1995": 0.4, + "1996": 0.394, + "1997": 0.388, + "1998": 0.385, + "1999": 0.382, + "2000": 0.378, + "2001": 0.38, + "2002": 0.381, + "2003": 0.388, + "2004": 0.394, + "2005": 0.402, + "2006": 0.41, + "2007": 0.418, + "2008": 0.426, + "2009": 0.436, + "2010": 0.444, + "2011": 0.453, + "2012": 0.463, + "2013": 0.465, + "2014": 0.458, + "2015": 0.49, + "2016": 0.499, + "2017": 0.501, + "2018": 0.51, + "2019": 0.518, + "2020": 0.512, + "2021": 0.501 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr102", + "Region": "RS II (Mambera Kadei, Nana Mambere, Sangha Mbaere)", + "1990": 0.423, + "1991": 0.417, + "1992": 0.41, + "1993": 0.404, + "1994": 0.396, + "1995": 0.391, + "1996": 0.385, + "1997": 0.379, + "1998": 0.377, + "1999": 0.374, + "2000": 0.371, + "2001": 0.373, + "2002": 0.375, + "2003": 0.382, + "2004": 0.388, + "2005": 0.396, + "2006": 0.404, + "2007": 0.412, + "2008": 0.42, + "2009": 0.429, + "2010": 0.437, + "2011": 0.453, + "2012": 0.469, + "2013": 0.477, + "2014": 0.476, + "2015": 0.515, + "2016": 0.53, + "2017": 0.539, + "2018": 0.553, + "2019": 0.568, + "2020": 0.561, + "2021": 0.55 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr103", + "Region": "RS III (Ouham Pende, Ouham)", + "1990": 0.444, + "1991": 0.438, + "1992": 0.431, + "1993": 0.425, + "1994": 0.417, + "1995": 0.41, + "1996": 0.402, + "1997": 0.394, + "1998": 0.39, + "1999": 0.385, + "2000": 0.38, + "2001": 0.38, + "2002": 0.38, + "2003": 0.386, + "2004": 0.39, + "2005": 0.396, + "2006": 0.402, + "2007": 0.409, + "2008": 0.416, + "2009": 0.424, + "2010": 0.431, + "2011": 0.443, + "2012": 0.456, + "2013": 0.461, + "2014": 0.457, + "2015": 0.492, + "2016": 0.504, + "2017": 0.509, + "2018": 0.521, + "2019": 0.532, + "2020": 0.526, + "2021": 0.515 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr104", + "Region": "RS IV (Haute-Kotto, Baminigui Bangoran, Vakaga)", + "1990": 0.492, + "1991": 0.486, + "1992": 0.479, + "1993": 0.471, + "1994": 0.463, + "1995": 0.452, + "1996": 0.44, + "1997": 0.429, + "1998": 0.421, + "1999": 0.413, + "2000": 0.405, + "2001": 0.401, + "2002": 0.398, + "2003": 0.401, + "2004": 0.402, + "2005": 0.404, + "2006": 0.407, + "2007": 0.421, + "2008": 0.435, + "2009": 0.45, + "2010": 0.464, + "2011": 0.48, + "2012": 0.497, + "2013": 0.505, + "2014": 0.505, + "2015": 0.545, + "2016": 0.561, + "2017": 0.57, + "2018": 0.585, + "2019": 0.6, + "2020": 0.593, + "2021": 0.581 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr105", + "Region": "RS V (Basse Kotto, Mbornou, Houte Mbormou)", + "1990": 0.462, + "1991": 0.456, + "1992": 0.449, + "1993": 0.442, + "1994": 0.435, + "1995": 0.424, + "1996": 0.413, + "1997": 0.402, + "1998": 0.395, + "1999": 0.388, + "2000": 0.38, + "2001": 0.377, + "2002": 0.375, + "2003": 0.377, + "2004": 0.379, + "2005": 0.382, + "2006": 0.385, + "2007": 0.393, + "2008": 0.402, + "2009": 0.411, + "2010": 0.419, + "2011": 0.429, + "2012": 0.439, + "2013": 0.442, + "2014": 0.436, + "2015": 0.469, + "2016": 0.478, + "2017": 0.481, + "2018": 0.49, + "2019": 0.499, + "2020": 0.493, + "2021": 0.483 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "National", + "GDLCODE": "TCDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.422, + "2001": 0.428, + "2002": 0.43, + "2003": 0.434, + "2004": 0.434, + "2005": 0.436, + "2006": 0.435, + "2007": 0.442, + "2008": 0.447, + "2009": 0.449, + "2010": 0.455, + "2011": 0.462, + "2012": 0.47, + "2013": 0.474, + "2014": 0.48, + "2015": 0.486, + "2016": 0.494, + "2017": 0.497, + "2018": 0.505, + "2019": 0.512, + "2020": 0.504, + "2021": 0.5 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr101", + "Region": "Zone 1 (N'Djamena)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.443, + "2001": 0.454, + "2002": 0.459, + "2003": 0.467, + "2004": 0.472, + "2005": 0.469, + "2006": 0.465, + "2007": 0.468, + "2008": 0.469, + "2009": 0.467, + "2010": 0.47, + "2011": 0.476, + "2012": 0.484, + "2013": 0.487, + "2014": 0.493, + "2015": 0.498, + "2016": 0.516, + "2017": 0.53, + "2018": 0.548, + "2019": 0.564, + "2020": 0.557, + "2021": 0.552 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr102", + "Region": "Zone 2 (Borkou, Ennedi, Tibesti, Kanem, Barh El Gazal, Lac)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.431, + "2001": 0.444, + "2002": 0.452, + "2003": 0.462, + "2004": 0.469, + "2005": 0.468, + "2006": 0.466, + "2007": 0.472, + "2008": 0.474, + "2009": 0.475, + "2010": 0.479, + "2011": 0.496, + "2012": 0.515, + "2013": 0.529, + "2014": 0.545, + "2015": 0.562, + "2016": 0.567, + "2017": 0.569, + "2018": 0.575, + "2019": 0.58, + "2020": 0.572, + "2021": 0.567 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr103", + "Region": "Zone 3 (Guera, Batha, Salamat)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.437, + "2001": 0.444, + "2002": 0.446, + "2003": 0.45, + "2004": 0.451, + "2005": 0.453, + "2006": 0.455, + "2007": 0.463, + "2008": 0.469, + "2009": 0.473, + "2010": 0.481, + "2011": 0.487, + "2012": 0.495, + "2013": 0.498, + "2014": 0.504, + "2015": 0.509, + "2016": 0.524, + "2017": 0.534, + "2018": 0.549, + "2019": 0.562, + "2020": 0.555, + "2021": 0.55 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr104", + "Region": "Zone 4 (Ouaddai, Assongha, Sila, Biltine - Wadi Fira)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.457, + "2001": 0.473, + "2002": 0.485, + "2003": 0.499, + "2004": 0.509, + "2005": 0.516, + "2006": 0.522, + "2007": 0.535, + "2008": 0.546, + "2009": 0.555, + "2010": 0.567, + "2011": 0.569, + "2012": 0.572, + "2013": 0.57, + "2014": 0.572, + "2015": 0.573, + "2016": 0.582, + "2017": 0.586, + "2018": 0.596, + "2019": 0.603, + "2020": 0.595, + "2021": 0.591 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr105", + "Region": "Zone 5 (Chari-Baguimi, Dababa, Baguirmi, Hadjer Lamis)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.422, + "2001": 0.423, + "2002": 0.419, + "2003": 0.418, + "2004": 0.413, + "2005": 0.412, + "2006": 0.41, + "2007": 0.415, + "2008": 0.417, + "2009": 0.418, + "2010": 0.422, + "2011": 0.438, + "2012": 0.455, + "2013": 0.468, + "2014": 0.484, + "2015": 0.499, + "2016": 0.494, + "2017": 0.486, + "2018": 0.482, + "2019": 0.477, + "2020": 0.47, + "2021": 0.466 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr106", + "Region": "Zone 6 (Mayo-Kebbi Est and Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.445, + "2001": 0.451, + "2002": 0.453, + "2003": 0.456, + "2004": 0.456, + "2005": 0.453, + "2006": 0.447, + "2007": 0.45, + "2008": 0.449, + "2009": 0.447, + "2010": 0.448, + "2011": 0.456, + "2012": 0.466, + "2013": 0.472, + "2014": 0.48, + "2015": 0.488, + "2016": 0.494, + "2017": 0.496, + "2018": 0.503, + "2019": 0.508, + "2020": 0.501, + "2021": 0.497 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr107", + "Region": "Zone 7 (Logone Occidental & Oriental, Monts de Lam, Tandjile Est & Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.4, + "2001": 0.405, + "2002": 0.406, + "2003": 0.408, + "2004": 0.408, + "2005": 0.407, + "2006": 0.404, + "2007": 0.409, + "2008": 0.411, + "2009": 0.412, + "2010": 0.415, + "2011": 0.417, + "2012": 0.421, + "2013": 0.42, + "2014": 0.422, + "2015": 0.423, + "2016": 0.428, + "2017": 0.429, + "2018": 0.434, + "2019": 0.438, + "2020": 0.431, + "2021": 0.428 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr108", + "Region": "Zone 8 (Mandoul, Moyen-Chari, Bahr Koh, Lac Iro)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.419, + "2001": 0.426, + "2002": 0.428, + "2003": 0.433, + "2004": 0.434, + "2005": 0.433, + "2006": 0.43, + "2007": 0.436, + "2008": 0.438, + "2009": 0.438, + "2010": 0.442, + "2011": 0.45, + "2012": 0.458, + "2013": 0.463, + "2014": 0.47, + "2015": 0.477, + "2016": 0.483, + "2017": 0.485, + "2018": 0.491, + "2019": 0.497, + "2020": 0.49, + "2021": 0.486 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "National", + "GDLCODE": "CHLt", + "Region": "Total", + "1990": 0.809, + "1991": 0.824, + "1992": 0.833, + "1993": 0.834, + "1994": 0.84, + "1995": 0.84, + "1996": 0.845, + "1997": 0.855, + "1998": 0.856, + "1999": 0.862, + "2000": 0.875, + "2001": 0.873, + "2002": 0.884, + "2003": 0.883, + "2004": 0.886, + "2005": 0.893, + "2006": 0.896, + "2007": 0.89, + "2008": 0.9, + "2009": 0.904, + "2010": 0.9, + "2011": 0.909, + "2012": 0.908, + "2013": 0.913, + "2014": 0.915, + "2015": 0.919, + "2016": 0.924, + "2017": 0.928, + "2018": 0.925, + "2019": 0.928, + "2020": 0.913, + "2021": 0.907 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr111", + "Region": "Aisen", + "1990": 0.806, + "1991": 0.821, + "1992": 0.829, + "1993": 0.83, + "1994": 0.837, + "1995": 0.837, + "1996": 0.841, + "1997": 0.852, + "1998": 0.853, + "1999": 0.858, + "2000": 0.871, + "2001": 0.87, + "2002": 0.88, + "2003": 0.879, + "2004": 0.883, + "2005": 0.889, + "2006": 0.893, + "2007": 0.886, + "2008": 0.896, + "2009": 0.9, + "2010": 0.896, + "2011": 0.906, + "2012": 0.904, + "2013": 0.909, + "2014": 0.911, + "2015": 0.916, + "2016": 0.921, + "2017": 0.925, + "2018": 0.921, + "2019": 0.924, + "2020": 0.91, + "2021": 0.903 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr102", + "Region": "Antofagasta", + "1990": 0.782, + "1991": 0.797, + "1992": 0.805, + "1993": 0.806, + "1994": 0.812, + "1995": 0.812, + "1996": 0.817, + "1997": 0.827, + "1998": 0.828, + "1999": 0.833, + "2000": 0.846, + "2001": 0.845, + "2002": 0.855, + "2003": 0.854, + "2004": 0.857, + "2005": 0.863, + "2006": 0.867, + "2007": 0.861, + "2008": 0.87, + "2009": 0.874, + "2010": 0.871, + "2011": 0.88, + "2012": 0.878, + "2013": 0.883, + "2014": 0.885, + "2015": 0.889, + "2016": 0.894, + "2017": 0.898, + "2018": 0.895, + "2019": 0.898, + "2020": 0.884, + "2021": 0.877 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr109", + "Region": "Arbucania", + "1990": 0.794, + "1991": 0.809, + "1992": 0.817, + "1993": 0.818, + "1994": 0.824, + "1995": 0.824, + "1996": 0.829, + "1997": 0.839, + "1998": 0.84, + "1999": 0.846, + "2000": 0.859, + "2001": 0.857, + "2002": 0.867, + "2003": 0.867, + "2004": 0.87, + "2005": 0.876, + "2006": 0.88, + "2007": 0.873, + "2008": 0.883, + "2009": 0.887, + "2010": 0.883, + "2011": 0.893, + "2012": 0.891, + "2013": 0.896, + "2014": 0.898, + "2015": 0.902, + "2016": 0.907, + "2017": 0.912, + "2018": 0.908, + "2019": 0.911, + "2020": 0.897, + "2021": 0.89 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr103", + "Region": "Atacama", + "1990": 0.833, + "1991": 0.849, + "1992": 0.858, + "1993": 0.859, + "1994": 0.865, + "1995": 0.865, + "1996": 0.87, + "1997": 0.881, + "1998": 0.882, + "1999": 0.888, + "2000": 0.901, + "2001": 0.899, + "2002": 0.91, + "2003": 0.909, + "2004": 0.913, + "2005": 0.919, + "2006": 0.923, + "2007": 0.916, + "2008": 0.926, + "2009": 0.93, + "2010": 0.927, + "2011": 0.936, + "2012": 0.935, + "2013": 0.94, + "2014": 0.942, + "2015": 0.946, + "2016": 0.951, + "2017": 0.956, + "2018": 0.952, + "2019": 0.955, + "2020": 0.94, + "2021": 0.934 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr108", + "Region": "Bio Bio", + "1990": 0.813, + "1991": 0.828, + "1992": 0.837, + "1993": 0.838, + "1994": 0.844, + "1995": 0.844, + "1996": 0.849, + "1997": 0.859, + "1998": 0.86, + "1999": 0.866, + "2000": 0.879, + "2001": 0.877, + "2002": 0.888, + "2003": 0.887, + "2004": 0.89, + "2005": 0.897, + "2006": 0.9, + "2007": 0.894, + "2008": 0.904, + "2009": 0.908, + "2010": 0.904, + "2011": 0.914, + "2012": 0.912, + "2013": 0.917, + "2014": 0.919, + "2015": 0.923, + "2016": 0.929, + "2017": 0.933, + "2018": 0.929, + "2019": 0.932, + "2020": 0.918, + "2021": 0.911 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr104", + "Region": "Coquimbo", + "1990": 0.82, + "1991": 0.835, + "1992": 0.844, + "1993": 0.845, + "1994": 0.851, + "1995": 0.851, + "1996": 0.856, + "1997": 0.867, + "1998": 0.868, + "1999": 0.873, + "2000": 0.887, + "2001": 0.885, + "2002": 0.895, + "2003": 0.895, + "2004": 0.898, + "2005": 0.904, + "2006": 0.908, + "2007": 0.901, + "2008": 0.912, + "2009": 0.916, + "2010": 0.912, + "2011": 0.921, + "2012": 0.92, + "2013": 0.925, + "2014": 0.927, + "2015": 0.931, + "2016": 0.936, + "2017": 0.941, + "2018": 0.937, + "2019": 0.94, + "2020": 0.925, + "2021": 0.919 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr110", + "Region": "Los Lagos (incl Los Rios)", + "1990": 0.807, + "1991": 0.822, + "1992": 0.831, + "1993": 0.832, + "1994": 0.838, + "1995": 0.838, + "1996": 0.842, + "1997": 0.853, + "1998": 0.854, + "1999": 0.859, + "2000": 0.873, + "2001": 0.871, + "2002": 0.881, + "2003": 0.881, + "2004": 0.884, + "2005": 0.89, + "2006": 0.894, + "2007": 0.887, + "2008": 0.897, + "2009": 0.901, + "2010": 0.898, + "2011": 0.907, + "2012": 0.906, + "2013": 0.91, + "2014": 0.913, + "2015": 0.917, + "2016": 0.922, + "2017": 0.926, + "2018": 0.923, + "2019": 0.926, + "2020": 0.911, + "2021": 0.904 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr112", + "Region": "Magallanes and La Antartica Chilena", + "1990": 0.796, + "1991": 0.811, + "1992": 0.82, + "1993": 0.821, + "1994": 0.827, + "1995": 0.827, + "1996": 0.832, + "1997": 0.842, + "1998": 0.843, + "1999": 0.849, + "2000": 0.862, + "2001": 0.86, + "2002": 0.87, + "2003": 0.869, + "2004": 0.873, + "2005": 0.879, + "2006": 0.883, + "2007": 0.876, + "2008": 0.886, + "2009": 0.89, + "2010": 0.886, + "2011": 0.896, + "2012": 0.894, + "2013": 0.899, + "2014": 0.901, + "2015": 0.905, + "2016": 0.91, + "2017": 0.914, + "2018": 0.911, + "2019": 0.914, + "2020": 0.9, + "2021": 0.893 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr107", + "Region": "Maule", + "1990": 0.791, + "1991": 0.806, + "1992": 0.815, + "1993": 0.816, + "1994": 0.822, + "1995": 0.822, + "1996": 0.826, + "1997": 0.837, + "1998": 0.838, + "1999": 0.843, + "2000": 0.856, + "2001": 0.855, + "2002": 0.865, + "2003": 0.864, + "2004": 0.867, + "2005": 0.873, + "2006": 0.877, + "2007": 0.871, + "2008": 0.881, + "2009": 0.884, + "2010": 0.881, + "2011": 0.89, + "2012": 0.889, + "2013": 0.894, + "2014": 0.896, + "2015": 0.9, + "2016": 0.905, + "2017": 0.909, + "2018": 0.906, + "2019": 0.908, + "2020": 0.894, + "2021": 0.888 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr106", + "Region": "OHiggins", + "1990": 0.815, + "1991": 0.83, + "1992": 0.839, + "1993": 0.84, + "1994": 0.846, + "1995": 0.846, + "1996": 0.851, + "1997": 0.862, + "1998": 0.863, + "1999": 0.868, + "2000": 0.881, + "2001": 0.88, + "2002": 0.89, + "2003": 0.889, + "2004": 0.893, + "2005": 0.899, + "2006": 0.903, + "2007": 0.896, + "2008": 0.906, + "2009": 0.91, + "2010": 0.907, + "2011": 0.916, + "2012": 0.915, + "2013": 0.92, + "2014": 0.922, + "2015": 0.926, + "2016": 0.931, + "2017": 0.935, + "2018": 0.932, + "2019": 0.935, + "2020": 0.92, + "2021": 0.913 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr113", + "Region": "Region Metropolitana", + "1990": 0.812, + "1991": 0.827, + "1992": 0.836, + "1993": 0.837, + "1994": 0.843, + "1995": 0.843, + "1996": 0.848, + "1997": 0.858, + "1998": 0.859, + "1999": 0.865, + "2000": 0.878, + "2001": 0.876, + "2002": 0.887, + "2003": 0.886, + "2004": 0.889, + "2005": 0.896, + "2006": 0.899, + "2007": 0.893, + "2008": 0.903, + "2009": 0.907, + "2010": 0.903, + "2011": 0.913, + "2012": 0.911, + "2013": 0.916, + "2014": 0.918, + "2015": 0.922, + "2016": 0.927, + "2017": 0.932, + "2018": 0.928, + "2019": 0.931, + "2020": 0.917, + "2021": 0.91 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr101", + "Region": "Tarapaca (incl Arica and Parinacota)", + "1990": 0.819, + "1991": 0.834, + "1992": 0.843, + "1993": 0.844, + "1994": 0.85, + "1995": 0.85, + "1996": 0.855, + "1997": 0.866, + "1998": 0.867, + "1999": 0.872, + "2000": 0.885, + "2001": 0.884, + "2002": 0.894, + "2003": 0.894, + "2004": 0.897, + "2005": 0.903, + "2006": 0.907, + "2007": 0.9, + "2008": 0.911, + "2009": 0.915, + "2010": 0.911, + "2011": 0.92, + "2012": 0.919, + "2013": 0.924, + "2014": 0.926, + "2015": 0.93, + "2016": 0.935, + "2017": 0.94, + "2018": 0.936, + "2019": 0.939, + "2020": 0.924, + "2021": 0.918 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr105", + "Region": "Valparaiso (former Aconcagua)", + "1990": 0.813, + "1991": 0.828, + "1992": 0.837, + "1993": 0.838, + "1994": 0.844, + "1995": 0.844, + "1996": 0.849, + "1997": 0.86, + "1998": 0.861, + "1999": 0.866, + "2000": 0.879, + "2001": 0.878, + "2002": 0.888, + "2003": 0.887, + "2004": 0.891, + "2005": 0.897, + "2006": 0.901, + "2007": 0.894, + "2008": 0.904, + "2009": 0.908, + "2010": 0.904, + "2011": 0.914, + "2012": 0.913, + "2013": 0.917, + "2014": 0.919, + "2015": 0.924, + "2016": 0.929, + "2017": 0.933, + "2018": 0.93, + "2019": 0.933, + "2020": 0.918, + "2021": 0.911 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "National", + "GDLCODE": "CHNt", + "Region": "Total", + "1990": 0.739, + "1991": 0.741, + "1992": 0.75, + "1993": 0.757, + "1994": 0.762, + "1995": 0.769, + "1996": 0.773, + "1997": 0.78, + "1998": 0.787, + "1999": 0.791, + "2000": 0.798, + "2001": 0.809, + "2002": 0.815, + "2003": 0.821, + "2004": 0.827, + "2005": 0.832, + "2006": 0.839, + "2007": 0.842, + "2008": 0.844, + "2009": 0.851, + "2010": 0.855, + "2011": 0.86, + "2012": 0.864, + "2013": 0.868, + "2014": 0.873, + "2015": 0.877, + "2016": 0.88, + "2017": 0.881, + "2018": 0.888, + "2019": 0.892, + "2020": 0.893, + "2021": 0.896 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr112", + "Region": "Anhui", + "1990": 0.749, + "1991": 0.751, + "1992": 0.759, + "1993": 0.766, + "1994": 0.769, + "1995": 0.776, + "1996": 0.779, + "1997": 0.785, + "1998": 0.792, + "1999": 0.795, + "2000": 0.801, + "2001": 0.812, + "2002": 0.817, + "2003": 0.822, + "2004": 0.828, + "2005": 0.833, + "2006": 0.838, + "2007": 0.842, + "2008": 0.843, + "2009": 0.849, + "2010": 0.853, + "2011": 0.858, + "2012": 0.862, + "2013": 0.866, + "2014": 0.87, + "2015": 0.874, + "2016": 0.878, + "2017": 0.878, + "2018": 0.886, + "2019": 0.889, + "2020": 0.891, + "2021": 0.893 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr101", + "Region": "Beijing", + "1990": 0.801, + "1991": 0.804, + "1992": 0.813, + "1993": 0.821, + "1994": 0.827, + "1995": 0.835, + "1996": 0.839, + "1997": 0.846, + "1998": 0.855, + "1999": 0.859, + "2000": 0.867, + "2001": 0.879, + "2002": 0.886, + "2003": 0.892, + "2004": 0.899, + "2005": 0.905, + "2006": 0.912, + "2007": 0.917, + "2008": 0.919, + "2009": 0.927, + "2010": 0.932, + "2011": 0.937, + "2012": 0.941, + "2013": 0.946, + "2014": 0.95, + "2015": 0.954, + "2016": 0.958, + "2017": 0.959, + "2018": 0.967, + "2019": 0.971, + "2020": 0.972, + "2021": 0.975 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr122", + "Region": "Chongqing", + "1990": 0.784, + "1991": 0.782, + "1992": 0.786, + "1993": 0.789, + "1994": 0.789, + "1995": 0.793, + "1996": 0.792, + "1997": 0.794, + "1998": 0.797, + "1999": 0.797, + "2000": 0.799, + "2001": 0.811, + "2002": 0.817, + "2003": 0.824, + "2004": 0.83, + "2005": 0.837, + "2006": 0.843, + "2007": 0.848, + "2008": 0.85, + "2009": 0.858, + "2010": 0.862, + "2011": 0.867, + "2012": 0.872, + "2013": 0.876, + "2014": 0.88, + "2015": 0.884, + "2016": 0.888, + "2017": 0.888, + "2018": 0.896, + "2019": 0.899, + "2020": 0.901, + "2021": 0.903 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr113", + "Region": "Fujian", + "1990": 0.735, + "1991": 0.74, + "1992": 0.75, + "1993": 0.759, + "1994": 0.765, + "1995": 0.775, + "1996": 0.78, + "1997": 0.788, + "1998": 0.798, + "1999": 0.803, + "2000": 0.812, + "2001": 0.823, + "2002": 0.828, + "2003": 0.833, + "2004": 0.838, + "2005": 0.843, + "2006": 0.849, + "2007": 0.852, + "2008": 0.853, + "2009": 0.86, + "2010": 0.863, + "2011": 0.868, + "2012": 0.873, + "2013": 0.877, + "2014": 0.881, + "2015": 0.885, + "2016": 0.888, + "2017": 0.889, + "2018": 0.897, + "2019": 0.9, + "2020": 0.902, + "2021": 0.904 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr128", + "Region": "Gansu", + "1990": 0.715, + "1991": 0.714, + "1992": 0.718, + "1993": 0.722, + "1994": 0.722, + "1995": 0.725, + "1996": 0.725, + "1997": 0.727, + "1998": 0.731, + "1999": 0.731, + "2000": 0.733, + "2001": 0.746, + "2002": 0.754, + "2003": 0.762, + "2004": 0.769, + "2005": 0.777, + "2006": 0.784, + "2007": 0.79, + "2008": 0.794, + "2009": 0.803, + "2010": 0.809, + "2011": 0.813, + "2012": 0.818, + "2013": 0.821, + "2014": 0.825, + "2015": 0.829, + "2016": 0.833, + "2017": 0.833, + "2018": 0.841, + "2019": 0.844, + "2020": 0.845, + "2021": 0.847 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr119", + "Region": "Guangdong", + "1990": 0.796, + "1991": 0.795, + "1992": 0.8, + "1993": 0.805, + "1994": 0.806, + "1995": 0.81, + "1996": 0.811, + "1997": 0.814, + "1998": 0.819, + "1999": 0.819, + "2000": 0.823, + "2001": 0.834, + "2002": 0.839, + "2003": 0.844, + "2004": 0.85, + "2005": 0.855, + "2006": 0.86, + "2007": 0.864, + "2008": 0.865, + "2009": 0.871, + "2010": 0.875, + "2011": 0.879, + "2012": 0.884, + "2013": 0.888, + "2014": 0.892, + "2015": 0.896, + "2016": 0.9, + "2017": 0.9, + "2018": 0.908, + "2019": 0.912, + "2020": 0.913, + "2021": 0.916 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr120", + "Region": "Guangxi", + "1990": 0.738, + "1991": 0.74, + "1992": 0.748, + "1993": 0.755, + "1994": 0.759, + "1995": 0.766, + "1996": 0.77, + "1997": 0.775, + "1998": 0.783, + "1999": 0.786, + "2000": 0.792, + "2001": 0.804, + "2002": 0.81, + "2003": 0.816, + "2004": 0.823, + "2005": 0.829, + "2006": 0.835, + "2007": 0.839, + "2008": 0.841, + "2009": 0.849, + "2010": 0.853, + "2011": 0.858, + "2012": 0.862, + "2013": 0.866, + "2014": 0.871, + "2015": 0.874, + "2016": 0.878, + "2017": 0.879, + "2018": 0.886, + "2019": 0.89, + "2020": 0.891, + "2021": 0.893 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr124", + "Region": "Guizhou", + "1990": 0.67, + "1991": 0.671, + "1992": 0.678, + "1993": 0.683, + "1994": 0.686, + "1995": 0.691, + "1996": 0.693, + "1997": 0.698, + "1998": 0.703, + "1999": 0.705, + "2000": 0.71, + "2001": 0.723, + "2002": 0.732, + "2003": 0.74, + "2004": 0.748, + "2005": 0.756, + "2006": 0.765, + "2007": 0.771, + "2008": 0.775, + "2009": 0.785, + "2010": 0.791, + "2011": 0.796, + "2012": 0.8, + "2013": 0.804, + "2014": 0.808, + "2015": 0.811, + "2016": 0.815, + "2017": 0.815, + "2018": 0.823, + "2019": 0.826, + "2020": 0.827, + "2021": 0.829 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr121", + "Region": "Hainan", + "1990": 0.757, + "1991": 0.76, + "1992": 0.769, + "1993": 0.776, + "1994": 0.781, + "1995": 0.788, + "1996": 0.792, + "1997": 0.799, + "1998": 0.807, + "1999": 0.81, + "2000": 0.818, + "2001": 0.829, + "2002": 0.834, + "2003": 0.84, + "2004": 0.845, + "2005": 0.85, + "2006": 0.856, + "2007": 0.86, + "2008": 0.861, + "2009": 0.868, + "2010": 0.872, + "2011": 0.876, + "2012": 0.881, + "2013": 0.885, + "2014": 0.889, + "2015": 0.893, + "2016": 0.897, + "2017": 0.897, + "2018": 0.905, + "2019": 0.909, + "2020": 0.91, + "2021": 0.912 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr103", + "Region": "Hebei", + "1990": 0.763, + "1991": 0.764, + "1992": 0.772, + "1993": 0.778, + "1994": 0.782, + "1995": 0.788, + "1996": 0.791, + "1997": 0.796, + "1998": 0.803, + "1999": 0.806, + "2000": 0.812, + "2001": 0.821, + "2002": 0.825, + "2003": 0.829, + "2004": 0.833, + "2005": 0.837, + "2006": 0.841, + "2007": 0.844, + "2008": 0.844, + "2009": 0.849, + "2010": 0.851, + "2011": 0.856, + "2012": 0.86, + "2013": 0.864, + "2014": 0.868, + "2015": 0.872, + "2016": 0.876, + "2017": 0.876, + "2018": 0.884, + "2019": 0.887, + "2020": 0.889, + "2021": 0.891 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr108", + "Region": "Heilongjiang", + "1990": 0.711, + "1991": 0.717, + "1992": 0.73, + "1993": 0.741, + "1994": 0.75, + "1995": 0.761, + "1996": 0.769, + "1997": 0.779, + "1998": 0.79, + "1999": 0.798, + "2000": 0.809, + "2001": 0.82, + "2002": 0.826, + "2003": 0.832, + "2004": 0.838, + "2005": 0.844, + "2006": 0.85, + "2007": 0.854, + "2008": 0.856, + "2009": 0.863, + "2010": 0.867, + "2011": 0.872, + "2012": 0.876, + "2013": 0.88, + "2014": 0.884, + "2015": 0.888, + "2016": 0.892, + "2017": 0.892, + "2018": 0.9, + "2019": 0.904, + "2020": 0.905, + "2021": 0.907 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr116", + "Region": "Henan", + "1990": 0.759, + "1991": 0.76, + "1992": 0.766, + "1993": 0.771, + "1994": 0.774, + "1995": 0.779, + "1996": 0.781, + "1997": 0.785, + "1998": 0.79, + "1999": 0.792, + "2000": 0.796, + "2001": 0.807, + "2002": 0.812, + "2003": 0.817, + "2004": 0.822, + "2005": 0.826, + "2006": 0.832, + "2007": 0.835, + "2008": 0.836, + "2009": 0.842, + "2010": 0.845, + "2011": 0.85, + "2012": 0.854, + "2013": 0.858, + "2014": 0.862, + "2015": 0.866, + "2016": 0.87, + "2017": 0.87, + "2018": 0.878, + "2019": 0.881, + "2020": 0.883, + "2021": 0.885 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr117", + "Region": "Hubei", + "1990": 0.715, + "1991": 0.719, + "1992": 0.729, + "1993": 0.738, + "1994": 0.744, + "1995": 0.753, + "1996": 0.759, + "1997": 0.766, + "1998": 0.775, + "1999": 0.781, + "2000": 0.789, + "2001": 0.801, + "2002": 0.807, + "2003": 0.813, + "2004": 0.819, + "2005": 0.825, + "2006": 0.831, + "2007": 0.836, + "2008": 0.838, + "2009": 0.845, + "2010": 0.85, + "2011": 0.854, + "2012": 0.859, + "2013": 0.863, + "2014": 0.867, + "2015": 0.871, + "2016": 0.874, + "2017": 0.875, + "2018": 0.882, + "2019": 0.886, + "2020": 0.888, + "2021": 0.89 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr118", + "Region": "Hunan", + "1990": 0.71, + "1991": 0.714, + "1992": 0.724, + "1993": 0.733, + "1994": 0.739, + "1995": 0.748, + "1996": 0.753, + "1997": 0.76, + "1998": 0.769, + "1999": 0.774, + "2000": 0.783, + "2001": 0.795, + "2002": 0.801, + "2003": 0.808, + "2004": 0.814, + "2005": 0.821, + "2006": 0.827, + "2007": 0.832, + "2008": 0.834, + "2009": 0.842, + "2010": 0.847, + "2011": 0.852, + "2012": 0.856, + "2013": 0.86, + "2014": 0.864, + "2015": 0.868, + "2016": 0.872, + "2017": 0.872, + "2018": 0.88, + "2019": 0.883, + "2020": 0.885, + "2021": 0.887 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr105", + "Region": "Inner Mongolia", + "1990": 0.691, + "1991": 0.696, + "1992": 0.707, + "1993": 0.716, + "1994": 0.723, + "1995": 0.732, + "1996": 0.738, + "1997": 0.746, + "1998": 0.756, + "1999": 0.761, + "2000": 0.771, + "2001": 0.783, + "2002": 0.79, + "2003": 0.798, + "2004": 0.805, + "2005": 0.812, + "2006": 0.82, + "2007": 0.825, + "2008": 0.829, + "2009": 0.837, + "2010": 0.843, + "2011": 0.848, + "2012": 0.852, + "2013": 0.856, + "2014": 0.86, + "2015": 0.864, + "2016": 0.868, + "2017": 0.868, + "2018": 0.876, + "2019": 0.879, + "2020": 0.881, + "2021": 0.883 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr110", + "Region": "Jiangsu", + "1990": 0.778, + "1991": 0.78, + "1992": 0.788, + "1993": 0.795, + "1994": 0.799, + "1995": 0.807, + "1996": 0.81, + "1997": 0.816, + "1998": 0.823, + "1999": 0.826, + "2000": 0.833, + "2001": 0.843, + "2002": 0.847, + "2003": 0.852, + "2004": 0.856, + "2005": 0.861, + "2006": 0.865, + "2007": 0.868, + "2008": 0.868, + "2009": 0.874, + "2010": 0.877, + "2011": 0.882, + "2012": 0.886, + "2013": 0.89, + "2014": 0.894, + "2015": 0.898, + "2016": 0.902, + "2017": 0.903, + "2018": 0.91, + "2019": 0.914, + "2020": 0.916, + "2021": 0.918 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr114", + "Region": "Jiangxi", + "1990": 0.698, + "1991": 0.701, + "1992": 0.709, + "1993": 0.716, + "1994": 0.721, + "1995": 0.728, + "1996": 0.732, + "1997": 0.738, + "1998": 0.746, + "1999": 0.749, + "2000": 0.756, + "2001": 0.77, + "2002": 0.779, + "2003": 0.787, + "2004": 0.796, + "2005": 0.804, + "2006": 0.813, + "2007": 0.82, + "2008": 0.825, + "2009": 0.835, + "2010": 0.841, + "2011": 0.846, + "2012": 0.85, + "2013": 0.854, + "2014": 0.858, + "2015": 0.862, + "2016": 0.866, + "2017": 0.866, + "2018": 0.874, + "2019": 0.877, + "2020": 0.879, + "2021": 0.881 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr107", + "Region": "Jilin", + "1990": 0.726, + "1991": 0.732, + "1992": 0.744, + "1993": 0.755, + "1994": 0.763, + "1995": 0.774, + "1996": 0.782, + "1997": 0.791, + "1998": 0.802, + "1999": 0.81, + "2000": 0.82, + "2001": 0.831, + "2002": 0.836, + "2003": 0.841, + "2004": 0.846, + "2005": 0.851, + "2006": 0.856, + "2007": 0.859, + "2008": 0.86, + "2009": 0.867, + "2010": 0.87, + "2011": 0.875, + "2012": 0.879, + "2013": 0.883, + "2014": 0.887, + "2015": 0.891, + "2016": 0.895, + "2017": 0.896, + "2018": 0.903, + "2019": 0.907, + "2020": 0.908, + "2021": 0.911 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr106", + "Region": "Liaoning", + "1990": 0.761, + "1991": 0.763, + "1992": 0.773, + "1993": 0.78, + "1994": 0.785, + "1995": 0.793, + "1996": 0.798, + "1997": 0.804, + "1998": 0.812, + "1999": 0.817, + "2000": 0.824, + "2001": 0.835, + "2002": 0.84, + "2003": 0.845, + "2004": 0.85, + "2005": 0.854, + "2006": 0.86, + "2007": 0.863, + "2008": 0.863, + "2009": 0.87, + "2010": 0.873, + "2011": 0.878, + "2012": 0.882, + "2013": 0.886, + "2014": 0.89, + "2015": 0.894, + "2016": 0.898, + "2017": 0.899, + "2018": 0.906, + "2019": 0.91, + "2020": 0.912, + "2021": 0.914 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr130", + "Region": "Ningxia", + "1990": 0.711, + "1991": 0.714, + "1992": 0.723, + "1993": 0.731, + "1994": 0.736, + "1995": 0.744, + "1996": 0.748, + "1997": 0.755, + "1998": 0.763, + "1999": 0.768, + "2000": 0.775, + "2001": 0.786, + "2002": 0.791, + "2003": 0.796, + "2004": 0.801, + "2005": 0.806, + "2006": 0.812, + "2007": 0.815, + "2008": 0.817, + "2009": 0.823, + "2010": 0.827, + "2011": 0.831, + "2012": 0.835, + "2013": 0.839, + "2014": 0.843, + "2015": 0.847, + "2016": 0.851, + "2017": 0.851, + "2018": 0.859, + "2019": 0.862, + "2020": 0.864, + "2021": 0.866 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr129", + "Region": "Qinghai", + "1990": 0.614, + "1991": 0.62, + "1992": 0.633, + "1993": 0.644, + "1994": 0.652, + "1995": 0.663, + "1996": 0.671, + "1997": 0.681, + "1998": 0.693, + "1999": 0.7, + "2000": 0.711, + "2001": 0.723, + "2002": 0.729, + "2003": 0.735, + "2004": 0.742, + "2005": 0.748, + "2006": 0.754, + "2007": 0.759, + "2008": 0.761, + "2009": 0.769, + "2010": 0.774, + "2011": 0.778, + "2012": 0.782, + "2013": 0.786, + "2014": 0.79, + "2015": 0.793, + "2016": 0.797, + "2017": 0.797, + "2018": 0.804, + "2019": 0.808, + "2020": 0.809, + "2021": 0.811 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr127", + "Region": "Shaanxi", + "1990": 0.718, + "1991": 0.72, + "1992": 0.728, + "1993": 0.735, + "1994": 0.74, + "1995": 0.747, + "1996": 0.75, + "1997": 0.756, + "1998": 0.763, + "1999": 0.767, + "2000": 0.774, + "2001": 0.786, + "2002": 0.794, + "2003": 0.801, + "2004": 0.809, + "2005": 0.816, + "2006": 0.823, + "2007": 0.829, + "2008": 0.832, + "2009": 0.841, + "2010": 0.847, + "2011": 0.851, + "2012": 0.856, + "2013": 0.86, + "2014": 0.864, + "2015": 0.868, + "2016": 0.871, + "2017": 0.872, + "2018": 0.879, + "2019": 0.883, + "2020": 0.885, + "2021": 0.887 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr115", + "Region": "Shandong", + "1990": 0.766, + "1991": 0.769, + "1992": 0.779, + "1993": 0.787, + "1994": 0.792, + "1995": 0.8, + "1996": 0.805, + "1997": 0.812, + "1998": 0.821, + "1999": 0.825, + "2000": 0.833, + "2001": 0.843, + "2002": 0.847, + "2003": 0.851, + "2004": 0.855, + "2005": 0.859, + "2006": 0.864, + "2007": 0.866, + "2008": 0.866, + "2009": 0.872, + "2010": 0.874, + "2011": 0.879, + "2012": 0.883, + "2013": 0.888, + "2014": 0.892, + "2015": 0.896, + "2016": 0.9, + "2017": 0.9, + "2018": 0.908, + "2019": 0.911, + "2020": 0.913, + "2021": 0.915 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr109", + "Region": "Shanghai", + "1990": 0.832, + "1991": 0.835, + "1992": 0.844, + "1993": 0.852, + "1994": 0.858, + "1995": 0.866, + "1996": 0.87, + "1997": 0.877, + "1998": 0.886, + "1999": 0.89, + "2000": 0.898, + "2001": 0.908, + "2002": 0.911, + "2003": 0.915, + "2004": 0.918, + "2005": 0.922, + "2006": 0.926, + "2007": 0.927, + "2008": 0.926, + "2009": 0.931, + "2010": 0.933, + "2011": 0.938, + "2012": 0.943, + "2013": 0.947, + "2014": 0.951, + "2015": 0.956, + "2016": 0.96, + "2017": 0.96, + "2018": 0.968, + "2019": 0.972, + "2020": 0.974, + "2021": 0.976 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr104", + "Region": "Shanxi", + "1990": 0.742, + "1991": 0.744, + "1992": 0.752, + "1993": 0.759, + "1994": 0.764, + "1995": 0.771, + "1996": 0.774, + "1997": 0.78, + "1998": 0.788, + "1999": 0.791, + "2000": 0.798, + "2001": 0.809, + "2002": 0.814, + "2003": 0.819, + "2004": 0.825, + "2005": 0.83, + "2006": 0.835, + "2007": 0.839, + "2008": 0.84, + "2009": 0.847, + "2010": 0.85, + "2011": 0.855, + "2012": 0.859, + "2013": 0.863, + "2014": 0.868, + "2015": 0.872, + "2016": 0.875, + "2017": 0.876, + "2018": 0.883, + "2019": 0.887, + "2020": 0.888, + "2021": 0.89 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr123", + "Region": "Sichuan", + "1990": 0.701, + "1991": 0.707, + "1992": 0.719, + "1993": 0.729, + "1994": 0.737, + "1995": 0.747, + "1996": 0.754, + "1997": 0.763, + "1998": 0.774, + "1999": 0.781, + "2000": 0.791, + "2001": 0.802, + "2002": 0.808, + "2003": 0.814, + "2004": 0.82, + "2005": 0.825, + "2006": 0.831, + "2007": 0.835, + "2008": 0.837, + "2009": 0.844, + "2010": 0.848, + "2011": 0.852, + "2012": 0.857, + "2013": 0.861, + "2014": 0.865, + "2015": 0.869, + "2016": 0.873, + "2017": 0.873, + "2018": 0.881, + "2019": 0.884, + "2020": 0.886, + "2021": 0.888 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr102", + "Region": "Tianjin", + "1990": 0.792, + "1991": 0.794, + "1992": 0.803, + "1993": 0.81, + "1994": 0.814, + "1995": 0.821, + "1996": 0.825, + "1997": 0.831, + "1998": 0.838, + "1999": 0.842, + "2000": 0.848, + "2001": 0.86, + "2002": 0.867, + "2003": 0.873, + "2004": 0.88, + "2005": 0.886, + "2006": 0.893, + "2007": 0.897, + "2008": 0.899, + "2009": 0.907, + "2010": 0.912, + "2011": 0.917, + "2012": 0.921, + "2013": 0.926, + "2014": 0.93, + "2015": 0.934, + "2016": 0.938, + "2017": 0.938, + "2018": 0.946, + "2019": 0.95, + "2020": 0.952, + "2021": 0.954 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr126", + "Region": "Tibet", + "1990": 0.6, + "1991": 0.605, + "1992": 0.616, + "1993": 0.626, + "1994": 0.633, + "1995": 0.643, + "1996": 0.65, + "1997": 0.659, + "1998": 0.669, + "1999": 0.676, + "2000": 0.686, + "2001": 0.697, + "2002": 0.703, + "2003": 0.709, + "2004": 0.715, + "2005": 0.721, + "2006": 0.727, + "2007": 0.732, + "2008": 0.734, + "2009": 0.742, + "2010": 0.746, + "2011": 0.75, + "2012": 0.754, + "2013": 0.758, + "2014": 0.762, + "2015": 0.765, + "2016": 0.769, + "2017": 0.769, + "2018": 0.776, + "2019": 0.779, + "2020": 0.781, + "2021": 0.782 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr131", + "Region": "Xinjiang", + "1990": 0.644, + "1991": 0.65, + "1992": 0.661, + "1993": 0.671, + "1994": 0.679, + "1995": 0.689, + "1996": 0.696, + "1997": 0.705, + "1998": 0.716, + "1999": 0.723, + "2000": 0.733, + "2001": 0.746, + "2002": 0.753, + "2003": 0.761, + "2004": 0.769, + "2005": 0.777, + "2006": 0.785, + "2007": 0.791, + "2008": 0.795, + "2009": 0.805, + "2010": 0.811, + "2011": 0.815, + "2012": 0.819, + "2013": 0.823, + "2014": 0.827, + "2015": 0.831, + "2016": 0.835, + "2017": 0.835, + "2018": 0.842, + "2019": 0.846, + "2020": 0.847, + "2021": 0.849 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr125", + "Region": "Yunnan", + "1990": 0.658, + "1991": 0.659, + "1992": 0.666, + "1993": 0.672, + "1994": 0.676, + "1995": 0.682, + "1996": 0.684, + "1997": 0.689, + "1998": 0.695, + "1999": 0.697, + "2000": 0.703, + "2001": 0.714, + "2002": 0.721, + "2003": 0.728, + "2004": 0.734, + "2005": 0.74, + "2006": 0.747, + "2007": 0.752, + "2008": 0.755, + "2009": 0.762, + "2010": 0.767, + "2011": 0.772, + "2012": 0.776, + "2013": 0.779, + "2014": 0.783, + "2015": 0.787, + "2016": 0.79, + "2017": 0.791, + "2018": 0.798, + "2019": 0.801, + "2020": 0.802, + "2021": 0.804 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr111", + "Region": "Zhejiang", + "1990": 0.784, + "1991": 0.787, + "1992": 0.796, + "1993": 0.803, + "1994": 0.808, + "1995": 0.816, + "1996": 0.82, + "1997": 0.826, + "1998": 0.834, + "1999": 0.838, + "2000": 0.845, + "2001": 0.856, + "2002": 0.861, + "2003": 0.866, + "2004": 0.871, + "2005": 0.875, + "2006": 0.881, + "2007": 0.884, + "2008": 0.884, + "2009": 0.891, + "2010": 0.894, + "2011": 0.899, + "2012": 0.903, + "2013": 0.907, + "2014": 0.912, + "2015": 0.916, + "2016": 0.92, + "2017": 0.92, + "2018": 0.928, + "2019": 0.931, + "2020": 0.933, + "2021": 0.935 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "National", + "GDLCODE": "COLt", + "Region": "Total", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.792, + "2002": 0.799, + "2003": 0.806, + "2004": 0.811, + "2005": 0.817, + "2006": 0.823, + "2007": 0.828, + "2008": 0.835, + "2009": 0.842, + "2010": 0.847, + "2011": 0.851, + "2012": 0.855, + "2013": 0.859, + "2014": 0.862, + "2015": 0.865, + "2016": 0.869, + "2017": 0.871, + "2018": 0.873, + "2019": 0.873, + "2020": 0.843, + "2021": 0.813 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr129", + "Region": "Amazonas", + "1990": 0.779, + "1991": 0.781, + "1992": 0.785, + "1993": 0.79, + "1994": 0.794, + "1995": 0.799, + "1996": 0.798, + "1997": 0.797, + "1998": 0.795, + "1999": 0.792, + "2000": 0.793, + "2001": 0.794, + "2002": 0.799, + "2003": 0.803, + "2004": 0.806, + "2005": 0.81, + "2006": 0.813, + "2007": 0.816, + "2008": 0.82, + "2009": 0.824, + "2010": 0.826, + "2011": 0.825, + "2012": 0.823, + "2013": 0.821, + "2014": 0.818, + "2015": 0.815, + "2016": 0.819, + "2017": 0.821, + "2018": 0.823, + "2019": 0.823, + "2020": 0.794, + "2021": 0.765 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr101", + "Region": "Antioquia (incl Medellin)", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.795, + "2002": 0.805, + "2003": 0.815, + "2004": 0.823, + "2005": 0.832, + "2006": 0.837, + "2007": 0.842, + "2008": 0.849, + "2009": 0.855, + "2010": 0.859, + "2011": 0.862, + "2012": 0.865, + "2013": 0.868, + "2014": 0.87, + "2015": 0.872, + "2016": 0.876, + "2017": 0.878, + "2018": 0.88, + "2019": 0.88, + "2020": 0.849, + "2021": 0.819 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr125", + "Region": "Arauca", + "1990": 0.779, + "1991": 0.781, + "1992": 0.785, + "1993": 0.79, + "1994": 0.794, + "1995": 0.799, + "1996": 0.797, + "1997": 0.796, + "1998": 0.795, + "1999": 0.792, + "2000": 0.793, + "2001": 0.794, + "2002": 0.798, + "2003": 0.803, + "2004": 0.806, + "2005": 0.81, + "2006": 0.825, + "2007": 0.841, + "2008": 0.857, + "2009": 0.874, + "2010": 0.888, + "2011": 0.882, + "2012": 0.876, + "2013": 0.868, + "2014": 0.861, + "2015": 0.854, + "2016": 0.857, + "2017": 0.86, + "2018": 0.861, + "2019": 0.861, + "2020": 0.831, + "2021": 0.801 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr102", + "Region": "Atlantico (incl Barranquilla)", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.795, + "2002": 0.804, + "2003": 0.814, + "2004": 0.821, + "2005": 0.83, + "2006": 0.833, + "2007": 0.835, + "2008": 0.838, + "2009": 0.842, + "2010": 0.842, + "2011": 0.847, + "2012": 0.852, + "2013": 0.856, + "2014": 0.859, + "2015": 0.863, + "2016": 0.866, + "2017": 0.869, + "2018": 0.87, + "2019": 0.87, + "2020": 0.84, + "2021": 0.81 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr103", + "Region": "Bogota D.C.", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.794, + "2002": 0.802, + "2003": 0.81, + "2004": 0.817, + "2005": 0.825, + "2006": 0.83, + "2007": 0.834, + "2008": 0.84, + "2009": 0.846, + "2010": 0.85, + "2011": 0.855, + "2012": 0.86, + "2013": 0.864, + "2014": 0.869, + "2015": 0.873, + "2016": 0.876, + "2017": 0.879, + "2018": 0.88, + "2019": 0.88, + "2020": 0.85, + "2021": 0.82 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr104", + "Region": "Bolivar (Sur and Norte)", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.793, + "2002": 0.8, + "2003": 0.808, + "2004": 0.813, + "2005": 0.82, + "2006": 0.822, + "2007": 0.824, + "2008": 0.827, + "2009": 0.83, + "2010": 0.83, + "2011": 0.839, + "2012": 0.849, + "2013": 0.857, + "2014": 0.865, + "2015": 0.874, + "2016": 0.877, + "2017": 0.88, + "2018": 0.881, + "2019": 0.881, + "2020": 0.851, + "2021": 0.821 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr105", + "Region": "Boyaca", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.791, + "2002": 0.797, + "2003": 0.802, + "2004": 0.806, + "2005": 0.811, + "2006": 0.82, + "2007": 0.828, + "2008": 0.837, + "2009": 0.847, + "2010": 0.854, + "2011": 0.859, + "2012": 0.863, + "2013": 0.867, + "2014": 0.871, + "2015": 0.875, + "2016": 0.878, + "2017": 0.881, + "2018": 0.883, + "2019": 0.883, + "2020": 0.852, + "2021": 0.822 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr106", + "Region": "Caldas", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.797, + "2002": 0.808, + "2003": 0.819, + "2004": 0.829, + "2005": 0.839, + "2006": 0.847, + "2007": 0.854, + "2008": 0.862, + "2009": 0.871, + "2010": 0.876, + "2011": 0.88, + "2012": 0.883, + "2013": 0.885, + "2014": 0.888, + "2015": 0.89, + "2016": 0.893, + "2017": 0.896, + "2018": 0.897, + "2019": 0.898, + "2020": 0.866, + "2021": 0.836 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr107", + "Region": "Caqueta", + "1990": 0.746, + "1991": 0.748, + "1992": 0.752, + "1993": 0.756, + "1994": 0.761, + "1995": 0.766, + "1996": 0.764, + "1997": 0.763, + "1998": 0.762, + "1999": 0.759, + "2000": 0.76, + "2001": 0.76, + "2002": 0.765, + "2003": 0.769, + "2004": 0.772, + "2005": 0.776, + "2006": 0.79, + "2007": 0.805, + "2008": 0.82, + "2009": 0.836, + "2010": 0.849, + "2011": 0.853, + "2012": 0.857, + "2013": 0.86, + "2014": 0.864, + "2015": 0.867, + "2016": 0.87, + "2017": 0.873, + "2018": 0.874, + "2019": 0.874, + "2020": 0.844, + "2021": 0.814 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr126", + "Region": "Casanare", + "1990": 0.812, + "1991": 0.815, + "1992": 0.818, + "1993": 0.823, + "1994": 0.828, + "1995": 0.833, + "1996": 0.831, + "1997": 0.831, + "1998": 0.829, + "1999": 0.826, + "2000": 0.827, + "2001": 0.828, + "2002": 0.832, + "2003": 0.837, + "2004": 0.84, + "2005": 0.844, + "2006": 0.85, + "2007": 0.856, + "2008": 0.863, + "2009": 0.87, + "2010": 0.874, + "2011": 0.876, + "2012": 0.876, + "2013": 0.877, + "2014": 0.877, + "2015": 0.877, + "2016": 0.88, + "2017": 0.883, + "2018": 0.884, + "2019": 0.884, + "2020": 0.853, + "2021": 0.823 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr108", + "Region": "Cauca", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.781, + "2002": 0.777, + "2003": 0.773, + "2004": 0.767, + "2005": 0.761, + "2006": 0.777, + "2007": 0.793, + "2008": 0.81, + "2009": 0.827, + "2010": 0.842, + "2011": 0.845, + "2012": 0.848, + "2013": 0.85, + "2014": 0.853, + "2015": 0.855, + "2016": 0.858, + "2017": 0.861, + "2018": 0.862, + "2019": 0.862, + "2020": 0.832, + "2021": 0.802 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr109", + "Region": "Cesar", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.788, + "2002": 0.791, + "2003": 0.793, + "2004": 0.794, + "2005": 0.796, + "2006": 0.801, + "2007": 0.806, + "2008": 0.813, + "2009": 0.819, + "2010": 0.822, + "2011": 0.827, + "2012": 0.832, + "2013": 0.836, + "2014": 0.839, + "2015": 0.843, + "2016": 0.846, + "2017": 0.849, + "2018": 0.85, + "2019": 0.85, + "2020": 0.82, + "2021": 0.791 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr112", + "Region": "Choco", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.783, + "2002": 0.78, + "2003": 0.776, + "2004": 0.772, + "2005": 0.768, + "2006": 0.77, + "2007": 0.773, + "2008": 0.777, + "2009": 0.78, + "2010": 0.782, + "2011": 0.791, + "2012": 0.8, + "2013": 0.808, + "2014": 0.817, + "2015": 0.825, + "2016": 0.828, + "2017": 0.83, + "2018": 0.832, + "2019": 0.832, + "2020": 0.803, + "2021": 0.774 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr110", + "Region": "Cordoba", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.789, + "2002": 0.792, + "2003": 0.795, + "2004": 0.796, + "2005": 0.798, + "2006": 0.806, + "2007": 0.812, + "2008": 0.821, + "2009": 0.829, + "2010": 0.834, + "2011": 0.84, + "2012": 0.846, + "2013": 0.851, + "2014": 0.856, + "2015": 0.86, + "2016": 0.864, + "2017": 0.866, + "2018": 0.868, + "2019": 0.868, + "2020": 0.838, + "2021": 0.808 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr111", + "Region": "Cundinamarca", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.794, + "2002": 0.803, + "2003": 0.812, + "2004": 0.819, + "2005": 0.827, + "2006": 0.834, + "2007": 0.84, + "2008": 0.848, + "2009": 0.856, + "2010": 0.861, + "2011": 0.867, + "2012": 0.873, + "2013": 0.877, + "2014": 0.882, + "2015": 0.887, + "2016": 0.89, + "2017": 0.893, + "2018": 0.894, + "2019": 0.894, + "2020": 0.863, + "2021": 0.833 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr130", + "Region": "Guainja", + "1990": 0.782, + "1991": 0.785, + "1992": 0.788, + "1993": 0.793, + "1994": 0.797, + "1995": 0.802, + "1996": 0.801, + "1997": 0.8, + "1998": 0.798, + "1999": 0.796, + "2000": 0.796, + "2001": 0.797, + "2002": 0.802, + "2003": 0.806, + "2004": 0.809, + "2005": 0.813, + "2006": 0.817, + "2007": 0.821, + "2008": 0.826, + "2009": 0.831, + "2010": 0.833, + "2011": 0.841, + "2012": 0.85, + "2013": 0.857, + "2014": 0.864, + "2015": 0.872, + "2016": 0.875, + "2017": 0.878, + "2018": 0.879, + "2019": 0.879, + "2020": 0.849, + "2021": 0.819 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr114", + "Region": "Guajira", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.784, + "2002": 0.783, + "2003": 0.781, + "2004": 0.778, + "2005": 0.775, + "2006": 0.776, + "2007": 0.776, + "2008": 0.777, + "2009": 0.778, + "2010": 0.777, + "2011": 0.775, + "2012": 0.773, + "2013": 0.77, + "2014": 0.767, + "2015": 0.764, + "2016": 0.767, + "2017": 0.77, + "2018": 0.771, + "2019": 0.771, + "2020": 0.743, + "2021": 0.716 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr131", + "Region": "Guaviare", + "1990": 0.783, + "1991": 0.786, + "1992": 0.79, + "1993": 0.795, + "1994": 0.799, + "1995": 0.804, + "1996": 0.802, + "1997": 0.802, + "1998": 0.8, + "1999": 0.797, + "2000": 0.798, + "2001": 0.799, + "2002": 0.803, + "2003": 0.808, + "2004": 0.811, + "2005": 0.815, + "2006": 0.825, + "2007": 0.835, + "2008": 0.846, + "2009": 0.857, + "2010": 0.866, + "2011": 0.868, + "2012": 0.869, + "2013": 0.869, + "2014": 0.87, + "2015": 0.87, + "2016": 0.873, + "2017": 0.876, + "2018": 0.878, + "2019": 0.878, + "2020": 0.847, + "2021": 0.817 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr113", + "Region": "Huila", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.789, + "2002": 0.793, + "2003": 0.796, + "2004": 0.797, + "2005": 0.8, + "2006": 0.804, + "2007": 0.807, + "2008": 0.812, + "2009": 0.817, + "2010": 0.819, + "2011": 0.83, + "2012": 0.841, + "2013": 0.851, + "2014": 0.861, + "2015": 0.871, + "2016": 0.874, + "2017": 0.877, + "2018": 0.879, + "2019": 0.879, + "2020": 0.848, + "2021": 0.818 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr115", + "Region": "Magdalena", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.788, + "2002": 0.791, + "2003": 0.793, + "2004": 0.794, + "2005": 0.795, + "2006": 0.807, + "2007": 0.818, + "2008": 0.831, + "2009": 0.844, + "2010": 0.854, + "2011": 0.854, + "2012": 0.853, + "2013": 0.851, + "2014": 0.849, + "2015": 0.847, + "2016": 0.85, + "2017": 0.853, + "2018": 0.854, + "2019": 0.854, + "2020": 0.824, + "2021": 0.795 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr116", + "Region": "Meta", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.793, + "2002": 0.801, + "2003": 0.809, + "2004": 0.815, + "2005": 0.822, + "2006": 0.827, + "2007": 0.832, + "2008": 0.839, + "2009": 0.845, + "2010": 0.849, + "2011": 0.86, + "2012": 0.871, + "2013": 0.881, + "2014": 0.89, + "2015": 0.9, + "2016": 0.904, + "2017": 0.906, + "2018": 0.908, + "2019": 0.908, + "2020": 0.877, + "2021": 0.846 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr117", + "Region": "Narino", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.788, + "2002": 0.789, + "2003": 0.791, + "2004": 0.791, + "2005": 0.792, + "2006": 0.801, + "2007": 0.81, + "2008": 0.82, + "2009": 0.83, + "2010": 0.838, + "2011": 0.844, + "2012": 0.85, + "2013": 0.855, + "2014": 0.859, + "2015": 0.864, + "2016": 0.867, + "2017": 0.87, + "2018": 0.872, + "2019": 0.872, + "2020": 0.841, + "2021": 0.811 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr118", + "Region": "Norte de Santander", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.792, + "2002": 0.798, + "2003": 0.804, + "2004": 0.809, + "2005": 0.814, + "2006": 0.822, + "2007": 0.83, + "2008": 0.839, + "2009": 0.848, + "2010": 0.855, + "2011": 0.855, + "2012": 0.856, + "2013": 0.856, + "2014": 0.855, + "2015": 0.855, + "2016": 0.858, + "2017": 0.861, + "2018": 0.862, + "2019": 0.862, + "2020": 0.832, + "2021": 0.802 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr127", + "Region": "Putumayo", + "1990": 0.803, + "1991": 0.806, + "1992": 0.81, + "1993": 0.815, + "1994": 0.819, + "1995": 0.824, + "1996": 0.823, + "1997": 0.822, + "1998": 0.82, + "1999": 0.817, + "2000": 0.818, + "2001": 0.819, + "2002": 0.824, + "2003": 0.828, + "2004": 0.831, + "2005": 0.835, + "2006": 0.834, + "2007": 0.832, + "2008": 0.832, + "2009": 0.831, + "2010": 0.828, + "2011": 0.827, + "2012": 0.826, + "2013": 0.824, + "2014": 0.822, + "2015": 0.82, + "2016": 0.824, + "2017": 0.826, + "2018": 0.828, + "2019": 0.828, + "2020": 0.798, + "2021": 0.77 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr119", + "Region": "Quindio", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.799, + "2002": 0.813, + "2003": 0.827, + "2004": 0.839, + "2005": 0.852, + "2006": 0.85, + "2007": 0.847, + "2008": 0.845, + "2009": 0.843, + "2010": 0.839, + "2011": 0.848, + "2012": 0.857, + "2013": 0.865, + "2014": 0.873, + "2015": 0.881, + "2016": 0.884, + "2017": 0.887, + "2018": 0.889, + "2019": 0.889, + "2020": 0.858, + "2021": 0.828 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr120", + "Region": "Risaralda", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.797, + "2002": 0.808, + "2003": 0.818, + "2004": 0.828, + "2005": 0.838, + "2006": 0.842, + "2007": 0.846, + "2008": 0.851, + "2009": 0.856, + "2010": 0.858, + "2011": 0.862, + "2012": 0.866, + "2013": 0.869, + "2014": 0.872, + "2015": 0.875, + "2016": 0.878, + "2017": 0.881, + "2018": 0.882, + "2019": 0.882, + "2020": 0.852, + "2021": 0.822 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr128", + "Region": "San Andres", + "1990": 0.809, + "1991": 0.812, + "1992": 0.815, + "1993": 0.82, + "1994": 0.825, + "1995": 0.83, + "1996": 0.828, + "1997": 0.827, + "1998": 0.826, + "1999": 0.823, + "2000": 0.824, + "2001": 0.824, + "2002": 0.829, + "2003": 0.834, + "2004": 0.837, + "2005": 0.841, + "2006": 0.844, + "2007": 0.847, + "2008": 0.851, + "2009": 0.856, + "2010": 0.857, + "2011": 0.861, + "2012": 0.864, + "2013": 0.866, + "2014": 0.868, + "2015": 0.87, + "2016": 0.874, + "2017": 0.876, + "2018": 0.878, + "2019": 0.878, + "2020": 0.847, + "2021": 0.817 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr121", + "Region": "Santander", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.798, + "2002": 0.81, + "2003": 0.822, + "2004": 0.833, + "2005": 0.844, + "2006": 0.847, + "2007": 0.85, + "2008": 0.854, + "2009": 0.857, + "2010": 0.859, + "2011": 0.861, + "2012": 0.863, + "2013": 0.865, + "2014": 0.866, + "2015": 0.867, + "2016": 0.87, + "2017": 0.873, + "2018": 0.875, + "2019": 0.875, + "2020": 0.844, + "2021": 0.814 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr122", + "Region": "Sucre", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.791, + "2002": 0.797, + "2003": 0.802, + "2004": 0.806, + "2005": 0.811, + "2006": 0.818, + "2007": 0.825, + "2008": 0.833, + "2009": 0.841, + "2010": 0.847, + "2011": 0.855, + "2012": 0.863, + "2013": 0.87, + "2014": 0.877, + "2015": 0.884, + "2016": 0.887, + "2017": 0.89, + "2018": 0.892, + "2019": 0.892, + "2020": 0.861, + "2021": 0.83 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr123", + "Region": "Tolima", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.792, + "2002": 0.799, + "2003": 0.805, + "2004": 0.81, + "2005": 0.815, + "2006": 0.817, + "2007": 0.819, + "2008": 0.822, + "2009": 0.826, + "2010": 0.826, + "2011": 0.836, + "2012": 0.845, + "2013": 0.854, + "2014": 0.862, + "2015": 0.871, + "2016": 0.874, + "2017": 0.877, + "2018": 0.878, + "2019": 0.878, + "2020": 0.848, + "2021": 0.818 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr124", + "Region": "Valle (incl Cali)", + "1990": 0.748, + "1991": 0.751, + "1992": 0.754, + "1993": 0.759, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.781, + "1999": 0.783, + "2000": 0.79, + "2001": 0.793, + "2002": 0.8, + "2003": 0.807, + "2004": 0.813, + "2005": 0.82, + "2006": 0.828, + "2007": 0.835, + "2008": 0.844, + "2009": 0.853, + "2010": 0.86, + "2011": 0.864, + "2012": 0.869, + "2013": 0.873, + "2014": 0.876, + "2015": 0.88, + "2016": 0.883, + "2017": 0.886, + "2018": 0.887, + "2019": 0.887, + "2020": 0.856, + "2021": 0.826 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr132", + "Region": "Vaupis", + "1990": 0.78, + "1991": 0.782, + "1992": 0.786, + "1993": 0.791, + "1994": 0.795, + "1995": 0.8, + "1996": 0.799, + "1997": 0.798, + "1998": 0.796, + "1999": 0.793, + "2000": 0.794, + "2001": 0.795, + "2002": 0.8, + "2003": 0.804, + "2004": 0.807, + "2005": 0.811, + "2006": 0.818, + "2007": 0.825, + "2008": 0.833, + "2009": 0.841, + "2010": 0.846, + "2011": 0.833, + "2012": 0.82, + "2013": 0.806, + "2014": 0.791, + "2015": 0.777, + "2016": 0.78, + "2017": 0.782, + "2018": 0.784, + "2019": 0.784, + "2020": 0.756, + "2021": 0.728 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr133", + "Region": "Vichada", + "1990": 0.765, + "1991": 0.768, + "1992": 0.771, + "1993": 0.776, + "1994": 0.78, + "1995": 0.785, + "1996": 0.784, + "1997": 0.783, + "1998": 0.781, + "1999": 0.779, + "2000": 0.779, + "2001": 0.78, + "2002": 0.785, + "2003": 0.789, + "2004": 0.792, + "2005": 0.796, + "2006": 0.804, + "2007": 0.812, + "2008": 0.82, + "2009": 0.829, + "2010": 0.836, + "2011": 0.844, + "2012": 0.852, + "2013": 0.859, + "2014": 0.866, + "2015": 0.873, + "2016": 0.877, + "2017": 0.879, + "2018": 0.881, + "2019": 0.881, + "2020": 0.85, + "2021": 0.82 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "National", + "GDLCODE": "COMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.596, + "2001": 0.603, + "2002": 0.601, + "2003": 0.604, + "2004": 0.607, + "2005": 0.609, + "2006": 0.613, + "2007": 0.617, + "2008": 0.623, + "2009": 0.628, + "2010": 0.633, + "2011": 0.639, + "2012": 0.644, + "2013": 0.65, + "2014": 0.654, + "2015": 0.66, + "2016": 0.665, + "2017": 0.671, + "2018": 0.676, + "2019": 0.678, + "2020": 0.679, + "2021": 0.668 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr103", + "Region": "Anjouan (Ndzouani)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.595, + "2001": 0.602, + "2002": 0.602, + "2003": 0.606, + "2004": 0.61, + "2005": 0.613, + "2006": 0.619, + "2007": 0.623, + "2008": 0.63, + "2009": 0.636, + "2010": 0.642, + "2011": 0.649, + "2012": 0.655, + "2013": 0.661, + "2014": 0.666, + "2015": 0.672, + "2016": 0.677, + "2017": 0.683, + "2018": 0.687, + "2019": 0.69, + "2020": 0.691, + "2021": 0.68 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr101", + "Region": "Grande Comore (Ngazidja)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.606, + "2001": 0.61, + "2002": 0.605, + "2003": 0.606, + "2004": 0.607, + "2005": 0.607, + "2006": 0.608, + "2007": 0.609, + "2008": 0.613, + "2009": 0.616, + "2010": 0.618, + "2011": 0.622, + "2012": 0.625, + "2013": 0.63, + "2014": 0.635, + "2015": 0.641, + "2016": 0.646, + "2017": 0.652, + "2018": 0.656, + "2019": 0.658, + "2020": 0.66, + "2021": 0.648 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr102", + "Region": "Moheli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.543, + "2001": 0.556, + "2002": 0.561, + "2003": 0.571, + "2004": 0.581, + "2005": 0.589, + "2006": 0.599, + "2007": 0.609, + "2008": 0.621, + "2009": 0.632, + "2010": 0.643, + "2011": 0.655, + "2012": 0.665, + "2013": 0.672, + "2014": 0.676, + "2015": 0.682, + "2016": 0.688, + "2017": 0.694, + "2018": 0.698, + "2019": 0.701, + "2020": 0.702, + "2021": 0.69 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "National", + "GDLCODE": "COGt", + "Region": "Total", + "1990": 0.553, + "1991": 0.542, + "1992": 0.533, + "1993": 0.525, + "1994": 0.519, + "1995": 0.518, + "1996": 0.515, + "1997": 0.418, + "1998": 0.475, + "1999": 0.504, + "2000": 0.518, + "2001": 0.529, + "2002": 0.54, + "2003": 0.553, + "2004": 0.569, + "2005": 0.587, + "2006": 0.598, + "2007": 0.61, + "2008": 0.622, + "2009": 0.632, + "2010": 0.641, + "2011": 0.646, + "2012": 0.651, + "2013": 0.657, + "2014": 0.661, + "2015": 0.665, + "2016": 0.67, + "2017": 0.673, + "2018": 0.678, + "2019": 0.658, + "2020": 0.674, + "2021": 0.67 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr204", + "Region": " Bouenza", + "1990": 0.492, + "1991": 0.483, + "1992": 0.474, + "1993": 0.467, + "1994": 0.461, + "1995": 0.46, + "1996": 0.457, + "1997": 0.367, + "1998": 0.42, + "1999": 0.447, + "2000": 0.46, + "2001": 0.47, + "2002": 0.48, + "2003": 0.493, + "2004": 0.507, + "2005": 0.524, + "2006": 0.538, + "2007": 0.552, + "2008": 0.566, + "2009": 0.578, + "2010": 0.59, + "2011": 0.597, + "2012": 0.604, + "2013": 0.612, + "2014": 0.618, + "2015": 0.624, + "2016": 0.629, + "2017": 0.632, + "2018": 0.636, + "2019": 0.617, + "2020": 0.632, + "2021": 0.628 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr211", + "Region": " Brazzaville", + "1990": 0.576, + "1991": 0.566, + "1992": 0.556, + "1993": 0.548, + "1994": 0.542, + "1995": 0.54, + "1996": 0.538, + "1997": 0.438, + "1998": 0.497, + "1999": 0.526, + "2000": 0.541, + "2001": 0.552, + "2002": 0.563, + "2003": 0.577, + "2004": 0.593, + "2005": 0.611, + "2006": 0.62, + "2007": 0.629, + "2008": 0.638, + "2009": 0.645, + "2010": 0.651, + "2011": 0.653, + "2012": 0.659, + "2013": 0.666, + "2014": 0.671, + "2015": 0.677, + "2016": 0.682, + "2017": 0.685, + "2018": 0.689, + "2019": 0.669, + "2020": 0.685, + "2021": 0.681 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr207", + "Region": " Cuvette", + "1990": 0.539, + "1991": 0.528, + "1992": 0.519, + "1993": 0.512, + "1994": 0.505, + "1995": 0.504, + "1996": 0.502, + "1997": 0.406, + "1998": 0.462, + "1999": 0.491, + "2000": 0.505, + "2001": 0.515, + "2002": 0.526, + "2003": 0.539, + "2004": 0.555, + "2005": 0.572, + "2006": 0.582, + "2007": 0.592, + "2008": 0.602, + "2009": 0.611, + "2010": 0.618, + "2011": 0.622, + "2012": 0.639, + "2013": 0.657, + "2014": 0.672, + "2015": 0.688, + "2016": 0.693, + "2017": 0.696, + "2018": 0.701, + "2019": 0.68, + "2020": 0.696, + "2021": 0.692 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr208", + "Region": " Cuvette Ouest", + "1990": 0.534, + "1991": 0.524, + "1992": 0.515, + "1993": 0.508, + "1994": 0.501, + "1995": 0.5, + "1996": 0.498, + "1997": 0.403, + "1998": 0.459, + "1999": 0.487, + "2000": 0.501, + "2001": 0.511, + "2002": 0.522, + "2003": 0.535, + "2004": 0.55, + "2005": 0.567, + "2006": 0.575, + "2007": 0.583, + "2008": 0.591, + "2009": 0.597, + "2010": 0.603, + "2011": 0.604, + "2012": 0.598, + "2013": 0.594, + "2014": 0.587, + "2015": 0.582, + "2016": 0.587, + "2017": 0.589, + "2018": 0.593, + "2019": 0.575, + "2020": 0.59, + "2021": 0.586 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr201", + "Region": " Kouilou", + "1990": 0.54, + "1991": 0.53, + "1992": 0.521, + "1993": 0.513, + "1994": 0.507, + "1995": 0.505, + "1996": 0.503, + "1997": 0.408, + "1998": 0.464, + "1999": 0.492, + "2000": 0.506, + "2001": 0.517, + "2002": 0.527, + "2003": 0.54, + "2004": 0.556, + "2005": 0.573, + "2006": 0.584, + "2007": 0.594, + "2008": 0.605, + "2009": 0.615, + "2010": 0.623, + "2011": 0.627, + "2012": 0.622, + "2013": 0.618, + "2014": 0.612, + "2015": 0.608, + "2016": 0.613, + "2017": 0.615, + "2018": 0.62, + "2019": 0.601, + "2020": 0.616, + "2021": 0.612 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr203", + "Region": " Lekoumou", + "1990": 0.482, + "1991": 0.473, + "1992": 0.464, + "1993": 0.457, + "1994": 0.451, + "1995": 0.45, + "1996": 0.448, + "1997": 0.359, + "1998": 0.411, + "1999": 0.437, + "2000": 0.45, + "2001": 0.461, + "2002": 0.47, + "2003": 0.482, + "2004": 0.497, + "2005": 0.513, + "2006": 0.533, + "2007": 0.552, + "2008": 0.572, + "2009": 0.59, + "2010": 0.607, + "2011": 0.619, + "2012": 0.615, + "2013": 0.611, + "2014": 0.606, + "2015": 0.601, + "2016": 0.606, + "2017": 0.609, + "2018": 0.613, + "2019": 0.594, + "2020": 0.609, + "2021": 0.605 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr210", + "Region": " Likouala", + "1990": 0.548, + "1991": 0.538, + "1992": 0.529, + "1993": 0.521, + "1994": 0.515, + "1995": 0.513, + "1996": 0.511, + "1997": 0.414, + "1998": 0.471, + "1999": 0.5, + "2000": 0.514, + "2001": 0.525, + "2002": 0.535, + "2003": 0.549, + "2004": 0.564, + "2005": 0.582, + "2006": 0.593, + "2007": 0.605, + "2008": 0.617, + "2009": 0.627, + "2010": 0.636, + "2011": 0.64, + "2012": 0.632, + "2013": 0.625, + "2014": 0.616, + "2015": 0.608, + "2016": 0.613, + "2017": 0.616, + "2018": 0.62, + "2019": 0.601, + "2020": 0.616, + "2021": 0.612 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr202", + "Region": " Niari", + "1990": 0.623, + "1991": 0.611, + "1992": 0.602, + "1993": 0.593, + "1994": 0.586, + "1995": 0.585, + "1996": 0.582, + "1997": 0.477, + "1998": 0.539, + "1999": 0.57, + "2000": 0.585, + "2001": 0.597, + "2002": 0.609, + "2003": 0.623, + "2004": 0.64, + "2005": 0.659, + "2006": 0.663, + "2007": 0.667, + "2008": 0.671, + "2009": 0.673, + "2010": 0.674, + "2011": 0.671, + "2012": 0.674, + "2013": 0.678, + "2014": 0.68, + "2015": 0.682, + "2016": 0.687, + "2017": 0.69, + "2018": 0.695, + "2019": 0.674, + "2020": 0.691, + "2021": 0.687 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr206", + "Region": " Plateaux", + "1990": 0.516, + "1991": 0.506, + "1992": 0.497, + "1993": 0.49, + "1994": 0.484, + "1995": 0.482, + "1996": 0.48, + "1997": 0.387, + "1998": 0.442, + "1999": 0.469, + "2000": 0.483, + "2001": 0.494, + "2002": 0.504, + "2003": 0.516, + "2004": 0.532, + "2005": 0.548, + "2006": 0.562, + "2007": 0.577, + "2008": 0.591, + "2009": 0.603, + "2010": 0.615, + "2011": 0.622, + "2012": 0.641, + "2013": 0.66, + "2014": 0.677, + "2015": 0.694, + "2016": 0.699, + "2017": 0.702, + "2018": 0.707, + "2019": 0.686, + "2020": 0.702, + "2021": 0.698 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr212", + "Region": " Pointe Noire", + "1990": 0.587, + "1991": 0.576, + "1992": 0.567, + "1993": 0.559, + "1994": 0.552, + "1995": 0.551, + "1996": 0.548, + "1997": 0.448, + "1998": 0.507, + "1999": 0.537, + "2000": 0.551, + "2001": 0.563, + "2002": 0.574, + "2003": 0.588, + "2004": 0.604, + "2005": 0.623, + "2006": 0.633, + "2007": 0.644, + "2008": 0.656, + "2009": 0.665, + "2010": 0.674, + "2011": 0.677, + "2012": 0.694, + "2013": 0.712, + "2014": 0.727, + "2015": 0.743, + "2016": 0.749, + "2017": 0.752, + "2018": 0.757, + "2019": 0.735, + "2020": 0.752, + "2021": 0.748 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr205", + "Region": " Pool", + "1990": 0.559, + "1991": 0.548, + "1992": 0.539, + "1993": 0.531, + "1994": 0.525, + "1995": 0.523, + "1996": 0.521, + "1997": 0.423, + "1998": 0.481, + "1999": 0.51, + "2000": 0.524, + "2001": 0.535, + "2002": 0.546, + "2003": 0.559, + "2004": 0.575, + "2005": 0.593, + "2006": 0.607, + "2007": 0.622, + "2008": 0.637, + "2009": 0.65, + "2010": 0.662, + "2011": 0.669, + "2012": 0.65, + "2013": 0.632, + "2014": 0.613, + "2015": 0.595, + "2016": 0.6, + "2017": 0.603, + "2018": 0.607, + "2019": 0.588, + "2020": 0.603, + "2021": 0.599 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr209", + "Region": " Sangha", + "1990": 0.448, + "1991": 0.439, + "1992": 0.431, + "1993": 0.424, + "1994": 0.419, + "1995": 0.417, + "1996": 0.415, + "1997": 0.33, + "1998": 0.38, + "1999": 0.405, + "2000": 0.418, + "2001": 0.428, + "2002": 0.437, + "2003": 0.449, + "2004": 0.463, + "2005": 0.478, + "2006": 0.496, + "2007": 0.515, + "2008": 0.534, + "2009": 0.551, + "2010": 0.567, + "2011": 0.578, + "2012": 0.568, + "2013": 0.558, + "2014": 0.547, + "2015": 0.536, + "2016": 0.541, + "2017": 0.544, + "2018": 0.547, + "2019": 0.53, + "2020": 0.544, + "2021": 0.54 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "National", + "GDLCODE": "CODt", + "Region": "Total", + "1990": 0.44, + "1991": 0.445, + "1992": 0.45, + "1993": 0.455, + "1994": 0.46, + "1995": 0.468, + "1996": 0.451, + "1997": 0.468, + "1998": 0.457, + "1999": 0.461, + "2000": 0.489, + "2001": 0.494, + "2002": 0.497, + "2003": 0.505, + "2004": 0.514, + "2005": 0.522, + "2006": 0.531, + "2007": 0.537, + "2008": 0.544, + "2009": 0.551, + "2010": 0.56, + "2011": 0.57, + "2012": 0.573, + "2013": 0.581, + "2014": 0.589, + "2015": 0.592, + "2016": 0.601, + "2017": 0.606, + "2018": 0.614, + "2019": 0.62, + "2020": 0.611, + "2021": 0.603 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr103", + "Region": "Bandundu", + "1990": 0.441, + "1991": 0.447, + "1992": 0.451, + "1993": 0.456, + "1994": 0.461, + "1995": 0.469, + "1996": 0.452, + "1997": 0.469, + "1998": 0.458, + "1999": 0.462, + "2000": 0.49, + "2001": 0.495, + "2002": 0.499, + "2003": 0.506, + "2004": 0.516, + "2005": 0.523, + "2006": 0.533, + "2007": 0.539, + "2008": 0.542, + "2009": 0.547, + "2010": 0.553, + "2011": 0.58, + "2012": 0.599, + "2013": 0.623, + "2014": 0.63, + "2015": 0.631, + "2016": 0.638, + "2017": 0.642, + "2018": 0.649, + "2019": 0.654, + "2020": 0.645, + "2021": 0.637 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr102", + "Region": "Bas-Congo", + "1990": 0.41, + "1991": 0.415, + "1992": 0.419, + "1993": 0.424, + "1994": 0.428, + "1995": 0.436, + "1996": 0.42, + "1997": 0.436, + "1998": 0.426, + "1999": 0.429, + "2000": 0.456, + "2001": 0.461, + "2002": 0.465, + "2003": 0.472, + "2004": 0.481, + "2005": 0.488, + "2006": 0.497, + "2007": 0.503, + "2008": 0.524, + "2009": 0.546, + "2010": 0.57, + "2011": 0.57, + "2012": 0.563, + "2013": 0.561, + "2014": 0.573, + "2015": 0.579, + "2016": 0.592, + "2017": 0.601, + "2018": 0.612, + "2019": 0.617, + "2020": 0.609, + "2021": 0.601 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr104", + "Region": "Equateur", + "1990": 0.427, + "1991": 0.432, + "1992": 0.437, + "1993": 0.441, + "1994": 0.447, + "1995": 0.454, + "1996": 0.438, + "1997": 0.454, + "1998": 0.444, + "1999": 0.447, + "2000": 0.475, + "2001": 0.48, + "2002": 0.484, + "2003": 0.491, + "2004": 0.5, + "2005": 0.508, + "2006": 0.517, + "2007": 0.523, + "2008": 0.528, + "2009": 0.535, + "2010": 0.544, + "2011": 0.548, + "2012": 0.545, + "2013": 0.547, + "2014": 0.566, + "2015": 0.578, + "2016": 0.597, + "2017": 0.611, + "2018": 0.629, + "2019": 0.634, + "2020": 0.626, + "2021": 0.617 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr111", + "Region": "Kasai Occidental", + "1990": 0.437, + "1991": 0.442, + "1992": 0.447, + "1993": 0.452, + "1994": 0.457, + "1995": 0.465, + "1996": 0.448, + "1997": 0.465, + "1998": 0.454, + "1999": 0.458, + "2000": 0.486, + "2001": 0.491, + "2002": 0.494, + "2003": 0.502, + "2004": 0.511, + "2005": 0.519, + "2006": 0.528, + "2007": 0.534, + "2008": 0.54, + "2009": 0.546, + "2010": 0.555, + "2011": 0.554, + "2012": 0.546, + "2013": 0.543, + "2014": 0.538, + "2015": 0.528, + "2016": 0.524, + "2017": 0.517, + "2018": 0.513, + "2019": 0.518, + "2020": 0.51, + "2021": 0.503 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr110", + "Region": "Kasai Oriental", + "1990": 0.453, + "1991": 0.458, + "1992": 0.463, + "1993": 0.468, + "1994": 0.473, + "1995": 0.481, + "1996": 0.464, + "1997": 0.481, + "1998": 0.47, + "1999": 0.474, + "2000": 0.503, + "2001": 0.508, + "2002": 0.511, + "2003": 0.519, + "2004": 0.528, + "2005": 0.536, + "2006": 0.546, + "2007": 0.552, + "2008": 0.554, + "2009": 0.558, + "2010": 0.563, + "2011": 0.566, + "2012": 0.562, + "2013": 0.563, + "2014": 0.567, + "2015": 0.566, + "2016": 0.571, + "2017": 0.573, + "2018": 0.577, + "2019": 0.582, + "2020": 0.574, + "2021": 0.566 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr109", + "Region": "Katanga", + "1990": 0.442, + "1991": 0.447, + "1992": 0.452, + "1993": 0.457, + "1994": 0.462, + "1995": 0.47, + "1996": 0.453, + "1997": 0.47, + "1998": 0.459, + "1999": 0.463, + "2000": 0.491, + "2001": 0.496, + "2002": 0.499, + "2003": 0.507, + "2004": 0.516, + "2005": 0.524, + "2006": 0.533, + "2007": 0.539, + "2008": 0.535, + "2009": 0.532, + "2010": 0.53, + "2011": 0.545, + "2012": 0.552, + "2013": 0.565, + "2014": 0.573, + "2015": 0.576, + "2016": 0.585, + "2017": 0.591, + "2018": 0.599, + "2019": 0.604, + "2020": 0.596, + "2021": 0.588 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr101", + "Region": "Kinshasa", + "1990": 0.517, + "1991": 0.523, + "1992": 0.528, + "1993": 0.533, + "1994": 0.539, + "1995": 0.547, + "1996": 0.529, + "1997": 0.547, + "1998": 0.535, + "1999": 0.54, + "2000": 0.571, + "2001": 0.576, + "2002": 0.58, + "2003": 0.588, + "2004": 0.599, + "2005": 0.607, + "2006": 0.617, + "2007": 0.624, + "2008": 0.639, + "2009": 0.655, + "2010": 0.673, + "2011": 0.662, + "2012": 0.645, + "2013": 0.633, + "2014": 0.629, + "2015": 0.62, + "2016": 0.617, + "2017": 0.61, + "2018": 0.607, + "2019": 0.612, + "2020": 0.604, + "2021": 0.596 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr108", + "Region": "Maniema", + "1990": 0.386, + "1991": 0.391, + "1992": 0.395, + "1993": 0.399, + "1994": 0.404, + "1995": 0.411, + "1996": 0.396, + "1997": 0.411, + "1998": 0.401, + "1999": 0.405, + "2000": 0.431, + "2001": 0.436, + "2002": 0.439, + "2003": 0.446, + "2004": 0.454, + "2005": 0.462, + "2006": 0.47, + "2007": 0.476, + "2008": 0.485, + "2009": 0.495, + "2010": 0.506, + "2011": 0.539, + "2012": 0.565, + "2013": 0.594, + "2014": 0.595, + "2015": 0.592, + "2016": 0.594, + "2017": 0.592, + "2018": 0.594, + "2019": 0.599, + "2020": 0.591, + "2021": 0.583 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr106", + "Region": "Nord-Kivu", + "1990": 0.515, + "1991": 0.521, + "1992": 0.526, + "1993": 0.531, + "1994": 0.537, + "1995": 0.546, + "1996": 0.527, + "1997": 0.546, + "1998": 0.534, + "1999": 0.538, + "2000": 0.569, + "2001": 0.575, + "2002": 0.578, + "2003": 0.587, + "2004": 0.597, + "2005": 0.605, + "2006": 0.615, + "2007": 0.622, + "2008": 0.613, + "2009": 0.606, + "2010": 0.6, + "2011": 0.628, + "2012": 0.648, + "2013": 0.672, + "2014": 0.678, + "2015": 0.679, + "2016": 0.686, + "2017": 0.689, + "2018": 0.695, + "2019": 0.701, + "2020": 0.692, + "2021": 0.683 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr105", + "Region": "Orientale", + "1990": 0.415, + "1991": 0.42, + "1992": 0.424, + "1993": 0.429, + "1994": 0.434, + "1995": 0.442, + "1996": 0.425, + "1997": 0.442, + "1998": 0.431, + "1999": 0.435, + "2000": 0.462, + "2001": 0.467, + "2002": 0.47, + "2003": 0.478, + "2004": 0.486, + "2005": 0.494, + "2006": 0.503, + "2007": 0.509, + "2008": 0.527, + "2009": 0.547, + "2010": 0.569, + "2011": 0.576, + "2012": 0.575, + "2013": 0.58, + "2014": 0.597, + "2015": 0.609, + "2016": 0.626, + "2017": 0.639, + "2018": 0.655, + "2019": 0.66, + "2020": 0.652, + "2021": 0.643 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr107", + "Region": "Sud-Kivu", + "1990": 0.409, + "1991": 0.414, + "1992": 0.418, + "1993": 0.423, + "1994": 0.428, + "1995": 0.436, + "1996": 0.419, + "1997": 0.436, + "1998": 0.425, + "1999": 0.429, + "2000": 0.456, + "2001": 0.461, + "2002": 0.464, + "2003": 0.471, + "2004": 0.48, + "2005": 0.487, + "2006": 0.496, + "2007": 0.502, + "2008": 0.517, + "2009": 0.533, + "2010": 0.551, + "2011": 0.549, + "2012": 0.541, + "2013": 0.538, + "2014": 0.564, + "2015": 0.585, + "2016": 0.611, + "2017": 0.633, + "2018": 0.657, + "2019": 0.663, + "2020": 0.654, + "2021": 0.645 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "National", + "GDLCODE": "CRIt", + "Region": "Total", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr102", + "Region": "Alajuela", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr103", + "Region": "Cartago", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr105", + "Region": "Guanacaste", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr104", + "Region": "Heredia", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr107", + "Region": "Limon", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr106", + "Region": "Puntarenas", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr101", + "Region": "San Jose", + "1990": 0.871, + "1991": 0.871, + "1992": 0.871, + "1993": 0.872, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.875, + "1999": 0.879, + "2000": 0.886, + "2001": 0.885, + "2002": 0.892, + "2003": 0.893, + "2004": 0.897, + "2005": 0.9, + "2006": 0.9, + "2007": 0.899, + "2008": 0.899, + "2009": 0.903, + "2010": 0.903, + "2011": 0.913, + "2012": 0.912, + "2013": 0.914, + "2014": 0.904, + "2015": 0.909, + "2016": 0.915, + "2017": 0.913, + "2018": 0.915, + "2019": 0.914, + "2020": 0.912, + "2021": 0.877 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "National", + "GDLCODE": "CIVt", + "Region": "Total", + "1990": 0.502, + "1991": 0.497, + "1992": 0.494, + "1993": 0.491, + "1994": 0.488, + "1995": 0.486, + "1996": 0.485, + "1997": 0.484, + "1998": 0.479, + "1999": 0.476, + "2000": 0.474, + "2001": 0.474, + "2002": 0.475, + "2003": 0.476, + "2004": 0.483, + "2005": 0.49, + "2006": 0.498, + "2007": 0.507, + "2008": 0.518, + "2009": 0.529, + "2010": 0.539, + "2011": 0.546, + "2012": 0.556, + "2013": 0.565, + "2014": 0.572, + "2015": 0.581, + "2016": 0.586, + "2017": 0.592, + "2018": 0.598, + "2019": 0.605, + "2020": 0.6, + "2021": 0.594 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr101", + "Region": "Centre", + "1990": 0.53, + "1991": 0.525, + "1992": 0.522, + "1993": 0.519, + "1994": 0.516, + "1995": 0.518, + "1996": 0.521, + "1997": 0.524, + "1998": 0.523, + "1999": 0.525, + "2000": 0.514, + "2001": 0.504, + "2002": 0.497, + "2003": 0.489, + "2004": 0.487, + "2005": 0.486, + "2006": 0.49, + "2007": 0.495, + "2008": 0.501, + "2009": 0.507, + "2010": 0.512, + "2011": 0.515, + "2012": 0.533, + "2013": 0.551, + "2014": 0.568, + "2015": 0.586, + "2016": 0.602, + "2017": 0.609, + "2018": 0.614, + "2019": 0.622, + "2020": 0.617, + "2021": 0.611 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr102", + "Region": "Centre Est", + "1990": 0.515, + "1991": 0.51, + "1992": 0.507, + "1993": 0.504, + "1994": 0.501, + "1995": 0.49, + "1996": 0.479, + "1997": 0.468, + "1998": 0.453, + "1999": 0.442, + "2000": 0.446, + "2001": 0.451, + "2002": 0.457, + "2003": 0.464, + "2004": 0.475, + "2005": 0.487, + "2006": 0.491, + "2007": 0.497, + "2008": 0.504, + "2009": 0.511, + "2010": 0.517, + "2011": 0.521, + "2012": 0.537, + "2013": 0.553, + "2014": 0.568, + "2015": 0.584, + "2016": 0.598, + "2017": 0.604, + "2018": 0.61, + "2019": 0.617, + "2020": 0.613, + "2021": 0.606 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr103", + "Region": "Centre Nord", + "1990": 0.52, + "1991": 0.515, + "1992": 0.512, + "1993": 0.509, + "1994": 0.506, + "1995": 0.501, + "1996": 0.497, + "1997": 0.493, + "1998": 0.485, + "1999": 0.48, + "2000": 0.49, + "2001": 0.502, + "2002": 0.514, + "2003": 0.527, + "2004": 0.545, + "2005": 0.563, + "2006": 0.571, + "2007": 0.581, + "2008": 0.592, + "2009": 0.604, + "2010": 0.614, + "2011": 0.622, + "2012": 0.619, + "2013": 0.615, + "2014": 0.607, + "2015": 0.599, + "2016": 0.587, + "2017": 0.593, + "2018": 0.599, + "2019": 0.606, + "2020": 0.602, + "2021": 0.595 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr104", + "Region": "Centre Ouest", + "1990": 0.483, + "1991": 0.479, + "1992": 0.476, + "1993": 0.473, + "1994": 0.47, + "1995": 0.48, + "1996": 0.49, + "1997": 0.501, + "1998": 0.508, + "1999": 0.517, + "2000": 0.499, + "2001": 0.483, + "2002": 0.469, + "2003": 0.455, + "2004": 0.447, + "2005": 0.439, + "2006": 0.466, + "2007": 0.494, + "2008": 0.523, + "2009": 0.554, + "2010": 0.583, + "2011": 0.61, + "2012": 0.609, + "2013": 0.605, + "2014": 0.599, + "2015": 0.592, + "2016": 0.581, + "2017": 0.588, + "2018": 0.593, + "2019": 0.6, + "2020": 0.596, + "2021": 0.589 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr105", + "Region": "Nord", + "1990": 0.461, + "1991": 0.457, + "1992": 0.454, + "1993": 0.451, + "1994": 0.448, + "1995": 0.462, + "1996": 0.476, + "1997": 0.49, + "1998": 0.501, + "1999": 0.514, + "2000": 0.505, + "2001": 0.498, + "2002": 0.492, + "2003": 0.486, + "2004": 0.486, + "2005": 0.487, + "2006": 0.478, + "2007": 0.471, + "2008": 0.464, + "2009": 0.458, + "2010": 0.45, + "2011": 0.44, + "2012": 0.466, + "2013": 0.493, + "2014": 0.519, + "2015": 0.549, + "2016": 0.576, + "2017": 0.583, + "2018": 0.588, + "2019": 0.595, + "2020": 0.591, + "2021": 0.584 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr106", + "Region": "Nord Est", + "1990": 0.52, + "1991": 0.515, + "1992": 0.512, + "1993": 0.509, + "1994": 0.506, + "1995": 0.49, + "1996": 0.475, + "1997": 0.459, + "1998": 0.44, + "1999": 0.423, + "2000": 0.424, + "2001": 0.426, + "2002": 0.429, + "2003": 0.432, + "2004": 0.44, + "2005": 0.449, + "2006": 0.459, + "2007": 0.471, + "2008": 0.483, + "2009": 0.497, + "2010": 0.509, + "2011": 0.519, + "2012": 0.532, + "2013": 0.546, + "2014": 0.558, + "2015": 0.571, + "2016": 0.581, + "2017": 0.588, + "2018": 0.593, + "2019": 0.601, + "2020": 0.596, + "2021": 0.59 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr107", + "Region": "Nord Ouest", + "1990": 0.476, + "1991": 0.472, + "1992": 0.469, + "1993": 0.466, + "1994": 0.463, + "1995": 0.456, + "1996": 0.449, + "1997": 0.442, + "1998": 0.431, + "1999": 0.423, + "2000": 0.44, + "2001": 0.457, + "2002": 0.475, + "2003": 0.493, + "2004": 0.516, + "2005": 0.54, + "2006": 0.526, + "2007": 0.513, + "2008": 0.501, + "2009": 0.489, + "2010": 0.475, + "2011": 0.46, + "2012": 0.483, + "2013": 0.506, + "2014": 0.528, + "2015": 0.554, + "2016": 0.577, + "2017": 0.583, + "2018": 0.589, + "2019": 0.596, + "2020": 0.591, + "2021": 0.585 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr108", + "Region": "Ouest", + "1990": 0.445, + "1991": 0.441, + "1992": 0.438, + "1993": 0.435, + "1994": 0.432, + "1995": 0.435, + "1996": 0.439, + "1997": 0.443, + "1998": 0.443, + "1999": 0.446, + "2000": 0.454, + "2001": 0.463, + "2002": 0.473, + "2003": 0.483, + "2004": 0.499, + "2005": 0.515, + "2006": 0.512, + "2007": 0.51, + "2008": 0.509, + "2009": 0.509, + "2010": 0.507, + "2011": 0.503, + "2012": 0.519, + "2013": 0.534, + "2014": 0.548, + "2015": 0.564, + "2016": 0.576, + "2017": 0.583, + "2018": 0.588, + "2019": 0.595, + "2020": 0.591, + "2021": 0.585 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr110", + "Region": "Sud Ouest", + "1990": 0.516, + "1991": 0.512, + "1992": 0.509, + "1993": 0.506, + "1994": 0.503, + "1995": 0.504, + "1996": 0.505, + "1997": 0.507, + "1998": 0.505, + "1999": 0.506, + "2000": 0.492, + "2001": 0.48, + "2002": 0.471, + "2003": 0.461, + "2004": 0.456, + "2005": 0.453, + "2006": 0.479, + "2007": 0.506, + "2008": 0.535, + "2009": 0.565, + "2010": 0.593, + "2011": 0.62, + "2012": 0.617, + "2013": 0.613, + "2014": 0.605, + "2015": 0.598, + "2016": 0.585, + "2017": 0.591, + "2018": 0.597, + "2019": 0.604, + "2020": 0.6, + "2021": 0.593 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr109", + "Region": "Sud, Abidjan", + "1990": 0.538, + "1991": 0.533, + "1992": 0.53, + "1993": 0.527, + "1994": 0.524, + "1995": 0.523, + "1996": 0.524, + "1997": 0.524, + "1998": 0.52, + "1999": 0.52, + "2000": 0.513, + "2001": 0.507, + "2002": 0.504, + "2003": 0.5, + "2004": 0.502, + "2005": 0.505, + "2006": 0.515, + "2007": 0.527, + "2008": 0.539, + "2009": 0.553, + "2010": 0.564, + "2011": 0.574, + "2012": 0.582, + "2013": 0.589, + "2014": 0.594, + "2015": 0.6, + "2016": 0.602, + "2017": 0.609, + "2018": 0.615, + "2019": 0.622, + "2020": 0.618, + "2021": 0.611 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "National", + "GDLCODE": "HRVt", + "Region": "Total", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr101", + "Region": "City of Zagreb", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr107", + "Region": "County of Bjelovar-Bilogora", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr110", + "Region": "County of Brod-Posavina", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr121", + "Region": "County of Dubrovnik-Neretva", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr120", + "Region": "County of Istria", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr113", + "Region": "County of Karlovac", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr105", + "Region": "County of Koprivnica-Krizevc", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr103", + "Region": "County of Krapina-Zagorje", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr116", + "Region": "County of Lika-Senj", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr106", + "Region": "County of Medimurje", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr111", + "Region": "County of Osijek-Baranja", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr109", + "Region": "County of Pozega-Slavonia", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr115", + "Region": "County of Primorje-Gorski Kotar", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr118", + "Region": "County of Sibenik-Knin", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr114", + "Region": "County of Sisak-Moslavina", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr119", + "Region": "County of Split-Dalmatia", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr104", + "Region": "County of Varazdin", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr108", + "Region": "County of Virovitica-Podravina", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr112", + "Region": "County of Vukovar-Srijem", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr117", + "Region": "County of Zadar", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr102", + "Region": "County of Zagreb", + "1990": 0.804, + "1991": 0.777, + "1992": 0.811, + "1993": 0.819, + "1994": 0.827, + "1995": 0.818, + "1996": 0.829, + "1997": 0.828, + "1998": 0.829, + "1999": 0.833, + "2000": 0.84, + "2001": 0.841, + "2002": 0.842, + "2003": 0.84, + "2004": 0.854, + "2005": 0.852, + "2006": 0.861, + "2007": 0.859, + "2008": 0.865, + "2009": 0.868, + "2010": 0.874, + "2011": 0.88, + "2012": 0.882, + "2013": 0.89, + "2014": 0.892, + "2015": 0.886, + "2016": 0.896, + "2017": 0.894, + "2018": 0.897, + "2019": 0.904, + "2020": 0.892, + "2021": 0.886 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "National", + "GDLCODE": "CUBt", + "Region": "Total", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr103", + "Region": "C. Habana", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr109", + "Region": "Camaguey", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr108", + "Region": "Ciego de Avila", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr106", + "Region": "Cienfuegos", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr112", + "Region": "Granma", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr114", + "Region": "Guantanamo", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr111", + "Region": "Holguin", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr115", + "Region": "Isla", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr110", + "Region": "Las Tunas", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr104", + "Region": "Matanzas", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr101", + "Region": "Pinar del Rio", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr102", + "Region": "Prov. Habana", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr107", + "Region": "S.Spiritus", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr113", + "Region": "Santiago de Cuba", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr105", + "Region": "Villa Clara", + "1990": 0.831, + "1991": 0.832, + "1992": 0.833, + "1993": 0.835, + "1994": 0.837, + "1995": 0.84, + "1996": 0.845, + "1997": 0.85, + "1998": 0.855, + "1999": 0.86, + "2000": 0.864, + "2001": 0.868, + "2002": 0.871, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.88, + "2007": 0.882, + "2008": 0.884, + "2009": 0.885, + "2010": 0.887, + "2011": 0.889, + "2012": 0.89, + "2013": 0.89, + "2014": 0.89, + "2015": 0.889, + "2016": 0.887, + "2017": 0.885, + "2018": 0.885, + "2019": 0.886, + "2020": 0.886, + "2021": 0.826 + }, + { + "Country": "Cyprus", + "Continent": "Europe", + "ISO_Code": "CYP", + "Level": "National", + "GDLCODE": "CYPt", + "Region": "Total", + "1990": 0.824, + "1991": 0.826, + "1992": 0.833, + "1993": 0.841, + "1994": 0.842, + "1995": 0.848, + "1996": 0.854, + "1997": 0.859, + "1998": 0.864, + "1999": 0.866, + "2000": 0.87, + "2001": 0.877, + "2002": 0.884, + "2003": 0.889, + "2004": 0.891, + "2005": 0.894, + "2006": 0.898, + "2007": 0.905, + "2008": 0.907, + "2009": 0.914, + "2010": 0.918, + "2011": 0.923, + "2012": 0.925, + "2013": 0.929, + "2014": 0.935, + "2015": 0.938, + "2016": 0.939, + "2017": 0.944, + "2018": 0.944, + "2019": 0.945, + "2020": 0.944, + "2021": 0.942 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "National", + "GDLCODE": "CZEt", + "Region": "Total", + "1990": 0.791, + "1991": 0.8, + "1992": 0.805, + "1993": 0.813, + "1994": 0.817, + "1995": 0.818, + "1996": 0.828, + "1997": 0.83, + "1998": 0.839, + "1999": 0.842, + "2000": 0.846, + "2001": 0.851, + "2002": 0.853, + "2003": 0.852, + "2004": 0.861, + "2005": 0.864, + "2006": 0.872, + "2007": 0.876, + "2008": 0.88, + "2009": 0.881, + "2010": 0.886, + "2011": 0.89, + "2012": 0.892, + "2013": 0.895, + "2014": 0.904, + "2015": 0.901, + "2016": 0.908, + "2017": 0.907, + "2018": 0.908, + "2019": 0.911, + "2020": 0.901, + "2021": 0.888 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr106", + "Region": "Jihovychod", + "1990": 0.803, + "1991": 0.811, + "1992": 0.817, + "1993": 0.822, + "1994": 0.826, + "1995": 0.832, + "1996": 0.838, + "1997": 0.841, + "1998": 0.851, + "1999": 0.851, + "2000": 0.854, + "2001": 0.863, + "2002": 0.862, + "2003": 0.864, + "2004": 0.873, + "2005": 0.87, + "2006": 0.881, + "2007": 0.883, + "2008": 0.893, + "2009": 0.891, + "2010": 0.898, + "2011": 0.902, + "2012": 0.902, + "2013": 0.907, + "2014": 0.916, + "2015": 0.913, + "2016": 0.919, + "2017": 0.916, + "2018": 0.917, + "2019": 0.92, + "2020": 0.909, + "2021": 0.896 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr103", + "Region": "Jihozapad", + "1990": 0.79, + "1991": 0.799, + "1992": 0.805, + "1993": 0.817, + "1994": 0.819, + "1995": 0.817, + "1996": 0.83, + "1997": 0.829, + "1998": 0.842, + "1999": 0.842, + "2000": 0.849, + "2001": 0.852, + "2002": 0.859, + "2003": 0.855, + "2004": 0.862, + "2005": 0.868, + "2006": 0.875, + "2007": 0.882, + "2008": 0.879, + "2009": 0.884, + "2010": 0.888, + "2011": 0.891, + "2012": 0.895, + "2013": 0.896, + "2014": 0.906, + "2015": 0.898, + "2016": 0.91, + "2017": 0.909, + "2018": 0.909, + "2019": 0.913, + "2020": 0.903, + "2021": 0.89 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr108", + "Region": "Moravskoslezsko", + "1990": 0.777, + "1991": 0.785, + "1992": 0.791, + "1993": 0.8, + "1994": 0.805, + "1995": 0.802, + "1996": 0.813, + "1997": 0.815, + "1998": 0.824, + "1999": 0.83, + "2000": 0.829, + "2001": 0.834, + "2002": 0.837, + "2003": 0.836, + "2004": 0.844, + "2005": 0.85, + "2006": 0.856, + "2007": 0.86, + "2008": 0.859, + "2009": 0.862, + "2010": 0.865, + "2011": 0.867, + "2012": 0.875, + "2013": 0.876, + "2014": 0.883, + "2015": 0.882, + "2016": 0.89, + "2017": 0.887, + "2018": 0.891, + "2019": 0.889, + "2020": 0.879, + "2021": 0.866 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr101", + "Region": "Praha", + "1990": 0.81, + "1991": 0.819, + "1992": 0.825, + "1993": 0.831, + "1994": 0.836, + "1995": 0.832, + "1996": 0.847, + "1997": 0.85, + "1998": 0.859, + "1999": 0.865, + "2000": 0.868, + "2001": 0.872, + "2002": 0.87, + "2003": 0.873, + "2004": 0.882, + "2005": 0.888, + "2006": 0.896, + "2007": 0.9, + "2008": 0.902, + "2009": 0.907, + "2010": 0.91, + "2011": 0.916, + "2012": 0.916, + "2013": 0.922, + "2014": 0.925, + "2015": 0.925, + "2016": 0.93, + "2017": 0.933, + "2018": 0.934, + "2019": 0.936, + "2020": 0.926, + "2021": 0.913 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr105", + "Region": "Severovychod", + "1990": 0.793, + "1991": 0.802, + "1992": 0.808, + "1993": 0.819, + "1994": 0.822, + "1995": 0.826, + "1996": 0.838, + "1997": 0.838, + "1998": 0.845, + "1999": 0.845, + "2000": 0.852, + "2001": 0.858, + "2002": 0.856, + "2003": 0.858, + "2004": 0.864, + "2005": 0.873, + "2006": 0.876, + "2007": 0.879, + "2008": 0.886, + "2009": 0.888, + "2010": 0.891, + "2011": 0.893, + "2012": 0.895, + "2013": 0.899, + "2014": 0.91, + "2015": 0.907, + "2016": 0.914, + "2017": 0.913, + "2018": 0.912, + "2019": 0.916, + "2020": 0.906, + "2021": 0.893 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr104", + "Region": "Severozapad", + "1990": 0.765, + "1991": 0.773, + "1992": 0.779, + "1993": 0.787, + "1994": 0.788, + "1995": 0.792, + "1996": 0.801, + "1997": 0.807, + "1998": 0.81, + "1999": 0.819, + "2000": 0.823, + "2001": 0.823, + "2002": 0.825, + "2003": 0.824, + "2004": 0.835, + "2005": 0.839, + "2006": 0.846, + "2007": 0.849, + "2008": 0.853, + "2009": 0.853, + "2010": 0.856, + "2011": 0.864, + "2012": 0.867, + "2013": 0.866, + "2014": 0.874, + "2015": 0.873, + "2016": 0.877, + "2017": 0.876, + "2018": 0.878, + "2019": 0.886, + "2020": 0.876, + "2021": 0.863 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr102", + "Region": "Stredni Cechy", + "1990": 0.786, + "1991": 0.795, + "1992": 0.8, + "1993": 0.803, + "1994": 0.807, + "1995": 0.812, + "1996": 0.821, + "1997": 0.824, + "1998": 0.836, + "1999": 0.832, + "2000": 0.839, + "2001": 0.847, + "2002": 0.853, + "2003": 0.846, + "2004": 0.855, + "2005": 0.857, + "2006": 0.87, + "2007": 0.872, + "2008": 0.876, + "2009": 0.878, + "2010": 0.885, + "2011": 0.888, + "2012": 0.89, + "2013": 0.893, + "2014": 0.905, + "2015": 0.902, + "2016": 0.908, + "2017": 0.907, + "2018": 0.906, + "2019": 0.912, + "2020": 0.902, + "2021": 0.889 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr107", + "Region": "Stredni Morava", + "1990": 0.797, + "1991": 0.805, + "1992": 0.811, + "1993": 0.819, + "1994": 0.823, + "1995": 0.822, + "1996": 0.83, + "1997": 0.829, + "1998": 0.839, + "1999": 0.847, + "2000": 0.846, + "2001": 0.852, + "2002": 0.857, + "2003": 0.856, + "2004": 0.865, + "2005": 0.863, + "2006": 0.875, + "2007": 0.876, + "2008": 0.879, + "2009": 0.878, + "2010": 0.884, + "2011": 0.888, + "2012": 0.893, + "2013": 0.892, + "2014": 0.903, + "2015": 0.899, + "2016": 0.904, + "2017": 0.904, + "2018": 0.907, + "2019": 0.91, + "2020": 0.9, + "2021": 0.887 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "National", + "GDLCODE": "DNKt", + "Region": "Total", + "1990": 0.844, + "1991": 0.85, + "1992": 0.85, + "1993": 0.849, + "1994": 0.853, + "1995": 0.851, + "1996": 0.856, + "1997": 0.862, + "1998": 0.868, + "1999": 0.87, + "2000": 0.874, + "2001": 0.876, + "2002": 0.878, + "2003": 0.883, + "2004": 0.889, + "2005": 0.896, + "2006": 0.896, + "2007": 0.898, + "2008": 0.903, + "2009": 0.907, + "2010": 0.911, + "2011": 0.92, + "2012": 0.924, + "2013": 0.928, + "2014": 0.933, + "2015": 0.934, + "2016": 0.937, + "2017": 0.94, + "2018": 0.938, + "2019": 0.945, + "2020": 0.947, + "2021": 0.944 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr101", + "Region": "Hovedstaden", + "1990": 0.841, + "1991": 0.847, + "1992": 0.847, + "1993": 0.846, + "1994": 0.85, + "1995": 0.847, + "1996": 0.853, + "1997": 0.859, + "1998": 0.865, + "1999": 0.867, + "2000": 0.871, + "2001": 0.873, + "2002": 0.875, + "2003": 0.88, + "2004": 0.886, + "2005": 0.893, + "2006": 0.893, + "2007": 0.894, + "2008": 0.899, + "2009": 0.905, + "2010": 0.906, + "2011": 0.916, + "2012": 0.922, + "2013": 0.925, + "2014": 0.932, + "2015": 0.931, + "2016": 0.935, + "2017": 0.938, + "2018": 0.94, + "2019": 0.945, + "2020": 0.947, + "2021": 0.944 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr104", + "Region": "Midtjylland", + "1990": 0.851, + "1991": 0.857, + "1992": 0.858, + "1993": 0.856, + "1994": 0.86, + "1995": 0.858, + "1996": 0.864, + "1997": 0.869, + "1998": 0.876, + "1999": 0.878, + "2000": 0.881, + "2001": 0.884, + "2002": 0.886, + "2003": 0.891, + "2004": 0.896, + "2005": 0.903, + "2006": 0.903, + "2007": 0.905, + "2008": 0.913, + "2009": 0.918, + "2010": 0.924, + "2011": 0.933, + "2012": 0.932, + "2013": 0.936, + "2014": 0.94, + "2015": 0.942, + "2016": 0.945, + "2017": 0.948, + "2018": 0.943, + "2019": 0.953, + "2020": 0.955, + "2021": 0.952 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr105", + "Region": "Nordjylland", + "1990": 0.845, + "1991": 0.851, + "1992": 0.852, + "1993": 0.85, + "1994": 0.854, + "1995": 0.852, + "1996": 0.858, + "1997": 0.864, + "1998": 0.87, + "1999": 0.872, + "2000": 0.875, + "2001": 0.878, + "2002": 0.88, + "2003": 0.884, + "2004": 0.89, + "2005": 0.897, + "2006": 0.897, + "2007": 0.899, + "2008": 0.901, + "2009": 0.905, + "2010": 0.915, + "2011": 0.922, + "2012": 0.925, + "2013": 0.924, + "2014": 0.935, + "2015": 0.931, + "2016": 0.93, + "2017": 0.943, + "2018": 0.935, + "2019": 0.942, + "2020": 0.944, + "2021": 0.941 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr102", + "Region": "Sjaelland", + "1990": 0.832, + "1991": 0.838, + "1992": 0.838, + "1993": 0.837, + "1994": 0.841, + "1995": 0.839, + "1996": 0.844, + "1997": 0.85, + "1998": 0.856, + "1999": 0.858, + "2000": 0.862, + "2001": 0.864, + "2002": 0.866, + "2003": 0.871, + "2004": 0.877, + "2005": 0.883, + "2006": 0.883, + "2007": 0.885, + "2008": 0.891, + "2009": 0.896, + "2010": 0.899, + "2011": 0.905, + "2012": 0.914, + "2013": 0.918, + "2014": 0.921, + "2015": 0.925, + "2016": 0.925, + "2017": 0.926, + "2018": 0.929, + "2019": 0.934, + "2020": 0.936, + "2021": 0.934 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr103", + "Region": "Syddanmark", + "1990": 0.848, + "1991": 0.854, + "1992": 0.855, + "1993": 0.853, + "1994": 0.857, + "1995": 0.855, + "1996": 0.861, + "1997": 0.866, + "1998": 0.873, + "1999": 0.875, + "2000": 0.878, + "2001": 0.881, + "2002": 0.883, + "2003": 0.887, + "2004": 0.893, + "2005": 0.9, + "2006": 0.9, + "2007": 0.902, + "2008": 0.908, + "2009": 0.907, + "2010": 0.913, + "2011": 0.92, + "2012": 0.926, + "2013": 0.931, + "2014": 0.933, + "2015": 0.939, + "2016": 0.941, + "2017": 0.943, + "2018": 0.94, + "2019": 0.945, + "2020": 0.947, + "2021": 0.944 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "National", + "GDLCODE": "DJIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.558, + "1996": 0.557, + "1997": 0.553, + "1998": 0.557, + "1999": 0.56, + "2000": 0.563, + "2001": 0.568, + "2002": 0.573, + "2003": 0.578, + "2004": 0.581, + "2005": 0.589, + "2006": 0.596, + "2007": 0.6, + "2008": 0.606, + "2009": 0.61, + "2010": 0.619, + "2011": 0.622, + "2012": 0.628, + "2013": 0.634, + "2014": 0.641, + "2015": 0.645, + "2016": 0.649, + "2017": 0.658, + "2018": 0.662, + "2019": 0.663, + "2020": 0.657, + "2021": 0.651 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr101", + "Region": "Djibouti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.544, + "1996": 0.542, + "1997": 0.539, + "1998": 0.542, + "1999": 0.546, + "2000": 0.548, + "2001": 0.553, + "2002": 0.557, + "2003": 0.563, + "2004": 0.566, + "2005": 0.574, + "2006": 0.58, + "2007": 0.585, + "2008": 0.59, + "2009": 0.595, + "2010": 0.604, + "2011": 0.606, + "2012": 0.612, + "2013": 0.618, + "2014": 0.624, + "2015": 0.629, + "2016": 0.633, + "2017": 0.642, + "2018": 0.646, + "2019": 0.646, + "2020": 0.64, + "2021": 0.634 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr102", + "Region": "Other Districts", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.645, + "1996": 0.643, + "1997": 0.639, + "1998": 0.643, + "1999": 0.647, + "2000": 0.65, + "2001": 0.655, + "2002": 0.661, + "2003": 0.667, + "2004": 0.67, + "2005": 0.679, + "2006": 0.686, + "2007": 0.691, + "2008": 0.697, + "2009": 0.702, + "2010": 0.712, + "2011": 0.715, + "2012": 0.722, + "2013": 0.728, + "2014": 0.736, + "2015": 0.741, + "2016": 0.745, + "2017": 0.755, + "2018": 0.759, + "2019": 0.76, + "2020": 0.753, + "2021": 0.747 + }, + { + "Country": "Dominica", + "Continent": "America", + "ISO_Code": "DMA", + "Level": "National", + "GDLCODE": "DMAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.811, + "2001": 0.796, + "2002": 0.805, + "2003": 0.791, + "2004": 0.806, + "2005": 0.804, + "2006": 0.813, + "2007": 0.799, + "2008": 0.82, + "2009": 0.803, + "2010": 0.793, + "2011": 0.765, + "2012": 0.778, + "2013": 0.752, + "2014": 0.761, + "2015": 0.75, + "2016": 0.771, + "2017": 0.731, + "2018": 0.824, + "2019": 0.824, + "2020": 0.825, + "2021": 0.813 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "National", + "GDLCODE": "DOMt", + "Region": "Total", + "1990": 0.725, + "1991": 0.733, + "1992": 0.74, + "1993": 0.746, + "1994": 0.751, + "1995": 0.754, + "1996": 0.755, + "1997": 0.756, + "1998": 0.755, + "1999": 0.758, + "2000": 0.76, + "2001": 0.764, + "2002": 0.768, + "2003": 0.773, + "2004": 0.774, + "2005": 0.783, + "2006": 0.787, + "2007": 0.79, + "2008": 0.795, + "2009": 0.798, + "2010": 0.801, + "2011": 0.803, + "2012": 0.808, + "2013": 0.811, + "2014": 0.813, + "2015": 0.815, + "2016": 0.815, + "2017": 0.816, + "2018": 0.819, + "2019": 0.824, + "2020": 0.814, + "2021": 0.809 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr101", + "Region": "Region 0 (Distrito Nacional, Santo Domingo, Monte Plata)", + "1990": 0.743, + "1991": 0.751, + "1992": 0.758, + "1993": 0.764, + "1994": 0.769, + "1995": 0.772, + "1996": 0.774, + "1997": 0.773, + "1998": 0.771, + "1999": 0.772, + "2000": 0.772, + "2001": 0.774, + "2002": 0.776, + "2003": 0.778, + "2004": 0.775, + "2005": 0.78, + "2006": 0.78, + "2007": 0.78, + "2008": 0.785, + "2009": 0.789, + "2010": 0.793, + "2011": 0.796, + "2012": 0.801, + "2013": 0.805, + "2014": 0.804, + "2015": 0.802, + "2016": 0.799, + "2017": 0.797, + "2018": 0.796, + "2019": 0.798, + "2020": 0.788, + "2021": 0.784 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr102", + "Region": "Region I (Peravia, San Cristobal, San Jose de Ocoa, Azua)", + "1990": 0.736, + "1991": 0.744, + "1992": 0.751, + "1993": 0.757, + "1994": 0.762, + "1995": 0.765, + "1996": 0.767, + "1997": 0.765, + "1998": 0.761, + "1999": 0.762, + "2000": 0.762, + "2001": 0.763, + "2002": 0.765, + "2003": 0.769, + "2004": 0.769, + "2005": 0.777, + "2006": 0.78, + "2007": 0.783, + "2008": 0.796, + "2009": 0.809, + "2010": 0.821, + "2011": 0.832, + "2012": 0.846, + "2013": 0.858, + "2014": 0.86, + "2015": 0.859, + "2016": 0.859, + "2017": 0.858, + "2018": 0.86, + "2019": 0.864, + "2020": 0.853, + "2021": 0.848 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr103", + "Region": "Region II (Espaillat, Puerto Plata, Santiago)", + "1990": 0.751, + "1991": 0.759, + "1992": 0.766, + "1993": 0.772, + "1994": 0.777, + "1995": 0.781, + "1996": 0.782, + "1997": 0.779, + "1998": 0.773, + "1999": 0.771, + "2000": 0.769, + "2001": 0.767, + "2002": 0.767, + "2003": 0.778, + "2004": 0.785, + "2005": 0.8, + "2006": 0.81, + "2007": 0.819, + "2008": 0.821, + "2009": 0.821, + "2010": 0.822, + "2011": 0.821, + "2012": 0.822, + "2013": 0.822, + "2014": 0.823, + "2015": 0.822, + "2016": 0.821, + "2017": 0.82, + "2018": 0.82, + "2019": 0.824, + "2020": 0.813, + "2021": 0.809 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr104", + "Region": "Region III (Duarte, Maria Trinidad Sanchez, Salcedo, Samana)", + "1990": 0.739, + "1991": 0.747, + "1992": 0.754, + "1993": 0.76, + "1994": 0.765, + "1995": 0.768, + "1996": 0.77, + "1997": 0.774, + "1998": 0.775, + "1999": 0.781, + "2000": 0.786, + "2001": 0.792, + "2002": 0.799, + "2003": 0.802, + "2004": 0.802, + "2005": 0.808, + "2006": 0.811, + "2007": 0.812, + "2008": 0.82, + "2009": 0.826, + "2010": 0.833, + "2011": 0.838, + "2012": 0.845, + "2013": 0.851, + "2014": 0.849, + "2015": 0.846, + "2016": 0.841, + "2017": 0.838, + "2018": 0.836, + "2019": 0.836, + "2020": 0.826, + "2021": 0.822 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr105", + "Region": "Region IV (Independencia, Bahoruco, Barahona, Pedernales)", + "1990": 0.693, + "1991": 0.7, + "1992": 0.707, + "1993": 0.713, + "1994": 0.718, + "1995": 0.721, + "1996": 0.722, + "1997": 0.72, + "1998": 0.716, + "1999": 0.716, + "2000": 0.715, + "2001": 0.715, + "2002": 0.717, + "2003": 0.726, + "2004": 0.732, + "2005": 0.745, + "2006": 0.754, + "2007": 0.762, + "2008": 0.77, + "2009": 0.777, + "2010": 0.784, + "2011": 0.79, + "2012": 0.798, + "2013": 0.805, + "2014": 0.814, + "2015": 0.822, + "2016": 0.83, + "2017": 0.838, + "2018": 0.847, + "2019": 0.859, + "2020": 0.848, + "2021": 0.844 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr106", + "Region": "Region V (El Seibo, La Altagracia, La Romana, San Pedro de Macoris, Hato Mayor)", + "1990": 0.678, + "1991": 0.686, + "1992": 0.692, + "1993": 0.698, + "1994": 0.703, + "1995": 0.706, + "1996": 0.707, + "1997": 0.715, + "1998": 0.72, + "1999": 0.73, + "2000": 0.738, + "2001": 0.748, + "2002": 0.758, + "2003": 0.763, + "2004": 0.764, + "2005": 0.772, + "2006": 0.776, + "2007": 0.779, + "2008": 0.784, + "2009": 0.787, + "2010": 0.791, + "2011": 0.794, + "2012": 0.798, + "2013": 0.802, + "2014": 0.807, + "2015": 0.811, + "2016": 0.814, + "2017": 0.818, + "2018": 0.823, + "2019": 0.831, + "2020": 0.82, + "2021": 0.816 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr107", + "Region": "Region VI (San Juan, Elias Pina)", + "1990": 0.648, + "1991": 0.656, + "1992": 0.662, + "1993": 0.668, + "1994": 0.672, + "1995": 0.675, + "1996": 0.677, + "1997": 0.682, + "1998": 0.684, + "1999": 0.691, + "2000": 0.696, + "2001": 0.703, + "2002": 0.711, + "2003": 0.724, + "2004": 0.734, + "2005": 0.751, + "2006": 0.764, + "2007": 0.775, + "2008": 0.777, + "2009": 0.778, + "2010": 0.779, + "2011": 0.779, + "2012": 0.781, + "2013": 0.781, + "2014": 0.79, + "2015": 0.797, + "2016": 0.804, + "2017": 0.811, + "2018": 0.82, + "2019": 0.831, + "2020": 0.821, + "2021": 0.816 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr108", + "Region": "Region VII (Dajabon, Monte Cristi, Santiago Rodriguez, Valverde)", + "1990": 0.725, + "1991": 0.733, + "1992": 0.74, + "1993": 0.746, + "1994": 0.751, + "1995": 0.754, + "1996": 0.756, + "1997": 0.763, + "1998": 0.768, + "1999": 0.776, + "2000": 0.784, + "2001": 0.794, + "2002": 0.804, + "2003": 0.803, + "2004": 0.799, + "2005": 0.802, + "2006": 0.801, + "2007": 0.799, + "2008": 0.793, + "2009": 0.786, + "2010": 0.78, + "2011": 0.772, + "2012": 0.766, + "2013": 0.759, + "2014": 0.773, + "2015": 0.786, + "2016": 0.798, + "2017": 0.811, + "2018": 0.825, + "2019": 0.842, + "2020": 0.831, + "2021": 0.827 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr109", + "Region": "Region VIII (La Vega, Monsenor Nouel, Sanchez Ramirez)", + "1990": 0.722, + "1991": 0.73, + "1992": 0.737, + "1993": 0.743, + "1994": 0.748, + "1995": 0.751, + "1996": 0.752, + "1997": 0.754, + "1998": 0.753, + "1999": 0.757, + "2000": 0.76, + "2001": 0.764, + "2002": 0.768, + "2003": 0.778, + "2004": 0.783, + "2005": 0.795, + "2006": 0.804, + "2007": 0.811, + "2008": 0.814, + "2009": 0.815, + "2010": 0.817, + "2011": 0.817, + "2012": 0.82, + "2013": 0.821, + "2014": 0.824, + "2015": 0.827, + "2016": 0.828, + "2017": 0.831, + "2018": 0.834, + "2019": 0.841, + "2020": 0.83, + "2021": 0.826 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "National", + "GDLCODE": "ECUt", + "Region": "Total", + "1990": 0.759, + "1991": 0.763, + "1992": 0.771, + "1993": 0.775, + "1994": 0.781, + "1995": 0.785, + "1996": 0.79, + "1997": 0.795, + "1998": 0.801, + "1999": 0.807, + "2000": 0.813, + "2001": 0.819, + "2002": 0.825, + "2003": 0.83, + "2004": 0.835, + "2005": 0.839, + "2006": 0.841, + "2007": 0.844, + "2008": 0.846, + "2009": 0.849, + "2010": 0.853, + "2011": 0.858, + "2012": 0.862, + "2013": 0.867, + "2014": 0.871, + "2015": 0.874, + "2016": 0.873, + "2017": 0.877, + "2018": 0.878, + "2019": 0.881, + "2020": 0.802, + "2021": 0.826 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr101", + "Region": "Coste", + "1990": 0.759, + "1991": 0.763, + "1992": 0.771, + "1993": 0.775, + "1994": 0.781, + "1995": 0.785, + "1996": 0.79, + "1997": 0.795, + "1998": 0.801, + "1999": 0.807, + "2000": 0.813, + "2001": 0.819, + "2002": 0.825, + "2003": 0.83, + "2004": 0.835, + "2005": 0.839, + "2006": 0.841, + "2007": 0.844, + "2008": 0.846, + "2009": 0.849, + "2010": 0.853, + "2011": 0.858, + "2012": 0.862, + "2013": 0.867, + "2014": 0.871, + "2015": 0.874, + "2016": 0.873, + "2017": 0.877, + "2018": 0.878, + "2019": 0.881, + "2020": 0.802, + "2021": 0.826 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr103", + "Region": "Oriente", + "1990": 0.759, + "1991": 0.763, + "1992": 0.771, + "1993": 0.775, + "1994": 0.781, + "1995": 0.785, + "1996": 0.79, + "1997": 0.795, + "1998": 0.801, + "1999": 0.807, + "2000": 0.813, + "2001": 0.819, + "2002": 0.825, + "2003": 0.83, + "2004": 0.835, + "2005": 0.839, + "2006": 0.841, + "2007": 0.844, + "2008": 0.846, + "2009": 0.849, + "2010": 0.853, + "2011": 0.858, + "2012": 0.862, + "2013": 0.867, + "2014": 0.871, + "2015": 0.874, + "2016": 0.873, + "2017": 0.877, + "2018": 0.878, + "2019": 0.881, + "2020": 0.802, + "2021": 0.826 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr102", + "Region": "Sierra", + "1990": 0.759, + "1991": 0.763, + "1992": 0.771, + "1993": 0.775, + "1994": 0.781, + "1995": 0.785, + "1996": 0.79, + "1997": 0.795, + "1998": 0.801, + "1999": 0.807, + "2000": 0.813, + "2001": 0.819, + "2002": 0.825, + "2003": 0.83, + "2004": 0.835, + "2005": 0.839, + "2006": 0.841, + "2007": 0.844, + "2008": 0.846, + "2009": 0.849, + "2010": 0.853, + "2011": 0.858, + "2012": 0.862, + "2013": 0.867, + "2014": 0.871, + "2015": 0.874, + "2016": 0.873, + "2017": 0.877, + "2018": 0.878, + "2019": 0.881, + "2020": 0.802, + "2021": 0.826 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "National", + "GDLCODE": "EGYt", + "Region": "Total", + "1990": 0.679, + "1991": 0.689, + "1992": 0.693, + "1993": 0.7, + "1994": 0.705, + "1995": 0.712, + "1996": 0.719, + "1997": 0.726, + "1998": 0.73, + "1999": 0.734, + "2000": 0.739, + "2001": 0.743, + "2002": 0.747, + "2003": 0.745, + "2004": 0.748, + "2005": 0.75, + "2006": 0.753, + "2007": 0.756, + "2008": 0.759, + "2009": 0.761, + "2010": 0.764, + "2011": 0.767, + "2012": 0.771, + "2013": 0.77, + "2014": 0.776, + "2015": 0.777, + "2016": 0.782, + "2017": 0.789, + "2018": 0.79, + "2019": 0.79, + "2020": 0.784, + "2021": 0.773 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr102", + "Region": "Alexandria", + "1990": 0.75, + "1991": 0.76, + "1992": 0.764, + "1993": 0.772, + "1994": 0.777, + "1995": 0.785, + "1996": 0.783, + "1997": 0.781, + "1998": 0.775, + "1999": 0.77, + "2000": 0.766, + "2001": 0.772, + "2002": 0.778, + "2003": 0.777, + "2004": 0.783, + "2005": 0.787, + "2006": 0.786, + "2007": 0.784, + "2008": 0.783, + "2009": 0.783, + "2010": 0.783, + "2011": 0.784, + "2012": 0.785, + "2013": 0.781, + "2014": 0.784, + "2015": 0.786, + "2016": 0.791, + "2017": 0.798, + "2018": 0.799, + "2019": 0.799, + "2020": 0.793, + "2021": 0.781 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr118", + "Region": "Assuit", + "1990": 0.609, + "1991": 0.617, + "1992": 0.621, + "1993": 0.627, + "1994": 0.632, + "1995": 0.64, + "1996": 0.647, + "1997": 0.654, + "1998": 0.659, + "1999": 0.663, + "2000": 0.668, + "2001": 0.683, + "2002": 0.697, + "2003": 0.705, + "2004": 0.718, + "2005": 0.73, + "2006": 0.73, + "2007": 0.729, + "2008": 0.729, + "2009": 0.728, + "2010": 0.728, + "2011": 0.729, + "2012": 0.729, + "2013": 0.726, + "2014": 0.729, + "2015": 0.73, + "2016": 0.735, + "2017": 0.742, + "2018": 0.743, + "2019": 0.742, + "2020": 0.737, + "2021": 0.726 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr121", + "Region": "Aswan", + "1990": 0.641, + "1991": 0.65, + "1992": 0.654, + "1993": 0.661, + "1994": 0.666, + "1995": 0.673, + "1996": 0.679, + "1997": 0.684, + "1998": 0.687, + "1999": 0.69, + "2000": 0.693, + "2001": 0.701, + "2002": 0.708, + "2003": 0.709, + "2004": 0.716, + "2005": 0.721, + "2006": 0.723, + "2007": 0.724, + "2008": 0.725, + "2009": 0.732, + "2010": 0.738, + "2011": 0.745, + "2012": 0.752, + "2013": 0.755, + "2014": 0.765, + "2015": 0.766, + "2016": 0.771, + "2017": 0.778, + "2018": 0.779, + "2019": 0.779, + "2020": 0.774, + "2021": 0.762 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr112", + "Region": "Behera", + "1990": 0.699, + "1991": 0.709, + "1992": 0.713, + "1993": 0.72, + "1994": 0.725, + "1995": 0.733, + "1996": 0.741, + "1997": 0.749, + "1998": 0.754, + "1999": 0.759, + "2000": 0.764, + "2001": 0.775, + "2002": 0.785, + "2003": 0.788, + "2004": 0.797, + "2005": 0.806, + "2006": 0.787, + "2007": 0.767, + "2008": 0.749, + "2009": 0.757, + "2010": 0.766, + "2011": 0.776, + "2012": 0.786, + "2013": 0.791, + "2014": 0.803, + "2015": 0.804, + "2016": 0.81, + "2017": 0.817, + "2018": 0.818, + "2019": 0.818, + "2020": 0.812, + "2021": 0.8 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr115", + "Region": "Beni Suef", + "1990": 0.625, + "1991": 0.633, + "1992": 0.637, + "1993": 0.644, + "1994": 0.649, + "1995": 0.656, + "1996": 0.667, + "1997": 0.679, + "1998": 0.688, + "1999": 0.696, + "2000": 0.705, + "2001": 0.712, + "2002": 0.718, + "2003": 0.717, + "2004": 0.723, + "2005": 0.727, + "2006": 0.722, + "2007": 0.716, + "2008": 0.71, + "2009": 0.716, + "2010": 0.721, + "2011": 0.728, + "2012": 0.734, + "2013": 0.737, + "2014": 0.745, + "2015": 0.746, + "2016": 0.752, + "2017": 0.759, + "2018": 0.76, + "2019": 0.759, + "2020": 0.754, + "2021": 0.742 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr101", + "Region": "Cairo", + "1990": 0.766, + "1991": 0.776, + "1992": 0.781, + "1993": 0.788, + "1994": 0.794, + "1995": 0.802, + "1996": 0.806, + "1997": 0.809, + "1998": 0.81, + "1999": 0.811, + "2000": 0.812, + "2001": 0.808, + "2002": 0.804, + "2003": 0.794, + "2004": 0.789, + "2005": 0.784, + "2006": 0.771, + "2007": 0.757, + "2008": 0.744, + "2009": 0.755, + "2010": 0.766, + "2011": 0.777, + "2012": 0.788, + "2013": 0.796, + "2014": 0.81, + "2015": 0.811, + "2016": 0.817, + "2017": 0.824, + "2018": 0.825, + "2019": 0.825, + "2020": 0.819, + "2021": 0.807 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr106", + "Region": "Dakahlia", + "1990": 0.722, + "1991": 0.732, + "1992": 0.737, + "1993": 0.744, + "1994": 0.749, + "1995": 0.757, + "1996": 0.765, + "1997": 0.773, + "1998": 0.779, + "1999": 0.784, + "2000": 0.79, + "2001": 0.787, + "2002": 0.783, + "2003": 0.773, + "2004": 0.77, + "2005": 0.765, + "2006": 0.773, + "2007": 0.779, + "2008": 0.787, + "2009": 0.788, + "2010": 0.789, + "2011": 0.791, + "2012": 0.793, + "2013": 0.791, + "2014": 0.795, + "2015": 0.796, + "2016": 0.802, + "2017": 0.809, + "2018": 0.81, + "2019": 0.81, + "2020": 0.804, + "2021": 0.792 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr105", + "Region": "Damietta", + "1990": 0.76, + "1991": 0.77, + "1992": 0.775, + "1993": 0.782, + "1994": 0.788, + "1995": 0.796, + "1996": 0.79, + "1997": 0.785, + "1998": 0.777, + "1999": 0.769, + "2000": 0.762, + "2001": 0.777, + "2002": 0.79, + "2003": 0.798, + "2004": 0.811, + "2005": 0.823, + "2006": 0.816, + "2007": 0.809, + "2008": 0.803, + "2009": 0.805, + "2010": 0.806, + "2011": 0.808, + "2012": 0.81, + "2013": 0.808, + "2014": 0.813, + "2015": 0.814, + "2016": 0.82, + "2017": 0.827, + "2018": 0.828, + "2019": 0.828, + "2020": 0.822, + "2021": 0.81 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr116", + "Region": "Fayoum", + "1990": 0.662, + "1991": 0.671, + "1992": 0.675, + "1993": 0.682, + "1994": 0.687, + "1995": 0.695, + "1996": 0.707, + "1997": 0.72, + "1998": 0.729, + "1999": 0.739, + "2000": 0.748, + "2001": 0.745, + "2002": 0.741, + "2003": 0.731, + "2004": 0.727, + "2005": 0.722, + "2006": 0.732, + "2007": 0.741, + "2008": 0.75, + "2009": 0.756, + "2010": 0.763, + "2011": 0.77, + "2012": 0.776, + "2013": 0.78, + "2014": 0.789, + "2015": 0.79, + "2016": 0.795, + "2017": 0.802, + "2018": 0.804, + "2019": 0.803, + "2020": 0.798, + "2021": 0.786 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr122", + "Region": "Frontier governorates (Red Sea, New Valley, Matroh, North Sainai, South Sainai)", + "1990": 0.747, + "1991": 0.757, + "1992": 0.762, + "1993": 0.769, + "1994": 0.775, + "1995": 0.783, + "1996": 0.786, + "1997": 0.79, + "1998": 0.79, + "1999": 0.791, + "2000": 0.792, + "2001": 0.789, + "2002": 0.786, + "2003": 0.776, + "2004": 0.773, + "2005": 0.769, + "2006": 0.765, + "2007": 0.762, + "2008": 0.759, + "2009": 0.763, + "2010": 0.768, + "2011": 0.773, + "2012": 0.778, + "2013": 0.78, + "2014": 0.788, + "2015": 0.789, + "2016": 0.794, + "2017": 0.801, + "2018": 0.802, + "2019": 0.802, + "2020": 0.797, + "2021": 0.785 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr110", + "Region": "Gharbia", + "1990": 0.697, + "1991": 0.706, + "1992": 0.711, + "1993": 0.717, + "1994": 0.723, + "1995": 0.731, + "1996": 0.738, + "1997": 0.746, + "1998": 0.751, + "1999": 0.756, + "2000": 0.761, + "2001": 0.772, + "2002": 0.783, + "2003": 0.787, + "2004": 0.796, + "2005": 0.805, + "2006": 0.803, + "2007": 0.8, + "2008": 0.797, + "2009": 0.794, + "2010": 0.791, + "2011": 0.788, + "2012": 0.785, + "2013": 0.779, + "2014": 0.778, + "2015": 0.779, + "2016": 0.785, + "2017": 0.792, + "2018": 0.793, + "2019": 0.793, + "2020": 0.787, + "2021": 0.775 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr114", + "Region": "Giza", + "1990": 0.67, + "1991": 0.679, + "1992": 0.684, + "1993": 0.69, + "1994": 0.696, + "1995": 0.703, + "1996": 0.717, + "1997": 0.73, + "1998": 0.741, + "1999": 0.752, + "2000": 0.762, + "2001": 0.762, + "2002": 0.76, + "2003": 0.752, + "2004": 0.75, + "2005": 0.747, + "2006": 0.758, + "2007": 0.769, + "2008": 0.779, + "2009": 0.781, + "2010": 0.782, + "2011": 0.784, + "2012": 0.786, + "2013": 0.785, + "2014": 0.789, + "2015": 0.79, + "2016": 0.796, + "2017": 0.803, + "2018": 0.804, + "2019": 0.804, + "2020": 0.798, + "2021": 0.786 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr113", + "Region": "Ismailia", + "1990": 0.774, + "1991": 0.784, + "1992": 0.789, + "1993": 0.796, + "1994": 0.802, + "1995": 0.81, + "1996": 0.803, + "1997": 0.797, + "1998": 0.788, + "1999": 0.778, + "2000": 0.769, + "2001": 0.774, + "2002": 0.779, + "2003": 0.776, + "2004": 0.78, + "2005": 0.783, + "2006": 0.77, + "2007": 0.757, + "2008": 0.744, + "2009": 0.746, + "2010": 0.749, + "2011": 0.751, + "2012": 0.754, + "2013": 0.753, + "2014": 0.758, + "2015": 0.759, + "2016": 0.764, + "2017": 0.771, + "2018": 0.772, + "2019": 0.772, + "2020": 0.766, + "2021": 0.755 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr109", + "Region": "Kafr El-Sheikh", + "1990": 0.734, + "1991": 0.744, + "1992": 0.749, + "1993": 0.756, + "1994": 0.761, + "1995": 0.769, + "1996": 0.768, + "1997": 0.766, + "1998": 0.762, + "1999": 0.758, + "2000": 0.754, + "2001": 0.766, + "2002": 0.776, + "2003": 0.78, + "2004": 0.79, + "2005": 0.798, + "2006": 0.787, + "2007": 0.775, + "2008": 0.764, + "2009": 0.768, + "2010": 0.774, + "2011": 0.779, + "2012": 0.785, + "2013": 0.787, + "2014": 0.795, + "2015": 0.796, + "2016": 0.802, + "2017": 0.809, + "2018": 0.81, + "2019": 0.81, + "2020": 0.804, + "2021": 0.792 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr108", + "Region": "Kalyubia", + "1990": 0.722, + "1991": 0.731, + "1992": 0.736, + "1993": 0.743, + "1994": 0.748, + "1995": 0.756, + "1996": 0.757, + "1997": 0.757, + "1998": 0.755, + "1999": 0.753, + "2000": 0.751, + "2001": 0.749, + "2002": 0.747, + "2003": 0.738, + "2004": 0.735, + "2005": 0.731, + "2006": 0.752, + "2007": 0.773, + "2008": 0.793, + "2009": 0.787, + "2010": 0.781, + "2011": 0.775, + "2012": 0.769, + "2013": 0.759, + "2014": 0.756, + "2015": 0.757, + "2016": 0.762, + "2017": 0.769, + "2018": 0.77, + "2019": 0.77, + "2020": 0.764, + "2021": 0.753 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr111", + "Region": "Menoufia", + "1990": 0.719, + "1991": 0.728, + "1992": 0.733, + "1993": 0.74, + "1994": 0.745, + "1995": 0.753, + "1996": 0.76, + "1997": 0.767, + "1998": 0.771, + "1999": 0.774, + "2000": 0.778, + "2001": 0.778, + "2002": 0.776, + "2003": 0.768, + "2004": 0.766, + "2005": 0.763, + "2006": 0.771, + "2007": 0.778, + "2008": 0.785, + "2009": 0.789, + "2010": 0.793, + "2011": 0.798, + "2012": 0.802, + "2013": 0.803, + "2014": 0.81, + "2015": 0.811, + "2016": 0.817, + "2017": 0.824, + "2018": 0.825, + "2019": 0.825, + "2020": 0.819, + "2021": 0.807 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr117", + "Region": "Menya", + "1990": 0.569, + "1991": 0.578, + "1992": 0.581, + "1993": 0.587, + "1994": 0.592, + "1995": 0.599, + "1996": 0.614, + "1997": 0.629, + "1998": 0.641, + "1999": 0.654, + "2000": 0.666, + "2001": 0.676, + "2002": 0.686, + "2003": 0.69, + "2004": 0.699, + "2005": 0.707, + "2006": 0.712, + "2007": 0.716, + "2008": 0.721, + "2009": 0.725, + "2010": 0.73, + "2011": 0.734, + "2012": 0.739, + "2013": 0.74, + "2014": 0.747, + "2015": 0.748, + "2016": 0.754, + "2017": 0.76, + "2018": 0.761, + "2019": 0.761, + "2020": 0.756, + "2021": 0.744 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr103", + "Region": "Port Said", + "1990": 0.781, + "1991": 0.792, + "1992": 0.796, + "1993": 0.804, + "1994": 0.81, + "1995": 0.818, + "1996": 0.819, + "1997": 0.82, + "1998": 0.819, + "1999": 0.817, + "2000": 0.815, + "2001": 0.824, + "2002": 0.832, + "2003": 0.833, + "2004": 0.84, + "2005": 0.846, + "2006": 0.828, + "2007": 0.809, + "2008": 0.792, + "2009": 0.792, + "2010": 0.793, + "2011": 0.795, + "2012": 0.796, + "2013": 0.793, + "2014": 0.797, + "2015": 0.798, + "2016": 0.804, + "2017": 0.811, + "2018": 0.812, + "2019": 0.812, + "2020": 0.806, + "2021": 0.794 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr120", + "Region": "Qena", + "1990": 0.621, + "1991": 0.63, + "1992": 0.634, + "1993": 0.64, + "1994": 0.645, + "1995": 0.652, + "1996": 0.654, + "1997": 0.657, + "1998": 0.657, + "1999": 0.656, + "2000": 0.656, + "2001": 0.666, + "2002": 0.675, + "2003": 0.678, + "2004": 0.686, + "2005": 0.693, + "2006": 0.709, + "2007": 0.724, + "2008": 0.739, + "2009": 0.741, + "2010": 0.743, + "2011": 0.746, + "2012": 0.748, + "2013": 0.747, + "2014": 0.752, + "2015": 0.754, + "2016": 0.759, + "2017": 0.766, + "2018": 0.767, + "2019": 0.767, + "2020": 0.761, + "2021": 0.75 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr107", + "Region": "Sharkia", + "1990": 0.686, + "1991": 0.695, + "1992": 0.699, + "1993": 0.706, + "1994": 0.711, + "1995": 0.719, + "1996": 0.724, + "1997": 0.73, + "1998": 0.733, + "1999": 0.736, + "2000": 0.739, + "2001": 0.75, + "2002": 0.76, + "2003": 0.764, + "2004": 0.774, + "2005": 0.782, + "2006": 0.78, + "2007": 0.778, + "2008": 0.776, + "2009": 0.774, + "2010": 0.772, + "2011": 0.77, + "2012": 0.768, + "2013": 0.763, + "2014": 0.763, + "2015": 0.764, + "2016": 0.77, + "2017": 0.777, + "2018": 0.778, + "2019": 0.778, + "2020": 0.772, + "2021": 0.76 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr119", + "Region": "Souhag", + "1990": 0.617, + "1991": 0.626, + "1992": 0.63, + "1993": 0.636, + "1994": 0.641, + "1995": 0.649, + "1996": 0.656, + "1997": 0.664, + "1998": 0.669, + "1999": 0.674, + "2000": 0.679, + "2001": 0.682, + "2002": 0.685, + "2003": 0.681, + "2004": 0.683, + "2005": 0.685, + "2006": 0.696, + "2007": 0.705, + "2008": 0.716, + "2009": 0.719, + "2010": 0.722, + "2011": 0.726, + "2012": 0.73, + "2013": 0.73, + "2014": 0.736, + "2015": 0.737, + "2016": 0.742, + "2017": 0.749, + "2018": 0.75, + "2019": 0.75, + "2020": 0.745, + "2021": 0.733 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr104", + "Region": "Suez", + "1990": 0.753, + "1991": 0.763, + "1992": 0.768, + "1993": 0.775, + "1994": 0.781, + "1995": 0.789, + "1996": 0.793, + "1997": 0.797, + "1998": 0.799, + "1999": 0.801, + "2000": 0.802, + "2001": 0.803, + "2002": 0.803, + "2003": 0.797, + "2004": 0.796, + "2005": 0.795, + "2006": 0.801, + "2007": 0.806, + "2008": 0.812, + "2009": 0.809, + "2010": 0.807, + "2011": 0.805, + "2012": 0.803, + "2013": 0.797, + "2014": 0.798, + "2015": 0.799, + "2016": 0.805, + "2017": 0.812, + "2018": 0.813, + "2019": 0.813, + "2020": 0.807, + "2021": 0.795 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "National", + "GDLCODE": "SLVt", + "Region": "Total", + "1990": 0.655, + "1991": 0.675, + "1992": 0.687, + "1993": 0.696, + "1994": 0.705, + "1995": 0.713, + "1996": 0.724, + "1997": 0.737, + "1998": 0.746, + "1999": 0.76, + "2000": 0.767, + "2001": 0.763, + "2002": 0.773, + "2003": 0.771, + "2004": 0.774, + "2005": 0.776, + "2006": 0.781, + "2007": 0.786, + "2008": 0.791, + "2009": 0.793, + "2010": 0.798, + "2011": 0.798, + "2012": 0.797, + "2013": 0.796, + "2014": 0.796, + "2015": 0.797, + "2016": 0.8, + "2017": 0.805, + "2018": 0.809, + "2019": 0.809, + "2020": 0.786, + "2021": 0.781 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr102", + "Region": "Central I", + "1990": 0.661, + "1991": 0.681, + "1992": 0.693, + "1993": 0.702, + "1994": 0.712, + "1995": 0.719, + "1996": 0.731, + "1997": 0.743, + "1998": 0.752, + "1999": 0.766, + "2000": 0.774, + "2001": 0.77, + "2002": 0.78, + "2003": 0.778, + "2004": 0.781, + "2005": 0.783, + "2006": 0.788, + "2007": 0.793, + "2008": 0.798, + "2009": 0.8, + "2010": 0.805, + "2011": 0.805, + "2012": 0.804, + "2013": 0.803, + "2014": 0.803, + "2015": 0.804, + "2016": 0.807, + "2017": 0.812, + "2018": 0.816, + "2019": 0.816, + "2020": 0.792, + "2021": 0.788 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr103", + "Region": "Central II", + "1990": 0.661, + "1991": 0.681, + "1992": 0.694, + "1993": 0.702, + "1994": 0.712, + "1995": 0.719, + "1996": 0.731, + "1997": 0.744, + "1998": 0.753, + "1999": 0.767, + "2000": 0.774, + "2001": 0.77, + "2002": 0.78, + "2003": 0.778, + "2004": 0.782, + "2005": 0.783, + "2006": 0.788, + "2007": 0.793, + "2008": 0.798, + "2009": 0.801, + "2010": 0.805, + "2011": 0.805, + "2012": 0.805, + "2013": 0.804, + "2014": 0.803, + "2015": 0.804, + "2016": 0.808, + "2017": 0.812, + "2018": 0.816, + "2019": 0.816, + "2020": 0.793, + "2021": 0.788 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr101", + "Region": "Occidental", + "1990": 0.643, + "1991": 0.663, + "1992": 0.675, + "1993": 0.684, + "1994": 0.693, + "1995": 0.7, + "1996": 0.712, + "1997": 0.724, + "1998": 0.733, + "1999": 0.747, + "2000": 0.754, + "2001": 0.75, + "2002": 0.76, + "2003": 0.758, + "2004": 0.761, + "2005": 0.763, + "2006": 0.768, + "2007": 0.773, + "2008": 0.778, + "2009": 0.78, + "2010": 0.784, + "2011": 0.784, + "2012": 0.784, + "2013": 0.783, + "2014": 0.783, + "2015": 0.784, + "2016": 0.787, + "2017": 0.791, + "2018": 0.795, + "2019": 0.795, + "2020": 0.772, + "2021": 0.767 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr104", + "Region": "Oriental", + "1990": 0.651, + "1991": 0.671, + "1992": 0.683, + "1993": 0.692, + "1994": 0.701, + "1995": 0.708, + "1996": 0.72, + "1997": 0.732, + "1998": 0.741, + "1999": 0.755, + "2000": 0.763, + "2001": 0.758, + "2002": 0.768, + "2003": 0.767, + "2004": 0.77, + "2005": 0.771, + "2006": 0.776, + "2007": 0.782, + "2008": 0.786, + "2009": 0.789, + "2010": 0.793, + "2011": 0.793, + "2012": 0.793, + "2013": 0.792, + "2014": 0.791, + "2015": 0.792, + "2016": 0.796, + "2017": 0.8, + "2018": 0.804, + "2019": 0.804, + "2020": 0.781, + "2021": 0.776 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "National", + "GDLCODE": "GNQt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.511, + "2001": 0.517, + "2002": 0.524, + "2003": 0.532, + "2004": 0.539, + "2005": 0.546, + "2006": 0.555, + "2007": 0.562, + "2008": 0.57, + "2009": 0.576, + "2010": 0.583, + "2011": 0.591, + "2012": 0.598, + "2013": 0.603, + "2014": 0.609, + "2015": 0.617, + "2016": 0.623, + "2017": 0.628, + "2018": 0.634, + "2019": 0.641, + "2020": 0.626, + "2021": 0.625 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr101", + "Region": "Annobon, Bioko", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.51, + "2001": 0.517, + "2002": 0.523, + "2003": 0.531, + "2004": 0.538, + "2005": 0.545, + "2006": 0.554, + "2007": 0.561, + "2008": 0.569, + "2009": 0.575, + "2010": 0.582, + "2011": 0.59, + "2012": 0.597, + "2013": 0.602, + "2014": 0.608, + "2015": 0.616, + "2016": 0.622, + "2017": 0.627, + "2018": 0.633, + "2019": 0.64, + "2020": 0.625, + "2021": 0.623 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr102", + "Region": "Centro Sur", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.52, + "2001": 0.526, + "2002": 0.533, + "2003": 0.541, + "2004": 0.548, + "2005": 0.555, + "2006": 0.564, + "2007": 0.572, + "2008": 0.58, + "2009": 0.585, + "2010": 0.592, + "2011": 0.601, + "2012": 0.608, + "2013": 0.613, + "2014": 0.619, + "2015": 0.627, + "2016": 0.633, + "2017": 0.638, + "2018": 0.644, + "2019": 0.651, + "2020": 0.636, + "2021": 0.635 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr103", + "Region": "Kie Ntem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.503, + "2001": 0.51, + "2002": 0.516, + "2003": 0.524, + "2004": 0.531, + "2005": 0.537, + "2006": 0.546, + "2007": 0.554, + "2008": 0.562, + "2009": 0.567, + "2010": 0.574, + "2011": 0.582, + "2012": 0.589, + "2013": 0.595, + "2014": 0.6, + "2015": 0.608, + "2016": 0.614, + "2017": 0.619, + "2018": 0.625, + "2019": 0.632, + "2020": 0.617, + "2021": 0.616 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr104", + "Region": "Litoral", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.546, + "2001": 0.553, + "2002": 0.56, + "2003": 0.568, + "2004": 0.575, + "2005": 0.582, + "2006": 0.592, + "2007": 0.6, + "2008": 0.608, + "2009": 0.614, + "2010": 0.621, + "2011": 0.63, + "2012": 0.637, + "2013": 0.643, + "2014": 0.649, + "2015": 0.657, + "2016": 0.663, + "2017": 0.668, + "2018": 0.674, + "2019": 0.681, + "2020": 0.666, + "2021": 0.665 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr105", + "Region": "Wele Nzas", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.473, + "2001": 0.479, + "2002": 0.486, + "2003": 0.493, + "2004": 0.5, + "2005": 0.506, + "2006": 0.515, + "2007": 0.522, + "2008": 0.53, + "2009": 0.535, + "2010": 0.541, + "2011": 0.549, + "2012": 0.556, + "2013": 0.561, + "2014": 0.567, + "2015": 0.574, + "2016": 0.58, + "2017": 0.585, + "2018": 0.59, + "2019": 0.597, + "2020": 0.583, + "2021": 0.581 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "National", + "GDLCODE": "ERIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.625, + "2006": 0.64, + "2007": 0.648, + "2008": 0.655, + "2009": 0.667, + "2010": 0.674, + "2011": 0.683, + "2012": 0.69, + "2013": 0.693, + "2014": 0.702, + "2015": 0.708, + "2016": 0.712, + "2017": 0.717, + "2018": 0.724, + "2019": 0.728, + "2020": 0.725, + "2021": 0.716 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr104", + "Region": "Anseba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.697, + "2006": 0.714, + "2007": 0.722, + "2008": 0.73, + "2009": 0.742, + "2010": 0.75, + "2011": 0.76, + "2012": 0.767, + "2013": 0.771, + "2014": 0.78, + "2015": 0.787, + "2016": 0.791, + "2017": 0.796, + "2018": 0.804, + "2019": 0.808, + "2020": 0.805, + "2021": 0.795 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr106", + "Region": "Debub (Southern)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.617, + "2006": 0.633, + "2007": 0.64, + "2008": 0.647, + "2009": 0.659, + "2010": 0.666, + "2011": 0.675, + "2012": 0.682, + "2013": 0.685, + "2014": 0.693, + "2015": 0.7, + "2016": 0.704, + "2017": 0.708, + "2018": 0.716, + "2019": 0.719, + "2020": 0.717, + "2021": 0.708 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr101", + "Region": "Debubawi Keyih Bahri (Southern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.507, + "2006": 0.52, + "2007": 0.527, + "2008": 0.533, + "2009": 0.543, + "2010": 0.55, + "2011": 0.558, + "2012": 0.564, + "2013": 0.567, + "2014": 0.574, + "2015": 0.58, + "2016": 0.583, + "2017": 0.587, + "2018": 0.594, + "2019": 0.597, + "2020": 0.595, + "2021": 0.586 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr105", + "Region": "Gash Barka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.595, + "2006": 0.61, + "2007": 0.618, + "2008": 0.625, + "2009": 0.636, + "2010": 0.643, + "2011": 0.652, + "2012": 0.659, + "2013": 0.662, + "2014": 0.67, + "2015": 0.676, + "2016": 0.68, + "2017": 0.684, + "2018": 0.692, + "2019": 0.695, + "2020": 0.693, + "2021": 0.684 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr102", + "Region": "Maekel (Central including Asmara)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.727, + "2006": 0.745, + "2007": 0.753, + "2008": 0.761, + "2009": 0.774, + "2010": 0.782, + "2011": 0.792, + "2012": 0.8, + "2013": 0.804, + "2014": 0.813, + "2015": 0.82, + "2016": 0.824, + "2017": 0.829, + "2018": 0.838, + "2019": 0.842, + "2020": 0.839, + "2021": 0.829 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr103", + "Region": "Semenawi Keyih Bahri (Northern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.548, + "2006": 0.562, + "2007": 0.569, + "2008": 0.576, + "2009": 0.586, + "2010": 0.593, + "2011": 0.601, + "2012": 0.608, + "2013": 0.611, + "2014": 0.618, + "2015": 0.624, + "2016": 0.628, + "2017": 0.632, + "2018": 0.639, + "2019": 0.642, + "2020": 0.64, + "2021": 0.631 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "National", + "GDLCODE": "ESTt", + "Region": "Total", + "1990": 0.767, + "1991": 0.765, + "1992": 0.759, + "1993": 0.747, + "1994": 0.737, + "1995": 0.75, + "1996": 0.771, + "1997": 0.78, + "1998": 0.773, + "1999": 0.786, + "2000": 0.79, + "2001": 0.791, + "2002": 0.798, + "2003": 0.802, + "2004": 0.81, + "2005": 0.818, + "2006": 0.823, + "2007": 0.825, + "2008": 0.837, + "2009": 0.849, + "2010": 0.858, + "2011": 0.869, + "2012": 0.87, + "2013": 0.879, + "2014": 0.879, + "2015": 0.887, + "2016": 0.89, + "2017": 0.892, + "2018": 0.894, + "2019": 0.903, + "2020": 0.898, + "2021": 0.879 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr103", + "Region": "Kesk-Eesti", + "1990": 0.759, + "1991": 0.758, + "1992": 0.752, + "1993": 0.74, + "1994": 0.73, + "1995": 0.742, + "1996": 0.764, + "1997": 0.773, + "1998": 0.765, + "1999": 0.779, + "2000": 0.782, + "2001": 0.784, + "2002": 0.791, + "2003": 0.795, + "2004": 0.802, + "2005": 0.811, + "2006": 0.815, + "2007": 0.817, + "2008": 0.827, + "2009": 0.834, + "2010": 0.846, + "2011": 0.856, + "2012": 0.858, + "2013": 0.864, + "2014": 0.866, + "2015": 0.877, + "2016": 0.877, + "2017": 0.879, + "2018": 0.882, + "2019": 0.89, + "2020": 0.885, + "2021": 0.866 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr104", + "Region": "Kirde-Eesti", + "1990": 0.715, + "1991": 0.714, + "1992": 0.708, + "1993": 0.697, + "1994": 0.687, + "1995": 0.699, + "1996": 0.72, + "1997": 0.728, + "1998": 0.721, + "1999": 0.734, + "2000": 0.737, + "2001": 0.739, + "2002": 0.745, + "2003": 0.749, + "2004": 0.756, + "2005": 0.765, + "2006": 0.769, + "2007": 0.771, + "2008": 0.776, + "2009": 0.786, + "2010": 0.795, + "2011": 0.809, + "2012": 0.808, + "2013": 0.824, + "2014": 0.837, + "2015": 0.845, + "2016": 0.84, + "2017": 0.843, + "2018": 0.845, + "2019": 0.853, + "2020": 0.848, + "2021": 0.83 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr102", + "Region": "Laane-Eesti", + "1990": 0.773, + "1991": 0.771, + "1992": 0.765, + "1993": 0.753, + "1994": 0.742, + "1995": 0.755, + "1996": 0.777, + "1997": 0.786, + "1998": 0.779, + "1999": 0.792, + "2000": 0.796, + "2001": 0.797, + "2002": 0.804, + "2003": 0.809, + "2004": 0.816, + "2005": 0.825, + "2006": 0.829, + "2007": 0.831, + "2008": 0.843, + "2009": 0.855, + "2010": 0.862, + "2011": 0.869, + "2012": 0.867, + "2013": 0.871, + "2014": 0.868, + "2015": 0.881, + "2016": 0.891, + "2017": 0.894, + "2018": 0.896, + "2019": 0.905, + "2020": 0.9, + "2021": 0.881 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr105", + "Region": "Louna-Eesti", + "1990": 0.772, + "1991": 0.77, + "1992": 0.764, + "1993": 0.753, + "1994": 0.742, + "1995": 0.755, + "1996": 0.777, + "1997": 0.786, + "1998": 0.778, + "1999": 0.792, + "2000": 0.795, + "2001": 0.797, + "2002": 0.804, + "2003": 0.808, + "2004": 0.815, + "2005": 0.824, + "2006": 0.828, + "2007": 0.83, + "2008": 0.844, + "2009": 0.858, + "2010": 0.865, + "2011": 0.871, + "2012": 0.872, + "2013": 0.88, + "2014": 0.88, + "2015": 0.888, + "2016": 0.89, + "2017": 0.893, + "2018": 0.895, + "2019": 0.903, + "2020": 0.898, + "2021": 0.88 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr101", + "Region": "Pohja-Eesti", + "1990": 0.779, + "1991": 0.777, + "1992": 0.771, + "1993": 0.76, + "1994": 0.749, + "1995": 0.762, + "1996": 0.784, + "1997": 0.793, + "1998": 0.785, + "1999": 0.799, + "2000": 0.802, + "2001": 0.804, + "2002": 0.811, + "2003": 0.815, + "2004": 0.823, + "2005": 0.831, + "2006": 0.836, + "2007": 0.838, + "2008": 0.852, + "2009": 0.864, + "2010": 0.873, + "2011": 0.887, + "2012": 0.889, + "2013": 0.899, + "2014": 0.896, + "2015": 0.901, + "2016": 0.904, + "2017": 0.906, + "2018": 0.909, + "2019": 0.917, + "2020": 0.912, + "2021": 0.893 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "National", + "GDLCODE": "SWZt", + "Region": "Total", + "1990": 0.663, + "1991": 0.657, + "1992": 0.642, + "1993": 0.619, + "1994": 0.589, + "1995": 0.556, + "1996": 0.521, + "1997": 0.493, + "1998": 0.467, + "1999": 0.442, + "2000": 0.419, + "2001": 0.4, + "2002": 0.377, + "2003": 0.359, + "2004": 0.347, + "2005": 0.34, + "2006": 0.356, + "2007": 0.364, + "2008": 0.372, + "2009": 0.379, + "2010": 0.41, + "2011": 0.434, + "2012": 0.459, + "2013": 0.484, + "2014": 0.508, + "2015": 0.539, + "2016": 0.564, + "2017": 0.583, + "2018": 0.606, + "2019": 0.624, + "2020": 0.611, + "2021": 0.57 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr101", + "Region": "Hhohho", + "1990": 0.677, + "1991": 0.671, + "1992": 0.656, + "1993": 0.633, + "1994": 0.602, + "1995": 0.569, + "1996": 0.533, + "1997": 0.505, + "1998": 0.478, + "1999": 0.453, + "2000": 0.43, + "2001": 0.411, + "2002": 0.389, + "2003": 0.372, + "2004": 0.36, + "2005": 0.354, + "2006": 0.371, + "2007": 0.382, + "2008": 0.394, + "2009": 0.405, + "2010": 0.439, + "2011": 0.472, + "2012": 0.506, + "2013": 0.54, + "2014": 0.574, + "2015": 0.607, + "2016": 0.634, + "2017": 0.655, + "2018": 0.68, + "2019": 0.699, + "2020": 0.684, + "2021": 0.641 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr104", + "Region": "Lubombo", + "1990": 0.673, + "1991": 0.667, + "1992": 0.653, + "1993": 0.629, + "1994": 0.599, + "1995": 0.566, + "1996": 0.53, + "1997": 0.502, + "1998": 0.475, + "1999": 0.45, + "2000": 0.427, + "2001": 0.404, + "2002": 0.377, + "2003": 0.356, + "2004": 0.34, + "2005": 0.33, + "2006": 0.342, + "2007": 0.35, + "2008": 0.358, + "2009": 0.365, + "2010": 0.394, + "2011": 0.425, + "2012": 0.458, + "2013": 0.491, + "2014": 0.523, + "2015": 0.554, + "2016": 0.579, + "2017": 0.599, + "2018": 0.622, + "2019": 0.64, + "2020": 0.627, + "2021": 0.586 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr102", + "Region": "Manzini", + "1990": 0.648, + "1991": 0.642, + "1992": 0.628, + "1993": 0.605, + "1994": 0.575, + "1995": 0.543, + "1996": 0.509, + "1997": 0.481, + "1998": 0.455, + "1999": 0.431, + "2000": 0.409, + "2001": 0.389, + "2002": 0.367, + "2003": 0.35, + "2004": 0.337, + "2005": 0.331, + "2006": 0.346, + "2007": 0.355, + "2008": 0.364, + "2009": 0.372, + "2010": 0.402, + "2011": 0.424, + "2012": 0.446, + "2013": 0.469, + "2014": 0.489, + "2015": 0.519, + "2016": 0.544, + "2017": 0.562, + "2018": 0.585, + "2019": 0.602, + "2020": 0.589, + "2021": 0.55 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr103", + "Region": "Shiselweni", + "1990": 0.649, + "1991": 0.643, + "1992": 0.629, + "1993": 0.606, + "1994": 0.576, + "1995": 0.544, + "1996": 0.509, + "1997": 0.482, + "1998": 0.456, + "1999": 0.432, + "2000": 0.409, + "2001": 0.393, + "2002": 0.373, + "2003": 0.359, + "2004": 0.349, + "2005": 0.346, + "2006": 0.364, + "2007": 0.366, + "2008": 0.368, + "2009": 0.368, + "2010": 0.391, + "2011": 0.409, + "2012": 0.427, + "2013": 0.446, + "2014": 0.462, + "2015": 0.491, + "2016": 0.514, + "2017": 0.532, + "2018": 0.554, + "2019": 0.571, + "2020": 0.558, + "2021": 0.52 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "National", + "GDLCODE": "ETHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.47, + "2001": 0.478, + "2002": 0.485, + "2003": 0.501, + "2004": 0.511, + "2005": 0.523, + "2006": 0.541, + "2007": 0.56, + "2008": 0.578, + "2009": 0.597, + "2010": 0.611, + "2011": 0.626, + "2012": 0.639, + "2013": 0.652, + "2014": 0.66, + "2015": 0.672, + "2016": 0.683, + "2017": 0.69, + "2018": 0.699, + "2019": 0.705, + "2020": 0.698, + "2021": 0.692 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr110", + "Region": "Addis", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.571, + "2001": 0.58, + "2002": 0.589, + "2003": 0.608, + "2004": 0.62, + "2005": 0.634, + "2006": 0.655, + "2007": 0.677, + "2008": 0.698, + "2009": 0.72, + "2010": 0.736, + "2011": 0.754, + "2012": 0.762, + "2013": 0.77, + "2014": 0.773, + "2015": 0.78, + "2016": 0.787, + "2017": 0.794, + "2018": 0.804, + "2019": 0.811, + "2020": 0.804, + "2021": 0.797 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr102", + "Region": "Affar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.438, + "2001": 0.456, + "2002": 0.473, + "2003": 0.498, + "2004": 0.518, + "2005": 0.54, + "2006": 0.55, + "2007": 0.562, + "2008": 0.573, + "2009": 0.584, + "2010": 0.59, + "2011": 0.597, + "2012": 0.599, + "2013": 0.6, + "2014": 0.598, + "2015": 0.598, + "2016": 0.598, + "2017": 0.605, + "2018": 0.613, + "2019": 0.619, + "2020": 0.612, + "2021": 0.607 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr103", + "Region": "Amhara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.474, + "2001": 0.475, + "2002": 0.475, + "2003": 0.483, + "2004": 0.487, + "2005": 0.492, + "2006": 0.515, + "2007": 0.54, + "2008": 0.564, + "2009": 0.589, + "2010": 0.609, + "2011": 0.631, + "2012": 0.641, + "2013": 0.651, + "2014": 0.657, + "2015": 0.666, + "2016": 0.675, + "2017": 0.682, + "2018": 0.691, + "2019": 0.697, + "2020": 0.69, + "2021": 0.684 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr106", + "Region": "Ben-Gumz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.46, + "2001": 0.463, + "2002": 0.465, + "2003": 0.475, + "2004": 0.481, + "2005": 0.488, + "2006": 0.497, + "2007": 0.507, + "2008": 0.516, + "2009": 0.525, + "2010": 0.53, + "2011": 0.536, + "2012": 0.56, + "2013": 0.584, + "2014": 0.603, + "2015": 0.626, + "2016": 0.649, + "2017": 0.656, + "2018": 0.664, + "2019": 0.67, + "2020": 0.664, + "2021": 0.658 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr111", + "Region": "Dire Dawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.482, + "2001": 0.486, + "2002": 0.489, + "2003": 0.501, + "2004": 0.508, + "2005": 0.516, + "2006": 0.539, + "2007": 0.565, + "2008": 0.588, + "2009": 0.613, + "2010": 0.633, + "2011": 0.654, + "2012": 0.656, + "2013": 0.659, + "2014": 0.657, + "2015": 0.658, + "2016": 0.659, + "2017": 0.666, + "2018": 0.675, + "2019": 0.681, + "2020": 0.674, + "2021": 0.668 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr108", + "Region": "Gambela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.436, + "2001": 0.445, + "2002": 0.453, + "2003": 0.469, + "2004": 0.48, + "2005": 0.493, + "2006": 0.512, + "2007": 0.532, + "2008": 0.552, + "2009": 0.572, + "2010": 0.587, + "2011": 0.604, + "2012": 0.618, + "2013": 0.633, + "2014": 0.643, + "2015": 0.656, + "2016": 0.669, + "2017": 0.676, + "2018": 0.684, + "2019": 0.691, + "2020": 0.684, + "2021": 0.678 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr109", + "Region": "Harari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.466, + "2001": 0.485, + "2002": 0.503, + "2003": 0.53, + "2004": 0.551, + "2005": 0.574, + "2006": 0.588, + "2007": 0.605, + "2008": 0.62, + "2009": 0.636, + "2010": 0.647, + "2011": 0.659, + "2012": 0.669, + "2013": 0.68, + "2014": 0.685, + "2015": 0.694, + "2016": 0.703, + "2017": 0.71, + "2018": 0.719, + "2019": 0.726, + "2020": 0.719, + "2021": 0.712 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr104", + "Region": "Oromiya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.464, + "2001": 0.476, + "2002": 0.488, + "2003": 0.507, + "2004": 0.522, + "2005": 0.538, + "2006": 0.553, + "2007": 0.57, + "2008": 0.584, + "2009": 0.6, + "2010": 0.611, + "2011": 0.623, + "2012": 0.637, + "2013": 0.652, + "2014": 0.662, + "2015": 0.676, + "2016": 0.689, + "2017": 0.696, + "2018": 0.705, + "2019": 0.712, + "2020": 0.704, + "2021": 0.698 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr107", + "Region": "SNNP", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.466, + "2001": 0.472, + "2002": 0.477, + "2003": 0.49, + "2004": 0.498, + "2005": 0.508, + "2006": 0.526, + "2007": 0.547, + "2008": 0.565, + "2009": 0.585, + "2010": 0.6, + "2011": 0.616, + "2012": 0.628, + "2013": 0.64, + "2014": 0.647, + "2015": 0.658, + "2016": 0.668, + "2017": 0.675, + "2018": 0.684, + "2019": 0.69, + "2020": 0.683, + "2021": 0.677 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr105", + "Region": "Somali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.473, + "2001": 0.494, + "2002": 0.514, + "2003": 0.543, + "2004": 0.567, + "2005": 0.591, + "2006": 0.595, + "2007": 0.6, + "2008": 0.603, + "2009": 0.606, + "2010": 0.605, + "2011": 0.604, + "2012": 0.616, + "2013": 0.628, + "2014": 0.635, + "2015": 0.646, + "2016": 0.656, + "2017": 0.663, + "2018": 0.672, + "2019": 0.678, + "2020": 0.671, + "2021": 0.665 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr101", + "Region": "Tigray", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.49, + "2001": 0.502, + "2002": 0.514, + "2003": 0.534, + "2004": 0.549, + "2005": 0.566, + "2006": 0.585, + "2007": 0.606, + "2008": 0.625, + "2009": 0.646, + "2010": 0.661, + "2011": 0.678, + "2012": 0.691, + "2013": 0.704, + "2014": 0.712, + "2015": 0.724, + "2016": 0.736, + "2017": 0.743, + "2018": 0.752, + "2019": 0.759, + "2020": 0.752, + "2021": 0.745 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "National", + "GDLCODE": "FJIt", + "Region": "Total", + "1990": 0.7, + "1991": 0.702, + "1992": 0.705, + "1993": 0.707, + "1994": 0.71, + "1995": 0.712, + "1996": 0.714, + "1997": 0.715, + "1998": 0.718, + "1999": 0.719, + "2000": 0.712, + "2001": 0.713, + "2002": 0.704, + "2003": 0.71, + "2004": 0.714, + "2005": 0.717, + "2006": 0.721, + "2007": 0.72, + "2008": 0.722, + "2009": 0.724, + "2010": 0.728, + "2011": 0.731, + "2012": 0.732, + "2013": 0.73, + "2014": 0.729, + "2015": 0.721, + "2016": 0.727, + "2017": 0.735, + "2018": 0.736, + "2019": 0.737, + "2020": 0.737, + "2021": 0.725 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr108", + "Region": "Ba", + "1990": 0.678, + "1991": 0.68, + "1992": 0.683, + "1993": 0.685, + "1994": 0.688, + "1995": 0.69, + "1996": 0.692, + "1997": 0.692, + "1998": 0.696, + "1999": 0.697, + "2000": 0.69, + "2001": 0.691, + "2002": 0.682, + "2003": 0.688, + "2004": 0.692, + "2005": 0.695, + "2006": 0.699, + "2007": 0.698, + "2008": 0.702, + "2009": 0.706, + "2010": 0.712, + "2011": 0.716, + "2012": 0.719, + "2013": 0.719, + "2014": 0.72, + "2015": 0.714, + "2016": 0.722, + "2017": 0.732, + "2018": 0.734, + "2019": 0.737, + "2020": 0.74, + "2021": 0.729 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr106", + "Region": "Cakaudrove, Bua", + "1990": 0.723, + "1991": 0.725, + "1992": 0.728, + "1993": 0.729, + "1994": 0.733, + "1995": 0.735, + "1996": 0.737, + "1997": 0.738, + "1998": 0.741, + "1999": 0.743, + "2000": 0.735, + "2001": 0.736, + "2002": 0.727, + "2003": 0.733, + "2004": 0.737, + "2005": 0.741, + "2006": 0.744, + "2007": 0.744, + "2008": 0.742, + "2009": 0.742, + "2010": 0.743, + "2011": 0.743, + "2012": 0.741, + "2013": 0.736, + "2014": 0.733, + "2015": 0.722, + "2016": 0.725, + "2017": 0.731, + "2018": 0.729, + "2019": 0.727, + "2020": 0.725, + "2021": 0.71 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr105", + "Region": "Kadavu, Lau, Lomaiviti, Rotuma", + "1990": 0.701, + "1991": 0.703, + "1992": 0.706, + "1993": 0.707, + "1994": 0.71, + "1995": 0.713, + "1996": 0.714, + "1997": 0.715, + "1998": 0.719, + "1999": 0.72, + "2000": 0.713, + "2001": 0.713, + "2002": 0.704, + "2003": 0.711, + "2004": 0.715, + "2005": 0.718, + "2006": 0.721, + "2007": 0.721, + "2008": 0.72, + "2009": 0.719, + "2010": 0.72, + "2011": 0.721, + "2012": 0.718, + "2013": 0.714, + "2014": 0.71, + "2015": 0.7, + "2016": 0.703, + "2017": 0.709, + "2018": 0.706, + "2019": 0.705, + "2020": 0.703, + "2021": 0.688 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr107", + "Region": "Macuata", + "1990": 0.696, + "1991": 0.698, + "1992": 0.701, + "1993": 0.703, + "1994": 0.706, + "1995": 0.708, + "1996": 0.71, + "1997": 0.711, + "1998": 0.714, + "1999": 0.715, + "2000": 0.708, + "2001": 0.709, + "2002": 0.7, + "2003": 0.706, + "2004": 0.71, + "2005": 0.713, + "2006": 0.717, + "2007": 0.716, + "2008": 0.715, + "2009": 0.715, + "2010": 0.716, + "2011": 0.716, + "2012": 0.714, + "2013": 0.709, + "2014": 0.706, + "2015": 0.695, + "2016": 0.699, + "2017": 0.704, + "2018": 0.702, + "2019": 0.701, + "2020": 0.698, + "2021": 0.684 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr109", + "Region": "Nadroga or Navosa", + "1990": 0.711, + "1991": 0.713, + "1992": 0.716, + "1993": 0.718, + "1994": 0.721, + "1995": 0.723, + "1996": 0.725, + "1997": 0.726, + "1998": 0.729, + "1999": 0.731, + "2000": 0.724, + "2001": 0.724, + "2002": 0.715, + "2003": 0.722, + "2004": 0.725, + "2005": 0.729, + "2006": 0.732, + "2007": 0.732, + "2008": 0.731, + "2009": 0.73, + "2010": 0.731, + "2011": 0.732, + "2012": 0.729, + "2013": 0.725, + "2014": 0.721, + "2015": 0.71, + "2016": 0.714, + "2017": 0.719, + "2018": 0.717, + "2019": 0.716, + "2020": 0.714, + "2021": 0.699 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr101", + "Region": "Naitasiri", + "1990": 0.708, + "1991": 0.71, + "1992": 0.713, + "1993": 0.714, + "1994": 0.717, + "1995": 0.72, + "1996": 0.722, + "1997": 0.722, + "1998": 0.726, + "1999": 0.727, + "2000": 0.72, + "2001": 0.721, + "2002": 0.711, + "2003": 0.718, + "2004": 0.722, + "2005": 0.725, + "2006": 0.729, + "2007": 0.728, + "2008": 0.729, + "2009": 0.73, + "2010": 0.732, + "2011": 0.734, + "2012": 0.734, + "2013": 0.731, + "2014": 0.729, + "2015": 0.719, + "2016": 0.724, + "2017": 0.732, + "2018": 0.731, + "2019": 0.731, + "2020": 0.731, + "2021": 0.717 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr110", + "Region": "Ra", + "1990": 0.688, + "1991": 0.69, + "1992": 0.693, + "1993": 0.695, + "1994": 0.698, + "1995": 0.7, + "1996": 0.702, + "1997": 0.702, + "1998": 0.706, + "1999": 0.707, + "2000": 0.7, + "2001": 0.701, + "2002": 0.692, + "2003": 0.698, + "2004": 0.702, + "2005": 0.705, + "2006": 0.709, + "2007": 0.708, + "2008": 0.707, + "2009": 0.707, + "2010": 0.708, + "2011": 0.708, + "2012": 0.706, + "2013": 0.701, + "2014": 0.698, + "2015": 0.687, + "2016": 0.691, + "2017": 0.696, + "2018": 0.694, + "2019": 0.693, + "2020": 0.69, + "2021": 0.676 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr102", + "Region": "Rewa", + "1990": 0.715, + "1991": 0.717, + "1992": 0.72, + "1993": 0.722, + "1994": 0.725, + "1995": 0.727, + "1996": 0.729, + "1997": 0.73, + "1998": 0.734, + "1999": 0.735, + "2000": 0.728, + "2001": 0.728, + "2002": 0.719, + "2003": 0.726, + "2004": 0.73, + "2005": 0.733, + "2006": 0.736, + "2007": 0.736, + "2008": 0.735, + "2009": 0.734, + "2010": 0.735, + "2011": 0.736, + "2012": 0.733, + "2013": 0.729, + "2014": 0.725, + "2015": 0.714, + "2016": 0.718, + "2017": 0.724, + "2018": 0.721, + "2019": 0.72, + "2020": 0.718, + "2021": 0.703 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr103", + "Region": "Serua, Namosi", + "1990": 0.697, + "1991": 0.699, + "1992": 0.702, + "1993": 0.704, + "1994": 0.707, + "1995": 0.709, + "1996": 0.711, + "1997": 0.712, + "1998": 0.715, + "1999": 0.717, + "2000": 0.71, + "2001": 0.71, + "2002": 0.701, + "2003": 0.708, + "2004": 0.711, + "2005": 0.715, + "2006": 0.718, + "2007": 0.717, + "2008": 0.716, + "2009": 0.716, + "2010": 0.717, + "2011": 0.717, + "2012": 0.715, + "2013": 0.71, + "2014": 0.707, + "2015": 0.696, + "2016": 0.7, + "2017": 0.705, + "2018": 0.703, + "2019": 0.702, + "2020": 0.7, + "2021": 0.685 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr104", + "Region": "Tailevu", + "1990": 0.721, + "1991": 0.723, + "1992": 0.726, + "1993": 0.728, + "1994": 0.731, + "1995": 0.733, + "1996": 0.735, + "1997": 0.736, + "1998": 0.74, + "1999": 0.741, + "2000": 0.734, + "2001": 0.734, + "2002": 0.725, + "2003": 0.732, + "2004": 0.735, + "2005": 0.739, + "2006": 0.742, + "2007": 0.742, + "2008": 0.741, + "2009": 0.74, + "2010": 0.741, + "2011": 0.742, + "2012": 0.739, + "2013": 0.735, + "2014": 0.731, + "2015": 0.72, + "2016": 0.724, + "2017": 0.729, + "2018": 0.727, + "2019": 0.726, + "2020": 0.723, + "2021": 0.709 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "National", + "GDLCODE": "FINt", + "Region": "Total", + "1990": 0.846, + "1991": 0.852, + "1992": 0.856, + "1993": 0.86, + "1994": 0.87, + "1995": 0.871, + "1996": 0.875, + "1997": 0.878, + "1998": 0.881, + "1999": 0.884, + "2000": 0.887, + "2001": 0.894, + "2002": 0.896, + "2003": 0.901, + "2004": 0.905, + "2005": 0.907, + "2006": 0.913, + "2007": 0.914, + "2008": 0.918, + "2009": 0.92, + "2010": 0.923, + "2011": 0.929, + "2012": 0.931, + "2013": 0.937, + "2014": 0.939, + "2015": 0.945, + "2016": 0.943, + "2017": 0.946, + "2018": 0.948, + "2019": 0.952, + "2020": 0.952, + "2021": 0.954 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr105", + "Region": "Aland", + "1990": 0.904, + "1991": 0.888, + "1992": 0.883, + "1993": 0.91, + "1994": 0.897, + "1995": 0.895, + "1996": 0.886, + "1997": 0.914, + "1998": 0.942, + "1999": 0.895, + "2000": 0.926, + "2001": 0.939, + "2002": 0.952, + "2003": 0.93, + "2004": 0.92, + "2005": 0.923, + "2006": 0.948, + "2007": 0.955, + "2008": 0.941, + "2009": 0.95, + "2010": 0.969, + "2011": 0.952, + "2012": 0.915, + "2013": 0.958, + "2014": 0.965, + "2015": 0.959, + "2016": 0.933, + "2017": 0.981, + "2018": 0.972, + "2019": 0.98, + "2020": 0.98, + "2021": 0.982 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr103", + "Region": "Etela-Suomi", + "1990": 0.847, + "1991": 0.851, + "1992": 0.857, + "1993": 0.862, + "1994": 0.869, + "1995": 0.866, + "1996": 0.874, + "1997": 0.876, + "1998": 0.881, + "1999": 0.88, + "2000": 0.883, + "2001": 0.89, + "2002": 0.898, + "2003": 0.899, + "2004": 0.904, + "2005": 0.901, + "2006": 0.912, + "2007": 0.909, + "2008": 0.915, + "2009": 0.913, + "2010": 0.918, + "2011": 0.927, + "2012": 0.927, + "2013": 0.932, + "2014": 0.936, + "2015": 0.943, + "2016": 0.939, + "2017": 0.943, + "2018": 0.943, + "2019": 0.946, + "2020": 0.946, + "2021": 0.948 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr102", + "Region": "Helsinki-Uusimaa", + "1990": 0.844, + "1991": 0.851, + "1992": 0.86, + "1993": 0.864, + "1994": 0.877, + "1995": 0.878, + "1996": 0.879, + "1997": 0.883, + "1998": 0.884, + "1999": 0.891, + "2000": 0.891, + "2001": 0.899, + "2002": 0.9, + "2003": 0.907, + "2004": 0.909, + "2005": 0.91, + "2006": 0.918, + "2007": 0.919, + "2008": 0.928, + "2009": 0.928, + "2010": 0.928, + "2011": 0.935, + "2012": 0.937, + "2013": 0.945, + "2014": 0.946, + "2015": 0.949, + "2016": 0.95, + "2017": 0.955, + "2018": 0.958, + "2019": 0.96, + "2020": 0.96, + "2021": 0.962 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr101", + "Region": "Lansi-Suomi", + "1990": 0.855, + "1991": 0.862, + "1992": 0.862, + "1993": 0.864, + "1994": 0.877, + "1995": 0.877, + "1996": 0.88, + "1997": 0.883, + "1998": 0.89, + "1999": 0.889, + "2000": 0.895, + "2001": 0.902, + "2002": 0.9, + "2003": 0.905, + "2004": 0.912, + "2005": 0.913, + "2006": 0.917, + "2007": 0.919, + "2008": 0.922, + "2009": 0.925, + "2010": 0.929, + "2011": 0.931, + "2012": 0.935, + "2013": 0.941, + "2014": 0.94, + "2015": 0.948, + "2016": 0.945, + "2017": 0.947, + "2018": 0.951, + "2019": 0.955, + "2020": 0.955, + "2021": 0.958 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr104", + "Region": "Pohjois-ja Ita-Suomi", + "1990": 0.838, + "1991": 0.845, + "1992": 0.845, + "1993": 0.85, + "1994": 0.858, + "1995": 0.861, + "1996": 0.866, + "1997": 0.868, + "1998": 0.867, + "1999": 0.875, + "2000": 0.878, + "2001": 0.885, + "2002": 0.887, + "2003": 0.89, + "2004": 0.895, + "2005": 0.903, + "2006": 0.905, + "2007": 0.906, + "2008": 0.905, + "2009": 0.913, + "2010": 0.915, + "2011": 0.921, + "2012": 0.923, + "2013": 0.926, + "2014": 0.93, + "2015": 0.937, + "2016": 0.935, + "2017": 0.936, + "2018": 0.937, + "2019": 0.943, + "2020": 0.943, + "2021": 0.945 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "National", + "GDLCODE": "FRAt", + "Region": "Total", + "1990": 0.874, + "1991": 0.877, + "1992": 0.881, + "1993": 0.882, + "1994": 0.889, + "1995": 0.89, + "1996": 0.893, + "1997": 0.899, + "1998": 0.901, + "1999": 0.904, + "2000": 0.908, + "2001": 0.911, + "2002": 0.914, + "2003": 0.914, + "2004": 0.928, + "2005": 0.928, + "2006": 0.935, + "2007": 0.938, + "2008": 0.939, + "2009": 0.941, + "2010": 0.945, + "2011": 0.951, + "2012": 0.95, + "2013": 0.954, + "2014": 0.961, + "2015": 0.957, + "2016": 0.961, + "2017": 0.961, + "2018": 0.963, + "2019": 0.965, + "2020": 0.957, + "2021": 0.962 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr110", + "Region": "Alsace", + "1990": 0.854, + "1991": 0.861, + "1992": 0.867, + "1993": 0.865, + "1994": 0.878, + "1995": 0.879, + "1996": 0.88, + "1997": 0.889, + "1998": 0.892, + "1999": 0.894, + "2000": 0.903, + "2001": 0.906, + "2002": 0.909, + "2003": 0.912, + "2004": 0.922, + "2005": 0.926, + "2006": 0.931, + "2007": 0.939, + "2008": 0.941, + "2009": 0.936, + "2010": 0.943, + "2011": 0.951, + "2012": 0.953, + "2013": 0.95, + "2014": 0.959, + "2015": 0.954, + "2016": 0.962, + "2017": 0.962, + "2018": 0.959, + "2019": 0.968, + "2020": 0.96, + "2021": 0.964 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr115", + "Region": "Aquitaine", + "1990": 0.877, + "1991": 0.882, + "1992": 0.886, + "1993": 0.884, + "1994": 0.892, + "1995": 0.893, + "1996": 0.897, + "1997": 0.898, + "1998": 0.901, + "1999": 0.905, + "2000": 0.917, + "2001": 0.915, + "2002": 0.919, + "2003": 0.921, + "2004": 0.934, + "2005": 0.934, + "2006": 0.94, + "2007": 0.945, + "2008": 0.949, + "2009": 0.948, + "2010": 0.951, + "2011": 0.96, + "2012": 0.954, + "2013": 0.961, + "2014": 0.963, + "2015": 0.962, + "2016": 0.968, + "2017": 0.964, + "2018": 0.968, + "2019": 0.97, + "2020": 0.962, + "2021": 0.966 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr119", + "Region": "Auvergne", + "1990": 0.864, + "1991": 0.867, + "1992": 0.869, + "1993": 0.873, + "1994": 0.876, + "1995": 0.882, + "1996": 0.88, + "1997": 0.889, + "1998": 0.886, + "1999": 0.891, + "2000": 0.9, + "2001": 0.901, + "2002": 0.909, + "2003": 0.912, + "2004": 0.919, + "2005": 0.916, + "2006": 0.928, + "2007": 0.931, + "2008": 0.93, + "2009": 0.928, + "2010": 0.934, + "2011": 0.939, + "2012": 0.939, + "2013": 0.946, + "2014": 0.954, + "2015": 0.949, + "2016": 0.951, + "2017": 0.953, + "2018": 0.956, + "2019": 0.956, + "2020": 0.948, + "2021": 0.952 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr106", + "Region": "Basse-Normandie", + "1990": 0.867, + "1991": 0.869, + "1992": 0.879, + "1993": 0.874, + "1994": 0.885, + "1995": 0.884, + "1996": 0.889, + "1997": 0.889, + "1998": 0.894, + "1999": 0.897, + "2000": 0.908, + "2001": 0.909, + "2002": 0.915, + "2003": 0.913, + "2004": 0.922, + "2005": 0.923, + "2006": 0.931, + "2007": 0.93, + "2008": 0.935, + "2009": 0.934, + "2010": 0.938, + "2011": 0.945, + "2012": 0.94, + "2013": 0.947, + "2014": 0.951, + "2015": 0.949, + "2016": 0.953, + "2017": 0.956, + "2018": 0.953, + "2019": 0.956, + "2020": 0.948, + "2021": 0.952 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr107", + "Region": "Bourgogne", + "1990": 0.872, + "1991": 0.873, + "1992": 0.878, + "1993": 0.871, + "1994": 0.882, + "1995": 0.885, + "1996": 0.885, + "1997": 0.89, + "1998": 0.894, + "1999": 0.889, + "2000": 0.902, + "2001": 0.906, + "2002": 0.909, + "2003": 0.907, + "2004": 0.925, + "2005": 0.922, + "2006": 0.926, + "2007": 0.931, + "2008": 0.93, + "2009": 0.934, + "2010": 0.938, + "2011": 0.936, + "2012": 0.943, + "2013": 0.946, + "2014": 0.951, + "2015": 0.948, + "2016": 0.951, + "2017": 0.948, + "2018": 0.953, + "2019": 0.954, + "2020": 0.946, + "2021": 0.951 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr113", + "Region": "Bretagne", + "1990": 0.851, + "1991": 0.856, + "1992": 0.866, + "1993": 0.861, + "1994": 0.873, + "1995": 0.871, + "1996": 0.874, + "1997": 0.877, + "1998": 0.886, + "1999": 0.885, + "2000": 0.897, + "2001": 0.9, + "2002": 0.902, + "2003": 0.906, + "2004": 0.915, + "2005": 0.919, + "2006": 0.923, + "2007": 0.923, + "2008": 0.927, + "2009": 0.93, + "2010": 0.932, + "2011": 0.937, + "2012": 0.936, + "2013": 0.941, + "2014": 0.951, + "2015": 0.948, + "2016": 0.948, + "2017": 0.951, + "2018": 0.952, + "2019": 0.956, + "2020": 0.948, + "2021": 0.952 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr105", + "Region": "Centre", + "1990": 0.881, + "1991": 0.884, + "1992": 0.889, + "1993": 0.888, + "1994": 0.893, + "1995": 0.893, + "1996": 0.897, + "1997": 0.901, + "1998": 0.903, + "1999": 0.902, + "2000": 0.912, + "2001": 0.912, + "2002": 0.919, + "2003": 0.912, + "2004": 0.929, + "2005": 0.929, + "2006": 0.934, + "2007": 0.939, + "2008": 0.936, + "2009": 0.938, + "2010": 0.94, + "2011": 0.951, + "2012": 0.949, + "2013": 0.952, + "2014": 0.96, + "2015": 0.954, + "2016": 0.956, + "2017": 0.956, + "2018": 0.959, + "2019": 0.959, + "2020": 0.951, + "2021": 0.955 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr102", + "Region": "Champagne-Ardenne", + "1990": 0.861, + "1991": 0.862, + "1992": 0.866, + "1993": 0.865, + "1994": 0.875, + "1995": 0.876, + "1996": 0.879, + "1997": 0.881, + "1998": 0.888, + "1999": 0.885, + "2000": 0.895, + "2001": 0.897, + "2002": 0.899, + "2003": 0.901, + "2004": 0.914, + "2005": 0.914, + "2006": 0.919, + "2007": 0.919, + "2008": 0.918, + "2009": 0.919, + "2010": 0.928, + "2011": 0.933, + "2012": 0.931, + "2013": 0.935, + "2014": 0.945, + "2015": 0.939, + "2016": 0.94, + "2017": 0.941, + "2018": 0.942, + "2019": 0.945, + "2020": 0.937, + "2021": 0.942 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr122", + "Region": "Corse", + "1990": 0.863, + "1991": 0.864, + "1992": 0.858, + "1993": 0.861, + "1994": 0.866, + "1995": 0.873, + "1996": 0.891, + "1997": 0.893, + "1998": 0.898, + "1999": 0.906, + "2000": 0.905, + "2001": 0.92, + "2002": 0.922, + "2003": 0.926, + "2004": 0.932, + "2005": 0.936, + "2006": 0.946, + "2007": 0.946, + "2008": 0.947, + "2009": 0.944, + "2010": 0.942, + "2011": 0.95, + "2012": 0.963, + "2013": 0.955, + "2014": 0.963, + "2015": 0.966, + "2016": 0.977, + "2017": 0.974, + "2018": 0.982, + "2019": 0.979, + "2020": 0.971, + "2021": 0.975 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr111", + "Region": "Franche-Comte", + "1990": 0.872, + "1991": 0.876, + "1992": 0.882, + "1993": 0.877, + "1994": 0.884, + "1995": 0.888, + "1996": 0.888, + "1997": 0.896, + "1998": 0.901, + "1999": 0.899, + "2000": 0.911, + "2001": 0.912, + "2002": 0.915, + "2003": 0.915, + "2004": 0.926, + "2005": 0.925, + "2006": 0.931, + "2007": 0.937, + "2008": 0.938, + "2009": 0.938, + "2010": 0.943, + "2011": 0.944, + "2012": 0.946, + "2013": 0.953, + "2014": 0.956, + "2015": 0.952, + "2016": 0.956, + "2017": 0.957, + "2018": 0.956, + "2019": 0.96, + "2020": 0.952, + "2021": 0.957 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr127", + "Region": "French Guyana", + "1990": 0.872, + "1991": 0.872, + "1992": 0.872, + "1993": 0.871, + "1994": 0.872, + "1995": 0.873, + "1996": 0.873, + "1997": 0.872, + "1998": 0.872, + "1999": 0.873, + "2000": 0.877, + "2001": 0.878, + "2002": 0.879, + "2003": 0.881, + "2004": 0.881, + "2005": 0.884, + "2006": 0.884, + "2007": 0.885, + "2008": 0.888, + "2009": 0.894, + "2010": 0.9, + "2011": 0.902, + "2012": 0.905, + "2013": 0.924, + "2014": 0.922, + "2015": 0.922, + "2016": 0.92, + "2017": 0.915, + "2018": 0.915, + "2019": 0.914, + "2020": 0.907, + "2021": 0.911 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr125", + "Region": "Guadeloupe", + "1990": 0.924, + "1991": 0.924, + "1992": 0.924, + "1993": 0.923, + "1994": 0.924, + "1995": 0.925, + "1996": 0.925, + "1997": 0.924, + "1998": 0.924, + "1999": 0.925, + "2000": 0.929, + "2001": 0.93, + "2002": 0.932, + "2003": 0.934, + "2004": 0.931, + "2005": 0.931, + "2006": 0.928, + "2007": 0.926, + "2008": 0.926, + "2009": 0.925, + "2010": 0.925, + "2011": 0.924, + "2012": 0.925, + "2013": 0.926, + "2014": 0.925, + "2015": 0.934, + "2016": 0.942, + "2017": 0.943, + "2018": 0.944, + "2019": 0.945, + "2020": 0.937, + "2021": 0.942 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr104", + "Region": "Haute-Normandie", + "1990": 0.861, + "1991": 0.865, + "1992": 0.863, + "1993": 0.865, + "1994": 0.876, + "1995": 0.873, + "1996": 0.873, + "1997": 0.88, + "1998": 0.883, + "1999": 0.889, + "2000": 0.895, + "2001": 0.897, + "2002": 0.898, + "2003": 0.901, + "2004": 0.914, + "2005": 0.914, + "2006": 0.916, + "2007": 0.92, + "2008": 0.92, + "2009": 0.921, + "2010": 0.926, + "2011": 0.931, + "2012": 0.931, + "2013": 0.935, + "2014": 0.939, + "2015": 0.936, + "2016": 0.94, + "2017": 0.942, + "2018": 0.942, + "2019": 0.945, + "2020": 0.937, + "2021": 0.942 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr101", + "Region": "Ile de France", + "1990": 0.881, + "1991": 0.881, + "1992": 0.886, + "1993": 0.887, + "1994": 0.895, + "1995": 0.897, + "1996": 0.9, + "1997": 0.91, + "1998": 0.914, + "1999": 0.917, + "2000": 0.925, + "2001": 0.927, + "2002": 0.932, + "2003": 0.926, + "2004": 0.948, + "2005": 0.948, + "2006": 0.954, + "2007": 0.959, + "2008": 0.961, + "2009": 0.964, + "2010": 0.966, + "2011": 0.971, + "2012": 0.974, + "2013": 0.975, + "2014": 0.983, + "2015": 0.978, + "2016": 0.982, + "2017": 0.983, + "2018": 0.985, + "2019": 0.988, + "2020": 0.98, + "2021": 0.984 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr120", + "Region": "Languedoc-Roussillon", + "1990": 0.878, + "1991": 0.879, + "1992": 0.887, + "1993": 0.885, + "1994": 0.89, + "1995": 0.894, + "1996": 0.893, + "1997": 0.9, + "1998": 0.898, + "1999": 0.897, + "2000": 0.906, + "2001": 0.912, + "2002": 0.916, + "2003": 0.918, + "2004": 0.928, + "2005": 0.929, + "2006": 0.937, + "2007": 0.94, + "2008": 0.941, + "2009": 0.939, + "2010": 0.943, + "2011": 0.948, + "2012": 0.948, + "2013": 0.955, + "2014": 0.96, + "2015": 0.956, + "2016": 0.957, + "2017": 0.961, + "2018": 0.958, + "2019": 0.965, + "2020": 0.957, + "2021": 0.961 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr117", + "Region": "Limousin", + "1990": 0.875, + "1991": 0.878, + "1992": 0.884, + "1993": 0.888, + "1994": 0.89, + "1995": 0.891, + "1996": 0.888, + "1997": 0.896, + "1998": 0.897, + "1999": 0.903, + "2000": 0.909, + "2001": 0.91, + "2002": 0.912, + "2003": 0.917, + "2004": 0.929, + "2005": 0.928, + "2006": 0.936, + "2007": 0.937, + "2008": 0.935, + "2009": 0.938, + "2010": 0.94, + "2011": 0.942, + "2012": 0.948, + "2013": 0.947, + "2014": 0.956, + "2015": 0.945, + "2016": 0.953, + "2017": 0.959, + "2018": 0.955, + "2019": 0.953, + "2020": 0.945, + "2021": 0.949 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr109", + "Region": "Lorraine", + "1990": 0.857, + "1991": 0.859, + "1992": 0.863, + "1993": 0.864, + "1994": 0.87, + "1995": 0.873, + "1996": 0.873, + "1997": 0.881, + "1998": 0.881, + "1999": 0.888, + "2000": 0.889, + "2001": 0.898, + "2002": 0.896, + "2003": 0.898, + "2004": 0.911, + "2005": 0.909, + "2006": 0.916, + "2007": 0.919, + "2008": 0.923, + "2009": 0.925, + "2010": 0.928, + "2011": 0.933, + "2012": 0.934, + "2013": 0.938, + "2014": 0.945, + "2015": 0.942, + "2016": 0.947, + "2017": 0.947, + "2018": 0.947, + "2019": 0.948, + "2020": 0.94, + "2021": 0.945 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr126", + "Region": "Martinique", + "1990": 0.903, + "1991": 0.902, + "1992": 0.902, + "1993": 0.902, + "1994": 0.902, + "1995": 0.904, + "1996": 0.903, + "1997": 0.903, + "1998": 0.903, + "1999": 0.903, + "2000": 0.908, + "2001": 0.907, + "2002": 0.922, + "2003": 0.921, + "2004": 0.934, + "2005": 0.934, + "2006": 0.934, + "2007": 0.926, + "2008": 0.936, + "2009": 0.945, + "2010": 0.945, + "2011": 0.959, + "2012": 0.959, + "2013": 0.949, + "2014": 0.937, + "2015": 0.959, + "2016": 0.948, + "2017": 0.954, + "2018": 0.958, + "2019": 0.95, + "2020": 0.942, + "2021": 0.946 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr129", + "Region": "Mayotte", + "1990": 0.861, + "1991": 0.861, + "1992": 0.861, + "1993": 0.861, + "1994": 0.861, + "1995": 0.862, + "1996": 0.862, + "1997": 0.861, + "1998": 0.862, + "1999": 0.862, + "2000": 0.866, + "2001": 0.867, + "2002": 0.869, + "2003": 0.87, + "2004": 0.868, + "2005": 0.868, + "2006": 0.865, + "2007": 0.864, + "2008": 0.863, + "2009": 0.863, + "2010": 0.862, + "2011": 0.861, + "2012": 0.862, + "2013": 0.863, + "2014": 0.862, + "2015": 0.864, + "2016": 0.858, + "2017": 0.852, + "2018": 0.858, + "2019": 0.855, + "2020": 0.847, + "2021": 0.851 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr116", + "Region": "Midi-Pyrenees", + "1990": 0.887, + "1991": 0.895, + "1992": 0.898, + "1993": 0.899, + "1994": 0.902, + "1995": 0.908, + "1996": 0.909, + "1997": 0.91, + "1998": 0.909, + "1999": 0.915, + "2000": 0.923, + "2001": 0.926, + "2002": 0.926, + "2003": 0.929, + "2004": 0.939, + "2005": 0.939, + "2006": 0.948, + "2007": 0.952, + "2008": 0.953, + "2009": 0.956, + "2010": 0.958, + "2011": 0.965, + "2012": 0.962, + "2013": 0.969, + "2014": 0.972, + "2015": 0.969, + "2016": 0.973, + "2017": 0.97, + "2018": 0.975, + "2019": 0.976, + "2020": 0.968, + "2021": 0.972 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr108", + "Region": "Nord", + "1990": 0.832, + "1991": 0.835, + "1992": 0.84, + "1993": 0.838, + "1994": 0.847, + "1995": 0.848, + "1996": 0.851, + "1997": 0.855, + "1998": 0.857, + "1999": 0.86, + "2000": 0.869, + "2001": 0.875, + "2002": 0.875, + "2003": 0.878, + "2004": 0.892, + "2005": 0.889, + "2006": 0.891, + "2007": 0.896, + "2008": 0.895, + "2009": 0.899, + "2010": 0.905, + "2011": 0.908, + "2012": 0.908, + "2013": 0.914, + "2014": 0.925, + "2015": 0.922, + "2016": 0.925, + "2017": 0.928, + "2018": 0.927, + "2019": 0.933, + "2020": 0.925, + "2021": 0.929 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr112", + "Region": "Pays de la Loire", + "1990": 0.878, + "1991": 0.885, + "1992": 0.889, + "1993": 0.891, + "1994": 0.898, + "1995": 0.894, + "1996": 0.899, + "1997": 0.9, + "1998": 0.906, + "1999": 0.909, + "2000": 0.915, + "2001": 0.918, + "2002": 0.921, + "2003": 0.92, + "2004": 0.932, + "2005": 0.937, + "2006": 0.942, + "2007": 0.943, + "2008": 0.946, + "2009": 0.948, + "2010": 0.954, + "2011": 0.96, + "2012": 0.956, + "2013": 0.961, + "2014": 0.969, + "2015": 0.96, + "2016": 0.965, + "2017": 0.965, + "2018": 0.968, + "2019": 0.97, + "2020": 0.962, + "2021": 0.966 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr103", + "Region": "Picardie", + "1990": 0.848, + "1991": 0.849, + "1992": 0.855, + "1993": 0.855, + "1994": 0.864, + "1995": 0.864, + "1996": 0.868, + "1997": 0.867, + "1998": 0.875, + "1999": 0.874, + "2000": 0.885, + "2001": 0.883, + "2002": 0.887, + "2003": 0.89, + "2004": 0.905, + "2005": 0.905, + "2006": 0.91, + "2007": 0.907, + "2008": 0.906, + "2009": 0.91, + "2010": 0.917, + "2011": 0.919, + "2012": 0.919, + "2013": 0.926, + "2014": 0.933, + "2015": 0.928, + "2016": 0.933, + "2017": 0.934, + "2018": 0.936, + "2019": 0.939, + "2020": 0.931, + "2021": 0.935 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr114", + "Region": "Poitou-Charentes", + "1990": 0.887, + "1991": 0.888, + "1992": 0.892, + "1993": 0.896, + "1994": 0.896, + "1995": 0.9, + "1996": 0.899, + "1997": 0.906, + "1998": 0.904, + "1999": 0.908, + "2000": 0.918, + "2001": 0.917, + "2002": 0.921, + "2003": 0.92, + "2004": 0.929, + "2005": 0.931, + "2006": 0.937, + "2007": 0.943, + "2008": 0.944, + "2009": 0.942, + "2010": 0.946, + "2011": 0.95, + "2012": 0.949, + "2013": 0.947, + "2014": 0.963, + "2015": 0.957, + "2016": 0.956, + "2017": 0.959, + "2018": 0.959, + "2019": 0.96, + "2020": 0.952, + "2021": 0.957 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr121", + "Region": "Provence-Alpes-Cote dAzur", + "1990": 0.877, + "1991": 0.878, + "1992": 0.881, + "1993": 0.884, + "1994": 0.888, + "1995": 0.893, + "1996": 0.897, + "1997": 0.904, + "1998": 0.904, + "1999": 0.906, + "2000": 0.917, + "2001": 0.92, + "2002": 0.922, + "2003": 0.923, + "2004": 0.935, + "2005": 0.936, + "2006": 0.943, + "2007": 0.945, + "2008": 0.947, + "2009": 0.95, + "2010": 0.954, + "2011": 0.959, + "2012": 0.957, + "2013": 0.961, + "2014": 0.966, + "2015": 0.96, + "2016": 0.965, + "2017": 0.965, + "2018": 0.97, + "2019": 0.97, + "2020": 0.962, + "2021": 0.966 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr128", + "Region": "Reunion", + "1990": 0.846, + "1991": 0.846, + "1992": 0.846, + "1993": 0.845, + "1994": 0.846, + "1995": 0.847, + "1996": 0.847, + "1997": 0.846, + "1998": 0.846, + "1999": 0.847, + "2000": 0.866, + "2001": 0.877, + "2002": 0.87, + "2003": 0.877, + "2004": 0.892, + "2005": 0.873, + "2006": 0.876, + "2007": 0.897, + "2008": 0.897, + "2009": 0.904, + "2010": 0.905, + "2011": 0.924, + "2012": 0.923, + "2013": 0.929, + "2014": 0.931, + "2015": 0.931, + "2016": 0.931, + "2017": 0.939, + "2018": 0.933, + "2019": 0.937, + "2020": 0.93, + "2021": 0.934 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr118", + "Region": "Rhone-Alpes", + "1990": 0.88, + "1991": 0.884, + "1992": 0.89, + "1993": 0.89, + "1994": 0.896, + "1995": 0.9, + "1996": 0.902, + "1997": 0.909, + "1998": 0.909, + "1999": 0.914, + "2000": 0.922, + "2001": 0.924, + "2002": 0.926, + "2003": 0.929, + "2004": 0.942, + "2005": 0.942, + "2006": 0.953, + "2007": 0.954, + "2008": 0.953, + "2009": 0.956, + "2010": 0.961, + "2011": 0.968, + "2012": 0.965, + "2013": 0.97, + "2014": 0.977, + "2015": 0.972, + "2016": 0.977, + "2017": 0.977, + "2018": 0.981, + "2019": 0.98, + "2020": 0.972, + "2021": 0.977 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "National", + "GDLCODE": "GABt", + "Region": "Total", + "1990": 0.62, + "1991": 0.621, + "1992": 0.624, + "1993": 0.626, + "1994": 0.626, + "1995": 0.626, + "1996": 0.625, + "1997": 0.626, + "1998": 0.628, + "1999": 0.628, + "2000": 0.632, + "2001": 0.635, + "2002": 0.635, + "2003": 0.641, + "2004": 0.644, + "2005": 0.646, + "2006": 0.652, + "2007": 0.656, + "2008": 0.663, + "2009": 0.666, + "2010": 0.675, + "2011": 0.678, + "2012": 0.686, + "2013": 0.689, + "2014": 0.692, + "2015": 0.699, + "2016": 0.705, + "2017": 0.711, + "2018": 0.712, + "2019": 0.717, + "2020": 0.716, + "2021": 0.705 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr101", + "Region": "Estuaire", + "1990": 0.585, + "1991": 0.586, + "1992": 0.589, + "1993": 0.591, + "1994": 0.591, + "1995": 0.591, + "1996": 0.589, + "1997": 0.59, + "1998": 0.592, + "1999": 0.593, + "2000": 0.596, + "2001": 0.6, + "2002": 0.601, + "2003": 0.607, + "2004": 0.61, + "2005": 0.612, + "2006": 0.619, + "2007": 0.623, + "2008": 0.63, + "2009": 0.634, + "2010": 0.643, + "2011": 0.646, + "2012": 0.655, + "2013": 0.658, + "2014": 0.66, + "2015": 0.668, + "2016": 0.673, + "2017": 0.679, + "2018": 0.68, + "2019": 0.685, + "2020": 0.684, + "2021": 0.673 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr102", + "Region": "Haut Ogooue", + "1990": 0.709, + "1991": 0.711, + "1992": 0.713, + "1993": 0.716, + "1994": 0.716, + "1995": 0.716, + "1996": 0.715, + "1997": 0.715, + "1998": 0.718, + "1999": 0.719, + "2000": 0.722, + "2001": 0.718, + "2002": 0.71, + "2003": 0.709, + "2004": 0.704, + "2005": 0.698, + "2006": 0.697, + "2007": 0.694, + "2008": 0.694, + "2009": 0.69, + "2010": 0.692, + "2011": 0.687, + "2012": 0.688, + "2013": 0.691, + "2014": 0.694, + "2015": 0.701, + "2016": 0.707, + "2017": 0.713, + "2018": 0.714, + "2019": 0.719, + "2020": 0.718, + "2021": 0.707 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr110", + "Region": "Libreville-Port Gentil", + "1990": 0.614, + "1991": 0.616, + "1992": 0.618, + "1993": 0.621, + "1994": 0.62, + "1995": 0.62, + "1996": 0.619, + "1997": 0.62, + "1998": 0.622, + "1999": 0.623, + "2000": 0.626, + "2001": 0.631, + "2002": 0.633, + "2003": 0.641, + "2004": 0.645, + "2005": 0.649, + "2006": 0.657, + "2007": 0.663, + "2008": 0.672, + "2009": 0.677, + "2010": 0.688, + "2011": 0.692, + "2012": 0.702, + "2013": 0.705, + "2014": 0.708, + "2015": 0.716, + "2016": 0.721, + "2017": 0.727, + "2018": 0.729, + "2019": 0.734, + "2020": 0.733, + "2021": 0.722 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr103", + "Region": "Moyen Ogooue", + "1990": 0.643, + "1991": 0.645, + "1992": 0.647, + "1993": 0.65, + "1994": 0.649, + "1995": 0.649, + "1996": 0.648, + "1997": 0.649, + "1998": 0.651, + "1999": 0.652, + "2000": 0.655, + "2001": 0.662, + "2002": 0.665, + "2003": 0.674, + "2004": 0.68, + "2005": 0.685, + "2006": 0.694, + "2007": 0.701, + "2008": 0.711, + "2009": 0.718, + "2010": 0.73, + "2011": 0.736, + "2012": 0.747, + "2013": 0.751, + "2014": 0.754, + "2015": 0.762, + "2016": 0.767, + "2017": 0.774, + "2018": 0.775, + "2019": 0.78, + "2020": 0.779, + "2021": 0.768 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr104", + "Region": "Ngounie", + "1990": 0.638, + "1991": 0.639, + "1992": 0.641, + "1993": 0.644, + "1994": 0.644, + "1995": 0.644, + "1996": 0.642, + "1997": 0.643, + "1998": 0.645, + "1999": 0.646, + "2000": 0.649, + "2001": 0.648, + "2002": 0.645, + "2003": 0.646, + "2004": 0.645, + "2005": 0.643, + "2006": 0.645, + "2007": 0.645, + "2008": 0.648, + "2009": 0.647, + "2010": 0.652, + "2011": 0.651, + "2012": 0.655, + "2013": 0.658, + "2014": 0.661, + "2015": 0.668, + "2016": 0.673, + "2017": 0.679, + "2018": 0.681, + "2019": 0.685, + "2020": 0.684, + "2021": 0.673 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr105", + "Region": "Nyanga", + "1990": 0.606, + "1991": 0.608, + "1992": 0.61, + "1993": 0.613, + "1994": 0.612, + "1995": 0.612, + "1996": 0.611, + "1997": 0.612, + "1998": 0.614, + "1999": 0.615, + "2000": 0.618, + "2001": 0.623, + "2002": 0.625, + "2003": 0.633, + "2004": 0.637, + "2005": 0.641, + "2006": 0.649, + "2007": 0.654, + "2008": 0.663, + "2009": 0.668, + "2010": 0.679, + "2011": 0.683, + "2012": 0.693, + "2013": 0.696, + "2014": 0.699, + "2015": 0.707, + "2016": 0.712, + "2017": 0.718, + "2018": 0.72, + "2019": 0.725, + "2020": 0.724, + "2021": 0.713 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr106", + "Region": "Ogooue Ivindo", + "1990": 0.63, + "1991": 0.631, + "1992": 0.633, + "1993": 0.636, + "1994": 0.636, + "1995": 0.636, + "1996": 0.634, + "1997": 0.635, + "1998": 0.637, + "1999": 0.638, + "2000": 0.641, + "2001": 0.636, + "2002": 0.628, + "2003": 0.626, + "2004": 0.621, + "2005": 0.614, + "2006": 0.613, + "2007": 0.609, + "2008": 0.608, + "2009": 0.603, + "2010": 0.604, + "2011": 0.598, + "2012": 0.598, + "2013": 0.601, + "2014": 0.604, + "2015": 0.611, + "2016": 0.615, + "2017": 0.621, + "2018": 0.622, + "2019": 0.627, + "2020": 0.626, + "2021": 0.616 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr107", + "Region": "Ogooue Lolo", + "1990": 0.689, + "1991": 0.691, + "1992": 0.693, + "1993": 0.696, + "1994": 0.696, + "1995": 0.696, + "1996": 0.694, + "1997": 0.695, + "1998": 0.697, + "1999": 0.698, + "2000": 0.702, + "2001": 0.701, + "2002": 0.696, + "2003": 0.698, + "2004": 0.696, + "2005": 0.693, + "2006": 0.695, + "2007": 0.694, + "2008": 0.697, + "2009": 0.696, + "2010": 0.701, + "2011": 0.699, + "2012": 0.703, + "2013": 0.706, + "2014": 0.709, + "2015": 0.717, + "2016": 0.722, + "2017": 0.728, + "2018": 0.73, + "2019": 0.735, + "2020": 0.734, + "2021": 0.723 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr108", + "Region": "Ogooue Maritime", + "1990": 0.668, + "1991": 0.669, + "1992": 0.672, + "1993": 0.674, + "1994": 0.674, + "1995": 0.674, + "1996": 0.673, + "1997": 0.673, + "1998": 0.675, + "1999": 0.676, + "2000": 0.68, + "2001": 0.68, + "2002": 0.678, + "2003": 0.681, + "2004": 0.681, + "2005": 0.681, + "2006": 0.685, + "2007": 0.686, + "2008": 0.691, + "2009": 0.692, + "2010": 0.698, + "2011": 0.698, + "2012": 0.704, + "2013": 0.707, + "2014": 0.71, + "2015": 0.718, + "2016": 0.723, + "2017": 0.729, + "2018": 0.731, + "2019": 0.736, + "2020": 0.735, + "2021": 0.724 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr109", + "Region": "Woleu Ntem", + "1990": 0.525, + "1991": 0.526, + "1992": 0.528, + "1993": 0.531, + "1994": 0.531, + "1995": 0.531, + "1996": 0.529, + "1997": 0.53, + "1998": 0.532, + "1999": 0.533, + "2000": 0.536, + "2001": 0.545, + "2002": 0.552, + "2003": 0.563, + "2004": 0.572, + "2005": 0.58, + "2006": 0.592, + "2007": 0.602, + "2008": 0.615, + "2009": 0.625, + "2010": 0.639, + "2011": 0.648, + "2012": 0.662, + "2013": 0.665, + "2014": 0.668, + "2015": 0.675, + "2016": 0.68, + "2017": 0.686, + "2018": 0.688, + "2019": 0.692, + "2020": 0.691, + "2021": 0.68 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "National", + "GDLCODE": "GMBt", + "Region": "Total", + "1990": 0.482, + "1991": 0.494, + "1992": 0.507, + "1993": 0.519, + "1994": 0.534, + "1995": 0.546, + "1996": 0.554, + "1997": 0.555, + "1998": 0.562, + "1999": 0.566, + "2000": 0.568, + "2001": 0.57, + "2002": 0.57, + "2003": 0.578, + "2004": 0.586, + "2005": 0.591, + "2006": 0.601, + "2007": 0.606, + "2008": 0.617, + "2009": 0.622, + "2010": 0.626, + "2011": 0.639, + "2012": 0.648, + "2013": 0.648, + "2014": 0.65, + "2015": 0.654, + "2016": 0.662, + "2017": 0.661, + "2018": 0.662, + "2019": 0.673, + "2020": 0.656, + "2021": 0.647 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr101", + "Region": "Banjul", + "1990": 0.601, + "1991": 0.616, + "1992": 0.63, + "1993": 0.644, + "1994": 0.662, + "1995": 0.675, + "1996": 0.684, + "1997": 0.685, + "1998": 0.694, + "1999": 0.699, + "2000": 0.701, + "2001": 0.682, + "2002": 0.663, + "2003": 0.651, + "2004": 0.64, + "2005": 0.625, + "2006": 0.617, + "2007": 0.621, + "2008": 0.632, + "2009": 0.637, + "2010": 0.641, + "2011": 0.653, + "2012": 0.661, + "2013": 0.661, + "2014": 0.665, + "2015": 0.669, + "2016": 0.678, + "2017": 0.679, + "2018": 0.68, + "2019": 0.683, + "2020": 0.657, + "2021": 0.649 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr108", + "Region": "Basse", + "1990": 0.419, + "1991": 0.431, + "1992": 0.442, + "1993": 0.454, + "1994": 0.468, + "1995": 0.478, + "1996": 0.486, + "1997": 0.487, + "1998": 0.494, + "1999": 0.497, + "2000": 0.499, + "2001": 0.5, + "2002": 0.5, + "2003": 0.507, + "2004": 0.514, + "2005": 0.518, + "2006": 0.527, + "2007": 0.534, + "2008": 0.547, + "2009": 0.554, + "2010": 0.561, + "2011": 0.574, + "2012": 0.585, + "2013": 0.587, + "2014": 0.601, + "2015": 0.616, + "2016": 0.636, + "2017": 0.647, + "2018": 0.66, + "2019": 0.677, + "2020": 0.666, + "2021": 0.658 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr103", + "Region": "Brikama", + "1990": 0.516, + "1991": 0.529, + "1992": 0.542, + "1993": 0.555, + "1994": 0.571, + "1995": 0.583, + "1996": 0.592, + "1997": 0.592, + "1998": 0.6, + "1999": 0.604, + "2000": 0.606, + "2001": 0.611, + "2002": 0.614, + "2003": 0.625, + "2004": 0.635, + "2005": 0.643, + "2006": 0.656, + "2007": 0.653, + "2008": 0.655, + "2009": 0.653, + "2010": 0.65, + "2011": 0.655, + "2012": 0.656, + "2013": 0.649, + "2014": 0.652, + "2015": 0.656, + "2016": 0.665, + "2017": 0.665, + "2018": 0.667, + "2019": 0.68, + "2020": 0.664, + "2021": 0.655 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr107", + "Region": "Janjabureh", + "1990": 0.466, + "1991": 0.478, + "1992": 0.49, + "1993": 0.503, + "1994": 0.517, + "1995": 0.529, + "1996": 0.537, + "1997": 0.538, + "1998": 0.545, + "1999": 0.549, + "2000": 0.551, + "2001": 0.547, + "2002": 0.543, + "2003": 0.546, + "2004": 0.548, + "2005": 0.548, + "2006": 0.553, + "2007": 0.574, + "2008": 0.6, + "2009": 0.62, + "2010": 0.639, + "2011": 0.665, + "2012": 0.688, + "2013": 0.701, + "2014": 0.687, + "2015": 0.674, + "2016": 0.665, + "2017": 0.648, + "2018": 0.632, + "2019": 0.651, + "2020": 0.642, + "2021": 0.634 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr102", + "Region": "Kanifing", + "1990": 0.544, + "1991": 0.558, + "1992": 0.571, + "1993": 0.585, + "1994": 0.601, + "1995": 0.613, + "1996": 0.622, + "1997": 0.623, + "1998": 0.631, + "1999": 0.636, + "2000": 0.638, + "2001": 0.639, + "2002": 0.64, + "2003": 0.648, + "2004": 0.656, + "2005": 0.661, + "2006": 0.672, + "2007": 0.669, + "2008": 0.673, + "2009": 0.671, + "2010": 0.669, + "2011": 0.675, + "2012": 0.677, + "2013": 0.671, + "2014": 0.675, + "2015": 0.68, + "2016": 0.69, + "2017": 0.692, + "2018": 0.694, + "2019": 0.692, + "2020": 0.66, + "2021": 0.652 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr105", + "Region": "Kerewan", + "1990": 0.502, + "1991": 0.515, + "1992": 0.527, + "1993": 0.54, + "1994": 0.555, + "1995": 0.567, + "1996": 0.576, + "1997": 0.577, + "1998": 0.584, + "1999": 0.588, + "2000": 0.59, + "2001": 0.59, + "2002": 0.588, + "2003": 0.593, + "2004": 0.598, + "2005": 0.601, + "2006": 0.609, + "2007": 0.616, + "2008": 0.628, + "2009": 0.635, + "2010": 0.641, + "2011": 0.656, + "2012": 0.666, + "2013": 0.668, + "2014": 0.669, + "2015": 0.672, + "2016": 0.678, + "2017": 0.677, + "2018": 0.677, + "2019": 0.679, + "2020": 0.652, + "2021": 0.644 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr106", + "Region": "Kuntaur", + "1990": 0.434, + "1991": 0.446, + "1992": 0.457, + "1993": 0.469, + "1994": 0.483, + "1995": 0.494, + "1996": 0.502, + "1997": 0.502, + "1998": 0.51, + "1999": 0.513, + "2000": 0.515, + "2001": 0.512, + "2002": 0.509, + "2003": 0.512, + "2004": 0.515, + "2005": 0.515, + "2006": 0.521, + "2007": 0.536, + "2008": 0.556, + "2009": 0.57, + "2010": 0.584, + "2011": 0.605, + "2012": 0.622, + "2013": 0.631, + "2014": 0.625, + "2015": 0.62, + "2016": 0.619, + "2017": 0.611, + "2018": 0.603, + "2019": 0.624, + "2020": 0.618, + "2021": 0.61 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr104", + "Region": "Mansakonko", + "1990": 0.485, + "1991": 0.498, + "1992": 0.51, + "1993": 0.523, + "1994": 0.538, + "1995": 0.549, + "1996": 0.557, + "1997": 0.558, + "1998": 0.566, + "1999": 0.57, + "2000": 0.572, + "2001": 0.567, + "2002": 0.561, + "2003": 0.563, + "2004": 0.564, + "2005": 0.563, + "2006": 0.566, + "2007": 0.576, + "2008": 0.592, + "2009": 0.602, + "2010": 0.611, + "2011": 0.627, + "2012": 0.64, + "2013": 0.645, + "2014": 0.643, + "2015": 0.642, + "2016": 0.645, + "2017": 0.64, + "2018": 0.636, + "2019": 0.641, + "2020": 0.618, + "2021": 0.61 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "National", + "GDLCODE": "GEOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.763, + "2001": 0.763, + "2002": 0.77, + "2003": 0.774, + "2004": 0.778, + "2005": 0.787, + "2006": 0.791, + "2007": 0.793, + "2008": 0.79, + "2009": 0.799, + "2010": 0.802, + "2011": 0.806, + "2012": 0.806, + "2013": 0.81, + "2014": 0.817, + "2015": 0.82, + "2016": 0.824, + "2017": 0.824, + "2018": 0.821, + "2019": 0.823, + "2020": 0.812, + "2021": 0.795 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr102", + "Region": "Ajaria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.754, + "2001": 0.754, + "2002": 0.761, + "2003": 0.765, + "2004": 0.769, + "2005": 0.777, + "2006": 0.781, + "2007": 0.784, + "2008": 0.78, + "2009": 0.79, + "2010": 0.792, + "2011": 0.796, + "2012": 0.796, + "2013": 0.8, + "2014": 0.807, + "2015": 0.81, + "2016": 0.814, + "2017": 0.814, + "2018": 0.81, + "2019": 0.812, + "2020": 0.801, + "2021": 0.785 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr103", + "Region": "Guria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.843, + "2001": 0.844, + "2002": 0.851, + "2003": 0.856, + "2004": 0.859, + "2005": 0.869, + "2006": 0.865, + "2007": 0.86, + "2008": 0.849, + "2009": 0.851, + "2010": 0.846, + "2011": 0.843, + "2012": 0.836, + "2013": 0.832, + "2014": 0.832, + "2015": 0.827, + "2016": 0.824, + "2017": 0.817, + "2018": 0.806, + "2019": 0.808, + "2020": 0.797, + "2021": 0.781 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr104", + "Region": "Imereti Racha-Lochkhumi Kvemo Svaneti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.743, + "2001": 0.743, + "2002": 0.749, + "2003": 0.754, + "2004": 0.758, + "2005": 0.766, + "2006": 0.773, + "2007": 0.778, + "2008": 0.777, + "2009": 0.789, + "2010": 0.794, + "2011": 0.801, + "2012": 0.804, + "2013": 0.81, + "2014": 0.819, + "2015": 0.825, + "2016": 0.832, + "2017": 0.834, + "2018": 0.833, + "2019": 0.835, + "2020": 0.824, + "2021": 0.807 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr105", + "Region": "Kakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.811, + "2001": 0.812, + "2002": 0.818, + "2003": 0.823, + "2004": 0.827, + "2005": 0.836, + "2006": 0.834, + "2007": 0.829, + "2008": 0.819, + "2009": 0.822, + "2010": 0.818, + "2011": 0.815, + "2012": 0.809, + "2013": 0.806, + "2014": 0.806, + "2015": 0.803, + "2016": 0.801, + "2017": 0.794, + "2018": 0.784, + "2019": 0.786, + "2020": 0.776, + "2021": 0.76 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr106", + "Region": "Kvemo Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.724, + "2001": 0.724, + "2002": 0.73, + "2003": 0.735, + "2004": 0.738, + "2005": 0.747, + "2006": 0.755, + "2007": 0.762, + "2008": 0.762, + "2009": 0.776, + "2010": 0.783, + "2011": 0.791, + "2012": 0.795, + "2013": 0.803, + "2014": 0.814, + "2015": 0.821, + "2016": 0.829, + "2017": 0.833, + "2018": 0.834, + "2019": 0.836, + "2020": 0.825, + "2021": 0.808 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr107", + "Region": "Mtskheta-Mtianeti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.703, + "2001": 0.704, + "2002": 0.71, + "2003": 0.714, + "2004": 0.718, + "2005": 0.726, + "2006": 0.725, + "2007": 0.723, + "2008": 0.715, + "2009": 0.719, + "2010": 0.717, + "2011": 0.716, + "2012": 0.712, + "2013": 0.711, + "2014": 0.713, + "2015": 0.711, + "2016": 0.711, + "2017": 0.706, + "2018": 0.699, + "2019": 0.7, + "2020": 0.691, + "2021": 0.676 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr108", + "Region": "Samegrelo-Zemo Svateni", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.775, + "2001": 0.775, + "2002": 0.782, + "2003": 0.786, + "2004": 0.79, + "2005": 0.799, + "2006": 0.801, + "2007": 0.801, + "2008": 0.795, + "2009": 0.803, + "2010": 0.803, + "2011": 0.805, + "2012": 0.803, + "2013": 0.805, + "2014": 0.81, + "2015": 0.811, + "2016": 0.813, + "2017": 0.811, + "2018": 0.805, + "2019": 0.807, + "2020": 0.796, + "2021": 0.78 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr109", + "Region": "Samtskhe-Javakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.733, + "2001": 0.734, + "2002": 0.74, + "2003": 0.744, + "2004": 0.748, + "2005": 0.756, + "2006": 0.764, + "2007": 0.769, + "2008": 0.769, + "2009": 0.782, + "2010": 0.787, + "2011": 0.795, + "2012": 0.798, + "2013": 0.804, + "2014": 0.815, + "2015": 0.821, + "2016": 0.828, + "2017": 0.831, + "2018": 0.831, + "2019": 0.833, + "2020": 0.822, + "2021": 0.805 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr110", + "Region": "Shida Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.758, + "2001": 0.759, + "2002": 0.765, + "2003": 0.77, + "2004": 0.773, + "2005": 0.782, + "2006": 0.788, + "2007": 0.792, + "2008": 0.79, + "2009": 0.802, + "2010": 0.806, + "2011": 0.812, + "2012": 0.814, + "2013": 0.819, + "2014": 0.828, + "2015": 0.833, + "2016": 0.839, + "2017": 0.84, + "2018": 0.838, + "2019": 0.84, + "2020": 0.829, + "2021": 0.813 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr111", + "Region": "Tbilisi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.8, + "2001": 0.8, + "2002": 0.807, + "2003": 0.812, + "2004": 0.815, + "2005": 0.824, + "2006": 0.823, + "2007": 0.821, + "2008": 0.812, + "2009": 0.817, + "2010": 0.815, + "2011": 0.814, + "2012": 0.809, + "2013": 0.808, + "2014": 0.81, + "2015": 0.808, + "2016": 0.808, + "2017": 0.803, + "2018": 0.795, + "2019": 0.797, + "2020": 0.786, + "2021": 0.77 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "National", + "GDLCODE": "DEUt", + "Region": "Total", + "1990": 0.852, + "1991": 0.855, + "1992": 0.862, + "1993": 0.863, + "1994": 0.868, + "1995": 0.87, + "1996": 0.874, + "1997": 0.88, + "1998": 0.886, + "1999": 0.889, + "2000": 0.893, + "2001": 0.899, + "2002": 0.9, + "2003": 0.901, + "2004": 0.91, + "2005": 0.912, + "2006": 0.917, + "2007": 0.919, + "2008": 0.92, + "2009": 0.922, + "2010": 0.924, + "2011": 0.929, + "2012": 0.931, + "2013": 0.93, + "2014": 0.937, + "2015": 0.932, + "2016": 0.936, + "2017": 0.938, + "2018": 0.941, + "2019": 0.947, + "2020": 0.941, + "2021": 0.933 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr101", + "Region": "Baden-Wurttemberg", + "1990": 0.869, + "1991": 0.873, + "1992": 0.88, + "1993": 0.881, + "1994": 0.885, + "1995": 0.888, + "1996": 0.892, + "1997": 0.898, + "1998": 0.904, + "1999": 0.908, + "2000": 0.912, + "2001": 0.917, + "2002": 0.918, + "2003": 0.918, + "2004": 0.929, + "2005": 0.931, + "2006": 0.937, + "2007": 0.939, + "2008": 0.939, + "2009": 0.941, + "2010": 0.943, + "2011": 0.946, + "2012": 0.947, + "2013": 0.949, + "2014": 0.954, + "2015": 0.948, + "2016": 0.95, + "2017": 0.953, + "2018": 0.959, + "2019": 0.961, + "2020": 0.955, + "2021": 0.947 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr102", + "Region": "Bayern", + "1990": 0.857, + "1991": 0.861, + "1992": 0.868, + "1993": 0.869, + "1994": 0.873, + "1995": 0.876, + "1996": 0.88, + "1997": 0.886, + "1998": 0.892, + "1999": 0.895, + "2000": 0.899, + "2001": 0.905, + "2002": 0.906, + "2003": 0.907, + "2004": 0.917, + "2005": 0.918, + "2006": 0.921, + "2007": 0.924, + "2008": 0.927, + "2009": 0.928, + "2010": 0.931, + "2011": 0.936, + "2012": 0.938, + "2013": 0.94, + "2014": 0.946, + "2015": 0.94, + "2016": 0.946, + "2017": 0.947, + "2018": 0.953, + "2019": 0.957, + "2020": 0.951, + "2021": 0.943 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr103", + "Region": "Berlin", + "1990": 0.846, + "1991": 0.85, + "1992": 0.856, + "1993": 0.858, + "1994": 0.862, + "1995": 0.865, + "1996": 0.868, + "1997": 0.875, + "1998": 0.88, + "1999": 0.884, + "2000": 0.888, + "2001": 0.893, + "2002": 0.894, + "2003": 0.899, + "2004": 0.908, + "2005": 0.907, + "2006": 0.912, + "2007": 0.92, + "2008": 0.917, + "2009": 0.921, + "2010": 0.922, + "2011": 0.924, + "2012": 0.928, + "2013": 0.928, + "2014": 0.933, + "2015": 0.928, + "2016": 0.933, + "2017": 0.939, + "2018": 0.938, + "2019": 0.949, + "2020": 0.943, + "2021": 0.935 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr104", + "Region": "Brandenburg", + "1990": 0.837, + "1991": 0.841, + "1992": 0.847, + "1993": 0.849, + "1994": 0.853, + "1995": 0.856, + "1996": 0.859, + "1997": 0.866, + "1998": 0.871, + "1999": 0.875, + "2000": 0.879, + "2001": 0.884, + "2002": 0.885, + "2003": 0.886, + "2004": 0.894, + "2005": 0.9, + "2006": 0.903, + "2007": 0.905, + "2008": 0.911, + "2009": 0.912, + "2010": 0.913, + "2011": 0.92, + "2012": 0.924, + "2013": 0.92, + "2014": 0.93, + "2015": 0.925, + "2016": 0.93, + "2017": 0.931, + "2018": 0.936, + "2019": 0.944, + "2020": 0.938, + "2021": 0.93 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr105", + "Region": "Bremen", + "1990": 0.842, + "1991": 0.845, + "1992": 0.852, + "1993": 0.853, + "1994": 0.858, + "1995": 0.86, + "1996": 0.864, + "1997": 0.87, + "1998": 0.876, + "1999": 0.879, + "2000": 0.883, + "2001": 0.888, + "2002": 0.89, + "2003": 0.893, + "2004": 0.902, + "2005": 0.903, + "2006": 0.91, + "2007": 0.908, + "2008": 0.911, + "2009": 0.907, + "2010": 0.915, + "2011": 0.915, + "2012": 0.918, + "2013": 0.912, + "2014": 0.92, + "2015": 0.917, + "2016": 0.921, + "2017": 0.922, + "2018": 0.921, + "2019": 0.937, + "2020": 0.93, + "2021": 0.923 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr106", + "Region": "Hamburg", + "1990": 0.852, + "1991": 0.856, + "1992": 0.862, + "1993": 0.864, + "1994": 0.868, + "1995": 0.871, + "1996": 0.874, + "1997": 0.881, + "1998": 0.886, + "1999": 0.89, + "2000": 0.894, + "2001": 0.899, + "2002": 0.9, + "2003": 0.906, + "2004": 0.909, + "2005": 0.913, + "2006": 0.919, + "2007": 0.921, + "2008": 0.926, + "2009": 0.924, + "2010": 0.928, + "2011": 0.926, + "2012": 0.931, + "2013": 0.931, + "2014": 0.937, + "2015": 0.934, + "2016": 0.938, + "2017": 0.938, + "2018": 0.942, + "2019": 0.949, + "2020": 0.943, + "2021": 0.935 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr107", + "Region": "Hessen", + "1990": 0.858, + "1991": 0.861, + "1992": 0.868, + "1993": 0.869, + "1994": 0.874, + "1995": 0.876, + "1996": 0.88, + "1997": 0.887, + "1998": 0.892, + "1999": 0.896, + "2000": 0.9, + "2001": 0.905, + "2002": 0.906, + "2003": 0.906, + "2004": 0.915, + "2005": 0.92, + "2006": 0.926, + "2007": 0.925, + "2008": 0.928, + "2009": 0.93, + "2010": 0.935, + "2011": 0.935, + "2012": 0.937, + "2013": 0.935, + "2014": 0.944, + "2015": 0.936, + "2016": 0.944, + "2017": 0.943, + "2018": 0.948, + "2019": 0.953, + "2020": 0.947, + "2021": 0.939 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr108", + "Region": "Mecklenburg-Vorpommern", + "1990": 0.83, + "1991": 0.833, + "1992": 0.84, + "1993": 0.841, + "1994": 0.846, + "1995": 0.848, + "1996": 0.852, + "1997": 0.858, + "1998": 0.864, + "1999": 0.867, + "2000": 0.871, + "2001": 0.876, + "2002": 0.877, + "2003": 0.88, + "2004": 0.888, + "2005": 0.892, + "2006": 0.896, + "2007": 0.9, + "2008": 0.901, + "2009": 0.903, + "2010": 0.904, + "2011": 0.91, + "2012": 0.915, + "2013": 0.912, + "2014": 0.925, + "2015": 0.919, + "2016": 0.921, + "2017": 0.927, + "2018": 0.924, + "2019": 0.931, + "2020": 0.924, + "2021": 0.916 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr109", + "Region": "Niedersachsen", + "1990": 0.849, + "1991": 0.852, + "1992": 0.859, + "1993": 0.86, + "1994": 0.865, + "1995": 0.868, + "1996": 0.871, + "1997": 0.878, + "1998": 0.883, + "1999": 0.887, + "2000": 0.891, + "2001": 0.896, + "2002": 0.897, + "2003": 0.897, + "2004": 0.907, + "2005": 0.908, + "2006": 0.913, + "2007": 0.916, + "2008": 0.915, + "2009": 0.917, + "2010": 0.92, + "2011": 0.923, + "2012": 0.926, + "2013": 0.923, + "2014": 0.93, + "2015": 0.927, + "2016": 0.928, + "2017": 0.93, + "2018": 0.933, + "2019": 0.94, + "2020": 0.933, + "2021": 0.925 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr110", + "Region": "Nordrhein-Westfalen", + "1990": 0.848, + "1991": 0.851, + "1992": 0.858, + "1993": 0.859, + "1994": 0.863, + "1995": 0.866, + "1996": 0.87, + "1997": 0.876, + "1998": 0.882, + "1999": 0.885, + "2000": 0.889, + "2001": 0.894, + "2002": 0.896, + "2003": 0.896, + "2004": 0.903, + "2005": 0.905, + "2006": 0.91, + "2007": 0.912, + "2008": 0.914, + "2009": 0.916, + "2010": 0.917, + "2011": 0.924, + "2012": 0.925, + "2013": 0.924, + "2014": 0.931, + "2015": 0.926, + "2016": 0.93, + "2017": 0.932, + "2018": 0.934, + "2019": 0.94, + "2020": 0.934, + "2021": 0.926 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr111", + "Region": "Rheinland-Pfalz", + "1990": 0.851, + "1991": 0.854, + "1992": 0.861, + "1993": 0.862, + "1994": 0.867, + "1995": 0.869, + "1996": 0.873, + "1997": 0.88, + "1998": 0.885, + "1999": 0.888, + "2000": 0.892, + "2001": 0.898, + "2002": 0.899, + "2003": 0.898, + "2004": 0.909, + "2005": 0.908, + "2006": 0.915, + "2007": 0.918, + "2008": 0.92, + "2009": 0.919, + "2010": 0.925, + "2011": 0.928, + "2012": 0.93, + "2013": 0.93, + "2014": 0.937, + "2015": 0.932, + "2016": 0.937, + "2017": 0.935, + "2018": 0.939, + "2019": 0.945, + "2020": 0.939, + "2021": 0.931 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr112", + "Region": "Saarland", + "1990": 0.837, + "1991": 0.841, + "1992": 0.847, + "1993": 0.849, + "1994": 0.853, + "1995": 0.856, + "1996": 0.859, + "1997": 0.866, + "1998": 0.871, + "1999": 0.875, + "2000": 0.879, + "2001": 0.884, + "2002": 0.885, + "2003": 0.878, + "2004": 0.894, + "2005": 0.895, + "2006": 0.896, + "2007": 0.9, + "2008": 0.901, + "2009": 0.906, + "2010": 0.91, + "2011": 0.913, + "2012": 0.92, + "2013": 0.914, + "2014": 0.922, + "2015": 0.916, + "2016": 0.923, + "2017": 0.924, + "2018": 0.921, + "2019": 0.929, + "2020": 0.923, + "2021": 0.915 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr113", + "Region": "Sachsen", + "1990": 0.854, + "1991": 0.857, + "1992": 0.864, + "1993": 0.865, + "1994": 0.87, + "1995": 0.872, + "1996": 0.876, + "1997": 0.882, + "1998": 0.888, + "1999": 0.891, + "2000": 0.895, + "2001": 0.901, + "2002": 0.902, + "2003": 0.903, + "2004": 0.914, + "2005": 0.915, + "2006": 0.923, + "2007": 0.923, + "2008": 0.927, + "2009": 0.926, + "2010": 0.925, + "2011": 0.929, + "2012": 0.931, + "2013": 0.927, + "2014": 0.937, + "2015": 0.931, + "2016": 0.937, + "2017": 0.939, + "2018": 0.94, + "2019": 0.946, + "2020": 0.939, + "2021": 0.931 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr114", + "Region": "Sachsen-Anhalt", + "1990": 0.827, + "1991": 0.83, + "1992": 0.837, + "1993": 0.838, + "1994": 0.843, + "1995": 0.845, + "1996": 0.849, + "1997": 0.855, + "1998": 0.861, + "1999": 0.864, + "2000": 0.868, + "2001": 0.873, + "2002": 0.874, + "2003": 0.881, + "2004": 0.886, + "2005": 0.889, + "2006": 0.895, + "2007": 0.898, + "2008": 0.897, + "2009": 0.898, + "2010": 0.901, + "2011": 0.907, + "2012": 0.911, + "2013": 0.909, + "2014": 0.916, + "2015": 0.908, + "2016": 0.917, + "2017": 0.911, + "2018": 0.916, + "2019": 0.926, + "2020": 0.92, + "2021": 0.912 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr115", + "Region": "Schleswig-Holstein", + "1990": 0.852, + "1991": 0.856, + "1992": 0.862, + "1993": 0.864, + "1994": 0.868, + "1995": 0.871, + "1996": 0.874, + "1997": 0.881, + "1998": 0.886, + "1999": 0.89, + "2000": 0.894, + "2001": 0.899, + "2002": 0.9, + "2003": 0.899, + "2004": 0.905, + "2005": 0.91, + "2006": 0.915, + "2007": 0.915, + "2008": 0.915, + "2009": 0.918, + "2010": 0.919, + "2011": 0.924, + "2012": 0.926, + "2013": 0.925, + "2014": 0.931, + "2015": 0.928, + "2016": 0.929, + "2017": 0.931, + "2018": 0.932, + "2019": 0.94, + "2020": 0.934, + "2021": 0.926 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr116", + "Region": "Thuringen", + "1990": 0.839, + "1991": 0.842, + "1992": 0.849, + "1993": 0.85, + "1994": 0.855, + "1995": 0.857, + "1996": 0.861, + "1997": 0.867, + "1998": 0.873, + "1999": 0.876, + "2000": 0.88, + "2001": 0.885, + "2002": 0.886, + "2003": 0.889, + "2004": 0.895, + "2005": 0.901, + "2006": 0.903, + "2007": 0.906, + "2008": 0.907, + "2009": 0.909, + "2010": 0.915, + "2011": 0.918, + "2012": 0.92, + "2013": 0.925, + "2014": 0.928, + "2015": 0.921, + "2016": 0.926, + "2017": 0.925, + "2018": 0.93, + "2019": 0.937, + "2020": 0.93, + "2021": 0.923 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "National", + "GDLCODE": "GHAt", + "Region": "Total", + "1990": 0.548, + "1991": 0.554, + "1992": 0.557, + "1993": 0.56, + "1994": 0.556, + "1995": 0.563, + "1996": 0.566, + "1997": 0.572, + "1998": 0.578, + "1999": 0.585, + "2000": 0.588, + "2001": 0.586, + "2002": 0.594, + "2003": 0.602, + "2004": 0.603, + "2005": 0.612, + "2006": 0.615, + "2007": 0.619, + "2008": 0.623, + "2009": 0.63, + "2010": 0.633, + "2011": 0.641, + "2012": 0.647, + "2013": 0.653, + "2014": 0.662, + "2015": 0.664, + "2016": 0.675, + "2017": 0.677, + "2018": 0.679, + "2019": 0.688, + "2020": 0.679, + "2021": 0.674 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr106", + "Region": "Ashanti", + "1990": 0.606, + "1991": 0.612, + "1992": 0.616, + "1993": 0.619, + "1994": 0.614, + "1995": 0.622, + "1996": 0.626, + "1997": 0.632, + "1998": 0.639, + "1999": 0.631, + "2000": 0.619, + "2001": 0.603, + "2002": 0.597, + "2003": 0.59, + "2004": 0.593, + "2005": 0.604, + "2006": 0.61, + "2007": 0.621, + "2008": 0.632, + "2009": 0.641, + "2010": 0.647, + "2011": 0.657, + "2012": 0.652, + "2013": 0.645, + "2014": 0.642, + "2015": 0.644, + "2016": 0.654, + "2017": 0.655, + "2018": 0.657, + "2019": 0.666, + "2020": 0.657, + "2021": 0.652 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr107", + "Region": "Brong Ahafo", + "1990": 0.519, + "1991": 0.525, + "1992": 0.528, + "1993": 0.531, + "1994": 0.526, + "1995": 0.533, + "1996": 0.537, + "1997": 0.542, + "1998": 0.548, + "1999": 0.568, + "2000": 0.583, + "2001": 0.594, + "2002": 0.615, + "2003": 0.635, + "2004": 0.609, + "2005": 0.589, + "2006": 0.564, + "2007": 0.602, + "2008": 0.64, + "2009": 0.628, + "2010": 0.613, + "2011": 0.603, + "2012": 0.632, + "2013": 0.659, + "2014": 0.691, + "2015": 0.697, + "2016": 0.711, + "2017": 0.717, + "2018": 0.718, + "2019": 0.728, + "2020": 0.718, + "2021": 0.713 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr102", + "Region": "Central", + "1990": 0.5, + "1991": 0.506, + "1992": 0.509, + "1993": 0.512, + "1994": 0.507, + "1995": 0.514, + "1996": 0.518, + "1997": 0.523, + "1998": 0.529, + "1999": 0.552, + "2000": 0.572, + "2001": 0.588, + "2002": 0.613, + "2003": 0.639, + "2004": 0.629, + "2005": 0.627, + "2006": 0.619, + "2007": 0.599, + "2008": 0.579, + "2009": 0.596, + "2010": 0.609, + "2011": 0.626, + "2012": 0.639, + "2013": 0.65, + "2014": 0.665, + "2015": 0.668, + "2016": 0.679, + "2017": 0.682, + "2018": 0.684, + "2019": 0.693, + "2020": 0.683, + "2021": 0.678 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr105", + "Region": "Eastern", + "1990": 0.585, + "1991": 0.592, + "1992": 0.595, + "1993": 0.598, + "1994": 0.593, + "1995": 0.6, + "1996": 0.604, + "1997": 0.611, + "1998": 0.617, + "1999": 0.621, + "2000": 0.622, + "2001": 0.618, + "2002": 0.623, + "2003": 0.629, + "2004": 0.632, + "2005": 0.642, + "2006": 0.648, + "2007": 0.638, + "2008": 0.629, + "2009": 0.639, + "2010": 0.646, + "2011": 0.656, + "2012": 0.659, + "2013": 0.66, + "2014": 0.666, + "2015": 0.67, + "2016": 0.683, + "2017": 0.687, + "2018": 0.689, + "2019": 0.698, + "2020": 0.688, + "2021": 0.683 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr103", + "Region": "Greater Accra", + "1990": 0.639, + "1991": 0.646, + "1992": 0.65, + "1993": 0.653, + "1994": 0.648, + "1995": 0.655, + "1996": 0.66, + "1997": 0.666, + "1998": 0.673, + "1999": 0.674, + "2000": 0.671, + "2001": 0.664, + "2002": 0.667, + "2003": 0.669, + "2004": 0.66, + "2005": 0.658, + "2006": 0.651, + "2007": 0.674, + "2008": 0.696, + "2009": 0.694, + "2010": 0.688, + "2011": 0.687, + "2012": 0.695, + "2013": 0.702, + "2014": 0.713, + "2015": 0.717, + "2016": 0.729, + "2017": 0.733, + "2018": 0.734, + "2019": 0.745, + "2020": 0.734, + "2021": 0.729 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr108", + "Region": "Northern", + "1990": 0.467, + "1991": 0.472, + "1992": 0.475, + "1993": 0.478, + "1994": 0.473, + "1995": 0.48, + "1996": 0.483, + "1997": 0.489, + "1998": 0.494, + "1999": 0.504, + "2000": 0.51, + "2001": 0.512, + "2002": 0.523, + "2003": 0.534, + "2004": 0.546, + "2005": 0.564, + "2006": 0.578, + "2007": 0.556, + "2008": 0.535, + "2009": 0.552, + "2010": 0.565, + "2011": 0.582, + "2012": 0.582, + "2013": 0.582, + "2014": 0.585, + "2015": 0.596, + "2016": 0.615, + "2017": 0.626, + "2018": 0.627, + "2019": 0.636, + "2020": 0.627, + "2021": 0.623 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr110", + "Region": "Upper East", + "1990": 0.485, + "1991": 0.49, + "1992": 0.493, + "1993": 0.496, + "1994": 0.492, + "1995": 0.498, + "1996": 0.502, + "1997": 0.507, + "1998": 0.513, + "1999": 0.544, + "2000": 0.571, + "2001": 0.595, + "2002": 0.627, + "2003": 0.661, + "2004": 0.645, + "2005": 0.637, + "2006": 0.624, + "2007": 0.63, + "2008": 0.636, + "2009": 0.624, + "2010": 0.608, + "2011": 0.597, + "2012": 0.617, + "2013": 0.635, + "2014": 0.658, + "2015": 0.664, + "2016": 0.678, + "2017": 0.684, + "2018": 0.686, + "2019": 0.695, + "2020": 0.686, + "2021": 0.681 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr109", + "Region": "Upper West", + "1990": 0.483, + "1991": 0.488, + "1992": 0.491, + "1993": 0.494, + "1994": 0.49, + "1995": 0.496, + "1996": 0.5, + "1997": 0.505, + "1998": 0.511, + "1999": 0.506, + "2000": 0.498, + "2001": 0.486, + "2002": 0.483, + "2003": 0.479, + "2004": 0.485, + "2005": 0.498, + "2006": 0.506, + "2007": 0.517, + "2008": 0.528, + "2009": 0.539, + "2010": 0.547, + "2011": 0.559, + "2012": 0.579, + "2013": 0.597, + "2014": 0.619, + "2015": 0.622, + "2016": 0.634, + "2017": 0.637, + "2018": 0.639, + "2019": 0.648, + "2020": 0.639, + "2021": 0.634 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr104", + "Region": "Volta", + "1990": 0.569, + "1991": 0.575, + "1992": 0.579, + "1993": 0.581, + "1994": 0.577, + "1995": 0.584, + "1996": 0.588, + "1997": 0.594, + "1998": 0.6, + "1999": 0.602, + "2000": 0.6, + "2001": 0.594, + "2002": 0.597, + "2003": 0.6, + "2004": 0.617, + "2005": 0.642, + "2006": 0.662, + "2007": 0.68, + "2008": 0.697, + "2009": 0.684, + "2010": 0.667, + "2011": 0.654, + "2012": 0.662, + "2013": 0.67, + "2014": 0.681, + "2015": 0.686, + "2016": 0.699, + "2017": 0.703, + "2018": 0.705, + "2019": 0.715, + "2020": 0.705, + "2021": 0.7 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr101", + "Region": "Western", + "1990": 0.549, + "1991": 0.555, + "1992": 0.558, + "1993": 0.561, + "1994": 0.556, + "1995": 0.563, + "1996": 0.567, + "1997": 0.573, + "1998": 0.579, + "1999": 0.586, + "2000": 0.588, + "2001": 0.587, + "2002": 0.594, + "2003": 0.602, + "2004": 0.632, + "2005": 0.671, + "2006": 0.705, + "2007": 0.683, + "2008": 0.663, + "2009": 0.673, + "2010": 0.678, + "2011": 0.689, + "2012": 0.69, + "2013": 0.689, + "2014": 0.694, + "2015": 0.693, + "2016": 0.702, + "2017": 0.702, + "2018": 0.703, + "2019": 0.713, + "2020": 0.703, + "2021": 0.698 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "National", + "GDLCODE": "GRCt", + "Region": "Total", + "1990": 0.881, + "1991": 0.883, + "1992": 0.881, + "1993": 0.887, + "1994": 0.889, + "1995": 0.89, + "1996": 0.892, + "1997": 0.897, + "1998": 0.896, + "1999": 0.898, + "2000": 0.898, + "2001": 0.905, + "2002": 0.907, + "2003": 0.908, + "2004": 0.912, + "2005": 0.917, + "2006": 0.919, + "2007": 0.917, + "2008": 0.924, + "2009": 0.928, + "2010": 0.931, + "2011": 0.931, + "2012": 0.928, + "2013": 0.938, + "2014": 0.939, + "2015": 0.933, + "2016": 0.941, + "2017": 0.936, + "2018": 0.944, + "2019": 0.942, + "2020": 0.937, + "2021": 0.925 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr105", + "Region": "Anatoliki Makedonia, Thraki", + "1990": 0.859, + "1991": 0.856, + "1992": 0.854, + "1993": 0.858, + "1994": 0.855, + "1995": 0.86, + "1996": 0.856, + "1997": 0.863, + "1998": 0.856, + "1999": 0.867, + "2000": 0.872, + "2001": 0.874, + "2002": 0.885, + "2003": 0.886, + "2004": 0.891, + "2005": 0.894, + "2006": 0.896, + "2007": 0.894, + "2008": 0.905, + "2009": 0.908, + "2010": 0.906, + "2011": 0.915, + "2012": 0.915, + "2013": 0.917, + "2014": 0.926, + "2015": 0.924, + "2016": 0.934, + "2017": 0.917, + "2018": 0.937, + "2019": 0.932, + "2020": 0.927, + "2021": 0.914 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr101", + "Region": "Attiki", + "1990": 0.876, + "1991": 0.876, + "1992": 0.875, + "1993": 0.881, + "1994": 0.887, + "1995": 0.889, + "1996": 0.891, + "1997": 0.895, + "1998": 0.896, + "1999": 0.897, + "2000": 0.901, + "2001": 0.902, + "2002": 0.9, + "2003": 0.903, + "2004": 0.906, + "2005": 0.912, + "2006": 0.917, + "2007": 0.914, + "2008": 0.925, + "2009": 0.925, + "2010": 0.929, + "2011": 0.927, + "2012": 0.927, + "2013": 0.934, + "2014": 0.933, + "2015": 0.927, + "2016": 0.934, + "2017": 0.929, + "2018": 0.936, + "2019": 0.935, + "2020": 0.93, + "2021": 0.917 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr111", + "Region": "Dytiki Ellada", + "1990": 0.892, + "1991": 0.889, + "1992": 0.886, + "1993": 0.892, + "1994": 0.89, + "1995": 0.884, + "1996": 0.889, + "1997": 0.894, + "1998": 0.89, + "1999": 0.897, + "2000": 0.893, + "2001": 0.905, + "2002": 0.919, + "2003": 0.914, + "2004": 0.916, + "2005": 0.914, + "2006": 0.916, + "2007": 0.916, + "2008": 0.92, + "2009": 0.925, + "2010": 0.926, + "2011": 0.932, + "2012": 0.924, + "2013": 0.931, + "2014": 0.939, + "2015": 0.93, + "2016": 0.937, + "2017": 0.937, + "2018": 0.942, + "2019": 0.939, + "2020": 0.934, + "2021": 0.922 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr107", + "Region": "Dytiki Makedonia", + "1990": 0.887, + "1991": 0.884, + "1992": 0.883, + "1993": 0.881, + "1994": 0.889, + "1995": 0.89, + "1996": 0.891, + "1997": 0.895, + "1998": 0.891, + "1999": 0.895, + "2000": 0.898, + "2001": 0.906, + "2002": 0.913, + "2003": 0.911, + "2004": 0.914, + "2005": 0.92, + "2006": 0.923, + "2007": 0.93, + "2008": 0.925, + "2009": 0.928, + "2010": 0.935, + "2011": 0.937, + "2012": 0.931, + "2013": 0.937, + "2014": 0.95, + "2015": 0.939, + "2016": 0.946, + "2017": 0.949, + "2018": 0.962, + "2019": 0.955, + "2020": 0.949, + "2021": 0.937 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr110", + "Region": "Ionia Nisia", + "1990": 0.888, + "1991": 0.885, + "1992": 0.892, + "1993": 0.915, + "1994": 0.902, + "1995": 0.892, + "1996": 0.906, + "1997": 0.923, + "1998": 0.905, + "1999": 0.914, + "2000": 0.899, + "2001": 0.922, + "2002": 0.911, + "2003": 0.914, + "2004": 0.917, + "2005": 0.931, + "2006": 0.922, + "2007": 0.931, + "2008": 0.925, + "2009": 0.931, + "2010": 0.946, + "2011": 0.943, + "2012": 0.939, + "2013": 0.941, + "2014": 0.943, + "2015": 0.929, + "2016": 0.94, + "2017": 0.929, + "2018": 0.936, + "2019": 0.938, + "2020": 0.933, + "2021": 0.92 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr108", + "Region": "Ipeiros", + "1990": 0.904, + "1991": 0.901, + "1992": 0.888, + "1993": 0.901, + "1994": 0.904, + "1995": 0.91, + "1996": 0.902, + "1997": 0.906, + "1998": 0.913, + "1999": 0.912, + "2000": 0.907, + "2001": 0.928, + "2002": 0.933, + "2003": 0.936, + "2004": 0.937, + "2005": 0.943, + "2006": 0.943, + "2007": 0.942, + "2008": 0.938, + "2009": 0.956, + "2010": 0.963, + "2011": 0.954, + "2012": 0.953, + "2013": 0.957, + "2014": 0.97, + "2015": 0.961, + "2016": 0.971, + "2017": 0.97, + "2018": 0.971, + "2019": 0.978, + "2020": 0.972, + "2021": 0.96 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr106", + "Region": "Kentriki Makedonia", + "1990": 0.876, + "1991": 0.873, + "1992": 0.875, + "1993": 0.881, + "1994": 0.878, + "1995": 0.878, + "1996": 0.879, + "1997": 0.891, + "1998": 0.883, + "1999": 0.887, + "2000": 0.886, + "2001": 0.897, + "2002": 0.9, + "2003": 0.899, + "2004": 0.906, + "2005": 0.909, + "2006": 0.91, + "2007": 0.91, + "2008": 0.914, + "2009": 0.923, + "2010": 0.924, + "2011": 0.931, + "2012": 0.924, + "2013": 0.937, + "2014": 0.935, + "2015": 0.932, + "2016": 0.938, + "2017": 0.937, + "2018": 0.945, + "2019": 0.942, + "2020": 0.937, + "2021": 0.925 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr104", + "Region": "Kriti", + "1990": 0.909, + "1991": 0.913, + "1992": 0.901, + "1993": 0.907, + "1994": 0.912, + "1995": 0.907, + "1996": 0.916, + "1997": 0.912, + "1998": 0.92, + "1999": 0.918, + "2000": 0.913, + "2001": 0.922, + "2002": 0.922, + "2003": 0.922, + "2004": 0.934, + "2005": 0.932, + "2006": 0.926, + "2007": 0.928, + "2008": 0.934, + "2009": 0.942, + "2010": 0.944, + "2011": 0.943, + "2012": 0.939, + "2013": 0.952, + "2014": 0.947, + "2015": 0.942, + "2016": 0.952, + "2017": 0.941, + "2018": 0.955, + "2019": 0.949, + "2020": 0.943, + "2021": 0.931 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr103", + "Region": "Notio Aigaio", + "1990": 0.895, + "1991": 0.893, + "1992": 0.889, + "1993": 0.905, + "1994": 0.902, + "1995": 0.907, + "1996": 0.932, + "1997": 0.931, + "1998": 0.937, + "1999": 0.932, + "2000": 0.939, + "2001": 0.934, + "2002": 0.92, + "2003": 0.922, + "2004": 0.934, + "2005": 0.929, + "2006": 0.937, + "2007": 0.939, + "2008": 0.943, + "2009": 0.94, + "2010": 0.938, + "2011": 0.937, + "2012": 0.939, + "2013": 0.95, + "2014": 0.941, + "2015": 0.942, + "2016": 0.948, + "2017": 0.952, + "2018": 0.957, + "2019": 0.952, + "2020": 0.946, + "2021": 0.934 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr113", + "Region": "Peloponnisos", + "1990": 0.907, + "1991": 0.904, + "1992": 0.903, + "1993": 0.905, + "1994": 0.916, + "1995": 0.909, + "1996": 0.909, + "1997": 0.914, + "1998": 0.916, + "1999": 0.909, + "2000": 0.906, + "2001": 0.925, + "2002": 0.928, + "2003": 0.926, + "2004": 0.929, + "2005": 0.932, + "2006": 0.926, + "2007": 0.925, + "2008": 0.932, + "2009": 0.931, + "2010": 0.935, + "2011": 0.938, + "2012": 0.928, + "2013": 0.947, + "2014": 0.947, + "2015": 0.936, + "2016": 0.954, + "2017": 0.943, + "2018": 0.948, + "2019": 0.949, + "2020": 0.943, + "2021": 0.931 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr112", + "Region": "Sterea Ellada", + "1990": 0.898, + "1991": 0.895, + "1992": 0.894, + "1993": 0.898, + "1994": 0.898, + "1995": 0.901, + "1996": 0.899, + "1997": 0.905, + "1998": 0.906, + "1999": 0.901, + "2000": 0.899, + "2001": 0.909, + "2002": 0.917, + "2003": 0.919, + "2004": 0.917, + "2005": 0.926, + "2006": 0.928, + "2007": 0.921, + "2008": 0.928, + "2009": 0.94, + "2010": 0.943, + "2011": 0.934, + "2012": 0.934, + "2013": 0.95, + "2014": 0.946, + "2015": 0.942, + "2016": 0.946, + "2017": 0.944, + "2018": 0.951, + "2019": 0.944, + "2020": 0.939, + "2021": 0.926 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr109", + "Region": "Thessalia", + "1990": 0.89, + "1991": 0.887, + "1992": 0.889, + "1993": 0.895, + "1994": 0.892, + "1995": 0.892, + "1996": 0.892, + "1997": 0.891, + "1998": 0.894, + "1999": 0.897, + "2000": 0.898, + "2001": 0.906, + "2002": 0.906, + "2003": 0.913, + "2004": 0.91, + "2005": 0.923, + "2006": 0.926, + "2007": 0.919, + "2008": 0.926, + "2009": 0.926, + "2010": 0.936, + "2011": 0.931, + "2012": 0.93, + "2013": 0.944, + "2014": 0.943, + "2015": 0.942, + "2016": 0.948, + "2017": 0.943, + "2018": 0.955, + "2019": 0.952, + "2020": 0.946, + "2021": 0.934 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr102", + "Region": "Voreio Aigaio", + "1990": 0.888, + "1991": 0.893, + "1992": 0.894, + "1993": 0.893, + "1994": 0.901, + "1995": 0.904, + "1996": 0.903, + "1997": 0.926, + "1998": 0.911, + "1999": 0.917, + "2000": 0.903, + "2001": 0.923, + "2002": 0.923, + "2003": 0.914, + "2004": 0.922, + "2005": 0.931, + "2006": 0.922, + "2007": 0.925, + "2008": 0.938, + "2009": 0.934, + "2010": 0.943, + "2011": 0.944, + "2012": 0.928, + "2013": 0.946, + "2014": 0.946, + "2015": 0.944, + "2016": 0.952, + "2017": 0.943, + "2018": 0.96, + "2019": 0.958, + "2020": 0.952, + "2021": 0.94 + }, + { + "Country": "Grenada", + "Continent": "America", + "ISO_Code": "GRD", + "Level": "National", + "GDLCODE": "GRDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.818, + "2003": 0.818, + "2004": 0.797, + "2005": 0.823, + "2006": 0.826, + "2007": 0.836, + "2008": 0.841, + "2009": 0.847, + "2010": 0.846, + "2011": 0.851, + "2012": 0.847, + "2013": 0.848, + "2014": 0.846, + "2015": 0.846, + "2016": 0.842, + "2017": 0.843, + "2018": 0.843, + "2019": 0.844, + "2020": 0.845, + "2021": 0.845 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "National", + "GDLCODE": "GTMt", + "Region": "Total", + "1990": 0.653, + "1991": 0.657, + "1992": 0.66, + "1993": 0.667, + "1994": 0.673, + "1995": 0.68, + "1996": 0.69, + "1997": 0.701, + "1998": 0.709, + "1999": 0.721, + "2000": 0.73, + "2001": 0.738, + "2002": 0.744, + "2003": 0.751, + "2004": 0.756, + "2005": 0.756, + "2006": 0.766, + "2007": 0.771, + "2008": 0.775, + "2009": 0.779, + "2010": 0.783, + "2011": 0.787, + "2012": 0.792, + "2013": 0.796, + "2014": 0.799, + "2015": 0.802, + "2016": 0.805, + "2017": 0.808, + "2018": 0.811, + "2019": 0.817, + "2020": 0.797, + "2021": 0.757 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr105", + "Region": "Central", + "1990": 0.629, + "1991": 0.633, + "1992": 0.636, + "1993": 0.642, + "1994": 0.648, + "1995": 0.655, + "1996": 0.671, + "1997": 0.686, + "1998": 0.701, + "1999": 0.718, + "2000": 0.726, + "2001": 0.734, + "2002": 0.74, + "2003": 0.746, + "2004": 0.752, + "2005": 0.751, + "2006": 0.761, + "2007": 0.765, + "2008": 0.769, + "2009": 0.773, + "2010": 0.776, + "2011": 0.78, + "2012": 0.785, + "2013": 0.788, + "2014": 0.792, + "2015": 0.794, + "2016": 0.797, + "2017": 0.8, + "2018": 0.803, + "2019": 0.809, + "2020": 0.789, + "2021": 0.75 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr101", + "Region": "Metropolitan", + "1990": 0.705, + "1991": 0.709, + "1992": 0.712, + "1993": 0.719, + "1994": 0.725, + "1995": 0.733, + "1996": 0.737, + "1997": 0.741, + "1998": 0.743, + "1999": 0.749, + "2000": 0.757, + "2001": 0.765, + "2002": 0.772, + "2003": 0.778, + "2004": 0.783, + "2005": 0.783, + "2006": 0.793, + "2007": 0.797, + "2008": 0.801, + "2009": 0.805, + "2010": 0.808, + "2011": 0.813, + "2012": 0.817, + "2013": 0.821, + "2014": 0.824, + "2015": 0.826, + "2016": 0.83, + "2017": 0.833, + "2018": 0.836, + "2019": 0.842, + "2020": 0.821, + "2021": 0.781 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr102", + "Region": "North", + "1990": 0.608, + "1991": 0.612, + "1992": 0.615, + "1993": 0.621, + "1994": 0.627, + "1995": 0.634, + "1996": 0.657, + "1997": 0.681, + "1998": 0.704, + "1999": 0.729, + "2000": 0.738, + "2001": 0.745, + "2002": 0.751, + "2003": 0.757, + "2004": 0.762, + "2005": 0.762, + "2006": 0.771, + "2007": 0.775, + "2008": 0.779, + "2009": 0.783, + "2010": 0.786, + "2011": 0.79, + "2012": 0.794, + "2013": 0.798, + "2014": 0.801, + "2015": 0.803, + "2016": 0.806, + "2017": 0.809, + "2018": 0.812, + "2019": 0.818, + "2020": 0.798, + "2021": 0.758 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr107", + "Region": "North-Occidental", + "1990": 0.628, + "1991": 0.632, + "1992": 0.635, + "1993": 0.642, + "1994": 0.647, + "1995": 0.654, + "1996": 0.667, + "1997": 0.681, + "1998": 0.693, + "1999": 0.707, + "2000": 0.715, + "2001": 0.722, + "2002": 0.728, + "2003": 0.733, + "2004": 0.738, + "2005": 0.737, + "2006": 0.746, + "2007": 0.749, + "2008": 0.752, + "2009": 0.756, + "2010": 0.759, + "2011": 0.762, + "2012": 0.766, + "2013": 0.769, + "2014": 0.772, + "2015": 0.773, + "2016": 0.777, + "2017": 0.78, + "2018": 0.782, + "2019": 0.788, + "2020": 0.768, + "2021": 0.73 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr103", + "Region": "North-Oriental", + "1990": 0.653, + "1991": 0.657, + "1992": 0.66, + "1993": 0.667, + "1994": 0.672, + "1995": 0.68, + "1996": 0.688, + "1997": 0.697, + "1998": 0.704, + "1999": 0.714, + "2000": 0.722, + "2001": 0.729, + "2002": 0.736, + "2003": 0.742, + "2004": 0.747, + "2005": 0.747, + "2006": 0.756, + "2007": 0.76, + "2008": 0.764, + "2009": 0.768, + "2010": 0.771, + "2011": 0.775, + "2012": 0.779, + "2013": 0.783, + "2014": 0.786, + "2015": 0.788, + "2016": 0.792, + "2017": 0.795, + "2018": 0.798, + "2019": 0.804, + "2020": 0.783, + "2021": 0.745 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr108", + "Region": "Peten", + "1990": 0.682, + "1991": 0.686, + "1992": 0.689, + "1993": 0.696, + "1994": 0.702, + "1995": 0.709, + "1996": 0.711, + "1997": 0.713, + "1998": 0.713, + "1999": 0.716, + "2000": 0.728, + "2001": 0.738, + "2002": 0.747, + "2003": 0.756, + "2004": 0.764, + "2005": 0.766, + "2006": 0.778, + "2007": 0.785, + "2008": 0.791, + "2009": 0.798, + "2010": 0.804, + "2011": 0.811, + "2012": 0.818, + "2013": 0.824, + "2014": 0.83, + "2015": 0.834, + "2016": 0.838, + "2017": 0.842, + "2018": 0.844, + "2019": 0.851, + "2020": 0.83, + "2021": 0.789 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr106", + "Region": "South-Occidental", + "1990": 0.661, + "1991": 0.665, + "1992": 0.668, + "1993": 0.675, + "1994": 0.681, + "1995": 0.688, + "1996": 0.689, + "1997": 0.689, + "1998": 0.689, + "1999": 0.691, + "2000": 0.702, + "2001": 0.711, + "2002": 0.72, + "2003": 0.729, + "2004": 0.737, + "2005": 0.739, + "2006": 0.752, + "2007": 0.758, + "2008": 0.765, + "2009": 0.771, + "2010": 0.777, + "2011": 0.784, + "2012": 0.791, + "2013": 0.797, + "2014": 0.803, + "2015": 0.808, + "2016": 0.811, + "2017": 0.814, + "2018": 0.817, + "2019": 0.823, + "2020": 0.803, + "2021": 0.763 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr104", + "Region": "South-Oriental", + "1990": 0.621, + "1991": 0.625, + "1992": 0.627, + "1993": 0.634, + "1994": 0.64, + "1995": 0.646, + "1996": 0.669, + "1997": 0.691, + "1998": 0.713, + "1999": 0.736, + "2000": 0.745, + "2001": 0.752, + "2002": 0.758, + "2003": 0.763, + "2004": 0.768, + "2005": 0.767, + "2006": 0.776, + "2007": 0.78, + "2008": 0.783, + "2009": 0.787, + "2010": 0.789, + "2011": 0.793, + "2012": 0.797, + "2013": 0.8, + "2014": 0.803, + "2015": 0.804, + "2016": 0.808, + "2017": 0.811, + "2018": 0.814, + "2019": 0.82, + "2020": 0.8, + "2021": 0.76 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "National", + "GDLCODE": "GINt", + "Region": "Total", + "1990": 0.415, + "1991": 0.424, + "1992": 0.436, + "1993": 0.446, + "1994": 0.449, + "1995": 0.459, + "1996": 0.47, + "1997": 0.482, + "1998": 0.493, + "1999": 0.498, + "2000": 0.5, + "2001": 0.502, + "2002": 0.512, + "2003": 0.518, + "2004": 0.525, + "2005": 0.533, + "2006": 0.54, + "2007": 0.547, + "2008": 0.555, + "2009": 0.559, + "2010": 0.565, + "2011": 0.57, + "2012": 0.575, + "2013": 0.581, + "2014": 0.583, + "2015": 0.587, + "2016": 0.596, + "2017": 0.602, + "2018": 0.605, + "2019": 0.611, + "2020": 0.605, + "2021": 0.598 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr101", + "Region": "Boke", + "1990": 0.432, + "1991": 0.44, + "1992": 0.453, + "1993": 0.462, + "1994": 0.466, + "1995": 0.477, + "1996": 0.487, + "1997": 0.5, + "1998": 0.511, + "1999": 0.516, + "2000": 0.518, + "2001": 0.521, + "2002": 0.53, + "2003": 0.537, + "2004": 0.543, + "2005": 0.552, + "2006": 0.563, + "2007": 0.575, + "2008": 0.587, + "2009": 0.596, + "2010": 0.606, + "2011": 0.614, + "2012": 0.625, + "2013": 0.618, + "2014": 0.607, + "2015": 0.598, + "2016": 0.595, + "2017": 0.588, + "2018": 0.58, + "2019": 0.585, + "2020": 0.579, + "2021": 0.573 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr102", + "Region": "Conakry", + "1990": 0.539, + "1991": 0.549, + "1992": 0.564, + "1993": 0.575, + "1994": 0.578, + "1995": 0.591, + "1996": 0.603, + "1997": 0.618, + "1998": 0.63, + "1999": 0.636, + "2000": 0.638, + "2001": 0.641, + "2002": 0.652, + "2003": 0.66, + "2004": 0.667, + "2005": 0.677, + "2006": 0.68, + "2007": 0.683, + "2008": 0.687, + "2009": 0.687, + "2010": 0.689, + "2011": 0.69, + "2012": 0.692, + "2013": 0.7, + "2014": 0.702, + "2015": 0.707, + "2016": 0.719, + "2017": 0.726, + "2018": 0.731, + "2019": 0.738, + "2020": 0.731, + "2021": 0.723 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr103", + "Region": "Faranah", + "1990": 0.418, + "1991": 0.426, + "1992": 0.439, + "1993": 0.448, + "1994": 0.451, + "1995": 0.462, + "1996": 0.472, + "1997": 0.485, + "1998": 0.496, + "1999": 0.5, + "2000": 0.502, + "2001": 0.505, + "2002": 0.515, + "2003": 0.521, + "2004": 0.527, + "2005": 0.535, + "2006": 0.536, + "2007": 0.537, + "2008": 0.538, + "2009": 0.536, + "2010": 0.536, + "2011": 0.534, + "2012": 0.534, + "2013": 0.543, + "2014": 0.547, + "2015": 0.553, + "2016": 0.566, + "2017": 0.573, + "2018": 0.58, + "2019": 0.585, + "2020": 0.579, + "2021": 0.573 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr104", + "Region": "Kankan", + "1990": 0.401, + "1991": 0.409, + "1992": 0.421, + "1993": 0.43, + "1994": 0.433, + "1995": 0.444, + "1996": 0.454, + "1997": 0.466, + "1998": 0.477, + "1999": 0.481, + "2000": 0.483, + "2001": 0.486, + "2002": 0.495, + "2003": 0.501, + "2004": 0.508, + "2005": 0.516, + "2006": 0.515, + "2007": 0.513, + "2008": 0.513, + "2009": 0.509, + "2010": 0.507, + "2011": 0.504, + "2012": 0.502, + "2013": 0.513, + "2014": 0.52, + "2015": 0.529, + "2016": 0.543, + "2017": 0.553, + "2018": 0.562, + "2019": 0.568, + "2020": 0.562, + "2021": 0.555 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr105", + "Region": "Kindia", + "1990": 0.398, + "1991": 0.406, + "1992": 0.419, + "1993": 0.428, + "1994": 0.431, + "1995": 0.441, + "1996": 0.451, + "1997": 0.464, + "1998": 0.474, + "1999": 0.479, + "2000": 0.481, + "2001": 0.483, + "2002": 0.493, + "2003": 0.499, + "2004": 0.505, + "2005": 0.513, + "2006": 0.523, + "2007": 0.532, + "2008": 0.542, + "2009": 0.549, + "2010": 0.557, + "2011": 0.564, + "2012": 0.573, + "2013": 0.574, + "2014": 0.572, + "2015": 0.571, + "2016": 0.577, + "2017": 0.578, + "2018": 0.577, + "2019": 0.583, + "2020": 0.577, + "2021": 0.57 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr106", + "Region": "Labe", + "1990": 0.433, + "1991": 0.442, + "1992": 0.455, + "1993": 0.464, + "1994": 0.467, + "1995": 0.478, + "1996": 0.489, + "1997": 0.502, + "1998": 0.513, + "1999": 0.518, + "2000": 0.52, + "2001": 0.522, + "2002": 0.532, + "2003": 0.538, + "2004": 0.545, + "2005": 0.553, + "2006": 0.556, + "2007": 0.558, + "2008": 0.561, + "2009": 0.561, + "2010": 0.562, + "2011": 0.563, + "2012": 0.564, + "2013": 0.572, + "2014": 0.575, + "2015": 0.58, + "2016": 0.591, + "2017": 0.598, + "2018": 0.603, + "2019": 0.609, + "2020": 0.603, + "2021": 0.596 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr107", + "Region": "Mamou", + "1990": 0.408, + "1991": 0.416, + "1992": 0.429, + "1993": 0.438, + "1994": 0.441, + "1995": 0.452, + "1996": 0.462, + "1997": 0.474, + "1998": 0.485, + "1999": 0.49, + "2000": 0.492, + "2001": 0.494, + "2002": 0.504, + "2003": 0.51, + "2004": 0.517, + "2005": 0.524, + "2006": 0.534, + "2007": 0.543, + "2008": 0.553, + "2009": 0.56, + "2010": 0.567, + "2011": 0.574, + "2012": 0.582, + "2013": 0.593, + "2014": 0.599, + "2015": 0.607, + "2016": 0.622, + "2017": 0.632, + "2018": 0.64, + "2019": 0.646, + "2020": 0.639, + "2021": 0.632 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr108", + "Region": "N Zerekore", + "1990": 0.394, + "1991": 0.402, + "1992": 0.415, + "1993": 0.424, + "1994": 0.427, + "1995": 0.437, + "1996": 0.447, + "1997": 0.459, + "1998": 0.47, + "1999": 0.474, + "2000": 0.476, + "2001": 0.479, + "2002": 0.488, + "2003": 0.494, + "2004": 0.5, + "2005": 0.508, + "2006": 0.525, + "2007": 0.541, + "2008": 0.557, + "2009": 0.571, + "2010": 0.585, + "2011": 0.598, + "2012": 0.613, + "2013": 0.617, + "2014": 0.617, + "2015": 0.619, + "2016": 0.628, + "2017": 0.631, + "2018": 0.634, + "2019": 0.64, + "2020": 0.633, + "2021": 0.626 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "National", + "GDLCODE": "GNBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.496, + "2006": 0.513, + "2007": 0.525, + "2008": 0.533, + "2009": 0.547, + "2010": 0.557, + "2011": 0.569, + "2012": 0.58, + "2013": 0.588, + "2014": 0.594, + "2015": 0.602, + "2016": 0.61, + "2017": 0.616, + "2018": 0.623, + "2019": 0.629, + "2020": 0.615, + "2021": 0.61 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr106", + "Region": "Bafata", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.49, + "2006": 0.507, + "2007": 0.508, + "2008": 0.506, + "2009": 0.509, + "2010": 0.51, + "2011": 0.511, + "2012": 0.512, + "2013": 0.511, + "2014": 0.508, + "2015": 0.552, + "2016": 0.596, + "2017": 0.637, + "2018": 0.678, + "2019": 0.718, + "2020": 0.703, + "2021": 0.697 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr104", + "Region": "Biombo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.476, + "2006": 0.493, + "2007": 0.519, + "2008": 0.539, + "2009": 0.566, + "2010": 0.589, + "2011": 0.613, + "2012": 0.636, + "2013": 0.656, + "2014": 0.673, + "2015": 0.651, + "2016": 0.629, + "2017": 0.605, + "2018": 0.583, + "2019": 0.561, + "2020": 0.548, + "2021": 0.543 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr109", + "Region": "Bissau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.576, + "2006": 0.595, + "2007": 0.597, + "2008": 0.594, + "2009": 0.599, + "2010": 0.6, + "2011": 0.602, + "2012": 0.604, + "2013": 0.603, + "2014": 0.6, + "2015": 0.606, + "2016": 0.613, + "2017": 0.618, + "2018": 0.623, + "2019": 0.627, + "2020": 0.614, + "2021": 0.609 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr105", + "Region": "Bolama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.57, + "2006": 0.589, + "2007": 0.587, + "2008": 0.581, + "2009": 0.581, + "2010": 0.578, + "2011": 0.576, + "2012": 0.574, + "2013": 0.57, + "2014": 0.563, + "2015": 0.577, + "2016": 0.592, + "2017": 0.604, + "2018": 0.616, + "2019": 0.628, + "2020": 0.615, + "2021": 0.609 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr108", + "Region": "Cacheu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.515, + "2006": 0.533, + "2007": 0.543, + "2008": 0.549, + "2009": 0.562, + "2010": 0.571, + "2011": 0.581, + "2012": 0.59, + "2013": 0.597, + "2014": 0.602, + "2015": 0.621, + "2016": 0.641, + "2017": 0.658, + "2018": 0.675, + "2019": 0.692, + "2020": 0.677, + "2021": 0.672 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr107", + "Region": "Gabu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.476, + "2006": 0.493, + "2007": 0.497, + "2008": 0.497, + "2009": 0.503, + "2010": 0.506, + "2011": 0.509, + "2012": 0.513, + "2013": 0.514, + "2014": 0.513, + "2015": 0.517, + "2016": 0.522, + "2017": 0.524, + "2018": 0.527, + "2019": 0.53, + "2020": 0.518, + "2021": 0.513 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr103", + "Region": "Oio", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.478, + "2006": 0.495, + "2007": 0.523, + "2008": 0.547, + "2009": 0.577, + "2010": 0.604, + "2011": 0.631, + "2012": 0.657, + "2013": 0.68, + "2014": 0.7, + "2015": 0.694, + "2016": 0.689, + "2017": 0.682, + "2018": 0.675, + "2019": 0.668, + "2020": 0.654, + "2021": 0.648 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr102", + "Region": "Quinara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.551, + "2006": 0.57, + "2007": 0.579, + "2008": 0.583, + "2009": 0.594, + "2010": 0.602, + "2011": 0.61, + "2012": 0.619, + "2013": 0.624, + "2014": 0.627, + "2015": 0.621, + "2016": 0.615, + "2017": 0.607, + "2018": 0.601, + "2019": 0.593, + "2020": 0.58, + "2021": 0.575 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr101", + "Region": "Tombali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.528, + "2006": 0.546, + "2007": 0.556, + "2008": 0.561, + "2009": 0.573, + "2010": 0.582, + "2011": 0.591, + "2012": 0.6, + "2013": 0.606, + "2014": 0.61, + "2015": 0.619, + "2016": 0.629, + "2017": 0.635, + "2018": 0.643, + "2019": 0.65, + "2020": 0.636, + "2021": 0.631 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "National", + "GDLCODE": "GUYt", + "Region": "Total", + "1990": 0.653, + "1991": 0.656, + "1992": 0.658, + "1993": 0.664, + "1994": 0.667, + "1995": 0.664, + "1996": 0.665, + "1997": 0.667, + "1998": 0.675, + "1999": 0.68, + "2000": 0.684, + "2001": 0.689, + "2002": 0.688, + "2003": 0.686, + "2004": 0.691, + "2005": 0.694, + "2006": 0.703, + "2007": 0.712, + "2008": 0.712, + "2009": 0.716, + "2010": 0.719, + "2011": 0.723, + "2012": 0.727, + "2013": 0.73, + "2014": 0.737, + "2015": 0.742, + "2016": 0.744, + "2017": 0.749, + "2018": 0.752, + "2019": 0.756, + "2020": 0.746, + "2021": 0.703 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr101", + "Region": "Barima-Waini", + "1990": 0.597, + "1991": 0.6, + "1992": 0.602, + "1993": 0.608, + "1994": 0.611, + "1995": 0.607, + "1996": 0.608, + "1997": 0.611, + "1998": 0.618, + "1999": 0.622, + "2000": 0.627, + "2001": 0.631, + "2002": 0.63, + "2003": 0.629, + "2004": 0.633, + "2005": 0.636, + "2006": 0.644, + "2007": 0.677, + "2008": 0.701, + "2009": 0.729, + "2010": 0.727, + "2011": 0.726, + "2012": 0.726, + "2013": 0.725, + "2014": 0.727, + "2015": 0.729, + "2016": 0.729, + "2017": 0.73, + "2018": 0.73, + "2019": 0.731, + "2020": 0.721, + "2021": 0.679 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr107", + "Region": "Cuyuni-Mazaruni", + "1990": 0.63, + "1991": 0.633, + "1992": 0.636, + "1993": 0.641, + "1994": 0.644, + "1995": 0.641, + "1996": 0.642, + "1997": 0.644, + "1998": 0.652, + "1999": 0.656, + "2000": 0.661, + "2001": 0.666, + "2002": 0.665, + "2003": 0.663, + "2004": 0.668, + "2005": 0.671, + "2006": 0.679, + "2007": 0.695, + "2008": 0.703, + "2009": 0.714, + "2010": 0.711, + "2011": 0.708, + "2012": 0.705, + "2013": 0.702, + "2014": 0.702, + "2015": 0.706, + "2016": 0.709, + "2017": 0.712, + "2018": 0.715, + "2019": 0.718, + "2020": 0.708, + "2021": 0.667 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr104", + "Region": "Demerara-Mahaica", + "1990": 0.652, + "1991": 0.655, + "1992": 0.657, + "1993": 0.663, + "1994": 0.666, + "1995": 0.663, + "1996": 0.664, + "1997": 0.666, + "1998": 0.675, + "1999": 0.679, + "2000": 0.684, + "2001": 0.688, + "2002": 0.687, + "2003": 0.685, + "2004": 0.69, + "2005": 0.694, + "2006": 0.702, + "2007": 0.712, + "2008": 0.714, + "2009": 0.719, + "2010": 0.722, + "2011": 0.727, + "2012": 0.731, + "2013": 0.736, + "2014": 0.743, + "2015": 0.748, + "2016": 0.75, + "2017": 0.755, + "2018": 0.758, + "2019": 0.762, + "2020": 0.752, + "2021": 0.709 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr106", + "Region": "East Berbice-Corentyne", + "1990": 0.649, + "1991": 0.652, + "1992": 0.655, + "1993": 0.66, + "1994": 0.664, + "1995": 0.66, + "1996": 0.661, + "1997": 0.664, + "1998": 0.672, + "1999": 0.676, + "2000": 0.681, + "2001": 0.685, + "2002": 0.685, + "2003": 0.683, + "2004": 0.688, + "2005": 0.691, + "2006": 0.699, + "2007": 0.698, + "2008": 0.689, + "2009": 0.684, + "2010": 0.698, + "2011": 0.714, + "2012": 0.729, + "2013": 0.744, + "2014": 0.762, + "2015": 0.768, + "2016": 0.773, + "2017": 0.779, + "2018": 0.784, + "2019": 0.79, + "2020": 0.78, + "2021": 0.735 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr103", + "Region": "Essequibo Islands-West Demerara", + "1990": 0.656, + "1991": 0.659, + "1992": 0.662, + "1993": 0.668, + "1994": 0.671, + "1995": 0.667, + "1996": 0.668, + "1997": 0.671, + "1998": 0.679, + "1999": 0.683, + "2000": 0.688, + "2001": 0.693, + "2002": 0.692, + "2003": 0.69, + "2004": 0.695, + "2005": 0.698, + "2006": 0.706, + "2007": 0.715, + "2008": 0.716, + "2009": 0.72, + "2010": 0.716, + "2011": 0.713, + "2012": 0.71, + "2013": 0.707, + "2014": 0.706, + "2015": 0.711, + "2016": 0.714, + "2017": 0.719, + "2018": 0.722, + "2019": 0.726, + "2020": 0.716, + "2021": 0.674 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr105", + "Region": "Mahaica-Berbice", + "1990": 0.643, + "1991": 0.646, + "1992": 0.649, + "1993": 0.654, + "1994": 0.657, + "1995": 0.654, + "1996": 0.655, + "1997": 0.657, + "1998": 0.666, + "1999": 0.67, + "2000": 0.674, + "2001": 0.679, + "2002": 0.678, + "2003": 0.676, + "2004": 0.681, + "2005": 0.684, + "2006": 0.692, + "2007": 0.702, + "2008": 0.703, + "2009": 0.707, + "2010": 0.717, + "2011": 0.727, + "2012": 0.738, + "2013": 0.749, + "2014": 0.762, + "2015": 0.762, + "2016": 0.761, + "2017": 0.761, + "2018": 0.76, + "2019": 0.76, + "2020": 0.75, + "2021": 0.706 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr102", + "Region": "Pomeroon-Supenaam", + "1990": 0.75, + "1991": 0.754, + "1992": 0.756, + "1993": 0.763, + "1994": 0.766, + "1995": 0.762, + "1996": 0.764, + "1997": 0.766, + "1998": 0.775, + "1999": 0.78, + "2000": 0.785, + "2001": 0.79, + "2002": 0.789, + "2003": 0.787, + "2004": 0.793, + "2005": 0.796, + "2006": 0.805, + "2007": 0.789, + "2008": 0.764, + "2009": 0.742, + "2010": 0.742, + "2011": 0.742, + "2012": 0.742, + "2013": 0.743, + "2014": 0.746, + "2015": 0.745, + "2016": 0.741, + "2017": 0.74, + "2018": 0.738, + "2019": 0.735, + "2020": 0.726, + "2021": 0.683 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr108", + "Region": "Potaro-Siparuni", + "1990": 0.607, + "1991": 0.61, + "1992": 0.613, + "1993": 0.618, + "1994": 0.621, + "1995": 0.618, + "1996": 0.619, + "1997": 0.621, + "1998": 0.629, + "1999": 0.633, + "2000": 0.638, + "2001": 0.642, + "2002": 0.641, + "2003": 0.639, + "2004": 0.644, + "2005": 0.647, + "2006": 0.655, + "2007": 0.68, + "2008": 0.697, + "2009": 0.717, + "2010": 0.716, + "2011": 0.715, + "2012": 0.715, + "2013": 0.715, + "2014": 0.717, + "2015": 0.718, + "2016": 0.716, + "2017": 0.716, + "2018": 0.715, + "2019": 0.715, + "2020": 0.705, + "2021": 0.664 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr110", + "Region": "Upper Demerara-Berbice", + "1990": 0.656, + "1991": 0.659, + "1992": 0.662, + "1993": 0.667, + "1994": 0.671, + "1995": 0.667, + "1996": 0.668, + "1997": 0.67, + "1998": 0.679, + "1999": 0.683, + "2000": 0.688, + "2001": 0.693, + "2002": 0.692, + "2003": 0.69, + "2004": 0.695, + "2005": 0.698, + "2006": 0.706, + "2007": 0.711, + "2008": 0.707, + "2009": 0.707, + "2010": 0.71, + "2011": 0.714, + "2012": 0.718, + "2013": 0.721, + "2014": 0.728, + "2015": 0.728, + "2016": 0.726, + "2017": 0.726, + "2018": 0.725, + "2019": 0.724, + "2020": 0.715, + "2021": 0.673 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr109", + "Region": "Upper Takutu-Upper Essequibo", + "1990": 0.618, + "1991": 0.621, + "1992": 0.624, + "1993": 0.629, + "1994": 0.632, + "1995": 0.629, + "1996": 0.63, + "1997": 0.632, + "1998": 0.64, + "1999": 0.644, + "2000": 0.649, + "2001": 0.653, + "2002": 0.653, + "2003": 0.651, + "2004": 0.656, + "2005": 0.659, + "2006": 0.666, + "2007": 0.681, + "2008": 0.687, + "2009": 0.696, + "2010": 0.704, + "2011": 0.713, + "2012": 0.722, + "2013": 0.73, + "2014": 0.742, + "2015": 0.751, + "2016": 0.759, + "2017": 0.768, + "2018": 0.777, + "2019": 0.785, + "2020": 0.775, + "2021": 0.731 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "National", + "GDLCODE": "HTIt", + "Region": "Total", + "1990": 0.507, + "1991": 0.514, + "1992": 0.521, + "1993": 0.528, + "1994": 0.533, + "1995": 0.547, + "1996": 0.556, + "1997": 0.562, + "1998": 0.571, + "1999": 0.584, + "2000": 0.59, + "2001": 0.592, + "2002": 0.598, + "2003": 0.608, + "2004": 0.592, + "2005": 0.622, + "2006": 0.627, + "2007": 0.632, + "2008": 0.636, + "2009": 0.642, + "2010": 0.4, + "2011": 0.64, + "2012": 0.651, + "2013": 0.655, + "2014": 0.661, + "2015": 0.665, + "2016": 0.668, + "2017": 0.675, + "2018": 0.677, + "2019": 0.681, + "2020": 0.678, + "2021": 0.664 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr105", + "Region": "Artibonite", + "1990": 0.49, + "1991": 0.496, + "1992": 0.503, + "1993": 0.51, + "1994": 0.515, + "1995": 0.529, + "1996": 0.539, + "1997": 0.545, + "1998": 0.555, + "1999": 0.568, + "2000": 0.575, + "2001": 0.579, + "2002": 0.587, + "2003": 0.599, + "2004": 0.585, + "2005": 0.617, + "2006": 0.623, + "2007": 0.63, + "2008": 0.634, + "2009": 0.642, + "2010": 0.401, + "2011": 0.642, + "2012": 0.654, + "2013": 0.658, + "2014": 0.663, + "2015": 0.665, + "2016": 0.667, + "2017": 0.673, + "2018": 0.675, + "2019": 0.679, + "2020": 0.676, + "2021": 0.662 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr106", + "Region": "Centre", + "1990": 0.475, + "1991": 0.481, + "1992": 0.488, + "1993": 0.496, + "1994": 0.5, + "1995": 0.51, + "1996": 0.515, + "1997": 0.516, + "1998": 0.522, + "1999": 0.53, + "2000": 0.532, + "2001": 0.53, + "2002": 0.532, + "2003": 0.538, + "2004": 0.52, + "2005": 0.544, + "2006": 0.558, + "2007": 0.57, + "2008": 0.582, + "2009": 0.596, + "2010": 0.372, + "2011": 0.61, + "2012": 0.628, + "2013": 0.635, + "2014": 0.642, + "2015": 0.648, + "2016": 0.652, + "2017": 0.661, + "2018": 0.664, + "2019": 0.667, + "2020": 0.664, + "2021": 0.651 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr108", + "Region": "Grande-Anse, Nippes", + "1990": 0.515, + "1991": 0.522, + "1992": 0.529, + "1993": 0.537, + "1994": 0.541, + "1995": 0.558, + "1996": 0.571, + "1997": 0.58, + "1998": 0.593, + "1999": 0.609, + "2000": 0.619, + "2001": 0.621, + "2002": 0.627, + "2003": 0.637, + "2004": 0.621, + "2005": 0.651, + "2006": 0.654, + "2007": 0.656, + "2008": 0.656, + "2009": 0.659, + "2010": 0.411, + "2011": 0.651, + "2012": 0.659, + "2013": 0.668, + "2014": 0.678, + "2015": 0.686, + "2016": 0.693, + "2017": 0.704, + "2018": 0.707, + "2019": 0.711, + "2020": 0.707, + "2021": 0.694 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr103", + "Region": "North", + "1990": 0.525, + "1991": 0.532, + "1992": 0.539, + "1993": 0.547, + "1994": 0.552, + "1995": 0.568, + "1996": 0.58, + "1997": 0.588, + "1998": 0.601, + "1999": 0.616, + "2000": 0.625, + "2001": 0.624, + "2002": 0.626, + "2003": 0.633, + "2004": 0.614, + "2005": 0.641, + "2006": 0.645, + "2007": 0.649, + "2008": 0.652, + "2009": 0.657, + "2010": 0.41, + "2011": 0.652, + "2012": 0.661, + "2013": 0.676, + "2014": 0.692, + "2015": 0.706, + "2016": 0.718, + "2017": 0.736, + "2018": 0.738, + "2019": 0.742, + "2020": 0.739, + "2021": 0.725 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr104", + "Region": "North-East", + "1990": 0.455, + "1991": 0.461, + "1992": 0.468, + "1993": 0.475, + "1994": 0.479, + "1995": 0.507, + "1996": 0.53, + "1997": 0.55, + "1998": 0.575, + "1999": 0.602, + "2000": 0.624, + "2001": 0.617, + "2002": 0.614, + "2003": 0.616, + "2004": 0.592, + "2005": 0.613, + "2006": 0.622, + "2007": 0.63, + "2008": 0.637, + "2009": 0.647, + "2010": 0.406, + "2011": 0.651, + "2012": 0.665, + "2013": 0.669, + "2014": 0.675, + "2015": 0.678, + "2016": 0.68, + "2017": 0.687, + "2018": 0.689, + "2019": 0.693, + "2020": 0.69, + "2021": 0.676 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr109", + "Region": "North-West", + "1990": 0.614, + "1991": 0.621, + "1992": 0.629, + "1993": 0.638, + "1994": 0.643, + "1995": 0.644, + "1996": 0.639, + "1997": 0.63, + "1998": 0.625, + "1999": 0.623, + "2000": 0.614, + "2001": 0.614, + "2002": 0.619, + "2003": 0.628, + "2004": 0.61, + "2005": 0.639, + "2006": 0.652, + "2007": 0.665, + "2008": 0.676, + "2009": 0.69, + "2010": 0.441, + "2011": 0.703, + "2012": 0.721, + "2013": 0.722, + "2014": 0.724, + "2015": 0.724, + "2016": 0.722, + "2017": 0.725, + "2018": 0.728, + "2019": 0.732, + "2020": 0.729, + "2021": 0.715 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr107", + "Region": "South", + "1990": 0.572, + "1991": 0.578, + "1992": 0.586, + "1993": 0.594, + "1994": 0.599, + "1995": 0.602, + "1996": 0.6, + "1997": 0.594, + "1998": 0.591, + "1999": 0.592, + "2000": 0.586, + "2001": 0.593, + "2002": 0.605, + "2003": 0.621, + "2004": 0.61, + "2005": 0.646, + "2006": 0.651, + "2007": 0.656, + "2008": 0.66, + "2009": 0.666, + "2010": 0.418, + "2011": 0.664, + "2012": 0.674, + "2013": 0.683, + "2014": 0.692, + "2015": 0.7, + "2016": 0.706, + "2017": 0.717, + "2018": 0.72, + "2019": 0.723, + "2020": 0.72, + "2021": 0.706 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr102", + "Region": "South-East", + "1990": 0.503, + "1991": 0.509, + "1992": 0.516, + "1993": 0.524, + "1994": 0.529, + "1995": 0.54, + "1996": 0.548, + "1997": 0.551, + "1998": 0.559, + "1999": 0.569, + "2000": 0.573, + "2001": 0.586, + "2002": 0.602, + "2003": 0.622, + "2004": 0.616, + "2005": 0.656, + "2006": 0.661, + "2007": 0.666, + "2008": 0.669, + "2009": 0.675, + "2010": 0.424, + "2011": 0.672, + "2012": 0.682, + "2013": 0.683, + "2014": 0.686, + "2015": 0.686, + "2016": 0.685, + "2017": 0.689, + "2018": 0.691, + "2019": 0.695, + "2020": 0.692, + "2021": 0.678 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr101", + "Region": "West (incl Metropolitain area)", + "1990": 0.497, + "1991": 0.503, + "1992": 0.51, + "1993": 0.517, + "1994": 0.522, + "1995": 0.54, + "1996": 0.553, + "1997": 0.563, + "1998": 0.577, + "1999": 0.594, + "2000": 0.605, + "2001": 0.605, + "2002": 0.61, + "2003": 0.619, + "2004": 0.601, + "2005": 0.63, + "2006": 0.632, + "2007": 0.635, + "2008": 0.635, + "2009": 0.639, + "2010": 0.395, + "2011": 0.631, + "2012": 0.638, + "2013": 0.639, + "2014": 0.641, + "2015": 0.641, + "2016": 0.639, + "2017": 0.642, + "2018": 0.644, + "2019": 0.648, + "2020": 0.645, + "2021": 0.632 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "National", + "GDLCODE": "HNDt", + "Region": "Total", + "1990": 0.696, + "1991": 0.704, + "1992": 0.708, + "1993": 0.712, + "1994": 0.717, + "1995": 0.725, + "1996": 0.73, + "1997": 0.735, + "1998": 0.657, + "1999": 0.745, + "2000": 0.749, + "2001": 0.754, + "2002": 0.759, + "2003": 0.762, + "2004": 0.766, + "2005": 0.771, + "2006": 0.773, + "2007": 0.775, + "2008": 0.776, + "2009": 0.783, + "2010": 0.786, + "2011": 0.791, + "2012": 0.796, + "2013": 0.799, + "2014": 0.804, + "2015": 0.807, + "2016": 0.809, + "2017": 0.811, + "2018": 0.813, + "2019": 0.814, + "2020": 0.792, + "2021": 0.771 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr101", + "Region": "Atlantida", + "1990": 0.702, + "1991": 0.71, + "1992": 0.713, + "1993": 0.717, + "1994": 0.722, + "1995": 0.731, + "1996": 0.736, + "1997": 0.741, + "1998": 0.663, + "1999": 0.751, + "2000": 0.755, + "2001": 0.76, + "2002": 0.766, + "2003": 0.768, + "2004": 0.772, + "2005": 0.777, + "2006": 0.78, + "2007": 0.782, + "2008": 0.783, + "2009": 0.791, + "2010": 0.794, + "2011": 0.8, + "2012": 0.802, + "2013": 0.803, + "2014": 0.805, + "2015": 0.805, + "2016": 0.804, + "2017": 0.803, + "2018": 0.803, + "2019": 0.801, + "2020": 0.78, + "2021": 0.759 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr106", + "Region": "Choluteca", + "1990": 0.695, + "1991": 0.703, + "1992": 0.707, + "1993": 0.711, + "1994": 0.716, + "1995": 0.724, + "1996": 0.729, + "1997": 0.734, + "1998": 0.657, + "1999": 0.744, + "2000": 0.748, + "2001": 0.753, + "2002": 0.759, + "2003": 0.761, + "2004": 0.765, + "2005": 0.77, + "2006": 0.775, + "2007": 0.779, + "2008": 0.782, + "2009": 0.791, + "2010": 0.796, + "2011": 0.804, + "2012": 0.804, + "2013": 0.803, + "2014": 0.803, + "2015": 0.802, + "2016": 0.8, + "2017": 0.797, + "2018": 0.794, + "2019": 0.791, + "2020": 0.77, + "2021": 0.75 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr102", + "Region": "Colon", + "1990": 0.696, + "1991": 0.704, + "1992": 0.708, + "1993": 0.712, + "1994": 0.717, + "1995": 0.725, + "1996": 0.73, + "1997": 0.735, + "1998": 0.657, + "1999": 0.745, + "2000": 0.749, + "2001": 0.754, + "2002": 0.759, + "2003": 0.762, + "2004": 0.766, + "2005": 0.771, + "2006": 0.775, + "2007": 0.778, + "2008": 0.781, + "2009": 0.789, + "2010": 0.794, + "2011": 0.8, + "2012": 0.802, + "2013": 0.802, + "2014": 0.804, + "2015": 0.804, + "2016": 0.802, + "2017": 0.801, + "2018": 0.8, + "2019": 0.798, + "2020": 0.776, + "2021": 0.756 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr103", + "Region": "Comayagua", + "1990": 0.695, + "1991": 0.703, + "1992": 0.706, + "1993": 0.71, + "1994": 0.715, + "1995": 0.724, + "1996": 0.729, + "1997": 0.734, + "1998": 0.656, + "1999": 0.744, + "2000": 0.747, + "2001": 0.753, + "2002": 0.758, + "2003": 0.76, + "2004": 0.765, + "2005": 0.77, + "2006": 0.768, + "2007": 0.765, + "2008": 0.762, + "2009": 0.765, + "2010": 0.763, + "2011": 0.764, + "2012": 0.773, + "2013": 0.781, + "2014": 0.79, + "2015": 0.798, + "2016": 0.804, + "2017": 0.81, + "2018": 0.816, + "2019": 0.821, + "2020": 0.799, + "2021": 0.779 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr104", + "Region": "Copan", + "1990": 0.646, + "1991": 0.654, + "1992": 0.657, + "1993": 0.661, + "1994": 0.666, + "1995": 0.674, + "1996": 0.678, + "1997": 0.683, + "1998": 0.609, + "1999": 0.693, + "2000": 0.696, + "2001": 0.701, + "2002": 0.707, + "2003": 0.709, + "2004": 0.713, + "2005": 0.717, + "2006": 0.726, + "2007": 0.734, + "2008": 0.742, + "2009": 0.755, + "2010": 0.764, + "2011": 0.776, + "2012": 0.782, + "2013": 0.787, + "2014": 0.793, + "2015": 0.798, + "2016": 0.802, + "2017": 0.805, + "2018": 0.808, + "2019": 0.811, + "2020": 0.789, + "2021": 0.769 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr105", + "Region": "Cortes", + "1990": 0.718, + "1991": 0.726, + "1992": 0.73, + "1993": 0.734, + "1994": 0.739, + "1995": 0.748, + "1996": 0.753, + "1997": 0.758, + "1998": 0.678, + "1999": 0.768, + "2000": 0.772, + "2001": 0.777, + "2002": 0.783, + "2003": 0.785, + "2004": 0.79, + "2005": 0.795, + "2006": 0.794, + "2007": 0.793, + "2008": 0.791, + "2009": 0.796, + "2010": 0.796, + "2011": 0.798, + "2012": 0.804, + "2013": 0.808, + "2014": 0.813, + "2015": 0.817, + "2016": 0.82, + "2017": 0.822, + "2018": 0.825, + "2019": 0.826, + "2020": 0.804, + "2021": 0.783 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr107", + "Region": "El Paraiso", + "1990": 0.669, + "1991": 0.677, + "1992": 0.681, + "1993": 0.685, + "1994": 0.689, + "1995": 0.698, + "1996": 0.702, + "1997": 0.707, + "1998": 0.632, + "1999": 0.717, + "2000": 0.721, + "2001": 0.726, + "2002": 0.731, + "2003": 0.733, + "2004": 0.738, + "2005": 0.742, + "2006": 0.749, + "2007": 0.755, + "2008": 0.76, + "2009": 0.771, + "2010": 0.778, + "2011": 0.787, + "2012": 0.791, + "2013": 0.795, + "2014": 0.799, + "2015": 0.802, + "2016": 0.804, + "2017": 0.805, + "2018": 0.807, + "2019": 0.808, + "2020": 0.786, + "2021": 0.766 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr108", + "Region": "Francisco Morazan", + "1990": 0.711, + "1991": 0.719, + "1992": 0.723, + "1993": 0.727, + "1994": 0.732, + "1995": 0.741, + "1996": 0.745, + "1997": 0.751, + "1998": 0.672, + "1999": 0.761, + "2000": 0.765, + "2001": 0.77, + "2002": 0.776, + "2003": 0.778, + "2004": 0.782, + "2005": 0.787, + "2006": 0.789, + "2007": 0.791, + "2008": 0.791, + "2009": 0.798, + "2010": 0.801, + "2011": 0.806, + "2012": 0.809, + "2013": 0.81, + "2014": 0.813, + "2015": 0.815, + "2016": 0.815, + "2017": 0.814, + "2018": 0.814, + "2019": 0.814, + "2020": 0.792, + "2021": 0.771 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr109", + "Region": "Gracias a Dios", + "1990": 0.649, + "1991": 0.657, + "1992": 0.66, + "1993": 0.664, + "1994": 0.669, + "1995": 0.677, + "1996": 0.681, + "1997": 0.686, + "1998": 0.612, + "1999": 0.696, + "2000": 0.699, + "2001": 0.704, + "2002": 0.71, + "2003": 0.712, + "2004": 0.716, + "2005": 0.72, + "2006": 0.719, + "2007": 0.717, + "2008": 0.714, + "2009": 0.717, + "2010": 0.715, + "2011": 0.717, + "2012": 0.723, + "2013": 0.729, + "2014": 0.736, + "2015": 0.742, + "2016": 0.746, + "2017": 0.751, + "2018": 0.755, + "2019": 0.759, + "2020": 0.738, + "2021": 0.718 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr110", + "Region": "Intibuca", + "1990": 0.695, + "1991": 0.702, + "1992": 0.706, + "1993": 0.71, + "1994": 0.715, + "1995": 0.724, + "1996": 0.728, + "1997": 0.734, + "1998": 0.656, + "1999": 0.743, + "2000": 0.747, + "2001": 0.752, + "2002": 0.758, + "2003": 0.76, + "2004": 0.765, + "2005": 0.769, + "2006": 0.768, + "2007": 0.766, + "2008": 0.764, + "2009": 0.768, + "2010": 0.767, + "2011": 0.769, + "2012": 0.773, + "2013": 0.777, + "2014": 0.782, + "2015": 0.785, + "2016": 0.787, + "2017": 0.789, + "2018": 0.791, + "2019": 0.792, + "2020": 0.771, + "2021": 0.751 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr111", + "Region": "Islas de la Bahia", + "1990": 0.637, + "1991": 0.645, + "1992": 0.648, + "1993": 0.652, + "1994": 0.657, + "1995": 0.665, + "1996": 0.669, + "1997": 0.674, + "1998": 0.601, + "1999": 0.683, + "2000": 0.687, + "2001": 0.692, + "2002": 0.697, + "2003": 0.699, + "2004": 0.703, + "2005": 0.708, + "2006": 0.706, + "2007": 0.704, + "2008": 0.701, + "2009": 0.704, + "2010": 0.703, + "2011": 0.704, + "2012": 0.721, + "2013": 0.738, + "2014": 0.755, + "2015": 0.771, + "2016": 0.786, + "2017": 0.8, + "2018": 0.815, + "2019": 0.829, + "2020": 0.807, + "2021": 0.786 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr112", + "Region": "La Paz", + "1990": 0.657, + "1991": 0.664, + "1992": 0.668, + "1993": 0.671, + "1994": 0.676, + "1995": 0.685, + "1996": 0.689, + "1997": 0.694, + "1998": 0.619, + "1999": 0.703, + "2000": 0.707, + "2001": 0.712, + "2002": 0.717, + "2003": 0.72, + "2004": 0.724, + "2005": 0.728, + "2006": 0.734, + "2007": 0.74, + "2008": 0.744, + "2009": 0.755, + "2010": 0.761, + "2011": 0.77, + "2012": 0.778, + "2013": 0.784, + "2014": 0.791, + "2015": 0.798, + "2016": 0.802, + "2017": 0.807, + "2018": 0.812, + "2019": 0.816, + "2020": 0.794, + "2021": 0.773 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr113", + "Region": "Lempira", + "1990": 0.67, + "1991": 0.678, + "1992": 0.682, + "1993": 0.685, + "1994": 0.69, + "1995": 0.699, + "1996": 0.703, + "1997": 0.708, + "1998": 0.633, + "1999": 0.718, + "2000": 0.722, + "2001": 0.727, + "2002": 0.732, + "2003": 0.734, + "2004": 0.739, + "2005": 0.743, + "2006": 0.748, + "2007": 0.752, + "2008": 0.755, + "2009": 0.764, + "2010": 0.769, + "2011": 0.776, + "2012": 0.782, + "2013": 0.787, + "2014": 0.792, + "2015": 0.797, + "2016": 0.8, + "2017": 0.802, + "2018": 0.805, + "2019": 0.808, + "2020": 0.786, + "2021": 0.765 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr114", + "Region": "Ocotepeque", + "1990": 0.699, + "1991": 0.707, + "1992": 0.711, + "1993": 0.715, + "1994": 0.72, + "1995": 0.728, + "1996": 0.733, + "1997": 0.738, + "1998": 0.66, + "1999": 0.748, + "2000": 0.752, + "2001": 0.757, + "2002": 0.763, + "2003": 0.765, + "2004": 0.769, + "2005": 0.774, + "2006": 0.777, + "2007": 0.779, + "2008": 0.78, + "2009": 0.787, + "2010": 0.79, + "2011": 0.796, + "2012": 0.799, + "2013": 0.802, + "2014": 0.805, + "2015": 0.807, + "2016": 0.808, + "2017": 0.808, + "2018": 0.809, + "2019": 0.809, + "2020": 0.787, + "2021": 0.767 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr115", + "Region": "Olancho", + "1990": 0.685, + "1991": 0.693, + "1992": 0.697, + "1993": 0.701, + "1994": 0.705, + "1995": 0.714, + "1996": 0.719, + "1997": 0.724, + "1998": 0.647, + "1999": 0.734, + "2000": 0.737, + "2001": 0.742, + "2002": 0.748, + "2003": 0.75, + "2004": 0.755, + "2005": 0.759, + "2006": 0.767, + "2007": 0.774, + "2008": 0.781, + "2009": 0.793, + "2010": 0.802, + "2011": 0.812, + "2012": 0.815, + "2013": 0.817, + "2014": 0.82, + "2015": 0.822, + "2016": 0.822, + "2017": 0.822, + "2018": 0.822, + "2019": 0.822, + "2020": 0.8, + "2021": 0.779 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr116", + "Region": "Santa Barbara", + "1990": 0.685, + "1991": 0.693, + "1992": 0.697, + "1993": 0.701, + "1994": 0.705, + "1995": 0.714, + "1996": 0.719, + "1997": 0.724, + "1998": 0.647, + "1999": 0.734, + "2000": 0.737, + "2001": 0.742, + "2002": 0.748, + "2003": 0.75, + "2004": 0.754, + "2005": 0.759, + "2006": 0.766, + "2007": 0.772, + "2008": 0.778, + "2009": 0.789, + "2010": 0.796, + "2011": 0.806, + "2012": 0.81, + "2013": 0.812, + "2014": 0.816, + "2015": 0.819, + "2016": 0.82, + "2017": 0.82, + "2018": 0.821, + "2019": 0.821, + "2020": 0.799, + "2021": 0.779 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr117", + "Region": "Valle", + "1990": 0.714, + "1991": 0.722, + "1992": 0.726, + "1993": 0.73, + "1994": 0.735, + "1995": 0.744, + "1996": 0.748, + "1997": 0.754, + "1998": 0.674, + "1999": 0.764, + "2000": 0.767, + "2001": 0.773, + "2002": 0.778, + "2003": 0.781, + "2004": 0.785, + "2005": 0.79, + "2006": 0.79, + "2007": 0.79, + "2008": 0.789, + "2009": 0.795, + "2010": 0.796, + "2011": 0.799, + "2012": 0.8, + "2013": 0.8, + "2014": 0.801, + "2015": 0.801, + "2016": 0.798, + "2017": 0.796, + "2018": 0.795, + "2019": 0.792, + "2020": 0.771, + "2021": 0.75 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr118", + "Region": "Yoro", + "1990": 0.707, + "1991": 0.715, + "1992": 0.718, + "1993": 0.722, + "1994": 0.727, + "1995": 0.736, + "1996": 0.741, + "1997": 0.746, + "1998": 0.668, + "1999": 0.756, + "2000": 0.76, + "2001": 0.765, + "2002": 0.771, + "2003": 0.773, + "2004": 0.778, + "2005": 0.782, + "2006": 0.782, + "2007": 0.781, + "2008": 0.779, + "2009": 0.783, + "2010": 0.782, + "2011": 0.785, + "2012": 0.791, + "2013": 0.797, + "2014": 0.803, + "2015": 0.808, + "2016": 0.812, + "2017": 0.815, + "2018": 0.819, + "2019": 0.822, + "2020": 0.8, + "2021": 0.779 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "National", + "GDLCODE": "HUNt", + "Region": "Total", + "1990": 0.76, + "1991": 0.761, + "1992": 0.756, + "1993": 0.757, + "1994": 0.763, + "1995": 0.769, + "1996": 0.778, + "1997": 0.785, + "1998": 0.783, + "1999": 0.785, + "2000": 0.796, + "2001": 0.806, + "2002": 0.808, + "2003": 0.808, + "2004": 0.814, + "2005": 0.813, + "2006": 0.821, + "2007": 0.822, + "2008": 0.83, + "2009": 0.834, + "2010": 0.839, + "2011": 0.845, + "2012": 0.849, + "2013": 0.857, + "2014": 0.859, + "2015": 0.856, + "2016": 0.864, + "2017": 0.862, + "2018": 0.865, + "2019": 0.869, + "2020": 0.857, + "2021": 0.839 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr107", + "Region": "Del-Alfold", + "1990": 0.76, + "1991": 0.766, + "1992": 0.757, + "1993": 0.761, + "1994": 0.77, + "1995": 0.769, + "1996": 0.779, + "1997": 0.788, + "1998": 0.783, + "1999": 0.787, + "2000": 0.796, + "2001": 0.811, + "2002": 0.813, + "2003": 0.809, + "2004": 0.819, + "2005": 0.816, + "2006": 0.827, + "2007": 0.825, + "2008": 0.834, + "2009": 0.836, + "2010": 0.844, + "2011": 0.845, + "2012": 0.852, + "2013": 0.861, + "2014": 0.861, + "2015": 0.858, + "2016": 0.867, + "2017": 0.861, + "2018": 0.872, + "2019": 0.873, + "2020": 0.862, + "2021": 0.843 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr104", + "Region": "Del-Dunantul", + "1990": 0.759, + "1991": 0.756, + "1992": 0.752, + "1993": 0.756, + "1994": 0.766, + "1995": 0.768, + "1996": 0.773, + "1997": 0.781, + "1998": 0.784, + "1999": 0.781, + "2000": 0.793, + "2001": 0.803, + "2002": 0.81, + "2003": 0.806, + "2004": 0.814, + "2005": 0.818, + "2006": 0.82, + "2007": 0.822, + "2008": 0.834, + "2009": 0.835, + "2010": 0.838, + "2011": 0.849, + "2012": 0.85, + "2013": 0.855, + "2014": 0.861, + "2015": 0.855, + "2016": 0.867, + "2017": 0.864, + "2018": 0.867, + "2019": 0.87, + "2020": 0.859, + "2021": 0.84 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr106", + "Region": "Eszak-Alfold", + "1990": 0.756, + "1991": 0.758, + "1992": 0.755, + "1993": 0.75, + "1994": 0.754, + "1995": 0.763, + "1996": 0.775, + "1997": 0.779, + "1998": 0.775, + "1999": 0.781, + "2000": 0.79, + "2001": 0.798, + "2002": 0.8, + "2003": 0.804, + "2004": 0.81, + "2005": 0.805, + "2006": 0.815, + "2007": 0.816, + "2008": 0.823, + "2009": 0.832, + "2010": 0.835, + "2011": 0.845, + "2012": 0.85, + "2013": 0.858, + "2014": 0.858, + "2015": 0.852, + "2016": 0.862, + "2017": 0.861, + "2018": 0.861, + "2019": 0.862, + "2020": 0.851, + "2021": 0.833 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr105", + "Region": "Eszak-Magyarorszag", + "1990": 0.751, + "1991": 0.75, + "1992": 0.746, + "1993": 0.741, + "1994": 0.749, + "1995": 0.76, + "1996": 0.773, + "1997": 0.773, + "1998": 0.78, + "1999": 0.778, + "2000": 0.79, + "2001": 0.795, + "2002": 0.796, + "2003": 0.795, + "2004": 0.797, + "2005": 0.797, + "2006": 0.804, + "2007": 0.807, + "2008": 0.814, + "2009": 0.818, + "2010": 0.822, + "2011": 0.825, + "2012": 0.832, + "2013": 0.839, + "2014": 0.844, + "2015": 0.844, + "2016": 0.846, + "2017": 0.844, + "2018": 0.844, + "2019": 0.847, + "2020": 0.836, + "2021": 0.818 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr102", + "Region": "Kozep-Dunantul", + "1990": 0.76, + "1991": 0.758, + "1992": 0.757, + "1993": 0.764, + "1994": 0.768, + "1995": 0.771, + "1996": 0.779, + "1997": 0.791, + "1998": 0.788, + "1999": 0.789, + "2000": 0.804, + "2001": 0.812, + "2002": 0.811, + "2003": 0.813, + "2004": 0.817, + "2005": 0.819, + "2006": 0.821, + "2007": 0.827, + "2008": 0.833, + "2009": 0.835, + "2010": 0.845, + "2011": 0.85, + "2012": 0.853, + "2013": 0.859, + "2014": 0.865, + "2015": 0.855, + "2016": 0.868, + "2017": 0.866, + "2018": 0.867, + "2019": 0.873, + "2020": 0.862, + "2021": 0.843 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr101", + "Region": "Kozep-Magyarorszag", + "1990": 0.773, + "1991": 0.775, + "1992": 0.774, + "1993": 0.776, + "1994": 0.78, + "1995": 0.788, + "1996": 0.793, + "1997": 0.799, + "1998": 0.803, + "1999": 0.804, + "2000": 0.814, + "2001": 0.826, + "2002": 0.834, + "2003": 0.837, + "2004": 0.844, + "2005": 0.844, + "2006": 0.846, + "2007": 0.852, + "2008": 0.859, + "2009": 0.864, + "2010": 0.87, + "2011": 0.873, + "2012": 0.878, + "2013": 0.883, + "2014": 0.89, + "2015": 0.883, + "2016": 0.893, + "2017": 0.889, + "2018": 0.893, + "2019": 0.9, + "2020": 0.889, + "2021": 0.87 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr103", + "Region": "Nyugat-Dunantul", + "1990": 0.776, + "1991": 0.779, + "1992": 0.774, + "1993": 0.773, + "1994": 0.777, + "1995": 0.786, + "1996": 0.793, + "1997": 0.801, + "1998": 0.795, + "1999": 0.798, + "2000": 0.811, + "2001": 0.823, + "2002": 0.822, + "2003": 0.826, + "2004": 0.831, + "2005": 0.831, + "2006": 0.841, + "2007": 0.839, + "2008": 0.848, + "2009": 0.85, + "2010": 0.852, + "2011": 0.858, + "2012": 0.858, + "2013": 0.869, + "2014": 0.87, + "2015": 0.875, + "2016": 0.877, + "2017": 0.877, + "2018": 0.88, + "2019": 0.89, + "2020": 0.879, + "2021": 0.86 + }, + { + "Country": "Iceland", + "Continent": "Europe", + "ISO_Code": "ISL", + "Level": "National", + "GDLCODE": "ISLt", + "Region": "Total", + "1990": 0.895, + "1991": 0.89, + "1992": 0.902, + "1993": 0.904, + "1994": 0.91, + "1995": 0.896, + "1996": 0.902, + "1997": 0.908, + "1998": 0.915, + "1999": 0.911, + "2000": 0.921, + "2001": 0.934, + "2002": 0.931, + "2003": 0.935, + "2004": 0.938, + "2005": 0.942, + "2006": 0.942, + "2007": 0.944, + "2008": 0.944, + "2009": 0.947, + "2010": 0.949, + "2011": 0.957, + "2012": 0.962, + "2013": 0.953, + "2014": 0.963, + "2015": 0.959, + "2016": 0.954, + "2017": 0.962, + "2018": 0.966, + "2019": 0.96, + "2020": 0.963, + "2021": 0.964 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "National", + "GDLCODE": "INDt", + "Region": "Total", + "1990": 0.595, + "1991": 0.601, + "1992": 0.607, + "1993": 0.613, + "1994": 0.619, + "1995": 0.625, + "1996": 0.631, + "1997": 0.637, + "1998": 0.643, + "1999": 0.649, + "2000": 0.656, + "2001": 0.663, + "2002": 0.671, + "2003": 0.678, + "2004": 0.685, + "2005": 0.692, + "2006": 0.699, + "2007": 0.704, + "2008": 0.71, + "2009": 0.716, + "2010": 0.722, + "2011": 0.729, + "2012": 0.737, + "2013": 0.746, + "2014": 0.755, + "2015": 0.764, + "2016": 0.771, + "2017": 0.776, + "2018": 0.78, + "2019": 0.783, + "2020": 0.772, + "2021": 0.727 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr136", + "Region": "Andaman and Nicobar Islands", + "1990": 0.838, + "1991": 0.846, + "1992": 0.853, + "1993": 0.854, + "1994": 0.855, + "1995": 0.856, + "1996": 0.857, + "1997": 0.859, + "1998": 0.86, + "1999": 0.861, + "2000": 0.864, + "2001": 0.865, + "2002": 0.869, + "2003": 0.872, + "2004": 0.873, + "2005": 0.876, + "2006": 0.877, + "2007": 0.874, + "2008": 0.872, + "2009": 0.869, + "2010": 0.867, + "2011": 0.866, + "2012": 0.866, + "2013": 0.867, + "2014": 0.868, + "2015": 0.869, + "2016": 0.868, + "2017": 0.874, + "2018": 0.878, + "2019": 0.882, + "2020": 0.869, + "2021": 0.82 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr101", + "Region": "Andhra Pradesh", + "1990": 0.633, + "1991": 0.64, + "1992": 0.646, + "1993": 0.649, + "1994": 0.652, + "1995": 0.655, + "1996": 0.658, + "1997": 0.661, + "1998": 0.664, + "1999": 0.668, + "2000": 0.674, + "2001": 0.68, + "2002": 0.687, + "2003": 0.694, + "2004": 0.7, + "2005": 0.706, + "2006": 0.712, + "2007": 0.717, + "2008": 0.722, + "2009": 0.727, + "2010": 0.732, + "2011": 0.739, + "2012": 0.746, + "2013": 0.755, + "2014": 0.763, + "2015": 0.771, + "2016": 0.778, + "2017": 0.784, + "2018": 0.787, + "2019": 0.791, + "2020": 0.779, + "2021": 0.734 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr125", + "Region": "Arunachal Pradesh", + "1990": 0.652, + "1991": 0.658, + "1992": 0.665, + "1993": 0.666, + "1994": 0.668, + "1995": 0.67, + "1996": 0.672, + "1997": 0.674, + "1998": 0.676, + "1999": 0.678, + "2000": 0.678, + "2001": 0.677, + "2002": 0.678, + "2003": 0.677, + "2004": 0.677, + "2005": 0.676, + "2006": 0.675, + "2007": 0.688, + "2008": 0.7, + "2009": 0.712, + "2010": 0.725, + "2011": 0.738, + "2012": 0.753, + "2013": 0.768, + "2014": 0.784, + "2015": 0.799, + "2016": 0.813, + "2017": 0.819, + "2018": 0.823, + "2019": 0.826, + "2020": 0.814, + "2021": 0.767 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr102", + "Region": "Assam", + "1990": 0.558, + "1991": 0.564, + "1992": 0.57, + "1993": 0.587, + "1994": 0.604, + "1995": 0.621, + "1996": 0.638, + "1997": 0.655, + "1998": 0.673, + "1999": 0.69, + "2000": 0.689, + "2001": 0.687, + "2002": 0.687, + "2003": 0.685, + "2004": 0.683, + "2005": 0.682, + "2006": 0.68, + "2007": 0.686, + "2008": 0.692, + "2009": 0.698, + "2010": 0.705, + "2011": 0.712, + "2012": 0.721, + "2013": 0.73, + "2014": 0.74, + "2015": 0.749, + "2016": 0.757, + "2017": 0.763, + "2018": 0.766, + "2019": 0.769, + "2020": 0.758, + "2021": 0.714 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr103", + "Region": "Bihar", + "1990": 0.568, + "1991": 0.574, + "1992": 0.58, + "1993": 0.587, + "1994": 0.595, + "1995": 0.603, + "1996": 0.61, + "1997": 0.618, + "1998": 0.626, + "1999": 0.634, + "2000": 0.64, + "2001": 0.645, + "2002": 0.651, + "2003": 0.657, + "2004": 0.662, + "2005": 0.668, + "2006": 0.673, + "2007": 0.68, + "2008": 0.686, + "2009": 0.693, + "2010": 0.7, + "2011": 0.708, + "2012": 0.717, + "2013": 0.727, + "2014": 0.738, + "2015": 0.747, + "2016": 0.756, + "2017": 0.761, + "2018": 0.765, + "2019": 0.768, + "2020": 0.756, + "2021": 0.712 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr131", + "Region": "Chandigarth", + "1990": 0.797, + "1991": 0.805, + "1992": 0.812, + "1993": 0.813, + "1994": 0.814, + "1995": 0.815, + "1996": 0.816, + "1997": 0.817, + "1998": 0.819, + "1999": 0.82, + "2000": 0.822, + "2001": 0.824, + "2002": 0.827, + "2003": 0.83, + "2004": 0.831, + "2005": 0.834, + "2006": 0.835, + "2007": 0.833, + "2008": 0.83, + "2009": 0.827, + "2010": 0.825, + "2011": 0.824, + "2012": 0.824, + "2013": 0.825, + "2014": 0.827, + "2015": 0.827, + "2016": 0.827, + "2017": 0.832, + "2018": 0.836, + "2019": 0.84, + "2020": 0.827, + "2021": 0.78 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr129", + "Region": "Chhattisgarh", + "1990": 0.704, + "1991": 0.711, + "1992": 0.718, + "1993": 0.719, + "1994": 0.72, + "1995": 0.72, + "1996": 0.721, + "1997": 0.723, + "1998": 0.724, + "1999": 0.725, + "2000": 0.727, + "2001": 0.729, + "2002": 0.732, + "2003": 0.734, + "2004": 0.735, + "2005": 0.738, + "2006": 0.739, + "2007": 0.737, + "2008": 0.734, + "2009": 0.732, + "2010": 0.73, + "2011": 0.729, + "2012": 0.729, + "2013": 0.73, + "2014": 0.731, + "2015": 0.732, + "2016": 0.731, + "2017": 0.736, + "2018": 0.74, + "2019": 0.743, + "2020": 0.732, + "2021": 0.689 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr132", + "Region": "Dadra and Nagar Haveli", + "1990": 0.782, + "1991": 0.79, + "1992": 0.797, + "1993": 0.798, + "1994": 0.799, + "1995": 0.8, + "1996": 0.801, + "1997": 0.802, + "1998": 0.803, + "1999": 0.805, + "2000": 0.807, + "2001": 0.809, + "2002": 0.812, + "2003": 0.814, + "2004": 0.816, + "2005": 0.818, + "2006": 0.82, + "2007": 0.817, + "2008": 0.814, + "2009": 0.812, + "2010": 0.81, + "2011": 0.809, + "2012": 0.809, + "2013": 0.81, + "2014": 0.811, + "2015": 0.812, + "2016": 0.811, + "2017": 0.817, + "2018": 0.821, + "2019": 0.824, + "2020": 0.812, + "2021": 0.766 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr134", + "Region": "Daman and Diu", + "1990": 0.789, + "1991": 0.797, + "1992": 0.804, + "1993": 0.805, + "1994": 0.806, + "1995": 0.807, + "1996": 0.808, + "1997": 0.809, + "1998": 0.81, + "1999": 0.812, + "2000": 0.814, + "2001": 0.816, + "2002": 0.819, + "2003": 0.822, + "2004": 0.823, + "2005": 0.826, + "2006": 0.827, + "2007": 0.824, + "2008": 0.822, + "2009": 0.819, + "2010": 0.817, + "2011": 0.816, + "2012": 0.816, + "2013": 0.817, + "2014": 0.819, + "2015": 0.819, + "2016": 0.819, + "2017": 0.824, + "2018": 0.828, + "2019": 0.831, + "2020": 0.819, + "2021": 0.772 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr104", + "Region": "Goa", + "1990": 0.747, + "1991": 0.755, + "1992": 0.762, + "1993": 0.76, + "1994": 0.759, + "1995": 0.758, + "1996": 0.756, + "1997": 0.755, + "1998": 0.754, + "1999": 0.753, + "2000": 0.763, + "2001": 0.771, + "2002": 0.781, + "2003": 0.791, + "2004": 0.8, + "2005": 0.809, + "2006": 0.818, + "2007": 0.82, + "2008": 0.822, + "2009": 0.824, + "2010": 0.827, + "2011": 0.83, + "2012": 0.835, + "2013": 0.841, + "2014": 0.847, + "2015": 0.853, + "2016": 0.857, + "2017": 0.863, + "2018": 0.867, + "2019": 0.87, + "2020": 0.857, + "2021": 0.809 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr105", + "Region": "Gujarat", + "1990": 0.619, + "1991": 0.626, + "1992": 0.632, + "1993": 0.637, + "1994": 0.642, + "1995": 0.647, + "1996": 0.652, + "1997": 0.658, + "1998": 0.663, + "1999": 0.669, + "2000": 0.675, + "2001": 0.681, + "2002": 0.689, + "2003": 0.696, + "2004": 0.702, + "2005": 0.709, + "2006": 0.715, + "2007": 0.721, + "2008": 0.727, + "2009": 0.733, + "2010": 0.739, + "2011": 0.746, + "2012": 0.755, + "2013": 0.764, + "2014": 0.774, + "2015": 0.783, + "2016": 0.79, + "2017": 0.796, + "2018": 0.8, + "2019": 0.803, + "2020": 0.791, + "2021": 0.745 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr106", + "Region": "Haryana", + "1990": 0.613, + "1991": 0.619, + "1992": 0.625, + "1993": 0.634, + "1994": 0.644, + "1995": 0.653, + "1996": 0.662, + "1997": 0.672, + "1998": 0.682, + "1999": 0.691, + "2000": 0.7, + "2001": 0.709, + "2002": 0.719, + "2003": 0.728, + "2004": 0.737, + "2005": 0.746, + "2006": 0.754, + "2007": 0.758, + "2008": 0.76, + "2009": 0.763, + "2010": 0.767, + "2011": 0.771, + "2012": 0.777, + "2013": 0.783, + "2014": 0.79, + "2015": 0.796, + "2016": 0.801, + "2017": 0.807, + "2018": 0.811, + "2019": 0.814, + "2020": 0.802, + "2021": 0.756 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr107", + "Region": "Himachal Pradesh", + "1990": 0.655, + "1991": 0.661, + "1992": 0.668, + "1993": 0.68, + "1994": 0.693, + "1995": 0.706, + "1996": 0.718, + "1997": 0.731, + "1998": 0.744, + "1999": 0.758, + "2000": 0.763, + "2001": 0.767, + "2002": 0.773, + "2003": 0.778, + "2004": 0.782, + "2005": 0.787, + "2006": 0.792, + "2007": 0.791, + "2008": 0.79, + "2009": 0.79, + "2010": 0.789, + "2011": 0.79, + "2012": 0.792, + "2013": 0.795, + "2014": 0.798, + "2015": 0.801, + "2016": 0.802, + "2017": 0.808, + "2018": 0.812, + "2019": 0.815, + "2020": 0.803, + "2021": 0.757 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr108", + "Region": "Jammu and Kashmir", + "1990": 0.687, + "1991": 0.694, + "1992": 0.7, + "1993": 0.699, + "1994": 0.698, + "1995": 0.697, + "1996": 0.696, + "1997": 0.695, + "1998": 0.694, + "1999": 0.693, + "2000": 0.704, + "2001": 0.713, + "2002": 0.725, + "2003": 0.735, + "2004": 0.745, + "2005": 0.756, + "2006": 0.766, + "2007": 0.768, + "2008": 0.771, + "2009": 0.773, + "2010": 0.776, + "2011": 0.78, + "2012": 0.786, + "2013": 0.791, + "2014": 0.798, + "2015": 0.804, + "2016": 0.808, + "2017": 0.814, + "2018": 0.818, + "2019": 0.821, + "2020": 0.809, + "2021": 0.762 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr128", + "Region": "Jharkhand", + "1990": 0.731, + "1991": 0.738, + "1992": 0.745, + "1993": 0.746, + "1994": 0.747, + "1995": 0.748, + "1996": 0.749, + "1997": 0.75, + "1998": 0.751, + "1999": 0.753, + "2000": 0.755, + "2001": 0.756, + "2002": 0.759, + "2003": 0.762, + "2004": 0.763, + "2005": 0.766, + "2006": 0.767, + "2007": 0.764, + "2008": 0.762, + "2009": 0.759, + "2010": 0.757, + "2011": 0.756, + "2012": 0.757, + "2013": 0.757, + "2014": 0.759, + "2015": 0.76, + "2016": 0.759, + "2017": 0.764, + "2018": 0.768, + "2019": 0.771, + "2020": 0.76, + "2021": 0.715 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr109", + "Region": "Karnataka", + "1990": 0.622, + "1991": 0.628, + "1992": 0.635, + "1993": 0.641, + "1994": 0.648, + "1995": 0.655, + "1996": 0.662, + "1997": 0.669, + "1998": 0.676, + "1999": 0.683, + "2000": 0.691, + "2001": 0.698, + "2002": 0.707, + "2003": 0.715, + "2004": 0.723, + "2005": 0.731, + "2006": 0.738, + "2007": 0.745, + "2008": 0.752, + "2009": 0.759, + "2010": 0.766, + "2011": 0.774, + "2012": 0.784, + "2013": 0.794, + "2014": 0.805, + "2015": 0.815, + "2016": 0.823, + "2017": 0.829, + "2018": 0.833, + "2019": 0.836, + "2020": 0.824, + "2021": 0.777 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr110", + "Region": "Kerala", + "1990": 0.748, + "1991": 0.755, + "1992": 0.763, + "1993": 0.769, + "1994": 0.776, + "1995": 0.783, + "1996": 0.79, + "1997": 0.797, + "1998": 0.804, + "1999": 0.812, + "2000": 0.817, + "2001": 0.822, + "2002": 0.829, + "2003": 0.835, + "2004": 0.84, + "2005": 0.845, + "2006": 0.85, + "2007": 0.852, + "2008": 0.853, + "2009": 0.855, + "2010": 0.857, + "2011": 0.86, + "2012": 0.864, + "2013": 0.869, + "2014": 0.875, + "2015": 0.88, + "2016": 0.883, + "2017": 0.889, + "2018": 0.893, + "2019": 0.897, + "2020": 0.884, + "2021": 0.834 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr135", + "Region": "Lakshadweep", + "1990": 0.802, + "1991": 0.809, + "1992": 0.817, + "1993": 0.817, + "1994": 0.819, + "1995": 0.82, + "1996": 0.821, + "1997": 0.822, + "1998": 0.823, + "1999": 0.825, + "2000": 0.827, + "2001": 0.829, + "2002": 0.832, + "2003": 0.834, + "2004": 0.836, + "2005": 0.838, + "2006": 0.84, + "2007": 0.837, + "2008": 0.834, + "2009": 0.832, + "2010": 0.83, + "2011": 0.829, + "2012": 0.829, + "2013": 0.83, + "2014": 0.831, + "2015": 0.832, + "2016": 0.831, + "2017": 0.837, + "2018": 0.841, + "2019": 0.844, + "2020": 0.832, + "2021": 0.785 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr111", + "Region": "Madhya Pradesh", + "1990": 0.559, + "1991": 0.565, + "1992": 0.571, + "1993": 0.572, + "1994": 0.574, + "1995": 0.575, + "1996": 0.576, + "1997": 0.578, + "1998": 0.58, + "1999": 0.581, + "2000": 0.592, + "2001": 0.602, + "2002": 0.614, + "2003": 0.625, + "2004": 0.636, + "2005": 0.647, + "2006": 0.657, + "2007": 0.664, + "2008": 0.67, + "2009": 0.676, + "2010": 0.683, + "2011": 0.691, + "2012": 0.699, + "2013": 0.709, + "2014": 0.719, + "2015": 0.728, + "2016": 0.736, + "2017": 0.741, + "2018": 0.745, + "2019": 0.748, + "2020": 0.736, + "2021": 0.693 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr112", + "Region": "Maharashtra", + "1990": 0.671, + "1991": 0.678, + "1992": 0.684, + "1993": 0.688, + "1994": 0.692, + "1995": 0.695, + "1996": 0.699, + "1997": 0.703, + "1998": 0.707, + "1999": 0.711, + "2000": 0.719, + "2001": 0.726, + "2002": 0.735, + "2003": 0.744, + "2004": 0.751, + "2005": 0.759, + "2006": 0.767, + "2007": 0.771, + "2008": 0.775, + "2009": 0.779, + "2010": 0.784, + "2011": 0.789, + "2012": 0.796, + "2013": 0.803, + "2014": 0.812, + "2015": 0.819, + "2016": 0.825, + "2017": 0.831, + "2018": 0.835, + "2019": 0.838, + "2020": 0.826, + "2021": 0.779 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr113", + "Region": "Manipur", + "1990": 0.704, + "1991": 0.711, + "1992": 0.717, + "1993": 0.719, + "1994": 0.72, + "1995": 0.722, + "1996": 0.723, + "1997": 0.725, + "1998": 0.727, + "1999": 0.729, + "2000": 0.736, + "2001": 0.742, + "2002": 0.749, + "2003": 0.756, + "2004": 0.762, + "2005": 0.768, + "2006": 0.774, + "2007": 0.778, + "2008": 0.782, + "2009": 0.786, + "2010": 0.79, + "2011": 0.795, + "2012": 0.801, + "2013": 0.809, + "2014": 0.817, + "2015": 0.824, + "2016": 0.829, + "2017": 0.835, + "2018": 0.839, + "2019": 0.842, + "2020": 0.83, + "2021": 0.783 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr114", + "Region": "Meghalaya", + "1990": 0.694, + "1991": 0.701, + "1992": 0.707, + "1993": 0.692, + "1994": 0.678, + "1995": 0.663, + "1996": 0.649, + "1997": 0.634, + "1998": 0.62, + "1999": 0.606, + "2000": 0.622, + "2001": 0.638, + "2002": 0.656, + "2003": 0.672, + "2004": 0.689, + "2005": 0.705, + "2006": 0.721, + "2007": 0.728, + "2008": 0.734, + "2009": 0.74, + "2010": 0.746, + "2011": 0.753, + "2012": 0.762, + "2013": 0.771, + "2014": 0.781, + "2015": 0.79, + "2016": 0.798, + "2017": 0.804, + "2018": 0.807, + "2019": 0.811, + "2020": 0.799, + "2021": 0.753 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr115", + "Region": "Mizoram", + "1990": 0.781, + "1991": 0.788, + "1992": 0.796, + "1993": 0.786, + "1994": 0.778, + "1995": 0.768, + "1996": 0.759, + "1997": 0.75, + "1998": 0.741, + "1999": 0.733, + "2000": 0.739, + "2001": 0.745, + "2002": 0.753, + "2003": 0.76, + "2004": 0.766, + "2005": 0.772, + "2006": 0.778, + "2007": 0.776, + "2008": 0.773, + "2009": 0.77, + "2010": 0.768, + "2011": 0.767, + "2012": 0.767, + "2013": 0.768, + "2014": 0.77, + "2015": 0.77, + "2016": 0.77, + "2017": 0.775, + "2018": 0.779, + "2019": 0.782, + "2020": 0.77, + "2021": 0.725 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr116", + "Region": "Nagaland", + "1990": 0.813, + "1991": 0.82, + "1992": 0.828, + "1993": 0.811, + "1994": 0.795, + "1995": 0.779, + "1996": 0.763, + "1997": 0.747, + "1998": 0.731, + "1999": 0.715, + "2000": 0.717, + "2001": 0.719, + "2002": 0.722, + "2003": 0.724, + "2004": 0.726, + "2005": 0.728, + "2006": 0.73, + "2007": 0.736, + "2008": 0.743, + "2009": 0.75, + "2010": 0.757, + "2011": 0.765, + "2012": 0.774, + "2013": 0.784, + "2014": 0.795, + "2015": 0.804, + "2016": 0.813, + "2017": 0.818, + "2018": 0.822, + "2019": 0.825, + "2020": 0.813, + "2021": 0.767 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr124", + "Region": "New Delhi", + "1990": 0.666, + "1991": 0.673, + "1992": 0.68, + "1993": 0.687, + "1994": 0.695, + "1995": 0.703, + "1996": 0.711, + "1997": 0.719, + "1998": 0.728, + "1999": 0.736, + "2000": 0.743, + "2001": 0.749, + "2002": 0.757, + "2003": 0.764, + "2004": 0.77, + "2005": 0.777, + "2006": 0.783, + "2007": 0.785, + "2008": 0.787, + "2009": 0.789, + "2010": 0.792, + "2011": 0.795, + "2012": 0.8, + "2013": 0.805, + "2014": 0.812, + "2015": 0.817, + "2016": 0.821, + "2017": 0.827, + "2018": 0.83, + "2019": 0.834, + "2020": 0.821, + "2021": 0.775 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr117", + "Region": "Orissa", + "1990": 0.568, + "1991": 0.574, + "1992": 0.58, + "1993": 0.586, + "1994": 0.592, + "1995": 0.598, + "1996": 0.605, + "1997": 0.611, + "1998": 0.618, + "1999": 0.625, + "2000": 0.633, + "2001": 0.64, + "2002": 0.649, + "2003": 0.658, + "2004": 0.665, + "2005": 0.673, + "2006": 0.681, + "2007": 0.687, + "2008": 0.694, + "2009": 0.7, + "2010": 0.707, + "2011": 0.715, + "2012": 0.724, + "2013": 0.733, + "2014": 0.743, + "2015": 0.753, + "2016": 0.761, + "2017": 0.766, + "2018": 0.77, + "2019": 0.773, + "2020": 0.762, + "2021": 0.717 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr133", + "Region": "Puducherry", + "1990": 0.811, + "1991": 0.819, + "1992": 0.826, + "1993": 0.827, + "1994": 0.828, + "1995": 0.829, + "1996": 0.83, + "1997": 0.831, + "1998": 0.833, + "1999": 0.834, + "2000": 0.836, + "2001": 0.838, + "2002": 0.841, + "2003": 0.844, + "2004": 0.846, + "2005": 0.848, + "2006": 0.849, + "2007": 0.847, + "2008": 0.844, + "2009": 0.841, + "2010": 0.839, + "2011": 0.838, + "2012": 0.838, + "2013": 0.839, + "2014": 0.841, + "2015": 0.842, + "2016": 0.841, + "2017": 0.847, + "2018": 0.851, + "2019": 0.854, + "2020": 0.842, + "2021": 0.794 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr118", + "Region": "Punjab", + "1990": 0.685, + "1991": 0.692, + "1992": 0.698, + "1993": 0.7, + "1994": 0.701, + "1995": 0.703, + "1996": 0.705, + "1997": 0.706, + "1998": 0.708, + "1999": 0.71, + "2000": 0.718, + "2001": 0.725, + "2002": 0.734, + "2003": 0.742, + "2004": 0.749, + "2005": 0.757, + "2006": 0.764, + "2007": 0.767, + "2008": 0.77, + "2009": 0.773, + "2010": 0.776, + "2011": 0.781, + "2012": 0.787, + "2013": 0.793, + "2014": 0.8, + "2015": 0.806, + "2016": 0.811, + "2017": 0.817, + "2018": 0.82, + "2019": 0.824, + "2020": 0.812, + "2021": 0.765 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr119", + "Region": "Rajasthan", + "1990": 0.613, + "1991": 0.619, + "1992": 0.626, + "1993": 0.623, + "1994": 0.621, + "1995": 0.618, + "1996": 0.616, + "1997": 0.614, + "1998": 0.612, + "1999": 0.61, + "2000": 0.62, + "2001": 0.63, + "2002": 0.642, + "2003": 0.652, + "2004": 0.663, + "2005": 0.673, + "2006": 0.683, + "2007": 0.69, + "2008": 0.697, + "2009": 0.704, + "2010": 0.712, + "2011": 0.72, + "2012": 0.73, + "2013": 0.74, + "2014": 0.751, + "2015": 0.761, + "2016": 0.769, + "2017": 0.775, + "2018": 0.778, + "2019": 0.781, + "2020": 0.77, + "2021": 0.725 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr120", + "Region": "Sikkim", + "1990": 0.661, + "1991": 0.668, + "1992": 0.674, + "1993": 0.675, + "1994": 0.676, + "1995": 0.676, + "1996": 0.677, + "1997": 0.678, + "1998": 0.68, + "1999": 0.681, + "2000": 0.697, + "2001": 0.712, + "2002": 0.729, + "2003": 0.746, + "2004": 0.761, + "2005": 0.778, + "2006": 0.793, + "2007": 0.796, + "2008": 0.798, + "2009": 0.8, + "2010": 0.802, + "2011": 0.806, + "2012": 0.811, + "2013": 0.816, + "2014": 0.823, + "2015": 0.828, + "2016": 0.832, + "2017": 0.838, + "2018": 0.842, + "2019": 0.845, + "2020": 0.833, + "2021": 0.785 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr121", + "Region": "Tamil Nadu", + "1990": 0.635, + "1991": 0.641, + "1992": 0.647, + "1993": 0.658, + "1994": 0.668, + "1995": 0.679, + "1996": 0.689, + "1997": 0.7, + "1998": 0.711, + "1999": 0.722, + "2000": 0.731, + "2001": 0.74, + "2002": 0.75, + "2003": 0.76, + "2004": 0.769, + "2005": 0.778, + "2006": 0.787, + "2007": 0.79, + "2008": 0.794, + "2009": 0.797, + "2010": 0.801, + "2011": 0.806, + "2012": 0.812, + "2013": 0.818, + "2014": 0.826, + "2015": 0.832, + "2016": 0.838, + "2017": 0.843, + "2018": 0.847, + "2019": 0.851, + "2020": 0.838, + "2021": 0.791 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr130", + "Region": "Telangana", + "1990": 0.764, + "1991": 0.771, + "1992": 0.779, + "1993": 0.779, + "1994": 0.78, + "1995": 0.781, + "1996": 0.782, + "1997": 0.783, + "1998": 0.785, + "1999": 0.786, + "2000": 0.788, + "2001": 0.79, + "2002": 0.793, + "2003": 0.796, + "2004": 0.797, + "2005": 0.799, + "2006": 0.801, + "2007": 0.798, + "2008": 0.796, + "2009": 0.793, + "2010": 0.791, + "2011": 0.79, + "2012": 0.79, + "2013": 0.791, + "2014": 0.793, + "2015": 0.793, + "2016": 0.793, + "2017": 0.798, + "2018": 0.802, + "2019": 0.805, + "2020": 0.793, + "2021": 0.748 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr126", + "Region": "Tripura", + "1990": 0.6, + "1991": 0.606, + "1992": 0.612, + "1993": 0.626, + "1994": 0.641, + "1995": 0.655, + "1996": 0.669, + "1997": 0.684, + "1998": 0.699, + "1999": 0.713, + "2000": 0.715, + "2001": 0.716, + "2002": 0.718, + "2003": 0.72, + "2004": 0.721, + "2005": 0.722, + "2006": 0.723, + "2007": 0.731, + "2008": 0.739, + "2009": 0.747, + "2010": 0.755, + "2011": 0.765, + "2012": 0.775, + "2013": 0.786, + "2014": 0.798, + "2015": 0.809, + "2016": 0.819, + "2017": 0.825, + "2018": 0.829, + "2019": 0.832, + "2020": 0.82, + "2021": 0.773 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr123", + "Region": "Uttar Pradesh", + "1990": 0.536, + "1991": 0.542, + "1992": 0.548, + "1993": 0.555, + "1994": 0.562, + "1995": 0.569, + "1996": 0.576, + "1997": 0.584, + "1998": 0.591, + "1999": 0.599, + "2000": 0.607, + "2001": 0.614, + "2002": 0.622, + "2003": 0.63, + "2004": 0.637, + "2005": 0.645, + "2006": 0.652, + "2007": 0.656, + "2008": 0.66, + "2009": 0.664, + "2010": 0.669, + "2011": 0.675, + "2012": 0.681, + "2013": 0.688, + "2014": 0.696, + "2015": 0.703, + "2016": 0.709, + "2017": 0.714, + "2018": 0.718, + "2019": 0.721, + "2020": 0.71, + "2021": 0.667 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr127", + "Region": "Uttaranchal", + "1990": 0.749, + "1991": 0.757, + "1992": 0.764, + "1993": 0.764, + "1994": 0.766, + "1995": 0.766, + "1996": 0.767, + "1997": 0.769, + "1998": 0.77, + "1999": 0.771, + "2000": 0.774, + "2001": 0.775, + "2002": 0.778, + "2003": 0.781, + "2004": 0.782, + "2005": 0.784, + "2006": 0.786, + "2007": 0.783, + "2008": 0.781, + "2009": 0.778, + "2010": 0.776, + "2011": 0.775, + "2012": 0.775, + "2013": 0.776, + "2014": 0.778, + "2015": 0.778, + "2016": 0.778, + "2017": 0.783, + "2018": 0.787, + "2019": 0.79, + "2020": 0.778, + "2021": 0.733 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr122", + "Region": "West Bengal", + "1990": 0.613, + "1991": 0.62, + "1992": 0.626, + "1993": 0.637, + "1994": 0.649, + "1995": 0.66, + "1996": 0.672, + "1997": 0.684, + "1998": 0.695, + "1999": 0.707, + "2000": 0.712, + "2001": 0.716, + "2002": 0.722, + "2003": 0.727, + "2004": 0.731, + "2005": 0.736, + "2006": 0.74, + "2007": 0.745, + "2008": 0.75, + "2009": 0.755, + "2010": 0.76, + "2011": 0.767, + "2012": 0.775, + "2013": 0.783, + "2014": 0.792, + "2015": 0.8, + "2016": 0.807, + "2017": 0.813, + "2018": 0.816, + "2019": 0.82, + "2020": 0.807, + "2021": 0.761 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "National", + "GDLCODE": "IDNt", + "Region": "Total", + "1990": 0.664, + "1991": 0.67, + "1992": 0.679, + "1993": 0.686, + "1994": 0.69, + "1995": 0.696, + "1996": 0.698, + "1997": 0.704, + "1998": 0.707, + "1999": 0.711, + "2000": 0.714, + "2001": 0.719, + "2002": 0.725, + "2003": 0.729, + "2004": 0.704, + "2005": 0.733, + "2006": 0.737, + "2007": 0.741, + "2008": 0.742, + "2009": 0.746, + "2010": 0.749, + "2011": 0.751, + "2012": 0.753, + "2013": 0.758, + "2014": 0.762, + "2015": 0.765, + "2016": 0.766, + "2017": 0.768, + "2018": 0.774, + "2019": 0.777, + "2020": 0.751, + "2021": 0.732 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr116", + "Region": "Bali", + "1990": 0.723, + "1991": 0.729, + "1992": 0.738, + "1993": 0.746, + "1994": 0.75, + "1995": 0.756, + "1996": 0.758, + "1997": 0.764, + "1998": 0.772, + "1999": 0.781, + "2000": 0.788, + "2001": 0.798, + "2002": 0.808, + "2003": 0.817, + "2004": 0.775, + "2005": 0.792, + "2006": 0.783, + "2007": 0.773, + "2008": 0.772, + "2009": 0.775, + "2010": 0.776, + "2011": 0.777, + "2012": 0.778, + "2013": 0.779, + "2014": 0.78, + "2015": 0.779, + "2016": 0.777, + "2017": 0.775, + "2018": 0.782, + "2019": 0.784, + "2020": 0.758, + "2021": 0.739 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr109", + "Region": "Bangka Belitung", + "1990": 0.722, + "1991": 0.727, + "1992": 0.737, + "1993": 0.745, + "1994": 0.749, + "1995": 0.755, + "1996": 0.757, + "1997": 0.763, + "1998": 0.76, + "1999": 0.757, + "2000": 0.753, + "2001": 0.751, + "2002": 0.75, + "2003": 0.747, + "2004": 0.717, + "2005": 0.741, + "2006": 0.741, + "2007": 0.741, + "2008": 0.747, + "2009": 0.757, + "2010": 0.765, + "2011": 0.773, + "2012": 0.781, + "2013": 0.771, + "2014": 0.76, + "2015": 0.748, + "2016": 0.735, + "2017": 0.723, + "2018": 0.729, + "2019": 0.732, + "2020": 0.707, + "2021": 0.688 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr115", + "Region": "Banten", + "1990": 0.701, + "1991": 0.706, + "1992": 0.716, + "1993": 0.723, + "1994": 0.728, + "1995": 0.734, + "1996": 0.735, + "1997": 0.742, + "1998": 0.738, + "1999": 0.735, + "2000": 0.731, + "2001": 0.729, + "2002": 0.728, + "2003": 0.726, + "2004": 0.697, + "2005": 0.723, + "2006": 0.724, + "2007": 0.724, + "2008": 0.731, + "2009": 0.74, + "2010": 0.749, + "2011": 0.756, + "2012": 0.764, + "2013": 0.763, + "2014": 0.762, + "2015": 0.759, + "2016": 0.755, + "2017": 0.751, + "2018": 0.757, + "2019": 0.76, + "2020": 0.734, + "2021": 0.715 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr107", + "Region": "Bengkulu", + "1990": 0.582, + "1991": 0.587, + "1992": 0.595, + "1993": 0.602, + "1994": 0.605, + "1995": 0.611, + "1996": 0.612, + "1997": 0.618, + "1998": 0.631, + "1999": 0.644, + "2000": 0.656, + "2001": 0.67, + "2002": 0.685, + "2003": 0.698, + "2004": 0.673, + "2005": 0.702, + "2006": 0.706, + "2007": 0.71, + "2008": 0.72, + "2009": 0.734, + "2010": 0.747, + "2011": 0.759, + "2012": 0.771, + "2013": 0.776, + "2014": 0.781, + "2015": 0.784, + "2016": 0.787, + "2017": 0.79, + "2018": 0.796, + "2019": 0.799, + "2020": 0.772, + "2021": 0.752 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr112", + "Region": "Central Java", + "1990": 0.687, + "1991": 0.693, + "1992": 0.702, + "1993": 0.709, + "1994": 0.713, + "1995": 0.719, + "1996": 0.721, + "1997": 0.727, + "1998": 0.731, + "1999": 0.735, + "2000": 0.739, + "2001": 0.744, + "2002": 0.75, + "2003": 0.754, + "2004": 0.733, + "2005": 0.769, + "2006": 0.778, + "2007": 0.788, + "2008": 0.782, + "2009": 0.779, + "2010": 0.774, + "2011": 0.77, + "2012": 0.765, + "2013": 0.772, + "2014": 0.779, + "2015": 0.785, + "2016": 0.789, + "2017": 0.794, + "2018": 0.8, + "2019": 0.803, + "2020": 0.776, + "2021": 0.756 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr121", + "Region": "Central Kalimantan", + "1990": 0.668, + "1991": 0.673, + "1992": 0.682, + "1993": 0.69, + "1994": 0.694, + "1995": 0.7, + "1996": 0.701, + "1997": 0.707, + "1998": 0.713, + "1999": 0.719, + "2000": 0.724, + "2001": 0.731, + "2002": 0.739, + "2003": 0.746, + "2004": 0.726, + "2005": 0.762, + "2006": 0.772, + "2007": 0.782, + "2008": 0.769, + "2009": 0.758, + "2010": 0.747, + "2011": 0.735, + "2012": 0.723, + "2013": 0.732, + "2014": 0.741, + "2015": 0.748, + "2016": 0.754, + "2017": 0.76, + "2018": 0.767, + "2019": 0.769, + "2020": 0.743, + "2021": 0.724 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr125", + "Region": "Central Sulawesi", + "1990": 0.572, + "1991": 0.577, + "1992": 0.585, + "1993": 0.592, + "1994": 0.595, + "1995": 0.601, + "1996": 0.602, + "1997": 0.607, + "1998": 0.621, + "1999": 0.635, + "2000": 0.649, + "2001": 0.664, + "2002": 0.68, + "2003": 0.694, + "2004": 0.668, + "2005": 0.696, + "2006": 0.698, + "2007": 0.702, + "2008": 0.692, + "2009": 0.686, + "2010": 0.679, + "2011": 0.671, + "2012": 0.663, + "2013": 0.68, + "2014": 0.696, + "2015": 0.711, + "2016": 0.725, + "2017": 0.739, + "2018": 0.745, + "2019": 0.748, + "2020": 0.722, + "2021": 0.704 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr101", + "Region": "DI Aceh", + "1990": 0.69, + "1991": 0.696, + "1992": 0.705, + "1993": 0.712, + "1994": 0.716, + "1995": 0.722, + "1996": 0.724, + "1997": 0.73, + "1998": 0.731, + "1999": 0.732, + "2000": 0.732, + "2001": 0.734, + "2002": 0.737, + "2003": 0.738, + "2004": 0.714, + "2005": 0.744, + "2006": 0.749, + "2007": 0.755, + "2008": 0.748, + "2009": 0.745, + "2010": 0.741, + "2011": 0.736, + "2012": 0.731, + "2013": 0.739, + "2014": 0.747, + "2015": 0.754, + "2016": 0.759, + "2017": 0.765, + "2018": 0.771, + "2019": 0.774, + "2020": 0.748, + "2021": 0.729 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr113", + "Region": "DI Yogyakarta", + "1990": 0.756, + "1991": 0.762, + "1992": 0.772, + "1993": 0.78, + "1994": 0.784, + "1995": 0.791, + "1996": 0.793, + "1997": 0.799, + "1998": 0.799, + "1999": 0.8, + "2000": 0.8, + "2001": 0.802, + "2002": 0.805, + "2003": 0.806, + "2004": 0.777, + "2005": 0.807, + "2006": 0.81, + "2007": 0.813, + "2008": 0.805, + "2009": 0.801, + "2010": 0.795, + "2011": 0.79, + "2012": 0.784, + "2013": 0.79, + "2014": 0.795, + "2015": 0.799, + "2016": 0.802, + "2017": 0.805, + "2018": 0.812, + "2019": 0.815, + "2020": 0.788, + "2021": 0.768 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr110", + "Region": "DKI Jakarta", + "1990": 0.728, + "1991": 0.734, + "1992": 0.744, + "1993": 0.751, + "1994": 0.756, + "1995": 0.762, + "1996": 0.764, + "1997": 0.77, + "1998": 0.768, + "1999": 0.766, + "2000": 0.763, + "2001": 0.763, + "2002": 0.763, + "2003": 0.762, + "2004": 0.736, + "2005": 0.767, + "2006": 0.772, + "2007": 0.777, + "2008": 0.776, + "2009": 0.778, + "2010": 0.78, + "2011": 0.78, + "2012": 0.781, + "2013": 0.785, + "2014": 0.788, + "2015": 0.789, + "2016": 0.789, + "2017": 0.79, + "2018": 0.796, + "2019": 0.799, + "2020": 0.772, + "2021": 0.753 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr114", + "Region": "East Java", + "1990": 0.703, + "1991": 0.709, + "1992": 0.718, + "1993": 0.726, + "1994": 0.73, + "1995": 0.736, + "1996": 0.738, + "1997": 0.744, + "1998": 0.742, + "1999": 0.74, + "2000": 0.737, + "2001": 0.736, + "2002": 0.736, + "2003": 0.735, + "2004": 0.711, + "2005": 0.743, + "2006": 0.749, + "2007": 0.755, + "2008": 0.757, + "2009": 0.762, + "2010": 0.766, + "2011": 0.77, + "2012": 0.774, + "2013": 0.774, + "2014": 0.775, + "2015": 0.774, + "2016": 0.772, + "2017": 0.77, + "2018": 0.776, + "2019": 0.779, + "2020": 0.753, + "2021": 0.734 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr123", + "Region": "East Kalimantan", + "1990": 0.674, + "1991": 0.679, + "1992": 0.688, + "1993": 0.696, + "1994": 0.7, + "1995": 0.705, + "1996": 0.707, + "1997": 0.713, + "1998": 0.717, + "1999": 0.721, + "2000": 0.724, + "2001": 0.729, + "2002": 0.735, + "2003": 0.739, + "2004": 0.718, + "2005": 0.753, + "2006": 0.762, + "2007": 0.772, + "2008": 0.772, + "2009": 0.776, + "2010": 0.779, + "2011": 0.781, + "2012": 0.783, + "2013": 0.784, + "2014": 0.785, + "2015": 0.785, + "2016": 0.783, + "2017": 0.782, + "2018": 0.788, + "2019": 0.791, + "2020": 0.764, + "2021": 0.745 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr118", + "Region": "East Nusa Tenggara", + "1990": 0.626, + "1991": 0.631, + "1992": 0.64, + "1993": 0.647, + "1994": 0.651, + "1995": 0.656, + "1996": 0.658, + "1997": 0.664, + "1998": 0.667, + "1999": 0.671, + "2000": 0.674, + "2001": 0.679, + "2002": 0.684, + "2003": 0.688, + "2004": 0.659, + "2005": 0.681, + "2006": 0.68, + "2007": 0.678, + "2008": 0.685, + "2009": 0.695, + "2010": 0.703, + "2011": 0.711, + "2012": 0.719, + "2013": 0.725, + "2014": 0.731, + "2015": 0.735, + "2016": 0.738, + "2017": 0.741, + "2018": 0.748, + "2019": 0.75, + "2020": 0.725, + "2021": 0.706 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr119", + "Region": "East Timor", + "1990": 0.711, + "1991": 0.717, + "1992": 0.726, + "1993": 0.734, + "1994": 0.738, + "1995": 0.744, + "1996": 0.746, + "1997": 0.752, + "1998": 0.749, + "1999": 0.746, + "2000": 0.742, + "2001": 0.74, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": null, + "2011": null, + "2012": null, + "2013": null, + "2014": null, + "2015": null, + "2016": null, + "2017": null, + "2018": null, + "2019": null, + "2020": null, + "2021": null + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr128", + "Region": "Gorontalo", + "1990": 0.619, + "1991": 0.624, + "1992": 0.633, + "1993": 0.639, + "1994": 0.643, + "1995": 0.649, + "1996": 0.651, + "1997": 0.656, + "1998": 0.653, + "1999": 0.65, + "2000": 0.647, + "2001": 0.645, + "2002": 0.644, + "2003": 0.641, + "2004": 0.63, + "2005": 0.669, + "2006": 0.685, + "2007": 0.701, + "2008": 0.695, + "2009": 0.692, + "2010": 0.687, + "2011": 0.682, + "2012": 0.678, + "2013": 0.684, + "2014": 0.69, + "2015": 0.695, + "2016": 0.699, + "2017": 0.703, + "2018": 0.709, + "2019": 0.711, + "2020": 0.687, + "2021": 0.669 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr130", + "Region": "Irian Jaya (Papua and Papua Barat)", + "1990": 0.622, + "1991": 0.627, + "1992": 0.636, + "1993": 0.643, + "1994": 0.646, + "1995": 0.652, + "1996": 0.654, + "1997": 0.659, + "1998": 0.663, + "1999": 0.667, + "2000": 0.67, + "2001": 0.675, + "2002": 0.681, + "2003": 0.685, + "2004": 0.665, + "2005": 0.697, + "2006": 0.705, + "2007": 0.713, + "2008": 0.69, + "2009": 0.671, + "2010": 0.651, + "2011": 0.63, + "2012": 0.609, + "2013": 0.622, + "2014": 0.635, + "2015": 0.646, + "2016": 0.657, + "2017": 0.668, + "2018": 0.673, + "2019": 0.676, + "2020": 0.652, + "2021": 0.635 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr105", + "Region": "Jambi", + "1990": 0.641, + "1991": 0.646, + "1992": 0.655, + "1993": 0.662, + "1994": 0.666, + "1995": 0.671, + "1996": 0.673, + "1997": 0.679, + "1998": 0.688, + "1999": 0.697, + "2000": 0.706, + "2001": 0.716, + "2002": 0.728, + "2003": 0.737, + "2004": 0.712, + "2005": 0.742, + "2006": 0.746, + "2007": 0.751, + "2008": 0.753, + "2009": 0.758, + "2010": 0.762, + "2011": 0.765, + "2012": 0.769, + "2013": 0.768, + "2014": 0.767, + "2015": 0.764, + "2016": 0.761, + "2017": 0.758, + "2018": 0.764, + "2019": 0.767, + "2020": 0.741, + "2021": 0.722 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr108", + "Region": "Lampung", + "1990": 0.677, + "1991": 0.683, + "1992": 0.692, + "1993": 0.7, + "1994": 0.704, + "1995": 0.709, + "1996": 0.711, + "1997": 0.717, + "1998": 0.715, + "1999": 0.713, + "2000": 0.71, + "2001": 0.709, + "2002": 0.709, + "2003": 0.707, + "2004": 0.685, + "2005": 0.717, + "2006": 0.724, + "2007": 0.731, + "2008": 0.736, + "2009": 0.745, + "2010": 0.752, + "2011": 0.758, + "2012": 0.765, + "2013": 0.767, + "2014": 0.769, + "2015": 0.769, + "2016": 0.768, + "2017": 0.768, + "2018": 0.774, + "2019": 0.777, + "2020": 0.751, + "2021": 0.732 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr129", + "Region": "Maluku", + "1990": 0.713, + "1991": 0.719, + "1992": 0.728, + "1993": 0.736, + "1994": 0.74, + "1995": 0.746, + "1996": 0.748, + "1997": 0.754, + "1998": 0.743, + "1999": 0.733, + "2000": 0.722, + "2001": 0.713, + "2002": 0.705, + "2003": 0.695, + "2004": 0.66, + "2005": 0.678, + "2006": 0.672, + "2007": 0.667, + "2008": 0.67, + "2009": 0.677, + "2010": 0.683, + "2011": 0.688, + "2012": 0.693, + "2013": 0.698, + "2014": 0.703, + "2015": 0.707, + "2016": 0.709, + "2017": 0.712, + "2018": 0.718, + "2019": 0.72, + "2020": 0.695, + "2021": 0.677 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr124", + "Region": "North Sulawesi", + "1990": 0.685, + "1991": 0.69, + "1992": 0.699, + "1993": 0.707, + "1994": 0.711, + "1995": 0.717, + "1996": 0.719, + "1997": 0.725, + "1998": 0.733, + "1999": 0.742, + "2000": 0.75, + "2001": 0.76, + "2002": 0.771, + "2003": 0.78, + "2004": 0.745, + "2005": 0.767, + "2006": 0.763, + "2007": 0.759, + "2008": 0.759, + "2009": 0.763, + "2010": 0.765, + "2011": 0.766, + "2012": 0.768, + "2013": 0.764, + "2014": 0.759, + "2015": 0.753, + "2016": 0.746, + "2017": 0.74, + "2018": 0.746, + "2019": 0.749, + "2020": 0.723, + "2021": 0.704 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr102", + "Region": "North Sumatra", + "1990": 0.662, + "1991": 0.667, + "1992": 0.676, + "1993": 0.683, + "1994": 0.687, + "1995": 0.693, + "1996": 0.695, + "1997": 0.701, + "1998": 0.704, + "1999": 0.707, + "2000": 0.709, + "2001": 0.714, + "2002": 0.719, + "2003": 0.722, + "2004": 0.69, + "2005": 0.712, + "2006": 0.709, + "2007": 0.706, + "2008": 0.708, + "2009": 0.714, + "2010": 0.718, + "2011": 0.722, + "2012": 0.726, + "2013": 0.735, + "2014": 0.744, + "2015": 0.751, + "2016": 0.757, + "2017": 0.764, + "2018": 0.77, + "2019": 0.773, + "2020": 0.747, + "2021": 0.728 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr104", + "Region": "Riau (incl. Riau islands)", + "1990": 0.641, + "1991": 0.646, + "1992": 0.655, + "1993": 0.662, + "1994": 0.666, + "1995": 0.671, + "1996": 0.673, + "1997": 0.679, + "1998": 0.684, + "1999": 0.69, + "2000": 0.696, + "2001": 0.703, + "2002": 0.71, + "2003": 0.716, + "2004": 0.697, + "2005": 0.731, + "2006": 0.74, + "2007": 0.75, + "2008": 0.755, + "2009": 0.763, + "2010": 0.769, + "2011": 0.776, + "2012": 0.782, + "2013": 0.782, + "2014": 0.781, + "2015": 0.779, + "2016": 0.776, + "2017": 0.774, + "2018": 0.78, + "2019": 0.783, + "2020": 0.757, + "2021": 0.737 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr122", + "Region": "South Kalimantan", + "1990": 0.631, + "1991": 0.636, + "1992": 0.645, + "1993": 0.652, + "1994": 0.656, + "1995": 0.662, + "1996": 0.663, + "1997": 0.669, + "1998": 0.678, + "1999": 0.687, + "2000": 0.695, + "2001": 0.705, + "2002": 0.715, + "2003": 0.724, + "2004": 0.687, + "2005": 0.704, + "2006": 0.696, + "2007": 0.688, + "2008": 0.693, + "2009": 0.702, + "2010": 0.709, + "2011": 0.716, + "2012": 0.723, + "2013": 0.73, + "2014": 0.736, + "2015": 0.741, + "2016": 0.744, + "2017": 0.748, + "2018": 0.755, + "2019": 0.757, + "2020": 0.731, + "2021": 0.713 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr126", + "Region": "South Sulawesi (incl Sulawesi Barat)", + "1990": 0.647, + "1991": 0.653, + "1992": 0.662, + "1993": 0.669, + "1994": 0.673, + "1995": 0.678, + "1996": 0.68, + "1997": 0.686, + "1998": 0.686, + "1999": 0.686, + "2000": 0.686, + "2001": 0.688, + "2002": 0.69, + "2003": 0.691, + "2004": 0.672, + "2005": 0.706, + "2006": 0.715, + "2007": 0.725, + "2008": 0.729, + "2009": 0.737, + "2010": 0.744, + "2011": 0.75, + "2012": 0.756, + "2013": 0.76, + "2014": 0.763, + "2015": 0.764, + "2016": 0.765, + "2017": 0.766, + "2018": 0.772, + "2019": 0.775, + "2020": 0.749, + "2021": 0.73 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr106", + "Region": "South Sumatra", + "1990": 0.665, + "1991": 0.67, + "1992": 0.679, + "1993": 0.686, + "1994": 0.69, + "1995": 0.696, + "1996": 0.698, + "1997": 0.704, + "1998": 0.71, + "1999": 0.716, + "2000": 0.721, + "2001": 0.728, + "2002": 0.736, + "2003": 0.743, + "2004": 0.713, + "2005": 0.739, + "2006": 0.739, + "2007": 0.74, + "2008": 0.743, + "2009": 0.751, + "2010": 0.757, + "2011": 0.762, + "2012": 0.768, + "2013": 0.769, + "2014": 0.771, + "2015": 0.77, + "2016": 0.769, + "2017": 0.769, + "2018": 0.775, + "2019": 0.778, + "2020": 0.751, + "2021": 0.732 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr127", + "Region": "Southeast Sulawesi", + "1990": 0.618, + "1991": 0.624, + "1992": 0.632, + "1993": 0.639, + "1994": 0.643, + "1995": 0.648, + "1996": 0.65, + "1997": 0.656, + "1998": 0.654, + "1999": 0.653, + "2000": 0.651, + "2001": 0.651, + "2002": 0.651, + "2003": 0.65, + "2004": 0.64, + "2005": 0.681, + "2006": 0.699, + "2007": 0.717, + "2008": 0.717, + "2009": 0.72, + "2010": 0.722, + "2011": 0.723, + "2012": 0.724, + "2013": 0.728, + "2014": 0.731, + "2015": 0.733, + "2016": 0.734, + "2017": 0.735, + "2018": 0.741, + "2019": 0.744, + "2020": 0.719, + "2021": 0.7 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr111", + "Region": "West Java", + "1990": 0.651, + "1991": 0.656, + "1992": 0.665, + "1993": 0.672, + "1994": 0.676, + "1995": 0.682, + "1996": 0.684, + "1997": 0.69, + "1998": 0.697, + "1999": 0.705, + "2000": 0.713, + "2001": 0.722, + "2002": 0.732, + "2003": 0.74, + "2004": 0.713, + "2005": 0.741, + "2006": 0.744, + "2007": 0.747, + "2008": 0.749, + "2009": 0.754, + "2010": 0.758, + "2011": 0.761, + "2012": 0.764, + "2013": 0.768, + "2014": 0.771, + "2015": 0.773, + "2016": 0.774, + "2017": 0.775, + "2018": 0.782, + "2019": 0.784, + "2020": 0.758, + "2021": 0.739 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr120", + "Region": "West Kalimantan", + "1990": 0.63, + "1991": 0.636, + "1992": 0.644, + "1993": 0.651, + "1994": 0.655, + "1995": 0.661, + "1996": 0.663, + "1997": 0.668, + "1998": 0.674, + "1999": 0.681, + "2000": 0.687, + "2001": 0.694, + "2002": 0.702, + "2003": 0.709, + "2004": 0.685, + "2005": 0.714, + "2006": 0.718, + "2007": 0.723, + "2008": 0.73, + "2009": 0.741, + "2010": 0.751, + "2011": 0.759, + "2012": 0.768, + "2013": 0.774, + "2014": 0.78, + "2015": 0.784, + "2016": 0.787, + "2017": 0.791, + "2018": 0.797, + "2019": 0.8, + "2020": 0.773, + "2021": 0.754 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr117", + "Region": "West Nusa Tenggara", + "1990": 0.532, + "1991": 0.537, + "1992": 0.544, + "1993": 0.551, + "1994": 0.554, + "1995": 0.559, + "1996": 0.561, + "1997": 0.566, + "1998": 0.576, + "1999": 0.587, + "2000": 0.596, + "2001": 0.608, + "2002": 0.62, + "2003": 0.631, + "2004": 0.611, + "2005": 0.641, + "2006": 0.648, + "2007": 0.655, + "2008": 0.66, + "2009": 0.667, + "2010": 0.673, + "2011": 0.679, + "2012": 0.685, + "2013": 0.703, + "2014": 0.722, + "2015": 0.738, + "2016": 0.754, + "2017": 0.77, + "2018": 0.777, + "2019": 0.779, + "2020": 0.753, + "2021": 0.734 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr103", + "Region": "West Sumatra", + "1990": 0.617, + "1991": 0.622, + "1992": 0.63, + "1993": 0.637, + "1994": 0.641, + "1995": 0.647, + "1996": 0.648, + "1997": 0.654, + "1998": 0.664, + "1999": 0.675, + "2000": 0.685, + "2001": 0.696, + "2002": 0.709, + "2003": 0.72, + "2004": 0.69, + "2005": 0.715, + "2006": 0.715, + "2007": 0.716, + "2008": 0.726, + "2009": 0.739, + "2010": 0.751, + "2011": 0.763, + "2012": 0.775, + "2013": 0.779, + "2014": 0.782, + "2015": 0.784, + "2016": 0.785, + "2017": 0.787, + "2018": 0.793, + "2019": 0.796, + "2020": 0.769, + "2021": 0.75 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "National", + "GDLCODE": "IRNt", + "Region": "Total", + "1990": 0.683, + "1991": 0.715, + "1992": 0.72, + "1993": 0.725, + "1994": 0.73, + "1995": 0.735, + "1996": 0.74, + "1997": 0.744, + "1998": 0.75, + "1999": 0.758, + "2000": 0.764, + "2001": 0.769, + "2002": 0.776, + "2003": 0.767, + "2004": 0.79, + "2005": 0.798, + "2006": 0.804, + "2007": 0.812, + "2008": 0.81, + "2009": 0.811, + "2010": 0.816, + "2011": 0.826, + "2012": 0.834, + "2013": 0.838, + "2014": 0.843, + "2015": 0.848, + "2016": 0.855, + "2017": 0.861, + "2018": 0.865, + "2019": 0.863, + "2020": 0.844, + "2021": 0.829 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr125", + "Region": "Ardebil", + "1990": 0.654, + "1991": 0.685, + "1992": 0.69, + "1993": 0.695, + "1994": 0.7, + "1995": 0.705, + "1996": 0.709, + "1997": 0.713, + "1998": 0.719, + "1999": 0.728, + "2000": 0.733, + "2001": 0.737, + "2002": 0.745, + "2003": 0.735, + "2004": 0.758, + "2005": 0.765, + "2006": 0.772, + "2007": 0.776, + "2008": 0.77, + "2009": 0.768, + "2010": 0.77, + "2011": 0.775, + "2012": 0.783, + "2013": 0.787, + "2014": 0.792, + "2015": 0.797, + "2016": 0.804, + "2017": 0.809, + "2018": 0.812, + "2019": 0.811, + "2020": 0.792, + "2021": 0.778 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr119", + "Region": "Bushehr", + "1990": 0.733, + "1991": 0.767, + "1992": 0.772, + "1993": 0.778, + "1994": 0.783, + "1995": 0.788, + "1996": 0.793, + "1997": 0.797, + "1998": 0.803, + "1999": 0.813, + "2000": 0.819, + "2001": 0.823, + "2002": 0.831, + "2003": 0.821, + "2004": 0.846, + "2005": 0.854, + "2006": 0.861, + "2007": 0.856, + "2008": 0.842, + "2009": 0.832, + "2010": 0.826, + "2011": 0.825, + "2012": 0.832, + "2013": 0.836, + "2014": 0.842, + "2015": 0.847, + "2016": 0.854, + "2017": 0.86, + "2018": 0.863, + "2019": 0.862, + "2020": 0.842, + "2021": 0.828 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr115", + "Region": "Chaharmahal and Bakhtiyari", + "1990": 0.721, + "1991": 0.755, + "1992": 0.76, + "1993": 0.766, + "1994": 0.771, + "1995": 0.776, + "1996": 0.781, + "1997": 0.785, + "1998": 0.791, + "1999": 0.8, + "2000": 0.806, + "2001": 0.811, + "2002": 0.819, + "2003": 0.809, + "2004": 0.833, + "2005": 0.841, + "2006": 0.848, + "2007": 0.849, + "2008": 0.84, + "2009": 0.835, + "2010": 0.835, + "2011": 0.839, + "2012": 0.847, + "2013": 0.851, + "2014": 0.856, + "2015": 0.861, + "2016": 0.869, + "2017": 0.874, + "2018": 0.878, + "2019": 0.876, + "2020": 0.857, + "2021": 0.842 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr104", + "Region": "EastAzarbayejan", + "1990": 0.717, + "1991": 0.75, + "1992": 0.755, + "1993": 0.761, + "1994": 0.767, + "1995": 0.772, + "1996": 0.776, + "1997": 0.781, + "1998": 0.787, + "1999": 0.796, + "2000": 0.802, + "2001": 0.806, + "2002": 0.814, + "2003": 0.804, + "2004": 0.829, + "2005": 0.836, + "2006": 0.843, + "2007": 0.842, + "2008": 0.831, + "2009": 0.824, + "2010": 0.822, + "2011": 0.823, + "2012": 0.831, + "2013": 0.835, + "2014": 0.84, + "2015": 0.845, + "2016": 0.853, + "2017": 0.858, + "2018": 0.862, + "2019": 0.86, + "2020": 0.841, + "2021": 0.826 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr111", + "Region": "Esfahan", + "1990": 0.688, + "1991": 0.72, + "1992": 0.725, + "1993": 0.731, + "1994": 0.736, + "1995": 0.741, + "1996": 0.745, + "1997": 0.75, + "1998": 0.756, + "1999": 0.764, + "2000": 0.77, + "2001": 0.775, + "2002": 0.782, + "2003": 0.773, + "2004": 0.796, + "2005": 0.804, + "2006": 0.81, + "2007": 0.818, + "2008": 0.816, + "2009": 0.817, + "2010": 0.822, + "2011": 0.831, + "2012": 0.839, + "2013": 0.843, + "2014": 0.848, + "2015": 0.854, + "2016": 0.861, + "2017": 0.867, + "2018": 0.87, + "2019": 0.869, + "2020": 0.849, + "2021": 0.834 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr108", + "Region": "Fars", + "1990": 0.645, + "1991": 0.676, + "1992": 0.68, + "1993": 0.686, + "1994": 0.691, + "1995": 0.695, + "1996": 0.699, + "1997": 0.704, + "1998": 0.709, + "1999": 0.718, + "2000": 0.723, + "2001": 0.727, + "2002": 0.735, + "2003": 0.725, + "2004": 0.748, + "2005": 0.755, + "2006": 0.762, + "2007": 0.778, + "2008": 0.784, + "2009": 0.794, + "2010": 0.807, + "2011": 0.825, + "2012": 0.832, + "2013": 0.836, + "2014": 0.842, + "2015": 0.847, + "2016": 0.854, + "2017": 0.86, + "2018": 0.863, + "2019": 0.862, + "2020": 0.842, + "2021": 0.828 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr102", + "Region": "Gilan", + "1990": 0.718, + "1991": 0.752, + "1992": 0.757, + "1993": 0.762, + "1994": 0.768, + "1995": 0.773, + "1996": 0.777, + "1997": 0.782, + "1998": 0.788, + "1999": 0.797, + "2000": 0.803, + "2001": 0.807, + "2002": 0.815, + "2003": 0.805, + "2004": 0.83, + "2005": 0.837, + "2006": 0.844, + "2007": 0.847, + "2008": 0.841, + "2009": 0.837, + "2010": 0.839, + "2011": 0.844, + "2012": 0.852, + "2013": 0.856, + "2014": 0.861, + "2015": 0.867, + "2016": 0.874, + "2017": 0.88, + "2018": 0.884, + "2019": 0.882, + "2020": 0.862, + "2021": 0.847 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr128", + "Region": "Golestan", + "1990": 0.725, + "1991": 0.758, + "1992": 0.763, + "1993": 0.769, + "1994": 0.774, + "1995": 0.779, + "1996": 0.784, + "1997": 0.789, + "1998": 0.795, + "1999": 0.804, + "2000": 0.81, + "2001": 0.814, + "2002": 0.822, + "2003": 0.812, + "2004": 0.837, + "2005": 0.844, + "2006": 0.851, + "2007": 0.852, + "2008": 0.842, + "2009": 0.836, + "2010": 0.835, + "2011": 0.838, + "2012": 0.845, + "2013": 0.85, + "2014": 0.855, + "2015": 0.86, + "2016": 0.867, + "2017": 0.873, + "2018": 0.877, + "2019": 0.875, + "2020": 0.856, + "2021": 0.841 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr114", + "Region": "Hamedan", + "1990": 0.714, + "1991": 0.747, + "1992": 0.752, + "1993": 0.758, + "1994": 0.763, + "1995": 0.768, + "1996": 0.773, + "1997": 0.777, + "1998": 0.783, + "1999": 0.792, + "2000": 0.798, + "2001": 0.803, + "2002": 0.81, + "2003": 0.801, + "2004": 0.825, + "2005": 0.833, + "2006": 0.839, + "2007": 0.84, + "2008": 0.831, + "2009": 0.825, + "2010": 0.824, + "2011": 0.827, + "2012": 0.835, + "2013": 0.839, + "2014": 0.844, + "2015": 0.849, + "2016": 0.856, + "2017": 0.862, + "2018": 0.866, + "2019": 0.864, + "2020": 0.845, + "2021": 0.83 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr123", + "Region": "Hormozgan", + "1990": 0.702, + "1991": 0.735, + "1992": 0.74, + "1993": 0.745, + "1994": 0.751, + "1995": 0.756, + "1996": 0.76, + "1997": 0.765, + "1998": 0.77, + "1999": 0.779, + "2000": 0.785, + "2001": 0.79, + "2002": 0.797, + "2003": 0.788, + "2004": 0.812, + "2005": 0.819, + "2006": 0.826, + "2007": 0.829, + "2008": 0.823, + "2009": 0.82, + "2010": 0.822, + "2011": 0.827, + "2012": 0.835, + "2013": 0.839, + "2014": 0.844, + "2015": 0.85, + "2016": 0.857, + "2017": 0.863, + "2018": 0.866, + "2019": 0.865, + "2020": 0.845, + "2021": 0.831 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr117", + "Region": "Ilam", + "1990": 0.712, + "1991": 0.746, + "1992": 0.751, + "1993": 0.756, + "1994": 0.762, + "1995": 0.767, + "1996": 0.771, + "1997": 0.776, + "1998": 0.782, + "1999": 0.791, + "2000": 0.797, + "2001": 0.801, + "2002": 0.809, + "2003": 0.799, + "2004": 0.823, + "2005": 0.831, + "2006": 0.838, + "2007": 0.842, + "2008": 0.837, + "2009": 0.835, + "2010": 0.838, + "2011": 0.844, + "2012": 0.852, + "2013": 0.856, + "2014": 0.862, + "2015": 0.867, + "2016": 0.874, + "2017": 0.88, + "2018": 0.884, + "2019": 0.882, + "2020": 0.862, + "2021": 0.848 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr109", + "Region": "Kerman", + "1990": 0.713, + "1991": 0.747, + "1992": 0.752, + "1993": 0.757, + "1994": 0.763, + "1995": 0.768, + "1996": 0.772, + "1997": 0.777, + "1998": 0.783, + "1999": 0.792, + "2000": 0.798, + "2001": 0.802, + "2002": 0.81, + "2003": 0.8, + "2004": 0.825, + "2005": 0.832, + "2006": 0.839, + "2007": 0.84, + "2008": 0.831, + "2009": 0.825, + "2010": 0.825, + "2011": 0.828, + "2012": 0.836, + "2013": 0.84, + "2014": 0.845, + "2015": 0.85, + "2016": 0.857, + "2017": 0.863, + "2018": 0.867, + "2019": 0.865, + "2020": 0.846, + "2021": 0.831 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr106", + "Region": "Kermanshah", + "1990": 0.712, + "1991": 0.746, + "1992": 0.751, + "1993": 0.756, + "1994": 0.762, + "1995": 0.767, + "1996": 0.771, + "1997": 0.776, + "1998": 0.782, + "1999": 0.791, + "2000": 0.797, + "2001": 0.801, + "2002": 0.809, + "2003": 0.799, + "2004": 0.823, + "2005": 0.831, + "2006": 0.838, + "2007": 0.84, + "2008": 0.833, + "2009": 0.829, + "2010": 0.83, + "2011": 0.834, + "2012": 0.842, + "2013": 0.846, + "2014": 0.852, + "2015": 0.857, + "2016": 0.864, + "2017": 0.87, + "2018": 0.873, + "2019": 0.872, + "2020": 0.852, + "2021": 0.837 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr110", + "Region": "Khorasan-e-Razavi", + "1990": 0.628, + "1991": 0.658, + "1992": 0.663, + "1993": 0.668, + "1994": 0.673, + "1995": 0.677, + "1996": 0.682, + "1997": 0.686, + "1998": 0.691, + "1999": 0.699, + "2000": 0.705, + "2001": 0.709, + "2002": 0.716, + "2003": 0.707, + "2004": 0.73, + "2005": 0.736, + "2006": 0.743, + "2007": 0.761, + "2008": 0.77, + "2009": 0.782, + "2010": 0.798, + "2011": 0.818, + "2012": 0.825, + "2013": 0.829, + "2014": 0.834, + "2015": 0.84, + "2016": 0.847, + "2017": 0.853, + "2018": 0.856, + "2019": 0.855, + "2020": 0.835, + "2021": 0.821 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr107", + "Region": "Khuzestan", + "1990": 0.69, + "1991": 0.723, + "1992": 0.728, + "1993": 0.733, + "1994": 0.738, + "1995": 0.743, + "1996": 0.748, + "1997": 0.752, + "1998": 0.758, + "1999": 0.767, + "2000": 0.773, + "2001": 0.777, + "2002": 0.784, + "2003": 0.775, + "2004": 0.799, + "2005": 0.806, + "2006": 0.813, + "2007": 0.82, + "2008": 0.816, + "2009": 0.817, + "2010": 0.821, + "2011": 0.83, + "2012": 0.838, + "2013": 0.842, + "2014": 0.847, + "2015": 0.852, + "2016": 0.86, + "2017": 0.865, + "2018": 0.869, + "2019": 0.867, + "2020": 0.848, + "2021": 0.833 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr118", + "Region": "Kohgiluyeh and Boyerahmad", + "1990": 0.707, + "1991": 0.74, + "1992": 0.745, + "1993": 0.751, + "1994": 0.756, + "1995": 0.761, + "1996": 0.766, + "1997": 0.77, + "1998": 0.776, + "1999": 0.785, + "2000": 0.791, + "2001": 0.795, + "2002": 0.803, + "2003": 0.793, + "2004": 0.818, + "2005": 0.825, + "2006": 0.832, + "2007": 0.833, + "2008": 0.824, + "2009": 0.818, + "2010": 0.818, + "2011": 0.821, + "2012": 0.829, + "2013": 0.833, + "2014": 0.838, + "2015": 0.843, + "2016": 0.85, + "2017": 0.856, + "2018": 0.859, + "2019": 0.858, + "2020": 0.838, + "2021": 0.824 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr113", + "Region": "Kordestan", + "1990": 0.657, + "1991": 0.689, + "1992": 0.694, + "1993": 0.699, + "1994": 0.704, + "1995": 0.709, + "1996": 0.713, + "1997": 0.717, + "1998": 0.723, + "1999": 0.731, + "2000": 0.737, + "2001": 0.741, + "2002": 0.749, + "2003": 0.739, + "2004": 0.762, + "2005": 0.769, + "2006": 0.776, + "2007": 0.78, + "2008": 0.775, + "2009": 0.773, + "2010": 0.775, + "2011": 0.781, + "2012": 0.789, + "2013": 0.793, + "2014": 0.798, + "2015": 0.803, + "2016": 0.81, + "2017": 0.815, + "2018": 0.819, + "2019": 0.817, + "2020": 0.798, + "2021": 0.784 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr116", + "Region": "Lorestan", + "1990": 0.712, + "1991": 0.745, + "1992": 0.75, + "1993": 0.756, + "1994": 0.761, + "1995": 0.766, + "1996": 0.771, + "1997": 0.776, + "1998": 0.781, + "1999": 0.79, + "2000": 0.797, + "2001": 0.801, + "2002": 0.809, + "2003": 0.799, + "2004": 0.823, + "2005": 0.831, + "2006": 0.838, + "2007": 0.838, + "2008": 0.828, + "2009": 0.822, + "2010": 0.821, + "2011": 0.823, + "2012": 0.831, + "2013": 0.835, + "2014": 0.84, + "2015": 0.846, + "2016": 0.853, + "2017": 0.859, + "2018": 0.862, + "2019": 0.861, + "2020": 0.841, + "2021": 0.826 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr101", + "Region": "Markazi", + "1990": 0.679, + "1991": 0.711, + "1992": 0.716, + "1993": 0.722, + "1994": 0.727, + "1995": 0.732, + "1996": 0.736, + "1997": 0.741, + "1998": 0.746, + "1999": 0.755, + "2000": 0.761, + "2001": 0.765, + "2002": 0.773, + "2003": 0.763, + "2004": 0.787, + "2005": 0.794, + "2006": 0.801, + "2007": 0.809, + "2008": 0.807, + "2009": 0.808, + "2010": 0.814, + "2011": 0.824, + "2012": 0.831, + "2013": 0.835, + "2014": 0.84, + "2015": 0.846, + "2016": 0.853, + "2017": 0.859, + "2018": 0.862, + "2019": 0.861, + "2020": 0.841, + "2021": 0.827 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr103", + "Region": "Mazandaran", + "1990": 0.757, + "1991": 0.792, + "1992": 0.797, + "1993": 0.803, + "1994": 0.809, + "1995": 0.814, + "1996": 0.819, + "1997": 0.824, + "1998": 0.83, + "1999": 0.839, + "2000": 0.846, + "2001": 0.85, + "2002": 0.858, + "2003": 0.848, + "2004": 0.873, + "2005": 0.881, + "2006": 0.888, + "2007": 0.883, + "2008": 0.867, + "2009": 0.856, + "2010": 0.849, + "2011": 0.846, + "2012": 0.854, + "2013": 0.858, + "2014": 0.863, + "2015": 0.869, + "2016": 0.876, + "2017": 0.882, + "2018": 0.886, + "2019": 0.884, + "2020": 0.864, + "2021": 0.849 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr129", + "Region": "North Khorasan", + "1990": 0.611, + "1991": 0.641, + "1992": 0.645, + "1993": 0.65, + "1994": 0.655, + "1995": 0.66, + "1996": 0.664, + "1997": 0.668, + "1998": 0.673, + "1999": 0.681, + "2000": 0.687, + "2001": 0.691, + "2002": 0.698, + "2003": 0.689, + "2004": 0.711, + "2005": 0.718, + "2006": 0.724, + "2007": 0.745, + "2008": 0.757, + "2009": 0.771, + "2010": 0.79, + "2011": 0.812, + "2012": 0.82, + "2013": 0.824, + "2014": 0.829, + "2015": 0.834, + "2016": 0.841, + "2017": 0.847, + "2018": 0.85, + "2019": 0.849, + "2020": 0.829, + "2021": 0.815 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr127", + "Region": "Qazvin", + "1990": 0.719, + "1991": 0.753, + "1992": 0.758, + "1993": 0.764, + "1994": 0.769, + "1995": 0.774, + "1996": 0.778, + "1997": 0.783, + "1998": 0.789, + "1999": 0.798, + "2000": 0.804, + "2001": 0.809, + "2002": 0.816, + "2003": 0.806, + "2004": 0.831, + "2005": 0.839, + "2006": 0.846, + "2007": 0.846, + "2008": 0.836, + "2009": 0.829, + "2010": 0.828, + "2011": 0.83, + "2012": 0.838, + "2013": 0.842, + "2014": 0.847, + "2015": 0.853, + "2016": 0.86, + "2017": 0.866, + "2018": 0.869, + "2019": 0.868, + "2020": 0.848, + "2021": 0.833 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr126", + "Region": "Qom", + "1990": 0.72, + "1991": 0.754, + "1992": 0.759, + "1993": 0.765, + "1994": 0.77, + "1995": 0.775, + "1996": 0.779, + "1997": 0.784, + "1998": 0.79, + "1999": 0.799, + "2000": 0.805, + "2001": 0.81, + "2002": 0.817, + "2003": 0.807, + "2004": 0.832, + "2005": 0.84, + "2006": 0.847, + "2007": 0.848, + "2008": 0.84, + "2009": 0.836, + "2010": 0.836, + "2011": 0.84, + "2012": 0.848, + "2013": 0.852, + "2014": 0.857, + "2015": 0.863, + "2016": 0.87, + "2017": 0.876, + "2018": 0.879, + "2019": 0.878, + "2020": 0.858, + "2021": 0.843 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr121", + "Region": "Semnan", + "1990": 0.712, + "1991": 0.745, + "1992": 0.75, + "1993": 0.756, + "1994": 0.761, + "1995": 0.766, + "1996": 0.771, + "1997": 0.775, + "1998": 0.781, + "1999": 0.79, + "2000": 0.797, + "2001": 0.801, + "2002": 0.809, + "2003": 0.799, + "2004": 0.823, + "2005": 0.831, + "2006": 0.838, + "2007": 0.839, + "2008": 0.83, + "2009": 0.825, + "2010": 0.825, + "2011": 0.828, + "2012": 0.836, + "2013": 0.84, + "2014": 0.845, + "2015": 0.85, + "2016": 0.858, + "2017": 0.864, + "2018": 0.867, + "2019": 0.866, + "2020": 0.846, + "2021": 0.831 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr112", + "Region": "Sistanand Baluchestan", + "1990": 0.669, + "1991": 0.7, + "1992": 0.705, + "1993": 0.711, + "1994": 0.716, + "1995": 0.721, + "1996": 0.725, + "1997": 0.729, + "1998": 0.735, + "1999": 0.744, + "2000": 0.749, + "2001": 0.753, + "2002": 0.761, + "2003": 0.751, + "2004": 0.775, + "2005": 0.782, + "2006": 0.789, + "2007": 0.798, + "2008": 0.797, + "2009": 0.799, + "2010": 0.806, + "2011": 0.817, + "2012": 0.825, + "2013": 0.829, + "2014": 0.834, + "2015": 0.839, + "2016": 0.846, + "2017": 0.852, + "2018": 0.855, + "2019": 0.854, + "2020": 0.834, + "2021": 0.82 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr130", + "Region": "South Khorasan", + "1990": 0.547, + "1991": 0.575, + "1992": 0.579, + "1993": 0.584, + "1994": 0.588, + "1995": 0.592, + "1996": 0.596, + "1997": 0.6, + "1998": 0.605, + "1999": 0.613, + "2000": 0.618, + "2001": 0.621, + "2002": 0.628, + "2003": 0.619, + "2004": 0.64, + "2005": 0.646, + "2006": 0.652, + "2007": 0.687, + "2008": 0.713, + "2009": 0.741, + "2010": 0.773, + "2011": 0.808, + "2012": 0.816, + "2013": 0.82, + "2014": 0.825, + "2015": 0.83, + "2016": 0.837, + "2017": 0.843, + "2018": 0.846, + "2019": 0.845, + "2020": 0.825, + "2021": 0.811 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr124", + "Region": "Tehran and Alborz", + "1990": 0.712, + "1991": 0.746, + "1992": 0.751, + "1993": 0.756, + "1994": 0.762, + "1995": 0.767, + "1996": 0.771, + "1997": 0.776, + "1998": 0.782, + "1999": 0.791, + "2000": 0.797, + "2001": 0.801, + "2002": 0.809, + "2003": 0.799, + "2004": 0.823, + "2005": 0.831, + "2006": 0.838, + "2007": 0.839, + "2008": 0.831, + "2009": 0.826, + "2010": 0.826, + "2011": 0.83, + "2012": 0.838, + "2013": 0.842, + "2014": 0.847, + "2015": 0.852, + "2016": 0.86, + "2017": 0.865, + "2018": 0.869, + "2019": 0.867, + "2020": 0.848, + "2021": 0.833 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr105", + "Region": "WestAzarbayejan", + "1990": 0.618, + "1991": 0.648, + "1992": 0.652, + "1993": 0.657, + "1994": 0.662, + "1995": 0.667, + "1996": 0.671, + "1997": 0.675, + "1998": 0.68, + "1999": 0.689, + "2000": 0.694, + "2001": 0.698, + "2002": 0.705, + "2003": 0.696, + "2004": 0.718, + "2005": 0.725, + "2006": 0.731, + "2007": 0.751, + "2008": 0.761, + "2009": 0.775, + "2010": 0.792, + "2011": 0.813, + "2012": 0.82, + "2013": 0.824, + "2014": 0.83, + "2015": 0.835, + "2016": 0.842, + "2017": 0.848, + "2018": 0.851, + "2019": 0.85, + "2020": 0.83, + "2021": 0.816 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr122", + "Region": "Yazd", + "1990": 0.62, + "1991": 0.651, + "1992": 0.655, + "1993": 0.66, + "1994": 0.665, + "1995": 0.67, + "1996": 0.674, + "1997": 0.678, + "1998": 0.683, + "1999": 0.691, + "2000": 0.697, + "2001": 0.701, + "2002": 0.708, + "2003": 0.699, + "2004": 0.721, + "2005": 0.728, + "2006": 0.734, + "2007": 0.76, + "2008": 0.776, + "2009": 0.795, + "2010": 0.818, + "2011": 0.844, + "2012": 0.852, + "2013": 0.856, + "2014": 0.861, + "2015": 0.867, + "2016": 0.874, + "2017": 0.88, + "2018": 0.884, + "2019": 0.882, + "2020": 0.862, + "2021": 0.847 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr120", + "Region": "Zanjan", + "1990": 0.61, + "1991": 0.64, + "1992": 0.645, + "1993": 0.65, + "1994": 0.655, + "1995": 0.659, + "1996": 0.663, + "1997": 0.667, + "1998": 0.673, + "1999": 0.681, + "2000": 0.686, + "2001": 0.69, + "2002": 0.697, + "2003": 0.688, + "2004": 0.71, + "2005": 0.717, + "2006": 0.723, + "2007": 0.747, + "2008": 0.761, + "2009": 0.778, + "2010": 0.799, + "2011": 0.823, + "2012": 0.831, + "2013": 0.835, + "2014": 0.84, + "2015": 0.845, + "2016": 0.852, + "2017": 0.858, + "2018": 0.861, + "2019": 0.86, + "2020": 0.841, + "2021": 0.826 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "National", + "GDLCODE": "IRQt", + "Region": "Total", + "1990": 0.591, + "1991": 0.654, + "1992": 0.719, + "1993": 0.721, + "1994": 0.719, + "1995": 0.715, + "1996": 0.714, + "1997": 0.705, + "1998": 0.7, + "1999": 0.71, + "2000": 0.72, + "2001": 0.724, + "2002": 0.724, + "2003": 0.702, + "2004": 0.693, + "2005": 0.69, + "2006": 0.671, + "2007": 0.67, + "2008": 0.691, + "2009": 0.715, + "2010": 0.724, + "2011": 0.733, + "2012": 0.739, + "2013": 0.742, + "2014": 0.753, + "2015": 0.761, + "2016": 0.754, + "2017": 0.776, + "2018": 0.793, + "2019": 0.793, + "2020": 0.756, + "2021": 0.775 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr107", + "Region": "Anbar", + "1990": 0.644, + "1991": 0.71, + "1992": 0.778, + "1993": 0.781, + "1994": 0.779, + "1995": 0.774, + "1996": 0.773, + "1997": 0.764, + "1998": 0.758, + "1999": 0.77, + "2000": 0.78, + "2001": 0.784, + "2002": 0.784, + "2003": 0.761, + "2004": 0.751, + "2005": 0.748, + "2006": 0.728, + "2007": 0.719, + "2008": 0.733, + "2009": 0.748, + "2010": 0.75, + "2011": 0.75, + "2012": 0.754, + "2013": 0.756, + "2014": 0.765, + "2015": 0.772, + "2016": 0.763, + "2017": 0.784, + "2018": 0.799, + "2019": 0.8, + "2020": 0.762, + "2021": 0.782 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr109", + "Region": "Babylon", + "1990": 0.534, + "1991": 0.593, + "1992": 0.653, + "1993": 0.656, + "1994": 0.653, + "1995": 0.649, + "1996": 0.648, + "1997": 0.64, + "1998": 0.635, + "1999": 0.645, + "2000": 0.654, + "2001": 0.658, + "2002": 0.658, + "2003": 0.638, + "2004": 0.629, + "2005": 0.626, + "2006": 0.608, + "2007": 0.617, + "2008": 0.647, + "2009": 0.679, + "2010": 0.699, + "2011": 0.718, + "2012": 0.729, + "2013": 0.737, + "2014": 0.753, + "2015": 0.766, + "2016": 0.764, + "2017": 0.792, + "2018": 0.814, + "2019": 0.815, + "2020": 0.777, + "2021": 0.796 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr108", + "Region": "Baghdad", + "1990": 0.611, + "1991": 0.675, + "1992": 0.741, + "1993": 0.744, + "1994": 0.742, + "1995": 0.737, + "1996": 0.736, + "1997": 0.728, + "1998": 0.722, + "1999": 0.733, + "2000": 0.743, + "2001": 0.746, + "2002": 0.747, + "2003": 0.724, + "2004": 0.715, + "2005": 0.712, + "2006": 0.692, + "2007": 0.69, + "2008": 0.711, + "2009": 0.734, + "2010": 0.742, + "2011": 0.75, + "2012": 0.755, + "2013": 0.758, + "2014": 0.767, + "2015": 0.775, + "2016": 0.767, + "2017": 0.788, + "2018": 0.804, + "2019": 0.805, + "2020": 0.767, + "2021": 0.787 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr118", + "Region": "Basra", + "1990": 0.595, + "1991": 0.658, + "1992": 0.723, + "1993": 0.726, + "1994": 0.724, + "1995": 0.719, + "1996": 0.718, + "1997": 0.71, + "1998": 0.704, + "1999": 0.715, + "2000": 0.725, + "2001": 0.728, + "2002": 0.729, + "2003": 0.707, + "2004": 0.697, + "2005": 0.694, + "2006": 0.675, + "2007": 0.674, + "2008": 0.696, + "2009": 0.719, + "2010": 0.729, + "2011": 0.738, + "2012": 0.738, + "2013": 0.737, + "2014": 0.742, + "2015": 0.744, + "2016": 0.733, + "2017": 0.749, + "2018": 0.76, + "2019": 0.761, + "2020": 0.725, + "2021": 0.743 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr106", + "Region": "Diala", + "1990": 0.584, + "1991": 0.647, + "1992": 0.71, + "1993": 0.713, + "1994": 0.711, + "1995": 0.707, + "1996": 0.706, + "1997": 0.697, + "1998": 0.692, + "1999": 0.702, + "2000": 0.712, + "2001": 0.715, + "2002": 0.716, + "2003": 0.694, + "2004": 0.685, + "2005": 0.682, + "2006": 0.663, + "2007": 0.659, + "2008": 0.677, + "2009": 0.696, + "2010": 0.702, + "2011": 0.708, + "2012": 0.715, + "2013": 0.721, + "2014": 0.733, + "2015": 0.743, + "2016": 0.738, + "2017": 0.762, + "2018": 0.781, + "2019": 0.782, + "2020": 0.745, + "2021": 0.764 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr101", + "Region": "Dohouk", + "1990": 0.56, + "1991": 0.621, + "1992": 0.683, + "1993": 0.686, + "1994": 0.684, + "1995": 0.68, + "1996": 0.679, + "1997": 0.67, + "1998": 0.665, + "1999": 0.676, + "2000": 0.685, + "2001": 0.688, + "2002": 0.689, + "2003": 0.668, + "2004": 0.658, + "2005": 0.656, + "2006": 0.637, + "2007": 0.641, + "2008": 0.667, + "2009": 0.694, + "2010": 0.708, + "2011": 0.722, + "2012": 0.732, + "2013": 0.739, + "2014": 0.754, + "2015": 0.766, + "2016": 0.763, + "2017": 0.79, + "2018": 0.811, + "2019": 0.812, + "2020": 0.774, + "2021": 0.793 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr105", + "Region": "Erbil", + "1990": 0.561, + "1991": 0.622, + "1992": 0.684, + "1993": 0.687, + "1994": 0.685, + "1995": 0.681, + "1996": 0.679, + "1997": 0.671, + "1998": 0.666, + "1999": 0.676, + "2000": 0.686, + "2001": 0.689, + "2002": 0.69, + "2003": 0.668, + "2004": 0.659, + "2005": 0.656, + "2006": 0.638, + "2007": 0.638, + "2008": 0.66, + "2009": 0.684, + "2010": 0.694, + "2011": 0.704, + "2012": 0.716, + "2013": 0.725, + "2014": 0.74, + "2015": 0.754, + "2016": 0.752, + "2017": 0.78, + "2018": 0.802, + "2019": 0.803, + "2020": 0.765, + "2021": 0.785 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr110", + "Region": "Kerbela", + "1990": 0.584, + "1991": 0.646, + "1992": 0.71, + "1993": 0.713, + "1994": 0.711, + "1995": 0.706, + "1996": 0.705, + "1997": 0.697, + "1998": 0.691, + "1999": 0.702, + "2000": 0.712, + "2001": 0.715, + "2002": 0.716, + "2003": 0.694, + "2004": 0.684, + "2005": 0.682, + "2006": 0.662, + "2007": 0.668, + "2008": 0.696, + "2009": 0.725, + "2010": 0.741, + "2011": 0.757, + "2012": 0.754, + "2013": 0.75, + "2014": 0.752, + "2015": 0.751, + "2016": 0.736, + "2017": 0.75, + "2018": 0.758, + "2019": 0.759, + "2020": 0.722, + "2021": 0.741 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr117", + "Region": "Maysan", + "1990": 0.591, + "1991": 0.654, + "1992": 0.718, + "1993": 0.721, + "1994": 0.719, + "1995": 0.715, + "1996": 0.713, + "1997": 0.705, + "1998": 0.7, + "1999": 0.71, + "2000": 0.72, + "2001": 0.723, + "2002": 0.724, + "2003": 0.702, + "2004": 0.693, + "2005": 0.69, + "2006": 0.67, + "2007": 0.673, + "2008": 0.697, + "2009": 0.723, + "2010": 0.735, + "2011": 0.748, + "2012": 0.75, + "2013": 0.751, + "2014": 0.758, + "2015": 0.763, + "2016": 0.753, + "2017": 0.772, + "2018": 0.786, + "2019": 0.787, + "2020": 0.749, + "2021": 0.768 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr115", + "Region": "Muthanna", + "1990": 0.573, + "1991": 0.635, + "1992": 0.698, + "1993": 0.701, + "1994": 0.699, + "1995": 0.695, + "1996": 0.693, + "1997": 0.685, + "1998": 0.68, + "1999": 0.69, + "2000": 0.7, + "2001": 0.703, + "2002": 0.704, + "2003": 0.682, + "2004": 0.673, + "2005": 0.67, + "2006": 0.651, + "2007": 0.655, + "2008": 0.681, + "2009": 0.709, + "2010": 0.723, + "2011": 0.737, + "2012": 0.743, + "2013": 0.748, + "2014": 0.759, + "2015": 0.768, + "2016": 0.762, + "2017": 0.785, + "2018": 0.803, + "2019": 0.804, + "2020": 0.766, + "2021": 0.785 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr113", + "Region": "Najaf", + "1990": 0.585, + "1991": 0.648, + "1992": 0.712, + "1993": 0.715, + "1994": 0.712, + "1995": 0.708, + "1996": 0.707, + "1997": 0.698, + "1998": 0.693, + "1999": 0.704, + "2000": 0.713, + "2001": 0.717, + "2002": 0.717, + "2003": 0.695, + "2004": 0.686, + "2005": 0.683, + "2006": 0.664, + "2007": 0.67, + "2008": 0.697, + "2009": 0.727, + "2010": 0.743, + "2011": 0.758, + "2012": 0.761, + "2013": 0.761, + "2014": 0.768, + "2015": 0.772, + "2016": 0.762, + "2017": 0.78, + "2018": 0.794, + "2019": 0.795, + "2020": 0.757, + "2021": 0.776 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr102", + "Region": "Nenava", + "1990": 0.594, + "1991": 0.657, + "1992": 0.722, + "1993": 0.725, + "1994": 0.723, + "1995": 0.718, + "1996": 0.717, + "1997": 0.709, + "1998": 0.703, + "1999": 0.714, + "2000": 0.724, + "2001": 0.727, + "2002": 0.728, + "2003": 0.706, + "2004": 0.696, + "2005": 0.693, + "2006": 0.674, + "2007": 0.669, + "2008": 0.687, + "2009": 0.706, + "2010": 0.711, + "2011": 0.716, + "2012": 0.724, + "2013": 0.73, + "2014": 0.743, + "2015": 0.754, + "2016": 0.749, + "2017": 0.774, + "2018": 0.793, + "2019": 0.794, + "2020": 0.757, + "2021": 0.776 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr114", + "Region": "Qadisiya", + "1990": 0.601, + "1991": 0.664, + "1992": 0.729, + "1993": 0.732, + "1994": 0.73, + "1995": 0.726, + "1996": 0.724, + "1997": 0.716, + "1998": 0.71, + "1999": 0.721, + "2000": 0.731, + "2001": 0.734, + "2002": 0.735, + "2003": 0.713, + "2004": 0.703, + "2005": 0.7, + "2006": 0.681, + "2007": 0.677, + "2008": 0.695, + "2009": 0.715, + "2010": 0.721, + "2011": 0.726, + "2012": 0.732, + "2013": 0.736, + "2014": 0.746, + "2015": 0.754, + "2016": 0.747, + "2017": 0.769, + "2018": 0.787, + "2019": 0.787, + "2020": 0.75, + "2021": 0.769 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr112", + "Region": "Salaheldeen", + "1990": 0.577, + "1991": 0.639, + "1992": 0.702, + "1993": 0.705, + "1994": 0.703, + "1995": 0.699, + "1996": 0.698, + "1997": 0.689, + "1998": 0.684, + "1999": 0.695, + "2000": 0.704, + "2001": 0.707, + "2002": 0.708, + "2003": 0.686, + "2004": 0.677, + "2005": 0.674, + "2006": 0.655, + "2007": 0.653, + "2008": 0.671, + "2009": 0.692, + "2010": 0.699, + "2011": 0.706, + "2012": 0.714, + "2013": 0.721, + "2014": 0.734, + "2015": 0.745, + "2016": 0.741, + "2017": 0.765, + "2018": 0.785, + "2019": 0.786, + "2020": 0.748, + "2021": 0.768 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr103", + "Region": "Suleimaniya", + "1990": 0.597, + "1991": 0.66, + "1992": 0.725, + "1993": 0.728, + "1994": 0.726, + "1995": 0.721, + "1996": 0.72, + "1997": 0.712, + "1998": 0.706, + "1999": 0.717, + "2000": 0.727, + "2001": 0.73, + "2002": 0.731, + "2003": 0.709, + "2004": 0.699, + "2005": 0.696, + "2006": 0.677, + "2007": 0.677, + "2008": 0.699, + "2009": 0.724, + "2010": 0.734, + "2011": 0.744, + "2012": 0.75, + "2013": 0.753, + "2014": 0.763, + "2015": 0.771, + "2016": 0.764, + "2017": 0.786, + "2018": 0.803, + "2019": 0.804, + "2020": 0.766, + "2021": 0.785 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr104", + "Region": "Ta-amem-Karkuk", + "1990": 0.635, + "1991": 0.701, + "1992": 0.768, + "1993": 0.771, + "1994": 0.769, + "1995": 0.764, + "1996": 0.763, + "1997": 0.754, + "1998": 0.749, + "1999": 0.76, + "2000": 0.77, + "2001": 0.774, + "2002": 0.774, + "2003": 0.751, + "2004": 0.741, + "2005": 0.738, + "2006": 0.718, + "2007": 0.705, + "2008": 0.714, + "2009": 0.725, + "2010": 0.721, + "2011": 0.717, + "2012": 0.722, + "2013": 0.725, + "2014": 0.734, + "2015": 0.741, + "2016": 0.734, + "2017": 0.755, + "2018": 0.771, + "2019": 0.772, + "2020": 0.735, + "2021": 0.754 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr116", + "Region": "Thi-Qar", + "1990": 0.579, + "1991": 0.641, + "1992": 0.704, + "1993": 0.707, + "1994": 0.705, + "1995": 0.7, + "1996": 0.699, + "1997": 0.691, + "1998": 0.686, + "1999": 0.696, + "2000": 0.706, + "2001": 0.709, + "2002": 0.71, + "2003": 0.688, + "2004": 0.679, + "2005": 0.676, + "2006": 0.657, + "2007": 0.661, + "2008": 0.687, + "2009": 0.715, + "2010": 0.729, + "2011": 0.743, + "2012": 0.749, + "2013": 0.753, + "2014": 0.763, + "2015": 0.772, + "2016": 0.765, + "2017": 0.788, + "2018": 0.805, + "2019": 0.806, + "2020": 0.768, + "2021": 0.787 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr111", + "Region": "Wasit", + "1990": 0.589, + "1991": 0.652, + "1992": 0.716, + "1993": 0.719, + "1994": 0.716, + "1995": 0.712, + "1996": 0.711, + "1997": 0.702, + "1998": 0.697, + "1999": 0.708, + "2000": 0.717, + "2001": 0.721, + "2002": 0.722, + "2003": 0.699, + "2004": 0.69, + "2005": 0.687, + "2006": 0.668, + "2007": 0.669, + "2008": 0.691, + "2009": 0.715, + "2010": 0.726, + "2011": 0.736, + "2012": 0.738, + "2013": 0.737, + "2014": 0.743, + "2015": 0.747, + "2016": 0.737, + "2017": 0.754, + "2018": 0.767, + "2019": 0.768, + "2020": 0.731, + "2021": 0.75 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "National", + "GDLCODE": "IRLt", + "Region": "Total", + "1990": 0.844, + "1991": 0.847, + "1992": 0.853, + "1993": 0.851, + "1994": 0.858, + "1995": 0.854, + "1996": 0.859, + "1997": 0.861, + "1998": 0.864, + "1999": 0.863, + "2000": 0.87, + "2001": 0.879, + "2002": 0.886, + "2003": 0.894, + "2004": 0.9, + "2005": 0.906, + "2006": 0.91, + "2007": 0.916, + "2008": 0.919, + "2009": 0.924, + "2010": 0.931, + "2011": 0.933, + "2012": 0.935, + "2013": 0.938, + "2014": 0.943, + "2015": 0.945, + "2016": 0.947, + "2017": 0.953, + "2018": 0.955, + "2019": 0.958, + "2020": 0.961, + "2021": 0.954 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr101", + "Region": "Border", + "1990": 0.847, + "1991": 0.849, + "1992": 0.856, + "1993": 0.854, + "1994": 0.861, + "1995": 0.856, + "1996": 0.862, + "1997": 0.864, + "1998": 0.867, + "1999": 0.866, + "2000": 0.873, + "2001": 0.881, + "2002": 0.889, + "2003": 0.897, + "2004": 0.903, + "2005": 0.909, + "2006": 0.912, + "2007": 0.919, + "2008": 0.922, + "2009": 0.927, + "2010": 0.934, + "2011": 0.936, + "2012": 0.938, + "2013": 0.941, + "2014": 0.946, + "2015": 0.948, + "2016": 0.95, + "2017": 0.956, + "2018": 0.958, + "2019": 0.961, + "2020": 0.964, + "2021": 0.957 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr104", + "Region": "Dublin", + "1990": 0.844, + "1991": 0.847, + "1992": 0.853, + "1993": 0.851, + "1994": 0.859, + "1995": 0.854, + "1996": 0.86, + "1997": 0.862, + "1998": 0.865, + "1999": 0.864, + "2000": 0.87, + "2001": 0.879, + "2002": 0.887, + "2003": 0.894, + "2004": 0.899, + "2005": 0.904, + "2006": 0.906, + "2007": 0.913, + "2008": 0.917, + "2009": 0.922, + "2010": 0.93, + "2011": 0.932, + "2012": 0.934, + "2013": 0.937, + "2014": 0.942, + "2015": 0.944, + "2016": 0.946, + "2017": 0.952, + "2018": 0.954, + "2019": 0.957, + "2020": 0.96, + "2021": 0.953 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr105", + "Region": "Mid-East", + "1990": 0.852, + "1991": 0.855, + "1992": 0.861, + "1993": 0.859, + "1994": 0.867, + "1995": 0.862, + "1996": 0.867, + "1997": 0.869, + "1998": 0.873, + "1999": 0.871, + "2000": 0.878, + "2001": 0.887, + "2002": 0.894, + "2003": 0.901, + "2004": 0.905, + "2005": 0.91, + "2006": 0.912, + "2007": 0.919, + "2008": 0.923, + "2009": 0.929, + "2010": 0.937, + "2011": 0.94, + "2012": 0.941, + "2013": 0.945, + "2014": 0.95, + "2015": 0.952, + "2016": 0.954, + "2017": 0.959, + "2018": 0.962, + "2019": 0.965, + "2020": 0.968, + "2021": 0.961 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr106", + "Region": "Mid-West", + "1990": 0.835, + "1991": 0.838, + "1992": 0.844, + "1993": 0.842, + "1994": 0.85, + "1995": 0.845, + "1996": 0.851, + "1997": 0.853, + "1998": 0.856, + "1999": 0.855, + "2000": 0.861, + "2001": 0.87, + "2002": 0.878, + "2003": 0.884, + "2004": 0.889, + "2005": 0.895, + "2006": 0.897, + "2007": 0.903, + "2008": 0.907, + "2009": 0.911, + "2010": 0.919, + "2011": 0.92, + "2012": 0.922, + "2013": 0.925, + "2014": 0.931, + "2015": 0.932, + "2016": 0.934, + "2017": 0.94, + "2018": 0.942, + "2019": 0.945, + "2020": 0.948, + "2021": 0.941 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr102", + "Region": "Midland", + "1990": 0.838, + "1991": 0.841, + "1992": 0.847, + "1993": 0.845, + "1994": 0.852, + "1995": 0.847, + "1996": 0.853, + "1997": 0.855, + "1998": 0.858, + "1999": 0.857, + "2000": 0.864, + "2001": 0.872, + "2002": 0.88, + "2003": 0.89, + "2004": 0.898, + "2005": 0.907, + "2006": 0.912, + "2007": 0.918, + "2008": 0.921, + "2009": 0.926, + "2010": 0.933, + "2011": 0.934, + "2012": 0.936, + "2013": 0.939, + "2014": 0.945, + "2015": 0.946, + "2016": 0.948, + "2017": 0.954, + "2018": 0.957, + "2019": 0.959, + "2020": 0.962, + "2021": 0.955 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr107", + "Region": "South-East", + "1990": 0.846, + "1991": 0.849, + "1992": 0.855, + "1993": 0.853, + "1994": 0.861, + "1995": 0.856, + "1996": 0.861, + "1997": 0.863, + "1998": 0.867, + "1999": 0.865, + "2000": 0.872, + "2001": 0.881, + "2002": 0.888, + "2003": 0.896, + "2004": 0.902, + "2005": 0.908, + "2006": 0.911, + "2007": 0.916, + "2008": 0.919, + "2009": 0.923, + "2010": 0.929, + "2011": 0.93, + "2012": 0.932, + "2013": 0.935, + "2014": 0.941, + "2015": 0.942, + "2016": 0.944, + "2017": 0.95, + "2018": 0.953, + "2019": 0.955, + "2020": 0.959, + "2021": 0.951 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr108", + "Region": "South-West", + "1990": 0.847, + "1991": 0.849, + "1992": 0.856, + "1993": 0.854, + "1994": 0.861, + "1995": 0.856, + "1996": 0.862, + "1997": 0.864, + "1998": 0.867, + "1999": 0.866, + "2000": 0.873, + "2001": 0.881, + "2002": 0.889, + "2003": 0.896, + "2004": 0.901, + "2005": 0.906, + "2006": 0.908, + "2007": 0.914, + "2008": 0.917, + "2009": 0.921, + "2010": 0.927, + "2011": 0.929, + "2012": 0.931, + "2013": 0.934, + "2014": 0.939, + "2015": 0.941, + "2016": 0.943, + "2017": 0.948, + "2018": 0.951, + "2019": 0.954, + "2020": 0.957, + "2021": 0.95 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr103", + "Region": "West", + "1990": 0.852, + "1991": 0.855, + "1992": 0.861, + "1993": 0.859, + "1994": 0.867, + "1995": 0.862, + "1996": 0.867, + "1997": 0.869, + "1998": 0.873, + "1999": 0.871, + "2000": 0.878, + "2001": 0.887, + "2002": 0.894, + "2003": 0.903, + "2004": 0.91, + "2005": 0.917, + "2006": 0.921, + "2007": 0.926, + "2008": 0.929, + "2009": 0.933, + "2010": 0.939, + "2011": 0.94, + "2012": 0.942, + "2013": 0.946, + "2014": 0.951, + "2015": 0.952, + "2016": 0.955, + "2017": 0.96, + "2018": 0.963, + "2019": 0.966, + "2020": 0.969, + "2021": 0.961 + }, + { + "Country": "Israel", + "Continent": "Asia/Pacific", + "ISO_Code": "ISR", + "Level": "National", + "GDLCODE": "ISRt", + "Region": "Total", + "1990": 0.88, + "1991": 0.877, + "1992": 0.875, + "1993": 0.884, + "1994": 0.888, + "1995": 0.887, + "1996": 0.897, + "1997": 0.896, + "1998": 0.899, + "1999": 0.903, + "2000": 0.907, + "2001": 0.913, + "2002": 0.912, + "2003": 0.917, + "2004": 0.925, + "2005": 0.926, + "2006": 0.931, + "2007": 0.933, + "2008": 0.939, + "2009": 0.947, + "2010": 0.95, + "2011": 0.95, + "2012": 0.95, + "2013": 0.956, + "2014": 0.957, + "2015": 0.955, + "2016": 0.961, + "2017": 0.965, + "2018": 0.967, + "2019": 0.966, + "2020": 0.959, + "2021": 0.958 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "National", + "GDLCODE": "ITAt", + "Region": "Total", + "1990": 0.877, + "1991": 0.877, + "1992": 0.883, + "1993": 0.887, + "1994": 0.89, + "1995": 0.894, + "1996": 0.899, + "1997": 0.904, + "1998": 0.905, + "1999": 0.911, + "2000": 0.917, + "2001": 0.921, + "2002": 0.925, + "2003": 0.926, + "2004": 0.939, + "2005": 0.939, + "2006": 0.945, + "2007": 0.946, + "2008": 0.948, + "2009": 0.95, + "2010": 0.956, + "2011": 0.957, + "2012": 0.958, + "2013": 0.964, + "2014": 0.968, + "2015": 0.962, + "2016": 0.97, + "2017": 0.965, + "2018": 0.972, + "2019": 0.978, + "2020": 0.96, + "2021": 0.967 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr105", + "Region": "Abruzzo", + "1990": 0.896, + "1991": 0.896, + "1992": 0.9, + "1993": 0.904, + "1994": 0.904, + "1995": 0.912, + "1996": 0.916, + "1997": 0.922, + "1998": 0.92, + "1999": 0.928, + "2000": 0.927, + "2001": 0.933, + "2002": 0.93, + "2003": 0.936, + "2004": 0.943, + "2005": 0.946, + "2006": 0.948, + "2007": 0.949, + "2008": 0.952, + "2009": 0.943, + "2010": 0.954, + "2011": 0.958, + "2012": 0.961, + "2013": 0.965, + "2014": 0.966, + "2015": 0.963, + "2016": 0.972, + "2017": 0.962, + "2018": 0.975, + "2019": 0.979, + "2020": 0.961, + "2021": 0.968 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr109", + "Region": "Basilicata", + "1990": 0.888, + "1991": 0.888, + "1992": 0.89, + "1993": 0.901, + "1994": 0.901, + "1995": 0.899, + "1996": 0.905, + "1997": 0.911, + "1998": 0.91, + "1999": 0.915, + "2000": 0.919, + "2001": 0.922, + "2002": 0.922, + "2003": 0.932, + "2004": 0.936, + "2005": 0.937, + "2006": 0.942, + "2007": 0.949, + "2008": 0.952, + "2009": 0.955, + "2010": 0.962, + "2011": 0.959, + "2012": 0.961, + "2013": 0.963, + "2014": 0.966, + "2015": 0.958, + "2016": 0.966, + "2017": 0.959, + "2018": 0.967, + "2019": 0.969, + "2020": 0.951, + "2021": 0.958 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr110", + "Region": "Calabria", + "1990": 0.887, + "1991": 0.882, + "1992": 0.889, + "1993": 0.893, + "1994": 0.896, + "1995": 0.904, + "1996": 0.907, + "1997": 0.908, + "1998": 0.908, + "1999": 0.918, + "2000": 0.916, + "2001": 0.922, + "2002": 0.93, + "2003": 0.926, + "2004": 0.937, + "2005": 0.934, + "2006": 0.943, + "2007": 0.943, + "2008": 0.945, + "2009": 0.944, + "2010": 0.954, + "2011": 0.952, + "2012": 0.952, + "2013": 0.959, + "2014": 0.957, + "2015": 0.957, + "2016": 0.963, + "2017": 0.955, + "2018": 0.965, + "2019": 0.965, + "2020": 0.948, + "2021": 0.955 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr107", + "Region": "Campania", + "1990": 0.862, + "1991": 0.857, + "1992": 0.866, + "1993": 0.87, + "1994": 0.873, + "1995": 0.878, + "1996": 0.882, + "1997": 0.885, + "1998": 0.887, + "1999": 0.893, + "2000": 0.892, + "2001": 0.897, + "2002": 0.902, + "2003": 0.902, + "2004": 0.915, + "2005": 0.914, + "2006": 0.922, + "2007": 0.919, + "2008": 0.925, + "2009": 0.926, + "2010": 0.93, + "2011": 0.93, + "2012": 0.934, + "2013": 0.937, + "2014": 0.942, + "2015": 0.934, + "2016": 0.945, + "2017": 0.938, + "2018": 0.948, + "2019": 0.955, + "2020": 0.937, + "2021": 0.944 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr117", + "Region": "Emilia-Romagna", + "1990": 0.941, + "1991": 0.94, + "1992": 0.94, + "1993": 0.94, + "1994": 0.939, + "1995": 0.939, + "1996": 0.939, + "1997": 0.939, + "1998": 0.937, + "1999": 0.936, + "2000": 0.933, + "2001": 0.931, + "2002": 0.936, + "2003": 0.935, + "2004": 0.948, + "2005": 0.948, + "2006": 0.954, + "2007": 0.956, + "2008": 0.957, + "2009": 0.961, + "2010": 0.966, + "2011": 0.969, + "2012": 0.966, + "2013": 0.973, + "2014": 0.975, + "2015": 0.97, + "2016": 0.975, + "2017": 0.973, + "2018": 0.979, + "2019": 0.984, + "2020": 0.966, + "2021": 0.973 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr116", + "Region": "Friuli-Venezia Giulia", + "1990": 0.879, + "1991": 0.877, + "1992": 0.883, + "1993": 0.889, + "1994": 0.895, + "1995": 0.898, + "1996": 0.897, + "1997": 0.908, + "1998": 0.911, + "1999": 0.915, + "2000": 0.918, + "2001": 0.92, + "2002": 0.92, + "2003": 0.923, + "2004": 0.937, + "2005": 0.939, + "2006": 0.945, + "2007": 0.953, + "2008": 0.949, + "2009": 0.953, + "2010": 0.957, + "2011": 0.958, + "2012": 0.96, + "2013": 0.96, + "2014": 0.971, + "2015": 0.964, + "2016": 0.972, + "2017": 0.971, + "2018": 0.973, + "2019": 0.982, + "2020": 0.965, + "2021": 0.972 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr121", + "Region": "Lazio", + "1990": 0.888, + "1991": 0.883, + "1992": 0.887, + "1993": 0.892, + "1994": 0.896, + "1995": 0.901, + "1996": 0.905, + "1997": 0.908, + "1998": 0.91, + "1999": 0.915, + "2000": 0.915, + "2001": 0.917, + "2002": 0.92, + "2003": 0.923, + "2004": 0.928, + "2005": 0.934, + "2006": 0.94, + "2007": 0.943, + "2008": 0.945, + "2009": 0.944, + "2010": 0.948, + "2011": 0.95, + "2012": 0.952, + "2013": 0.963, + "2014": 0.966, + "2015": 0.963, + "2016": 0.968, + "2017": 0.964, + "2018": 0.975, + "2019": 0.981, + "2020": 0.963, + "2021": 0.97 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr103", + "Region": "Liguria", + "1990": 0.879, + "1991": 0.886, + "1992": 0.89, + "1993": 0.887, + "1994": 0.893, + "1995": 0.892, + "1996": 0.905, + "1997": 0.908, + "1998": 0.911, + "1999": 0.916, + "2000": 0.916, + "2001": 0.92, + "2002": 0.925, + "2003": 0.924, + "2004": 0.943, + "2005": 0.94, + "2006": 0.945, + "2007": 0.947, + "2008": 0.948, + "2009": 0.949, + "2010": 0.954, + "2011": 0.953, + "2012": 0.957, + "2013": 0.959, + "2014": 0.969, + "2015": 0.963, + "2016": 0.974, + "2017": 0.967, + "2018": 0.967, + "2019": 0.976, + "2020": 0.958, + "2021": 0.965 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr104", + "Region": "Lombardia", + "1990": 0.873, + "1991": 0.876, + "1992": 0.884, + "1993": 0.887, + "1994": 0.893, + "1995": 0.895, + "1996": 0.9, + "1997": 0.908, + "1998": 0.911, + "1999": 0.916, + "2000": 0.922, + "2001": 0.922, + "2002": 0.927, + "2003": 0.927, + "2004": 0.943, + "2005": 0.943, + "2006": 0.949, + "2007": 0.953, + "2008": 0.952, + "2009": 0.956, + "2010": 0.962, + "2011": 0.967, + "2012": 0.964, + "2013": 0.974, + "2014": 0.978, + "2015": 0.97, + "2016": 0.98, + "2017": 0.976, + "2018": 0.981, + "2019": 0.987, + "2020": 0.969, + "2021": 0.976 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr120", + "Region": "Marche", + "1990": 0.953, + "1991": 0.953, + "1992": 0.952, + "1993": 0.952, + "1994": 0.952, + "1995": 0.952, + "1996": 0.951, + "1997": 0.951, + "1998": 0.95, + "1999": 0.948, + "2000": 0.945, + "2001": 0.943, + "2002": 0.946, + "2003": 0.947, + "2004": 0.957, + "2005": 0.96, + "2006": 0.962, + "2007": 0.966, + "2008": 0.965, + "2009": 0.969, + "2010": 0.976, + "2011": 0.975, + "2012": 0.974, + "2013": 0.976, + "2014": 0.98, + "2015": 0.972, + "2016": 0.98, + "2017": 0.973, + "2018": 0.987, + "2019": 0.99, + "2020": 0.972, + "2021": 0.979 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr106", + "Region": "Molise", + "1990": 0.907, + "1991": 0.894, + "1992": 0.897, + "1993": 0.904, + "1994": 0.909, + "1995": 0.912, + "1996": 0.916, + "1997": 0.912, + "1998": 0.913, + "1999": 0.922, + "2000": 0.919, + "2001": 0.927, + "2002": 0.931, + "2003": 0.933, + "2004": 0.934, + "2005": 0.942, + "2006": 0.937, + "2007": 0.953, + "2008": 0.946, + "2009": 0.955, + "2010": 0.956, + "2011": 0.956, + "2012": 0.963, + "2013": 0.963, + "2014": 0.962, + "2015": 0.961, + "2016": 0.971, + "2017": 0.959, + "2018": 0.97, + "2019": 0.978, + "2020": 0.96, + "2021": 0.967 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr101", + "Region": "Piemonte", + "1990": 0.878, + "1991": 0.879, + "1992": 0.884, + "1993": 0.889, + "1994": 0.892, + "1995": 0.892, + "1996": 0.902, + "1997": 0.905, + "1998": 0.907, + "1999": 0.908, + "2000": 0.915, + "2001": 0.919, + "2002": 0.919, + "2003": 0.921, + "2004": 0.936, + "2005": 0.937, + "2006": 0.94, + "2007": 0.946, + "2008": 0.946, + "2009": 0.949, + "2010": 0.956, + "2011": 0.956, + "2012": 0.958, + "2013": 0.962, + "2014": 0.968, + "2015": 0.96, + "2016": 0.969, + "2017": 0.964, + "2018": 0.965, + "2019": 0.973, + "2020": 0.955, + "2021": 0.962 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr113", + "Region": "Provincia Autonoma di Bolzano", + "1990": 0.887, + "1991": 0.893, + "1992": 0.898, + "1993": 0.9, + "1994": 0.907, + "1995": 0.915, + "1996": 0.911, + "1997": 0.926, + "1998": 0.92, + "1999": 0.922, + "2000": 0.93, + "2001": 0.933, + "2002": 0.937, + "2003": 0.933, + "2004": 0.945, + "2005": 0.949, + "2006": 0.956, + "2007": 0.964, + "2008": 0.965, + "2009": 0.972, + "2010": 0.974, + "2011": 0.978, + "2012": 0.972, + "2013": 0.98, + "2014": 0.98, + "2015": 0.977, + "2016": 0.981, + "2017": 0.984, + "2018": 0.987, + "2019": 0.992, + "2020": 0.974, + "2021": 0.981 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr114", + "Region": "Provincia Autonoma di Trento", + "1990": 0.89, + "1991": 0.886, + "1992": 0.892, + "1993": 0.906, + "1994": 0.902, + "1995": 0.905, + "1996": 0.917, + "1997": 0.92, + "1998": 0.917, + "1999": 0.928, + "2000": 0.927, + "2001": 0.937, + "2002": 0.939, + "2003": 0.936, + "2004": 0.945, + "2005": 0.954, + "2006": 0.952, + "2007": 0.961, + "2008": 0.965, + "2009": 0.97, + "2010": 0.971, + "2011": 0.981, + "2012": 0.981, + "2013": 0.98, + "2014": 0.986, + "2015": 0.983, + "2016": 0.985, + "2017": 0.985, + "2018": 0.99, + "2019": 0.998, + "2020": 0.98, + "2021": 0.987 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr108", + "Region": "Puglia", + "1990": 0.888, + "1991": 0.89, + "1992": 0.89, + "1993": 0.9, + "1994": 0.901, + "1995": 0.909, + "1996": 0.91, + "1997": 0.914, + "1998": 0.911, + "1999": 0.921, + "2000": 0.919, + "2001": 0.925, + "2002": 0.93, + "2003": 0.932, + "2004": 0.946, + "2005": 0.943, + "2006": 0.949, + "2007": 0.946, + "2008": 0.955, + "2009": 0.952, + "2010": 0.96, + "2011": 0.959, + "2012": 0.963, + "2013": 0.968, + "2014": 0.968, + "2015": 0.964, + "2016": 0.972, + "2017": 0.965, + "2018": 0.975, + "2019": 0.979, + "2020": 0.961, + "2021": 0.968 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr112", + "Region": "Sardegna", + "1990": 0.887, + "1991": 0.883, + "1992": 0.892, + "1993": 0.889, + "1994": 0.892, + "1995": 0.902, + "1996": 0.903, + "1997": 0.908, + "1998": 0.905, + "1999": 0.912, + "2000": 0.916, + "2001": 0.92, + "2002": 0.925, + "2003": 0.924, + "2004": 0.94, + "2005": 0.939, + "2006": 0.945, + "2007": 0.946, + "2008": 0.951, + "2009": 0.947, + "2010": 0.957, + "2011": 0.956, + "2012": 0.957, + "2013": 0.963, + "2014": 0.968, + "2015": 0.964, + "2016": 0.969, + "2017": 0.967, + "2018": 0.978, + "2019": 0.978, + "2020": 0.96, + "2021": 0.967 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr111", + "Region": "Sicilia", + "1990": 0.873, + "1991": 0.874, + "1992": 0.876, + "1993": 0.883, + "1994": 0.886, + "1995": 0.89, + "1996": 0.893, + "1997": 0.898, + "1998": 0.899, + "1999": 0.905, + "2000": 0.907, + "2001": 0.91, + "2002": 0.913, + "2003": 0.915, + "2004": 0.931, + "2005": 0.926, + "2006": 0.934, + "2007": 0.93, + "2008": 0.935, + "2009": 0.933, + "2010": 0.943, + "2011": 0.94, + "2012": 0.943, + "2013": 0.949, + "2014": 0.952, + "2015": 0.947, + "2016": 0.955, + "2017": 0.945, + "2018": 0.955, + "2019": 0.958, + "2020": 0.94, + "2021": 0.947 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr118", + "Region": "Toscana", + "1990": 0.898, + "1991": 0.897, + "1992": 0.901, + "1993": 0.906, + "1994": 0.909, + "1995": 0.912, + "1996": 0.916, + "1997": 0.92, + "1998": 0.925, + "1999": 0.928, + "2000": 0.93, + "2001": 0.933, + "2002": 0.939, + "2003": 0.939, + "2004": 0.951, + "2005": 0.951, + "2006": 0.957, + "2007": 0.956, + "2008": 0.957, + "2009": 0.961, + "2010": 0.966, + "2011": 0.969, + "2012": 0.966, + "2013": 0.973, + "2014": 0.977, + "2015": 0.969, + "2016": 0.978, + "2017": 0.975, + "2018": 0.981, + "2019": 0.985, + "2020": 0.968, + "2021": 0.975 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr119", + "Region": "Umbria", + "1990": 0.898, + "1991": 0.897, + "1992": 0.904, + "1993": 0.904, + "1994": 0.909, + "1995": 0.913, + "1996": 0.914, + "1997": 0.923, + "1998": 0.919, + "1999": 0.928, + "2000": 0.935, + "2001": 0.934, + "2002": 0.942, + "2003": 0.944, + "2004": 0.952, + "2005": 0.946, + "2006": 0.957, + "2007": 0.958, + "2008": 0.957, + "2009": 0.966, + "2010": 0.966, + "2011": 0.972, + "2012": 0.966, + "2013": 0.971, + "2014": 0.98, + "2015": 0.97, + "2016": 0.981, + "2017": 0.978, + "2018": 0.985, + "2019": 0.992, + "2020": 0.974, + "2021": 0.981 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr102", + "Region": "Valle dAosta", + "1990": 0.878, + "1991": 0.865, + "1992": 0.872, + "1993": 0.884, + "1994": 0.879, + "1995": 0.89, + "1996": 0.883, + "1997": 0.891, + "1998": 0.897, + "1999": 0.904, + "2000": 0.892, + "2001": 0.905, + "2002": 0.9, + "2003": 0.915, + "2004": 0.932, + "2005": 0.923, + "2006": 0.943, + "2007": 0.936, + "2008": 0.946, + "2009": 0.952, + "2010": 0.954, + "2011": 0.959, + "2012": 0.963, + "2013": 0.966, + "2014": 0.963, + "2015": 0.946, + "2016": 0.965, + "2017": 0.961, + "2018": 0.955, + "2019": 0.978, + "2020": 0.96, + "2021": 0.967 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr115", + "Region": "Veneto", + "1990": 0.887, + "1991": 0.888, + "1992": 0.893, + "1993": 0.898, + "1994": 0.899, + "1995": 0.905, + "1996": 0.911, + "1997": 0.917, + "1998": 0.919, + "1999": 0.922, + "2000": 0.927, + "2001": 0.934, + "2002": 0.934, + "2003": 0.938, + "2004": 0.948, + "2005": 0.949, + "2006": 0.956, + "2007": 0.956, + "2008": 0.958, + "2009": 0.964, + "2010": 0.966, + "2011": 0.969, + "2012": 0.967, + "2013": 0.973, + "2014": 0.977, + "2015": 0.972, + "2016": 0.978, + "2017": 0.978, + "2018": 0.981, + "2019": 0.989, + "2020": 0.971, + "2021": 0.978 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "National", + "GDLCODE": "JAMt", + "Region": "Total", + "1990": 0.805, + "1991": 0.803, + "1992": 0.803, + "1993": 0.799, + "1994": 0.796, + "1995": 0.793, + "1996": 0.792, + "1997": 0.788, + "1998": 0.784, + "1999": 0.784, + "2000": 0.784, + "2001": 0.781, + "2002": 0.783, + "2003": 0.782, + "2004": 0.782, + "2005": 0.785, + "2006": 0.788, + "2007": 0.791, + "2008": 0.794, + "2009": 0.802, + "2010": 0.81, + "2011": 0.817, + "2012": 0.822, + "2013": 0.822, + "2014": 0.815, + "2015": 0.806, + "2016": 0.8, + "2017": 0.799, + "2018": 0.797, + "2019": 0.796, + "2020": 0.798, + "2021": 0.777 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr101", + "Region": "Kingston, St Andrew", + "1990": 0.787, + "1991": 0.785, + "1992": 0.785, + "1993": 0.781, + "1994": 0.779, + "1995": 0.776, + "1996": 0.775, + "1997": 0.77, + "1998": 0.767, + "1999": 0.767, + "2000": 0.767, + "2001": 0.764, + "2002": 0.766, + "2003": 0.764, + "2004": 0.765, + "2005": 0.768, + "2006": 0.77, + "2007": 0.774, + "2008": 0.777, + "2009": 0.784, + "2010": 0.792, + "2011": 0.799, + "2012": 0.804, + "2013": 0.804, + "2014": 0.797, + "2015": 0.788, + "2016": 0.783, + "2017": 0.781, + "2018": 0.779, + "2019": 0.779, + "2020": 0.781, + "2021": 0.76 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr106", + "Region": "Manchester, Clarendon", + "1990": 0.815, + "1991": 0.813, + "1992": 0.813, + "1993": 0.809, + "1994": 0.806, + "1995": 0.803, + "1996": 0.802, + "1997": 0.798, + "1998": 0.794, + "1999": 0.794, + "2000": 0.794, + "2001": 0.791, + "2002": 0.793, + "2003": 0.791, + "2004": 0.792, + "2005": 0.795, + "2006": 0.798, + "2007": 0.801, + "2008": 0.804, + "2009": 0.812, + "2010": 0.82, + "2011": 0.827, + "2012": 0.832, + "2013": 0.832, + "2014": 0.825, + "2015": 0.816, + "2016": 0.81, + "2017": 0.809, + "2018": 0.807, + "2019": 0.806, + "2020": 0.808, + "2021": 0.787 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr103", + "Region": "St Ann, St Catherine", + "1990": 0.842, + "1991": 0.84, + "1992": 0.84, + "1993": 0.835, + "1994": 0.833, + "1995": 0.83, + "1996": 0.829, + "1997": 0.824, + "1998": 0.821, + "1999": 0.82, + "2000": 0.82, + "2001": 0.817, + "2002": 0.819, + "2003": 0.818, + "2004": 0.819, + "2005": 0.821, + "2006": 0.824, + "2007": 0.827, + "2008": 0.831, + "2009": 0.839, + "2010": 0.847, + "2011": 0.854, + "2012": 0.859, + "2013": 0.859, + "2014": 0.852, + "2015": 0.843, + "2016": 0.837, + "2017": 0.835, + "2018": 0.833, + "2019": 0.833, + "2020": 0.835, + "2021": 0.813 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr105", + "Region": "St James, Hanover, Westmoreland", + "1990": 0.779, + "1991": 0.777, + "1992": 0.777, + "1993": 0.773, + "1994": 0.771, + "1995": 0.768, + "1996": 0.767, + "1997": 0.763, + "1998": 0.759, + "1999": 0.759, + "2000": 0.759, + "2001": 0.756, + "2002": 0.758, + "2003": 0.757, + "2004": 0.757, + "2005": 0.76, + "2006": 0.763, + "2007": 0.766, + "2008": 0.769, + "2009": 0.776, + "2010": 0.784, + "2011": 0.791, + "2012": 0.796, + "2013": 0.796, + "2014": 0.789, + "2015": 0.781, + "2016": 0.775, + "2017": 0.773, + "2018": 0.771, + "2019": 0.771, + "2020": 0.773, + "2021": 0.752 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr102", + "Region": "St Thomas, Portland, St Mary", + "1990": 0.805, + "1991": 0.803, + "1992": 0.803, + "1993": 0.799, + "1994": 0.797, + "1995": 0.794, + "1996": 0.793, + "1997": 0.788, + "1998": 0.785, + "1999": 0.785, + "2000": 0.784, + "2001": 0.781, + "2002": 0.783, + "2003": 0.782, + "2004": 0.783, + "2005": 0.786, + "2006": 0.788, + "2007": 0.792, + "2008": 0.795, + "2009": 0.802, + "2010": 0.81, + "2011": 0.817, + "2012": 0.823, + "2013": 0.822, + "2014": 0.816, + "2015": 0.807, + "2016": 0.801, + "2017": 0.799, + "2018": 0.797, + "2019": 0.797, + "2020": 0.798, + "2021": 0.777 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr104", + "Region": "Trelawny, St Elizabeth", + "1990": 0.805, + "1991": 0.804, + "1992": 0.804, + "1993": 0.799, + "1994": 0.797, + "1995": 0.794, + "1996": 0.793, + "1997": 0.788, + "1998": 0.785, + "1999": 0.785, + "2000": 0.784, + "2001": 0.782, + "2002": 0.784, + "2003": 0.782, + "2004": 0.783, + "2005": 0.786, + "2006": 0.788, + "2007": 0.792, + "2008": 0.795, + "2009": 0.803, + "2010": 0.81, + "2011": 0.818, + "2012": 0.823, + "2013": 0.822, + "2014": 0.816, + "2015": 0.807, + "2016": 0.801, + "2017": 0.799, + "2018": 0.797, + "2019": 0.797, + "2020": 0.799, + "2021": 0.778 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "National", + "GDLCODE": "JPNt", + "Region": "Total", + "1990": 0.907, + "1991": 0.912, + "1992": 0.912, + "1993": 0.914, + "1994": 0.92, + "1995": 0.918, + "1996": 0.928, + "1997": 0.932, + "1998": 0.933, + "1999": 0.932, + "2000": 0.941, + "2001": 0.946, + "2002": 0.951, + "2003": 0.952, + "2004": 0.956, + "2005": 0.954, + "2006": 0.96, + "2007": 0.962, + "2008": 0.964, + "2009": 0.969, + "2010": 0.968, + "2011": 0.964, + "2012": 0.972, + "2013": 0.976, + "2014": 0.979, + "2015": 0.983, + "2016": 0.986, + "2017": 0.988, + "2018": 0.989, + "2019": 0.991, + "2020": 0.995, + "2021": 0.997 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr108", + "Region": "Chugoku (Tottori, Shimane, Okayama, Hiroshima, Yamaguchi)", + "1990": 0.909, + "1991": 0.913, + "1992": 0.914, + "1993": 0.916, + "1994": 0.922, + "1995": 0.92, + "1996": 0.93, + "1997": 0.933, + "1998": 0.934, + "1999": 0.934, + "2000": 0.943, + "2001": 0.949, + "2002": 0.955, + "2003": 0.957, + "2004": 0.962, + "2005": 0.962, + "2006": 0.967, + "2007": 0.969, + "2008": 0.97, + "2009": 0.974, + "2010": 0.973, + "2011": 0.969, + "2012": 0.977, + "2013": 0.98, + "2014": 0.984, + "2015": 0.988, + "2016": 0.99, + "2017": 0.992, + "2018": 0.994, + "2019": 0.996, + "2020": 1, + "2021": 1 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr101", + "Region": "Hokkaido", + "1990": 0.907, + "1991": 0.912, + "1992": 0.912, + "1993": 0.914, + "1994": 0.92, + "1995": 0.918, + "1996": 0.928, + "1997": 0.932, + "1998": 0.933, + "1999": 0.932, + "2000": 0.941, + "2001": 0.946, + "2002": 0.951, + "2003": 0.952, + "2004": 0.956, + "2005": 0.954, + "2006": 0.959, + "2007": 0.961, + "2008": 0.962, + "2009": 0.966, + "2010": 0.965, + "2011": 0.961, + "2012": 0.969, + "2013": 0.972, + "2014": 0.976, + "2015": 0.98, + "2016": 0.983, + "2017": 0.985, + "2018": 0.986, + "2019": 0.988, + "2020": 0.992, + "2021": 0.994 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr105", + "Region": "Hokuriku (Niigata, Toyama, Ishikawa, Fukui)", + "1990": 0.913, + "1991": 0.918, + "1992": 0.918, + "1993": 0.92, + "1994": 0.926, + "1995": 0.924, + "1996": 0.935, + "1997": 0.938, + "1998": 0.939, + "1999": 0.939, + "2000": 0.947, + "2001": 0.953, + "2002": 0.959, + "2003": 0.961, + "2004": 0.966, + "2005": 0.965, + "2006": 0.97, + "2007": 0.971, + "2008": 0.972, + "2009": 0.976, + "2010": 0.974, + "2011": 0.97, + "2012": 0.978, + "2013": 0.982, + "2014": 0.985, + "2015": 0.989, + "2016": 0.992, + "2017": 0.994, + "2018": 0.995, + "2019": 0.997, + "2020": 1, + "2021": 1 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr107", + "Region": "Kansai region (Shiga, Kyoto, Osaka, Hyogo, Nara, Wakayama)", + "1990": 0.903, + "1991": 0.907, + "1992": 0.908, + "1993": 0.91, + "1994": 0.916, + "1995": 0.913, + "1996": 0.924, + "1997": 0.927, + "1998": 0.928, + "1999": 0.928, + "2000": 0.937, + "2001": 0.943, + "2002": 0.949, + "2003": 0.951, + "2004": 0.956, + "2005": 0.956, + "2006": 0.961, + "2007": 0.963, + "2008": 0.963, + "2009": 0.968, + "2010": 0.966, + "2011": 0.963, + "2012": 0.97, + "2013": 0.974, + "2014": 0.978, + "2015": 0.981, + "2016": 0.984, + "2017": 0.986, + "2018": 0.988, + "2019": 0.99, + "2020": 0.994, + "2021": 0.995 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr110", + "Region": "Kyushu (Fukuoka, Saga, Nagasaki, Kumamoto, Oita, Miyazaki, Kagoshima, Okinawa)", + "1990": 0.907, + "1991": 0.912, + "1992": 0.912, + "1993": 0.914, + "1994": 0.92, + "1995": 0.918, + "1996": 0.928, + "1997": 0.932, + "1998": 0.933, + "1999": 0.932, + "2000": 0.941, + "2001": 0.947, + "2002": 0.953, + "2003": 0.954, + "2004": 0.96, + "2005": 0.959, + "2006": 0.964, + "2007": 0.966, + "2008": 0.966, + "2009": 0.971, + "2010": 0.97, + "2011": 0.966, + "2012": 0.973, + "2013": 0.977, + "2014": 0.981, + "2015": 0.985, + "2016": 0.987, + "2017": 0.989, + "2018": 0.991, + "2019": 0.993, + "2020": 0.997, + "2021": 0.998 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr103", + "Region": "Northern-Kanto, Koshin (Ibaraki, Tochigi, Gunma)", + "1990": 0.907, + "1991": 0.912, + "1992": 0.912, + "1993": 0.914, + "1994": 0.92, + "1995": 0.918, + "1996": 0.928, + "1997": 0.932, + "1998": 0.933, + "1999": 0.932, + "2000": 0.941, + "2001": 0.947, + "2002": 0.952, + "2003": 0.953, + "2004": 0.958, + "2005": 0.957, + "2006": 0.962, + "2007": 0.964, + "2008": 0.965, + "2009": 0.969, + "2010": 0.968, + "2011": 0.964, + "2012": 0.972, + "2013": 0.976, + "2014": 0.979, + "2015": 0.983, + "2016": 0.986, + "2017": 0.988, + "2018": 0.989, + "2019": 0.991, + "2020": 0.995, + "2021": 0.997 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr109", + "Region": "Shikoku (Tokushima, Kagawa, Ehime, Kochi)", + "1990": 0.904, + "1991": 0.909, + "1992": 0.909, + "1993": 0.911, + "1994": 0.917, + "1995": 0.915, + "1996": 0.925, + "1997": 0.929, + "1998": 0.93, + "1999": 0.929, + "2000": 0.938, + "2001": 0.944, + "2002": 0.949, + "2003": 0.95, + "2004": 0.955, + "2005": 0.954, + "2006": 0.96, + "2007": 0.962, + "2008": 0.964, + "2009": 0.969, + "2010": 0.968, + "2011": 0.964, + "2012": 0.972, + "2013": 0.976, + "2014": 0.979, + "2015": 0.983, + "2016": 0.986, + "2017": 0.988, + "2018": 0.989, + "2019": 0.991, + "2020": 0.995, + "2021": 0.997 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr104", + "Region": "Southern-Kanto (Saitama, Chiba, Tokyo, Kanagawa, Yamanashi, Nagano)", + "1990": 0.909, + "1991": 0.913, + "1992": 0.914, + "1993": 0.916, + "1994": 0.922, + "1995": 0.92, + "1996": 0.93, + "1997": 0.933, + "1998": 0.934, + "1999": 0.934, + "2000": 0.943, + "2001": 0.949, + "2002": 0.955, + "2003": 0.957, + "2004": 0.962, + "2005": 0.962, + "2006": 0.966, + "2007": 0.968, + "2008": 0.969, + "2009": 0.973, + "2010": 0.971, + "2011": 0.967, + "2012": 0.975, + "2013": 0.979, + "2014": 0.982, + "2015": 0.986, + "2016": 0.989, + "2017": 0.991, + "2018": 0.992, + "2019": 0.994, + "2020": 0.998, + "2021": 1 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr102", + "Region": "Tohoku (Aomori, Iwate, Miyagi, Akita, Yamagata, Fukushima)", + "1990": 0.9, + "1991": 0.904, + "1992": 0.905, + "1993": 0.907, + "1994": 0.913, + "1995": 0.91, + "1996": 0.921, + "1997": 0.924, + "1998": 0.925, + "1999": 0.925, + "2000": 0.933, + "2001": 0.939, + "2002": 0.944, + "2003": 0.945, + "2004": 0.949, + "2005": 0.948, + "2006": 0.953, + "2007": 0.956, + "2008": 0.957, + "2009": 0.961, + "2010": 0.96, + "2011": 0.957, + "2012": 0.964, + "2013": 0.968, + "2014": 0.972, + "2015": 0.975, + "2016": 0.978, + "2017": 0.98, + "2018": 0.981, + "2019": 0.983, + "2020": 0.987, + "2021": 0.989 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr106", + "Region": "Toukai (Gifu, Shizuoka, Aichi, Mie)", + "1990": 0.909, + "1991": 0.913, + "1992": 0.914, + "1993": 0.916, + "1994": 0.922, + "1995": 0.92, + "1996": 0.93, + "1997": 0.933, + "1998": 0.934, + "1999": 0.934, + "2000": 0.943, + "2001": 0.949, + "2002": 0.954, + "2003": 0.956, + "2004": 0.961, + "2005": 0.96, + "2006": 0.965, + "2007": 0.967, + "2008": 0.967, + "2009": 0.971, + "2010": 0.97, + "2011": 0.966, + "2012": 0.973, + "2013": 0.977, + "2014": 0.981, + "2015": 0.985, + "2016": 0.987, + "2017": 0.989, + "2018": 0.991, + "2019": 0.993, + "2020": 0.997, + "2021": 0.998 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "National", + "GDLCODE": "JORt", + "Region": "Total", + "1990": 0.767, + "1991": 0.771, + "1992": 0.774, + "1993": 0.777, + "1994": 0.78, + "1995": 0.783, + "1996": 0.786, + "1997": 0.789, + "1998": 0.792, + "1999": 0.795, + "2000": 0.799, + "2001": 0.802, + "2002": 0.806, + "2003": 0.809, + "2004": 0.812, + "2005": 0.814, + "2006": 0.818, + "2007": 0.821, + "2008": 0.824, + "2009": 0.828, + "2010": 0.831, + "2011": 0.834, + "2012": 0.836, + "2013": 0.839, + "2014": 0.843, + "2015": 0.846, + "2016": 0.849, + "2017": 0.854, + "2018": 0.858, + "2019": 0.862, + "2020": 0.849, + "2021": 0.835 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr108", + "Region": "Aljoun", + "1990": 0.717, + "1991": 0.72, + "1992": 0.724, + "1993": 0.727, + "1994": 0.729, + "1995": 0.732, + "1996": 0.735, + "1997": 0.738, + "1998": 0.741, + "1999": 0.744, + "2000": 0.747, + "2001": 0.75, + "2002": 0.753, + "2003": 0.766, + "2004": 0.777, + "2005": 0.788, + "2006": 0.8, + "2007": 0.812, + "2008": 0.82, + "2009": 0.827, + "2010": 0.834, + "2011": 0.841, + "2012": 0.848, + "2013": 0.846, + "2014": 0.845, + "2015": 0.843, + "2016": 0.842, + "2017": 0.842, + "2018": 0.846, + "2019": 0.85, + "2020": 0.837, + "2021": 0.823 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr101", + "Region": "Amman", + "1990": 0.783, + "1991": 0.787, + "1992": 0.79, + "1993": 0.793, + "1994": 0.796, + "1995": 0.799, + "1996": 0.802, + "1997": 0.805, + "1998": 0.808, + "1999": 0.812, + "2000": 0.815, + "2001": 0.819, + "2002": 0.822, + "2003": 0.821, + "2004": 0.82, + "2005": 0.818, + "2006": 0.817, + "2007": 0.816, + "2008": 0.821, + "2009": 0.825, + "2010": 0.829, + "2011": 0.834, + "2012": 0.837, + "2013": 0.841, + "2014": 0.845, + "2015": 0.849, + "2016": 0.852, + "2017": 0.857, + "2018": 0.861, + "2019": 0.865, + "2020": 0.852, + "2021": 0.838 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr112", + "Region": "Aqaba", + "1990": 0.786, + "1991": 0.79, + "1992": 0.794, + "1993": 0.797, + "1994": 0.8, + "1995": 0.802, + "1996": 0.805, + "1997": 0.809, + "1998": 0.812, + "1999": 0.815, + "2000": 0.819, + "2001": 0.822, + "2002": 0.826, + "2003": 0.824, + "2004": 0.821, + "2005": 0.818, + "2006": 0.816, + "2007": 0.814, + "2008": 0.816, + "2009": 0.819, + "2010": 0.821, + "2011": 0.823, + "2012": 0.824, + "2013": 0.833, + "2014": 0.843, + "2015": 0.852, + "2016": 0.861, + "2017": 0.871, + "2018": 0.876, + "2019": 0.88, + "2020": 0.866, + "2021": 0.852 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr102", + "Region": "Balqa", + "1990": 0.762, + "1991": 0.766, + "1992": 0.769, + "1993": 0.772, + "1994": 0.775, + "1995": 0.778, + "1996": 0.781, + "1997": 0.784, + "1998": 0.787, + "1999": 0.79, + "2000": 0.794, + "2001": 0.797, + "2002": 0.8, + "2003": 0.804, + "2004": 0.807, + "2005": 0.81, + "2006": 0.813, + "2007": 0.817, + "2008": 0.823, + "2009": 0.828, + "2010": 0.833, + "2011": 0.838, + "2012": 0.843, + "2013": 0.848, + "2014": 0.853, + "2015": 0.858, + "2016": 0.863, + "2017": 0.869, + "2018": 0.874, + "2019": 0.878, + "2020": 0.864, + "2021": 0.85 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr105", + "Region": "Irbid", + "1990": 0.764, + "1991": 0.768, + "1992": 0.771, + "1993": 0.774, + "1994": 0.777, + "1995": 0.779, + "1996": 0.782, + "1997": 0.786, + "1998": 0.789, + "1999": 0.792, + "2000": 0.796, + "2001": 0.799, + "2002": 0.802, + "2003": 0.807, + "2004": 0.812, + "2005": 0.816, + "2006": 0.821, + "2007": 0.826, + "2008": 0.829, + "2009": 0.833, + "2010": 0.836, + "2011": 0.839, + "2012": 0.842, + "2013": 0.843, + "2014": 0.845, + "2015": 0.846, + "2016": 0.847, + "2017": 0.85, + "2018": 0.854, + "2019": 0.858, + "2020": 0.845, + "2021": 0.831 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr107", + "Region": "Jarash", + "1990": 0.74, + "1991": 0.744, + "1992": 0.747, + "1993": 0.75, + "1994": 0.753, + "1995": 0.755, + "1996": 0.758, + "1997": 0.761, + "1998": 0.764, + "1999": 0.768, + "2000": 0.771, + "2001": 0.774, + "2002": 0.778, + "2003": 0.788, + "2004": 0.798, + "2005": 0.807, + "2006": 0.817, + "2007": 0.827, + "2008": 0.83, + "2009": 0.832, + "2010": 0.835, + "2011": 0.837, + "2012": 0.839, + "2013": 0.843, + "2014": 0.849, + "2015": 0.854, + "2016": 0.858, + "2017": 0.864, + "2018": 0.869, + "2019": 0.873, + "2020": 0.86, + "2021": 0.845 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr109", + "Region": "Karak", + "1990": 0.734, + "1991": 0.737, + "1992": 0.741, + "1993": 0.744, + "1994": 0.746, + "1995": 0.749, + "1996": 0.752, + "1997": 0.755, + "1998": 0.758, + "1999": 0.761, + "2000": 0.764, + "2001": 0.768, + "2002": 0.771, + "2003": 0.773, + "2004": 0.775, + "2005": 0.776, + "2006": 0.778, + "2007": 0.78, + "2008": 0.79, + "2009": 0.8, + "2010": 0.809, + "2011": 0.819, + "2012": 0.828, + "2013": 0.834, + "2014": 0.841, + "2015": 0.848, + "2016": 0.855, + "2017": 0.863, + "2018": 0.867, + "2019": 0.871, + "2020": 0.858, + "2021": 0.843 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr111", + "Region": "Maan", + "1990": 0.767, + "1991": 0.771, + "1992": 0.775, + "1993": 0.778, + "1994": 0.78, + "1995": 0.783, + "1996": 0.786, + "1997": 0.789, + "1998": 0.792, + "1999": 0.796, + "2000": 0.799, + "2001": 0.803, + "2002": 0.806, + "2003": 0.805, + "2004": 0.804, + "2005": 0.802, + "2006": 0.801, + "2007": 0.8, + "2008": 0.803, + "2009": 0.806, + "2010": 0.809, + "2011": 0.812, + "2012": 0.815, + "2013": 0.822, + "2014": 0.829, + "2015": 0.836, + "2016": 0.843, + "2017": 0.851, + "2018": 0.855, + "2019": 0.859, + "2020": 0.846, + "2021": 0.832 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr104", + "Region": "Madaba", + "1990": 0.73, + "1991": 0.733, + "1992": 0.737, + "1993": 0.74, + "1994": 0.742, + "1995": 0.745, + "1996": 0.748, + "1997": 0.751, + "1998": 0.754, + "1999": 0.757, + "2000": 0.76, + "2001": 0.764, + "2002": 0.767, + "2003": 0.777, + "2004": 0.786, + "2005": 0.795, + "2006": 0.804, + "2007": 0.814, + "2008": 0.814, + "2009": 0.814, + "2010": 0.813, + "2011": 0.813, + "2012": 0.812, + "2013": 0.818, + "2014": 0.824, + "2015": 0.83, + "2016": 0.836, + "2017": 0.843, + "2018": 0.847, + "2019": 0.852, + "2020": 0.838, + "2021": 0.824 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr106", + "Region": "Mafraq", + "1990": 0.745, + "1991": 0.749, + "1992": 0.752, + "1993": 0.755, + "1994": 0.758, + "1995": 0.761, + "1996": 0.764, + "1997": 0.767, + "1998": 0.77, + "1999": 0.773, + "2000": 0.777, + "2001": 0.78, + "2002": 0.783, + "2003": 0.786, + "2004": 0.789, + "2005": 0.791, + "2006": 0.794, + "2007": 0.797, + "2008": 0.804, + "2009": 0.811, + "2010": 0.818, + "2011": 0.824, + "2012": 0.831, + "2013": 0.832, + "2014": 0.833, + "2015": 0.835, + "2016": 0.836, + "2017": 0.838, + "2018": 0.842, + "2019": 0.846, + "2020": 0.833, + "2021": 0.819 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr110", + "Region": "Tafiela", + "1990": 0.793, + "1991": 0.796, + "1992": 0.8, + "1993": 0.803, + "1994": 0.806, + "1995": 0.809, + "1996": 0.812, + "1997": 0.815, + "1998": 0.818, + "1999": 0.821, + "2000": 0.825, + "2001": 0.829, + "2002": 0.832, + "2003": 0.826, + "2004": 0.82, + "2005": 0.814, + "2006": 0.808, + "2007": 0.803, + "2008": 0.805, + "2009": 0.806, + "2010": 0.807, + "2011": 0.808, + "2012": 0.809, + "2013": 0.817, + "2014": 0.826, + "2015": 0.834, + "2016": 0.843, + "2017": 0.852, + "2018": 0.856, + "2019": 0.86, + "2020": 0.847, + "2021": 0.833 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr103", + "Region": "Zarqa", + "1990": 0.764, + "1991": 0.768, + "1992": 0.771, + "1993": 0.774, + "1994": 0.777, + "1995": 0.779, + "1996": 0.782, + "1997": 0.786, + "1998": 0.789, + "1999": 0.792, + "2000": 0.796, + "2001": 0.799, + "2002": 0.802, + "2003": 0.813, + "2004": 0.823, + "2005": 0.833, + "2006": 0.843, + "2007": 0.854, + "2008": 0.851, + "2009": 0.848, + "2010": 0.845, + "2011": 0.842, + "2012": 0.839, + "2013": 0.841, + "2014": 0.843, + "2015": 0.845, + "2016": 0.847, + "2017": 0.85, + "2018": 0.854, + "2019": 0.858, + "2020": 0.845, + "2021": 0.831 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "National", + "GDLCODE": "KAZt", + "Region": "Total", + "1990": 0.69, + "1991": 0.684, + "1992": 0.679, + "1993": 0.68, + "1994": 0.676, + "1995": 0.673, + "1996": 0.671, + "1997": 0.672, + "1998": 0.674, + "1999": 0.677, + "2000": 0.68, + "2001": 0.683, + "2002": 0.681, + "2003": 0.685, + "2004": 0.69, + "2005": 0.694, + "2006": 0.702, + "2007": 0.707, + "2008": 0.718, + "2009": 0.727, + "2010": 0.74, + "2011": 0.75, + "2012": 0.756, + "2013": 0.766, + "2014": 0.774, + "2015": 0.78, + "2016": 0.783, + "2017": 0.791, + "2018": 0.792, + "2019": 0.793, + "2020": 0.77, + "2021": 0.759 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr101", + "Region": "Almaty city", + "1990": 0.726, + "1991": 0.72, + "1992": 0.715, + "1993": 0.716, + "1994": 0.712, + "1995": 0.708, + "1996": 0.715, + "1997": 0.724, + "1998": 0.734, + "1999": 0.746, + "2000": 0.742, + "2001": 0.738, + "2002": 0.729, + "2003": 0.726, + "2004": 0.724, + "2005": 0.721, + "2006": 0.723, + "2007": 0.72, + "2008": 0.725, + "2009": 0.727, + "2010": 0.732, + "2011": 0.739, + "2012": 0.741, + "2013": 0.748, + "2014": 0.753, + "2015": 0.755, + "2016": 0.758, + "2017": 0.765, + "2018": 0.767, + "2019": 0.768, + "2020": 0.745, + "2021": 0.735 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr104", + "Region": "Central region (Karagandinskaya)", + "1990": 0.692, + "1991": 0.686, + "1992": 0.681, + "1993": 0.682, + "1994": 0.678, + "1995": 0.674, + "1996": 0.68, + "1997": 0.688, + "1998": 0.696, + "1999": 0.706, + "2000": 0.701, + "2001": 0.697, + "2002": 0.687, + "2003": 0.684, + "2004": 0.681, + "2005": 0.678, + "2006": 0.678, + "2007": 0.683, + "2008": 0.696, + "2009": 0.705, + "2010": 0.719, + "2011": 0.741, + "2012": 0.759, + "2013": 0.782, + "2014": 0.803, + "2015": 0.822, + "2016": 0.825, + "2017": 0.833, + "2018": 0.834, + "2019": 0.836, + "2020": 0.811, + "2021": 0.8 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr106", + "Region": "East region (East-Kazakhstanskaya)", + "1990": 0.703, + "1991": 0.697, + "1992": 0.692, + "1993": 0.692, + "1994": 0.688, + "1995": 0.685, + "1996": 0.691, + "1997": 0.7, + "1998": 0.709, + "1999": 0.72, + "2000": 0.718, + "2001": 0.716, + "2002": 0.709, + "2003": 0.709, + "2004": 0.709, + "2005": 0.708, + "2006": 0.711, + "2007": 0.708, + "2008": 0.713, + "2009": 0.714, + "2010": 0.719, + "2011": 0.725, + "2012": 0.726, + "2013": 0.732, + "2014": 0.736, + "2015": 0.737, + "2016": 0.74, + "2017": 0.747, + "2018": 0.748, + "2019": 0.75, + "2020": 0.727, + "2021": 0.717 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr105", + "Region": "North region (Akmolinskaya (incl Astana city), Kostnaiskaya, Pavlodarskaya, North-Kazakhstanskaya)", + "1990": 0.714, + "1991": 0.708, + "1992": 0.703, + "1993": 0.704, + "1994": 0.7, + "1995": 0.696, + "1996": 0.701, + "1997": 0.709, + "1998": 0.717, + "1999": 0.727, + "2000": 0.72, + "2001": 0.714, + "2002": 0.703, + "2003": 0.698, + "2004": 0.693, + "2005": 0.688, + "2006": 0.687, + "2007": 0.698, + "2008": 0.716, + "2009": 0.732, + "2010": 0.751, + "2011": 0.765, + "2012": 0.776, + "2013": 0.791, + "2014": 0.803, + "2015": 0.814, + "2016": 0.816, + "2017": 0.824, + "2018": 0.825, + "2019": 0.827, + "2020": 0.803, + "2021": 0.792 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr102", + "Region": "South region (Almatinskaya, Zhambylskaya, Kyzylordinskaya, South-Kazakhstanskaya)", + "1990": 0.674, + "1991": 0.668, + "1992": 0.664, + "1993": 0.664, + "1994": 0.661, + "1995": 0.657, + "1996": 0.647, + "1997": 0.639, + "1998": 0.631, + "1999": 0.624, + "2000": 0.634, + "2001": 0.643, + "2002": 0.648, + "2003": 0.659, + "2004": 0.67, + "2005": 0.681, + "2006": 0.695, + "2007": 0.698, + "2008": 0.709, + "2009": 0.716, + "2010": 0.727, + "2011": 0.736, + "2012": 0.741, + "2013": 0.751, + "2014": 0.758, + "2015": 0.763, + "2016": 0.766, + "2017": 0.773, + "2018": 0.774, + "2019": 0.776, + "2020": 0.752, + "2021": 0.742 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr103", + "Region": "West region (Aktyubinskaya, Atyrauskaya, Mangistauskaya, West-Kazakhstanskaya)", + "1990": 0.7, + "1991": 0.694, + "1992": 0.689, + "1993": 0.69, + "1994": 0.686, + "1995": 0.682, + "1996": 0.684, + "1997": 0.688, + "1998": 0.692, + "1999": 0.698, + "2000": 0.702, + "2001": 0.706, + "2002": 0.705, + "2003": 0.71, + "2004": 0.716, + "2005": 0.721, + "2006": 0.73, + "2007": 0.736, + "2008": 0.751, + "2009": 0.762, + "2010": 0.778, + "2011": 0.78, + "2012": 0.779, + "2013": 0.782, + "2014": 0.783, + "2015": 0.782, + "2016": 0.784, + "2017": 0.792, + "2018": 0.793, + "2019": 0.795, + "2020": 0.771, + "2021": 0.761 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "National", + "GDLCODE": "KENt", + "Region": "Total", + "1990": 0.594, + "1991": 0.585, + "1992": 0.573, + "1993": 0.563, + "1994": 0.558, + "1995": 0.548, + "1996": 0.541, + "1997": 0.536, + "1998": 0.531, + "1999": 0.531, + "2000": 0.529, + "2001": 0.531, + "2002": 0.538, + "2003": 0.548, + "2004": 0.559, + "2005": 0.575, + "2006": 0.588, + "2007": 0.598, + "2008": 0.609, + "2009": 0.621, + "2010": 0.625, + "2011": 0.631, + "2012": 0.633, + "2013": 0.637, + "2014": 0.643, + "2015": 0.644, + "2016": 0.649, + "2017": 0.654, + "2018": 0.657, + "2019": 0.661, + "2020": 0.657, + "2021": 0.637 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr102", + "Region": "Central", + "1990": 0.709, + "1991": 0.698, + "1992": 0.685, + "1993": 0.674, + "1994": 0.677, + "1995": 0.674, + "1996": 0.675, + "1997": 0.678, + "1998": 0.681, + "1999": 0.674, + "2000": 0.666, + "2001": 0.661, + "2002": 0.662, + "2003": 0.666, + "2004": 0.668, + "2005": 0.674, + "2006": 0.679, + "2007": 0.679, + "2008": 0.681, + "2009": 0.686, + "2010": 0.684, + "2011": 0.683, + "2012": 0.677, + "2013": 0.675, + "2014": 0.675, + "2015": 0.676, + "2016": 0.681, + "2017": 0.686, + "2018": 0.689, + "2019": 0.693, + "2020": 0.689, + "2021": 0.669 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr103", + "Region": "Coast", + "1990": 0.565, + "1991": 0.555, + "1992": 0.544, + "1993": 0.535, + "1994": 0.539, + "1995": 0.538, + "1996": 0.54, + "1997": 0.543, + "1998": 0.548, + "1999": 0.543, + "2000": 0.538, + "2001": 0.535, + "2002": 0.538, + "2003": 0.543, + "2004": 0.554, + "2005": 0.569, + "2006": 0.582, + "2007": 0.591, + "2008": 0.602, + "2009": 0.614, + "2010": 0.62, + "2011": 0.626, + "2012": 0.628, + "2013": 0.633, + "2014": 0.641, + "2015": 0.642, + "2016": 0.646, + "2017": 0.651, + "2018": 0.654, + "2019": 0.658, + "2020": 0.654, + "2021": 0.635 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr104", + "Region": "Eastern", + "1990": 0.651, + "1991": 0.641, + "1992": 0.629, + "1993": 0.619, + "1994": 0.612, + "1995": 0.601, + "1996": 0.593, + "1997": 0.587, + "1998": 0.582, + "1999": 0.582, + "2000": 0.581, + "2001": 0.583, + "2002": 0.591, + "2003": 0.601, + "2004": 0.616, + "2005": 0.635, + "2006": 0.651, + "2007": 0.664, + "2008": 0.679, + "2009": 0.683, + "2010": 0.68, + "2011": 0.679, + "2012": 0.673, + "2013": 0.67, + "2014": 0.669, + "2015": 0.67, + "2016": 0.675, + "2017": 0.68, + "2018": 0.683, + "2019": 0.687, + "2020": 0.683, + "2021": 0.663 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr101", + "Region": "Nairobi", + "1990": 0.616, + "1991": 0.607, + "1992": 0.595, + "1993": 0.585, + "1994": 0.59, + "1995": 0.591, + "1996": 0.594, + "1997": 0.6, + "1998": 0.606, + "1999": 0.597, + "2000": 0.587, + "2001": 0.58, + "2002": 0.579, + "2003": 0.58, + "2004": 0.594, + "2005": 0.611, + "2006": 0.627, + "2007": 0.639, + "2008": 0.652, + "2009": 0.651, + "2010": 0.642, + "2011": 0.635, + "2012": 0.624, + "2013": 0.616, + "2014": 0.61, + "2015": 0.611, + "2016": 0.615, + "2017": 0.62, + "2018": 0.622, + "2019": 0.626, + "2020": 0.622, + "2021": 0.604 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr108", + "Region": "North Eastern", + "1990": 0.492, + "1991": 0.484, + "1992": 0.474, + "1993": 0.465, + "1994": 0.463, + "1995": 0.457, + "1996": 0.454, + "1997": 0.452, + "1998": 0.451, + "1999": 0.452, + "2000": 0.453, + "2001": 0.456, + "2002": 0.464, + "2003": 0.474, + "2004": 0.502, + "2005": 0.533, + "2006": 0.563, + "2007": 0.589, + "2008": 0.617, + "2009": 0.632, + "2010": 0.64, + "2011": 0.649, + "2012": 0.653, + "2013": 0.661, + "2014": 0.671, + "2015": 0.672, + "2016": 0.676, + "2017": 0.681, + "2018": 0.684, + "2019": 0.689, + "2020": 0.684, + "2021": 0.665 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr105", + "Region": "Nyanza", + "1990": 0.457, + "1991": 0.449, + "1992": 0.439, + "1993": 0.431, + "1994": 0.428, + "1995": 0.421, + "1996": 0.417, + "1997": 0.415, + "1998": 0.413, + "1999": 0.413, + "2000": 0.413, + "2001": 0.415, + "2002": 0.423, + "2003": 0.432, + "2004": 0.445, + "2005": 0.461, + "2006": 0.475, + "2007": 0.487, + "2008": 0.499, + "2009": 0.52, + "2010": 0.534, + "2011": 0.549, + "2012": 0.56, + "2013": 0.574, + "2014": 0.589, + "2015": 0.59, + "2016": 0.594, + "2017": 0.599, + "2018": 0.602, + "2019": 0.606, + "2020": 0.602, + "2021": 0.584 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr106", + "Region": "Rift Valley", + "1990": 0.664, + "1991": 0.654, + "1992": 0.641, + "1993": 0.631, + "1994": 0.626, + "1995": 0.617, + "1996": 0.61, + "1997": 0.606, + "1998": 0.602, + "1999": 0.601, + "2000": 0.598, + "2001": 0.599, + "2002": 0.605, + "2003": 0.614, + "2004": 0.623, + "2005": 0.636, + "2006": 0.647, + "2007": 0.654, + "2008": 0.663, + "2009": 0.67, + "2010": 0.669, + "2011": 0.671, + "2012": 0.667, + "2013": 0.667, + "2014": 0.669, + "2015": 0.67, + "2016": 0.674, + "2017": 0.679, + "2018": 0.683, + "2019": 0.687, + "2020": 0.683, + "2021": 0.663 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr107", + "Region": "Western", + "1990": 0.563, + "1991": 0.554, + "1992": 0.543, + "1993": 0.533, + "1994": 0.528, + "1995": 0.519, + "1996": 0.512, + "1997": 0.507, + "1998": 0.502, + "1999": 0.498, + "2000": 0.494, + "2001": 0.491, + "2002": 0.495, + "2003": 0.5, + "2004": 0.508, + "2005": 0.519, + "2006": 0.528, + "2007": 0.534, + "2008": 0.542, + "2009": 0.562, + "2010": 0.575, + "2011": 0.59, + "2012": 0.599, + "2013": 0.612, + "2014": 0.627, + "2015": 0.628, + "2016": 0.632, + "2017": 0.637, + "2018": 0.64, + "2019": 0.644, + "2020": 0.64, + "2021": 0.621 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "National", + "GDLCODE": "KIRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.683, + "2001": 0.687, + "2002": 0.69, + "2003": 0.692, + "2004": 0.692, + "2005": 0.692, + "2006": 0.691, + "2007": 0.69, + "2008": 0.69, + "2009": 0.691, + "2010": 0.693, + "2011": 0.695, + "2012": 0.698, + "2013": 0.701, + "2014": 0.705, + "2015": 0.709, + "2016": 0.713, + "2017": 0.717, + "2018": 0.721, + "2019": 0.725, + "2020": 0.727, + "2021": 0.729 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr103", + "Region": "Central Gibert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.635, + "2001": 0.638, + "2002": 0.641, + "2003": 0.642, + "2004": 0.643, + "2005": 0.643, + "2006": 0.642, + "2007": 0.641, + "2008": 0.641, + "2009": 0.642, + "2010": 0.643, + "2011": 0.646, + "2012": 0.649, + "2013": 0.652, + "2014": 0.655, + "2015": 0.659, + "2016": 0.663, + "2017": 0.667, + "2018": 0.67, + "2019": 0.675, + "2020": 0.676, + "2021": 0.679 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr105", + "Region": "Line and Phoenix Group", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.698, + "2001": 0.702, + "2002": 0.704, + "2003": 0.706, + "2004": 0.707, + "2005": 0.706, + "2006": 0.705, + "2007": 0.704, + "2008": 0.704, + "2009": 0.705, + "2010": 0.707, + "2011": 0.71, + "2012": 0.713, + "2013": 0.716, + "2014": 0.72, + "2015": 0.723, + "2016": 0.728, + "2017": 0.732, + "2018": 0.736, + "2019": 0.74, + "2020": 0.742, + "2021": 0.745 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr102", + "Region": "Northern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.717, + "2001": 0.721, + "2002": 0.724, + "2003": 0.726, + "2004": 0.726, + "2005": 0.726, + "2006": 0.725, + "2007": 0.724, + "2008": 0.724, + "2009": 0.725, + "2010": 0.727, + "2011": 0.729, + "2012": 0.732, + "2013": 0.736, + "2014": 0.739, + "2015": 0.743, + "2016": 0.747, + "2017": 0.752, + "2018": 0.756, + "2019": 0.76, + "2020": 0.762, + "2021": 0.765 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr104", + "Region": "Southern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.692, + "2001": 0.696, + "2002": 0.699, + "2003": 0.701, + "2004": 0.701, + "2005": 0.701, + "2006": 0.7, + "2007": 0.699, + "2008": 0.699, + "2009": 0.7, + "2010": 0.702, + "2011": 0.704, + "2012": 0.707, + "2013": 0.71, + "2014": 0.714, + "2015": 0.718, + "2016": 0.722, + "2017": 0.726, + "2018": 0.73, + "2019": 0.735, + "2020": 0.736, + "2021": 0.739 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr101", + "Region": "Souyth Tarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.672, + "2001": 0.676, + "2002": 0.679, + "2003": 0.681, + "2004": 0.681, + "2005": 0.681, + "2006": 0.68, + "2007": 0.679, + "2008": 0.679, + "2009": 0.68, + "2010": 0.682, + "2011": 0.684, + "2012": 0.687, + "2013": 0.69, + "2014": 0.694, + "2015": 0.697, + "2016": 0.702, + "2017": 0.706, + "2018": 0.71, + "2019": 0.714, + "2020": 0.716, + "2021": 0.718 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "National", + "GDLCODE": "KSVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.768, + "2011": 0.772, + "2012": 0.777, + "2013": 0.782, + "2014": 0.786, + "2015": 0.79, + "2016": 0.795, + "2017": 0.799, + "2018": 0.804, + "2019": 0.808, + "2020": 0.812, + "2021": 0.815 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr107", + "Region": "Ferizaj", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.793, + "2011": 0.797, + "2012": 0.802, + "2013": 0.807, + "2014": 0.811, + "2015": 0.812, + "2016": 0.813, + "2017": 0.815, + "2018": 0.816, + "2019": 0.817, + "2020": 0.817, + "2021": 0.821 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr101", + "Region": "Gjakova", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.765, + "2011": 0.769, + "2012": 0.774, + "2013": 0.779, + "2014": 0.783, + "2015": 0.786, + "2016": 0.789, + "2017": 0.792, + "2018": 0.796, + "2019": 0.798, + "2020": 0.801, + "2021": 0.804 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr102", + "Region": "Gjilan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.787, + "2011": 0.791, + "2012": 0.796, + "2013": 0.801, + "2014": 0.806, + "2015": 0.797, + "2016": 0.79, + "2017": 0.782, + "2018": 0.774, + "2019": 0.766, + "2020": 0.757, + "2021": 0.761 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr103", + "Region": "Mitrovica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.781, + "2011": 0.785, + "2012": 0.79, + "2013": 0.795, + "2014": 0.8, + "2015": 0.8, + "2016": 0.802, + "2017": 0.803, + "2018": 0.805, + "2019": 0.805, + "2020": 0.806, + "2021": 0.81 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr104", + "Region": "Peja", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.729, + "2011": 0.733, + "2012": 0.738, + "2013": 0.742, + "2014": 0.747, + "2015": 0.755, + "2016": 0.763, + "2017": 0.772, + "2018": 0.781, + "2019": 0.789, + "2020": 0.797, + "2021": 0.801 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr106", + "Region": "Pristina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.777, + "2011": 0.781, + "2012": 0.787, + "2013": 0.791, + "2014": 0.796, + "2015": 0.798, + "2016": 0.801, + "2017": 0.804, + "2018": 0.807, + "2019": 0.809, + "2020": 0.811, + "2021": 0.815 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr105", + "Region": "Prizren", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.75, + "2011": 0.754, + "2012": 0.759, + "2013": 0.763, + "2014": 0.768, + "2015": 0.777, + "2016": 0.788, + "2017": 0.798, + "2018": 0.808, + "2019": 0.818, + "2020": 0.828, + "2021": 0.832 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "National", + "GDLCODE": "KWTt", + "Region": "Total", + "1990": 0.82, + "1991": 0.834, + "1992": 0.857, + "1993": 0.858, + "1994": 0.858, + "1995": 0.854, + "1996": 0.856, + "1997": 0.86, + "1998": 0.864, + "1999": 0.868, + "2000": 0.873, + "2001": 0.875, + "2002": 0.877, + "2003": 0.877, + "2004": 0.874, + "2005": 0.875, + "2006": 0.875, + "2007": 0.877, + "2008": 0.879, + "2009": 0.884, + "2010": 0.892, + "2011": 0.899, + "2012": 0.905, + "2013": 0.91, + "2014": 0.915, + "2015": 0.916, + "2016": 0.918, + "2017": 0.92, + "2018": 0.919, + "2019": 0.918, + "2020": 0.876, + "2021": 0.903 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr102", + "Region": "Ahmadi", + "1990": 0.82, + "1991": 0.834, + "1992": 0.857, + "1993": 0.858, + "1994": 0.858, + "1995": 0.854, + "1996": 0.856, + "1997": 0.86, + "1998": 0.864, + "1999": 0.868, + "2000": 0.873, + "2001": 0.875, + "2002": 0.877, + "2003": 0.877, + "2004": 0.874, + "2005": 0.875, + "2006": 0.875, + "2007": 0.877, + "2008": 0.879, + "2009": 0.884, + "2010": 0.892, + "2011": 0.899, + "2012": 0.905, + "2013": 0.91, + "2014": 0.915, + "2015": 0.916, + "2016": 0.918, + "2017": 0.92, + "2018": 0.919, + "2019": 0.918, + "2020": 0.876, + "2021": 0.903 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr101", + "Region": "Al Asimah, Hawalli, Al-Farwaniyah, Mubarak al-Sabah", + "1990": 0.82, + "1991": 0.834, + "1992": 0.857, + "1993": 0.858, + "1994": 0.858, + "1995": 0.854, + "1996": 0.856, + "1997": 0.86, + "1998": 0.864, + "1999": 0.868, + "2000": 0.873, + "2001": 0.875, + "2002": 0.877, + "2003": 0.877, + "2004": 0.874, + "2005": 0.875, + "2006": 0.875, + "2007": 0.877, + "2008": 0.879, + "2009": 0.884, + "2010": 0.892, + "2011": 0.899, + "2012": 0.905, + "2013": 0.91, + "2014": 0.915, + "2015": 0.916, + "2016": 0.918, + "2017": 0.92, + "2018": 0.919, + "2019": 0.918, + "2020": 0.876, + "2021": 0.903 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr103", + "Region": "Al-Jahra", + "1990": 0.82, + "1991": 0.834, + "1992": 0.857, + "1993": 0.858, + "1994": 0.858, + "1995": 0.854, + "1996": 0.856, + "1997": 0.86, + "1998": 0.864, + "1999": 0.868, + "2000": 0.873, + "2001": 0.875, + "2002": 0.877, + "2003": 0.877, + "2004": 0.874, + "2005": 0.875, + "2006": 0.875, + "2007": 0.877, + "2008": 0.879, + "2009": 0.884, + "2010": 0.892, + "2011": 0.899, + "2012": 0.905, + "2013": 0.91, + "2014": 0.915, + "2015": 0.916, + "2016": 0.918, + "2017": 0.92, + "2018": 0.919, + "2019": 0.918, + "2020": 0.876, + "2021": 0.903 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "National", + "GDLCODE": "KGZt", + "Region": "Total", + "1990": 0.681, + "1991": 0.681, + "1992": 0.678, + "1993": 0.674, + "1994": 0.673, + "1995": 0.676, + "1996": 0.681, + "1997": 0.686, + "1998": 0.694, + "1999": 0.701, + "2000": 0.698, + "2001": 0.704, + "2002": 0.706, + "2003": 0.711, + "2004": 0.712, + "2005": 0.714, + "2006": 0.72, + "2007": 0.723, + "2008": 0.727, + "2009": 0.735, + "2010": 0.742, + "2011": 0.747, + "2012": 0.754, + "2013": 0.757, + "2014": 0.767, + "2015": 0.769, + "2016": 0.773, + "2017": 0.778, + "2018": 0.78, + "2019": 0.788, + "2020": 0.764, + "2021": 0.769 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr108", + "Region": "Batken", + "1990": 0.635, + "1991": 0.636, + "1992": 0.632, + "1993": 0.629, + "1994": 0.628, + "1995": 0.63, + "1996": 0.635, + "1997": 0.64, + "1998": 0.648, + "1999": 0.655, + "2000": 0.652, + "2001": 0.657, + "2002": 0.659, + "2003": 0.664, + "2004": 0.665, + "2005": 0.666, + "2006": 0.672, + "2007": 0.679, + "2008": 0.687, + "2009": 0.699, + "2010": 0.709, + "2011": 0.718, + "2012": 0.728, + "2013": 0.736, + "2014": 0.75, + "2015": 0.76, + "2016": 0.772, + "2017": 0.784, + "2018": 0.794, + "2019": 0.802, + "2020": 0.777, + "2021": 0.782 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr101", + "Region": "Bishkek", + "1990": 0.714, + "1991": 0.714, + "1992": 0.71, + "1993": 0.706, + "1994": 0.705, + "1995": 0.708, + "1996": 0.714, + "1997": 0.719, + "1998": 0.727, + "1999": 0.734, + "2000": 0.732, + "2001": 0.737, + "2002": 0.739, + "2003": 0.744, + "2004": 0.746, + "2005": 0.747, + "2006": 0.753, + "2007": 0.751, + "2008": 0.75, + "2009": 0.753, + "2010": 0.754, + "2011": 0.754, + "2012": 0.755, + "2013": 0.77, + "2014": 0.791, + "2015": 0.785, + "2016": 0.781, + "2017": 0.777, + "2018": 0.771, + "2019": 0.779, + "2020": 0.755, + "2021": 0.76 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr103", + "Region": "Chuy", + "1990": 0.71, + "1991": 0.711, + "1992": 0.707, + "1993": 0.703, + "1994": 0.702, + "1995": 0.705, + "1996": 0.71, + "1997": 0.715, + "1998": 0.724, + "1999": 0.731, + "2000": 0.728, + "2001": 0.734, + "2002": 0.736, + "2003": 0.741, + "2004": 0.742, + "2005": 0.744, + "2006": 0.75, + "2007": 0.751, + "2008": 0.752, + "2009": 0.758, + "2010": 0.762, + "2011": 0.765, + "2012": 0.768, + "2013": 0.769, + "2014": 0.776, + "2015": 0.782, + "2016": 0.791, + "2017": 0.8, + "2018": 0.806, + "2019": 0.814, + "2020": 0.789, + "2021": 0.794 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr102", + "Region": "Issyk-Kul", + "1990": 0.73, + "1991": 0.73, + "1992": 0.726, + "1993": 0.723, + "1994": 0.721, + "1995": 0.724, + "1996": 0.73, + "1997": 0.735, + "1998": 0.744, + "1999": 0.751, + "2000": 0.748, + "2001": 0.754, + "2002": 0.756, + "2003": 0.761, + "2004": 0.763, + "2005": 0.764, + "2006": 0.77, + "2007": 0.766, + "2008": 0.762, + "2009": 0.763, + "2010": 0.762, + "2011": 0.76, + "2012": 0.758, + "2013": 0.756, + "2014": 0.761, + "2015": 0.762, + "2016": 0.766, + "2017": 0.771, + "2018": 0.773, + "2019": 0.781, + "2020": 0.757, + "2021": 0.762 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr105", + "Region": "Jalal-Abad", + "1990": 0.741, + "1991": 0.741, + "1992": 0.737, + "1993": 0.734, + "1994": 0.732, + "1995": 0.735, + "1996": 0.741, + "1997": 0.746, + "1998": 0.755, + "1999": 0.762, + "2000": 0.759, + "2001": 0.765, + "2002": 0.767, + "2003": 0.772, + "2004": 0.774, + "2005": 0.776, + "2006": 0.782, + "2007": 0.78, + "2008": 0.778, + "2009": 0.781, + "2010": 0.783, + "2011": 0.783, + "2012": 0.784, + "2013": 0.783, + "2014": 0.789, + "2015": 0.783, + "2016": 0.78, + "2017": 0.777, + "2018": 0.772, + "2019": 0.78, + "2020": 0.755, + "2021": 0.761 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr107", + "Region": "Naryn", + "1990": 0.671, + "1991": 0.671, + "1992": 0.667, + "1993": 0.664, + "1994": 0.663, + "1995": 0.665, + "1996": 0.671, + "1997": 0.675, + "1998": 0.684, + "1999": 0.691, + "2000": 0.688, + "2001": 0.693, + "2002": 0.695, + "2003": 0.7, + "2004": 0.702, + "2005": 0.703, + "2006": 0.709, + "2007": 0.71, + "2008": 0.712, + "2009": 0.718, + "2010": 0.724, + "2011": 0.727, + "2012": 0.731, + "2013": 0.733, + "2014": 0.742, + "2015": 0.743, + "2016": 0.746, + "2017": 0.75, + "2018": 0.751, + "2019": 0.759, + "2020": 0.735, + "2021": 0.74 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr106", + "Region": "Osh", + "1990": 0.598, + "1991": 0.598, + "1992": 0.595, + "1993": 0.592, + "1994": 0.591, + "1995": 0.593, + "1996": 0.598, + "1997": 0.603, + "1998": 0.61, + "1999": 0.617, + "2000": 0.614, + "2001": 0.619, + "2002": 0.621, + "2003": 0.625, + "2004": 0.627, + "2005": 0.628, + "2006": 0.634, + "2007": 0.646, + "2008": 0.659, + "2009": 0.676, + "2010": 0.692, + "2011": 0.706, + "2012": 0.722, + "2013": 0.735, + "2014": 0.755, + "2015": 0.76, + "2016": 0.767, + "2017": 0.775, + "2018": 0.78, + "2019": 0.788, + "2020": 0.763, + "2021": 0.769 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr104", + "Region": "Talas", + "1990": 0.722, + "1991": 0.722, + "1992": 0.718, + "1993": 0.714, + "1994": 0.713, + "1995": 0.716, + "1996": 0.722, + "1997": 0.727, + "1998": 0.735, + "1999": 0.742, + "2000": 0.74, + "2001": 0.745, + "2002": 0.747, + "2003": 0.752, + "2004": 0.754, + "2005": 0.755, + "2006": 0.762, + "2007": 0.757, + "2008": 0.753, + "2009": 0.754, + "2010": 0.753, + "2011": 0.75, + "2012": 0.749, + "2013": 0.756, + "2014": 0.77, + "2015": 0.767, + "2016": 0.768, + "2017": 0.768, + "2018": 0.767, + "2019": 0.774, + "2020": 0.75, + "2021": 0.755 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "National", + "GDLCODE": "LAOt", + "Region": "Total", + "1990": 0.519, + "1991": 0.53, + "1992": 0.538, + "1993": 0.545, + "1994": 0.55, + "1995": 0.56, + "1996": 0.568, + "1997": 0.574, + "1998": 0.579, + "1999": 0.583, + "2000": 0.59, + "2001": 0.601, + "2002": 0.608, + "2003": 0.616, + "2004": 0.62, + "2005": 0.63, + "2006": 0.638, + "2007": 0.647, + "2008": 0.655, + "2009": 0.666, + "2010": 0.677, + "2011": 0.688, + "2012": 0.698, + "2013": 0.703, + "2014": 0.713, + "2015": 0.718, + "2016": 0.726, + "2017": 0.73, + "2018": 0.733, + "2019": 0.741, + "2020": 0.746, + "2021": 0.739 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr117", + "Region": "Attapeu", + "1990": 0.516, + "1991": 0.528, + "1992": 0.535, + "1993": 0.543, + "1994": 0.547, + "1995": 0.557, + "1996": 0.565, + "1997": 0.571, + "1998": 0.577, + "1999": 0.58, + "2000": 0.588, + "2001": 0.598, + "2002": 0.605, + "2003": 0.613, + "2004": 0.617, + "2005": 0.628, + "2006": 0.635, + "2007": 0.645, + "2008": 0.652, + "2009": 0.663, + "2010": 0.673, + "2011": 0.685, + "2012": 0.695, + "2013": 0.694, + "2014": 0.697, + "2015": 0.696, + "2016": 0.698, + "2017": 0.696, + "2018": 0.699, + "2019": 0.707, + "2020": 0.712, + "2021": 0.706 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr105", + "Region": "Bokeo", + "1990": 0.491, + "1991": 0.502, + "1992": 0.51, + "1993": 0.517, + "1994": 0.522, + "1995": 0.531, + "1996": 0.538, + "1997": 0.544, + "1998": 0.55, + "1999": 0.553, + "2000": 0.561, + "2001": 0.571, + "2002": 0.578, + "2003": 0.585, + "2004": 0.589, + "2005": 0.599, + "2006": 0.607, + "2007": 0.616, + "2008": 0.623, + "2009": 0.633, + "2010": 0.644, + "2011": 0.655, + "2012": 0.664, + "2013": 0.67, + "2014": 0.68, + "2015": 0.685, + "2016": 0.692, + "2017": 0.697, + "2018": 0.7, + "2019": 0.707, + "2020": 0.713, + "2021": 0.706 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr111", + "Region": "Borikhamxay", + "1990": 0.621, + "1991": 0.634, + "1992": 0.643, + "1993": 0.651, + "1994": 0.657, + "1995": 0.668, + "1996": 0.676, + "1997": 0.683, + "1998": 0.69, + "1999": 0.693, + "2000": 0.702, + "2001": 0.714, + "2002": 0.722, + "2003": 0.731, + "2004": 0.735, + "2005": 0.747, + "2006": 0.756, + "2007": 0.766, + "2008": 0.775, + "2009": 0.787, + "2010": 0.799, + "2011": 0.812, + "2012": 0.823, + "2013": 0.806, + "2014": 0.796, + "2015": 0.78, + "2016": 0.769, + "2017": 0.754, + "2018": 0.757, + "2019": 0.765, + "2020": 0.771, + "2021": 0.764 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr116", + "Region": "Champasack", + "1990": 0.548, + "1991": 0.56, + "1992": 0.568, + "1993": 0.576, + "1994": 0.581, + "1995": 0.591, + "1996": 0.599, + "1997": 0.605, + "1998": 0.611, + "1999": 0.615, + "2000": 0.623, + "2001": 0.634, + "2002": 0.641, + "2003": 0.649, + "2004": 0.653, + "2005": 0.664, + "2006": 0.672, + "2007": 0.682, + "2008": 0.69, + "2009": 0.701, + "2010": 0.712, + "2011": 0.724, + "2012": 0.734, + "2013": 0.734, + "2014": 0.738, + "2015": 0.737, + "2016": 0.74, + "2017": 0.739, + "2018": 0.742, + "2019": 0.75, + "2020": 0.755, + "2021": 0.749 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr107", + "Region": "Huaphanh", + "1990": 0.501, + "1991": 0.512, + "1992": 0.519, + "1993": 0.527, + "1994": 0.531, + "1995": 0.541, + "1996": 0.549, + "1997": 0.555, + "1998": 0.56, + "1999": 0.563, + "2000": 0.571, + "2001": 0.581, + "2002": 0.588, + "2003": 0.596, + "2004": 0.6, + "2005": 0.61, + "2006": 0.618, + "2007": 0.627, + "2008": 0.634, + "2009": 0.645, + "2010": 0.655, + "2011": 0.667, + "2012": 0.676, + "2013": 0.69, + "2014": 0.708, + "2015": 0.721, + "2016": 0.736, + "2017": 0.747, + "2018": 0.75, + "2019": 0.758, + "2020": 0.764, + "2021": 0.757 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr112", + "Region": "Khammuane", + "1990": 0.495, + "1991": 0.506, + "1992": 0.513, + "1993": 0.521, + "1994": 0.525, + "1995": 0.535, + "1996": 0.542, + "1997": 0.548, + "1998": 0.554, + "1999": 0.557, + "2000": 0.565, + "2001": 0.575, + "2002": 0.582, + "2003": 0.589, + "2004": 0.593, + "2005": 0.603, + "2006": 0.611, + "2007": 0.62, + "2008": 0.628, + "2009": 0.638, + "2010": 0.648, + "2011": 0.66, + "2012": 0.669, + "2013": 0.671, + "2014": 0.677, + "2015": 0.678, + "2016": 0.682, + "2017": 0.683, + "2018": 0.686, + "2019": 0.693, + "2020": 0.699, + "2021": 0.692 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr103", + "Region": "Luangnamtha", + "1990": 0.56, + "1991": 0.572, + "1992": 0.58, + "1993": 0.588, + "1994": 0.593, + "1995": 0.603, + "1996": 0.611, + "1997": 0.618, + "1998": 0.624, + "1999": 0.627, + "2000": 0.635, + "2001": 0.647, + "2002": 0.654, + "2003": 0.662, + "2004": 0.666, + "2005": 0.677, + "2006": 0.686, + "2007": 0.695, + "2008": 0.704, + "2009": 0.715, + "2010": 0.726, + "2011": 0.738, + "2012": 0.748, + "2013": 0.745, + "2014": 0.747, + "2015": 0.744, + "2016": 0.744, + "2017": 0.74, + "2018": 0.743, + "2019": 0.751, + "2020": 0.757, + "2021": 0.75 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr106", + "Region": "Luangprabang", + "1990": 0.479, + "1991": 0.49, + "1992": 0.497, + "1993": 0.504, + "1994": 0.508, + "1995": 0.518, + "1996": 0.525, + "1997": 0.531, + "1998": 0.536, + "1999": 0.539, + "2000": 0.547, + "2001": 0.557, + "2002": 0.564, + "2003": 0.571, + "2004": 0.575, + "2005": 0.585, + "2006": 0.592, + "2007": 0.601, + "2008": 0.609, + "2009": 0.619, + "2010": 0.629, + "2011": 0.64, + "2012": 0.649, + "2013": 0.674, + "2014": 0.702, + "2015": 0.725, + "2016": 0.749, + "2017": 0.77, + "2018": 0.773, + "2019": 0.781, + "2020": 0.787, + "2021": 0.78 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr104", + "Region": "Oudomxay", + "1990": 0.5, + "1991": 0.511, + "1992": 0.518, + "1993": 0.525, + "1994": 0.53, + "1995": 0.54, + "1996": 0.547, + "1997": 0.553, + "1998": 0.559, + "1999": 0.562, + "2000": 0.57, + "2001": 0.58, + "2002": 0.587, + "2003": 0.595, + "2004": 0.598, + "2005": 0.609, + "2006": 0.616, + "2007": 0.625, + "2008": 0.633, + "2009": 0.643, + "2010": 0.654, + "2011": 0.665, + "2012": 0.675, + "2013": 0.673, + "2014": 0.675, + "2015": 0.673, + "2016": 0.674, + "2017": 0.672, + "2018": 0.674, + "2019": 0.682, + "2020": 0.687, + "2021": 0.681 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr102", + "Region": "Phongsaly", + "1990": 0.461, + "1991": 0.471, + "1992": 0.478, + "1993": 0.485, + "1994": 0.49, + "1995": 0.499, + "1996": 0.506, + "1997": 0.512, + "1998": 0.517, + "1999": 0.52, + "2000": 0.527, + "2001": 0.537, + "2002": 0.544, + "2003": 0.551, + "2004": 0.555, + "2005": 0.565, + "2006": 0.572, + "2007": 0.58, + "2008": 0.588, + "2009": 0.597, + "2010": 0.607, + "2011": 0.618, + "2012": 0.627, + "2013": 0.636, + "2014": 0.648, + "2015": 0.655, + "2016": 0.665, + "2017": 0.672, + "2018": 0.675, + "2019": 0.682, + "2020": 0.687, + "2021": 0.681 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr114", + "Region": "Saravane", + "1990": 0.459, + "1991": 0.47, + "1992": 0.477, + "1993": 0.484, + "1994": 0.488, + "1995": 0.497, + "1996": 0.504, + "1997": 0.51, + "1998": 0.515, + "1999": 0.518, + "2000": 0.526, + "2001": 0.535, + "2002": 0.542, + "2003": 0.549, + "2004": 0.553, + "2005": 0.563, + "2006": 0.57, + "2007": 0.578, + "2008": 0.586, + "2009": 0.595, + "2010": 0.605, + "2011": 0.616, + "2012": 0.625, + "2013": 0.634, + "2014": 0.647, + "2015": 0.656, + "2016": 0.666, + "2017": 0.673, + "2018": 0.676, + "2019": 0.684, + "2020": 0.689, + "2021": 0.683 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr113", + "Region": "Savannakhet", + "1990": 0.465, + "1991": 0.475, + "1992": 0.483, + "1993": 0.49, + "1994": 0.494, + "1995": 0.503, + "1996": 0.51, + "1997": 0.516, + "1998": 0.522, + "1999": 0.525, + "2000": 0.532, + "2001": 0.542, + "2002": 0.548, + "2003": 0.556, + "2004": 0.559, + "2005": 0.569, + "2006": 0.577, + "2007": 0.585, + "2008": 0.593, + "2009": 0.602, + "2010": 0.612, + "2011": 0.623, + "2012": 0.632, + "2013": 0.646, + "2014": 0.664, + "2015": 0.676, + "2016": 0.691, + "2017": 0.703, + "2018": 0.706, + "2019": 0.713, + "2020": 0.719, + "2021": 0.712 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr108", + "Region": "Sayabury", + "1990": 0.557, + "1991": 0.569, + "1992": 0.577, + "1993": 0.585, + "1994": 0.59, + "1995": 0.6, + "1996": 0.609, + "1997": 0.615, + "1998": 0.621, + "1999": 0.624, + "2000": 0.633, + "2001": 0.644, + "2002": 0.651, + "2003": 0.659, + "2004": 0.663, + "2005": 0.675, + "2006": 0.683, + "2007": 0.692, + "2008": 0.701, + "2009": 0.711, + "2010": 0.723, + "2011": 0.735, + "2012": 0.745, + "2013": 0.766, + "2014": 0.791, + "2015": 0.81, + "2016": 0.832, + "2017": 0.849, + "2018": 0.852, + "2019": 0.861, + "2020": 0.867, + "2021": 0.86 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr115", + "Region": "Sekong", + "1990": 0.544, + "1991": 0.556, + "1992": 0.564, + "1993": 0.571, + "1994": 0.576, + "1995": 0.586, + "1996": 0.594, + "1997": 0.601, + "1998": 0.607, + "1999": 0.61, + "2000": 0.618, + "2001": 0.629, + "2002": 0.636, + "2003": 0.644, + "2004": 0.648, + "2005": 0.659, + "2006": 0.667, + "2007": 0.677, + "2008": 0.685, + "2009": 0.696, + "2010": 0.707, + "2011": 0.719, + "2012": 0.729, + "2013": 0.735, + "2014": 0.747, + "2015": 0.752, + "2016": 0.761, + "2017": 0.766, + "2018": 0.769, + "2019": 0.777, + "2020": 0.783, + "2021": 0.776 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr101", + "Region": "Vientiane Municipality", + "1990": 0.657, + "1991": 0.671, + "1992": 0.679, + "1993": 0.688, + "1994": 0.694, + "1995": 0.705, + "1996": 0.714, + "1997": 0.721, + "1998": 0.728, + "1999": 0.732, + "2000": 0.741, + "2001": 0.753, + "2002": 0.762, + "2003": 0.771, + "2004": 0.775, + "2005": 0.788, + "2006": 0.797, + "2007": 0.807, + "2008": 0.817, + "2009": 0.829, + "2010": 0.841, + "2011": 0.855, + "2012": 0.866, + "2013": 0.854, + "2014": 0.848, + "2015": 0.836, + "2016": 0.828, + "2017": 0.818, + "2018": 0.821, + "2019": 0.829, + "2020": 0.835, + "2021": 0.828 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr110", + "Region": "Vientiane Province", + "1990": 0.616, + "1991": 0.629, + "1992": 0.637, + "1993": 0.645, + "1994": 0.651, + "1995": 0.662, + "1996": 0.67, + "1997": 0.677, + "1998": 0.684, + "1999": 0.687, + "2000": 0.696, + "2001": 0.708, + "2002": 0.716, + "2003": 0.724, + "2004": 0.729, + "2005": 0.741, + "2006": 0.75, + "2007": 0.76, + "2008": 0.769, + "2009": 0.78, + "2010": 0.792, + "2011": 0.805, + "2012": 0.816, + "2013": 0.793, + "2014": 0.776, + "2015": 0.755, + "2016": 0.738, + "2017": 0.718, + "2018": 0.721, + "2019": 0.728, + "2020": 0.734, + "2021": 0.727 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr109", + "Region": "Xiengkhuang", + "1990": 0.583, + "1991": 0.596, + "1992": 0.604, + "1993": 0.612, + "1994": 0.617, + "1995": 0.628, + "1996": 0.636, + "1997": 0.643, + "1998": 0.649, + "1999": 0.652, + "2000": 0.661, + "2001": 0.672, + "2002": 0.68, + "2003": 0.688, + "2004": 0.692, + "2005": 0.704, + "2006": 0.712, + "2007": 0.722, + "2008": 0.731, + "2009": 0.742, + "2010": 0.753, + "2011": 0.766, + "2012": 0.776, + "2013": 0.769, + "2014": 0.766, + "2015": 0.758, + "2016": 0.754, + "2017": 0.746, + "2018": 0.75, + "2019": 0.757, + "2020": 0.763, + "2021": 0.756 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "National", + "GDLCODE": "LVAt", + "Region": "Total", + "1990": 0.757, + "1991": 0.756, + "1992": 0.75, + "1993": 0.727, + "1994": 0.711, + "1995": 0.723, + "1996": 0.753, + "1997": 0.759, + "1998": 0.756, + "1999": 0.768, + "2000": 0.773, + "2001": 0.77, + "2002": 0.775, + "2003": 0.779, + "2004": 0.783, + "2005": 0.781, + "2006": 0.783, + "2007": 0.785, + "2008": 0.801, + "2009": 0.812, + "2010": 0.815, + "2011": 0.826, + "2012": 0.827, + "2013": 0.834, + "2014": 0.837, + "2015": 0.841, + "2016": 0.842, + "2017": 0.843, + "2018": 0.846, + "2019": 0.854, + "2020": 0.853, + "2021": 0.824 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr104", + "Region": "Kurzeme region", + "1990": 0.742, + "1991": 0.742, + "1992": 0.736, + "1993": 0.713, + "1994": 0.697, + "1995": 0.709, + "1996": 0.738, + "1997": 0.744, + "1998": 0.742, + "1999": 0.753, + "2000": 0.758, + "2001": 0.756, + "2002": 0.76, + "2003": 0.764, + "2004": 0.769, + "2005": 0.766, + "2006": 0.768, + "2007": 0.771, + "2008": 0.786, + "2009": 0.796, + "2010": 0.799, + "2011": 0.811, + "2012": 0.816, + "2013": 0.829, + "2014": 0.836, + "2015": 0.844, + "2016": 0.829, + "2017": 0.829, + "2018": 0.832, + "2019": 0.84, + "2020": 0.839, + "2021": 0.811 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr106", + "Region": "Latgale region", + "1990": 0.709, + "1991": 0.709, + "1992": 0.703, + "1993": 0.68, + "1994": 0.666, + "1995": 0.677, + "1996": 0.705, + "1997": 0.711, + "1998": 0.709, + "1999": 0.72, + "2000": 0.725, + "2001": 0.722, + "2002": 0.726, + "2003": 0.73, + "2004": 0.735, + "2005": 0.732, + "2006": 0.734, + "2007": 0.737, + "2008": 0.751, + "2009": 0.761, + "2010": 0.764, + "2011": 0.775, + "2012": 0.782, + "2013": 0.798, + "2014": 0.8, + "2015": 0.803, + "2016": 0.804, + "2017": 0.805, + "2018": 0.808, + "2019": 0.816, + "2020": 0.814, + "2021": 0.786 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr102", + "Region": "Pieriga region", + "1990": 0.763, + "1991": 0.762, + "1992": 0.756, + "1993": 0.732, + "1994": 0.717, + "1995": 0.729, + "1996": 0.759, + "1997": 0.764, + "1998": 0.762, + "1999": 0.774, + "2000": 0.779, + "2001": 0.776, + "2002": 0.781, + "2003": 0.785, + "2004": 0.789, + "2005": 0.787, + "2006": 0.789, + "2007": 0.791, + "2008": 0.807, + "2009": 0.818, + "2010": 0.821, + "2011": 0.832, + "2012": 0.847, + "2013": 0.854, + "2014": 0.853, + "2015": 0.855, + "2016": 0.862, + "2017": 0.863, + "2018": 0.866, + "2019": 0.875, + "2020": 0.873, + "2021": 0.844 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr101", + "Region": "Riga region", + "1990": 0.763, + "1991": 0.762, + "1992": 0.756, + "1993": 0.732, + "1994": 0.717, + "1995": 0.729, + "1996": 0.759, + "1997": 0.764, + "1998": 0.762, + "1999": 0.774, + "2000": 0.779, + "2001": 0.776, + "2002": 0.781, + "2003": 0.785, + "2004": 0.789, + "2005": 0.787, + "2006": 0.789, + "2007": 0.791, + "2008": 0.807, + "2009": 0.818, + "2010": 0.821, + "2011": 0.832, + "2012": 0.835, + "2013": 0.84, + "2014": 0.842, + "2015": 0.855, + "2016": 0.858, + "2017": 0.859, + "2018": 0.862, + "2019": 0.87, + "2020": 0.869, + "2021": 0.839 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr103", + "Region": "Vidzeme region", + "1990": 0.747, + "1991": 0.746, + "1992": 0.74, + "1993": 0.717, + "1994": 0.702, + "1995": 0.714, + "1996": 0.743, + "1997": 0.748, + "1998": 0.746, + "1999": 0.758, + "2000": 0.763, + "2001": 0.76, + "2002": 0.764, + "2003": 0.769, + "2004": 0.773, + "2005": 0.771, + "2006": 0.772, + "2007": 0.775, + "2008": 0.79, + "2009": 0.801, + "2010": 0.804, + "2011": 0.815, + "2012": 0.825, + "2013": 0.834, + "2014": 0.834, + "2015": 0.832, + "2016": 0.839, + "2017": 0.84, + "2018": 0.843, + "2019": 0.851, + "2020": 0.85, + "2021": 0.821 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr105", + "Region": "Zemgale region", + "1990": 0.737, + "1991": 0.736, + "1992": 0.73, + "1993": 0.707, + "1994": 0.692, + "1995": 0.704, + "1996": 0.733, + "1997": 0.738, + "1998": 0.736, + "1999": 0.747, + "2000": 0.753, + "2001": 0.75, + "2002": 0.754, + "2003": 0.758, + "2004": 0.763, + "2005": 0.761, + "2006": 0.762, + "2007": 0.765, + "2008": 0.779, + "2009": 0.79, + "2010": 0.793, + "2011": 0.805, + "2012": 0.821, + "2013": 0.818, + "2014": 0.828, + "2015": 0.832, + "2016": 0.832, + "2017": 0.832, + "2018": 0.835, + "2019": 0.843, + "2020": 0.842, + "2021": 0.814 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "National", + "GDLCODE": "LBNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.866, + "2006": 0.863, + "2007": 0.878, + "2008": 0.886, + "2009": 0.891, + "2010": 0.895, + "2011": 0.899, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.911, + "2016": 0.915, + "2017": 0.918, + "2018": 0.919, + "2019": 0.911, + "2020": 0.889, + "2021": 0.847 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr101", + "Region": "Beirut", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.866, + "2006": 0.863, + "2007": 0.878, + "2008": 0.886, + "2009": 0.891, + "2010": 0.895, + "2011": 0.899, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.911, + "2016": 0.915, + "2017": 0.918, + "2018": 0.919, + "2019": 0.911, + "2020": 0.889, + "2021": 0.847 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr104", + "Region": "Beqaa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.866, + "2006": 0.863, + "2007": 0.878, + "2008": 0.886, + "2009": 0.891, + "2010": 0.895, + "2011": 0.899, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.911, + "2016": 0.915, + "2017": 0.918, + "2018": 0.919, + "2019": 0.911, + "2020": 0.889, + "2021": 0.847 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr102", + "Region": "Mount Lebanon", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.866, + "2006": 0.863, + "2007": 0.878, + "2008": 0.886, + "2009": 0.891, + "2010": 0.895, + "2011": 0.899, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.911, + "2016": 0.915, + "2017": 0.918, + "2018": 0.919, + "2019": 0.911, + "2020": 0.889, + "2021": 0.847 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr103", + "Region": "Northern", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.866, + "2006": 0.863, + "2007": 0.878, + "2008": 0.886, + "2009": 0.891, + "2010": 0.895, + "2011": 0.899, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.911, + "2016": 0.915, + "2017": 0.918, + "2018": 0.919, + "2019": 0.911, + "2020": 0.889, + "2021": 0.847 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr105", + "Region": "Southern, Nabtieh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.866, + "2006": 0.863, + "2007": 0.878, + "2008": 0.886, + "2009": 0.891, + "2010": 0.895, + "2011": 0.899, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.911, + "2016": 0.915, + "2017": 0.918, + "2018": 0.919, + "2019": 0.911, + "2020": 0.889, + "2021": 0.847 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "National", + "GDLCODE": "LSOt", + "Region": "Total", + "1990": 0.606, + "1991": 0.603, + "1992": 0.593, + "1993": 0.584, + "1994": 0.585, + "1995": 0.565, + "1996": 0.542, + "1997": 0.517, + "1998": 0.489, + "1999": 0.463, + "2000": 0.437, + "2001": 0.413, + "2002": 0.394, + "2003": 0.377, + "2004": 0.365, + "2005": 0.357, + "2006": 0.353, + "2007": 0.356, + "2008": 0.363, + "2009": 0.37, + "2010": 0.394, + "2011": 0.411, + "2012": 0.428, + "2013": 0.446, + "2014": 0.462, + "2015": 0.478, + "2016": 0.496, + "2017": 0.509, + "2018": 0.519, + "2019": 0.526, + "2020": 0.534, + "2021": 0.509 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr103", + "Region": "Berea", + "1990": 0.621, + "1991": 0.618, + "1992": 0.608, + "1993": 0.599, + "1994": 0.6, + "1995": 0.58, + "1996": 0.556, + "1997": 0.531, + "1998": 0.502, + "1999": 0.476, + "2000": 0.45, + "2001": 0.425, + "2002": 0.406, + "2003": 0.389, + "2004": 0.376, + "2005": 0.369, + "2006": 0.364, + "2007": 0.368, + "2008": 0.375, + "2009": 0.382, + "2010": 0.407, + "2011": 0.428, + "2012": 0.449, + "2013": 0.472, + "2014": 0.492, + "2015": 0.512, + "2016": 0.534, + "2017": 0.55, + "2018": 0.564, + "2019": 0.571, + "2020": 0.579, + "2021": 0.553 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr101", + "Region": "Butha-Buthe", + "1990": 0.611, + "1991": 0.607, + "1992": 0.598, + "1993": 0.589, + "1994": 0.589, + "1995": 0.569, + "1996": 0.546, + "1997": 0.521, + "1998": 0.493, + "1999": 0.467, + "2000": 0.441, + "2001": 0.417, + "2002": 0.397, + "2003": 0.381, + "2004": 0.368, + "2005": 0.363, + "2006": 0.36, + "2007": 0.366, + "2008": 0.375, + "2009": 0.385, + "2010": 0.412, + "2011": 0.44, + "2012": 0.469, + "2013": 0.498, + "2014": 0.526, + "2015": 0.547, + "2016": 0.57, + "2017": 0.586, + "2018": 0.6, + "2019": 0.608, + "2020": 0.617, + "2021": 0.589 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr102", + "Region": "Leribe", + "1990": 0.574, + "1991": 0.571, + "1992": 0.562, + "1993": 0.554, + "1994": 0.554, + "1995": 0.535, + "1996": 0.513, + "1997": 0.488, + "1998": 0.461, + "1999": 0.436, + "2000": 0.412, + "2001": 0.388, + "2002": 0.369, + "2003": 0.354, + "2004": 0.341, + "2005": 0.337, + "2006": 0.335, + "2007": 0.341, + "2008": 0.351, + "2009": 0.361, + "2010": 0.387, + "2011": 0.4, + "2012": 0.413, + "2013": 0.426, + "2014": 0.437, + "2015": 0.454, + "2016": 0.472, + "2017": 0.485, + "2018": 0.495, + "2019": 0.502, + "2020": 0.51, + "2021": 0.485 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr105", + "Region": "Mafeteng", + "1990": 0.676, + "1991": 0.672, + "1992": 0.662, + "1993": 0.653, + "1994": 0.653, + "1995": 0.632, + "1996": 0.607, + "1997": 0.58, + "1998": 0.55, + "1999": 0.522, + "2000": 0.494, + "2001": 0.468, + "2002": 0.447, + "2003": 0.43, + "2004": 0.416, + "2005": 0.4, + "2006": 0.386, + "2007": 0.381, + "2008": 0.38, + "2009": 0.379, + "2010": 0.394, + "2011": 0.405, + "2012": 0.417, + "2013": 0.429, + "2014": 0.438, + "2015": 0.454, + "2016": 0.472, + "2017": 0.484, + "2018": 0.495, + "2019": 0.501, + "2020": 0.509, + "2021": 0.485 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr104", + "Region": "Maseru", + "1990": 0.649, + "1991": 0.645, + "1992": 0.635, + "1993": 0.626, + "1994": 0.627, + "1995": 0.606, + "1996": 0.582, + "1997": 0.555, + "1998": 0.526, + "1999": 0.499, + "2000": 0.472, + "2001": 0.447, + "2002": 0.426, + "2003": 0.409, + "2004": 0.396, + "2005": 0.383, + "2006": 0.372, + "2007": 0.369, + "2008": 0.37, + "2009": 0.372, + "2010": 0.389, + "2011": 0.406, + "2012": 0.423, + "2013": 0.441, + "2014": 0.456, + "2015": 0.475, + "2016": 0.495, + "2017": 0.51, + "2018": 0.523, + "2019": 0.53, + "2020": 0.538, + "2021": 0.512 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr106", + "Region": "Mohale s Hoek", + "1990": 0.56, + "1991": 0.557, + "1992": 0.547, + "1993": 0.539, + "1994": 0.539, + "1995": 0.52, + "1996": 0.499, + "1997": 0.475, + "1998": 0.448, + "1999": 0.423, + "2000": 0.399, + "2001": 0.376, + "2002": 0.358, + "2003": 0.342, + "2004": 0.33, + "2005": 0.324, + "2006": 0.32, + "2007": 0.324, + "2008": 0.331, + "2009": 0.338, + "2010": 0.362, + "2011": 0.379, + "2012": 0.396, + "2013": 0.413, + "2014": 0.429, + "2015": 0.465, + "2016": 0.503, + "2017": 0.536, + "2018": 0.567, + "2019": 0.574, + "2020": 0.583, + "2021": 0.556 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr109", + "Region": "Mokhotlong", + "1990": 0.622, + "1991": 0.619, + "1992": 0.609, + "1993": 0.6, + "1994": 0.6, + "1995": 0.58, + "1996": 0.557, + "1997": 0.531, + "1998": 0.503, + "1999": 0.476, + "2000": 0.45, + "2001": 0.425, + "2002": 0.406, + "2003": 0.389, + "2004": 0.376, + "2005": 0.371, + "2006": 0.368, + "2007": 0.373, + "2008": 0.381, + "2009": 0.391, + "2010": 0.417, + "2011": 0.429, + "2012": 0.441, + "2013": 0.453, + "2014": 0.463, + "2015": 0.473, + "2016": 0.484, + "2017": 0.489, + "2018": 0.492, + "2019": 0.499, + "2020": 0.506, + "2021": 0.482 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr108", + "Region": "Qasha s Nek", + "1990": 0.586, + "1991": 0.583, + "1992": 0.573, + "1993": 0.565, + "1994": 0.565, + "1995": 0.546, + "1996": 0.523, + "1997": 0.499, + "1998": 0.471, + "1999": 0.446, + "2000": 0.421, + "2001": 0.397, + "2002": 0.378, + "2003": 0.362, + "2004": 0.35, + "2005": 0.351, + "2006": 0.354, + "2007": 0.365, + "2008": 0.38, + "2009": 0.396, + "2010": 0.429, + "2011": 0.432, + "2012": 0.435, + "2013": 0.438, + "2014": 0.439, + "2015": 0.453, + "2016": 0.469, + "2017": 0.479, + "2018": 0.487, + "2019": 0.493, + "2020": 0.501, + "2021": 0.477 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr107", + "Region": "Quthing", + "1990": 0.59, + "1991": 0.587, + "1992": 0.577, + "1993": 0.569, + "1994": 0.569, + "1995": 0.55, + "1996": 0.527, + "1997": 0.502, + "1998": 0.475, + "1999": 0.449, + "2000": 0.424, + "2001": 0.401, + "2002": 0.382, + "2003": 0.365, + "2004": 0.353, + "2005": 0.349, + "2006": 0.348, + "2007": 0.355, + "2008": 0.365, + "2009": 0.376, + "2010": 0.404, + "2011": 0.414, + "2012": 0.425, + "2013": 0.437, + "2014": 0.446, + "2015": 0.451, + "2016": 0.458, + "2017": 0.459, + "2018": 0.459, + "2019": 0.465, + "2020": 0.472, + "2021": 0.449 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr110", + "Region": "Thaba-Tseka", + "1990": 0.537, + "1991": 0.534, + "1992": 0.525, + "1993": 0.517, + "1994": 0.517, + "1995": 0.499, + "1996": 0.478, + "1997": 0.454, + "1998": 0.429, + "1999": 0.405, + "2000": 0.381, + "2001": 0.359, + "2002": 0.341, + "2003": 0.326, + "2004": 0.314, + "2005": 0.314, + "2006": 0.317, + "2007": 0.327, + "2008": 0.341, + "2009": 0.356, + "2010": 0.387, + "2011": 0.419, + "2012": 0.453, + "2013": 0.488, + "2014": 0.52, + "2015": 0.518, + "2016": 0.516, + "2017": 0.508, + "2018": 0.498, + "2019": 0.504, + "2020": 0.512, + "2021": 0.488 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "National", + "GDLCODE": "LBRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.461, + "2000": 0.482, + "2001": 0.504, + "2002": 0.52, + "2003": 0.508, + "2004": 0.554, + "2005": 0.568, + "2006": 0.579, + "2007": 0.589, + "2008": 0.596, + "2009": 0.603, + "2010": 0.607, + "2011": 0.61, + "2012": 0.614, + "2013": 0.615, + "2014": 0.602, + "2015": 0.602, + "2016": 0.622, + "2017": 0.624, + "2018": 0.629, + "2019": 0.632, + "2020": 0.63, + "2021": 0.627 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr101", + "Region": "Bomi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.424, + "2000": 0.445, + "2001": 0.465, + "2002": 0.48, + "2003": 0.47, + "2004": 0.513, + "2005": 0.526, + "2006": 0.537, + "2007": 0.546, + "2008": 0.554, + "2009": 0.56, + "2010": 0.563, + "2011": 0.566, + "2012": 0.57, + "2013": 0.571, + "2014": 0.559, + "2015": 0.559, + "2016": 0.578, + "2017": 0.58, + "2018": 0.584, + "2019": 0.588, + "2020": 0.585, + "2021": 0.582 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr102", + "Region": "Bong", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.453, + "2000": 0.474, + "2001": 0.495, + "2002": 0.511, + "2003": 0.5, + "2004": 0.545, + "2005": 0.559, + "2006": 0.57, + "2007": 0.58, + "2008": 0.587, + "2009": 0.593, + "2010": 0.597, + "2011": 0.6, + "2012": 0.604, + "2013": 0.605, + "2014": 0.592, + "2015": 0.593, + "2016": 0.612, + "2017": 0.614, + "2018": 0.619, + "2019": 0.623, + "2020": 0.62, + "2021": 0.617 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr103", + "Region": "Gbarpolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.443, + "2000": 0.464, + "2001": 0.485, + "2002": 0.5, + "2003": 0.489, + "2004": 0.534, + "2005": 0.547, + "2006": 0.558, + "2007": 0.568, + "2008": 0.575, + "2009": 0.581, + "2010": 0.585, + "2011": 0.588, + "2012": 0.592, + "2013": 0.593, + "2014": 0.58, + "2015": 0.581, + "2016": 0.6, + "2017": 0.602, + "2018": 0.606, + "2019": 0.61, + "2020": 0.608, + "2021": 0.605 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr104", + "Region": "Grand Bassa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.443, + "2000": 0.464, + "2001": 0.485, + "2002": 0.5, + "2003": 0.489, + "2004": 0.534, + "2005": 0.547, + "2006": 0.558, + "2007": 0.568, + "2008": 0.575, + "2009": 0.582, + "2010": 0.585, + "2011": 0.588, + "2012": 0.592, + "2013": 0.593, + "2014": 0.581, + "2015": 0.581, + "2016": 0.6, + "2017": 0.602, + "2018": 0.607, + "2019": 0.61, + "2020": 0.608, + "2021": 0.605 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr105", + "Region": "Grand Cape Mount", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.418, + "2000": 0.439, + "2001": 0.459, + "2002": 0.474, + "2003": 0.463, + "2004": 0.506, + "2005": 0.519, + "2006": 0.53, + "2007": 0.539, + "2008": 0.546, + "2009": 0.553, + "2010": 0.556, + "2011": 0.559, + "2012": 0.563, + "2013": 0.563, + "2014": 0.551, + "2015": 0.552, + "2016": 0.57, + "2017": 0.572, + "2018": 0.577, + "2019": 0.58, + "2020": 0.578, + "2021": 0.575 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr106", + "Region": "Grand Gedeh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.45, + "2000": 0.471, + "2001": 0.492, + "2002": 0.508, + "2003": 0.497, + "2004": 0.542, + "2005": 0.555, + "2006": 0.566, + "2007": 0.576, + "2008": 0.584, + "2009": 0.59, + "2010": 0.594, + "2011": 0.597, + "2012": 0.601, + "2013": 0.601, + "2014": 0.589, + "2015": 0.589, + "2016": 0.609, + "2017": 0.611, + "2018": 0.615, + "2019": 0.619, + "2020": 0.617, + "2021": 0.614 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr107", + "Region": "Grand Kru", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.411, + "2000": 0.431, + "2001": 0.451, + "2002": 0.466, + "2003": 0.455, + "2004": 0.498, + "2005": 0.511, + "2006": 0.521, + "2007": 0.531, + "2008": 0.538, + "2009": 0.544, + "2010": 0.547, + "2011": 0.55, + "2012": 0.554, + "2013": 0.555, + "2014": 0.543, + "2015": 0.543, + "2016": 0.561, + "2017": 0.563, + "2018": 0.568, + "2019": 0.571, + "2020": 0.569, + "2021": 0.566 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr108", + "Region": "Lofa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.481, + "2000": 0.503, + "2001": 0.525, + "2002": 0.541, + "2003": 0.53, + "2004": 0.577, + "2005": 0.591, + "2006": 0.602, + "2007": 0.612, + "2008": 0.62, + "2009": 0.627, + "2010": 0.631, + "2011": 0.634, + "2012": 0.638, + "2013": 0.639, + "2014": 0.626, + "2015": 0.626, + "2016": 0.646, + "2017": 0.648, + "2018": 0.653, + "2019": 0.657, + "2020": 0.654, + "2021": 0.651 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr109", + "Region": "Margibi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.475, + "2000": 0.497, + "2001": 0.519, + "2002": 0.535, + "2003": 0.524, + "2004": 0.57, + "2005": 0.584, + "2006": 0.596, + "2007": 0.606, + "2008": 0.614, + "2009": 0.62, + "2010": 0.624, + "2011": 0.627, + "2012": 0.631, + "2013": 0.632, + "2014": 0.619, + "2015": 0.619, + "2016": 0.639, + "2017": 0.642, + "2018": 0.646, + "2019": 0.65, + "2020": 0.648, + "2021": 0.645 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr110", + "Region": "Maryland", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.438, + "2000": 0.459, + "2001": 0.48, + "2002": 0.496, + "2003": 0.484, + "2004": 0.529, + "2005": 0.542, + "2006": 0.553, + "2007": 0.563, + "2008": 0.57, + "2009": 0.576, + "2010": 0.58, + "2011": 0.583, + "2012": 0.587, + "2013": 0.588, + "2014": 0.575, + "2015": 0.576, + "2016": 0.595, + "2017": 0.597, + "2018": 0.601, + "2019": 0.605, + "2020": 0.603, + "2021": 0.6 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr111", + "Region": "Montserrado", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.463, + "2000": 0.485, + "2001": 0.506, + "2002": 0.522, + "2003": 0.511, + "2004": 0.556, + "2005": 0.57, + "2006": 0.581, + "2007": 0.591, + "2008": 0.599, + "2009": 0.605, + "2010": 0.609, + "2011": 0.612, + "2012": 0.617, + "2013": 0.617, + "2014": 0.604, + "2015": 0.605, + "2016": 0.624, + "2017": 0.626, + "2018": 0.631, + "2019": 0.635, + "2020": 0.632, + "2021": 0.629 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr112", + "Region": "Nimba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.521, + "2000": 0.544, + "2001": 0.567, + "2002": 0.584, + "2003": 0.572, + "2004": 0.621, + "2005": 0.636, + "2006": 0.648, + "2007": 0.659, + "2008": 0.667, + "2009": 0.674, + "2010": 0.678, + "2011": 0.681, + "2012": 0.686, + "2013": 0.686, + "2014": 0.673, + "2015": 0.673, + "2016": 0.694, + "2017": 0.696, + "2018": 0.701, + "2019": 0.705, + "2020": 0.703, + "2021": 0.7 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr113", + "Region": "River Cess", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.478, + "2000": 0.5, + "2001": 0.522, + "2002": 0.538, + "2003": 0.526, + "2004": 0.573, + "2005": 0.587, + "2006": 0.598, + "2007": 0.609, + "2008": 0.616, + "2009": 0.623, + "2010": 0.627, + "2011": 0.63, + "2012": 0.634, + "2013": 0.635, + "2014": 0.622, + "2015": 0.622, + "2016": 0.642, + "2017": 0.644, + "2018": 0.649, + "2019": 0.653, + "2020": 0.651, + "2021": 0.647 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr114", + "Region": "River Gee", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.418, + "2000": 0.438, + "2001": 0.458, + "2002": 0.473, + "2003": 0.463, + "2004": 0.506, + "2005": 0.519, + "2006": 0.529, + "2007": 0.539, + "2008": 0.546, + "2009": 0.552, + "2010": 0.555, + "2011": 0.558, + "2012": 0.562, + "2013": 0.563, + "2014": 0.551, + "2015": 0.551, + "2016": 0.57, + "2017": 0.572, + "2018": 0.576, + "2019": 0.58, + "2020": 0.577, + "2021": 0.574 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr115", + "Region": "Sinoe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.456, + "2000": 0.478, + "2001": 0.499, + "2002": 0.515, + "2003": 0.503, + "2004": 0.549, + "2005": 0.563, + "2006": 0.573, + "2007": 0.584, + "2008": 0.591, + "2009": 0.597, + "2010": 0.601, + "2011": 0.604, + "2012": 0.608, + "2013": 0.609, + "2014": 0.596, + "2015": 0.597, + "2016": 0.616, + "2017": 0.618, + "2018": 0.623, + "2019": 0.627, + "2020": 0.624, + "2021": 0.621 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "National", + "GDLCODE": "LBYt", + "Region": "Total", + "1990": 0.76, + "1991": 0.766, + "1992": 0.773, + "1993": 0.776, + "1994": 0.78, + "1995": 0.786, + "1996": 0.789, + "1997": 0.787, + "1998": 0.786, + "1999": 0.786, + "2000": 0.78, + "2001": 0.782, + "2002": 0.785, + "2003": 0.787, + "2004": 0.792, + "2005": 0.794, + "2006": 0.796, + "2007": 0.798, + "2008": 0.804, + "2009": 0.805, + "2010": 0.806, + "2011": 0.77, + "2012": 0.804, + "2013": 0.805, + "2014": 0.792, + "2015": 0.795, + "2016": 0.796, + "2017": 0.807, + "2018": 0.812, + "2019": 0.807, + "2020": 0.807, + "2021": 0.799 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr101", + "Region": "Cyrenaica", + "1990": 0.76, + "1991": 0.766, + "1992": 0.773, + "1993": 0.776, + "1994": 0.78, + "1995": 0.786, + "1996": 0.789, + "1997": 0.787, + "1998": 0.786, + "1999": 0.786, + "2000": 0.78, + "2001": 0.782, + "2002": 0.785, + "2003": 0.787, + "2004": 0.792, + "2005": 0.794, + "2006": 0.796, + "2007": 0.798, + "2008": 0.804, + "2009": 0.805, + "2010": 0.806, + "2011": 0.77, + "2012": 0.804, + "2013": 0.805, + "2014": 0.792, + "2015": 0.795, + "2016": 0.796, + "2017": 0.807, + "2018": 0.812, + "2019": 0.807, + "2020": 0.807, + "2021": 0.799 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr103", + "Region": "Fezzan", + "1990": 0.76, + "1991": 0.766, + "1992": 0.773, + "1993": 0.776, + "1994": 0.78, + "1995": 0.786, + "1996": 0.789, + "1997": 0.787, + "1998": 0.786, + "1999": 0.786, + "2000": 0.78, + "2001": 0.782, + "2002": 0.785, + "2003": 0.787, + "2004": 0.792, + "2005": 0.794, + "2006": 0.796, + "2007": 0.798, + "2008": 0.804, + "2009": 0.805, + "2010": 0.806, + "2011": 0.77, + "2012": 0.804, + "2013": 0.805, + "2014": 0.792, + "2015": 0.795, + "2016": 0.796, + "2017": 0.807, + "2018": 0.812, + "2019": 0.807, + "2020": 0.807, + "2021": 0.799 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr102", + "Region": "Tripolitania", + "1990": 0.76, + "1991": 0.766, + "1992": 0.773, + "1993": 0.776, + "1994": 0.78, + "1995": 0.786, + "1996": 0.789, + "1997": 0.787, + "1998": 0.786, + "1999": 0.786, + "2000": 0.78, + "2001": 0.782, + "2002": 0.785, + "2003": 0.787, + "2004": 0.792, + "2005": 0.794, + "2006": 0.796, + "2007": 0.798, + "2008": 0.804, + "2009": 0.805, + "2010": 0.806, + "2011": 0.77, + "2012": 0.804, + "2013": 0.805, + "2014": 0.792, + "2015": 0.795, + "2016": 0.796, + "2017": 0.807, + "2018": 0.812, + "2019": 0.807, + "2020": 0.807, + "2021": 0.799 + }, + { + "Country": "Liechtenstein", + "Continent": "Europe", + "ISO_Code": "LIE", + "Level": "National", + "GDLCODE": "LIEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.877, + "2001": 0.915, + "2002": 0.921, + "2003": 0.926, + "2004": 0.954, + "2005": 0.936, + "2006": 0.941, + "2007": 0.946, + "2008": 0.967, + "2009": 0.949, + "2010": 0.954, + "2011": 0.953, + "2012": 0.962, + "2013": 0.96, + "2014": 0.957, + "2015": 0.966, + "2016": 0.96, + "2017": 0.983, + "2018": 0.971, + "2019": 0.989, + "2020": 0.966, + "2021": 0.973 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "National", + "GDLCODE": "LTUt", + "Region": "Total", + "1990": 0.785, + "1991": 0.778, + "1992": 0.776, + "1993": 0.754, + "1994": 0.752, + "1995": 0.759, + "1996": 0.773, + "1997": 0.783, + "1998": 0.788, + "1999": 0.793, + "2000": 0.801, + "2001": 0.797, + "2002": 0.797, + "2003": 0.802, + "2004": 0.804, + "2005": 0.796, + "2006": 0.793, + "2007": 0.793, + "2008": 0.806, + "2009": 0.818, + "2010": 0.822, + "2011": 0.83, + "2012": 0.834, + "2013": 0.836, + "2014": 0.844, + "2015": 0.84, + "2016": 0.844, + "2017": 0.853, + "2018": 0.857, + "2019": 0.865, + "2020": 0.847, + "2021": 0.826 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr101", + "Region": "Alytus County", + "1990": 0.798, + "1991": 0.799, + "1992": 0.804, + "1993": 0.789, + "1994": 0.795, + "1995": 0.809, + "1996": 0.805, + "1997": 0.802, + "1998": 0.802, + "1999": 0.802, + "2000": 0.804, + "2001": 0.798, + "2002": 0.798, + "2003": 0.81, + "2004": 0.808, + "2005": 0.789, + "2006": 0.787, + "2007": 0.791, + "2008": 0.801, + "2009": 0.815, + "2010": 0.826, + "2011": 0.831, + "2012": 0.832, + "2013": 0.831, + "2014": 0.843, + "2015": 0.838, + "2016": 0.84, + "2017": 0.849, + "2018": 0.853, + "2019": 0.861, + "2020": 0.843, + "2021": 0.823 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr102", + "Region": "Kaunas County", + "1990": 0.797, + "1991": 0.797, + "1992": 0.803, + "1993": 0.787, + "1994": 0.794, + "1995": 0.808, + "1996": 0.804, + "1997": 0.801, + "1998": 0.801, + "1999": 0.801, + "2000": 0.803, + "2001": 0.806, + "2002": 0.811, + "2003": 0.811, + "2004": 0.812, + "2005": 0.809, + "2006": 0.812, + "2007": 0.808, + "2008": 0.822, + "2009": 0.83, + "2010": 0.836, + "2011": 0.844, + "2012": 0.853, + "2013": 0.856, + "2014": 0.862, + "2015": 0.851, + "2016": 0.857, + "2017": 0.865, + "2018": 0.869, + "2019": 0.877, + "2020": 0.86, + "2021": 0.839 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr103", + "Region": "Klaipeda County", + "1990": 0.799, + "1991": 0.8, + "1992": 0.805, + "1993": 0.79, + "1994": 0.796, + "1995": 0.81, + "1996": 0.806, + "1997": 0.804, + "1998": 0.803, + "1999": 0.803, + "2000": 0.805, + "2001": 0.796, + "2002": 0.798, + "2003": 0.811, + "2004": 0.809, + "2005": 0.8, + "2006": 0.8, + "2007": 0.801, + "2008": 0.819, + "2009": 0.825, + "2010": 0.831, + "2011": 0.834, + "2012": 0.85, + "2013": 0.844, + "2014": 0.855, + "2015": 0.854, + "2016": 0.856, + "2017": 0.864, + "2018": 0.868, + "2019": 0.876, + "2020": 0.859, + "2021": 0.838 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr104", + "Region": "Marijampole County", + "1990": 0.786, + "1991": 0.786, + "1992": 0.792, + "1993": 0.776, + "1994": 0.783, + "1995": 0.797, + "1996": 0.792, + "1997": 0.79, + "1998": 0.79, + "1999": 0.79, + "2000": 0.792, + "2001": 0.791, + "2002": 0.793, + "2003": 0.798, + "2004": 0.789, + "2005": 0.782, + "2006": 0.795, + "2007": 0.788, + "2008": 0.811, + "2009": 0.818, + "2010": 0.821, + "2011": 0.832, + "2012": 0.828, + "2013": 0.827, + "2014": 0.835, + "2015": 0.832, + "2016": 0.844, + "2017": 0.853, + "2018": 0.857, + "2019": 0.865, + "2020": 0.847, + "2021": 0.827 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr105", + "Region": "Panevezys County", + "1990": 0.806, + "1991": 0.806, + "1992": 0.812, + "1993": 0.796, + "1994": 0.803, + "1995": 0.817, + "1996": 0.812, + "1997": 0.81, + "1998": 0.81, + "1999": 0.81, + "2000": 0.812, + "2001": 0.793, + "2002": 0.804, + "2003": 0.815, + "2004": 0.813, + "2005": 0.812, + "2006": 0.812, + "2007": 0.806, + "2008": 0.809, + "2009": 0.823, + "2010": 0.822, + "2011": 0.832, + "2012": 0.833, + "2013": 0.847, + "2014": 0.847, + "2015": 0.84, + "2016": 0.843, + "2017": 0.852, + "2018": 0.856, + "2019": 0.864, + "2020": 0.846, + "2021": 0.826 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr106", + "Region": "Siauliai County", + "1990": 0.79, + "1991": 0.791, + "1992": 0.796, + "1993": 0.781, + "1994": 0.787, + "1995": 0.801, + "1996": 0.797, + "1997": 0.794, + "1998": 0.794, + "1999": 0.794, + "2000": 0.796, + "2001": 0.797, + "2002": 0.784, + "2003": 0.799, + "2004": 0.801, + "2005": 0.791, + "2006": 0.786, + "2007": 0.784, + "2008": 0.802, + "2009": 0.813, + "2010": 0.811, + "2011": 0.827, + "2012": 0.832, + "2013": 0.831, + "2014": 0.84, + "2015": 0.833, + "2016": 0.839, + "2017": 0.848, + "2018": 0.851, + "2019": 0.86, + "2020": 0.842, + "2021": 0.821 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr107", + "Region": "Taurage County", + "1990": 0.784, + "1991": 0.784, + "1992": 0.79, + "1993": 0.775, + "1994": 0.781, + "1995": 0.795, + "1996": 0.79, + "1997": 0.788, + "1998": 0.788, + "1999": 0.788, + "2000": 0.79, + "2001": 0.777, + "2002": 0.776, + "2003": 0.779, + "2004": 0.772, + "2005": 0.77, + "2006": 0.762, + "2007": 0.775, + "2008": 0.798, + "2009": 0.798, + "2010": 0.786, + "2011": 0.806, + "2012": 0.824, + "2013": 0.82, + "2014": 0.835, + "2015": 0.822, + "2016": 0.821, + "2017": 0.83, + "2018": 0.833, + "2019": 0.841, + "2020": 0.824, + "2021": 0.804 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr108", + "Region": "Telsiai County", + "1990": 0.786, + "1991": 0.786, + "1992": 0.792, + "1993": 0.776, + "1994": 0.782, + "1995": 0.797, + "1996": 0.792, + "1997": 0.79, + "1998": 0.79, + "1999": 0.79, + "2000": 0.792, + "2001": 0.787, + "2002": 0.786, + "2003": 0.788, + "2004": 0.798, + "2005": 0.784, + "2006": 0.789, + "2007": 0.795, + "2008": 0.806, + "2009": 0.818, + "2010": 0.832, + "2011": 0.827, + "2012": 0.833, + "2013": 0.839, + "2014": 0.841, + "2015": 0.845, + "2016": 0.856, + "2017": 0.865, + "2018": 0.869, + "2019": 0.877, + "2020": 0.859, + "2021": 0.838 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr109", + "Region": "Utena County", + "1990": 0.795, + "1991": 0.795, + "1992": 0.801, + "1993": 0.785, + "1994": 0.791, + "1995": 0.806, + "1996": 0.801, + "1997": 0.799, + "1998": 0.799, + "1999": 0.799, + "2000": 0.801, + "2001": 0.795, + "2002": 0.795, + "2003": 0.786, + "2004": 0.796, + "2005": 0.778, + "2006": 0.787, + "2007": 0.779, + "2008": 0.774, + "2009": 0.804, + "2010": 0.804, + "2011": 0.814, + "2012": 0.807, + "2013": 0.801, + "2014": 0.826, + "2015": 0.819, + "2016": 0.818, + "2017": 0.827, + "2018": 0.83, + "2019": 0.838, + "2020": 0.821, + "2021": 0.801 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr110", + "Region": "Vilnius County", + "1990": 0.799, + "1991": 0.799, + "1992": 0.805, + "1993": 0.789, + "1994": 0.795, + "1995": 0.81, + "1996": 0.805, + "1997": 0.803, + "1998": 0.802, + "1999": 0.802, + "2000": 0.805, + "2001": 0.8, + "2002": 0.799, + "2003": 0.806, + "2004": 0.812, + "2005": 0.806, + "2006": 0.792, + "2007": 0.796, + "2008": 0.811, + "2009": 0.826, + "2010": 0.832, + "2011": 0.839, + "2012": 0.839, + "2013": 0.842, + "2014": 0.849, + "2015": 0.85, + "2016": 0.853, + "2017": 0.862, + "2018": 0.865, + "2019": 0.874, + "2020": 0.856, + "2021": 0.835 + }, + { + "Country": "Luxembourg", + "Continent": "Europe", + "ISO_Code": "LUX", + "Level": "National", + "GDLCODE": "LUXt", + "Region": "Total", + "1990": 0.855, + "1991": 0.859, + "1992": 0.852, + "1993": 0.861, + "1994": 0.869, + "1995": 0.872, + "1996": 0.871, + "1997": 0.875, + "1998": 0.877, + "1999": 0.886, + "2000": 0.889, + "2001": 0.895, + "2002": 0.898, + "2003": 0.889, + "2004": 0.911, + "2005": 0.914, + "2006": 0.914, + "2007": 0.915, + "2008": 0.93, + "2009": 0.933, + "2010": 0.932, + "2011": 0.935, + "2012": 0.938, + "2013": 0.944, + "2014": 0.95, + "2015": 0.951, + "2016": 0.955, + "2017": 0.95, + "2018": 0.951, + "2019": 0.956, + "2020": 0.945, + "2021": 0.964 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "National", + "GDLCODE": "MDGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.584, + "2001": 0.593, + "2002": 0.598, + "2003": 0.608, + "2004": 0.618, + "2005": 0.624, + "2006": 0.636, + "2007": 0.642, + "2008": 0.648, + "2009": 0.657, + "2010": 0.66, + "2011": 0.669, + "2012": 0.67, + "2013": 0.676, + "2014": 0.681, + "2015": 0.682, + "2016": 0.692, + "2017": 0.694, + "2018": 0.696, + "2019": 0.706, + "2020": 0.695, + "2021": 0.684 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr112", + "Region": "Alaotra Mangoro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.6, + "2001": 0.609, + "2002": 0.614, + "2003": 0.624, + "2004": 0.634, + "2005": 0.641, + "2006": 0.652, + "2007": 0.659, + "2008": 0.665, + "2009": 0.675, + "2010": 0.679, + "2011": 0.691, + "2012": 0.694, + "2013": 0.703, + "2014": 0.709, + "2015": 0.713, + "2016": 0.725, + "2017": 0.729, + "2018": 0.734, + "2019": 0.744, + "2020": 0.733, + "2021": 0.721 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr101", + "Region": "Analamanga", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.656, + "2001": 0.667, + "2002": 0.672, + "2003": 0.682, + "2004": 0.693, + "2005": 0.7, + "2006": 0.713, + "2007": 0.72, + "2008": 0.726, + "2009": 0.736, + "2010": 0.736, + "2011": 0.745, + "2012": 0.744, + "2013": 0.748, + "2014": 0.751, + "2015": 0.751, + "2016": 0.76, + "2017": 0.759, + "2018": 0.76, + "2019": 0.77, + "2020": 0.759, + "2021": 0.747 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr111", + "Region": "Analanjirofo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.633, + "2001": 0.644, + "2002": 0.649, + "2003": 0.659, + "2004": 0.669, + "2005": 0.676, + "2006": 0.688, + "2007": 0.695, + "2008": 0.702, + "2009": 0.711, + "2010": 0.709, + "2011": 0.715, + "2012": 0.712, + "2013": 0.715, + "2014": 0.715, + "2015": 0.712, + "2016": 0.719, + "2017": 0.716, + "2018": 0.715, + "2019": 0.725, + "2020": 0.714, + "2021": 0.703 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr106", + "Region": "Anamoroni Mania", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.566, + "2001": 0.576, + "2002": 0.581, + "2003": 0.59, + "2004": 0.6, + "2005": 0.606, + "2006": 0.617, + "2007": 0.624, + "2008": 0.63, + "2009": 0.639, + "2010": 0.65, + "2011": 0.669, + "2012": 0.679, + "2013": 0.695, + "2014": 0.709, + "2015": 0.72, + "2016": 0.74, + "2017": 0.751, + "2018": 0.763, + "2019": 0.773, + "2020": 0.761, + "2021": 0.75 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr118", + "Region": "Androy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.593, + "2001": 0.603, + "2002": 0.608, + "2003": 0.617, + "2004": 0.627, + "2005": 0.634, + "2006": 0.645, + "2007": 0.652, + "2008": 0.658, + "2009": 0.667, + "2010": 0.663, + "2011": 0.666, + "2012": 0.66, + "2013": 0.66, + "2014": 0.658, + "2015": 0.653, + "2016": 0.656, + "2017": 0.651, + "2018": 0.647, + "2019": 0.656, + "2020": 0.646, + "2021": 0.636 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr119", + "Region": "Anosy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.528, + "2001": 0.537, + "2002": 0.542, + "2003": 0.55, + "2004": 0.56, + "2005": 0.566, + "2006": 0.576, + "2007": 0.583, + "2008": 0.588, + "2009": 0.597, + "2010": 0.602, + "2011": 0.615, + "2012": 0.619, + "2013": 0.629, + "2014": 0.637, + "2015": 0.641, + "2016": 0.655, + "2017": 0.659, + "2018": 0.666, + "2019": 0.675, + "2020": 0.664, + "2021": 0.654 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr117", + "Region": "Atsimo Andrefana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.597, + "2001": 0.607, + "2002": 0.612, + "2003": 0.621, + "2004": 0.632, + "2005": 0.638, + "2006": 0.65, + "2007": 0.657, + "2008": 0.663, + "2009": 0.672, + "2010": 0.67, + "2011": 0.676, + "2012": 0.673, + "2013": 0.676, + "2014": 0.676, + "2015": 0.674, + "2016": 0.68, + "2017": 0.678, + "2018": 0.677, + "2019": 0.686, + "2020": 0.675, + "2021": 0.665 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr109", + "Region": "Atsimo Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.512, + "2001": 0.521, + "2002": 0.525, + "2003": 0.534, + "2004": 0.543, + "2005": 0.549, + "2006": 0.56, + "2007": 0.566, + "2008": 0.571, + "2009": 0.58, + "2010": 0.58, + "2011": 0.587, + "2012": 0.586, + "2013": 0.591, + "2014": 0.593, + "2015": 0.593, + "2016": 0.601, + "2017": 0.6, + "2018": 0.601, + "2019": 0.61, + "2020": 0.6, + "2021": 0.59 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr110", + "Region": "Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.644, + "2001": 0.655, + "2002": 0.66, + "2003": 0.67, + "2004": 0.681, + "2005": 0.687, + "2006": 0.7, + "2007": 0.707, + "2008": 0.713, + "2009": 0.723, + "2010": 0.716, + "2011": 0.717, + "2012": 0.708, + "2013": 0.706, + "2014": 0.701, + "2015": 0.693, + "2016": 0.695, + "2017": 0.687, + "2018": 0.681, + "2019": 0.69, + "2020": 0.679, + "2021": 0.669 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr115", + "Region": "Betsiboka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.568, + "2001": 0.578, + "2002": 0.582, + "2003": 0.591, + "2004": 0.601, + "2005": 0.608, + "2006": 0.619, + "2007": 0.626, + "2008": 0.632, + "2009": 0.64, + "2010": 0.634, + "2011": 0.635, + "2012": 0.628, + "2013": 0.626, + "2014": 0.622, + "2015": 0.615, + "2016": 0.617, + "2017": 0.61, + "2018": 0.605, + "2019": 0.613, + "2020": 0.604, + "2021": 0.594 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr113", + "Region": "Boeny", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.555, + "2001": 0.565, + "2002": 0.569, + "2003": 0.578, + "2004": 0.588, + "2005": 0.594, + "2006": 0.605, + "2007": 0.612, + "2008": 0.618, + "2009": 0.627, + "2010": 0.638, + "2011": 0.657, + "2012": 0.667, + "2013": 0.683, + "2014": 0.697, + "2015": 0.708, + "2016": 0.728, + "2017": 0.739, + "2018": 0.751, + "2019": 0.761, + "2020": 0.75, + "2021": 0.738 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr104", + "Region": "Bongolava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.674, + "2001": 0.685, + "2002": 0.69, + "2003": 0.701, + "2004": 0.712, + "2005": 0.719, + "2006": 0.732, + "2007": 0.739, + "2008": 0.746, + "2009": 0.756, + "2010": 0.744, + "2011": 0.739, + "2012": 0.726, + "2013": 0.718, + "2014": 0.709, + "2015": 0.696, + "2016": 0.692, + "2017": 0.679, + "2018": 0.668, + "2019": 0.677, + "2020": 0.667, + "2021": 0.656 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr121", + "Region": "Diana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.639, + "2001": 0.649, + "2002": 0.654, + "2003": 0.664, + "2004": 0.675, + "2005": 0.682, + "2006": 0.694, + "2007": 0.701, + "2008": 0.707, + "2009": 0.717, + "2010": 0.72, + "2011": 0.73, + "2012": 0.731, + "2013": 0.739, + "2014": 0.744, + "2015": 0.745, + "2016": 0.757, + "2017": 0.759, + "2018": 0.762, + "2019": 0.772, + "2020": 0.76, + "2021": 0.749 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr105", + "Region": "Haute Matsiatra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.543, + "2001": 0.552, + "2002": 0.557, + "2003": 0.566, + "2004": 0.575, + "2005": 0.581, + "2006": 0.592, + "2007": 0.599, + "2008": 0.605, + "2009": 0.613, + "2010": 0.621, + "2011": 0.636, + "2012": 0.643, + "2013": 0.655, + "2014": 0.666, + "2015": 0.673, + "2016": 0.689, + "2017": 0.696, + "2018": 0.704, + "2019": 0.714, + "2020": 0.703, + "2021": 0.692 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr108", + "Region": "Ihorombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.535, + "2001": 0.544, + "2002": 0.549, + "2003": 0.558, + "2004": 0.567, + "2005": 0.573, + "2006": 0.584, + "2007": 0.59, + "2008": 0.596, + "2009": 0.605, + "2010": 0.609, + "2011": 0.62, + "2012": 0.623, + "2013": 0.632, + "2014": 0.639, + "2015": 0.642, + "2016": 0.654, + "2017": 0.658, + "2018": 0.663, + "2019": 0.672, + "2020": 0.661, + "2021": 0.651 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr103", + "Region": "Itasy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.59, + "2001": 0.6, + "2002": 0.605, + "2003": 0.614, + "2004": 0.624, + "2005": 0.631, + "2006": 0.642, + "2007": 0.649, + "2008": 0.655, + "2009": 0.664, + "2010": 0.669, + "2011": 0.682, + "2012": 0.686, + "2013": 0.695, + "2014": 0.703, + "2015": 0.707, + "2016": 0.72, + "2017": 0.724, + "2018": 0.73, + "2019": 0.74, + "2020": 0.728, + "2021": 0.717 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr116", + "Region": "Melaky", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.62, + "2001": 0.63, + "2002": 0.635, + "2003": 0.645, + "2004": 0.655, + "2005": 0.662, + "2006": 0.674, + "2007": 0.681, + "2008": 0.687, + "2009": 0.697, + "2010": 0.701, + "2011": 0.712, + "2012": 0.715, + "2013": 0.723, + "2014": 0.729, + "2015": 0.732, + "2016": 0.745, + "2017": 0.748, + "2018": 0.752, + "2019": 0.762, + "2020": 0.751, + "2021": 0.739 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr120", + "Region": "Menabe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.567, + "2001": 0.577, + "2002": 0.582, + "2003": 0.591, + "2004": 0.601, + "2005": 0.607, + "2006": 0.618, + "2007": 0.625, + "2008": 0.631, + "2009": 0.64, + "2010": 0.637, + "2011": 0.641, + "2012": 0.637, + "2013": 0.639, + "2014": 0.638, + "2015": 0.635, + "2016": 0.64, + "2017": 0.636, + "2018": 0.634, + "2019": 0.643, + "2020": 0.633, + "2021": 0.623 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr122", + "Region": "Sava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.614, + "2001": 0.624, + "2002": 0.629, + "2003": 0.638, + "2004": 0.649, + "2005": 0.656, + "2006": 0.667, + "2007": 0.674, + "2008": 0.681, + "2009": 0.69, + "2010": 0.699, + "2011": 0.715, + "2012": 0.722, + "2013": 0.735, + "2014": 0.746, + "2015": 0.753, + "2016": 0.77, + "2017": 0.778, + "2018": 0.787, + "2019": 0.798, + "2020": 0.786, + "2021": 0.774 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr114", + "Region": "Sofia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.617, + "2001": 0.627, + "2002": 0.632, + "2003": 0.641, + "2004": 0.652, + "2005": 0.659, + "2006": 0.671, + "2007": 0.678, + "2008": 0.684, + "2009": 0.693, + "2010": 0.692, + "2011": 0.699, + "2012": 0.697, + "2013": 0.701, + "2014": 0.703, + "2015": 0.701, + "2016": 0.709, + "2017": 0.708, + "2018": 0.707, + "2019": 0.717, + "2020": 0.706, + "2021": 0.695 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr102", + "Region": "Vakinankaratra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.589, + "2001": 0.599, + "2002": 0.604, + "2003": 0.613, + "2004": 0.623, + "2005": 0.63, + "2006": 0.642, + "2007": 0.648, + "2008": 0.654, + "2009": 0.664, + "2010": 0.667, + "2011": 0.678, + "2012": 0.679, + "2013": 0.687, + "2014": 0.693, + "2015": 0.695, + "2016": 0.707, + "2017": 0.709, + "2018": 0.713, + "2019": 0.723, + "2020": 0.712, + "2021": 0.701 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr107", + "Region": "Vatovavy Fitovinany", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.431, + "2001": 0.439, + "2002": 0.443, + "2003": 0.451, + "2004": 0.459, + "2005": 0.465, + "2006": 0.474, + "2007": 0.48, + "2008": 0.485, + "2009": 0.492, + "2010": 0.51, + "2011": 0.534, + "2012": 0.551, + "2013": 0.572, + "2014": 0.592, + "2015": 0.609, + "2016": 0.634, + "2017": 0.651, + "2018": 0.669, + "2019": 0.678, + "2020": 0.668, + "2021": 0.657 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "National", + "GDLCODE": "MWIt", + "Region": "Total", + "1990": 0.359, + "1991": 0.359, + "1992": 0.36, + "1993": 0.36, + "1994": 0.362, + "1995": 0.364, + "1996": 0.361, + "1997": 0.356, + "1998": 0.352, + "1999": 0.363, + "2000": 0.377, + "2001": 0.398, + "2002": 0.419, + "2003": 0.443, + "2004": 0.469, + "2005": 0.493, + "2006": 0.511, + "2007": 0.522, + "2008": 0.532, + "2009": 0.545, + "2010": 0.56, + "2011": 0.576, + "2012": 0.595, + "2013": 0.611, + "2014": 0.629, + "2015": 0.637, + "2016": 0.649, + "2017": 0.661, + "2018": 0.666, + "2019": 0.679, + "2020": 0.673, + "2021": 0.66 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr101", + "Region": "Blantyre", + "1990": 0.381, + "1991": 0.381, + "1992": 0.383, + "1993": 0.381, + "1994": 0.382, + "1995": 0.381, + "1996": 0.376, + "1997": 0.37, + "1998": 0.364, + "1999": 0.373, + "2000": 0.387, + "2001": 0.407, + "2002": 0.426, + "2003": 0.449, + "2004": 0.474, + "2005": 0.502, + "2006": 0.525, + "2007": 0.539, + "2008": 0.554, + "2009": 0.57, + "2010": 0.589, + "2011": 0.603, + "2012": 0.62, + "2013": 0.634, + "2014": 0.65, + "2015": 0.655, + "2016": 0.666, + "2017": 0.673, + "2018": 0.673, + "2019": 0.681, + "2020": 0.671, + "2021": 0.658 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr102", + "Region": "Kasungu", + "1990": 0.352, + "1991": 0.351, + "1992": 0.353, + "1993": 0.353, + "1994": 0.356, + "1995": 0.358, + "1996": 0.356, + "1997": 0.351, + "1998": 0.348, + "1999": 0.359, + "2000": 0.374, + "2001": 0.387, + "2002": 0.399, + "2003": 0.415, + "2004": 0.431, + "2005": 0.46, + "2006": 0.483, + "2007": 0.498, + "2008": 0.513, + "2009": 0.531, + "2010": 0.55, + "2011": 0.574, + "2012": 0.6, + "2013": 0.623, + "2014": 0.647, + "2015": 0.661, + "2016": 0.681, + "2017": 0.7, + "2018": 0.711, + "2019": 0.731, + "2020": 0.731, + "2021": 0.718 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr109", + "Region": "Lilongwe", + "1990": 0.354, + "1991": 0.354, + "1992": 0.355, + "1993": 0.356, + "1994": 0.361, + "1995": 0.363, + "1996": 0.362, + "1997": 0.359, + "1998": 0.356, + "1999": 0.368, + "2000": 0.385, + "2001": 0.408, + "2002": 0.431, + "2003": 0.457, + "2004": 0.485, + "2005": 0.506, + "2006": 0.52, + "2007": 0.527, + "2008": 0.533, + "2009": 0.542, + "2010": 0.552, + "2011": 0.566, + "2012": 0.583, + "2013": 0.597, + "2014": 0.613, + "2015": 0.619, + "2016": 0.63, + "2017": 0.65, + "2018": 0.663, + "2019": 0.685, + "2020": 0.687, + "2021": 0.674 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr103", + "Region": "Machinga", + "1990": 0.357, + "1991": 0.356, + "1992": 0.358, + "1993": 0.358, + "1994": 0.36, + "1995": 0.362, + "1996": 0.359, + "1997": 0.354, + "1998": 0.35, + "1999": 0.361, + "2000": 0.375, + "2001": 0.406, + "2002": 0.436, + "2003": 0.471, + "2004": 0.507, + "2005": 0.526, + "2006": 0.539, + "2007": 0.544, + "2008": 0.548, + "2009": 0.555, + "2010": 0.563, + "2011": 0.577, + "2012": 0.592, + "2013": 0.605, + "2014": 0.62, + "2015": 0.625, + "2016": 0.635, + "2017": 0.65, + "2018": 0.659, + "2019": 0.676, + "2020": 0.673, + "2021": 0.661 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr104", + "Region": "Mangochi", + "1990": 0.374, + "1991": 0.374, + "1992": 0.376, + "1993": 0.374, + "1994": 0.375, + "1995": 0.374, + "1996": 0.369, + "1997": 0.363, + "1998": 0.357, + "1999": 0.366, + "2000": 0.379, + "2001": 0.397, + "2002": 0.415, + "2003": 0.436, + "2004": 0.458, + "2005": 0.482, + "2006": 0.5, + "2007": 0.51, + "2008": 0.52, + "2009": 0.532, + "2010": 0.546, + "2011": 0.566, + "2012": 0.587, + "2013": 0.606, + "2014": 0.627, + "2015": 0.637, + "2016": 0.653, + "2017": 0.656, + "2018": 0.652, + "2019": 0.657, + "2020": 0.642, + "2021": 0.63 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr110", + "Region": "Mulanje", + "1990": 0.371, + "1991": 0.371, + "1992": 0.372, + "1993": 0.368, + "1994": 0.368, + "1995": 0.365, + "1996": 0.359, + "1997": 0.351, + "1998": 0.343, + "1999": 0.351, + "2000": 0.362, + "2001": 0.373, + "2002": 0.383, + "2003": 0.396, + "2004": 0.41, + "2005": 0.436, + "2006": 0.457, + "2007": 0.47, + "2008": 0.483, + "2009": 0.499, + "2010": 0.516, + "2011": 0.53, + "2012": 0.547, + "2013": 0.561, + "2014": 0.576, + "2015": 0.582, + "2016": 0.593, + "2017": 0.619, + "2018": 0.639, + "2019": 0.666, + "2020": 0.675, + "2021": 0.662 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr105", + "Region": "Mzimba", + "1990": 0.377, + "1991": 0.377, + "1992": 0.379, + "1993": 0.378, + "1994": 0.381, + "1995": 0.382, + "1996": 0.379, + "1997": 0.374, + "1998": 0.369, + "1999": 0.38, + "2000": 0.395, + "2001": 0.428, + "2002": 0.46, + "2003": 0.496, + "2004": 0.535, + "2005": 0.548, + "2006": 0.555, + "2007": 0.553, + "2008": 0.551, + "2009": 0.552, + "2010": 0.554, + "2011": 0.58, + "2012": 0.608, + "2013": 0.634, + "2014": 0.661, + "2015": 0.677, + "2016": 0.699, + "2017": 0.702, + "2018": 0.696, + "2019": 0.7, + "2020": 0.684, + "2021": 0.671 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr112", + "Region": "Other central (Nkhota Kota, Mchinji, Dowa, Ntchisi, Dedza, Ntcheu)", + "1990": 0.353, + "1991": 0.353, + "1992": 0.354, + "1993": 0.355, + "1994": 0.358, + "1995": 0.36, + "1996": 0.358, + "1997": 0.355, + "1998": 0.351, + "1999": 0.363, + "2000": 0.379, + "2001": 0.397, + "2002": 0.414, + "2003": 0.434, + "2004": 0.456, + "2005": 0.484, + "2006": 0.505, + "2007": 0.519, + "2008": 0.532, + "2009": 0.548, + "2010": 0.566, + "2011": 0.578, + "2012": 0.593, + "2013": 0.605, + "2014": 0.618, + "2015": 0.622, + "2016": 0.63, + "2017": 0.646, + "2018": 0.655, + "2019": 0.672, + "2020": 0.67, + "2021": 0.657 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr111", + "Region": "Other northern (Chitipa, Karonga, Rumphi, Nkhata Bay)", + "1990": 0.384, + "1991": 0.383, + "1992": 0.385, + "1993": 0.386, + "1994": 0.39, + "1995": 0.393, + "1996": 0.391, + "1997": 0.388, + "1998": 0.385, + "1999": 0.398, + "2000": 0.415, + "2001": 0.436, + "2002": 0.458, + "2003": 0.482, + "2004": 0.509, + "2005": 0.54, + "2006": 0.565, + "2007": 0.582, + "2008": 0.599, + "2009": 0.618, + "2010": 0.639, + "2011": 0.647, + "2012": 0.657, + "2013": 0.665, + "2014": 0.674, + "2015": 0.673, + "2016": 0.677, + "2017": 0.696, + "2018": 0.707, + "2019": 0.727, + "2020": 0.727, + "2021": 0.714 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr113", + "Region": "Other southern (Balaka, Mwanza, Phalombe, Chiradzulu, Chikwawa, Nsanje, neno)", + "1990": 0.369, + "1991": 0.369, + "1992": 0.371, + "1993": 0.368, + "1994": 0.368, + "1995": 0.366, + "1996": 0.36, + "1997": 0.353, + "1998": 0.346, + "1999": 0.354, + "2000": 0.366, + "2001": 0.39, + "2002": 0.413, + "2003": 0.441, + "2004": 0.469, + "2005": 0.492, + "2006": 0.508, + "2007": 0.517, + "2008": 0.526, + "2009": 0.537, + "2010": 0.549, + "2011": 0.567, + "2012": 0.587, + "2013": 0.605, + "2014": 0.624, + "2015": 0.633, + "2016": 0.647, + "2017": 0.655, + "2018": 0.657, + "2019": 0.666, + "2020": 0.657, + "2021": 0.645 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr106", + "Region": "Salima", + "1990": 0.357, + "1991": 0.357, + "1992": 0.358, + "1993": 0.356, + "1994": 0.356, + "1995": 0.355, + "1996": 0.35, + "1997": 0.343, + "1998": 0.336, + "1999": 0.345, + "2000": 0.357, + "2001": 0.384, + "2002": 0.41, + "2003": 0.441, + "2004": 0.473, + "2005": 0.491, + "2006": 0.503, + "2007": 0.508, + "2008": 0.511, + "2009": 0.518, + "2010": 0.525, + "2011": 0.546, + "2012": 0.568, + "2013": 0.588, + "2014": 0.61, + "2015": 0.621, + "2016": 0.637, + "2017": 0.647, + "2018": 0.65, + "2019": 0.662, + "2020": 0.654, + "2021": 0.642 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr107", + "Region": "Thyolo", + "1990": 0.352, + "1991": 0.352, + "1992": 0.354, + "1993": 0.352, + "1994": 0.354, + "1995": 0.354, + "1996": 0.35, + "1997": 0.345, + "1998": 0.34, + "1999": 0.35, + "2000": 0.363, + "2001": 0.38, + "2002": 0.396, + "2003": 0.416, + "2004": 0.436, + "2005": 0.467, + "2006": 0.492, + "2007": 0.51, + "2008": 0.527, + "2009": 0.547, + "2010": 0.569, + "2011": 0.59, + "2012": 0.613, + "2013": 0.634, + "2014": 0.656, + "2015": 0.668, + "2016": 0.685, + "2017": 0.675, + "2018": 0.657, + "2019": 0.648, + "2020": 0.62, + "2021": 0.608 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr108", + "Region": "Zomba", + "1990": 0.351, + "1991": 0.351, + "1992": 0.353, + "1993": 0.352, + "1994": 0.355, + "1995": 0.356, + "1996": 0.352, + "1997": 0.348, + "1998": 0.343, + "1999": 0.354, + "2000": 0.368, + "2001": 0.396, + "2002": 0.422, + "2003": 0.453, + "2004": 0.486, + "2005": 0.506, + "2006": 0.52, + "2007": 0.526, + "2008": 0.531, + "2009": 0.539, + "2010": 0.549, + "2011": 0.575, + "2012": 0.604, + "2013": 0.63, + "2014": 0.657, + "2015": 0.674, + "2016": 0.696, + "2017": 0.696, + "2018": 0.689, + "2019": 0.69, + "2020": 0.672, + "2021": 0.659 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "National", + "GDLCODE": "MYSt", + "Region": "Total", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr101", + "Region": "Johor", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr102", + "Region": "Kedah", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr103", + "Region": "Kelantan", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr114", + "Region": "Kuala Lumpur Federal Territory", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr115", + "Region": "Labuan Federal Territory", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr104", + "Region": "Melaka", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr105", + "Region": "Negeri Sembilan", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr106", + "Region": "Pahang", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr108", + "Region": "Perak", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr109", + "Region": "Perlis", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr107", + "Region": "Pulau Pinang", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr112", + "Region": "Sabah", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr113", + "Region": "Sarawak", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr110", + "Region": "Selangor", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr111", + "Region": "Terengganu", + "1990": 0.789, + "1991": 0.791, + "1992": 0.793, + "1993": 0.797, + "1994": 0.803, + "1995": 0.806, + "1996": 0.805, + "1997": 0.804, + "1998": 0.803, + "1999": 0.804, + "2000": 0.812, + "2001": 0.821, + "2002": 0.824, + "2003": 0.828, + "2004": 0.829, + "2005": 0.832, + "2006": 0.833, + "2007": 0.834, + "2008": 0.835, + "2009": 0.834, + "2010": 0.838, + "2011": 0.842, + "2012": 0.845, + "2013": 0.847, + "2014": 0.848, + "2015": 0.848, + "2016": 0.851, + "2017": 0.853, + "2018": 0.856, + "2019": 0.858, + "2020": 0.861, + "2021": 0.844 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "National", + "GDLCODE": "MDVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.73, + "1996": 0.749, + "1997": 0.757, + "1998": 0.763, + "1999": 0.771, + "2000": 0.783, + "2001": 0.803, + "2002": 0.82, + "2003": 0.832, + "2004": 0.824, + "2005": 0.842, + "2006": 0.848, + "2007": 0.857, + "2008": 0.87, + "2009": 0.878, + "2010": 0.887, + "2011": 0.894, + "2012": 0.903, + "2013": 0.909, + "2014": 0.914, + "2015": 0.918, + "2016": 0.921, + "2017": 0.922, + "2018": 0.923, + "2019": 0.925, + "2020": 0.921, + "2021": 0.922 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr104", + "Region": "Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.715, + "1996": 0.733, + "1997": 0.741, + "1998": 0.747, + "1999": 0.754, + "2000": 0.766, + "2001": 0.786, + "2002": 0.803, + "2003": 0.815, + "2004": 0.807, + "2005": 0.825, + "2006": 0.831, + "2007": 0.839, + "2008": 0.852, + "2009": 0.86, + "2010": 0.872, + "2011": 0.882, + "2012": 0.893, + "2013": 0.902, + "2014": 0.91, + "2015": 0.917, + "2016": 0.923, + "2017": 0.927, + "2018": 0.928, + "2019": 0.929, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr101", + "Region": "Male", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.739, + "1996": 0.758, + "1997": 0.766, + "1998": 0.771, + "1999": 0.779, + "2000": 0.792, + "2001": 0.812, + "2002": 0.829, + "2003": 0.841, + "2004": 0.833, + "2005": 0.852, + "2006": 0.858, + "2007": 0.866, + "2008": 0.88, + "2009": 0.888, + "2010": 0.895, + "2011": 0.9, + "2012": 0.907, + "2013": 0.911, + "2014": 0.914, + "2015": 0.916, + "2016": 0.917, + "2017": 0.916, + "2018": 0.917, + "2019": 0.919, + "2020": 0.915, + "2021": 0.916 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr102", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.746, + "1996": 0.765, + "1997": 0.773, + "1998": 0.779, + "1999": 0.787, + "2000": 0.799, + "2001": 0.819, + "2002": 0.837, + "2003": 0.849, + "2004": 0.841, + "2005": 0.859, + "2006": 0.865, + "2007": 0.874, + "2008": 0.887, + "2009": 0.896, + "2010": 0.902, + "2011": 0.907, + "2012": 0.913, + "2013": 0.916, + "2014": 0.919, + "2015": 0.92, + "2016": 0.92, + "2017": 0.918, + "2018": 0.919, + "2019": 0.921, + "2020": 0.917, + "2021": 0.918 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr103", + "Region": "North Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.725, + "1996": 0.743, + "1997": 0.751, + "1998": 0.757, + "1999": 0.764, + "2000": 0.777, + "2001": 0.796, + "2002": 0.813, + "2003": 0.825, + "2004": 0.817, + "2005": 0.836, + "2006": 0.842, + "2007": 0.85, + "2008": 0.863, + "2009": 0.871, + "2010": 0.883, + "2011": 0.894, + "2012": 0.906, + "2013": 0.915, + "2014": 0.923, + "2015": 0.931, + "2016": 0.937, + "2017": 0.941, + "2018": 0.942, + "2019": 0.944, + "2020": 0.94, + "2021": 0.941 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr106", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.74, + "1996": 0.759, + "1997": 0.767, + "1998": 0.773, + "1999": 0.781, + "2000": 0.793, + "2001": 0.813, + "2002": 0.83, + "2003": 0.842, + "2004": 0.834, + "2005": 0.853, + "2006": 0.859, + "2007": 0.867, + "2008": 0.881, + "2009": 0.889, + "2010": 0.896, + "2011": 0.901, + "2012": 0.907, + "2013": 0.911, + "2014": 0.915, + "2015": 0.917, + "2016": 0.917, + "2017": 0.916, + "2018": 0.917, + "2019": 0.919, + "2020": 0.915, + "2021": 0.916 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr105", + "Region": "South Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.698, + "1996": 0.717, + "1997": 0.724, + "1998": 0.73, + "1999": 0.737, + "2000": 0.749, + "2001": 0.768, + "2002": 0.785, + "2003": 0.796, + "2004": 0.789, + "2005": 0.807, + "2006": 0.812, + "2007": 0.821, + "2008": 0.833, + "2009": 0.841, + "2010": 0.855, + "2011": 0.868, + "2012": 0.881, + "2013": 0.892, + "2014": 0.903, + "2015": 0.912, + "2016": 0.92, + "2017": 0.927, + "2018": 0.928, + "2019": 0.929, + "2020": 0.926, + "2021": 0.926 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "National", + "GDLCODE": "MLIt", + "Region": "Total", + "1990": 0.41, + "1991": 0.419, + "1992": 0.423, + "1993": 0.427, + "1994": 0.427, + "1995": 0.428, + "1996": 0.428, + "1997": 0.439, + "1998": 0.449, + "1999": 0.458, + "2000": 0.47, + "2001": 0.481, + "2002": 0.496, + "2003": 0.506, + "2004": 0.516, + "2005": 0.523, + "2006": 0.533, + "2007": 0.538, + "2008": 0.543, + "2009": 0.552, + "2010": 0.56, + "2011": 0.565, + "2012": 0.57, + "2013": 0.575, + "2014": 0.583, + "2015": 0.59, + "2016": 0.596, + "2017": 0.602, + "2018": 0.606, + "2019": 0.61, + "2020": 0.594, + "2021": 0.599 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr108", + "Region": "Bamako", + "1990": 0.489, + "1991": 0.499, + "1992": 0.504, + "1993": 0.508, + "1994": 0.508, + "1995": 0.509, + "1996": 0.512, + "1997": 0.527, + "1998": 0.54, + "1999": 0.554, + "2000": 0.569, + "2001": 0.585, + "2002": 0.607, + "2003": 0.625, + "2004": 0.642, + "2005": 0.656, + "2006": 0.673, + "2007": 0.669, + "2008": 0.666, + "2009": 0.667, + "2010": 0.667, + "2011": 0.665, + "2012": 0.663, + "2013": 0.66, + "2014": 0.675, + "2015": 0.688, + "2016": 0.7, + "2017": 0.712, + "2018": 0.723, + "2019": 0.727, + "2020": 0.709, + "2021": 0.715 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr107", + "Region": "Gao and Kidal", + "1990": 0.415, + "1991": 0.425, + "1992": 0.429, + "1993": 0.433, + "1994": 0.433, + "1995": 0.434, + "1996": 0.433, + "1997": 0.443, + "1998": 0.452, + "1999": 0.461, + "2000": 0.471, + "2001": 0.482, + "2002": 0.515, + "2003": 0.544, + "2004": 0.573, + "2005": 0.6, + "2006": 0.629, + "2007": 0.62, + "2008": 0.612, + "2009": 0.608, + "2010": 0.603, + "2011": 0.597, + "2012": 0.59, + "2013": 0.583, + "2014": 0.603, + "2015": 0.622, + "2016": 0.64, + "2017": 0.658, + "2018": 0.674, + "2019": 0.679, + "2020": 0.662, + "2021": 0.667 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr101", + "Region": "Kayes", + "1990": 0.408, + "1991": 0.417, + "1992": 0.421, + "1993": 0.425, + "1994": 0.425, + "1995": 0.426, + "1996": 0.426, + "1997": 0.436, + "1998": 0.446, + "1999": 0.455, + "2000": 0.466, + "2001": 0.477, + "2002": 0.495, + "2003": 0.509, + "2004": 0.523, + "2005": 0.534, + "2006": 0.548, + "2007": 0.552, + "2008": 0.557, + "2009": 0.566, + "2010": 0.574, + "2011": 0.579, + "2012": 0.584, + "2013": 0.588, + "2014": 0.588, + "2015": 0.587, + "2016": 0.584, + "2017": 0.581, + "2018": 0.576, + "2019": 0.58, + "2020": 0.565, + "2021": 0.57 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr102", + "Region": "Koulikoro", + "1990": 0.417, + "1991": 0.426, + "1992": 0.431, + "1993": 0.434, + "1994": 0.434, + "1995": 0.435, + "1996": 0.435, + "1997": 0.447, + "1998": 0.457, + "1999": 0.468, + "2000": 0.479, + "2001": 0.491, + "2002": 0.503, + "2003": 0.51, + "2004": 0.517, + "2005": 0.521, + "2006": 0.528, + "2007": 0.536, + "2008": 0.544, + "2009": 0.556, + "2010": 0.566, + "2011": 0.574, + "2012": 0.582, + "2013": 0.589, + "2014": 0.596, + "2015": 0.602, + "2016": 0.607, + "2017": 0.612, + "2018": 0.615, + "2019": 0.619, + "2020": 0.603, + "2021": 0.608 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr105", + "Region": "Mopti", + "1990": 0.416, + "1991": 0.426, + "1992": 0.43, + "1993": 0.434, + "1994": 0.434, + "1995": 0.435, + "1996": 0.432, + "1997": 0.441, + "1998": 0.448, + "1999": 0.455, + "2000": 0.464, + "2001": 0.473, + "2002": 0.487, + "2003": 0.498, + "2004": 0.508, + "2005": 0.515, + "2006": 0.524, + "2007": 0.529, + "2008": 0.535, + "2009": 0.543, + "2010": 0.551, + "2011": 0.557, + "2012": 0.562, + "2013": 0.566, + "2014": 0.571, + "2015": 0.574, + "2016": 0.576, + "2017": 0.578, + "2018": 0.579, + "2019": 0.583, + "2020": 0.567, + "2021": 0.572 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr104", + "Region": "Segou", + "1990": 0.406, + "1991": 0.415, + "1992": 0.42, + "1993": 0.423, + "1994": 0.423, + "1995": 0.424, + "1996": 0.424, + "1997": 0.435, + "1998": 0.445, + "1999": 0.455, + "2000": 0.466, + "2001": 0.477, + "2002": 0.488, + "2003": 0.495, + "2004": 0.502, + "2005": 0.505, + "2006": 0.511, + "2007": 0.517, + "2008": 0.523, + "2009": 0.532, + "2010": 0.54, + "2011": 0.546, + "2012": 0.552, + "2013": 0.556, + "2014": 0.562, + "2015": 0.566, + "2016": 0.568, + "2017": 0.571, + "2018": 0.572, + "2019": 0.576, + "2020": 0.56, + "2021": 0.565 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr103", + "Region": "Sikasso", + "1990": 0.417, + "1991": 0.426, + "1992": 0.43, + "1993": 0.434, + "1994": 0.434, + "1995": 0.435, + "1996": 0.434, + "1997": 0.444, + "1998": 0.453, + "1999": 0.462, + "2000": 0.472, + "2001": 0.483, + "2002": 0.494, + "2003": 0.502, + "2004": 0.509, + "2005": 0.513, + "2006": 0.52, + "2007": 0.522, + "2008": 0.526, + "2009": 0.532, + "2010": 0.538, + "2011": 0.542, + "2012": 0.545, + "2013": 0.547, + "2014": 0.562, + "2015": 0.575, + "2016": 0.587, + "2017": 0.599, + "2018": 0.61, + "2019": 0.614, + "2020": 0.598, + "2021": 0.603 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr106", + "Region": "Tombouctou", + "1990": 0.413, + "1991": 0.423, + "1992": 0.427, + "1993": 0.431, + "1994": 0.431, + "1995": 0.432, + "1996": 0.431, + "1997": 0.442, + "1998": 0.451, + "1999": 0.46, + "2000": 0.47, + "2001": 0.481, + "2002": 0.494, + "2003": 0.502, + "2004": 0.511, + "2005": 0.516, + "2006": 0.524, + "2007": 0.517, + "2008": 0.51, + "2009": 0.508, + "2010": 0.505, + "2011": 0.5, + "2012": 0.495, + "2013": 0.49, + "2014": 0.509, + "2015": 0.526, + "2016": 0.543, + "2017": 0.56, + "2018": 0.576, + "2019": 0.58, + "2020": 0.565, + "2021": 0.569 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "National", + "GDLCODE": "MRTt", + "Region": "Total", + "1990": 0.612, + "1991": 0.614, + "1992": 0.619, + "1993": 0.621, + "1994": 0.621, + "1995": 0.619, + "1996": 0.616, + "1997": 0.622, + "1998": 0.625, + "1999": 0.628, + "2000": 0.631, + "2001": 0.634, + "2002": 0.635, + "2003": 0.636, + "2004": 0.64, + "2005": 0.641, + "2006": 0.644, + "2007": 0.65, + "2008": 0.652, + "2009": 0.658, + "2010": 0.663, + "2011": 0.667, + "2012": 0.67, + "2013": 0.676, + "2014": 0.679, + "2015": 0.684, + "2016": 0.689, + "2017": 0.694, + "2018": 0.697, + "2019": 0.703, + "2020": 0.685, + "2021": 0.683 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr107", + "Region": "Adrar", + "1990": 0.504, + "1991": 0.507, + "1992": 0.511, + "1993": 0.513, + "1994": 0.512, + "1995": 0.511, + "1996": 0.508, + "1997": 0.514, + "1998": 0.516, + "1999": 0.519, + "2000": 0.522, + "2001": 0.524, + "2002": 0.541, + "2003": 0.558, + "2004": 0.578, + "2005": 0.596, + "2006": 0.616, + "2007": 0.639, + "2008": 0.644, + "2009": 0.654, + "2010": 0.661, + "2011": 0.668, + "2012": 0.671, + "2013": 0.675, + "2014": 0.678, + "2015": 0.683, + "2016": 0.67, + "2017": 0.658, + "2018": 0.644, + "2019": 0.632, + "2020": 0.599, + "2021": 0.596 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr103", + "Region": "Assaba", + "1990": 0.696, + "1991": 0.699, + "1992": 0.704, + "1993": 0.706, + "1994": 0.706, + "1995": 0.704, + "1996": 0.701, + "1997": 0.708, + "1998": 0.71, + "1999": 0.714, + "2000": 0.717, + "2001": 0.72, + "2002": 0.712, + "2003": 0.704, + "2004": 0.699, + "2005": 0.691, + "2006": 0.685, + "2007": 0.681, + "2008": 0.679, + "2009": 0.682, + "2010": 0.683, + "2011": 0.683, + "2012": 0.658, + "2013": 0.636, + "2014": 0.615, + "2015": 0.598, + "2016": 0.614, + "2017": 0.632, + "2018": 0.648, + "2019": 0.667, + "2020": 0.663, + "2021": 0.66 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr105", + "Region": "Brakna", + "1990": 0.649, + "1991": 0.652, + "1992": 0.657, + "1993": 0.659, + "1994": 0.658, + "1995": 0.657, + "1996": 0.654, + "1997": 0.66, + "1998": 0.662, + "1999": 0.666, + "2000": 0.669, + "2001": 0.672, + "2002": 0.666, + "2003": 0.661, + "2004": 0.659, + "2005": 0.653, + "2006": 0.65, + "2007": 0.648, + "2008": 0.648, + "2009": 0.651, + "2010": 0.652, + "2011": 0.653, + "2012": 0.642, + "2013": 0.634, + "2014": 0.626, + "2015": 0.62, + "2016": 0.637, + "2017": 0.654, + "2018": 0.67, + "2019": 0.688, + "2020": 0.683, + "2021": 0.681 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr104", + "Region": "Gorgol", + "1990": 0.605, + "1991": 0.607, + "1992": 0.612, + "1993": 0.614, + "1994": 0.613, + "1995": 0.612, + "1996": 0.609, + "1997": 0.615, + "1998": 0.617, + "1999": 0.621, + "2000": 0.624, + "2001": 0.626, + "2002": 0.624, + "2003": 0.621, + "2004": 0.621, + "2005": 0.618, + "2006": 0.617, + "2007": 0.618, + "2008": 0.626, + "2009": 0.638, + "2010": 0.649, + "2011": 0.658, + "2012": 0.637, + "2013": 0.62, + "2014": 0.602, + "2015": 0.588, + "2016": 0.607, + "2017": 0.628, + "2018": 0.647, + "2019": 0.668, + "2020": 0.667, + "2021": 0.664 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr110", + "Region": "Guidimagha", + "1990": 0.529, + "1991": 0.531, + "1992": 0.536, + "1993": 0.537, + "1994": 0.537, + "1995": 0.536, + "1996": 0.533, + "1997": 0.538, + "1998": 0.541, + "1999": 0.543, + "2000": 0.546, + "2001": 0.549, + "2002": 0.552, + "2003": 0.556, + "2004": 0.562, + "2005": 0.565, + "2006": 0.571, + "2007": 0.578, + "2008": 0.582, + "2009": 0.589, + "2010": 0.594, + "2011": 0.599, + "2012": 0.612, + "2013": 0.625, + "2014": 0.637, + "2015": 0.65, + "2016": 0.66, + "2017": 0.671, + "2018": 0.681, + "2019": 0.693, + "2020": 0.682, + "2021": 0.679 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr101", + "Region": "Hodh Charghi", + "1990": 0.542, + "1991": 0.544, + "1992": 0.549, + "1993": 0.551, + "1994": 0.55, + "1995": 0.549, + "1996": 0.546, + "1997": 0.552, + "1998": 0.554, + "1999": 0.557, + "2000": 0.56, + "2001": 0.562, + "2002": 0.568, + "2003": 0.575, + "2004": 0.584, + "2005": 0.59, + "2006": 0.599, + "2007": 0.609, + "2008": 0.616, + "2009": 0.625, + "2010": 0.634, + "2011": 0.641, + "2012": 0.652, + "2013": 0.664, + "2014": 0.674, + "2015": 0.685, + "2016": 0.687, + "2017": 0.689, + "2018": 0.691, + "2019": 0.694, + "2020": 0.674, + "2021": 0.672 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr102", + "Region": "Hodh Gharbi", + "1990": 0.635, + "1991": 0.637, + "1992": 0.642, + "1993": 0.644, + "1994": 0.643, + "1995": 0.642, + "1996": 0.639, + "1997": 0.645, + "1998": 0.648, + "1999": 0.651, + "2000": 0.654, + "2001": 0.657, + "2002": 0.66, + "2003": 0.663, + "2004": 0.668, + "2005": 0.671, + "2006": 0.676, + "2007": 0.683, + "2008": 0.69, + "2009": 0.7, + "2010": 0.709, + "2011": 0.717, + "2012": 0.688, + "2013": 0.663, + "2014": 0.639, + "2015": 0.618, + "2016": 0.633, + "2017": 0.648, + "2018": 0.662, + "2019": 0.679, + "2020": 0.672, + "2021": 0.67 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr112", + "Region": "Inchiri", + "1990": 0.543, + "1991": 0.545, + "1992": 0.55, + "1993": 0.551, + "1994": 0.551, + "1995": 0.55, + "1996": 0.547, + "1997": 0.552, + "1998": 0.555, + "1999": 0.558, + "2000": 0.56, + "2001": 0.563, + "2002": 0.568, + "2003": 0.574, + "2004": 0.582, + "2005": 0.587, + "2006": 0.595, + "2007": 0.605, + "2008": 0.611, + "2009": 0.62, + "2010": 0.628, + "2011": 0.636, + "2012": 0.604, + "2013": 0.577, + "2014": 0.551, + "2015": 0.528, + "2016": 0.548, + "2017": 0.568, + "2018": 0.588, + "2019": 0.609, + "2020": 0.609, + "2021": 0.607 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr108", + "Region": "Nouadhibou", + "1990": 0.629, + "1991": 0.631, + "1992": 0.636, + "1993": 0.638, + "1994": 0.637, + "1995": 0.636, + "1996": 0.633, + "1997": 0.639, + "1998": 0.642, + "1999": 0.645, + "2000": 0.648, + "2001": 0.651, + "2002": 0.661, + "2003": 0.67, + "2004": 0.683, + "2005": 0.693, + "2006": 0.706, + "2007": 0.72, + "2008": 0.729, + "2009": 0.741, + "2010": 0.752, + "2011": 0.762, + "2012": 0.721, + "2013": 0.686, + "2014": 0.652, + "2015": 0.622, + "2016": 0.641, + "2017": 0.66, + "2018": 0.678, + "2019": 0.698, + "2020": 0.695, + "2021": 0.692 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr109", + "Region": "Tagant", + "1990": 0.718, + "1991": 0.72, + "1992": 0.726, + "1993": 0.728, + "1994": 0.727, + "1995": 0.726, + "1996": 0.723, + "1997": 0.729, + "1998": 0.732, + "1999": 0.736, + "2000": 0.739, + "2001": 0.742, + "2002": 0.729, + "2003": 0.715, + "2004": 0.704, + "2005": 0.69, + "2006": 0.678, + "2007": 0.668, + "2008": 0.674, + "2009": 0.684, + "2010": 0.692, + "2011": 0.699, + "2012": 0.666, + "2013": 0.637, + "2014": 0.609, + "2015": 0.585, + "2016": 0.595, + "2017": 0.605, + "2018": 0.615, + "2019": 0.626, + "2020": 0.616, + "2021": 0.614 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr111", + "Region": "Tiris-Zemmour", + "1990": 0.576, + "1991": 0.579, + "1992": 0.584, + "1993": 0.585, + "1994": 0.585, + "1995": 0.584, + "1996": 0.581, + "1997": 0.586, + "1998": 0.589, + "1999": 0.592, + "2000": 0.595, + "2001": 0.597, + "2002": 0.609, + "2003": 0.621, + "2004": 0.636, + "2005": 0.648, + "2006": 0.663, + "2007": 0.679, + "2008": 0.664, + "2009": 0.652, + "2010": 0.638, + "2011": 0.624, + "2012": 0.611, + "2013": 0.601, + "2014": 0.591, + "2015": 0.583, + "2016": 0.617, + "2017": 0.651, + "2018": 0.685, + "2019": 0.72, + "2020": 0.732, + "2021": 0.729 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr106", + "Region": "Trarza incl Nouakchott", + "1990": 0.627, + "1991": 0.63, + "1992": 0.635, + "1993": 0.637, + "1994": 0.636, + "1995": 0.635, + "1996": 0.632, + "1997": 0.638, + "1998": 0.64, + "1999": 0.644, + "2000": 0.647, + "2001": 0.649, + "2002": 0.652, + "2003": 0.655, + "2004": 0.66, + "2005": 0.662, + "2006": 0.668, + "2007": 0.674, + "2008": 0.674, + "2009": 0.677, + "2010": 0.679, + "2011": 0.68, + "2012": 0.662, + "2013": 0.648, + "2014": 0.634, + "2015": 0.622, + "2016": 0.647, + "2017": 0.672, + "2018": 0.696, + "2019": 0.722, + "2020": 0.724, + "2021": 0.722 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "National", + "GDLCODE": "MUSt", + "Region": "Total", + "1990": 0.76, + "1991": 0.771, + "1992": 0.774, + "1993": 0.773, + "1994": 0.774, + "1995": 0.777, + "1996": 0.776, + "1997": 0.779, + "1998": 0.781, + "1999": 0.79, + "2000": 0.794, + "2001": 0.798, + "2002": 0.8, + "2003": 0.804, + "2004": 0.807, + "2005": 0.81, + "2006": 0.814, + "2007": 0.817, + "2008": 0.821, + "2009": 0.825, + "2010": 0.831, + "2011": 0.834, + "2012": 0.836, + "2013": 0.842, + "2014": 0.844, + "2015": 0.846, + "2016": 0.846, + "2017": 0.844, + "2018": 0.845, + "2019": 0.848, + "2020": 0.836, + "2021": 0.824 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr101", + "Region": "North (Port Louis, Pamplemousses, Riviere du Rempart, Flacq, Moka)", + "1990": 0.76, + "1991": 0.771, + "1992": 0.774, + "1993": 0.773, + "1994": 0.774, + "1995": 0.777, + "1996": 0.776, + "1997": 0.779, + "1998": 0.781, + "1999": 0.79, + "2000": 0.794, + "2001": 0.798, + "2002": 0.8, + "2003": 0.804, + "2004": 0.807, + "2005": 0.81, + "2006": 0.814, + "2007": 0.817, + "2008": 0.821, + "2009": 0.825, + "2010": 0.831, + "2011": 0.834, + "2012": 0.836, + "2013": 0.842, + "2014": 0.844, + "2015": 0.846, + "2016": 0.846, + "2017": 0.844, + "2018": 0.845, + "2019": 0.848, + "2020": 0.836, + "2021": 0.824 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr103", + "Region": "Rodrigues", + "1990": 0.76, + "1991": 0.771, + "1992": 0.774, + "1993": 0.773, + "1994": 0.774, + "1995": 0.777, + "1996": 0.776, + "1997": 0.779, + "1998": 0.781, + "1999": 0.79, + "2000": 0.794, + "2001": 0.798, + "2002": 0.8, + "2003": 0.804, + "2004": 0.807, + "2005": 0.81, + "2006": 0.814, + "2007": 0.817, + "2008": 0.821, + "2009": 0.825, + "2010": 0.831, + "2011": 0.834, + "2012": 0.836, + "2013": 0.842, + "2014": 0.844, + "2015": 0.846, + "2016": 0.846, + "2017": 0.844, + "2018": 0.845, + "2019": 0.848, + "2020": 0.836, + "2021": 0.824 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr102", + "Region": "South (Grand Port, Savanne, Plaines Wilhems, Black River)", + "1990": 0.76, + "1991": 0.771, + "1992": 0.774, + "1993": 0.773, + "1994": 0.774, + "1995": 0.777, + "1996": 0.776, + "1997": 0.779, + "1998": 0.781, + "1999": 0.79, + "2000": 0.794, + "2001": 0.798, + "2002": 0.8, + "2003": 0.804, + "2004": 0.807, + "2005": 0.81, + "2006": 0.814, + "2007": 0.817, + "2008": 0.821, + "2009": 0.825, + "2010": 0.831, + "2011": 0.834, + "2012": 0.836, + "2013": 0.842, + "2014": 0.844, + "2015": 0.846, + "2016": 0.846, + "2017": 0.844, + "2018": 0.845, + "2019": 0.848, + "2020": 0.836, + "2021": 0.824 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "National", + "GDLCODE": "MEXt", + "Region": "Total", + "1990": 0.769, + "1991": 0.774, + "1992": 0.779, + "1993": 0.784, + "1994": 0.789, + "1995": 0.795, + "1996": 0.801, + "1997": 0.807, + "1998": 0.813, + "1999": 0.819, + "2000": 0.824, + "2001": 0.829, + "2002": 0.832, + "2003": 0.835, + "2004": 0.836, + "2005": 0.837, + "2006": 0.836, + "2007": 0.834, + "2008": 0.833, + "2009": 0.833, + "2010": 0.834, + "2011": 0.836, + "2012": 0.84, + "2013": 0.842, + "2014": 0.843, + "2015": 0.841, + "2016": 0.837, + "2017": 0.833, + "2018": 0.831, + "2019": 0.834, + "2020": 0.771, + "2021": 0.773 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr101", + "Region": "Aguascalientes", + "1990": 0.788, + "1991": 0.793, + "1992": 0.798, + "1993": 0.803, + "1994": 0.808, + "1995": 0.814, + "1996": 0.82, + "1997": 0.826, + "1998": 0.833, + "1999": 0.838, + "2000": 0.844, + "2001": 0.849, + "2002": 0.854, + "2003": 0.857, + "2004": 0.86, + "2005": 0.86, + "2006": 0.86, + "2007": 0.86, + "2008": 0.859, + "2009": 0.859, + "2010": 0.861, + "2011": 0.865, + "2012": 0.869, + "2013": 0.872, + "2014": 0.874, + "2015": 0.873, + "2016": 0.865, + "2017": 0.861, + "2018": 0.859, + "2019": 0.862, + "2020": 0.798, + "2021": 0.799 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr102", + "Region": "Baja California", + "1990": 0.806, + "1991": 0.811, + "1992": 0.817, + "1993": 0.822, + "1994": 0.827, + "1995": 0.833, + "1996": 0.839, + "1997": 0.846, + "1998": 0.852, + "1999": 0.858, + "2000": 0.864, + "2001": 0.868, + "2002": 0.872, + "2003": 0.874, + "2004": 0.876, + "2005": 0.876, + "2006": 0.875, + "2007": 0.873, + "2008": 0.872, + "2009": 0.871, + "2010": 0.872, + "2011": 0.874, + "2012": 0.876, + "2013": 0.877, + "2014": 0.877, + "2015": 0.874, + "2016": 0.866, + "2017": 0.862, + "2018": 0.86, + "2019": 0.863, + "2020": 0.798, + "2021": 0.8 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr103", + "Region": "Baja California Sur", + "1990": 0.794, + "1991": 0.799, + "1992": 0.804, + "1993": 0.809, + "1994": 0.815, + "1995": 0.821, + "1996": 0.827, + "1997": 0.833, + "1998": 0.839, + "1999": 0.845, + "2000": 0.851, + "2001": 0.855, + "2002": 0.858, + "2003": 0.86, + "2004": 0.862, + "2005": 0.861, + "2006": 0.86, + "2007": 0.858, + "2008": 0.856, + "2009": 0.855, + "2010": 0.856, + "2011": 0.856, + "2012": 0.857, + "2013": 0.857, + "2014": 0.855, + "2015": 0.851, + "2016": 0.843, + "2017": 0.839, + "2018": 0.837, + "2019": 0.84, + "2020": 0.777, + "2021": 0.778 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr104", + "Region": "Campeche", + "1990": 0.807, + "1991": 0.813, + "1992": 0.818, + "1993": 0.823, + "1994": 0.828, + "1995": 0.834, + "1996": 0.84, + "1997": 0.847, + "1998": 0.853, + "1999": 0.859, + "2000": 0.865, + "2001": 0.871, + "2002": 0.875, + "2003": 0.879, + "2004": 0.881, + "2005": 0.882, + "2006": 0.883, + "2007": 0.882, + "2008": 0.882, + "2009": 0.882, + "2010": 0.884, + "2011": 0.882, + "2012": 0.88, + "2013": 0.878, + "2014": 0.874, + "2015": 0.868, + "2016": 0.86, + "2017": 0.855, + "2018": 0.854, + "2019": 0.856, + "2020": 0.793, + "2021": 0.794 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr107", + "Region": "Chiapas", + "1990": 0.736, + "1991": 0.741, + "1992": 0.746, + "1993": 0.75, + "1994": 0.755, + "1995": 0.761, + "1996": 0.767, + "1997": 0.773, + "1998": 0.779, + "1999": 0.785, + "2000": 0.79, + "2001": 0.796, + "2002": 0.801, + "2003": 0.806, + "2004": 0.809, + "2005": 0.811, + "2006": 0.812, + "2007": 0.813, + "2008": 0.813, + "2009": 0.814, + "2010": 0.817, + "2011": 0.821, + "2012": 0.825, + "2013": 0.829, + "2014": 0.831, + "2015": 0.83, + "2016": 0.822, + "2017": 0.818, + "2018": 0.816, + "2019": 0.819, + "2020": 0.757, + "2021": 0.759 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr108", + "Region": "Chihuahua", + "1990": 0.725, + "1991": 0.73, + "1992": 0.735, + "1993": 0.74, + "1994": 0.744, + "1995": 0.75, + "1996": 0.756, + "1997": 0.762, + "1998": 0.768, + "1999": 0.773, + "2000": 0.778, + "2001": 0.788, + "2002": 0.797, + "2003": 0.806, + "2004": 0.812, + "2005": 0.818, + "2006": 0.823, + "2007": 0.827, + "2008": 0.83, + "2009": 0.835, + "2010": 0.841, + "2011": 0.838, + "2012": 0.835, + "2013": 0.832, + "2014": 0.826, + "2015": 0.819, + "2016": 0.811, + "2017": 0.807, + "2018": 0.805, + "2019": 0.808, + "2020": 0.747, + "2021": 0.748 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr105", + "Region": "Coahuila", + "1990": 0.813, + "1991": 0.818, + "1992": 0.823, + "1993": 0.828, + "1994": 0.834, + "1995": 0.84, + "1996": 0.846, + "1997": 0.853, + "1998": 0.859, + "1999": 0.865, + "2000": 0.87, + "2001": 0.872, + "2002": 0.873, + "2003": 0.872, + "2004": 0.871, + "2005": 0.868, + "2006": 0.864, + "2007": 0.86, + "2008": 0.856, + "2009": 0.852, + "2010": 0.851, + "2011": 0.852, + "2012": 0.855, + "2013": 0.857, + "2014": 0.857, + "2015": 0.854, + "2016": 0.846, + "2017": 0.842, + "2018": 0.84, + "2019": 0.843, + "2020": 0.78, + "2021": 0.781 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr106", + "Region": "Colima", + "1990": 0.758, + "1991": 0.763, + "1992": 0.768, + "1993": 0.773, + "1994": 0.778, + "1995": 0.784, + "1996": 0.79, + "1997": 0.796, + "1998": 0.802, + "1999": 0.808, + "2000": 0.813, + "2001": 0.821, + "2002": 0.828, + "2003": 0.834, + "2004": 0.839, + "2005": 0.842, + "2006": 0.844, + "2007": 0.846, + "2008": 0.848, + "2009": 0.85, + "2010": 0.854, + "2011": 0.858, + "2012": 0.862, + "2013": 0.865, + "2014": 0.867, + "2015": 0.866, + "2016": 0.858, + "2017": 0.854, + "2018": 0.852, + "2019": 0.855, + "2020": 0.791, + "2021": 0.792 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr109", + "Region": "Distrito Federal", + "1990": 0.813, + "1991": 0.819, + "1992": 0.824, + "1993": 0.829, + "1994": 0.834, + "1995": 0.84, + "1996": 0.847, + "1997": 0.853, + "1998": 0.86, + "1999": 0.866, + "2000": 0.871, + "2001": 0.874, + "2002": 0.876, + "2003": 0.876, + "2004": 0.876, + "2005": 0.874, + "2006": 0.871, + "2007": 0.868, + "2008": 0.865, + "2009": 0.862, + "2010": 0.861, + "2011": 0.86, + "2012": 0.86, + "2013": 0.859, + "2014": 0.856, + "2015": 0.851, + "2016": 0.843, + "2017": 0.839, + "2018": 0.837, + "2019": 0.84, + "2020": 0.777, + "2021": 0.778 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr110", + "Region": "Durango", + "1990": 0.761, + "1991": 0.766, + "1992": 0.77, + "1993": 0.775, + "1994": 0.781, + "1995": 0.786, + "1996": 0.792, + "1997": 0.798, + "1998": 0.804, + "1999": 0.81, + "2000": 0.816, + "2001": 0.819, + "2002": 0.822, + "2003": 0.824, + "2004": 0.824, + "2005": 0.823, + "2006": 0.822, + "2007": 0.82, + "2008": 0.817, + "2009": 0.816, + "2010": 0.816, + "2011": 0.821, + "2012": 0.826, + "2013": 0.831, + "2014": 0.834, + "2015": 0.834, + "2016": 0.826, + "2017": 0.822, + "2018": 0.82, + "2019": 0.823, + "2020": 0.761, + "2021": 0.762 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr111", + "Region": "Guanajuato", + "1990": 0.779, + "1991": 0.784, + "1992": 0.789, + "1993": 0.794, + "1994": 0.799, + "1995": 0.805, + "1996": 0.811, + "1997": 0.817, + "1998": 0.823, + "1999": 0.829, + "2000": 0.835, + "2001": 0.84, + "2002": 0.844, + "2003": 0.847, + "2004": 0.849, + "2005": 0.849, + "2006": 0.849, + "2007": 0.848, + "2008": 0.847, + "2009": 0.847, + "2010": 0.848, + "2011": 0.849, + "2012": 0.85, + "2013": 0.851, + "2014": 0.85, + "2015": 0.847, + "2016": 0.839, + "2017": 0.834, + "2018": 0.833, + "2019": 0.835, + "2020": 0.773, + "2021": 0.774 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr112", + "Region": "Guerrero", + "1990": 0.738, + "1991": 0.743, + "1992": 0.748, + "1993": 0.753, + "1994": 0.758, + "1995": 0.763, + "1996": 0.769, + "1997": 0.775, + "1998": 0.781, + "1999": 0.787, + "2000": 0.792, + "2001": 0.794, + "2002": 0.796, + "2003": 0.796, + "2004": 0.795, + "2005": 0.793, + "2006": 0.791, + "2007": 0.787, + "2008": 0.784, + "2009": 0.782, + "2010": 0.781, + "2011": 0.789, + "2012": 0.797, + "2013": 0.805, + "2014": 0.811, + "2015": 0.814, + "2016": 0.807, + "2017": 0.802, + "2018": 0.801, + "2019": 0.803, + "2020": 0.743, + "2021": 0.744 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr113", + "Region": "Hidalgo", + "1990": 0.762, + "1991": 0.767, + "1992": 0.772, + "1993": 0.777, + "1994": 0.782, + "1995": 0.788, + "1996": 0.794, + "1997": 0.8, + "1998": 0.806, + "1999": 0.812, + "2000": 0.817, + "2001": 0.824, + "2002": 0.83, + "2003": 0.835, + "2004": 0.839, + "2005": 0.842, + "2006": 0.844, + "2007": 0.845, + "2008": 0.846, + "2009": 0.847, + "2010": 0.851, + "2011": 0.85, + "2012": 0.85, + "2013": 0.849, + "2014": 0.847, + "2015": 0.842, + "2016": 0.834, + "2017": 0.83, + "2018": 0.828, + "2019": 0.831, + "2020": 0.768, + "2021": 0.77 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr114", + "Region": "Jalisco", + "1990": 0.79, + "1991": 0.795, + "1992": 0.8, + "1993": 0.805, + "1994": 0.811, + "1995": 0.816, + "1996": 0.822, + "1997": 0.829, + "1998": 0.835, + "1999": 0.841, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.857, + "2004": 0.858, + "2005": 0.858, + "2006": 0.857, + "2007": 0.855, + "2008": 0.853, + "2009": 0.853, + "2010": 0.854, + "2011": 0.854, + "2012": 0.855, + "2013": 0.855, + "2014": 0.854, + "2015": 0.85, + "2016": 0.842, + "2017": 0.838, + "2018": 0.836, + "2019": 0.839, + "2020": 0.776, + "2021": 0.777 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr115", + "Region": "Mexico", + "1990": 0.78, + "1991": 0.785, + "1992": 0.79, + "1993": 0.795, + "1994": 0.8, + "1995": 0.806, + "1996": 0.812, + "1997": 0.819, + "1998": 0.825, + "1999": 0.831, + "2000": 0.836, + "2001": 0.84, + "2002": 0.843, + "2003": 0.845, + "2004": 0.846, + "2005": 0.845, + "2006": 0.844, + "2007": 0.842, + "2008": 0.84, + "2009": 0.839, + "2010": 0.84, + "2011": 0.841, + "2012": 0.843, + "2013": 0.844, + "2014": 0.843, + "2015": 0.84, + "2016": 0.832, + "2017": 0.828, + "2018": 0.826, + "2019": 0.829, + "2020": 0.767, + "2021": 0.768 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr116", + "Region": "Michoacan de Ocampo", + "1990": 0.751, + "1991": 0.756, + "1992": 0.761, + "1993": 0.766, + "1994": 0.771, + "1995": 0.776, + "1996": 0.782, + "1997": 0.788, + "1998": 0.794, + "1999": 0.8, + "2000": 0.805, + "2001": 0.813, + "2002": 0.82, + "2003": 0.826, + "2004": 0.831, + "2005": 0.834, + "2006": 0.837, + "2007": 0.839, + "2008": 0.84, + "2009": 0.843, + "2010": 0.847, + "2011": 0.848, + "2012": 0.85, + "2013": 0.85, + "2014": 0.849, + "2015": 0.846, + "2016": 0.838, + "2017": 0.834, + "2018": 0.832, + "2019": 0.835, + "2020": 0.772, + "2021": 0.773 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr117", + "Region": "Morelos", + "1990": 0.778, + "1991": 0.783, + "1992": 0.788, + "1993": 0.793, + "1994": 0.798, + "1995": 0.804, + "1996": 0.81, + "1997": 0.816, + "1998": 0.823, + "1999": 0.828, + "2000": 0.834, + "2001": 0.84, + "2002": 0.846, + "2003": 0.851, + "2004": 0.854, + "2005": 0.856, + "2006": 0.857, + "2007": 0.858, + "2008": 0.858, + "2009": 0.859, + "2010": 0.862, + "2011": 0.863, + "2012": 0.864, + "2013": 0.864, + "2014": 0.863, + "2015": 0.859, + "2016": 0.851, + "2017": 0.847, + "2018": 0.845, + "2019": 0.848, + "2020": 0.785, + "2021": 0.786 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr118", + "Region": "Nayarit", + "1990": 0.772, + "1991": 0.777, + "1992": 0.782, + "1993": 0.787, + "1994": 0.792, + "1995": 0.797, + "1996": 0.803, + "1997": 0.81, + "1998": 0.816, + "1999": 0.822, + "2000": 0.827, + "2001": 0.828, + "2002": 0.828, + "2003": 0.828, + "2004": 0.826, + "2005": 0.822, + "2006": 0.818, + "2007": 0.814, + "2008": 0.809, + "2009": 0.805, + "2010": 0.803, + "2011": 0.809, + "2012": 0.815, + "2013": 0.82, + "2014": 0.824, + "2015": 0.825, + "2016": 0.817, + "2017": 0.813, + "2018": 0.811, + "2019": 0.814, + "2020": 0.753, + "2021": 0.754 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr119", + "Region": "Nuevo Leon", + "1990": 0.82, + "1991": 0.825, + "1992": 0.831, + "1993": 0.836, + "1994": 0.841, + "1995": 0.847, + "1996": 0.853, + "1997": 0.86, + "1998": 0.866, + "1999": 0.873, + "2000": 0.878, + "2001": 0.88, + "2002": 0.881, + "2003": 0.881, + "2004": 0.88, + "2005": 0.878, + "2006": 0.874, + "2007": 0.87, + "2008": 0.866, + "2009": 0.863, + "2010": 0.862, + "2011": 0.862, + "2012": 0.862, + "2013": 0.861, + "2014": 0.859, + "2015": 0.854, + "2016": 0.846, + "2017": 0.842, + "2018": 0.84, + "2019": 0.843, + "2020": 0.78, + "2021": 0.781 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr120", + "Region": "Oaxaca", + "1990": 0.742, + "1991": 0.747, + "1992": 0.751, + "1993": 0.756, + "1994": 0.761, + "1995": 0.767, + "1996": 0.773, + "1997": 0.779, + "1998": 0.785, + "1999": 0.79, + "2000": 0.796, + "2001": 0.802, + "2002": 0.808, + "2003": 0.813, + "2004": 0.817, + "2005": 0.819, + "2006": 0.821, + "2007": 0.821, + "2008": 0.822, + "2009": 0.824, + "2010": 0.827, + "2011": 0.83, + "2012": 0.834, + "2013": 0.837, + "2014": 0.839, + "2015": 0.838, + "2016": 0.83, + "2017": 0.826, + "2018": 0.824, + "2019": 0.827, + "2020": 0.764, + "2021": 0.766 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr121", + "Region": "Puebla", + "1990": 0.726, + "1991": 0.73, + "1992": 0.735, + "1993": 0.74, + "1994": 0.745, + "1995": 0.75, + "1996": 0.756, + "1997": 0.762, + "1998": 0.768, + "1999": 0.774, + "2000": 0.779, + "2001": 0.787, + "2002": 0.794, + "2003": 0.801, + "2004": 0.806, + "2005": 0.81, + "2006": 0.813, + "2007": 0.815, + "2008": 0.818, + "2009": 0.821, + "2010": 0.825, + "2011": 0.827, + "2012": 0.829, + "2013": 0.831, + "2014": 0.831, + "2015": 0.828, + "2016": 0.821, + "2017": 0.817, + "2018": 0.815, + "2019": 0.817, + "2020": 0.756, + "2021": 0.757 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr122", + "Region": "Queretaro", + "1990": 0.766, + "1991": 0.771, + "1992": 0.776, + "1993": 0.781, + "1994": 0.786, + "1995": 0.791, + "1996": 0.797, + "1997": 0.804, + "1998": 0.81, + "1999": 0.816, + "2000": 0.821, + "2001": 0.828, + "2002": 0.833, + "2003": 0.838, + "2004": 0.842, + "2005": 0.844, + "2006": 0.845, + "2007": 0.846, + "2008": 0.847, + "2009": 0.848, + "2010": 0.851, + "2011": 0.853, + "2012": 0.855, + "2013": 0.857, + "2014": 0.856, + "2015": 0.854, + "2016": 0.846, + "2017": 0.841, + "2018": 0.839, + "2019": 0.842, + "2020": 0.779, + "2021": 0.78 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr123", + "Region": "Quintana Roo", + "1990": 0.767, + "1991": 0.772, + "1992": 0.777, + "1993": 0.782, + "1994": 0.787, + "1995": 0.793, + "1996": 0.799, + "1997": 0.805, + "1998": 0.811, + "1999": 0.817, + "2000": 0.822, + "2001": 0.83, + "2002": 0.836, + "2003": 0.841, + "2004": 0.845, + "2005": 0.848, + "2006": 0.85, + "2007": 0.851, + "2008": 0.852, + "2009": 0.854, + "2010": 0.857, + "2011": 0.856, + "2012": 0.855, + "2013": 0.854, + "2014": 0.851, + "2015": 0.845, + "2016": 0.837, + "2017": 0.833, + "2018": 0.831, + "2019": 0.834, + "2020": 0.772, + "2021": 0.773 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr124", + "Region": "San Luis Potosi", + "1990": 0.777, + "1991": 0.782, + "1992": 0.787, + "1993": 0.792, + "1994": 0.798, + "1995": 0.803, + "1996": 0.809, + "1997": 0.816, + "1998": 0.822, + "1999": 0.828, + "2000": 0.833, + "2001": 0.837, + "2002": 0.841, + "2003": 0.843, + "2004": 0.844, + "2005": 0.844, + "2006": 0.843, + "2007": 0.841, + "2008": 0.839, + "2009": 0.838, + "2010": 0.839, + "2011": 0.843, + "2012": 0.847, + "2013": 0.851, + "2014": 0.853, + "2015": 0.852, + "2016": 0.844, + "2017": 0.84, + "2018": 0.838, + "2019": 0.841, + "2020": 0.778, + "2021": 0.779 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr125", + "Region": "Sinaloa", + "1990": 0.812, + "1991": 0.817, + "1992": 0.822, + "1993": 0.827, + "1994": 0.833, + "1995": 0.839, + "1996": 0.845, + "1997": 0.851, + "1998": 0.858, + "1999": 0.864, + "2000": 0.869, + "2001": 0.873, + "2002": 0.877, + "2003": 0.879, + "2004": 0.88, + "2005": 0.879, + "2006": 0.878, + "2007": 0.876, + "2008": 0.874, + "2009": 0.873, + "2010": 0.873, + "2011": 0.874, + "2012": 0.875, + "2013": 0.875, + "2014": 0.874, + "2015": 0.87, + "2016": 0.862, + "2017": 0.858, + "2018": 0.856, + "2019": 0.859, + "2020": 0.795, + "2021": 0.796 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr126", + "Region": "Sonora", + "1990": 0.825, + "1991": 0.831, + "1992": 0.836, + "1993": 0.841, + "1994": 0.847, + "1995": 0.853, + "1996": 0.859, + "1997": 0.865, + "1998": 0.872, + "1999": 0.878, + "2000": 0.884, + "2001": 0.885, + "2002": 0.885, + "2003": 0.884, + "2004": 0.882, + "2005": 0.879, + "2006": 0.874, + "2007": 0.87, + "2008": 0.865, + "2009": 0.861, + "2010": 0.859, + "2011": 0.857, + "2012": 0.856, + "2013": 0.855, + "2014": 0.852, + "2015": 0.846, + "2016": 0.838, + "2017": 0.834, + "2018": 0.832, + "2019": 0.835, + "2020": 0.772, + "2021": 0.773 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr127", + "Region": "Tabasco", + "1990": 0.804, + "1991": 0.81, + "1992": 0.815, + "1993": 0.82, + "1994": 0.825, + "1995": 0.831, + "1996": 0.837, + "1997": 0.844, + "1998": 0.85, + "1999": 0.856, + "2000": 0.861, + "2001": 0.867, + "2002": 0.871, + "2003": 0.874, + "2004": 0.875, + "2005": 0.876, + "2006": 0.875, + "2007": 0.874, + "2008": 0.873, + "2009": 0.873, + "2010": 0.874, + "2011": 0.874, + "2012": 0.875, + "2013": 0.875, + "2014": 0.873, + "2015": 0.868, + "2016": 0.86, + "2017": 0.856, + "2018": 0.854, + "2019": 0.857, + "2020": 0.793, + "2021": 0.794 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr128", + "Region": "Tamaulipas", + "1990": 0.79, + "1991": 0.795, + "1992": 0.8, + "1993": 0.805, + "1994": 0.811, + "1995": 0.816, + "1996": 0.823, + "1997": 0.829, + "1998": 0.835, + "1999": 0.841, + "2000": 0.847, + "2001": 0.852, + "2002": 0.856, + "2003": 0.858, + "2004": 0.86, + "2005": 0.861, + "2006": 0.86, + "2007": 0.859, + "2008": 0.858, + "2009": 0.858, + "2010": 0.859, + "2011": 0.861, + "2012": 0.863, + "2013": 0.865, + "2014": 0.865, + "2015": 0.862, + "2016": 0.854, + "2017": 0.85, + "2018": 0.848, + "2019": 0.851, + "2020": 0.787, + "2021": 0.788 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr129", + "Region": "Tlaxcala", + "1990": 0.742, + "1991": 0.747, + "1992": 0.752, + "1993": 0.756, + "1994": 0.761, + "1995": 0.767, + "1996": 0.773, + "1997": 0.779, + "1998": 0.785, + "1999": 0.791, + "2000": 0.796, + "2001": 0.803, + "2002": 0.809, + "2003": 0.815, + "2004": 0.819, + "2005": 0.822, + "2006": 0.824, + "2007": 0.825, + "2008": 0.826, + "2009": 0.828, + "2010": 0.832, + "2011": 0.838, + "2012": 0.845, + "2013": 0.851, + "2014": 0.855, + "2015": 0.857, + "2016": 0.849, + "2017": 0.844, + "2018": 0.843, + "2019": 0.845, + "2020": 0.782, + "2021": 0.783 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr130", + "Region": "Veracruz", + "1990": 0.751, + "1991": 0.756, + "1992": 0.761, + "1993": 0.766, + "1994": 0.771, + "1995": 0.777, + "1996": 0.783, + "1997": 0.789, + "1998": 0.795, + "1999": 0.801, + "2000": 0.806, + "2001": 0.812, + "2002": 0.816, + "2003": 0.82, + "2004": 0.823, + "2005": 0.824, + "2006": 0.825, + "2007": 0.825, + "2008": 0.825, + "2009": 0.825, + "2010": 0.828, + "2011": 0.832, + "2012": 0.837, + "2013": 0.841, + "2014": 0.844, + "2015": 0.844, + "2016": 0.836, + "2017": 0.832, + "2018": 0.83, + "2019": 0.833, + "2020": 0.77, + "2021": 0.772 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr131", + "Region": "Yucatan", + "1990": 0.782, + "1991": 0.787, + "1992": 0.792, + "1993": 0.797, + "1994": 0.802, + "1995": 0.808, + "1996": 0.814, + "1997": 0.821, + "1998": 0.827, + "1999": 0.833, + "2000": 0.838, + "2001": 0.842, + "2002": 0.845, + "2003": 0.847, + "2004": 0.847, + "2005": 0.847, + "2006": 0.845, + "2007": 0.843, + "2008": 0.841, + "2009": 0.84, + "2010": 0.84, + "2011": 0.844, + "2012": 0.849, + "2013": 0.852, + "2014": 0.855, + "2015": 0.854, + "2016": 0.846, + "2017": 0.842, + "2018": 0.84, + "2019": 0.843, + "2020": 0.78, + "2021": 0.781 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr132", + "Region": "Zacatecas", + "1990": 0.77, + "1991": 0.775, + "1992": 0.78, + "1993": 0.785, + "1994": 0.79, + "1995": 0.796, + "1996": 0.802, + "1997": 0.808, + "1998": 0.814, + "1999": 0.82, + "2000": 0.826, + "2001": 0.832, + "2002": 0.838, + "2003": 0.842, + "2004": 0.846, + "2005": 0.848, + "2006": 0.849, + "2007": 0.849, + "2008": 0.85, + "2009": 0.851, + "2010": 0.854, + "2011": 0.853, + "2012": 0.852, + "2013": 0.851, + "2014": 0.849, + "2015": 0.843, + "2016": 0.835, + "2017": 0.831, + "2018": 0.829, + "2019": 0.832, + "2020": 0.77, + "2021": 0.771 + }, + { + "Country": "Micronesia (Federated States of)", + "Continent": "Asia/Pacific", + "ISO_Code": "FSM", + "Level": "National", + "GDLCODE": "FSMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.766, + "2001": 0.777, + "2002": 0.761, + "2003": 0.781, + "2004": 0.782, + "2005": 0.783, + "2006": 0.786, + "2007": 0.786, + "2008": 0.787, + "2009": 0.786, + "2010": 0.788, + "2011": 0.79, + "2012": 0.791, + "2013": 0.792, + "2014": 0.793, + "2015": 0.791, + "2016": 0.794, + "2017": 0.792, + "2018": 0.79, + "2019": 0.786, + "2020": 0.78, + "2021": 0.78 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "National", + "GDLCODE": "MDAt", + "Region": "Total", + "1990": 0.739, + "1991": 0.723, + "1992": 0.722, + "1993": 0.716, + "1994": 0.693, + "1995": 0.694, + "1996": 0.681, + "1997": 0.695, + "1998": 0.7, + "1999": 0.701, + "2000": 0.714, + "2001": 0.72, + "2002": 0.722, + "2003": 0.73, + "2004": 0.736, + "2005": 0.741, + "2006": 0.746, + "2007": 0.753, + "2008": 0.76, + "2009": 0.763, + "2010": 0.759, + "2011": 0.757, + "2012": 0.756, + "2013": 0.755, + "2014": 0.754, + "2015": 0.758, + "2016": 0.768, + "2017": 0.777, + "2018": 0.777, + "2019": 0.784, + "2020": 0.772, + "2021": 0.751 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr102", + "Region": "Center", + "1990": 0.737, + "1991": 0.72, + "1992": 0.72, + "1993": 0.714, + "1994": 0.691, + "1995": 0.691, + "1996": 0.678, + "1997": 0.693, + "1998": 0.698, + "1999": 0.699, + "2000": 0.712, + "2001": 0.717, + "2002": 0.72, + "2003": 0.727, + "2004": 0.734, + "2005": 0.739, + "2006": 0.743, + "2007": 0.749, + "2008": 0.755, + "2009": 0.757, + "2010": 0.753, + "2011": 0.75, + "2012": 0.749, + "2013": 0.748, + "2014": 0.747, + "2015": 0.75, + "2016": 0.761, + "2017": 0.77, + "2018": 0.769, + "2019": 0.776, + "2020": 0.764, + "2021": 0.744 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr104", + "Region": "Chisinau", + "1990": 0.758, + "1991": 0.741, + "1992": 0.74, + "1993": 0.734, + "1994": 0.711, + "1995": 0.711, + "1996": 0.698, + "1997": 0.712, + "1998": 0.718, + "1999": 0.719, + "2000": 0.732, + "2001": 0.738, + "2002": 0.74, + "2003": 0.748, + "2004": 0.755, + "2005": 0.759, + "2006": 0.762, + "2007": 0.767, + "2008": 0.772, + "2009": 0.773, + "2010": 0.768, + "2011": 0.763, + "2012": 0.76, + "2013": 0.76, + "2014": 0.758, + "2015": 0.762, + "2016": 0.772, + "2017": 0.781, + "2018": 0.781, + "2019": 0.788, + "2020": 0.776, + "2021": 0.756 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr101", + "Region": "North", + "1990": 0.751, + "1991": 0.734, + "1992": 0.734, + "1993": 0.727, + "1994": 0.704, + "1995": 0.705, + "1996": 0.692, + "1997": 0.706, + "1998": 0.711, + "1999": 0.712, + "2000": 0.725, + "2001": 0.731, + "2002": 0.734, + "2003": 0.741, + "2004": 0.748, + "2005": 0.753, + "2006": 0.755, + "2007": 0.76, + "2008": 0.765, + "2009": 0.766, + "2010": 0.76, + "2011": 0.756, + "2012": 0.753, + "2013": 0.752, + "2014": 0.751, + "2015": 0.754, + "2016": 0.765, + "2017": 0.774, + "2018": 0.774, + "2019": 0.78, + "2020": 0.769, + "2021": 0.748 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr103", + "Region": "South", + "1990": 0.711, + "1991": 0.695, + "1992": 0.695, + "1993": 0.689, + "1994": 0.666, + "1995": 0.667, + "1996": 0.654, + "1997": 0.668, + "1998": 0.673, + "1999": 0.674, + "2000": 0.687, + "2001": 0.692, + "2002": 0.694, + "2003": 0.702, + "2004": 0.708, + "2005": 0.713, + "2006": 0.724, + "2007": 0.737, + "2008": 0.75, + "2009": 0.759, + "2010": 0.762, + "2011": 0.765, + "2012": 0.77, + "2013": 0.77, + "2014": 0.769, + "2015": 0.772, + "2016": 0.782, + "2017": 0.792, + "2018": 0.791, + "2019": 0.798, + "2020": 0.786, + "2021": 0.766 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "National", + "GDLCODE": "MNGt", + "Region": "Total", + "1990": 0.596, + "1991": 0.604, + "1992": 0.61, + "1993": 0.616, + "1994": 0.622, + "1995": 0.625, + "1996": 0.62, + "1997": 0.628, + "1998": 0.643, + "1999": 0.654, + "2000": 0.66, + "2001": 0.666, + "2002": 0.67, + "2003": 0.68, + "2004": 0.689, + "2005": 0.69, + "2006": 0.7, + "2007": 0.707, + "2008": 0.714, + "2009": 0.719, + "2010": 0.726, + "2011": 0.73, + "2012": 0.74, + "2013": 0.747, + "2014": 0.755, + "2015": 0.762, + "2016": 0.767, + "2017": 0.773, + "2018": 0.788, + "2019": 0.797, + "2020": 0.802, + "2021": 0.784 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr103", + "Region": "Central (Dornogovi, Dundgovi, Umnugovi, Selenge, Tuv, Darkhan-Uul, Govisumber)", + "1990": 0.629, + "1991": 0.636, + "1992": 0.643, + "1993": 0.649, + "1994": 0.655, + "1995": 0.658, + "1996": 0.653, + "1997": 0.662, + "1998": 0.677, + "1999": 0.689, + "2000": 0.695, + "2001": 0.701, + "2002": 0.705, + "2003": 0.716, + "2004": 0.725, + "2005": 0.726, + "2006": 0.735, + "2007": 0.741, + "2008": 0.747, + "2009": 0.752, + "2010": 0.757, + "2011": 0.76, + "2012": 0.769, + "2013": 0.776, + "2014": 0.782, + "2015": 0.788, + "2016": 0.793, + "2017": 0.798, + "2018": 0.812, + "2019": 0.821, + "2020": 0.826, + "2021": 0.808 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr104", + "Region": "Eastern (Dornod, Sukhbaatar, Khentii)", + "1990": 0.601, + "1991": 0.608, + "1992": 0.614, + "1993": 0.621, + "1994": 0.626, + "1995": 0.629, + "1996": 0.625, + "1997": 0.633, + "1998": 0.647, + "1999": 0.659, + "2000": 0.664, + "2001": 0.671, + "2002": 0.674, + "2003": 0.685, + "2004": 0.694, + "2005": 0.695, + "2006": 0.702, + "2007": 0.706, + "2008": 0.709, + "2009": 0.712, + "2010": 0.716, + "2011": 0.722, + "2012": 0.735, + "2013": 0.745, + "2014": 0.754, + "2015": 0.763, + "2016": 0.771, + "2017": 0.779, + "2018": 0.796, + "2019": 0.806, + "2020": 0.811, + "2021": 0.793 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr102", + "Region": "Khangai (Arkhangai, Bayankhongor, Bulgan, Uvurkhangai, Khuvsgul, Orkhon)", + "1990": 0.592, + "1991": 0.599, + "1992": 0.605, + "1993": 0.612, + "1994": 0.617, + "1995": 0.62, + "1996": 0.616, + "1997": 0.623, + "1998": 0.638, + "1999": 0.65, + "2000": 0.655, + "2001": 0.661, + "2002": 0.665, + "2003": 0.675, + "2004": 0.684, + "2005": 0.686, + "2006": 0.684, + "2007": 0.68, + "2008": 0.675, + "2009": 0.67, + "2010": 0.666, + "2011": 0.672, + "2012": 0.685, + "2013": 0.695, + "2014": 0.705, + "2015": 0.714, + "2016": 0.722, + "2017": 0.731, + "2018": 0.748, + "2019": 0.757, + "2020": 0.762, + "2021": 0.744 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr105", + "Region": "Ulaanbaatar", + "1990": 0.638, + "1991": 0.646, + "1992": 0.653, + "1993": 0.659, + "1994": 0.665, + "1995": 0.668, + "1996": 0.663, + "1997": 0.671, + "1998": 0.687, + "1999": 0.699, + "2000": 0.705, + "2001": 0.711, + "2002": 0.715, + "2003": 0.726, + "2004": 0.736, + "2005": 0.737, + "2006": 0.749, + "2007": 0.759, + "2008": 0.768, + "2009": 0.776, + "2010": 0.785, + "2011": 0.783, + "2012": 0.788, + "2013": 0.79, + "2014": 0.791, + "2015": 0.793, + "2016": 0.793, + "2017": 0.793, + "2018": 0.802, + "2019": 0.812, + "2020": 0.817, + "2021": 0.799 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr101", + "Region": "Western (Bayan-Ulgii, Govi-Altai, Zavkhan, Uvs, Khovd)", + "1990": 0.532, + "1991": 0.538, + "1992": 0.544, + "1993": 0.55, + "1994": 0.555, + "1995": 0.558, + "1996": 0.554, + "1997": 0.561, + "1998": 0.574, + "1999": 0.585, + "2000": 0.59, + "2001": 0.596, + "2002": 0.599, + "2003": 0.609, + "2004": 0.618, + "2005": 0.619, + "2006": 0.638, + "2007": 0.654, + "2008": 0.67, + "2009": 0.685, + "2010": 0.701, + "2011": 0.705, + "2012": 0.715, + "2013": 0.723, + "2014": 0.73, + "2015": 0.737, + "2016": 0.743, + "2017": 0.749, + "2018": 0.764, + "2019": 0.773, + "2020": 0.778, + "2021": 0.76 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "National", + "GDLCODE": "MNEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.832, + "2007": 0.839, + "2008": 0.851, + "2009": 0.85, + "2010": 0.864, + "2011": 0.863, + "2012": 0.867, + "2013": 0.871, + "2014": 0.873, + "2015": 0.873, + "2016": 0.873, + "2017": 0.876, + "2018": 0.879, + "2019": 0.878, + "2020": 0.866, + "2021": 0.867 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr102", + "Region": "Centre", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.832, + "2007": 0.839, + "2008": 0.851, + "2009": 0.85, + "2010": 0.864, + "2011": 0.863, + "2012": 0.867, + "2013": 0.871, + "2014": 0.873, + "2015": 0.873, + "2016": 0.873, + "2017": 0.876, + "2018": 0.879, + "2019": 0.878, + "2020": 0.866, + "2021": 0.867 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr101", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.832, + "2007": 0.839, + "2008": 0.851, + "2009": 0.85, + "2010": 0.864, + "2011": 0.863, + "2012": 0.867, + "2013": 0.871, + "2014": 0.873, + "2015": 0.873, + "2016": 0.873, + "2017": 0.876, + "2018": 0.879, + "2019": 0.878, + "2020": 0.866, + "2021": 0.867 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr103", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.832, + "2007": 0.839, + "2008": 0.851, + "2009": 0.85, + "2010": 0.864, + "2011": 0.863, + "2012": 0.867, + "2013": 0.871, + "2014": 0.873, + "2015": 0.873, + "2016": 0.873, + "2017": 0.876, + "2018": 0.879, + "2019": 0.878, + "2020": 0.866, + "2021": 0.867 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "National", + "GDLCODE": "MARt", + "Region": "Total", + "1990": 0.653, + "1991": 0.661, + "1992": 0.668, + "1993": 0.675, + "1994": 0.682, + "1995": 0.688, + "1996": 0.696, + "1997": 0.702, + "1998": 0.708, + "1999": 0.714, + "2000": 0.72, + "2001": 0.726, + "2002": 0.731, + "2003": 0.737, + "2004": 0.742, + "2005": 0.749, + "2006": 0.756, + "2007": 0.763, + "2008": 0.77, + "2009": 0.776, + "2010": 0.782, + "2011": 0.789, + "2012": 0.795, + "2013": 0.802, + "2014": 0.808, + "2015": 0.814, + "2016": 0.82, + "2017": 0.826, + "2018": 0.831, + "2019": 0.835, + "2020": 0.83, + "2021": 0.831 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr103", + "Region": "Centre", + "1990": 0.701, + "1991": 0.709, + "1992": 0.717, + "1993": 0.721, + "1994": 0.725, + "1995": 0.729, + "1996": 0.733, + "1997": 0.737, + "1998": 0.74, + "1999": 0.743, + "2000": 0.746, + "2001": 0.749, + "2002": 0.752, + "2003": 0.755, + "2004": 0.759, + "2005": 0.767, + "2006": 0.774, + "2007": 0.781, + "2008": 0.788, + "2009": 0.794, + "2010": 0.8, + "2011": 0.807, + "2012": 0.813, + "2013": 0.82, + "2014": 0.827, + "2015": 0.833, + "2016": 0.839, + "2017": 0.844, + "2018": 0.849, + "2019": 0.854, + "2020": 0.848, + "2021": 0.85 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr102", + "Region": "Centre north", + "1990": 0.631, + "1991": 0.639, + "1992": 0.646, + "1993": 0.654, + "1994": 0.663, + "1995": 0.67, + "1996": 0.679, + "1997": 0.686, + "1998": 0.693, + "1999": 0.7, + "2000": 0.707, + "2001": 0.715, + "2002": 0.722, + "2003": 0.728, + "2004": 0.733, + "2005": 0.74, + "2006": 0.747, + "2007": 0.754, + "2008": 0.761, + "2009": 0.767, + "2010": 0.773, + "2011": 0.78, + "2012": 0.786, + "2013": 0.793, + "2014": 0.799, + "2015": 0.805, + "2016": 0.81, + "2017": 0.816, + "2018": 0.821, + "2019": 0.825, + "2020": 0.82, + "2021": 0.822 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr105", + "Region": "Centre south", + "1990": 0.677, + "1991": 0.684, + "1992": 0.692, + "1993": 0.695, + "1994": 0.699, + "1995": 0.701, + "1996": 0.705, + "1997": 0.708, + "1998": 0.71, + "1999": 0.712, + "2000": 0.715, + "2001": 0.717, + "2002": 0.719, + "2003": 0.721, + "2004": 0.726, + "2005": 0.733, + "2006": 0.74, + "2007": 0.747, + "2008": 0.754, + "2009": 0.76, + "2010": 0.765, + "2011": 0.772, + "2012": 0.778, + "2013": 0.785, + "2014": 0.791, + "2015": 0.797, + "2016": 0.803, + "2017": 0.808, + "2018": 0.813, + "2019": 0.818, + "2020": 0.812, + "2021": 0.814 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr104", + "Region": "Eastern", + "1990": 0.674, + "1991": 0.682, + "1992": 0.689, + "1993": 0.695, + "1994": 0.701, + "1995": 0.705, + "1996": 0.711, + "1997": 0.716, + "1998": 0.72, + "1999": 0.724, + "2000": 0.728, + "2001": 0.733, + "2002": 0.737, + "2003": 0.741, + "2004": 0.746, + "2005": 0.753, + "2006": 0.76, + "2007": 0.767, + "2008": 0.774, + "2009": 0.78, + "2010": 0.786, + "2011": 0.793, + "2012": 0.799, + "2013": 0.806, + "2014": 0.812, + "2015": 0.818, + "2016": 0.824, + "2017": 0.829, + "2018": 0.835, + "2019": 0.839, + "2020": 0.834, + "2021": 0.835 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr101", + "Region": "North west", + "1990": 0.63, + "1991": 0.638, + "1992": 0.645, + "1993": 0.654, + "1994": 0.664, + "1995": 0.672, + "1996": 0.682, + "1997": 0.691, + "1998": 0.699, + "1999": 0.707, + "2000": 0.715, + "2001": 0.724, + "2002": 0.732, + "2003": 0.74, + "2004": 0.745, + "2005": 0.752, + "2006": 0.758, + "2007": 0.766, + "2008": 0.773, + "2009": 0.779, + "2010": 0.785, + "2011": 0.791, + "2012": 0.798, + "2013": 0.805, + "2014": 0.811, + "2015": 0.817, + "2016": 0.822, + "2017": 0.828, + "2018": 0.833, + "2019": 0.838, + "2020": 0.832, + "2021": 0.834 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr107", + "Region": "South", + "1990": 0.605, + "1991": 0.612, + "1992": 0.619, + "1993": 0.628, + "1994": 0.637, + "1995": 0.646, + "1996": 0.655, + "1997": 0.663, + "1998": 0.672, + "1999": 0.68, + "2000": 0.688, + "2001": 0.696, + "2002": 0.704, + "2003": 0.711, + "2004": 0.716, + "2005": 0.723, + "2006": 0.73, + "2007": 0.737, + "2008": 0.743, + "2009": 0.749, + "2010": 0.755, + "2011": 0.762, + "2012": 0.768, + "2013": 0.774, + "2014": 0.781, + "2015": 0.786, + "2016": 0.792, + "2017": 0.798, + "2018": 0.802, + "2019": 0.807, + "2020": 0.801, + "2021": 0.803 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr106", + "Region": "Tensift", + "1990": 0.651, + "1991": 0.659, + "1992": 0.666, + "1993": 0.674, + "1994": 0.682, + "1995": 0.689, + "1996": 0.698, + "1997": 0.705, + "1998": 0.712, + "1999": 0.719, + "2000": 0.726, + "2001": 0.733, + "2002": 0.739, + "2003": 0.746, + "2004": 0.751, + "2005": 0.758, + "2006": 0.765, + "2007": 0.772, + "2008": 0.779, + "2009": 0.786, + "2010": 0.791, + "2011": 0.798, + "2012": 0.805, + "2013": 0.811, + "2014": 0.818, + "2015": 0.824, + "2016": 0.829, + "2017": 0.835, + "2018": 0.84, + "2019": 0.845, + "2020": 0.839, + "2021": 0.841 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "National", + "GDLCODE": "MOZt", + "Region": "Total", + "1990": 0.376, + "1991": 0.379, + "1992": 0.384, + "1993": 0.39, + "1994": 0.394, + "1995": 0.401, + "1996": 0.41, + "1997": 0.422, + "1998": 0.431, + "1999": 0.443, + "2000": 0.454, + "2001": 0.463, + "2002": 0.471, + "2003": 0.475, + "2004": 0.481, + "2005": 0.486, + "2006": 0.492, + "2007": 0.501, + "2008": 0.51, + "2009": 0.52, + "2010": 0.526, + "2011": 0.536, + "2012": 0.548, + "2013": 0.561, + "2014": 0.573, + "2015": 0.587, + "2016": 0.601, + "2017": 0.612, + "2018": 0.623, + "2019": 0.633, + "2020": 0.633, + "2021": 0.605 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr102", + "Region": "Cabo delgado", + "1990": 0.426, + "1991": 0.429, + "1992": 0.434, + "1993": 0.441, + "1994": 0.445, + "1995": 0.452, + "1996": 0.462, + "1997": 0.475, + "1998": 0.468, + "1999": 0.464, + "2000": 0.458, + "2001": 0.45, + "2002": 0.441, + "2003": 0.429, + "2004": 0.439, + "2005": 0.448, + "2006": 0.458, + "2007": 0.472, + "2008": 0.485, + "2009": 0.498, + "2010": 0.508, + "2011": 0.522, + "2012": 0.534, + "2013": 0.547, + "2014": 0.558, + "2015": 0.572, + "2016": 0.585, + "2017": 0.596, + "2018": 0.608, + "2019": 0.617, + "2020": 0.617, + "2021": 0.589 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr109", + "Region": "Gaza", + "1990": 0.383, + "1991": 0.386, + "1992": 0.39, + "1993": 0.397, + "1994": 0.401, + "1995": 0.407, + "1996": 0.417, + "1997": 0.429, + "1998": 0.441, + "1999": 0.456, + "2000": 0.47, + "2001": 0.482, + "2002": 0.493, + "2003": 0.501, + "2004": 0.503, + "2005": 0.504, + "2006": 0.506, + "2007": 0.512, + "2008": 0.518, + "2009": 0.524, + "2010": 0.526, + "2011": 0.533, + "2012": 0.545, + "2013": 0.558, + "2014": 0.57, + "2015": 0.584, + "2016": 0.597, + "2017": 0.609, + "2018": 0.62, + "2019": 0.63, + "2020": 0.63, + "2021": 0.602 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr108", + "Region": "Inhambane", + "1990": 0.395, + "1991": 0.398, + "1992": 0.402, + "1993": 0.409, + "1994": 0.413, + "1995": 0.419, + "1996": 0.429, + "1997": 0.441, + "1998": 0.453, + "1999": 0.468, + "2000": 0.481, + "2001": 0.493, + "2002": 0.503, + "2003": 0.51, + "2004": 0.524, + "2005": 0.537, + "2006": 0.551, + "2007": 0.568, + "2008": 0.586, + "2009": 0.603, + "2010": 0.617, + "2011": 0.635, + "2012": 0.649, + "2013": 0.663, + "2014": 0.677, + "2015": 0.692, + "2016": 0.707, + "2017": 0.72, + "2018": 0.733, + "2019": 0.744, + "2020": 0.744, + "2021": 0.712 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr106", + "Region": "Manica", + "1990": 0.429, + "1991": 0.432, + "1992": 0.437, + "1993": 0.443, + "1994": 0.448, + "1995": 0.455, + "1996": 0.465, + "1997": 0.477, + "1998": 0.477, + "1999": 0.479, + "2000": 0.479, + "2001": 0.478, + "2002": 0.475, + "2003": 0.469, + "2004": 0.474, + "2005": 0.479, + "2006": 0.484, + "2007": 0.493, + "2008": 0.501, + "2009": 0.51, + "2010": 0.516, + "2011": 0.525, + "2012": 0.537, + "2013": 0.55, + "2014": 0.562, + "2015": 0.575, + "2016": 0.589, + "2017": 0.6, + "2018": 0.611, + "2019": 0.621, + "2020": 0.621, + "2021": 0.593 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr111", + "Region": "Maputo Cidade", + "1990": 0.52, + "1991": 0.523, + "1992": 0.529, + "1993": 0.536, + "1994": 0.541, + "1995": 0.549, + "1996": 0.56, + "1997": 0.575, + "1998": 0.582, + "1999": 0.592, + "2000": 0.6, + "2001": 0.606, + "2002": 0.611, + "2003": 0.612, + "2004": 0.606, + "2005": 0.6, + "2006": 0.595, + "2007": 0.594, + "2008": 0.593, + "2009": 0.593, + "2010": 0.589, + "2011": 0.59, + "2012": 0.602, + "2013": 0.616, + "2014": 0.629, + "2015": 0.643, + "2016": 0.658, + "2017": 0.67, + "2018": 0.682, + "2019": 0.693, + "2020": 0.693, + "2021": 0.662 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr110", + "Region": "Maputo Provincia", + "1990": 0.444, + "1991": 0.447, + "1992": 0.452, + "1993": 0.459, + "1994": 0.463, + "1995": 0.47, + "1996": 0.48, + "1997": 0.494, + "1998": 0.508, + "1999": 0.525, + "2000": 0.54, + "2001": 0.554, + "2002": 0.567, + "2003": 0.575, + "2004": 0.571, + "2005": 0.565, + "2006": 0.561, + "2007": 0.56, + "2008": 0.56, + "2009": 0.56, + "2010": 0.557, + "2011": 0.558, + "2012": 0.57, + "2013": 0.583, + "2014": 0.596, + "2015": 0.61, + "2016": 0.624, + "2017": 0.635, + "2018": 0.647, + "2019": 0.657, + "2020": 0.657, + "2021": 0.628 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr103", + "Region": "Nampula", + "1990": 0.365, + "1991": 0.368, + "1992": 0.373, + "1993": 0.379, + "1994": 0.383, + "1995": 0.389, + "1996": 0.398, + "1997": 0.41, + "1998": 0.416, + "1999": 0.424, + "2000": 0.43, + "2001": 0.435, + "2002": 0.439, + "2003": 0.44, + "2004": 0.461, + "2005": 0.481, + "2006": 0.501, + "2007": 0.525, + "2008": 0.549, + "2009": 0.572, + "2010": 0.592, + "2011": 0.617, + "2012": 0.63, + "2013": 0.644, + "2014": 0.657, + "2015": 0.672, + "2016": 0.687, + "2017": 0.699, + "2018": 0.712, + "2019": 0.723, + "2020": 0.723, + "2021": 0.692 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr101", + "Region": "Niassa", + "1990": 0.38, + "1991": 0.382, + "1992": 0.387, + "1993": 0.393, + "1994": 0.397, + "1995": 0.404, + "1996": 0.413, + "1997": 0.425, + "1998": 0.43, + "1999": 0.437, + "2000": 0.442, + "2001": 0.446, + "2002": 0.45, + "2003": 0.449, + "2004": 0.46, + "2005": 0.47, + "2006": 0.481, + "2007": 0.495, + "2008": 0.509, + "2009": 0.523, + "2010": 0.534, + "2011": 0.549, + "2012": 0.561, + "2013": 0.574, + "2014": 0.586, + "2015": 0.6, + "2016": 0.614, + "2017": 0.625, + "2018": 0.637, + "2019": 0.647, + "2020": 0.647, + "2021": 0.618 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr107", + "Region": "Sofala", + "1990": 0.365, + "1991": 0.368, + "1992": 0.372, + "1993": 0.379, + "1994": 0.382, + "1995": 0.389, + "1996": 0.398, + "1997": 0.41, + "1998": 0.417, + "1999": 0.427, + "2000": 0.435, + "2001": 0.441, + "2002": 0.447, + "2003": 0.449, + "2004": 0.459, + "2005": 0.468, + "2006": 0.478, + "2007": 0.491, + "2008": 0.504, + "2009": 0.517, + "2010": 0.527, + "2011": 0.541, + "2012": 0.553, + "2013": 0.566, + "2014": 0.578, + "2015": 0.592, + "2016": 0.606, + "2017": 0.617, + "2018": 0.629, + "2019": 0.639, + "2020": 0.639, + "2021": 0.61 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr105", + "Region": "Tete", + "1990": 0.358, + "1991": 0.361, + "1992": 0.366, + "1993": 0.372, + "1994": 0.375, + "1995": 0.382, + "1996": 0.391, + "1997": 0.402, + "1998": 0.411, + "1999": 0.422, + "2000": 0.431, + "2001": 0.439, + "2002": 0.446, + "2003": 0.449, + "2004": 0.454, + "2005": 0.458, + "2006": 0.464, + "2007": 0.472, + "2008": 0.48, + "2009": 0.489, + "2010": 0.494, + "2011": 0.504, + "2012": 0.515, + "2013": 0.528, + "2014": 0.539, + "2015": 0.552, + "2016": 0.565, + "2017": 0.576, + "2018": 0.587, + "2019": 0.597, + "2020": 0.597, + "2021": 0.569 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr104", + "Region": "Zambezia", + "1990": 0.403, + "1991": 0.406, + "1992": 0.411, + "1993": 0.417, + "1994": 0.421, + "1995": 0.428, + "1996": 0.438, + "1997": 0.45, + "1998": 0.467, + "1999": 0.488, + "2000": 0.506, + "2001": 0.523, + "2002": 0.539, + "2003": 0.551, + "2004": 0.54, + "2005": 0.528, + "2006": 0.518, + "2007": 0.511, + "2008": 0.505, + "2009": 0.499, + "2010": 0.49, + "2011": 0.485, + "2012": 0.496, + "2013": 0.508, + "2014": 0.519, + "2015": 0.532, + "2016": 0.545, + "2017": 0.555, + "2018": 0.566, + "2019": 0.575, + "2020": 0.576, + "2021": 0.549 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "National", + "GDLCODE": "MMRt", + "Region": "Total", + "1990": 0.564, + "1991": 0.569, + "1992": 0.573, + "1993": 0.579, + "1994": 0.584, + "1995": 0.589, + "1996": 0.599, + "1997": 0.604, + "1998": 0.612, + "1999": 0.614, + "2000": 0.618, + "2001": 0.622, + "2002": 0.627, + "2003": 0.63, + "2004": 0.635, + "2005": 0.64, + "2006": 0.645, + "2007": 0.652, + "2008": 0.562, + "2009": 0.664, + "2010": 0.667, + "2011": 0.675, + "2012": 0.679, + "2013": 0.689, + "2014": 0.693, + "2015": 0.701, + "2016": 0.703, + "2017": 0.705, + "2018": 0.715, + "2019": 0.717, + "2020": 0.72, + "2021": 0.703 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr114", + "Region": "Ayeyarwaddy", + "1990": 0.546, + "1991": 0.551, + "1992": 0.555, + "1993": 0.56, + "1994": 0.565, + "1995": 0.57, + "1996": 0.58, + "1997": 0.585, + "1998": 0.593, + "1999": 0.594, + "2000": 0.598, + "2001": 0.602, + "2002": 0.607, + "2003": 0.611, + "2004": 0.615, + "2005": 0.62, + "2006": 0.624, + "2007": 0.632, + "2008": 0.543, + "2009": 0.643, + "2010": 0.646, + "2011": 0.655, + "2012": 0.658, + "2013": 0.668, + "2014": 0.672, + "2015": 0.68, + "2016": 0.682, + "2017": 0.684, + "2018": 0.693, + "2019": 0.696, + "2020": 0.698, + "2021": 0.681 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr107", + "Region": "Bago", + "1990": 0.544, + "1991": 0.549, + "1992": 0.553, + "1993": 0.558, + "1994": 0.563, + "1995": 0.568, + "1996": 0.578, + "1997": 0.583, + "1998": 0.591, + "1999": 0.592, + "2000": 0.596, + "2001": 0.6, + "2002": 0.605, + "2003": 0.609, + "2004": 0.613, + "2005": 0.618, + "2006": 0.622, + "2007": 0.63, + "2008": 0.541, + "2009": 0.641, + "2010": 0.644, + "2011": 0.653, + "2012": 0.656, + "2013": 0.666, + "2014": 0.67, + "2015": 0.678, + "2016": 0.679, + "2017": 0.682, + "2018": 0.691, + "2019": 0.693, + "2020": 0.696, + "2021": 0.679 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr104", + "Region": "Chin", + "1990": 0.509, + "1991": 0.515, + "1992": 0.518, + "1993": 0.523, + "1994": 0.528, + "1995": 0.532, + "1996": 0.542, + "1997": 0.547, + "1998": 0.555, + "1999": 0.556, + "2000": 0.56, + "2001": 0.564, + "2002": 0.568, + "2003": 0.572, + "2004": 0.576, + "2005": 0.581, + "2006": 0.585, + "2007": 0.592, + "2008": 0.507, + "2009": 0.603, + "2010": 0.606, + "2011": 0.614, + "2012": 0.617, + "2013": 0.627, + "2014": 0.63, + "2015": 0.638, + "2016": 0.64, + "2017": 0.642, + "2018": 0.651, + "2019": 0.653, + "2020": 0.656, + "2021": 0.639 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr101", + "Region": "Kachin", + "1990": 0.585, + "1991": 0.59, + "1992": 0.594, + "1993": 0.6, + "1994": 0.605, + "1995": 0.61, + "1996": 0.62, + "1997": 0.625, + "1998": 0.634, + "1999": 0.635, + "2000": 0.64, + "2001": 0.644, + "2002": 0.649, + "2003": 0.653, + "2004": 0.657, + "2005": 0.662, + "2006": 0.667, + "2007": 0.674, + "2008": 0.582, + "2009": 0.687, + "2010": 0.69, + "2011": 0.699, + "2012": 0.702, + "2013": 0.713, + "2014": 0.717, + "2015": 0.725, + "2016": 0.727, + "2017": 0.729, + "2018": 0.739, + "2019": 0.741, + "2020": 0.744, + "2021": 0.726 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr102", + "Region": "Kayah", + "1990": 0.605, + "1991": 0.611, + "1992": 0.615, + "1993": 0.621, + "1994": 0.626, + "1995": 0.631, + "1996": 0.642, + "1997": 0.647, + "1998": 0.656, + "1999": 0.657, + "2000": 0.662, + "2001": 0.666, + "2002": 0.671, + "2003": 0.675, + "2004": 0.679, + "2005": 0.685, + "2006": 0.69, + "2007": 0.698, + "2008": 0.603, + "2009": 0.71, + "2010": 0.713, + "2011": 0.722, + "2012": 0.726, + "2013": 0.737, + "2014": 0.741, + "2015": 0.749, + "2016": 0.751, + "2017": 0.753, + "2018": 0.763, + "2019": 0.766, + "2020": 0.769, + "2021": 0.751 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr103", + "Region": "Kayin", + "1990": 0.543, + "1991": 0.548, + "1992": 0.552, + "1993": 0.557, + "1994": 0.562, + "1995": 0.567, + "1996": 0.577, + "1997": 0.582, + "1998": 0.59, + "1999": 0.591, + "2000": 0.595, + "2001": 0.599, + "2002": 0.604, + "2003": 0.608, + "2004": 0.612, + "2005": 0.617, + "2006": 0.621, + "2007": 0.629, + "2008": 0.541, + "2009": 0.64, + "2010": 0.643, + "2011": 0.652, + "2012": 0.655, + "2013": 0.665, + "2014": 0.669, + "2015": 0.676, + "2016": 0.678, + "2017": 0.681, + "2018": 0.69, + "2019": 0.692, + "2020": 0.695, + "2021": 0.678 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr108", + "Region": "Magway", + "1990": 0.595, + "1991": 0.601, + "1992": 0.604, + "1993": 0.611, + "1994": 0.616, + "1995": 0.621, + "1996": 0.631, + "1997": 0.636, + "1998": 0.645, + "1999": 0.646, + "2000": 0.651, + "2001": 0.655, + "2002": 0.66, + "2003": 0.664, + "2004": 0.668, + "2005": 0.674, + "2006": 0.678, + "2007": 0.686, + "2008": 0.593, + "2009": 0.699, + "2010": 0.701, + "2011": 0.71, + "2012": 0.714, + "2013": 0.725, + "2014": 0.729, + "2015": 0.737, + "2016": 0.739, + "2017": 0.741, + "2018": 0.751, + "2019": 0.754, + "2020": 0.757, + "2021": 0.739 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr109", + "Region": "Mandalay, NayPyitaw", + "1990": 0.571, + "1991": 0.576, + "1992": 0.58, + "1993": 0.586, + "1994": 0.591, + "1995": 0.596, + "1996": 0.606, + "1997": 0.611, + "1998": 0.62, + "1999": 0.621, + "2000": 0.625, + "2001": 0.629, + "2002": 0.634, + "2003": 0.638, + "2004": 0.642, + "2005": 0.647, + "2006": 0.652, + "2007": 0.659, + "2008": 0.569, + "2009": 0.672, + "2010": 0.674, + "2011": 0.683, + "2012": 0.687, + "2013": 0.697, + "2014": 0.701, + "2015": 0.709, + "2016": 0.711, + "2017": 0.713, + "2018": 0.723, + "2019": 0.725, + "2020": 0.728, + "2021": 0.711 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr110", + "Region": "Mon", + "1990": 0.619, + "1991": 0.624, + "1992": 0.628, + "1993": 0.634, + "1994": 0.64, + "1995": 0.645, + "1996": 0.656, + "1997": 0.661, + "1998": 0.67, + "1999": 0.671, + "2000": 0.676, + "2001": 0.68, + "2002": 0.685, + "2003": 0.689, + "2004": 0.694, + "2005": 0.699, + "2006": 0.704, + "2007": 0.712, + "2008": 0.616, + "2009": 0.725, + "2010": 0.728, + "2011": 0.737, + "2012": 0.741, + "2013": 0.752, + "2014": 0.756, + "2015": 0.764, + "2016": 0.766, + "2017": 0.769, + "2018": 0.779, + "2019": 0.781, + "2020": 0.784, + "2021": 0.766 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr111", + "Region": "Rakhine", + "1990": 0.59, + "1991": 0.595, + "1992": 0.599, + "1993": 0.605, + "1994": 0.61, + "1995": 0.615, + "1996": 0.626, + "1997": 0.631, + "1998": 0.639, + "1999": 0.641, + "2000": 0.645, + "2001": 0.649, + "2002": 0.654, + "2003": 0.658, + "2004": 0.663, + "2005": 0.668, + "2006": 0.673, + "2007": 0.68, + "2008": 0.587, + "2009": 0.693, + "2010": 0.695, + "2011": 0.705, + "2012": 0.708, + "2013": 0.719, + "2014": 0.723, + "2015": 0.731, + "2016": 0.733, + "2017": 0.735, + "2018": 0.745, + "2019": 0.747, + "2020": 0.75, + "2021": 0.733 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr105", + "Region": "Sagaing", + "1990": 0.57, + "1991": 0.576, + "1992": 0.579, + "1993": 0.585, + "1994": 0.59, + "1995": 0.595, + "1996": 0.606, + "1997": 0.61, + "1998": 0.619, + "1999": 0.62, + "2000": 0.624, + "2001": 0.628, + "2002": 0.633, + "2003": 0.637, + "2004": 0.641, + "2005": 0.647, + "2006": 0.651, + "2007": 0.659, + "2008": 0.568, + "2009": 0.671, + "2010": 0.674, + "2011": 0.682, + "2012": 0.686, + "2013": 0.697, + "2014": 0.7, + "2015": 0.708, + "2016": 0.71, + "2017": 0.713, + "2018": 0.722, + "2019": 0.724, + "2020": 0.727, + "2021": 0.71 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr113", + "Region": "Shan", + "1990": 0.519, + "1991": 0.524, + "1992": 0.527, + "1993": 0.533, + "1994": 0.538, + "1995": 0.542, + "1996": 0.552, + "1997": 0.556, + "1998": 0.564, + "1999": 0.566, + "2000": 0.57, + "2001": 0.573, + "2002": 0.578, + "2003": 0.582, + "2004": 0.586, + "2005": 0.591, + "2006": 0.595, + "2007": 0.602, + "2008": 0.516, + "2009": 0.613, + "2010": 0.616, + "2011": 0.624, + "2012": 0.628, + "2013": 0.638, + "2014": 0.641, + "2015": 0.648, + "2016": 0.65, + "2017": 0.653, + "2018": 0.662, + "2019": 0.664, + "2020": 0.666, + "2021": 0.65 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr106", + "Region": "Taninthayi", + "1990": 0.544, + "1991": 0.55, + "1992": 0.553, + "1993": 0.559, + "1994": 0.564, + "1995": 0.569, + "1996": 0.579, + "1997": 0.583, + "1998": 0.592, + "1999": 0.593, + "2000": 0.597, + "2001": 0.601, + "2002": 0.606, + "2003": 0.609, + "2004": 0.614, + "2005": 0.619, + "2006": 0.623, + "2007": 0.63, + "2008": 0.542, + "2009": 0.642, + "2010": 0.645, + "2011": 0.653, + "2012": 0.657, + "2013": 0.667, + "2014": 0.671, + "2015": 0.678, + "2016": 0.68, + "2017": 0.683, + "2018": 0.692, + "2019": 0.694, + "2020": 0.697, + "2021": 0.68 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr112", + "Region": "Yangon", + "1990": 0.614, + "1991": 0.62, + "1992": 0.624, + "1993": 0.63, + "1994": 0.635, + "1995": 0.64, + "1996": 0.651, + "1997": 0.656, + "1998": 0.665, + "1999": 0.667, + "2000": 0.671, + "2001": 0.675, + "2002": 0.68, + "2003": 0.685, + "2004": 0.689, + "2005": 0.695, + "2006": 0.699, + "2007": 0.707, + "2008": 0.612, + "2009": 0.72, + "2010": 0.723, + "2011": 0.732, + "2012": 0.736, + "2013": 0.747, + "2014": 0.751, + "2015": 0.759, + "2016": 0.761, + "2017": 0.764, + "2018": 0.774, + "2019": 0.776, + "2020": 0.779, + "2021": 0.761 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "National", + "GDLCODE": "NAMt", + "Region": "Total", + "1990": 0.654, + "1991": 0.648, + "1992": 0.639, + "1993": 0.629, + "1994": 0.613, + "1995": 0.594, + "1996": 0.568, + "1997": 0.547, + "1998": 0.525, + "1999": 0.508, + "2000": 0.492, + "2001": 0.481, + "2002": 0.481, + "2003": 0.478, + "2004": 0.481, + "2005": 0.489, + "2006": 0.502, + "2007": 0.518, + "2008": 0.533, + "2009": 0.546, + "2010": 0.554, + "2011": 0.562, + "2012": 0.579, + "2013": 0.595, + "2014": 0.613, + "2015": 0.626, + "2016": 0.641, + "2017": 0.651, + "2018": 0.655, + "2019": 0.663, + "2020": 0.659, + "2021": 0.604 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr101", + "Region": "Caprivi", + "1990": 0.75, + "1991": 0.744, + "1992": 0.734, + "1993": 0.723, + "1994": 0.705, + "1995": 0.685, + "1996": 0.656, + "1997": 0.633, + "1998": 0.608, + "1999": 0.59, + "2000": 0.572, + "2001": 0.54, + "2002": 0.519, + "2003": 0.495, + "2004": 0.477, + "2005": 0.464, + "2006": 0.455, + "2007": 0.473, + "2008": 0.49, + "2009": 0.505, + "2010": 0.516, + "2011": 0.527, + "2012": 0.545, + "2013": 0.564, + "2014": 0.581, + "2015": 0.594, + "2016": 0.608, + "2017": 0.617, + "2018": 0.622, + "2019": 0.629, + "2020": 0.625, + "2021": 0.573 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr102", + "Region": "Erongo", + "1990": 0.761, + "1991": 0.754, + "1992": 0.744, + "1993": 0.733, + "1994": 0.715, + "1995": 0.695, + "1996": 0.665, + "1997": 0.642, + "1998": 0.617, + "1999": 0.599, + "2000": 0.581, + "2001": 0.556, + "2002": 0.542, + "2003": 0.526, + "2004": 0.516, + "2005": 0.511, + "2006": 0.511, + "2007": 0.527, + "2008": 0.543, + "2009": 0.557, + "2010": 0.565, + "2011": 0.574, + "2012": 0.592, + "2013": 0.609, + "2014": 0.627, + "2015": 0.64, + "2016": 0.656, + "2017": 0.665, + "2018": 0.67, + "2019": 0.677, + "2020": 0.674, + "2021": 0.618 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr103", + "Region": "Hardap", + "1990": 0.649, + "1991": 0.643, + "1992": 0.634, + "1993": 0.624, + "1994": 0.608, + "1995": 0.59, + "1996": 0.564, + "1997": 0.543, + "1998": 0.521, + "1999": 0.504, + "2000": 0.488, + "2001": 0.476, + "2002": 0.475, + "2003": 0.472, + "2004": 0.473, + "2005": 0.481, + "2006": 0.493, + "2007": 0.517, + "2008": 0.54, + "2009": 0.561, + "2010": 0.578, + "2011": 0.595, + "2012": 0.62, + "2013": 0.646, + "2014": 0.664, + "2015": 0.678, + "2016": 0.694, + "2017": 0.704, + "2018": 0.709, + "2019": 0.717, + "2020": 0.713, + "2021": 0.655 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr104", + "Region": "Karas", + "1990": 0.635, + "1991": 0.629, + "1992": 0.62, + "1993": 0.61, + "1994": 0.595, + "1995": 0.577, + "1996": 0.551, + "1997": 0.53, + "1998": 0.508, + "1999": 0.492, + "2000": 0.476, + "2001": 0.471, + "2002": 0.477, + "2003": 0.48, + "2004": 0.488, + "2005": 0.503, + "2006": 0.522, + "2007": 0.54, + "2008": 0.558, + "2009": 0.573, + "2010": 0.583, + "2011": 0.593, + "2012": 0.612, + "2013": 0.631, + "2014": 0.649, + "2015": 0.663, + "2016": 0.679, + "2017": 0.689, + "2018": 0.693, + "2019": 0.701, + "2020": 0.697, + "2021": 0.64 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr108", + "Region": "Kavango", + "1990": 0.63, + "1991": 0.624, + "1992": 0.615, + "1993": 0.605, + "1994": 0.59, + "1995": 0.572, + "1996": 0.546, + "1997": 0.526, + "1998": 0.504, + "1999": 0.488, + "2000": 0.472, + "2001": 0.465, + "2002": 0.469, + "2003": 0.47, + "2004": 0.476, + "2005": 0.488, + "2006": 0.506, + "2007": 0.51, + "2008": 0.514, + "2009": 0.515, + "2010": 0.511, + "2011": 0.507, + "2012": 0.511, + "2013": 0.515, + "2014": 0.53, + "2015": 0.543, + "2016": 0.557, + "2017": 0.565, + "2018": 0.569, + "2019": 0.576, + "2020": 0.573, + "2021": 0.523 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr105", + "Region": "Khomas", + "1990": 0.677, + "1991": 0.67, + "1992": 0.662, + "1993": 0.651, + "1994": 0.635, + "1995": 0.616, + "1996": 0.589, + "1997": 0.567, + "1998": 0.544, + "1999": 0.528, + "2000": 0.511, + "2001": 0.502, + "2002": 0.505, + "2003": 0.505, + "2004": 0.51, + "2005": 0.522, + "2006": 0.539, + "2007": 0.555, + "2008": 0.571, + "2009": 0.585, + "2010": 0.593, + "2011": 0.602, + "2012": 0.62, + "2013": 0.637, + "2014": 0.655, + "2015": 0.669, + "2016": 0.685, + "2017": 0.695, + "2018": 0.7, + "2019": 0.708, + "2020": 0.704, + "2021": 0.646 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr106", + "Region": "Kunene", + "1990": 0.646, + "1991": 0.64, + "1992": 0.631, + "1993": 0.621, + "1994": 0.606, + "1995": 0.587, + "1996": 0.561, + "1997": 0.54, + "1998": 0.518, + "1999": 0.502, + "2000": 0.486, + "2001": 0.482, + "2002": 0.489, + "2003": 0.493, + "2004": 0.503, + "2005": 0.519, + "2006": 0.54, + "2007": 0.556, + "2008": 0.57, + "2009": 0.583, + "2010": 0.59, + "2011": 0.597, + "2012": 0.613, + "2013": 0.629, + "2014": 0.647, + "2015": 0.661, + "2016": 0.677, + "2017": 0.686, + "2018": 0.691, + "2019": 0.699, + "2020": 0.695, + "2021": 0.638 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr107", + "Region": "Ohangwena", + "1990": 0.642, + "1991": 0.636, + "1992": 0.628, + "1993": 0.617, + "1994": 0.602, + "1995": 0.584, + "1996": 0.557, + "1997": 0.537, + "1998": 0.515, + "1999": 0.498, + "2000": 0.483, + "2001": 0.465, + "2002": 0.458, + "2003": 0.449, + "2004": 0.445, + "2005": 0.446, + "2006": 0.452, + "2007": 0.468, + "2008": 0.484, + "2009": 0.497, + "2010": 0.506, + "2011": 0.516, + "2012": 0.533, + "2013": 0.55, + "2014": 0.567, + "2015": 0.579, + "2016": 0.594, + "2017": 0.603, + "2018": 0.607, + "2019": 0.614, + "2020": 0.61, + "2021": 0.558 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr109", + "Region": "Omaheke", + "1990": 0.643, + "1991": 0.637, + "1992": 0.628, + "1993": 0.618, + "1994": 0.602, + "1995": 0.584, + "1996": 0.558, + "1997": 0.537, + "1998": 0.515, + "1999": 0.499, + "2000": 0.483, + "2001": 0.475, + "2002": 0.479, + "2003": 0.48, + "2004": 0.486, + "2005": 0.498, + "2006": 0.515, + "2007": 0.533, + "2008": 0.551, + "2009": 0.566, + "2010": 0.576, + "2011": 0.587, + "2012": 0.606, + "2013": 0.625, + "2014": 0.643, + "2015": 0.657, + "2016": 0.673, + "2017": 0.683, + "2018": 0.687, + "2019": 0.695, + "2020": 0.691, + "2021": 0.635 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr110", + "Region": "Omusati", + "1990": 0.638, + "1991": 0.632, + "1992": 0.624, + "1993": 0.614, + "1994": 0.598, + "1995": 0.58, + "1996": 0.554, + "1997": 0.533, + "1998": 0.511, + "1999": 0.495, + "2000": 0.479, + "2001": 0.468, + "2002": 0.467, + "2003": 0.465, + "2004": 0.467, + "2005": 0.475, + "2006": 0.487, + "2007": 0.509, + "2008": 0.531, + "2009": 0.551, + "2010": 0.566, + "2011": 0.581, + "2012": 0.605, + "2013": 0.628, + "2014": 0.646, + "2015": 0.66, + "2016": 0.676, + "2017": 0.686, + "2018": 0.691, + "2019": 0.698, + "2020": 0.694, + "2021": 0.638 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr111", + "Region": "Oshana", + "1990": 0.628, + "1991": 0.623, + "1992": 0.614, + "1993": 0.604, + "1994": 0.589, + "1995": 0.571, + "1996": 0.545, + "1997": 0.525, + "1998": 0.503, + "1999": 0.487, + "2000": 0.471, + "2001": 0.462, + "2002": 0.464, + "2003": 0.463, + "2004": 0.468, + "2005": 0.478, + "2006": 0.493, + "2007": 0.514, + "2008": 0.534, + "2009": 0.553, + "2010": 0.566, + "2011": 0.58, + "2012": 0.603, + "2013": 0.625, + "2014": 0.643, + "2015": 0.657, + "2016": 0.672, + "2017": 0.682, + "2018": 0.687, + "2019": 0.695, + "2020": 0.691, + "2021": 0.634 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr112", + "Region": "Oshikoto", + "1990": 0.595, + "1991": 0.59, + "1992": 0.582, + "1993": 0.572, + "1994": 0.557, + "1995": 0.54, + "1996": 0.515, + "1997": 0.495, + "1998": 0.474, + "1999": 0.459, + "2000": 0.444, + "2001": 0.443, + "2002": 0.452, + "2003": 0.459, + "2004": 0.471, + "2005": 0.489, + "2006": 0.512, + "2007": 0.524, + "2008": 0.535, + "2009": 0.544, + "2010": 0.547, + "2011": 0.551, + "2012": 0.563, + "2013": 0.575, + "2014": 0.592, + "2015": 0.605, + "2016": 0.62, + "2017": 0.629, + "2018": 0.634, + "2019": 0.641, + "2020": 0.637, + "2021": 0.584 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr113", + "Region": "Otjozondjupa", + "1990": 0.675, + "1991": 0.669, + "1992": 0.66, + "1993": 0.649, + "1994": 0.633, + "1995": 0.614, + "1996": 0.587, + "1997": 0.566, + "1998": 0.543, + "1999": 0.526, + "2000": 0.51, + "2001": 0.497, + "2002": 0.495, + "2003": 0.49, + "2004": 0.491, + "2005": 0.497, + "2006": 0.509, + "2007": 0.526, + "2008": 0.543, + "2009": 0.557, + "2010": 0.567, + "2011": 0.577, + "2012": 0.596, + "2013": 0.614, + "2014": 0.632, + "2015": 0.645, + "2016": 0.661, + "2017": 0.67, + "2018": 0.675, + "2019": 0.683, + "2020": 0.679, + "2021": 0.623 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "National", + "GDLCODE": "NPLt", + "Region": "Total", + "1990": 0.536, + "1991": 0.549, + "1992": 0.565, + "1993": 0.579, + "1994": 0.593, + "1995": 0.605, + "1996": 0.615, + "1997": 0.627, + "1998": 0.639, + "1999": 0.648, + "2000": 0.656, + "2001": 0.667, + "2002": 0.666, + "2003": 0.68, + "2004": 0.69, + "2005": 0.699, + "2006": 0.706, + "2007": 0.713, + "2008": 0.714, + "2009": 0.719, + "2010": 0.72, + "2011": 0.728, + "2012": 0.73, + "2013": 0.738, + "2014": 0.74, + "2015": 0.73, + "2016": 0.75, + "2017": 0.752, + "2018": 0.754, + "2019": 0.762, + "2020": 0.758, + "2021": 0.745 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr102", + "Region": "Central", + "1990": 0.538, + "1991": 0.552, + "1992": 0.567, + "1993": 0.581, + "1994": 0.596, + "1995": 0.607, + "1996": 0.618, + "1997": 0.628, + "1998": 0.639, + "1999": 0.646, + "2000": 0.653, + "2001": 0.662, + "2002": 0.667, + "2003": 0.687, + "2004": 0.702, + "2005": 0.718, + "2006": 0.73, + "2007": 0.733, + "2008": 0.731, + "2009": 0.733, + "2010": 0.73, + "2011": 0.734, + "2012": 0.736, + "2013": 0.742, + "2014": 0.743, + "2015": 0.732, + "2016": 0.752, + "2017": 0.756, + "2018": 0.759, + "2019": 0.769, + "2020": 0.765, + "2021": 0.752 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr101", + "Region": "Eastern", + "1990": 0.574, + "1991": 0.588, + "1992": 0.604, + "1993": 0.619, + "1994": 0.634, + "1995": 0.646, + "1996": 0.657, + "1997": 0.662, + "1998": 0.667, + "1999": 0.669, + "2000": 0.669, + "2001": 0.673, + "2002": 0.679, + "2003": 0.7, + "2004": 0.716, + "2005": 0.733, + "2006": 0.746, + "2007": 0.748, + "2008": 0.745, + "2009": 0.745, + "2010": 0.741, + "2011": 0.745, + "2012": 0.746, + "2013": 0.753, + "2014": 0.755, + "2015": 0.744, + "2016": 0.764, + "2017": 0.763, + "2018": 0.761, + "2019": 0.767, + "2020": 0.762, + "2021": 0.75 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr105", + "Region": "Far-western", + "1990": 0.491, + "1991": 0.504, + "1992": 0.518, + "1993": 0.531, + "1994": 0.545, + "1995": 0.556, + "1996": 0.566, + "1997": 0.575, + "1998": 0.584, + "1999": 0.59, + "2000": 0.595, + "2001": 0.603, + "2002": 0.607, + "2003": 0.626, + "2004": 0.64, + "2005": 0.654, + "2006": 0.665, + "2007": 0.672, + "2008": 0.673, + "2009": 0.678, + "2010": 0.679, + "2011": 0.687, + "2012": 0.687, + "2013": 0.693, + "2014": 0.693, + "2015": 0.682, + "2016": 0.7, + "2017": 0.708, + "2018": 0.716, + "2019": 0.731, + "2020": 0.726, + "2021": 0.714 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr106", + "Region": "Karnali Province", + "1990": 0.74, + "1991": 0.756, + "1992": 0.775, + "1993": 0.793, + "1994": 0.811, + "1995": 0.825, + "1996": 0.838, + "1997": 0.839, + "1998": 0.841, + "1999": 0.838, + "2000": 0.835, + "2001": 0.835, + "2002": 0.82, + "2003": 0.822, + "2004": 0.819, + "2005": 0.817, + "2006": 0.811, + "2007": 0.81, + "2008": 0.803, + "2009": 0.8, + "2010": 0.792, + "2011": 0.792, + "2012": 0.786, + "2013": 0.786, + "2014": 0.779, + "2015": 0.761, + "2016": 0.773, + "2017": 0.763, + "2018": 0.751, + "2019": 0.748, + "2020": 0.743, + "2021": 0.731 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr104", + "Region": "Mid-western", + "1990": 0.492, + "1991": 0.505, + "1992": 0.519, + "1993": 0.532, + "1994": 0.546, + "1995": 0.557, + "1996": 0.567, + "1997": 0.588, + "1998": 0.608, + "1999": 0.626, + "2000": 0.642, + "2001": 0.662, + "2002": 0.646, + "2003": 0.646, + "2004": 0.641, + "2005": 0.636, + "2006": 0.628, + "2007": 0.646, + "2008": 0.659, + "2009": 0.675, + "2010": 0.687, + "2011": 0.706, + "2012": 0.711, + "2013": 0.721, + "2014": 0.726, + "2015": 0.719, + "2016": 0.742, + "2017": 0.75, + "2018": 0.757, + "2019": 0.772, + "2020": 0.767, + "2021": 0.755 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr107", + "Region": "Sudoorpaschim Province", + "1990": 0.747, + "1991": 0.764, + "1992": 0.783, + "1993": 0.801, + "1994": 0.819, + "1995": 0.834, + "1996": 0.846, + "1997": 0.848, + "1998": 0.849, + "1999": 0.847, + "2000": 0.843, + "2001": 0.843, + "2002": 0.828, + "2003": 0.831, + "2004": 0.828, + "2005": 0.825, + "2006": 0.819, + "2007": 0.818, + "2008": 0.811, + "2009": 0.808, + "2010": 0.801, + "2011": 0.8, + "2012": 0.794, + "2013": 0.794, + "2014": 0.787, + "2015": 0.769, + "2016": 0.782, + "2017": 0.771, + "2018": 0.759, + "2019": 0.756, + "2020": 0.751, + "2021": 0.739 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr103", + "Region": "Western", + "1990": 0.565, + "1991": 0.579, + "1992": 0.595, + "1993": 0.609, + "1994": 0.624, + "1995": 0.636, + "1996": 0.647, + "1997": 0.662, + "1998": 0.677, + "1999": 0.689, + "2000": 0.699, + "2001": 0.714, + "2002": 0.705, + "2003": 0.713, + "2004": 0.716, + "2005": 0.719, + "2006": 0.718, + "2007": 0.725, + "2008": 0.727, + "2009": 0.732, + "2010": 0.733, + "2011": 0.741, + "2012": 0.744, + "2013": 0.752, + "2014": 0.755, + "2015": 0.745, + "2016": 0.767, + "2017": 0.77, + "2018": 0.772, + "2019": 0.782, + "2020": 0.777, + "2021": 0.765 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "National", + "GDLCODE": "NLDt", + "Region": "Total", + "1990": 0.877, + "1991": 0.879, + "1992": 0.882, + "1993": 0.877, + "1994": 0.885, + "1995": 0.885, + "1996": 0.885, + "1997": 0.891, + "1998": 0.892, + "1999": 0.892, + "2000": 0.894, + "2001": 0.897, + "2002": 0.899, + "2003": 0.902, + "2004": 0.911, + "2005": 0.915, + "2006": 0.921, + "2007": 0.927, + "2008": 0.929, + "2009": 0.933, + "2010": 0.936, + "2011": 0.94, + "2012": 0.939, + "2013": 0.943, + "2014": 0.948, + "2015": 0.946, + "2016": 0.947, + "2017": 0.95, + "2018": 0.95, + "2019": 0.955, + "2020": 0.948, + "2021": 0.949 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr103", + "Region": "Drenthe", + "1990": 0.882, + "1991": 0.884, + "1992": 0.887, + "1993": 0.882, + "1994": 0.89, + "1995": 0.89, + "1996": 0.89, + "1997": 0.896, + "1998": 0.897, + "1999": 0.897, + "2000": 0.899, + "2001": 0.902, + "2002": 0.899, + "2003": 0.907, + "2004": 0.913, + "2005": 0.922, + "2006": 0.929, + "2007": 0.929, + "2008": 0.933, + "2009": 0.932, + "2010": 0.934, + "2011": 0.937, + "2012": 0.935, + "2013": 0.939, + "2014": 0.949, + "2015": 0.941, + "2016": 0.943, + "2017": 0.941, + "2018": 0.946, + "2019": 0.95, + "2020": 0.944, + "2021": 0.945 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr106", + "Region": "Flevoland", + "1990": 0.883, + "1991": 0.886, + "1992": 0.889, + "1993": 0.884, + "1994": 0.891, + "1995": 0.892, + "1996": 0.892, + "1997": 0.897, + "1998": 0.899, + "1999": 0.898, + "2000": 0.901, + "2001": 0.904, + "2002": 0.901, + "2003": 0.903, + "2004": 0.919, + "2005": 0.916, + "2006": 0.92, + "2007": 0.926, + "2008": 0.935, + "2009": 0.935, + "2010": 0.934, + "2011": 0.934, + "2012": 0.938, + "2013": 0.941, + "2014": 0.955, + "2015": 0.95, + "2016": 0.947, + "2017": 0.96, + "2018": 0.95, + "2019": 0.958, + "2020": 0.951, + "2021": 0.952 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr102", + "Region": "Friesland", + "1990": 0.877, + "1991": 0.88, + "1992": 0.883, + "1993": 0.878, + "1994": 0.885, + "1995": 0.886, + "1996": 0.886, + "1997": 0.891, + "1998": 0.892, + "1999": 0.892, + "2000": 0.894, + "2001": 0.898, + "2002": 0.899, + "2003": 0.906, + "2004": 0.913, + "2005": 0.917, + "2006": 0.913, + "2007": 0.929, + "2008": 0.928, + "2009": 0.932, + "2010": 0.937, + "2011": 0.938, + "2012": 0.936, + "2013": 0.936, + "2014": 0.945, + "2015": 0.944, + "2016": 0.941, + "2017": 0.948, + "2018": 0.947, + "2019": 0.952, + "2020": 0.945, + "2021": 0.946 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr105", + "Region": "Gelderland", + "1990": 0.877, + "1991": 0.88, + "1992": 0.883, + "1993": 0.878, + "1994": 0.885, + "1995": 0.886, + "1996": 0.886, + "1997": 0.891, + "1998": 0.892, + "1999": 0.892, + "2000": 0.894, + "2001": 0.898, + "2002": 0.898, + "2003": 0.898, + "2004": 0.908, + "2005": 0.911, + "2006": 0.921, + "2007": 0.925, + "2008": 0.928, + "2009": 0.932, + "2010": 0.934, + "2011": 0.94, + "2012": 0.938, + "2013": 0.944, + "2014": 0.949, + "2015": 0.947, + "2016": 0.949, + "2017": 0.949, + "2018": 0.949, + "2019": 0.953, + "2020": 0.947, + "2021": 0.948 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr101", + "Region": "Groningen", + "1990": 0.867, + "1991": 0.869, + "1992": 0.872, + "1993": 0.867, + "1994": 0.874, + "1995": 0.875, + "1996": 0.875, + "1997": 0.881, + "1998": 0.882, + "1999": 0.881, + "2000": 0.884, + "2001": 0.887, + "2002": 0.893, + "2003": 0.895, + "2004": 0.909, + "2005": 0.913, + "2006": 0.912, + "2007": 0.923, + "2008": 0.922, + "2009": 0.921, + "2010": 0.92, + "2011": 0.924, + "2012": 0.921, + "2013": 0.925, + "2014": 0.931, + "2015": 0.932, + "2016": 0.934, + "2017": 0.934, + "2018": 0.937, + "2019": 0.941, + "2020": 0.935, + "2021": 0.935 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr112", + "Region": "Limburg", + "1990": 0.868, + "1991": 0.87, + "1992": 0.874, + "1993": 0.869, + "1994": 0.876, + "1995": 0.876, + "1996": 0.876, + "1997": 0.882, + "1998": 0.883, + "1999": 0.883, + "2000": 0.885, + "2001": 0.888, + "2002": 0.89, + "2003": 0.892, + "2004": 0.902, + "2005": 0.908, + "2006": 0.91, + "2007": 0.922, + "2008": 0.919, + "2009": 0.929, + "2010": 0.928, + "2011": 0.935, + "2012": 0.933, + "2013": 0.938, + "2014": 0.945, + "2015": 0.937, + "2016": 0.944, + "2017": 0.944, + "2018": 0.949, + "2019": 0.948, + "2020": 0.942, + "2021": 0.943 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr111", + "Region": "Noord-Brabant", + "1990": 0.876, + "1991": 0.878, + "1992": 0.881, + "1993": 0.876, + "1994": 0.884, + "1995": 0.884, + "1996": 0.884, + "1997": 0.89, + "1998": 0.891, + "1999": 0.89, + "2000": 0.893, + "2001": 0.896, + "2002": 0.896, + "2003": 0.901, + "2004": 0.909, + "2005": 0.914, + "2006": 0.918, + "2007": 0.925, + "2008": 0.927, + "2009": 0.932, + "2010": 0.937, + "2011": 0.94, + "2012": 0.941, + "2013": 0.944, + "2014": 0.946, + "2015": 0.944, + "2016": 0.946, + "2017": 0.948, + "2018": 0.95, + "2019": 0.956, + "2020": 0.95, + "2021": 0.951 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr108", + "Region": "Noord-Holland", + "1990": 0.879, + "1991": 0.881, + "1992": 0.884, + "1993": 0.879, + "1994": 0.887, + "1995": 0.887, + "1996": 0.887, + "1997": 0.893, + "1998": 0.894, + "1999": 0.893, + "2000": 0.896, + "2001": 0.899, + "2002": 0.902, + "2003": 0.906, + "2004": 0.916, + "2005": 0.917, + "2006": 0.926, + "2007": 0.928, + "2008": 0.93, + "2009": 0.935, + "2010": 0.94, + "2011": 0.941, + "2012": 0.939, + "2013": 0.944, + "2014": 0.948, + "2015": 0.946, + "2016": 0.946, + "2017": 0.952, + "2018": 0.953, + "2019": 0.958, + "2020": 0.951, + "2021": 0.952 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr104", + "Region": "Overijssel", + "1990": 0.871, + "1991": 0.874, + "1992": 0.877, + "1993": 0.872, + "1994": 0.879, + "1995": 0.879, + "1996": 0.88, + "1997": 0.885, + "1998": 0.886, + "1999": 0.886, + "2000": 0.888, + "2001": 0.891, + "2002": 0.893, + "2003": 0.897, + "2004": 0.906, + "2005": 0.91, + "2006": 0.913, + "2007": 0.926, + "2008": 0.925, + "2009": 0.927, + "2010": 0.932, + "2011": 0.937, + "2012": 0.939, + "2013": 0.939, + "2014": 0.945, + "2015": 0.944, + "2016": 0.946, + "2017": 0.948, + "2018": 0.947, + "2019": 0.95, + "2020": 0.944, + "2021": 0.945 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr107", + "Region": "Utrecht", + "1990": 0.882, + "1991": 0.884, + "1992": 0.887, + "1993": 0.882, + "1994": 0.89, + "1995": 0.89, + "1996": 0.89, + "1997": 0.896, + "1998": 0.897, + "1999": 0.897, + "2000": 0.899, + "2001": 0.902, + "2002": 0.905, + "2003": 0.909, + "2004": 0.914, + "2005": 0.923, + "2006": 0.926, + "2007": 0.939, + "2008": 0.938, + "2009": 0.943, + "2010": 0.943, + "2011": 0.946, + "2012": 0.95, + "2013": 0.952, + "2014": 0.954, + "2015": 0.953, + "2016": 0.954, + "2017": 0.957, + "2018": 0.958, + "2019": 0.962, + "2020": 0.956, + "2021": 0.957 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr110", + "Region": "Zeeland", + "1990": 0.889, + "1991": 0.892, + "1992": 0.895, + "1993": 0.89, + "1994": 0.897, + "1995": 0.898, + "1996": 0.898, + "1997": 0.904, + "1998": 0.905, + "1999": 0.904, + "2000": 0.907, + "2001": 0.91, + "2002": 0.91, + "2003": 0.923, + "2004": 0.923, + "2005": 0.925, + "2006": 0.933, + "2007": 0.94, + "2008": 0.938, + "2009": 0.947, + "2010": 0.937, + "2011": 0.947, + "2012": 0.95, + "2013": 0.947, + "2014": 0.963, + "2015": 0.956, + "2016": 0.954, + "2017": 0.952, + "2018": 0.953, + "2019": 0.961, + "2020": 0.954, + "2021": 0.955 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr109", + "Region": "Zuid-Holland", + "1990": 0.879, + "1991": 0.881, + "1992": 0.884, + "1993": 0.879, + "1994": 0.887, + "1995": 0.887, + "1996": 0.887, + "1997": 0.893, + "1998": 0.894, + "1999": 0.893, + "2000": 0.896, + "2001": 0.899, + "2002": 0.899, + "2003": 0.904, + "2004": 0.913, + "2005": 0.916, + "2006": 0.923, + "2007": 0.925, + "2008": 0.93, + "2009": 0.934, + "2010": 0.936, + "2011": 0.943, + "2012": 0.939, + "2013": 0.945, + "2014": 0.951, + "2015": 0.949, + "2016": 0.949, + "2017": 0.952, + "2018": 0.95, + "2019": 0.955, + "2020": 0.948, + "2021": 0.949 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "National", + "GDLCODE": "NZLt", + "Region": "Total", + "1990": 0.853, + "1991": 0.863, + "1992": 0.864, + "1993": 0.869, + "1994": 0.876, + "1995": 0.874, + "1996": 0.874, + "1997": 0.882, + "1998": 0.895, + "1999": 0.891, + "2000": 0.903, + "2001": 0.903, + "2002": 0.906, + "2003": 0.91, + "2004": 0.913, + "2005": 0.924, + "2006": 0.924, + "2007": 0.926, + "2008": 0.928, + "2009": 0.932, + "2010": 0.94, + "2011": 0.937, + "2012": 0.942, + "2013": 0.948, + "2014": 0.951, + "2015": 0.953, + "2016": 0.955, + "2017": 0.957, + "2018": 0.96, + "2019": 0.963, + "2020": 0.965, + "2021": 0.961 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr102", + "Region": "Auckland", + "1990": 0.86, + "1991": 0.87, + "1992": 0.872, + "1993": 0.877, + "1994": 0.884, + "1995": 0.882, + "1996": 0.883, + "1997": 0.892, + "1998": 0.906, + "1999": 0.903, + "2000": 0.915, + "2001": 0.916, + "2002": 0.919, + "2003": 0.924, + "2004": 0.928, + "2005": 0.939, + "2006": 0.939, + "2007": 0.941, + "2008": 0.942, + "2009": 0.947, + "2010": 0.955, + "2011": 0.951, + "2012": 0.956, + "2013": 0.962, + "2014": 0.965, + "2015": 0.967, + "2016": 0.969, + "2017": 0.971, + "2018": 0.974, + "2019": 0.977, + "2020": 0.979, + "2021": 0.975 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr104", + "Region": "Bay of Plenty", + "1990": 0.849, + "1991": 0.859, + "1992": 0.858, + "1993": 0.861, + "1994": 0.865, + "1995": 0.861, + "1996": 0.859, + "1997": 0.867, + "1998": 0.88, + "1999": 0.876, + "2000": 0.887, + "2001": 0.887, + "2002": 0.891, + "2003": 0.896, + "2004": 0.9, + "2005": 0.911, + "2006": 0.912, + "2007": 0.915, + "2008": 0.918, + "2009": 0.924, + "2010": 0.933, + "2011": 0.93, + "2012": 0.937, + "2013": 0.945, + "2014": 0.947, + "2015": 0.95, + "2016": 0.951, + "2017": 0.953, + "2018": 0.956, + "2019": 0.959, + "2020": 0.961, + "2021": 0.957 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr113", + "Region": "Canterbury", + "1990": 0.861, + "1991": 0.871, + "1992": 0.873, + "1993": 0.878, + "1994": 0.885, + "1995": 0.883, + "1996": 0.883, + "1997": 0.892, + "1998": 0.905, + "1999": 0.901, + "2000": 0.913, + "2001": 0.913, + "2002": 0.915, + "2003": 0.919, + "2004": 0.922, + "2005": 0.932, + "2006": 0.931, + "2007": 0.932, + "2008": 0.933, + "2009": 0.937, + "2010": 0.944, + "2011": 0.94, + "2012": 0.944, + "2013": 0.95, + "2014": 0.952, + "2015": 0.955, + "2016": 0.956, + "2017": 0.959, + "2018": 0.961, + "2019": 0.964, + "2020": 0.967, + "2021": 0.962 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr105", + "Region": "Gisborne", + "1990": 0.824, + "1991": 0.834, + "1992": 0.831, + "1993": 0.83, + "1994": 0.831, + "1995": 0.824, + "1996": 0.82, + "1997": 0.829, + "1998": 0.842, + "1999": 0.84, + "2000": 0.852, + "2001": 0.854, + "2002": 0.853, + "2003": 0.854, + "2004": 0.854, + "2005": 0.861, + "2006": 0.857, + "2007": 0.862, + "2008": 0.867, + "2009": 0.874, + "2010": 0.884, + "2011": 0.884, + "2012": 0.892, + "2013": 0.901, + "2014": 0.903, + "2015": 0.906, + "2016": 0.908, + "2017": 0.91, + "2018": 0.912, + "2019": 0.915, + "2020": 0.918, + "2021": 0.913 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr106", + "Region": "Hawkes Bay", + "1990": 0.84, + "1991": 0.85, + "1992": 0.851, + "1993": 0.855, + "1994": 0.861, + "1995": 0.859, + "1996": 0.859, + "1997": 0.866, + "1998": 0.877, + "1999": 0.872, + "2000": 0.883, + "2001": 0.882, + "2002": 0.884, + "2003": 0.887, + "2004": 0.889, + "2005": 0.898, + "2006": 0.896, + "2007": 0.9, + "2008": 0.904, + "2009": 0.911, + "2010": 0.921, + "2011": 0.919, + "2012": 0.927, + "2013": 0.935, + "2014": 0.937, + "2015": 0.94, + "2016": 0.942, + "2017": 0.944, + "2018": 0.946, + "2019": 0.949, + "2020": 0.952, + "2021": 0.948 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr108", + "Region": "Manawatu-Wanganui", + "1990": 0.84, + "1991": 0.85, + "1992": 0.852, + "1993": 0.858, + "1994": 0.864, + "1995": 0.863, + "1996": 0.863, + "1997": 0.869, + "1998": 0.88, + "1999": 0.874, + "2000": 0.883, + "2001": 0.881, + "2002": 0.885, + "2003": 0.889, + "2004": 0.892, + "2005": 0.903, + "2006": 0.903, + "2007": 0.906, + "2008": 0.909, + "2009": 0.914, + "2010": 0.923, + "2011": 0.92, + "2012": 0.926, + "2013": 0.934, + "2014": 0.936, + "2015": 0.939, + "2016": 0.94, + "2017": 0.942, + "2018": 0.945, + "2019": 0.948, + "2020": 0.95, + "2021": 0.946 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr111", + "Region": "Marlborough", + "1990": 0.872, + "1991": 0.882, + "1992": 0.88, + "1993": 0.88, + "1994": 0.883, + "1995": 0.877, + "1996": 0.873, + "1997": 0.881, + "1998": 0.893, + "1999": 0.888, + "2000": 0.9, + "2001": 0.899, + "2002": 0.902, + "2003": 0.907, + "2004": 0.91, + "2005": 0.921, + "2006": 0.921, + "2007": 0.924, + "2008": 0.926, + "2009": 0.932, + "2010": 0.941, + "2011": 0.939, + "2012": 0.945, + "2013": 0.952, + "2014": 0.955, + "2015": 0.957, + "2016": 0.959, + "2017": 0.961, + "2018": 0.964, + "2019": 0.966, + "2020": 0.969, + "2021": 0.965 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr101", + "Region": "Northland", + "1990": 0.84, + "1991": 0.85, + "1992": 0.85, + "1993": 0.853, + "1994": 0.858, + "1995": 0.854, + "1996": 0.853, + "1997": 0.859, + "1998": 0.87, + "1999": 0.865, + "2000": 0.875, + "2001": 0.874, + "2002": 0.878, + "2003": 0.883, + "2004": 0.888, + "2005": 0.899, + "2006": 0.9, + "2007": 0.904, + "2008": 0.907, + "2009": 0.914, + "2010": 0.923, + "2011": 0.922, + "2012": 0.928, + "2013": 0.937, + "2014": 0.939, + "2015": 0.942, + "2016": 0.943, + "2017": 0.946, + "2018": 0.948, + "2019": 0.951, + "2020": 0.954, + "2021": 0.949 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr114", + "Region": "Otago", + "1990": 0.857, + "1991": 0.867, + "1992": 0.87, + "1993": 0.875, + "1994": 0.882, + "1995": 0.88, + "1996": 0.881, + "1997": 0.889, + "1998": 0.901, + "1999": 0.897, + "2000": 0.908, + "2001": 0.907, + "2002": 0.911, + "2003": 0.915, + "2004": 0.919, + "2005": 0.93, + "2006": 0.93, + "2007": 0.93, + "2008": 0.931, + "2009": 0.934, + "2010": 0.941, + "2011": 0.936, + "2012": 0.94, + "2013": 0.945, + "2014": 0.948, + "2015": 0.95, + "2016": 0.952, + "2017": 0.954, + "2018": 0.957, + "2019": 0.959, + "2020": 0.962, + "2021": 0.958 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr115", + "Region": "Southland", + "1990": 0.836, + "1991": 0.846, + "1992": 0.848, + "1993": 0.853, + "1994": 0.86, + "1995": 0.859, + "1996": 0.859, + "1997": 0.866, + "1998": 0.876, + "1999": 0.87, + "2000": 0.879, + "2001": 0.877, + "2002": 0.881, + "2003": 0.886, + "2004": 0.89, + "2005": 0.902, + "2006": 0.902, + "2007": 0.905, + "2008": 0.907, + "2009": 0.913, + "2010": 0.921, + "2011": 0.919, + "2012": 0.924, + "2013": 0.932, + "2014": 0.934, + "2015": 0.936, + "2016": 0.938, + "2017": 0.94, + "2018": 0.943, + "2019": 0.945, + "2020": 0.948, + "2021": 0.944 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr107", + "Region": "Taranaki", + "1990": 0.848, + "1991": 0.858, + "1992": 0.862, + "1993": 0.87, + "1994": 0.878, + "1995": 0.879, + "1996": 0.882, + "1997": 0.886, + "1998": 0.895, + "1999": 0.888, + "2000": 0.896, + "2001": 0.892, + "2002": 0.894, + "2003": 0.898, + "2004": 0.9, + "2005": 0.91, + "2006": 0.909, + "2007": 0.912, + "2008": 0.915, + "2009": 0.92, + "2010": 0.929, + "2011": 0.927, + "2012": 0.932, + "2013": 0.94, + "2014": 0.942, + "2015": 0.945, + "2016": 0.946, + "2017": 0.949, + "2018": 0.951, + "2019": 0.954, + "2020": 0.957, + "2021": 0.952 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr110", + "Region": "Tasman - Nelson", + "1990": 0.886, + "1991": 0.897, + "1992": 0.893, + "1993": 0.893, + "1994": 0.895, + "1995": 0.888, + "1996": 0.883, + "1997": 0.892, + "1998": 0.905, + "1999": 0.901, + "2000": 0.913, + "2001": 0.913, + "2002": 0.915, + "2003": 0.918, + "2004": 0.921, + "2005": 0.931, + "2006": 0.93, + "2007": 0.932, + "2008": 0.934, + "2009": 0.939, + "2010": 0.947, + "2011": 0.944, + "2012": 0.949, + "2013": 0.956, + "2014": 0.958, + "2015": 0.961, + "2016": 0.963, + "2017": 0.965, + "2018": 0.967, + "2019": 0.97, + "2020": 0.973, + "2021": 0.969 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr103", + "Region": "Waikato", + "1990": 0.849, + "1991": 0.859, + "1992": 0.862, + "1993": 0.867, + "1994": 0.875, + "1995": 0.874, + "1996": 0.875, + "1997": 0.887, + "1998": 0.903, + "1999": 0.903, + "2000": 0.919, + "2001": 0.923, + "2002": 0.919, + "2003": 0.917, + "2004": 0.914, + "2005": 0.918, + "2006": 0.912, + "2007": 0.914, + "2008": 0.917, + "2009": 0.923, + "2010": 0.931, + "2011": 0.929, + "2012": 0.935, + "2013": 0.942, + "2014": 0.944, + "2015": 0.947, + "2016": 0.949, + "2017": 0.951, + "2018": 0.953, + "2019": 0.956, + "2020": 0.959, + "2021": 0.955 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr109", + "Region": "Wellington", + "1990": 0.854, + "1991": 0.864, + "1992": 0.866, + "1993": 0.872, + "1994": 0.879, + "1995": 0.877, + "1996": 0.878, + "1997": 0.886, + "1998": 0.899, + "1999": 0.895, + "2000": 0.907, + "2001": 0.907, + "2002": 0.911, + "2003": 0.917, + "2004": 0.921, + "2005": 0.933, + "2006": 0.934, + "2007": 0.935, + "2008": 0.936, + "2009": 0.939, + "2010": 0.946, + "2011": 0.942, + "2012": 0.946, + "2013": 0.952, + "2014": 0.954, + "2015": 0.957, + "2016": 0.958, + "2017": 0.96, + "2018": 0.963, + "2019": 0.966, + "2020": 0.968, + "2021": 0.964 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr112", + "Region": "West Coast", + "1990": 0.822, + "1991": 0.832, + "1992": 0.834, + "1993": 0.84, + "1994": 0.847, + "1995": 0.846, + "1996": 0.847, + "1997": 0.857, + "1998": 0.872, + "1999": 0.87, + "2000": 0.883, + "2001": 0.885, + "2002": 0.888, + "2003": 0.893, + "2004": 0.897, + "2005": 0.907, + "2006": 0.908, + "2007": 0.91, + "2008": 0.912, + "2009": 0.917, + "2010": 0.925, + "2011": 0.922, + "2012": 0.927, + "2013": 0.934, + "2014": 0.936, + "2015": 0.939, + "2016": 0.94, + "2017": 0.942, + "2018": 0.945, + "2019": 0.948, + "2020": 0.95, + "2021": 0.946 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "National", + "GDLCODE": "NICt", + "Region": "Total", + "1990": 0.663, + "1991": 0.676, + "1992": 0.681, + "1993": 0.687, + "1994": 0.695, + "1995": 0.702, + "1996": 0.708, + "1997": 0.716, + "1998": 0.696, + "1999": 0.725, + "2000": 0.727, + "2001": 0.726, + "2002": 0.726, + "2003": 0.726, + "2004": 0.73, + "2005": 0.737, + "2006": 0.75, + "2007": 0.762, + "2008": 0.778, + "2009": 0.791, + "2010": 0.8, + "2011": 0.806, + "2012": 0.809, + "2013": 0.811, + "2014": 0.812, + "2015": 0.815, + "2016": 0.819, + "2017": 0.824, + "2018": 0.828, + "2019": 0.832, + "2020": 0.797, + "2021": 0.828 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr103", + "Region": "Atlantico (Rio San Juan, Atlantico Norte (Raan), Atlantico Sur (Raas))", + "1990": 0.643, + "1991": 0.656, + "1992": 0.661, + "1993": 0.667, + "1994": 0.675, + "1995": 0.681, + "1996": 0.688, + "1997": 0.695, + "1998": 0.675, + "1999": 0.7, + "2000": 0.698, + "2001": 0.694, + "2002": 0.693, + "2003": 0.694, + "2004": 0.697, + "2005": 0.705, + "2006": 0.716, + "2007": 0.729, + "2008": 0.744, + "2009": 0.757, + "2010": 0.765, + "2011": 0.771, + "2012": 0.774, + "2013": 0.776, + "2014": 0.777, + "2015": 0.78, + "2016": 0.784, + "2017": 0.788, + "2018": 0.793, + "2019": 0.796, + "2020": 0.762, + "2021": 0.793 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr102", + "Region": "Central-Norte (Boaco, Chontales, Jinotega, Matagalpa, Esteli, Madriz, Nueva Segovia)", + "1990": 0.642, + "1991": 0.654, + "1992": 0.66, + "1993": 0.666, + "1994": 0.673, + "1995": 0.68, + "1996": 0.686, + "1997": 0.693, + "1998": 0.674, + "1999": 0.706, + "2000": 0.711, + "2001": 0.714, + "2002": 0.713, + "2003": 0.714, + "2004": 0.717, + "2005": 0.725, + "2006": 0.737, + "2007": 0.75, + "2008": 0.765, + "2009": 0.778, + "2010": 0.787, + "2011": 0.793, + "2012": 0.796, + "2013": 0.797, + "2014": 0.799, + "2015": 0.802, + "2016": 0.806, + "2017": 0.81, + "2018": 0.815, + "2019": 0.818, + "2020": 0.784, + "2021": 0.815 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr101", + "Region": "Pacifico (Chinandega, Leon, Managua, Masaya, Granada, Carazo, Rivas)", + "1990": 0.68, + "1991": 0.693, + "1992": 0.698, + "1993": 0.705, + "1994": 0.713, + "1995": 0.719, + "1996": 0.726, + "1997": 0.733, + "1998": 0.713, + "1999": 0.744, + "2000": 0.747, + "2001": 0.748, + "2002": 0.748, + "2003": 0.748, + "2004": 0.751, + "2005": 0.759, + "2006": 0.772, + "2007": 0.785, + "2008": 0.801, + "2009": 0.814, + "2010": 0.823, + "2011": 0.83, + "2012": 0.833, + "2013": 0.834, + "2014": 0.836, + "2015": 0.839, + "2016": 0.843, + "2017": 0.848, + "2018": 0.852, + "2019": 0.856, + "2020": 0.82, + "2021": 0.852 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "National", + "GDLCODE": "NERt", + "Region": "Total", + "1990": 0.336, + "1991": 0.342, + "1992": 0.353, + "1993": 0.366, + "1994": 0.38, + "1995": 0.397, + "1996": 0.41, + "1997": 0.423, + "1998": 0.434, + "1999": 0.442, + "2000": 0.451, + "2001": 0.459, + "2002": 0.47, + "2003": 0.484, + "2004": 0.501, + "2005": 0.517, + "2006": 0.532, + "2007": 0.547, + "2008": 0.562, + "2009": 0.575, + "2010": 0.59, + "2011": 0.6, + "2012": 0.61, + "2013": 0.619, + "2014": 0.627, + "2015": 0.632, + "2016": 0.64, + "2017": 0.649, + "2018": 0.653, + "2019": 0.66, + "2020": 0.638, + "2021": 0.64 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr101", + "Region": "Agadez", + "1990": 0.348, + "1991": 0.354, + "1992": 0.365, + "1993": 0.379, + "1994": 0.393, + "1995": 0.409, + "1996": 0.423, + "1997": 0.436, + "1998": 0.447, + "1999": 0.465, + "2000": 0.484, + "2001": 0.502, + "2002": 0.523, + "2003": 0.548, + "2004": 0.577, + "2005": 0.603, + "2006": 0.631, + "2007": 0.648, + "2008": 0.665, + "2009": 0.68, + "2010": 0.697, + "2011": 0.709, + "2012": 0.721, + "2013": 0.731, + "2014": 0.74, + "2015": 0.745, + "2016": 0.755, + "2017": 0.764, + "2018": 0.769, + "2019": 0.776, + "2020": 0.752, + "2021": 0.754 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr102", + "Region": "Diffa", + "1990": 0.348, + "1991": 0.354, + "1992": 0.365, + "1993": 0.379, + "1994": 0.393, + "1995": 0.409, + "1996": 0.423, + "1997": 0.436, + "1998": 0.447, + "1999": 0.465, + "2000": 0.484, + "2001": 0.502, + "2002": 0.523, + "2003": 0.548, + "2004": 0.577, + "2005": 0.603, + "2006": 0.631, + "2007": 0.648, + "2008": 0.665, + "2009": 0.68, + "2010": 0.697, + "2011": 0.709, + "2012": 0.721, + "2013": 0.731, + "2014": 0.74, + "2015": 0.745, + "2016": 0.755, + "2017": 0.764, + "2018": 0.769, + "2019": 0.776, + "2020": 0.752, + "2021": 0.754 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr103", + "Region": "Dosso", + "1990": 0.341, + "1991": 0.347, + "1992": 0.358, + "1993": 0.372, + "1994": 0.386, + "1995": 0.402, + "1996": 0.416, + "1997": 0.429, + "1998": 0.44, + "1999": 0.447, + "2000": 0.456, + "2001": 0.464, + "2002": 0.474, + "2003": 0.487, + "2004": 0.504, + "2005": 0.519, + "2006": 0.534, + "2007": 0.541, + "2008": 0.548, + "2009": 0.553, + "2010": 0.56, + "2011": 0.562, + "2012": 0.564, + "2013": 0.573, + "2014": 0.581, + "2015": 0.585, + "2016": 0.593, + "2017": 0.601, + "2018": 0.605, + "2019": 0.612, + "2020": 0.591, + "2021": 0.593 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr104", + "Region": "Maradi", + "1990": 0.374, + "1991": 0.38, + "1992": 0.392, + "1993": 0.406, + "1994": 0.42, + "1995": 0.438, + "1996": 0.452, + "1997": 0.466, + "1998": 0.477, + "1999": 0.479, + "2000": 0.482, + "2001": 0.484, + "2002": 0.488, + "2003": 0.496, + "2004": 0.507, + "2005": 0.515, + "2006": 0.524, + "2007": 0.537, + "2008": 0.55, + "2009": 0.562, + "2010": 0.576, + "2011": 0.584, + "2012": 0.593, + "2013": 0.602, + "2014": 0.61, + "2015": 0.614, + "2016": 0.623, + "2017": 0.631, + "2018": 0.635, + "2019": 0.642, + "2020": 0.62, + "2021": 0.622 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr106", + "Region": "Tahoua", + "1990": 0.34, + "1991": 0.346, + "1992": 0.357, + "1993": 0.37, + "1994": 0.384, + "1995": 0.401, + "1996": 0.415, + "1997": 0.428, + "1998": 0.438, + "1999": 0.446, + "2000": 0.455, + "2001": 0.463, + "2002": 0.474, + "2003": 0.487, + "2004": 0.505, + "2005": 0.52, + "2006": 0.535, + "2007": 0.552, + "2008": 0.57, + "2009": 0.586, + "2010": 0.604, + "2011": 0.616, + "2012": 0.629, + "2013": 0.638, + "2014": 0.647, + "2015": 0.651, + "2016": 0.66, + "2017": 0.668, + "2018": 0.673, + "2019": 0.68, + "2020": 0.657, + "2021": 0.659 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr105", + "Region": "Tillabery (incl Niamey)", + "1990": 0.349, + "1991": 0.354, + "1992": 0.366, + "1993": 0.38, + "1994": 0.394, + "1995": 0.41, + "1996": 0.424, + "1997": 0.437, + "1998": 0.448, + "1999": 0.459, + "2000": 0.471, + "2001": 0.482, + "2002": 0.495, + "2003": 0.512, + "2004": 0.533, + "2005": 0.551, + "2006": 0.57, + "2007": 0.581, + "2008": 0.591, + "2009": 0.601, + "2010": 0.612, + "2011": 0.617, + "2012": 0.623, + "2013": 0.632, + "2014": 0.641, + "2015": 0.645, + "2016": 0.654, + "2017": 0.662, + "2018": 0.667, + "2019": 0.673, + "2020": 0.651, + "2021": 0.653 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr107", + "Region": "Zinder", + "1990": 0.355, + "1991": 0.361, + "1992": 0.373, + "1993": 0.387, + "1994": 0.401, + "1995": 0.418, + "1996": 0.432, + "1997": 0.445, + "1998": 0.456, + "1999": 0.459, + "2000": 0.463, + "2001": 0.466, + "2002": 0.472, + "2003": 0.48, + "2004": 0.492, + "2005": 0.502, + "2006": 0.511, + "2007": 0.528, + "2008": 0.544, + "2009": 0.56, + "2010": 0.576, + "2011": 0.588, + "2012": 0.6, + "2013": 0.609, + "2014": 0.617, + "2015": 0.622, + "2016": 0.63, + "2017": 0.638, + "2018": 0.642, + "2019": 0.649, + "2020": 0.627, + "2021": 0.629 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "National", + "GDLCODE": "NGAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.438, + "2004": 0.443, + "2005": 0.451, + "2006": 0.457, + "2007": 0.462, + "2008": 0.465, + "2009": 0.472, + "2010": 0.476, + "2011": 0.482, + "2012": 0.485, + "2013": 0.488, + "2014": 0.489, + "2015": 0.49, + "2016": 0.493, + "2017": 0.497, + "2018": 0.501, + "2019": 0.506, + "2020": 0.506, + "2021": 0.503 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr122", + "Region": "Abia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.575, + "2004": 0.552, + "2005": 0.533, + "2006": 0.513, + "2007": 0.491, + "2008": 0.467, + "2009": 0.477, + "2010": 0.484, + "2011": 0.493, + "2012": 0.498, + "2013": 0.503, + "2014": 0.515, + "2015": 0.527, + "2016": 0.54, + "2017": 0.555, + "2018": 0.569, + "2019": 0.575, + "2020": 0.575, + "2021": 0.571 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr137", + "Region": "Abuja FCT", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.459, + "2004": 0.472, + "2005": 0.487, + "2006": 0.501, + "2007": 0.513, + "2008": 0.523, + "2009": 0.541, + "2010": 0.555, + "2011": 0.572, + "2012": 0.584, + "2013": 0.598, + "2014": 0.595, + "2015": 0.591, + "2016": 0.591, + "2017": 0.591, + "2018": 0.591, + "2019": 0.597, + "2020": 0.597, + "2021": 0.593 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr108", + "Region": "Adamawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.441, + "2004": 0.436, + "2005": 0.435, + "2006": 0.432, + "2007": 0.427, + "2008": 0.421, + "2009": 0.431, + "2010": 0.436, + "2011": 0.444, + "2012": 0.449, + "2013": 0.454, + "2014": 0.47, + "2015": 0.485, + "2016": 0.502, + "2017": 0.521, + "2018": 0.539, + "2019": 0.545, + "2020": 0.544, + "2021": 0.541 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr101", + "Region": "Akwa Ibom", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.488, + "2004": 0.488, + "2005": 0.491, + "2006": 0.493, + "2007": 0.493, + "2008": 0.491, + "2009": 0.514, + "2010": 0.533, + "2011": 0.556, + "2012": 0.573, + "2013": 0.591, + "2014": 0.581, + "2015": 0.57, + "2016": 0.562, + "2017": 0.555, + "2018": 0.548, + "2019": 0.554, + "2020": 0.553, + "2021": 0.55 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr102", + "Region": "Anambra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.6, + "2004": 0.58, + "2005": 0.564, + "2006": 0.546, + "2007": 0.527, + "2008": 0.505, + "2009": 0.523, + "2010": 0.536, + "2011": 0.552, + "2012": 0.563, + "2013": 0.576, + "2014": 0.584, + "2015": 0.592, + "2016": 0.602, + "2017": 0.613, + "2018": 0.624, + "2019": 0.63, + "2020": 0.63, + "2021": 0.626 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr103", + "Region": "Bauchi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.419, + "2004": 0.418, + "2005": 0.42, + "2006": 0.421, + "2007": 0.42, + "2008": 0.417, + "2009": 0.419, + "2010": 0.417, + "2011": 0.418, + "2012": 0.415, + "2013": 0.413, + "2014": 0.425, + "2015": 0.436, + "2016": 0.449, + "2017": 0.463, + "2018": 0.476, + "2019": 0.482, + "2020": 0.481, + "2021": 0.478 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr131", + "Region": "Bayelsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.449, + "2004": 0.447, + "2005": 0.447, + "2006": 0.447, + "2007": 0.444, + "2008": 0.439, + "2009": 0.468, + "2010": 0.493, + "2011": 0.521, + "2012": 0.544, + "2013": 0.569, + "2014": 0.591, + "2015": 0.612, + "2016": 0.636, + "2017": 0.66, + "2018": 0.685, + "2019": 0.692, + "2020": 0.691, + "2021": 0.687 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr105", + "Region": "Benue", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.486, + "2004": 0.482, + "2005": 0.481, + "2006": 0.479, + "2007": 0.475, + "2008": 0.469, + "2009": 0.48, + "2010": 0.488, + "2011": 0.498, + "2012": 0.504, + "2013": 0.511, + "2014": 0.532, + "2015": 0.552, + "2016": 0.575, + "2017": 0.599, + "2018": 0.623, + "2019": 0.629, + "2020": 0.628, + "2021": 0.625 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr106", + "Region": "Borno", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.419, + "2004": 0.417, + "2005": 0.419, + "2006": 0.418, + "2007": 0.416, + "2008": 0.413, + "2009": 0.452, + "2010": 0.487, + "2011": 0.525, + "2012": 0.558, + "2013": 0.592, + "2014": 0.586, + "2015": 0.58, + "2016": 0.576, + "2017": 0.573, + "2018": 0.57, + "2019": 0.576, + "2020": 0.576, + "2021": 0.572 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr107", + "Region": "Cross River", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.536, + "2004": 0.542, + "2005": 0.552, + "2006": 0.559, + "2007": 0.565, + "2008": 0.568, + "2009": 0.567, + "2010": 0.562, + "2011": 0.559, + "2012": 0.552, + "2013": 0.547, + "2014": 0.553, + "2015": 0.558, + "2016": 0.566, + "2017": 0.575, + "2018": 0.583, + "2019": 0.589, + "2020": 0.589, + "2021": 0.585 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr123", + "Region": "Delta", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.479, + "2004": 0.489, + "2005": 0.501, + "2006": 0.512, + "2007": 0.521, + "2008": 0.528, + "2009": 0.538, + "2010": 0.545, + "2011": 0.555, + "2012": 0.56, + "2013": 0.566, + "2014": 0.578, + "2015": 0.59, + "2016": 0.604, + "2017": 0.619, + "2018": 0.634, + "2019": 0.641, + "2020": 0.64, + "2021": 0.637 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr132", + "Region": "Ebonyi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.422, + "2004": 0.433, + "2005": 0.447, + "2006": 0.459, + "2007": 0.469, + "2008": 0.478, + "2009": 0.475, + "2010": 0.468, + "2011": 0.464, + "2012": 0.455, + "2013": 0.448, + "2014": 0.47, + "2015": 0.491, + "2016": 0.513, + "2017": 0.537, + "2018": 0.561, + "2019": 0.567, + "2020": 0.566, + "2021": 0.563 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr104", + "Region": "Edo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.446, + "2004": 0.462, + "2005": 0.482, + "2006": 0.501, + "2007": 0.517, + "2008": 0.531, + "2009": 0.55, + "2010": 0.564, + "2011": 0.581, + "2012": 0.594, + "2013": 0.607, + "2014": 0.604, + "2015": 0.6, + "2016": 0.599, + "2017": 0.599, + "2018": 0.599, + "2019": 0.605, + "2020": 0.605, + "2021": 0.601 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr133", + "Region": "Ekiti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.474, + "2004": 0.489, + "2005": 0.508, + "2006": 0.525, + "2007": 0.539, + "2008": 0.552, + "2009": 0.554, + "2010": 0.551, + "2011": 0.552, + "2012": 0.548, + "2013": 0.545, + "2014": 0.545, + "2015": 0.545, + "2016": 0.548, + "2017": 0.551, + "2018": 0.554, + "2019": 0.56, + "2020": 0.56, + "2021": 0.556 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr124", + "Region": "Enugu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.56, + "2004": 0.546, + "2005": 0.535, + "2006": 0.523, + "2007": 0.508, + "2008": 0.492, + "2009": 0.504, + "2010": 0.511, + "2011": 0.522, + "2012": 0.528, + "2013": 0.535, + "2014": 0.55, + "2015": 0.565, + "2016": 0.582, + "2017": 0.6, + "2018": 0.618, + "2019": 0.624, + "2020": 0.624, + "2021": 0.62 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr134", + "Region": "Gombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.418, + "2004": 0.423, + "2005": 0.431, + "2006": 0.437, + "2007": 0.442, + "2008": 0.445, + "2009": 0.447, + "2010": 0.445, + "2011": 0.447, + "2012": 0.444, + "2013": 0.442, + "2014": 0.439, + "2015": 0.436, + "2016": 0.434, + "2017": 0.434, + "2018": 0.433, + "2019": 0.438, + "2020": 0.438, + "2021": 0.435 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr109", + "Region": "Imo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.734, + "2004": 0.68, + "2005": 0.631, + "2006": 0.58, + "2007": 0.527, + "2008": 0.473, + "2009": 0.482, + "2010": 0.486, + "2011": 0.494, + "2012": 0.497, + "2013": 0.502, + "2014": 0.514, + "2015": 0.525, + "2016": 0.539, + "2017": 0.554, + "2018": 0.568, + "2019": 0.574, + "2020": 0.574, + "2021": 0.57 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr125", + "Region": "Jigawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.426, + "2004": 0.426, + "2005": 0.429, + "2006": 0.43, + "2007": 0.43, + "2008": 0.428, + "2009": 0.429, + "2010": 0.426, + "2011": 0.426, + "2012": 0.422, + "2013": 0.419, + "2014": 0.417, + "2015": 0.414, + "2016": 0.414, + "2017": 0.415, + "2018": 0.415, + "2019": 0.42, + "2020": 0.42, + "2021": 0.417 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr110", + "Region": "Kaduna", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.445, + "2004": 0.448, + "2005": 0.455, + "2006": 0.46, + "2007": 0.463, + "2008": 0.465, + "2009": 0.496, + "2010": 0.523, + "2011": 0.552, + "2012": 0.577, + "2013": 0.603, + "2014": 0.567, + "2015": 0.531, + "2016": 0.498, + "2017": 0.466, + "2018": 0.434, + "2019": 0.439, + "2020": 0.439, + "2021": 0.436 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr111", + "Region": "Kano", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.419, + "2004": 0.416, + "2005": 0.417, + "2006": 0.416, + "2007": 0.414, + "2008": 0.41, + "2009": 0.425, + "2010": 0.436, + "2011": 0.45, + "2012": 0.46, + "2013": 0.471, + "2014": 0.467, + "2015": 0.462, + "2016": 0.46, + "2017": 0.458, + "2018": 0.457, + "2019": 0.462, + "2020": 0.462, + "2021": 0.459 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr112", + "Region": "Katsina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.421, + "2004": 0.422, + "2005": 0.426, + "2006": 0.429, + "2007": 0.43, + "2008": 0.43, + "2009": 0.43, + "2010": 0.426, + "2011": 0.426, + "2012": 0.421, + "2013": 0.417, + "2014": 0.419, + "2015": 0.421, + "2016": 0.425, + "2017": 0.429, + "2018": 0.433, + "2019": 0.438, + "2020": 0.438, + "2021": 0.435 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr126", + "Region": "Kebbi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.424, + "2004": 0.439, + "2005": 0.457, + "2006": 0.473, + "2007": 0.487, + "2008": 0.5, + "2009": 0.49, + "2010": 0.476, + "2011": 0.464, + "2012": 0.449, + "2013": 0.435, + "2014": 0.426, + "2015": 0.417, + "2016": 0.41, + "2017": 0.404, + "2018": 0.398, + "2019": 0.403, + "2020": 0.402, + "2021": 0.4 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr127", + "Region": "Kogi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.524, + "2004": 0.532, + "2005": 0.543, + "2006": 0.552, + "2007": 0.559, + "2008": 0.564, + "2009": 0.576, + "2010": 0.583, + "2011": 0.593, + "2012": 0.599, + "2013": 0.605, + "2014": 0.578, + "2015": 0.55, + "2016": 0.525, + "2017": 0.501, + "2018": 0.476, + "2019": 0.482, + "2020": 0.481, + "2021": 0.478 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr113", + "Region": "Kwara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.675, + "2004": 0.66, + "2005": 0.65, + "2006": 0.638, + "2007": 0.624, + "2008": 0.608, + "2009": 0.614, + "2010": 0.616, + "2011": 0.621, + "2012": 0.621, + "2013": 0.623, + "2014": 0.615, + "2015": 0.607, + "2016": 0.601, + "2017": 0.597, + "2018": 0.593, + "2019": 0.599, + "2020": 0.598, + "2021": 0.595 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr114", + "Region": "Lagos", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.567, + "2004": 0.568, + "2005": 0.573, + "2006": 0.577, + "2007": 0.577, + "2008": 0.577, + "2009": 0.577, + "2010": 0.573, + "2011": 0.572, + "2012": 0.566, + "2013": 0.562, + "2014": 0.572, + "2015": 0.582, + "2016": 0.595, + "2017": 0.608, + "2018": 0.622, + "2019": 0.628, + "2020": 0.627, + "2021": 0.624 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr135", + "Region": "Nassarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.439, + "2004": 0.456, + "2005": 0.476, + "2006": 0.495, + "2007": 0.511, + "2008": 0.526, + "2009": 0.528, + "2010": 0.526, + "2011": 0.527, + "2012": 0.524, + "2013": 0.522, + "2014": 0.519, + "2015": 0.515, + "2016": 0.514, + "2017": 0.514, + "2018": 0.513, + "2019": 0.519, + "2020": 0.518, + "2021": 0.515 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr115", + "Region": "Niger", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.456, + "2004": 0.458, + "2005": 0.464, + "2006": 0.468, + "2007": 0.471, + "2008": 0.471, + "2009": 0.496, + "2010": 0.516, + "2011": 0.54, + "2012": 0.558, + "2013": 0.578, + "2014": 0.571, + "2015": 0.563, + "2016": 0.558, + "2017": 0.553, + "2018": 0.549, + "2019": 0.555, + "2020": 0.555, + "2021": 0.551 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr116", + "Region": "Ogun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.521, + "2004": 0.524, + "2005": 0.531, + "2006": 0.537, + "2007": 0.54, + "2008": 0.542, + "2009": 0.55, + "2010": 0.553, + "2011": 0.56, + "2012": 0.562, + "2013": 0.566, + "2014": 0.589, + "2015": 0.611, + "2016": 0.635, + "2017": 0.661, + "2018": 0.686, + "2019": 0.693, + "2020": 0.693, + "2021": 0.689 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr117", + "Region": "Ondo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.562, + "2004": 0.564, + "2005": 0.569, + "2006": 0.573, + "2007": 0.575, + "2008": 0.575, + "2009": 0.567, + "2010": 0.556, + "2011": 0.547, + "2012": 0.534, + "2013": 0.522, + "2014": 0.533, + "2015": 0.543, + "2016": 0.556, + "2017": 0.569, + "2018": 0.583, + "2019": 0.589, + "2020": 0.588, + "2021": 0.585 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr128", + "Region": "Osun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.459, + "2004": 0.497, + "2005": 0.537, + "2006": 0.577, + "2007": 0.613, + "2008": 0.647, + "2009": 0.647, + "2010": 0.642, + "2011": 0.64, + "2012": 0.634, + "2013": 0.628, + "2014": 0.621, + "2015": 0.613, + "2016": 0.608, + "2017": 0.604, + "2018": 0.6, + "2019": 0.606, + "2020": 0.605, + "2021": 0.602 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr118", + "Region": "Oyo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.664, + "2004": 0.653, + "2005": 0.646, + "2006": 0.637, + "2007": 0.626, + "2008": 0.613, + "2009": 0.613, + "2010": 0.609, + "2011": 0.608, + "2012": 0.602, + "2013": 0.597, + "2014": 0.599, + "2015": 0.6, + "2016": 0.603, + "2017": 0.608, + "2018": 0.613, + "2019": 0.619, + "2020": 0.618, + "2021": 0.615 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr119", + "Region": "Plateau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.479, + "2004": 0.489, + "2005": 0.501, + "2006": 0.513, + "2007": 0.522, + "2008": 0.529, + "2009": 0.527, + "2010": 0.521, + "2011": 0.519, + "2012": 0.512, + "2013": 0.506, + "2014": 0.511, + "2015": 0.514, + "2016": 0.521, + "2017": 0.528, + "2018": 0.535, + "2019": 0.541, + "2020": 0.54, + "2021": 0.537 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr120", + "Region": "Rivers", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.446, + "2004": 0.454, + "2005": 0.464, + "2006": 0.473, + "2007": 0.48, + "2008": 0.485, + "2009": 0.503, + "2010": 0.517, + "2011": 0.533, + "2012": 0.545, + "2013": 0.558, + "2014": 0.561, + "2015": 0.564, + "2016": 0.57, + "2017": 0.576, + "2018": 0.582, + "2019": 0.588, + "2020": 0.588, + "2021": 0.584 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr121", + "Region": "Sokoto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.418, + "2004": 0.416, + "2005": 0.416, + "2006": 0.415, + "2007": 0.413, + "2008": 0.408, + "2009": 0.414, + "2010": 0.416, + "2011": 0.421, + "2012": 0.422, + "2013": 0.423, + "2014": 0.423, + "2015": 0.422, + "2016": 0.423, + "2017": 0.424, + "2018": 0.426, + "2019": 0.431, + "2020": 0.431, + "2021": 0.428 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr129", + "Region": "Taraba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.423, + "2004": 0.426, + "2005": 0.432, + "2006": 0.437, + "2007": 0.439, + "2008": 0.44, + "2009": 0.451, + "2010": 0.458, + "2011": 0.467, + "2012": 0.472, + "2013": 0.479, + "2014": 0.482, + "2015": 0.484, + "2016": 0.489, + "2017": 0.495, + "2018": 0.5, + "2019": 0.506, + "2020": 0.506, + "2021": 0.502 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr130", + "Region": "Yobe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.42, + "2004": 0.425, + "2005": 0.433, + "2006": 0.439, + "2007": 0.444, + "2008": 0.446, + "2009": 0.458, + "2010": 0.465, + "2011": 0.475, + "2012": 0.482, + "2013": 0.489, + "2014": 0.484, + "2015": 0.478, + "2016": 0.475, + "2017": 0.473, + "2018": 0.47, + "2019": 0.476, + "2020": 0.475, + "2021": 0.472 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr136", + "Region": "Zamfora", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.428, + "2004": 0.431, + "2005": 0.437, + "2006": 0.441, + "2007": 0.444, + "2008": 0.445, + "2009": 0.439, + "2010": 0.43, + "2011": 0.423, + "2012": 0.412, + "2013": 0.403, + "2014": 0.421, + "2015": 0.439, + "2016": 0.458, + "2017": 0.479, + "2018": 0.499, + "2019": 0.504, + "2020": 0.504, + "2021": 0.501 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "National", + "GDLCODE": "MKDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.813, + "2001": 0.819, + "2002": 0.818, + "2003": 0.821, + "2004": 0.827, + "2005": 0.827, + "2006": 0.831, + "2007": 0.829, + "2008": 0.839, + "2009": 0.842, + "2010": 0.848, + "2011": 0.849, + "2012": 0.848, + "2013": 0.859, + "2014": 0.861, + "2015": 0.861, + "2016": 0.862, + "2017": 0.869, + "2018": 0.882, + "2019": 0.881, + "2020": 0.849, + "2021": 0.828 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr108", + "Region": "East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.836, + "2001": 0.842, + "2002": 0.841, + "2003": 0.845, + "2004": 0.851, + "2005": 0.85, + "2006": 0.852, + "2007": 0.849, + "2008": 0.856, + "2009": 0.857, + "2010": 0.862, + "2011": 0.861, + "2012": 0.858, + "2013": 0.867, + "2014": 0.866, + "2015": 0.865, + "2016": 0.864, + "2017": 0.869, + "2018": 0.88, + "2019": 0.877, + "2020": 0.845, + "2021": 0.824 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr104", + "Region": "North East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.822, + "2001": 0.828, + "2002": 0.827, + "2003": 0.83, + "2004": 0.836, + "2005": 0.836, + "2006": 0.838, + "2007": 0.834, + "2008": 0.842, + "2009": 0.843, + "2010": 0.847, + "2011": 0.846, + "2012": 0.844, + "2013": 0.853, + "2014": 0.852, + "2015": 0.851, + "2016": 0.849, + "2017": 0.854, + "2018": 0.865, + "2019": 0.863, + "2020": 0.83, + "2021": 0.81 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr102", + "Region": "Pelagoniski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.805, + "2001": 0.81, + "2002": 0.809, + "2003": 0.813, + "2004": 0.819, + "2005": 0.818, + "2006": 0.82, + "2007": 0.817, + "2008": 0.824, + "2009": 0.825, + "2010": 0.829, + "2011": 0.828, + "2012": 0.826, + "2013": 0.835, + "2014": 0.834, + "2015": 0.833, + "2016": 0.831, + "2017": 0.836, + "2018": 0.847, + "2019": 0.844, + "2020": 0.813, + "2021": 0.793 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr107", + "Region": "Poloski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.81, + "2001": 0.816, + "2002": 0.815, + "2003": 0.818, + "2004": 0.824, + "2005": 0.824, + "2006": 0.826, + "2007": 0.822, + "2008": 0.83, + "2009": 0.831, + "2010": 0.835, + "2011": 0.834, + "2012": 0.831, + "2013": 0.84, + "2014": 0.84, + "2015": 0.838, + "2016": 0.837, + "2017": 0.842, + "2018": 0.852, + "2019": 0.85, + "2020": 0.818, + "2021": 0.798 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr101", + "Region": "Skopski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.806, + "2001": 0.812, + "2002": 0.811, + "2003": 0.814, + "2004": 0.82, + "2005": 0.82, + "2006": 0.825, + "2007": 0.824, + "2008": 0.835, + "2009": 0.839, + "2010": 0.847, + "2011": 0.849, + "2012": 0.849, + "2013": 0.862, + "2014": 0.864, + "2015": 0.866, + "2016": 0.868, + "2017": 0.876, + "2018": 0.89, + "2019": 0.891, + "2020": 0.858, + "2021": 0.837 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr106", + "Region": "South East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.791, + "2001": 0.797, + "2002": 0.795, + "2003": 0.799, + "2004": 0.805, + "2005": 0.804, + "2006": 0.806, + "2007": 0.803, + "2008": 0.811, + "2009": 0.811, + "2010": 0.816, + "2011": 0.815, + "2012": 0.812, + "2013": 0.821, + "2014": 0.82, + "2015": 0.819, + "2016": 0.818, + "2017": 0.822, + "2018": 0.833, + "2019": 0.83, + "2020": 0.799, + "2021": 0.78 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr105", + "Region": "South West", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.825, + "2001": 0.831, + "2002": 0.83, + "2003": 0.834, + "2004": 0.84, + "2005": 0.839, + "2006": 0.841, + "2007": 0.838, + "2008": 0.845, + "2009": 0.846, + "2010": 0.851, + "2011": 0.85, + "2012": 0.847, + "2013": 0.856, + "2014": 0.855, + "2015": 0.854, + "2016": 0.853, + "2017": 0.857, + "2018": 0.868, + "2019": 0.866, + "2020": 0.834, + "2021": 0.814 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr103", + "Region": "Vardarski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.813, + "2001": 0.819, + "2002": 0.818, + "2003": 0.821, + "2004": 0.827, + "2005": 0.827, + "2006": 0.831, + "2007": 0.829, + "2008": 0.839, + "2009": 0.842, + "2010": 0.848, + "2011": 0.849, + "2012": 0.848, + "2013": 0.859, + "2014": 0.861, + "2015": 0.861, + "2016": 0.862, + "2017": 0.869, + "2018": 0.882, + "2019": 0.881, + "2020": 0.849, + "2021": 0.828 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "National", + "GDLCODE": "NORt", + "Region": "Total", + "1990": 0.871, + "1991": 0.878, + "1992": 0.881, + "1993": 0.88, + "1994": 0.889, + "1995": 0.889, + "1996": 0.896, + "1997": 0.896, + "1998": 0.899, + "1999": 0.898, + "2000": 0.903, + "2001": 0.906, + "2002": 0.907, + "2003": 0.916, + "2004": 0.923, + "2005": 0.926, + "2006": 0.93, + "2007": 0.931, + "2008": 0.934, + "2009": 0.936, + "2010": 0.939, + "2011": 0.942, + "2012": 0.945, + "2013": 0.949, + "2014": 0.955, + "2015": 0.958, + "2016": 0.96, + "2017": 0.963, + "2018": 0.966, + "2019": 0.969, + "2020": 0.972, + "2021": 0.973 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr104", + "Region": "Agder og Rogaland", + "1990": 0.876, + "1991": 0.882, + "1992": 0.891, + "1993": 0.89, + "1994": 0.892, + "1995": 0.891, + "1996": 0.901, + "1997": 0.903, + "1998": 0.904, + "1999": 0.902, + "2000": 0.904, + "2001": 0.908, + "2002": 0.908, + "2003": 0.918, + "2004": 0.929, + "2005": 0.929, + "2006": 0.936, + "2007": 0.934, + "2008": 0.936, + "2009": 0.939, + "2010": 0.936, + "2011": 0.939, + "2012": 0.945, + "2013": 0.95, + "2014": 0.959, + "2015": 0.968, + "2016": 0.96, + "2017": 0.963, + "2018": 0.959, + "2019": 0.971, + "2020": 0.975, + "2021": 0.975 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr102", + "Region": "Hedmark og Oppland", + "1990": 0.867, + "1991": 0.871, + "1992": 0.875, + "1993": 0.876, + "1994": 0.881, + "1995": 0.884, + "1996": 0.889, + "1997": 0.888, + "1998": 0.887, + "1999": 0.891, + "2000": 0.899, + "2001": 0.897, + "2002": 0.882, + "2003": 0.905, + "2004": 0.918, + "2005": 0.919, + "2006": 0.925, + "2007": 0.926, + "2008": 0.922, + "2009": 0.922, + "2010": 0.925, + "2011": 0.936, + "2012": 0.931, + "2013": 0.934, + "2014": 0.939, + "2015": 0.953, + "2016": 0.948, + "2017": 0.951, + "2018": 0.948, + "2019": 0.956, + "2020": 0.959, + "2021": 0.96 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr107", + "Region": "Nord-Norge", + "1990": 0.858, + "1991": 0.863, + "1992": 0.866, + "1993": 0.87, + "1994": 0.877, + "1995": 0.879, + "1996": 0.88, + "1997": 0.88, + "1998": 0.886, + "1999": 0.892, + "2000": 0.898, + "2001": 0.892, + "2002": 0.903, + "2003": 0.908, + "2004": 0.92, + "2005": 0.923, + "2006": 0.925, + "2007": 0.923, + "2008": 0.922, + "2009": 0.931, + "2010": 0.931, + "2011": 0.93, + "2012": 0.935, + "2013": 0.937, + "2014": 0.947, + "2015": 0.957, + "2016": 0.951, + "2017": 0.954, + "2018": 0.956, + "2019": 0.953, + "2020": 0.956, + "2021": 0.957 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr101", + "Region": "Oslo og Akershus", + "1990": 0.862, + "1991": 0.874, + "1992": 0.877, + "1993": 0.873, + "1994": 0.883, + "1995": 0.885, + "1996": 0.89, + "1997": 0.897, + "1998": 0.895, + "1999": 0.896, + "2000": 0.902, + "2001": 0.904, + "2002": 0.903, + "2003": 0.918, + "2004": 0.926, + "2005": 0.931, + "2006": 0.937, + "2007": 0.936, + "2008": 0.936, + "2009": 0.94, + "2010": 0.944, + "2011": 0.948, + "2012": 0.949, + "2013": 0.956, + "2014": 0.962, + "2015": 0.942, + "2016": 0.968, + "2017": 0.971, + "2018": 0.974, + "2019": 0.983, + "2020": 0.987, + "2021": 0.988 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr103", + "Region": "Sor-Ostlandet", + "1990": 0.865, + "1991": 0.876, + "1992": 0.877, + "1993": 0.876, + "1994": 0.884, + "1995": 0.882, + "1996": 0.893, + "1997": 0.889, + "1998": 0.893, + "1999": 0.889, + "2000": 0.895, + "2001": 0.897, + "2002": 0.897, + "2003": 0.912, + "2004": 0.92, + "2005": 0.92, + "2006": 0.926, + "2007": 0.923, + "2008": 0.925, + "2009": 0.925, + "2010": 0.933, + "2011": 0.937, + "2012": 0.939, + "2013": 0.941, + "2014": 0.947, + "2015": 0.957, + "2016": 0.954, + "2017": 0.955, + "2018": 0.962, + "2019": 0.966, + "2020": 0.97, + "2021": 0.971 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr106", + "Region": "Trondelag", + "1990": 0.871, + "1991": 0.874, + "1992": 0.871, + "1993": 0.884, + "1994": 0.895, + "1995": 0.891, + "1996": 0.901, + "1997": 0.895, + "1998": 0.903, + "1999": 0.905, + "2000": 0.907, + "2001": 0.92, + "2002": 0.905, + "2003": 0.923, + "2004": 0.933, + "2005": 0.934, + "2006": 0.934, + "2007": 0.933, + "2008": 0.939, + "2009": 0.94, + "2010": 0.942, + "2011": 0.944, + "2012": 0.954, + "2013": 0.953, + "2014": 0.956, + "2015": 0.97, + "2016": 0.965, + "2017": 0.962, + "2018": 0.968, + "2019": 0.973, + "2020": 0.976, + "2021": 0.977 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr105", + "Region": "Vestlandet", + "1990": 0.891, + "1991": 0.894, + "1992": 0.898, + "1993": 0.893, + "1994": 0.906, + "1995": 0.908, + "1996": 0.912, + "1997": 0.911, + "1998": 0.915, + "1999": 0.912, + "2000": 0.921, + "2001": 0.924, + "2002": 0.92, + "2003": 0.931, + "2004": 0.946, + "2005": 0.948, + "2006": 0.95, + "2007": 0.942, + "2008": 0.947, + "2009": 0.951, + "2010": 0.951, + "2011": 0.951, + "2012": 0.955, + "2013": 0.957, + "2014": 0.963, + "2015": 0.97, + "2016": 0.963, + "2017": 0.974, + "2018": 0.974, + "2019": 0.98, + "2020": 0.984, + "2021": 0.985 + }, + { + "Country": "Oman", + "Continent": "Asia/Pacific", + "ISO_Code": "OMN", + "Level": "National", + "GDLCODE": "OMNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.823, + "2001": 0.828, + "2002": 0.829, + "2003": 0.833, + "2004": 0.836, + "2005": 0.837, + "2006": 0.838, + "2007": 0.838, + "2008": 0.84, + "2009": 0.841, + "2010": 0.866, + "2011": 0.871, + "2012": 0.878, + "2013": 0.881, + "2014": 0.884, + "2015": 0.887, + "2016": 0.891, + "2017": 0.891, + "2018": 0.892, + "2019": 0.892, + "2020": 0.842, + "2021": 0.808 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "National", + "GDLCODE": "PAKt", + "Region": "Total", + "1990": 0.616, + "1991": 0.619, + "1992": 0.617, + "1993": 0.614, + "1994": 0.617, + "1995": 0.614, + "1996": 0.622, + "1997": 0.625, + "1998": 0.632, + "1999": 0.641, + "2000": 0.648, + "2001": 0.653, + "2002": 0.656, + "2003": 0.659, + "2004": 0.662, + "2005": 0.653, + "2006": 0.673, + "2007": 0.675, + "2008": 0.677, + "2009": 0.679, + "2010": 0.684, + "2011": 0.687, + "2012": 0.689, + "2013": 0.695, + "2014": 0.697, + "2015": 0.703, + "2016": 0.706, + "2017": 0.712, + "2018": 0.715, + "2019": 0.719, + "2020": 0.712, + "2021": 0.709 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr107", + "Region": "AJK", + "1990": 0.553, + "1991": 0.559, + "1992": 0.554, + "1993": 0.549, + "1994": 0.554, + "1995": 0.548, + "1996": 0.563, + "1997": 0.569, + "1998": 0.583, + "1999": 0.6, + "2000": 0.612, + "2001": 0.622, + "2002": 0.628, + "2003": 0.634, + "2004": 0.641, + "2005": 0.623, + "2006": 0.661, + "2007": 0.665, + "2008": 0.671, + "2009": 0.675, + "2010": 0.684, + "2011": 0.691, + "2012": 0.696, + "2013": 0.7, + "2014": 0.697, + "2015": 0.702, + "2016": 0.701, + "2017": 0.706, + "2018": 0.705, + "2019": 0.713, + "2020": 0.698, + "2021": 0.693 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr104", + "Region": "Balochistan", + "1990": 0.682, + "1991": 0.685, + "1992": 0.683, + "1993": 0.68, + "1994": 0.683, + "1995": 0.679, + "1996": 0.687, + "1997": 0.691, + "1998": 0.699, + "1999": 0.708, + "2000": 0.715, + "2001": 0.721, + "2002": 0.724, + "2003": 0.728, + "2004": 0.731, + "2005": 0.721, + "2006": 0.742, + "2007": 0.744, + "2008": 0.729, + "2009": 0.711, + "2010": 0.697, + "2011": 0.682, + "2012": 0.665, + "2013": 0.674, + "2014": 0.68, + "2015": 0.69, + "2016": 0.697, + "2017": 0.707, + "2018": 0.713, + "2019": 0.718, + "2020": 0.71, + "2021": 0.708 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr108", + "Region": "FATA", + "1990": 0.749, + "1991": 0.753, + "1992": 0.75, + "1993": 0.747, + "1994": 0.75, + "1995": 0.746, + "1996": 0.755, + "1997": 0.759, + "1998": 0.767, + "1999": 0.778, + "2000": 0.785, + "2001": 0.791, + "2002": 0.794, + "2003": 0.798, + "2004": 0.802, + "2005": 0.791, + "2006": 0.814, + "2007": 0.816, + "2008": 0.82, + "2009": 0.822, + "2010": 0.828, + "2011": 0.832, + "2012": 0.835, + "2013": 0.833, + "2014": 0.827, + "2015": 0.826, + "2016": 0.821, + "2017": 0.82, + "2018": 0.816, + "2019": 0.82, + "2020": 0.812, + "2021": 0.809 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr106", + "Region": "Gilgit Baltistan", + "1990": 0.628, + "1991": 0.631, + "1992": 0.629, + "1993": 0.626, + "1994": 0.629, + "1995": 0.625, + "1996": 0.633, + "1997": 0.636, + "1998": 0.644, + "1999": 0.653, + "2000": 0.66, + "2001": 0.665, + "2002": 0.668, + "2003": 0.671, + "2004": 0.675, + "2005": 0.665, + "2006": 0.685, + "2007": 0.687, + "2008": 0.69, + "2009": 0.692, + "2010": 0.698, + "2011": 0.701, + "2012": 0.704, + "2013": 0.702, + "2014": 0.697, + "2015": 0.696, + "2016": 0.692, + "2017": 0.691, + "2018": 0.687, + "2019": 0.691, + "2020": 0.684, + "2021": 0.681 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr105", + "Region": "Islamabad (ICT)", + "1990": 0.66, + "1991": 0.663, + "1992": 0.66, + "1993": 0.657, + "1994": 0.66, + "1995": 0.657, + "1996": 0.665, + "1997": 0.668, + "1998": 0.676, + "1999": 0.686, + "2000": 0.692, + "2001": 0.697, + "2002": 0.701, + "2003": 0.704, + "2004": 0.708, + "2005": 0.698, + "2006": 0.719, + "2007": 0.721, + "2008": 0.737, + "2009": 0.752, + "2010": 0.77, + "2011": 0.788, + "2012": 0.804, + "2013": 0.8, + "2014": 0.794, + "2015": 0.791, + "2016": 0.785, + "2017": 0.783, + "2018": 0.778, + "2019": 0.782, + "2020": 0.774, + "2021": 0.771 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr103", + "Region": "Khyber Pakhtunkhwa (NWFrontier)", + "1990": 0.651, + "1991": 0.654, + "1992": 0.652, + "1993": 0.649, + "1994": 0.652, + "1995": 0.648, + "1996": 0.656, + "1997": 0.659, + "1998": 0.667, + "1999": 0.677, + "2000": 0.683, + "2001": 0.689, + "2002": 0.692, + "2003": 0.695, + "2004": 0.699, + "2005": 0.689, + "2006": 0.709, + "2007": 0.711, + "2008": 0.718, + "2009": 0.723, + "2010": 0.731, + "2011": 0.738, + "2012": 0.743, + "2013": 0.745, + "2014": 0.742, + "2015": 0.744, + "2016": 0.743, + "2017": 0.745, + "2018": 0.744, + "2019": 0.748, + "2020": 0.74, + "2021": 0.738 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr101", + "Region": "Punjab", + "1990": 0.602, + "1991": 0.605, + "1992": 0.603, + "1993": 0.6, + "1994": 0.603, + "1995": 0.599, + "1996": 0.607, + "1997": 0.61, + "1998": 0.618, + "1999": 0.627, + "2000": 0.633, + "2001": 0.638, + "2002": 0.641, + "2003": 0.644, + "2004": 0.647, + "2005": 0.638, + "2006": 0.658, + "2007": 0.659, + "2008": 0.663, + "2009": 0.664, + "2010": 0.669, + "2011": 0.673, + "2012": 0.675, + "2013": 0.68, + "2014": 0.683, + "2015": 0.689, + "2016": 0.692, + "2017": 0.698, + "2018": 0.701, + "2019": 0.705, + "2020": 0.698, + "2021": 0.695 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr102", + "Region": "Sindh", + "1990": 0.602, + "1991": 0.605, + "1992": 0.603, + "1993": 0.6, + "1994": 0.603, + "1995": 0.599, + "1996": 0.607, + "1997": 0.61, + "1998": 0.618, + "1999": 0.626, + "2000": 0.633, + "2001": 0.638, + "2002": 0.641, + "2003": 0.644, + "2004": 0.647, + "2005": 0.638, + "2006": 0.658, + "2007": 0.659, + "2008": 0.667, + "2009": 0.673, + "2010": 0.682, + "2011": 0.69, + "2012": 0.697, + "2013": 0.701, + "2014": 0.702, + "2015": 0.708, + "2016": 0.71, + "2017": 0.715, + "2018": 0.717, + "2019": 0.721, + "2020": 0.714, + "2021": 0.711 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "National", + "GDLCODE": "PSEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.787, + "2005": 0.801, + "2006": 0.799, + "2007": 0.802, + "2008": 0.806, + "2009": 0.809, + "2010": 0.815, + "2011": 0.819, + "2012": 0.823, + "2013": 0.831, + "2014": 0.81, + "2015": 0.837, + "2016": 0.839, + "2017": 0.844, + "2018": 0.843, + "2019": 0.85, + "2020": 0.837, + "2021": 0.823 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr104", + "Region": "Bethlehem, Hebron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.801, + "2005": 0.815, + "2006": 0.813, + "2007": 0.816, + "2008": 0.82, + "2009": 0.823, + "2010": 0.83, + "2011": 0.828, + "2012": 0.827, + "2013": 0.831, + "2014": 0.804, + "2015": 0.831, + "2016": 0.833, + "2017": 0.837, + "2018": 0.836, + "2019": 0.843, + "2020": 0.83, + "2021": 0.816 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr106", + "Region": "Deir El-Balah, Khan Yunis, Rafah", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.788, + "2005": 0.802, + "2006": 0.799, + "2007": 0.803, + "2008": 0.807, + "2009": 0.81, + "2010": 0.816, + "2011": 0.821, + "2012": 0.826, + "2013": 0.837, + "2014": 0.816, + "2015": 0.845, + "2016": 0.849, + "2017": 0.854, + "2018": 0.854, + "2019": 0.862, + "2020": 0.849, + "2021": 0.835 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr101", + "Region": "Jenin, Tubas, Tulkarm, Nablus, Qalqiliya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.78, + "2005": 0.794, + "2006": 0.791, + "2007": 0.795, + "2008": 0.799, + "2009": 0.802, + "2010": 0.808, + "2011": 0.816, + "2012": 0.823, + "2013": 0.836, + "2014": 0.818, + "2015": 0.842, + "2016": 0.841, + "2017": 0.842, + "2018": 0.838, + "2019": 0.842, + "2020": 0.829, + "2021": 0.815 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr103", + "Region": "Jerusalem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.828, + "2005": 0.842, + "2006": 0.839, + "2007": 0.843, + "2008": 0.847, + "2009": 0.85, + "2010": 0.857, + "2011": 0.856, + "2012": 0.856, + "2013": 0.861, + "2014": 0.835, + "2015": 0.865, + "2016": 0.869, + "2017": 0.875, + "2018": 0.876, + "2019": 0.885, + "2020": 0.871, + "2021": 0.857 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr105", + "Region": "North Gaza, Gaza", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.773, + "2005": 0.787, + "2006": 0.785, + "2007": 0.788, + "2008": 0.792, + "2009": 0.795, + "2010": 0.801, + "2011": 0.803, + "2012": 0.806, + "2013": 0.813, + "2014": 0.79, + "2015": 0.819, + "2016": 0.822, + "2017": 0.828, + "2018": 0.828, + "2019": 0.837, + "2020": 0.824, + "2021": 0.81 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr102", + "Region": "Salfit, Ramallah, Al-Bireh, Jericho, Al Aghwar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.776, + "2005": 0.79, + "2006": 0.787, + "2007": 0.791, + "2008": 0.795, + "2009": 0.798, + "2010": 0.804, + "2011": 0.813, + "2012": 0.822, + "2013": 0.836, + "2014": 0.819, + "2015": 0.847, + "2016": 0.85, + "2017": 0.855, + "2018": 0.855, + "2019": 0.862, + "2020": 0.849, + "2021": 0.834 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "National", + "GDLCODE": "PANt", + "Region": "Total", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr101", + "Region": "Bocas del Toro", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr104", + "Region": "Chiriqui", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr102", + "Region": "Cocle", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr103", + "Region": "Colon", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr105", + "Region": "Darien", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr111", + "Region": "Embera Wounaan", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr106", + "Region": "Herrera", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr110", + "Region": "Kuna Yala", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr107", + "Region": "Los Santos", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr112", + "Region": "Ngobe Bugle", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr108", + "Region": "Panama", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr109", + "Region": "Veraguas", + "1990": 0.786, + "1991": 0.788, + "1992": 0.792, + "1993": 0.797, + "1994": 0.801, + "1995": 0.806, + "1996": 0.81, + "1997": 0.815, + "1998": 0.82, + "1999": 0.825, + "2000": 0.831, + "2001": 0.837, + "2002": 0.843, + "2003": 0.85, + "2004": 0.855, + "2005": 0.859, + "2006": 0.862, + "2007": 0.864, + "2008": 0.865, + "2009": 0.867, + "2010": 0.868, + "2011": 0.871, + "2012": 0.874, + "2013": 0.878, + "2014": 0.881, + "2015": 0.884, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.889, + "2020": 0.872, + "2021": 0.865 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "National", + "GDLCODE": "PNGt", + "Region": "Total", + "1990": 0.611, + "1991": 0.614, + "1992": 0.619, + "1993": 0.623, + "1994": 0.627, + "1995": 0.632, + "1996": 0.632, + "1997": 0.637, + "1998": 0.625, + "1999": 0.641, + "2000": 0.642, + "2001": 0.643, + "2002": 0.642, + "2003": 0.643, + "2004": 0.642, + "2005": 0.643, + "2006": 0.645, + "2007": 0.647, + "2008": 0.655, + "2009": 0.658, + "2010": 0.662, + "2011": 0.67, + "2012": 0.673, + "2013": 0.676, + "2014": 0.681, + "2015": 0.688, + "2016": 0.69, + "2017": 0.694, + "2018": 0.695, + "2019": 0.7, + "2020": 0.704, + "2021": 0.698 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr120", + "Region": "Autonomous Region of Bougainville", + "1990": 0.669, + "1991": 0.672, + "1992": 0.677, + "1993": 0.682, + "1994": 0.686, + "1995": 0.69, + "1996": 0.691, + "1997": 0.696, + "1998": 0.684, + "1999": 0.701, + "2000": 0.701, + "2001": 0.702, + "2002": 0.701, + "2003": 0.703, + "2004": 0.702, + "2005": 0.703, + "2006": 0.705, + "2007": 0.707, + "2008": 0.715, + "2009": 0.719, + "2010": 0.723, + "2011": 0.731, + "2012": 0.734, + "2013": 0.738, + "2014": 0.743, + "2015": 0.75, + "2016": 0.752, + "2017": 0.757, + "2018": 0.758, + "2019": 0.763, + "2020": 0.768, + "2021": 0.761 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr103", + "Region": "Central", + "1990": 0.645, + "1991": 0.648, + "1992": 0.653, + "1993": 0.657, + "1994": 0.661, + "1995": 0.666, + "1996": 0.667, + "1997": 0.671, + "1998": 0.659, + "1999": 0.676, + "2000": 0.677, + "2001": 0.677, + "2002": 0.676, + "2003": 0.678, + "2004": 0.677, + "2005": 0.678, + "2006": 0.68, + "2007": 0.682, + "2008": 0.69, + "2009": 0.694, + "2010": 0.698, + "2011": 0.705, + "2012": 0.709, + "2013": 0.712, + "2014": 0.717, + "2015": 0.724, + "2016": 0.726, + "2017": 0.73, + "2018": 0.732, + "2019": 0.736, + "2020": 0.741, + "2021": 0.734 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr110", + "Region": "Chimbu, Simbu", + "1990": 0.595, + "1991": 0.597, + "1992": 0.602, + "1993": 0.606, + "1994": 0.61, + "1995": 0.615, + "1996": 0.615, + "1997": 0.62, + "1998": 0.608, + "1999": 0.624, + "2000": 0.625, + "2001": 0.626, + "2002": 0.624, + "2003": 0.626, + "2004": 0.625, + "2005": 0.626, + "2006": 0.628, + "2007": 0.63, + "2008": 0.638, + "2009": 0.641, + "2010": 0.645, + "2011": 0.652, + "2012": 0.655, + "2013": 0.659, + "2014": 0.663, + "2015": 0.67, + "2016": 0.672, + "2017": 0.676, + "2018": 0.677, + "2019": 0.681, + "2020": 0.686, + "2021": 0.68 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr118", + "Region": "East New Britain", + "1990": 0.641, + "1991": 0.644, + "1992": 0.649, + "1993": 0.654, + "1994": 0.658, + "1995": 0.663, + "1996": 0.663, + "1997": 0.668, + "1998": 0.656, + "1999": 0.672, + "2000": 0.673, + "2001": 0.674, + "2002": 0.673, + "2003": 0.674, + "2004": 0.674, + "2005": 0.674, + "2006": 0.676, + "2007": 0.678, + "2008": 0.687, + "2009": 0.69, + "2010": 0.694, + "2011": 0.702, + "2012": 0.705, + "2013": 0.709, + "2014": 0.714, + "2015": 0.721, + "2016": 0.723, + "2017": 0.727, + "2018": 0.728, + "2019": 0.733, + "2020": 0.738, + "2021": 0.731 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr114", + "Region": "East Sepik", + "1990": 0.602, + "1991": 0.604, + "1992": 0.609, + "1993": 0.613, + "1994": 0.617, + "1995": 0.622, + "1996": 0.623, + "1997": 0.627, + "1998": 0.615, + "1999": 0.631, + "2000": 0.632, + "2001": 0.633, + "2002": 0.632, + "2003": 0.633, + "2004": 0.633, + "2005": 0.633, + "2006": 0.635, + "2007": 0.637, + "2008": 0.645, + "2009": 0.648, + "2010": 0.652, + "2011": 0.659, + "2012": 0.663, + "2013": 0.666, + "2014": 0.671, + "2015": 0.677, + "2016": 0.679, + "2017": 0.683, + "2018": 0.685, + "2019": 0.689, + "2020": 0.694, + "2021": 0.687 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr111", + "Region": "Eastern Highlands", + "1990": 0.578, + "1991": 0.581, + "1992": 0.585, + "1993": 0.59, + "1994": 0.593, + "1995": 0.598, + "1996": 0.598, + "1997": 0.602, + "1998": 0.591, + "1999": 0.607, + "2000": 0.608, + "2001": 0.608, + "2002": 0.607, + "2003": 0.609, + "2004": 0.608, + "2005": 0.609, + "2006": 0.61, + "2007": 0.612, + "2008": 0.62, + "2009": 0.623, + "2010": 0.627, + "2011": 0.634, + "2012": 0.637, + "2013": 0.641, + "2014": 0.645, + "2015": 0.652, + "2016": 0.654, + "2017": 0.658, + "2018": 0.659, + "2019": 0.663, + "2020": 0.668, + "2021": 0.661 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr108", + "Region": "Enga", + "1990": 0.532, + "1991": 0.535, + "1992": 0.539, + "1993": 0.543, + "1994": 0.547, + "1995": 0.551, + "1996": 0.552, + "1997": 0.555, + "1998": 0.545, + "1999": 0.56, + "2000": 0.56, + "2001": 0.561, + "2002": 0.56, + "2003": 0.561, + "2004": 0.561, + "2005": 0.561, + "2006": 0.563, + "2007": 0.565, + "2008": 0.572, + "2009": 0.575, + "2010": 0.579, + "2011": 0.586, + "2012": 0.589, + "2013": 0.592, + "2014": 0.596, + "2015": 0.602, + "2016": 0.604, + "2017": 0.608, + "2018": 0.609, + "2019": 0.613, + "2020": 0.617, + "2021": 0.611 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr102", + "Region": "Gulf", + "1990": 0.627, + "1991": 0.63, + "1992": 0.635, + "1993": 0.64, + "1994": 0.644, + "1995": 0.648, + "1996": 0.649, + "1997": 0.653, + "1998": 0.642, + "1999": 0.658, + "2000": 0.659, + "2001": 0.659, + "2002": 0.658, + "2003": 0.66, + "2004": 0.659, + "2005": 0.66, + "2006": 0.662, + "2007": 0.664, + "2008": 0.672, + "2009": 0.675, + "2010": 0.679, + "2011": 0.687, + "2012": 0.69, + "2013": 0.694, + "2014": 0.698, + "2015": 0.705, + "2016": 0.707, + "2017": 0.712, + "2018": 0.713, + "2019": 0.717, + "2020": 0.722, + "2021": 0.715 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr121", + "Region": "Hela", + "1990": 0.624, + "1991": 0.627, + "1992": 0.632, + "1993": 0.636, + "1994": 0.64, + "1995": 0.645, + "1996": 0.645, + "1997": 0.65, + "1998": 0.638, + "1999": 0.654, + "2000": 0.655, + "2001": 0.656, + "2002": 0.655, + "2003": 0.656, + "2004": 0.656, + "2005": 0.656, + "2006": 0.658, + "2007": 0.66, + "2008": 0.668, + "2009": 0.672, + "2010": 0.676, + "2011": 0.683, + "2012": 0.686, + "2013": 0.69, + "2014": 0.695, + "2015": 0.702, + "2016": 0.704, + "2017": 0.708, + "2018": 0.709, + "2019": 0.714, + "2020": 0.719, + "2021": 0.712 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr122", + "Region": "Jiwaka", + "1990": 0.607, + "1991": 0.61, + "1992": 0.615, + "1993": 0.619, + "1994": 0.623, + "1995": 0.627, + "1996": 0.628, + "1997": 0.632, + "1998": 0.621, + "1999": 0.637, + "2000": 0.638, + "2001": 0.638, + "2002": 0.637, + "2003": 0.639, + "2004": 0.638, + "2005": 0.639, + "2006": 0.641, + "2007": 0.642, + "2008": 0.651, + "2009": 0.654, + "2010": 0.658, + "2011": 0.665, + "2012": 0.669, + "2013": 0.672, + "2014": 0.677, + "2015": 0.683, + "2016": 0.685, + "2017": 0.69, + "2018": 0.691, + "2019": 0.695, + "2020": 0.7, + "2021": 0.693 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr113", + "Region": "Madang", + "1990": 0.639, + "1991": 0.642, + "1992": 0.647, + "1993": 0.652, + "1994": 0.656, + "1995": 0.66, + "1996": 0.661, + "1997": 0.666, + "1998": 0.654, + "1999": 0.67, + "2000": 0.671, + "2001": 0.672, + "2002": 0.671, + "2003": 0.672, + "2004": 0.672, + "2005": 0.672, + "2006": 0.674, + "2007": 0.676, + "2008": 0.685, + "2009": 0.688, + "2010": 0.692, + "2011": 0.7, + "2012": 0.703, + "2013": 0.707, + "2014": 0.711, + "2015": 0.718, + "2016": 0.721, + "2017": 0.725, + "2018": 0.726, + "2019": 0.731, + "2020": 0.736, + "2021": 0.729 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr116", + "Region": "Manus", + "1990": 0.629, + "1991": 0.632, + "1992": 0.636, + "1993": 0.641, + "1994": 0.645, + "1995": 0.649, + "1996": 0.65, + "1997": 0.655, + "1998": 0.643, + "1999": 0.659, + "2000": 0.66, + "2001": 0.661, + "2002": 0.66, + "2003": 0.661, + "2004": 0.661, + "2005": 0.661, + "2006": 0.663, + "2007": 0.665, + "2008": 0.673, + "2009": 0.677, + "2010": 0.681, + "2011": 0.688, + "2012": 0.692, + "2013": 0.695, + "2014": 0.7, + "2015": 0.707, + "2016": 0.709, + "2017": 0.713, + "2018": 0.714, + "2019": 0.719, + "2020": 0.724, + "2021": 0.717 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr105", + "Region": "Milne Bay", + "1990": 0.655, + "1991": 0.658, + "1992": 0.663, + "1993": 0.668, + "1994": 0.672, + "1995": 0.677, + "1996": 0.677, + "1997": 0.682, + "1998": 0.67, + "1999": 0.687, + "2000": 0.687, + "2001": 0.688, + "2002": 0.687, + "2003": 0.689, + "2004": 0.688, + "2005": 0.689, + "2006": 0.691, + "2007": 0.692, + "2008": 0.701, + "2009": 0.705, + "2010": 0.709, + "2011": 0.717, + "2012": 0.72, + "2013": 0.724, + "2014": 0.728, + "2015": 0.735, + "2016": 0.738, + "2017": 0.742, + "2018": 0.743, + "2019": 0.748, + "2020": 0.753, + "2021": 0.746 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr112", + "Region": "Morobe", + "1990": 0.608, + "1991": 0.611, + "1992": 0.616, + "1993": 0.62, + "1994": 0.624, + "1995": 0.629, + "1996": 0.63, + "1997": 0.634, + "1998": 0.622, + "1999": 0.638, + "2000": 0.639, + "2001": 0.64, + "2002": 0.639, + "2003": 0.64, + "2004": 0.64, + "2005": 0.64, + "2006": 0.642, + "2007": 0.644, + "2008": 0.652, + "2009": 0.655, + "2010": 0.659, + "2011": 0.667, + "2012": 0.67, + "2013": 0.673, + "2014": 0.678, + "2015": 0.685, + "2016": 0.687, + "2017": 0.691, + "2018": 0.692, + "2019": 0.697, + "2020": 0.701, + "2021": 0.695 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr104", + "Region": "National Capital District", + "1990": 0.616, + "1991": 0.619, + "1992": 0.624, + "1993": 0.629, + "1994": 0.632, + "1995": 0.637, + "1996": 0.638, + "1997": 0.642, + "1998": 0.63, + "1999": 0.647, + "2000": 0.647, + "2001": 0.648, + "2002": 0.647, + "2003": 0.649, + "2004": 0.648, + "2005": 0.649, + "2006": 0.65, + "2007": 0.652, + "2008": 0.66, + "2009": 0.664, + "2010": 0.668, + "2011": 0.675, + "2012": 0.678, + "2013": 0.682, + "2014": 0.687, + "2015": 0.693, + "2016": 0.696, + "2017": 0.7, + "2018": 0.701, + "2019": 0.705, + "2020": 0.71, + "2021": 0.703 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr117", + "Region": "New Ireland", + "1990": 0.619, + "1991": 0.622, + "1992": 0.626, + "1993": 0.631, + "1994": 0.635, + "1995": 0.639, + "1996": 0.64, + "1997": 0.644, + "1998": 0.633, + "1999": 0.649, + "2000": 0.65, + "2001": 0.65, + "2002": 0.649, + "2003": 0.651, + "2004": 0.65, + "2005": 0.651, + "2006": 0.653, + "2007": 0.655, + "2008": 0.663, + "2009": 0.666, + "2010": 0.67, + "2011": 0.678, + "2012": 0.681, + "2013": 0.684, + "2014": 0.689, + "2015": 0.696, + "2016": 0.698, + "2017": 0.702, + "2018": 0.703, + "2019": 0.708, + "2020": 0.713, + "2021": 0.706 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr106", + "Region": "Northern, Oro", + "1990": 0.617, + "1991": 0.62, + "1992": 0.625, + "1993": 0.629, + "1994": 0.633, + "1995": 0.638, + "1996": 0.639, + "1997": 0.643, + "1998": 0.631, + "1999": 0.647, + "2000": 0.648, + "2001": 0.649, + "2002": 0.648, + "2003": 0.649, + "2004": 0.649, + "2005": 0.649, + "2006": 0.651, + "2007": 0.653, + "2008": 0.661, + "2009": 0.665, + "2010": 0.668, + "2011": 0.676, + "2012": 0.679, + "2013": 0.683, + "2014": 0.687, + "2015": 0.694, + "2016": 0.696, + "2017": 0.7, + "2018": 0.702, + "2019": 0.706, + "2020": 0.711, + "2021": 0.704 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr107", + "Region": "Southern Highlands", + "1990": 0.525, + "1991": 0.528, + "1992": 0.532, + "1993": 0.536, + "1994": 0.54, + "1995": 0.544, + "1996": 0.545, + "1997": 0.549, + "1998": 0.538, + "1999": 0.553, + "2000": 0.553, + "2001": 0.554, + "2002": 0.553, + "2003": 0.554, + "2004": 0.554, + "2005": 0.554, + "2006": 0.556, + "2007": 0.558, + "2008": 0.565, + "2009": 0.568, + "2010": 0.572, + "2011": 0.579, + "2012": 0.581, + "2013": 0.585, + "2014": 0.589, + "2015": 0.595, + "2016": 0.597, + "2017": 0.601, + "2018": 0.602, + "2019": 0.606, + "2020": 0.61, + "2021": 0.604 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr119", + "Region": "West New Britain", + "1990": 0.648, + "1991": 0.651, + "1992": 0.656, + "1993": 0.66, + "1994": 0.664, + "1995": 0.669, + "1996": 0.67, + "1997": 0.674, + "1998": 0.662, + "1999": 0.679, + "2000": 0.68, + "2001": 0.681, + "2002": 0.68, + "2003": 0.681, + "2004": 0.681, + "2005": 0.681, + "2006": 0.683, + "2007": 0.685, + "2008": 0.694, + "2009": 0.697, + "2010": 0.701, + "2011": 0.709, + "2012": 0.712, + "2013": 0.716, + "2014": 0.721, + "2015": 0.728, + "2016": 0.73, + "2017": 0.734, + "2018": 0.735, + "2019": 0.74, + "2020": 0.745, + "2021": 0.738 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr115", + "Region": "West Sepik, Sandaun", + "1990": 0.627, + "1991": 0.63, + "1992": 0.635, + "1993": 0.639, + "1994": 0.643, + "1995": 0.648, + "1996": 0.649, + "1997": 0.653, + "1998": 0.641, + "1999": 0.658, + "2000": 0.658, + "2001": 0.659, + "2002": 0.658, + "2003": 0.66, + "2004": 0.659, + "2005": 0.66, + "2006": 0.661, + "2007": 0.663, + "2008": 0.672, + "2009": 0.675, + "2010": 0.679, + "2011": 0.687, + "2012": 0.69, + "2013": 0.693, + "2014": 0.698, + "2015": 0.705, + "2016": 0.707, + "2017": 0.711, + "2018": 0.713, + "2019": 0.717, + "2020": 0.722, + "2021": 0.715 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr101", + "Region": "Western", + "1990": 0.628, + "1991": 0.631, + "1992": 0.636, + "1993": 0.64, + "1994": 0.644, + "1995": 0.649, + "1996": 0.649, + "1997": 0.654, + "1998": 0.642, + "1999": 0.658, + "2000": 0.659, + "2001": 0.66, + "2002": 0.659, + "2003": 0.66, + "2004": 0.66, + "2005": 0.66, + "2006": 0.662, + "2007": 0.664, + "2008": 0.672, + "2009": 0.676, + "2010": 0.68, + "2011": 0.687, + "2012": 0.691, + "2013": 0.694, + "2014": 0.699, + "2015": 0.706, + "2016": 0.708, + "2017": 0.712, + "2018": 0.713, + "2019": 0.718, + "2020": 0.723, + "2021": 0.716 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr109", + "Region": "Western Highlands", + "1990": 0.66, + "1991": 0.663, + "1992": 0.668, + "1993": 0.673, + "1994": 0.677, + "1995": 0.682, + "1996": 0.682, + "1997": 0.687, + "1998": 0.675, + "1999": 0.692, + "2000": 0.692, + "2001": 0.693, + "2002": 0.692, + "2003": 0.694, + "2004": 0.693, + "2005": 0.694, + "2006": 0.696, + "2007": 0.698, + "2008": 0.706, + "2009": 0.71, + "2010": 0.714, + "2011": 0.722, + "2012": 0.725, + "2013": 0.729, + "2014": 0.734, + "2015": 0.741, + "2016": 0.743, + "2017": 0.747, + "2018": 0.749, + "2019": 0.753, + "2020": 0.758, + "2021": 0.751 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "National", + "GDLCODE": "PRYt", + "Region": "Total", + "1990": 0.738, + "1991": 0.741, + "1992": 0.745, + "1993": 0.748, + "1994": 0.751, + "1995": 0.754, + "1996": 0.757, + "1997": 0.759, + "1998": 0.761, + "1999": 0.764, + "2000": 0.765, + "2001": 0.768, + "2002": 0.77, + "2003": 0.774, + "2004": 0.777, + "2005": 0.777, + "2006": 0.781, + "2007": 0.786, + "2008": 0.791, + "2009": 0.794, + "2010": 0.798, + "2011": 0.802, + "2012": 0.807, + "2013": 0.812, + "2014": 0.814, + "2015": 0.818, + "2016": 0.824, + "2017": 0.825, + "2018": 0.824, + "2019": 0.825, + "2020": 0.818, + "2021": 0.773 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr105", + "Region": "Central (Asuncion, Central)", + "1990": 0.753, + "1991": 0.757, + "1992": 0.76, + "1993": 0.764, + "1994": 0.767, + "1995": 0.77, + "1996": 0.773, + "1997": 0.775, + "1998": 0.777, + "1999": 0.78, + "2000": 0.781, + "2001": 0.784, + "2002": 0.786, + "2003": 0.79, + "2004": 0.793, + "2005": 0.793, + "2006": 0.797, + "2007": 0.803, + "2008": 0.807, + "2009": 0.811, + "2010": 0.815, + "2011": 0.819, + "2012": 0.824, + "2013": 0.828, + "2014": 0.83, + "2015": 0.835, + "2016": 0.84, + "2017": 0.842, + "2018": 0.841, + "2019": 0.842, + "2020": 0.835, + "2021": 0.789 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr102", + "Region": "North-East (Caaguazu, Alto Parana, Canideyu)", + "1990": 0.725, + "1991": 0.729, + "1992": 0.732, + "1993": 0.736, + "1994": 0.739, + "1995": 0.742, + "1996": 0.745, + "1997": 0.746, + "1998": 0.749, + "1999": 0.751, + "2000": 0.753, + "2001": 0.755, + "2002": 0.757, + "2003": 0.761, + "2004": 0.764, + "2005": 0.765, + "2006": 0.769, + "2007": 0.773, + "2008": 0.778, + "2009": 0.782, + "2010": 0.785, + "2011": 0.789, + "2012": 0.794, + "2013": 0.799, + "2014": 0.8, + "2015": 0.805, + "2016": 0.81, + "2017": 0.812, + "2018": 0.811, + "2019": 0.812, + "2020": 0.805, + "2021": 0.761 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr101", + "Region": "North-West (Boqueron, Alto Paraguay, Presidente Hayes, Conception, Amambay, San pedro, Cordillera)", + "1990": 0.723, + "1991": 0.727, + "1992": 0.73, + "1993": 0.734, + "1994": 0.737, + "1995": 0.74, + "1996": 0.742, + "1997": 0.744, + "1998": 0.747, + "1999": 0.749, + "2000": 0.751, + "2001": 0.753, + "2002": 0.755, + "2003": 0.759, + "2004": 0.762, + "2005": 0.763, + "2006": 0.766, + "2007": 0.771, + "2008": 0.776, + "2009": 0.779, + "2010": 0.783, + "2011": 0.787, + "2012": 0.792, + "2013": 0.796, + "2014": 0.798, + "2015": 0.803, + "2016": 0.808, + "2017": 0.81, + "2018": 0.809, + "2019": 0.81, + "2020": 0.803, + "2021": 0.759 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr104", + "Region": "South-East (Guaira, Misiones, Paraguari, Neembucu)", + "1990": 0.744, + "1991": 0.748, + "1992": 0.751, + "1993": 0.755, + "1994": 0.758, + "1995": 0.761, + "1996": 0.764, + "1997": 0.766, + "1998": 0.768, + "1999": 0.77, + "2000": 0.772, + "2001": 0.775, + "2002": 0.776, + "2003": 0.781, + "2004": 0.784, + "2005": 0.784, + "2006": 0.788, + "2007": 0.793, + "2008": 0.797, + "2009": 0.801, + "2010": 0.805, + "2011": 0.809, + "2012": 0.814, + "2013": 0.819, + "2014": 0.821, + "2015": 0.825, + "2016": 0.831, + "2017": 0.832, + "2018": 0.831, + "2019": 0.832, + "2020": 0.825, + "2021": 0.78 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr103", + "Region": "South-West (Caazapa, Itapua)", + "1990": 0.739, + "1991": 0.743, + "1992": 0.746, + "1993": 0.75, + "1994": 0.753, + "1995": 0.756, + "1996": 0.759, + "1997": 0.761, + "1998": 0.763, + "1999": 0.765, + "2000": 0.767, + "2001": 0.77, + "2002": 0.771, + "2003": 0.776, + "2004": 0.778, + "2005": 0.779, + "2006": 0.783, + "2007": 0.788, + "2008": 0.792, + "2009": 0.796, + "2010": 0.8, + "2011": 0.804, + "2012": 0.809, + "2013": 0.814, + "2014": 0.815, + "2015": 0.82, + "2016": 0.826, + "2017": 0.827, + "2018": 0.826, + "2019": 0.827, + "2020": 0.82, + "2021": 0.775 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "National", + "GDLCODE": "PERt", + "Region": "Total", + "1990": 0.694, + "1991": 0.699, + "1992": 0.71, + "1993": 0.718, + "1994": 0.727, + "1995": 0.733, + "1996": 0.741, + "1997": 0.748, + "1998": 0.755, + "1999": 0.765, + "2000": 0.776, + "2001": 0.785, + "2002": 0.795, + "2003": 0.803, + "2004": 0.81, + "2005": 0.815, + "2006": 0.818, + "2007": 0.819, + "2008": 0.821, + "2009": 0.823, + "2010": 0.826, + "2011": 0.833, + "2012": 0.839, + "2013": 0.846, + "2014": 0.851, + "2015": 0.856, + "2016": 0.858, + "2017": 0.86, + "2018": 0.862, + "2019": 0.864, + "2020": 0.826, + "2021": 0.806 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr106", + "Region": "Central (Huancavelica, Huanuco, Junin, Pasco)", + "1990": 0.632, + "1991": 0.637, + "1992": 0.647, + "1993": 0.655, + "1994": 0.663, + "1995": 0.669, + "1996": 0.676, + "1997": 0.687, + "1998": 0.699, + "1999": 0.713, + "2000": 0.728, + "2001": 0.742, + "2002": 0.756, + "2003": 0.769, + "2004": 0.781, + "2005": 0.793, + "2006": 0.803, + "2007": 0.801, + "2008": 0.801, + "2009": 0.81, + "2010": 0.815, + "2011": 0.831, + "2012": 0.826, + "2013": 0.833, + "2014": 0.838, + "2015": 0.842, + "2016": 0.845, + "2017": 0.846, + "2018": 0.848, + "2019": 0.851, + "2020": 0.813, + "2021": 0.793 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr103", + "Region": "East (Madre de Dios, Cusco, Puno, Apurimac)", + "1990": 0.625, + "1991": 0.629, + "1992": 0.64, + "1993": 0.647, + "1994": 0.655, + "1995": 0.661, + "1996": 0.668, + "1997": 0.675, + "1998": 0.682, + "1999": 0.692, + "2000": 0.703, + "2001": 0.718, + "2002": 0.733, + "2003": 0.747, + "2004": 0.76, + "2005": 0.773, + "2006": 0.785, + "2007": 0.787, + "2008": 0.79, + "2009": 0.783, + "2010": 0.799, + "2011": 0.775, + "2012": 0.808, + "2013": 0.815, + "2014": 0.82, + "2015": 0.825, + "2016": 0.827, + "2017": 0.828, + "2018": 0.83, + "2019": 0.833, + "2020": 0.795, + "2021": 0.776 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr101", + "Region": "North (Tumbes, Piura, Lambayeque, Cajamarca, La Libertad)", + "1990": 0.69, + "1991": 0.695, + "1992": 0.706, + "1993": 0.714, + "1994": 0.723, + "1995": 0.729, + "1996": 0.737, + "1997": 0.746, + "1998": 0.756, + "1999": 0.769, + "2000": 0.782, + "2001": 0.794, + "2002": 0.806, + "2003": 0.818, + "2004": 0.827, + "2005": 0.821, + "2006": 0.813, + "2007": 0.818, + "2008": 0.825, + "2009": 0.815, + "2010": 0.832, + "2011": 0.83, + "2012": 0.845, + "2013": 0.852, + "2014": 0.857, + "2015": 0.862, + "2016": 0.865, + "2017": 0.866, + "2018": 0.868, + "2019": 0.87, + "2020": 0.832, + "2021": 0.812 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr102", + "Region": "North East (Amazonas, Loreto, San Martin, Ucayali)", + "1990": 0.672, + "1991": 0.677, + "1992": 0.688, + "1993": 0.696, + "1994": 0.704, + "1995": 0.711, + "1996": 0.718, + "1997": 0.723, + "1998": 0.728, + "1999": 0.736, + "2000": 0.744, + "2001": 0.75, + "2002": 0.755, + "2003": 0.76, + "2004": 0.763, + "2005": 0.76, + "2006": 0.755, + "2007": 0.772, + "2008": 0.79, + "2009": 0.782, + "2010": 0.777, + "2011": 0.807, + "2012": 0.81, + "2013": 0.816, + "2014": 0.822, + "2015": 0.826, + "2016": 0.829, + "2017": 0.83, + "2018": 0.832, + "2019": 0.834, + "2020": 0.797, + "2021": 0.777 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr104", + "Region": "South (Tacna, Moquegua, Arequipa, Ica, Ayacucho)", + "1990": 0.698, + "1991": 0.703, + "1992": 0.714, + "1993": 0.722, + "1994": 0.73, + "1995": 0.737, + "1996": 0.745, + "1997": 0.757, + "1998": 0.769, + "1999": 0.784, + "2000": 0.8, + "2001": 0.803, + "2002": 0.807, + "2003": 0.81, + "2004": 0.811, + "2005": 0.819, + "2006": 0.825, + "2007": 0.831, + "2008": 0.838, + "2009": 0.83, + "2010": 0.842, + "2011": 0.853, + "2012": 0.854, + "2013": 0.861, + "2014": 0.866, + "2015": 0.871, + "2016": 0.873, + "2017": 0.875, + "2018": 0.877, + "2019": 0.879, + "2020": 0.84, + "2021": 0.82 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr105", + "Region": "West (Ancash, Lima, Callao)", + "1990": 0.773, + "1991": 0.779, + "1992": 0.791, + "1993": 0.799, + "1994": 0.808, + "1995": 0.815, + "1996": 0.824, + "1997": 0.826, + "1998": 0.829, + "1999": 0.834, + "2000": 0.84, + "2001": 0.845, + "2002": 0.85, + "2003": 0.854, + "2004": 0.857, + "2005": 0.864, + "2006": 0.869, + "2007": 0.857, + "2008": 0.847, + "2009": 0.862, + "2010": 0.852, + "2011": 0.864, + "2012": 0.856, + "2013": 0.863, + "2014": 0.869, + "2015": 0.873, + "2016": 0.876, + "2017": 0.877, + "2018": 0.879, + "2019": 0.882, + "2020": 0.843, + "2021": 0.823 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "National", + "GDLCODE": "PHLt", + "Region": "Total", + "1990": 0.706, + "1991": 0.712, + "1992": 0.724, + "1993": 0.731, + "1994": 0.738, + "1995": 0.742, + "1996": 0.748, + "1997": 0.752, + "1998": 0.755, + "1999": 0.758, + "2000": 0.76, + "2001": 0.763, + "2002": 0.766, + "2003": 0.768, + "2004": 0.77, + "2005": 0.773, + "2006": 0.774, + "2007": 0.777, + "2008": 0.778, + "2009": 0.779, + "2010": 0.781, + "2011": 0.781, + "2012": 0.783, + "2013": 0.782, + "2014": 0.787, + "2015": 0.789, + "2016": 0.791, + "2017": 0.793, + "2018": 0.795, + "2019": 0.798, + "2020": 0.802, + "2021": 0.758 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr117", + "Region": "ARMM", + "1990": 0.673, + "1991": 0.679, + "1992": 0.691, + "1993": 0.698, + "1994": 0.704, + "1995": 0.708, + "1996": 0.714, + "1997": 0.718, + "1998": 0.721, + "1999": 0.717, + "2000": 0.711, + "2001": 0.707, + "2002": 0.703, + "2003": 0.698, + "2004": 0.689, + "2005": 0.681, + "2006": 0.671, + "2007": 0.663, + "2008": 0.654, + "2009": 0.669, + "2010": 0.685, + "2011": 0.7, + "2012": 0.716, + "2013": 0.729, + "2014": 0.731, + "2015": 0.729, + "2016": 0.728, + "2017": 0.727, + "2018": 0.729, + "2019": 0.732, + "2020": 0.736, + "2021": 0.694 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr102", + "Region": "Cordillera Admin Region", + "1990": 0.712, + "1991": 0.718, + "1992": 0.73, + "1993": 0.737, + "1994": 0.743, + "1995": 0.747, + "1996": 0.753, + "1997": 0.758, + "1998": 0.761, + "1999": 0.767, + "2000": 0.771, + "2001": 0.777, + "2002": 0.782, + "2003": 0.787, + "2004": 0.788, + "2005": 0.791, + "2006": 0.791, + "2007": 0.793, + "2008": 0.794, + "2009": 0.796, + "2010": 0.798, + "2011": 0.799, + "2012": 0.801, + "2013": 0.801, + "2014": 0.812, + "2015": 0.82, + "2016": 0.828, + "2017": 0.836, + "2018": 0.839, + "2019": 0.841, + "2020": 0.845, + "2021": 0.8 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr103", + "Region": "I-Ilocos", + "1990": 0.742, + "1991": 0.749, + "1992": 0.761, + "1993": 0.768, + "1994": 0.775, + "1995": 0.779, + "1996": 0.785, + "1997": 0.79, + "1998": 0.793, + "1999": 0.79, + "2000": 0.785, + "2001": 0.781, + "2002": 0.777, + "2003": 0.773, + "2004": 0.78, + "2005": 0.788, + "2006": 0.793, + "2007": 0.801, + "2008": 0.807, + "2009": 0.805, + "2010": 0.804, + "2011": 0.802, + "2012": 0.8, + "2013": 0.797, + "2014": 0.797, + "2015": 0.795, + "2016": 0.792, + "2017": 0.789, + "2018": 0.792, + "2019": 0.795, + "2020": 0.799, + "2021": 0.755 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr104", + "Region": "II-Cagayan Valley", + "1990": 0.71, + "1991": 0.716, + "1992": 0.728, + "1993": 0.735, + "1994": 0.742, + "1995": 0.746, + "1996": 0.752, + "1997": 0.756, + "1998": 0.759, + "1999": 0.765, + "2000": 0.769, + "2001": 0.774, + "2002": 0.779, + "2003": 0.783, + "2004": 0.778, + "2005": 0.774, + "2006": 0.767, + "2007": 0.763, + "2008": 0.757, + "2009": 0.768, + "2010": 0.78, + "2011": 0.79, + "2012": 0.801, + "2013": 0.81, + "2014": 0.81, + "2015": 0.808, + "2016": 0.805, + "2017": 0.802, + "2018": 0.805, + "2019": 0.808, + "2020": 0.812, + "2021": 0.767 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr105", + "Region": "III-Central Luzon", + "1990": 0.712, + "1991": 0.718, + "1992": 0.73, + "1993": 0.737, + "1994": 0.743, + "1995": 0.748, + "1996": 0.754, + "1997": 0.758, + "1998": 0.761, + "1999": 0.769, + "2000": 0.775, + "2001": 0.782, + "2002": 0.789, + "2003": 0.796, + "2004": 0.796, + "2005": 0.798, + "2006": 0.797, + "2007": 0.799, + "2008": 0.799, + "2009": 0.796, + "2010": 0.794, + "2011": 0.791, + "2012": 0.789, + "2013": 0.784, + "2014": 0.794, + "2015": 0.801, + "2016": 0.808, + "2017": 0.816, + "2018": 0.818, + "2019": 0.821, + "2020": 0.825, + "2021": 0.78 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr106", + "Region": "IVA-CALABARZON", + "1990": 0.737, + "1991": 0.743, + "1992": 0.756, + "1993": 0.763, + "1994": 0.769, + "1995": 0.774, + "1996": 0.78, + "1997": 0.784, + "1998": 0.788, + "1999": 0.789, + "2000": 0.789, + "2001": 0.791, + "2002": 0.792, + "2003": 0.793, + "2004": 0.794, + "2005": 0.797, + "2006": 0.797, + "2007": 0.8, + "2008": 0.801, + "2009": 0.802, + "2010": 0.804, + "2011": 0.805, + "2012": 0.807, + "2013": 0.806, + "2014": 0.809, + "2015": 0.809, + "2016": 0.809, + "2017": 0.809, + "2018": 0.812, + "2019": 0.815, + "2020": 0.819, + "2021": 0.774 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr107", + "Region": "IVB-MIMAROPA", + "1990": 0.745, + "1991": 0.751, + "1992": 0.764, + "1993": 0.771, + "1994": 0.777, + "1995": 0.782, + "1996": 0.788, + "1997": 0.792, + "1998": 0.796, + "1999": 0.778, + "2000": 0.76, + "2001": 0.743, + "2002": 0.725, + "2003": 0.708, + "2004": 0.716, + "2005": 0.725, + "2006": 0.732, + "2007": 0.741, + "2008": 0.749, + "2009": 0.751, + "2010": 0.753, + "2011": 0.755, + "2012": 0.757, + "2013": 0.757, + "2014": 0.765, + "2015": 0.771, + "2016": 0.776, + "2017": 0.781, + "2018": 0.784, + "2019": 0.786, + "2020": 0.79, + "2021": 0.747 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr112", + "Region": "IX-Zamboanga Peninsula", + "1990": 0.661, + "1991": 0.667, + "1992": 0.679, + "1993": 0.685, + "1994": 0.691, + "1995": 0.695, + "1996": 0.701, + "1997": 0.705, + "1998": 0.708, + "1999": 0.72, + "2000": 0.73, + "2001": 0.742, + "2002": 0.753, + "2003": 0.763, + "2004": 0.769, + "2005": 0.776, + "2006": 0.781, + "2007": 0.788, + "2008": 0.793, + "2009": 0.79, + "2010": 0.787, + "2011": 0.784, + "2012": 0.781, + "2013": 0.776, + "2014": 0.783, + "2015": 0.788, + "2016": 0.793, + "2017": 0.798, + "2018": 0.8, + "2019": 0.803, + "2020": 0.807, + "2021": 0.763 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr101", + "Region": "National Capital Region", + "1990": 0.715, + "1991": 0.721, + "1992": 0.733, + "1993": 0.74, + "1994": 0.746, + "1995": 0.75, + "1996": 0.756, + "1997": 0.761, + "1998": 0.764, + "1999": 0.77, + "2000": 0.776, + "2001": 0.782, + "2002": 0.788, + "2003": 0.793, + "2004": 0.796, + "2005": 0.801, + "2006": 0.803, + "2007": 0.808, + "2008": 0.81, + "2009": 0.81, + "2010": 0.811, + "2011": 0.81, + "2012": 0.81, + "2013": 0.808, + "2014": 0.818, + "2015": 0.824, + "2016": 0.831, + "2017": 0.837, + "2018": 0.84, + "2019": 0.843, + "2020": 0.847, + "2021": 0.801 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr108", + "Region": "V-Bicol", + "1990": 0.642, + "1991": 0.648, + "1992": 0.659, + "1993": 0.666, + "1994": 0.671, + "1995": 0.676, + "1996": 0.681, + "1997": 0.685, + "1998": 0.688, + "1999": 0.704, + "2000": 0.719, + "2001": 0.735, + "2002": 0.75, + "2003": 0.765, + "2004": 0.769, + "2005": 0.774, + "2006": 0.777, + "2007": 0.782, + "2008": 0.785, + "2009": 0.784, + "2010": 0.785, + "2011": 0.783, + "2012": 0.783, + "2013": 0.781, + "2014": 0.78, + "2015": 0.776, + "2016": 0.772, + "2017": 0.769, + "2018": 0.771, + "2019": 0.774, + "2020": 0.778, + "2021": 0.735 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr109", + "Region": "VI-Western Visayas", + "1990": 0.664, + "1991": 0.669, + "1992": 0.681, + "1993": 0.688, + "1994": 0.694, + "1995": 0.698, + "1996": 0.703, + "1997": 0.707, + "1998": 0.711, + "1999": 0.718, + "2000": 0.725, + "2001": 0.733, + "2002": 0.74, + "2003": 0.747, + "2004": 0.75, + "2005": 0.754, + "2006": 0.756, + "2007": 0.761, + "2008": 0.763, + "2009": 0.768, + "2010": 0.774, + "2011": 0.779, + "2012": 0.784, + "2013": 0.787, + "2014": 0.78, + "2015": 0.769, + "2016": 0.758, + "2017": 0.748, + "2018": 0.75, + "2019": 0.753, + "2020": 0.756, + "2021": 0.714 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr110", + "Region": "VII-Central Visayas", + "1990": 0.685, + "1991": 0.691, + "1992": 0.702, + "1993": 0.709, + "1994": 0.715, + "1995": 0.72, + "1996": 0.725, + "1997": 0.73, + "1998": 0.733, + "1999": 0.742, + "2000": 0.749, + "2001": 0.758, + "2002": 0.767, + "2003": 0.775, + "2004": 0.776, + "2005": 0.779, + "2006": 0.78, + "2007": 0.783, + "2008": 0.784, + "2009": 0.783, + "2010": 0.783, + "2011": 0.782, + "2012": 0.781, + "2013": 0.778, + "2014": 0.783, + "2015": 0.785, + "2016": 0.787, + "2017": 0.789, + "2018": 0.792, + "2019": 0.794, + "2020": 0.798, + "2021": 0.754 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr111", + "Region": "VIII-Eastern Visayas", + "1990": 0.692, + "1991": 0.698, + "1992": 0.71, + "1993": 0.717, + "1994": 0.723, + "1995": 0.728, + "1996": 0.734, + "1997": 0.738, + "1998": 0.741, + "1999": 0.74, + "2000": 0.738, + "2001": 0.737, + "2002": 0.736, + "2003": 0.735, + "2004": 0.731, + "2005": 0.728, + "2006": 0.723, + "2007": 0.721, + "2008": 0.717, + "2009": 0.73, + "2010": 0.745, + "2011": 0.758, + "2012": 0.772, + "2013": 0.784, + "2014": 0.786, + "2015": 0.785, + "2016": 0.784, + "2017": 0.783, + "2018": 0.786, + "2019": 0.789, + "2020": 0.792, + "2021": 0.749 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr113", + "Region": "X-Northern Mindanao", + "1990": 0.744, + "1991": 0.751, + "1992": 0.763, + "1993": 0.77, + "1994": 0.777, + "1995": 0.781, + "1996": 0.787, + "1997": 0.792, + "1998": 0.795, + "1999": 0.787, + "2000": 0.777, + "2001": 0.768, + "2002": 0.76, + "2003": 0.751, + "2004": 0.761, + "2005": 0.773, + "2006": 0.782, + "2007": 0.794, + "2008": 0.804, + "2009": 0.792, + "2010": 0.78, + "2011": 0.768, + "2012": 0.756, + "2013": 0.743, + "2014": 0.755, + "2015": 0.764, + "2016": 0.774, + "2017": 0.783, + "2018": 0.786, + "2019": 0.789, + "2020": 0.792, + "2021": 0.749 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr114", + "Region": "XI-Davao", + "1990": 0.712, + "1991": 0.718, + "1992": 0.73, + "1993": 0.737, + "1994": 0.743, + "1995": 0.748, + "1996": 0.754, + "1997": 0.758, + "1998": 0.761, + "1999": 0.76, + "2000": 0.758, + "2001": 0.757, + "2002": 0.756, + "2003": 0.754, + "2004": 0.755, + "2005": 0.758, + "2006": 0.759, + "2007": 0.761, + "2008": 0.762, + "2009": 0.764, + "2010": 0.767, + "2011": 0.768, + "2012": 0.77, + "2013": 0.77, + "2014": 0.78, + "2015": 0.787, + "2016": 0.795, + "2017": 0.802, + "2018": 0.804, + "2019": 0.807, + "2020": 0.811, + "2021": 0.767 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr115", + "Region": "XII-SOCCSKSARGEN", + "1990": 0.62, + "1991": 0.625, + "1992": 0.636, + "1993": 0.643, + "1994": 0.648, + "1995": 0.652, + "1996": 0.658, + "1997": 0.662, + "1998": 0.665, + "1999": 0.689, + "2000": 0.711, + "2001": 0.734, + "2002": 0.757, + "2003": 0.78, + "2004": 0.781, + "2005": 0.783, + "2006": 0.784, + "2007": 0.786, + "2008": 0.787, + "2009": 0.777, + "2010": 0.767, + "2011": 0.757, + "2012": 0.747, + "2013": 0.735, + "2014": 0.74, + "2015": 0.741, + "2016": 0.743, + "2017": 0.745, + "2018": 0.747, + "2019": 0.75, + "2020": 0.754, + "2021": 0.712 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr116", + "Region": "XIII-Caraga", + "1990": 0.648, + "1991": 0.654, + "1992": 0.665, + "1993": 0.672, + "1994": 0.678, + "1995": 0.682, + "1996": 0.687, + "1997": 0.691, + "1998": 0.694, + "1999": 0.706, + "2000": 0.717, + "2001": 0.729, + "2002": 0.74, + "2003": 0.751, + "2004": 0.76, + "2005": 0.77, + "2006": 0.777, + "2007": 0.787, + "2008": 0.795, + "2009": 0.789, + "2010": 0.785, + "2011": 0.778, + "2012": 0.773, + "2013": 0.766, + "2014": 0.775, + "2015": 0.781, + "2016": 0.787, + "2017": 0.793, + "2018": 0.795, + "2019": 0.798, + "2020": 0.802, + "2021": 0.758 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "National", + "GDLCODE": "POLt", + "Region": "Total", + "1990": 0.78, + "1991": 0.775, + "1992": 0.783, + "1993": 0.791, + "1994": 0.796, + "1995": 0.799, + "1996": 0.804, + "1997": 0.809, + "1998": 0.815, + "1999": 0.815, + "2000": 0.827, + "2001": 0.834, + "2002": 0.84, + "2003": 0.842, + "2004": 0.846, + "2005": 0.848, + "2006": 0.851, + "2007": 0.851, + "2008": 0.855, + "2009": 0.858, + "2010": 0.866, + "2011": 0.872, + "2012": 0.873, + "2013": 0.876, + "2014": 0.886, + "2015": 0.883, + "2016": 0.889, + "2017": 0.888, + "2018": 0.887, + "2019": 0.891, + "2020": 0.876, + "2021": 0.869 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr112", + "Region": "Dolnoslaskie", + "1990": 0.772, + "1991": 0.768, + "1992": 0.778, + "1993": 0.784, + "1994": 0.789, + "1995": 0.79, + "1996": 0.795, + "1997": 0.807, + "1998": 0.811, + "1999": 0.806, + "2000": 0.817, + "2001": 0.826, + "2002": 0.834, + "2003": 0.837, + "2004": 0.838, + "2005": 0.845, + "2006": 0.845, + "2007": 0.844, + "2008": 0.845, + "2009": 0.85, + "2010": 0.863, + "2011": 0.869, + "2012": 0.868, + "2013": 0.874, + "2014": 0.88, + "2015": 0.879, + "2016": 0.885, + "2017": 0.881, + "2018": 0.879, + "2019": 0.884, + "2020": 0.869, + "2021": 0.861 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr114", + "Region": "Kujawsko-Pomorskie", + "1990": 0.771, + "1991": 0.766, + "1992": 0.777, + "1993": 0.787, + "1994": 0.787, + "1995": 0.795, + "1996": 0.799, + "1997": 0.805, + "1998": 0.806, + "1999": 0.812, + "2000": 0.823, + "2001": 0.83, + "2002": 0.835, + "2003": 0.838, + "2004": 0.842, + "2005": 0.845, + "2006": 0.847, + "2007": 0.842, + "2008": 0.851, + "2009": 0.852, + "2010": 0.855, + "2011": 0.868, + "2012": 0.868, + "2013": 0.874, + "2014": 0.882, + "2015": 0.885, + "2016": 0.887, + "2017": 0.886, + "2018": 0.879, + "2019": 0.884, + "2020": 0.869, + "2021": 0.861 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr101", + "Region": "Lodzkie", + "1990": 0.769, + "1991": 0.765, + "1992": 0.772, + "1993": 0.78, + "1994": 0.783, + "1995": 0.781, + "1996": 0.787, + "1997": 0.791, + "1998": 0.795, + "1999": 0.794, + "2000": 0.808, + "2001": 0.814, + "2002": 0.818, + "2003": 0.825, + "2004": 0.829, + "2005": 0.823, + "2006": 0.823, + "2007": 0.825, + "2008": 0.831, + "2009": 0.832, + "2010": 0.841, + "2011": 0.845, + "2012": 0.846, + "2013": 0.851, + "2014": 0.863, + "2015": 0.859, + "2016": 0.867, + "2017": 0.866, + "2018": 0.865, + "2019": 0.875, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr105", + "Region": "Lubelskie", + "1990": 0.788, + "1991": 0.783, + "1992": 0.792, + "1993": 0.795, + "1994": 0.8, + "1995": 0.804, + "1996": 0.807, + "1997": 0.808, + "1998": 0.812, + "1999": 0.818, + "2000": 0.825, + "2001": 0.831, + "2002": 0.835, + "2003": 0.84, + "2004": 0.842, + "2005": 0.842, + "2006": 0.848, + "2007": 0.848, + "2008": 0.849, + "2009": 0.855, + "2010": 0.861, + "2011": 0.866, + "2012": 0.874, + "2013": 0.877, + "2014": 0.886, + "2015": 0.888, + "2016": 0.893, + "2017": 0.888, + "2018": 0.888, + "2019": 0.895, + "2020": 0.879, + "2021": 0.872 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr111", + "Region": "Lubuskie", + "1990": 0.769, + "1991": 0.765, + "1992": 0.77, + "1993": 0.777, + "1994": 0.787, + "1995": 0.789, + "1996": 0.798, + "1997": 0.802, + "1998": 0.801, + "1999": 0.809, + "2000": 0.818, + "2001": 0.827, + "2002": 0.834, + "2003": 0.832, + "2004": 0.84, + "2005": 0.842, + "2006": 0.842, + "2007": 0.842, + "2008": 0.846, + "2009": 0.849, + "2010": 0.861, + "2011": 0.859, + "2012": 0.866, + "2013": 0.865, + "2014": 0.88, + "2015": 0.874, + "2016": 0.881, + "2017": 0.88, + "2018": 0.875, + "2019": 0.875, + "2020": 0.86, + "2021": 0.852 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr103", + "Region": "Malopolskie", + "1990": 0.8, + "1991": 0.796, + "1992": 0.803, + "1993": 0.807, + "1994": 0.814, + "1995": 0.818, + "1996": 0.821, + "1997": 0.825, + "1998": 0.837, + "1999": 0.837, + "2000": 0.846, + "2001": 0.854, + "2002": 0.86, + "2003": 0.86, + "2004": 0.866, + "2005": 0.866, + "2006": 0.871, + "2007": 0.871, + "2008": 0.876, + "2009": 0.879, + "2010": 0.887, + "2011": 0.891, + "2012": 0.891, + "2013": 0.898, + "2014": 0.906, + "2015": 0.904, + "2016": 0.91, + "2017": 0.908, + "2018": 0.908, + "2019": 0.91, + "2020": 0.895, + "2021": 0.887 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr102", + "Region": "Mazowieckie", + "1990": 0.785, + "1991": 0.78, + "1992": 0.787, + "1993": 0.769, + "1994": 0.8, + "1995": 0.803, + "1996": 0.806, + "1997": 0.813, + "1998": 0.818, + "1999": 0.82, + "2000": 0.835, + "2001": 0.842, + "2002": 0.848, + "2003": 0.848, + "2004": 0.854, + "2005": 0.857, + "2006": 0.859, + "2007": 0.86, + "2008": 0.865, + "2009": 0.864, + "2010": 0.874, + "2011": 0.879, + "2012": 0.879, + "2013": 0.886, + "2014": 0.893, + "2015": 0.893, + "2016": 0.896, + "2017": 0.894, + "2018": 0.893, + "2019": 0.898, + "2020": 0.883, + "2021": 0.875 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr113", + "Region": "Opolskie", + "1990": 0.78, + "1991": 0.776, + "1992": 0.786, + "1993": 0.794, + "1994": 0.801, + "1995": 0.806, + "1996": 0.807, + "1997": 0.816, + "1998": 0.826, + "1999": 0.829, + "2000": 0.837, + "2001": 0.844, + "2002": 0.849, + "2003": 0.851, + "2004": 0.86, + "2005": 0.858, + "2006": 0.863, + "2007": 0.867, + "2008": 0.863, + "2009": 0.875, + "2010": 0.875, + "2011": 0.882, + "2012": 0.876, + "2013": 0.878, + "2014": 0.891, + "2015": 0.884, + "2016": 0.893, + "2017": 0.885, + "2018": 0.891, + "2019": 0.895, + "2020": 0.879, + "2021": 0.872 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr106", + "Region": "Podkarpackie", + "1990": 0.802, + "1991": 0.797, + "1992": 0.809, + "1993": 0.812, + "1994": 0.82, + "1995": 0.82, + "1996": 0.824, + "1997": 0.83, + "1998": 0.837, + "1999": 0.84, + "2000": 0.846, + "2001": 0.852, + "2002": 0.857, + "2003": 0.858, + "2004": 0.86, + "2005": 0.863, + "2006": 0.873, + "2007": 0.877, + "2008": 0.879, + "2009": 0.879, + "2010": 0.889, + "2011": 0.894, + "2012": 0.896, + "2013": 0.9, + "2014": 0.905, + "2015": 0.902, + "2016": 0.908, + "2017": 0.912, + "2018": 0.913, + "2019": 0.913, + "2020": 0.898, + "2021": 0.89 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr108", + "Region": "Podlaskie", + "1990": 0.797, + "1991": 0.792, + "1992": 0.798, + "1993": 0.803, + "1994": 0.809, + "1995": 0.809, + "1996": 0.813, + "1997": 0.822, + "1998": 0.829, + "1999": 0.829, + "2000": 0.84, + "2001": 0.847, + "2002": 0.852, + "2003": 0.849, + "2004": 0.852, + "2005": 0.855, + "2006": 0.857, + "2007": 0.864, + "2008": 0.873, + "2009": 0.87, + "2010": 0.88, + "2011": 0.886, + "2012": 0.888, + "2013": 0.886, + "2014": 0.896, + "2015": 0.894, + "2016": 0.896, + "2017": 0.898, + "2018": 0.895, + "2019": 0.902, + "2020": 0.887, + "2021": 0.88 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr116", + "Region": "Pomorskie", + "1990": 0.782, + "1991": 0.777, + "1992": 0.783, + "1993": 0.794, + "1994": 0.798, + "1995": 0.807, + "1996": 0.812, + "1997": 0.816, + "1998": 0.818, + "1999": 0.827, + "2000": 0.837, + "2001": 0.843, + "2002": 0.848, + "2003": 0.851, + "2004": 0.854, + "2005": 0.858, + "2006": 0.86, + "2007": 0.857, + "2008": 0.863, + "2009": 0.869, + "2010": 0.878, + "2011": 0.885, + "2012": 0.879, + "2013": 0.889, + "2014": 0.893, + "2015": 0.891, + "2016": 0.895, + "2017": 0.897, + "2018": 0.895, + "2019": 0.899, + "2020": 0.884, + "2021": 0.877 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr104", + "Region": "Slaskie", + "1990": 0.769, + "1991": 0.765, + "1992": 0.773, + "1993": 0.783, + "1994": 0.786, + "1995": 0.793, + "1996": 0.798, + "1997": 0.804, + "1998": 0.811, + "1999": 0.807, + "2000": 0.818, + "2001": 0.826, + "2002": 0.832, + "2003": 0.835, + "2004": 0.838, + "2005": 0.84, + "2006": 0.843, + "2007": 0.844, + "2008": 0.846, + "2009": 0.849, + "2010": 0.857, + "2011": 0.859, + "2012": 0.86, + "2013": 0.865, + "2014": 0.874, + "2015": 0.871, + "2016": 0.881, + "2017": 0.878, + "2018": 0.879, + "2019": 0.884, + "2020": 0.869, + "2021": 0.861 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr107", + "Region": "Swietokrzyskie", + "1990": 0.791, + "1991": 0.786, + "1992": 0.792, + "1993": 0.798, + "1994": 0.801, + "1995": 0.807, + "1996": 0.812, + "1997": 0.816, + "1998": 0.825, + "1999": 0.818, + "2000": 0.837, + "2001": 0.841, + "2002": 0.843, + "2003": 0.845, + "2004": 0.852, + "2005": 0.851, + "2006": 0.853, + "2007": 0.856, + "2008": 0.857, + "2009": 0.866, + "2010": 0.863, + "2011": 0.869, + "2012": 0.876, + "2013": 0.877, + "2014": 0.888, + "2015": 0.882, + "2016": 0.888, + "2017": 0.889, + "2018": 0.887, + "2019": 0.892, + "2020": 0.876, + "2021": 0.869 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr115", + "Region": "Warminsko-Mazurskie", + "1990": 0.771, + "1991": 0.766, + "1992": 0.777, + "1993": 0.787, + "1994": 0.797, + "1995": 0.795, + "1996": 0.801, + "1997": 0.814, + "1998": 0.811, + "1999": 0.815, + "2000": 0.825, + "2001": 0.83, + "2002": 0.834, + "2003": 0.835, + "2004": 0.838, + "2005": 0.84, + "2006": 0.842, + "2007": 0.844, + "2008": 0.849, + "2009": 0.85, + "2010": 0.861, + "2011": 0.866, + "2012": 0.866, + "2013": 0.865, + "2014": 0.88, + "2015": 0.877, + "2016": 0.876, + "2017": 0.877, + "2018": 0.875, + "2019": 0.879, + "2020": 0.864, + "2021": 0.857 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr109", + "Region": "Wielkopolskie", + "1990": 0.776, + "1991": 0.771, + "1992": 0.777, + "1993": 0.792, + "1994": 0.794, + "1995": 0.796, + "1996": 0.806, + "1997": 0.807, + "1998": 0.811, + "1999": 0.814, + "2000": 0.825, + "2001": 0.833, + "2002": 0.84, + "2003": 0.843, + "2004": 0.845, + "2005": 0.851, + "2006": 0.851, + "2007": 0.854, + "2008": 0.859, + "2009": 0.861, + "2010": 0.871, + "2011": 0.875, + "2012": 0.876, + "2013": 0.878, + "2014": 0.886, + "2015": 0.882, + "2016": 0.89, + "2017": 0.889, + "2018": 0.885, + "2019": 0.892, + "2020": 0.876, + "2021": 0.869 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr110", + "Region": "Zachodniopomorskie", + "1990": 0.766, + "1991": 0.762, + "1992": 0.773, + "1993": 0.78, + "1994": 0.786, + "1995": 0.787, + "1996": 0.793, + "1997": 0.799, + "1998": 0.809, + "1999": 0.807, + "2000": 0.817, + "2001": 0.826, + "2002": 0.834, + "2003": 0.837, + "2004": 0.84, + "2005": 0.843, + "2006": 0.845, + "2007": 0.848, + "2008": 0.849, + "2009": 0.852, + "2010": 0.86, + "2011": 0.868, + "2012": 0.871, + "2013": 0.871, + "2014": 0.883, + "2015": 0.882, + "2016": 0.885, + "2017": 0.885, + "2018": 0.881, + "2019": 0.884, + "2020": 0.869, + "2021": 0.861 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "National", + "GDLCODE": "PRTt", + "Region": "Total", + "1990": 0.835, + "1991": 0.834, + "1992": 0.844, + "1993": 0.842, + "1994": 0.857, + "1995": 0.855, + "1996": 0.853, + "1997": 0.86, + "1998": 0.863, + "1999": 0.866, + "2000": 0.874, + "2001": 0.879, + "2002": 0.883, + "2003": 0.886, + "2004": 0.899, + "2005": 0.897, + "2006": 0.909, + "2007": 0.912, + "2008": 0.916, + "2009": 0.92, + "2010": 0.924, + "2011": 0.931, + "2012": 0.93, + "2013": 0.936, + "2014": 0.942, + "2015": 0.942, + "2016": 0.942, + "2017": 0.946, + "2018": 0.945, + "2019": 0.949, + "2020": 0.939, + "2021": 0.939 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr105", + "Region": "Alentejo", + "1990": 0.856, + "1991": 0.855, + "1992": 0.854, + "1993": 0.846, + "1994": 0.862, + "1995": 0.855, + "1996": 0.854, + "1997": 0.862, + "1998": 0.861, + "1999": 0.866, + "2000": 0.872, + "2001": 0.881, + "2002": 0.88, + "2003": 0.876, + "2004": 0.899, + "2005": 0.89, + "2006": 0.907, + "2007": 0.905, + "2008": 0.903, + "2009": 0.906, + "2010": 0.912, + "2011": 0.919, + "2012": 0.92, + "2013": 0.924, + "2014": 0.933, + "2015": 0.925, + "2016": 0.925, + "2017": 0.934, + "2018": 0.933, + "2019": 0.931, + "2020": 0.921, + "2021": 0.921 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr102", + "Region": "Algarve", + "1990": 0.844, + "1991": 0.843, + "1992": 0.848, + "1993": 0.846, + "1994": 0.842, + "1995": 0.845, + "1996": 0.855, + "1997": 0.86, + "1998": 0.861, + "1999": 0.867, + "2000": 0.873, + "2001": 0.878, + "2002": 0.875, + "2003": 0.885, + "2004": 0.888, + "2005": 0.887, + "2006": 0.901, + "2007": 0.899, + "2008": 0.903, + "2009": 0.912, + "2010": 0.927, + "2011": 0.925, + "2012": 0.926, + "2013": 0.93, + "2014": 0.935, + "2015": 0.934, + "2016": 0.926, + "2017": 0.926, + "2018": 0.925, + "2019": 0.931, + "2020": 0.921, + "2021": 0.921 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr104", + "Region": "Area Metropolitana de Lisboa", + "1990": 0.845, + "1991": 0.844, + "1992": 0.843, + "1993": 0.84, + "1994": 0.853, + "1995": 0.846, + "1996": 0.844, + "1997": 0.854, + "1998": 0.855, + "1999": 0.861, + "2000": 0.869, + "2001": 0.876, + "2002": 0.88, + "2003": 0.888, + "2004": 0.897, + "2005": 0.898, + "2006": 0.908, + "2007": 0.914, + "2008": 0.917, + "2009": 0.92, + "2010": 0.924, + "2011": 0.936, + "2012": 0.937, + "2013": 0.941, + "2014": 0.947, + "2015": 0.946, + "2016": 0.948, + "2017": 0.952, + "2018": 0.947, + "2019": 0.954, + "2020": 0.944, + "2021": 0.944 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr103", + "Region": "Centro", + "1990": 0.856, + "1991": 0.855, + "1992": 0.854, + "1993": 0.851, + "1994": 0.865, + "1995": 0.868, + "1996": 0.865, + "1997": 0.87, + "1998": 0.874, + "1999": 0.878, + "2000": 0.884, + "2001": 0.89, + "2002": 0.892, + "2003": 0.892, + "2004": 0.907, + "2005": 0.905, + "2006": 0.916, + "2007": 0.917, + "2008": 0.92, + "2009": 0.926, + "2010": 0.928, + "2011": 0.934, + "2012": 0.93, + "2013": 0.937, + "2014": 0.944, + "2015": 0.945, + "2016": 0.945, + "2017": 0.946, + "2018": 0.948, + "2019": 0.951, + "2020": 0.941, + "2021": 0.941 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr101", + "Region": "Norte", + "1990": 0.836, + "1991": 0.835, + "1992": 0.842, + "1993": 0.845, + "1994": 0.862, + "1995": 0.859, + "1996": 0.858, + "1997": 0.865, + "1998": 0.869, + "1999": 0.869, + "2000": 0.88, + "2001": 0.881, + "2002": 0.887, + "2003": 0.89, + "2004": 0.904, + "2005": 0.901, + "2006": 0.913, + "2007": 0.917, + "2008": 0.923, + "2009": 0.926, + "2010": 0.93, + "2011": 0.936, + "2012": 0.935, + "2013": 0.941, + "2014": 0.947, + "2015": 0.948, + "2016": 0.948, + "2017": 0.952, + "2018": 0.952, + "2019": 0.957, + "2020": 0.947, + "2021": 0.947 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr107", + "Region": "Regiao Autonoma da Madeira", + "1990": 0.813, + "1991": 0.812, + "1992": 0.805, + "1993": 0.794, + "1994": 0.82, + "1995": 0.818, + "1996": 0.807, + "1997": 0.82, + "1998": 0.817, + "1999": 0.821, + "2000": 0.821, + "2001": 0.826, + "2002": 0.83, + "2003": 0.825, + "2004": 0.845, + "2005": 0.844, + "2006": 0.853, + "2007": 0.86, + "2008": 0.87, + "2009": 0.869, + "2010": 0.873, + "2011": 0.886, + "2012": 0.884, + "2013": 0.897, + "2014": 0.881, + "2015": 0.895, + "2016": 0.899, + "2017": 0.906, + "2018": 0.901, + "2019": 0.902, + "2020": 0.892, + "2021": 0.892 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr106", + "Region": "Regiao Autonoma dos Acores", + "1990": 0.811, + "1991": 0.81, + "1992": 0.805, + "1993": 0.792, + "1994": 0.819, + "1995": 0.811, + "1996": 0.815, + "1997": 0.8, + "1998": 0.818, + "1999": 0.818, + "2000": 0.823, + "2001": 0.83, + "2002": 0.824, + "2003": 0.832, + "2004": 0.84, + "2005": 0.848, + "2006": 0.858, + "2007": 0.869, + "2008": 0.873, + "2009": 0.857, + "2010": 0.864, + "2011": 0.87, + "2012": 0.883, + "2013": 0.87, + "2014": 0.883, + "2015": 0.888, + "2016": 0.885, + "2017": 0.898, + "2018": 0.892, + "2019": 0.902, + "2020": 0.892, + "2021": 0.892 + }, + { + "Country": "Qatar", + "Continent": "Asia/Pacific", + "ISO_Code": "QAT", + "Level": "National", + "GDLCODE": "QATt", + "Region": "Total", + "1990": 0.83, + "1991": 0.83, + "1992": 0.833, + "1993": 0.835, + "1994": 0.836, + "1995": 0.835, + "1996": 0.841, + "1997": 0.843, + "1998": 0.843, + "1999": 0.843, + "2000": 0.844, + "2001": 0.85, + "2002": 0.852, + "2003": 0.855, + "2004": 0.861, + "2005": 0.863, + "2006": 0.87, + "2007": 0.877, + "2008": 0.883, + "2009": 0.89, + "2010": 0.899, + "2011": 0.906, + "2012": 0.911, + "2013": 0.916, + "2014": 0.92, + "2015": 0.924, + "2016": 0.93, + "2017": 0.934, + "2018": 0.937, + "2019": 0.938, + "2020": 0.909, + "2021": 0.912 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "National", + "GDLCODE": "ROUt", + "Region": "Total", + "1990": 0.765, + "1991": 0.767, + "1992": 0.76, + "1993": 0.763, + "1994": 0.763, + "1995": 0.762, + "1996": 0.754, + "1997": 0.761, + "1998": 0.771, + "1999": 0.778, + "2000": 0.789, + "2001": 0.789, + "2002": 0.78, + "2003": 0.766, + "2004": 0.762, + "2005": 0.779, + "2006": 0.792, + "2007": 0.808, + "2008": 0.825, + "2009": 0.831, + "2010": 0.831, + "2011": 0.837, + "2012": 0.837, + "2013": 0.846, + "2014": 0.845, + "2015": 0.843, + "2016": 0.85, + "2017": 0.861, + "2018": 0.864, + "2019": 0.869, + "2020": 0.851, + "2021": 0.834 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr108", + "Region": "Bucuresti", + "1990": 0.789, + "1991": 0.79, + "1992": 0.779, + "1993": 0.778, + "1994": 0.788, + "1995": 0.784, + "1996": 0.776, + "1997": 0.784, + "1998": 0.797, + "1999": 0.805, + "2000": 0.818, + "2001": 0.819, + "2002": 0.811, + "2003": 0.798, + "2004": 0.795, + "2005": 0.802, + "2006": 0.813, + "2007": 0.828, + "2008": 0.851, + "2009": 0.861, + "2010": 0.86, + "2011": 0.862, + "2012": 0.861, + "2013": 0.869, + "2014": 0.872, + "2015": 0.869, + "2016": 0.872, + "2017": 0.883, + "2018": 0.888, + "2019": 0.895, + "2020": 0.877, + "2021": 0.858 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr107", + "Region": "Centru", + "1990": 0.779, + "1991": 0.779, + "1992": 0.769, + "1993": 0.766, + "1994": 0.775, + "1995": 0.772, + "1996": 0.766, + "1997": 0.773, + "1998": 0.782, + "1999": 0.788, + "2000": 0.797, + "2001": 0.796, + "2002": 0.786, + "2003": 0.771, + "2004": 0.765, + "2005": 0.784, + "2006": 0.794, + "2007": 0.815, + "2008": 0.829, + "2009": 0.836, + "2010": 0.84, + "2011": 0.842, + "2012": 0.845, + "2013": 0.855, + "2014": 0.853, + "2015": 0.85, + "2016": 0.858, + "2017": 0.871, + "2018": 0.871, + "2019": 0.876, + "2020": 0.858, + "2021": 0.84 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr101", + "Region": "Nord-Est", + "1990": 0.771, + "1991": 0.772, + "1992": 0.768, + "1993": 0.77, + "1994": 0.761, + "1995": 0.761, + "1996": 0.751, + "1997": 0.759, + "1998": 0.769, + "1999": 0.777, + "2000": 0.788, + "2001": 0.789, + "2002": 0.78, + "2003": 0.766, + "2004": 0.762, + "2005": 0.781, + "2006": 0.795, + "2007": 0.808, + "2008": 0.824, + "2009": 0.829, + "2010": 0.823, + "2011": 0.834, + "2012": 0.827, + "2013": 0.838, + "2014": 0.835, + "2015": 0.832, + "2016": 0.839, + "2017": 0.849, + "2018": 0.845, + "2019": 0.853, + "2020": 0.835, + "2021": 0.818 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr106", + "Region": "Nord-Vest", + "1990": 0.75, + "1991": 0.747, + "1992": 0.736, + "1993": 0.737, + "1994": 0.741, + "1995": 0.749, + "1996": 0.743, + "1997": 0.75, + "1998": 0.76, + "1999": 0.766, + "2000": 0.776, + "2001": 0.776, + "2002": 0.766, + "2003": 0.752, + "2004": 0.747, + "2005": 0.766, + "2006": 0.779, + "2007": 0.799, + "2008": 0.818, + "2009": 0.823, + "2010": 0.826, + "2011": 0.831, + "2012": 0.831, + "2013": 0.841, + "2014": 0.843, + "2015": 0.836, + "2016": 0.85, + "2017": 0.86, + "2018": 0.862, + "2019": 0.872, + "2020": 0.854, + "2021": 0.836 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr103", + "Region": "Sud", + "1990": 0.759, + "1991": 0.766, + "1992": 0.759, + "1993": 0.764, + "1994": 0.767, + "1995": 0.763, + "1996": 0.751, + "1997": 0.758, + "1998": 0.769, + "1999": 0.776, + "2000": 0.786, + "2001": 0.787, + "2002": 0.778, + "2003": 0.764, + "2004": 0.759, + "2005": 0.775, + "2006": 0.791, + "2007": 0.808, + "2008": 0.82, + "2009": 0.826, + "2010": 0.827, + "2011": 0.834, + "2012": 0.838, + "2013": 0.845, + "2014": 0.846, + "2015": 0.844, + "2016": 0.847, + "2017": 0.86, + "2018": 0.863, + "2019": 0.868, + "2020": 0.851, + "2021": 0.833 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr102", + "Region": "Sud-Est", + "1990": 0.762, + "1991": 0.766, + "1992": 0.763, + "1993": 0.767, + "1994": 0.755, + "1995": 0.759, + "1996": 0.75, + "1997": 0.757, + "1998": 0.768, + "1999": 0.776, + "2000": 0.786, + "2001": 0.787, + "2002": 0.778, + "2003": 0.765, + "2004": 0.761, + "2005": 0.78, + "2006": 0.794, + "2007": 0.805, + "2008": 0.82, + "2009": 0.829, + "2010": 0.824, + "2011": 0.831, + "2012": 0.827, + "2013": 0.836, + "2014": 0.833, + "2015": 0.838, + "2016": 0.836, + "2017": 0.851, + "2018": 0.851, + "2019": 0.851, + "2020": 0.834, + "2021": 0.816 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr104", + "Region": "Sud-Vest Oltenia", + "1990": 0.76, + "1991": 0.772, + "1992": 0.765, + "1993": 0.77, + "1994": 0.767, + "1995": 0.764, + "1996": 0.754, + "1997": 0.761, + "1998": 0.771, + "1999": 0.777, + "2000": 0.787, + "2001": 0.787, + "2002": 0.777, + "2003": 0.763, + "2004": 0.758, + "2005": 0.773, + "2006": 0.789, + "2007": 0.806, + "2008": 0.82, + "2009": 0.827, + "2010": 0.829, + "2011": 0.837, + "2012": 0.836, + "2013": 0.845, + "2014": 0.843, + "2015": 0.843, + "2016": 0.856, + "2017": 0.865, + "2018": 0.876, + "2019": 0.879, + "2020": 0.861, + "2021": 0.843 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr105", + "Region": "Vest", + "1990": 0.753, + "1991": 0.749, + "1992": 0.74, + "1993": 0.746, + "1994": 0.749, + "1995": 0.75, + "1996": 0.74, + "1997": 0.747, + "1998": 0.758, + "1999": 0.765, + "2000": 0.776, + "2001": 0.776, + "2002": 0.767, + "2003": 0.753, + "2004": 0.749, + "2005": 0.769, + "2006": 0.78, + "2007": 0.802, + "2008": 0.82, + "2009": 0.824, + "2010": 0.823, + "2011": 0.831, + "2012": 0.835, + "2013": 0.841, + "2014": 0.84, + "2015": 0.835, + "2016": 0.848, + "2017": 0.852, + "2018": 0.865, + "2019": 0.868, + "2020": 0.851, + "2021": 0.833 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "National", + "GDLCODE": "RUSt", + "Region": "Total", + "1990": 0.747, + "1991": 0.745, + "1992": 0.732, + "1993": 0.693, + "1994": 0.676, + "1995": 0.678, + "1996": 0.699, + "1997": 0.713, + "1998": 0.72, + "1999": 0.702, + "2000": 0.696, + "2001": 0.699, + "2002": 0.694, + "2003": 0.696, + "2004": 0.706, + "2005": 0.709, + "2006": 0.727, + "2007": 0.741, + "2008": 0.746, + "2009": 0.757, + "2010": 0.76, + "2011": 0.775, + "2012": 0.781, + "2013": 0.789, + "2014": 0.793, + "2015": 0.802, + "2016": 0.81, + "2017": 0.821, + "2018": 0.824, + "2019": 0.83, + "2020": 0.79, + "2021": 0.76 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr101", + "Region": "The Central Federal District", + "1990": 0.751, + "1991": 0.749, + "1992": 0.739, + "1993": 0.702, + "1994": 0.681, + "1995": 0.685, + "1996": 0.71, + "1997": 0.723, + "1998": 0.728, + "1999": 0.71, + "2000": 0.708, + "2001": 0.707, + "2002": 0.704, + "2003": 0.71, + "2004": 0.721, + "2005": 0.726, + "2006": 0.742, + "2007": 0.753, + "2008": 0.759, + "2009": 0.771, + "2010": 0.775, + "2011": 0.796, + "2012": 0.8, + "2013": 0.807, + "2014": 0.811, + "2015": 0.822, + "2016": 0.829, + "2017": 0.84, + "2018": 0.842, + "2019": 0.849, + "2020": 0.808, + "2021": 0.778 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr108", + "Region": "The Far East Federal District", + "1990": 0.717, + "1991": 0.714, + "1992": 0.694, + "1993": 0.654, + "1994": 0.643, + "1995": 0.636, + "1996": 0.654, + "1997": 0.674, + "1998": 0.682, + "1999": 0.669, + "2000": 0.663, + "2001": 0.661, + "2002": 0.659, + "2003": 0.656, + "2004": 0.66, + "2005": 0.659, + "2006": 0.682, + "2007": 0.697, + "2008": 0.698, + "2009": 0.71, + "2010": 0.711, + "2011": 0.722, + "2012": 0.731, + "2013": 0.744, + "2014": 0.751, + "2015": 0.759, + "2016": 0.769, + "2017": 0.78, + "2018": 0.782, + "2019": 0.788, + "2020": 0.749, + "2021": 0.721 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr102", + "Region": "The North West Federal District", + "1990": 0.746, + "1991": 0.744, + "1992": 0.719, + "1993": 0.67, + "1994": 0.656, + "1995": 0.665, + "1996": 0.696, + "1997": 0.719, + "1998": 0.721, + "1999": 0.695, + "2000": 0.684, + "2001": 0.683, + "2002": 0.677, + "2003": 0.673, + "2004": 0.684, + "2005": 0.69, + "2006": 0.713, + "2007": 0.735, + "2008": 0.74, + "2009": 0.752, + "2010": 0.759, + "2011": 0.779, + "2012": 0.786, + "2013": 0.797, + "2014": 0.801, + "2015": 0.806, + "2016": 0.815, + "2017": 0.826, + "2018": 0.828, + "2019": 0.834, + "2020": 0.794, + "2021": 0.765 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr104", + "Region": "The North-Caucasian Federal District", + "1990": 0.741, + "1991": 0.744, + "1992": 0.747, + "1993": 0.751, + "1994": 0.753, + "1995": 0.744, + "1996": 0.745, + "1997": 0.745, + "1998": 0.747, + "1999": 0.747, + "2000": 0.75, + "2001": 0.761, + "2002": 0.755, + "2003": 0.759, + "2004": 0.774, + "2005": 0.78, + "2006": 0.784, + "2007": 0.8, + "2008": 0.805, + "2009": 0.803, + "2010": 0.81, + "2011": 0.819, + "2012": 0.827, + "2013": 0.839, + "2014": 0.843, + "2015": 0.852, + "2016": 0.861, + "2017": 0.872, + "2018": 0.875, + "2019": 0.881, + "2020": 0.84, + "2021": 0.809 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr105", + "Region": "The Privolzhsky (Volga) Federal District", + "1990": 0.757, + "1991": 0.756, + "1992": 0.743, + "1993": 0.708, + "1994": 0.69, + "1995": 0.69, + "1996": 0.709, + "1997": 0.72, + "1998": 0.727, + "1999": 0.709, + "2000": 0.7, + "2001": 0.702, + "2002": 0.698, + "2003": 0.698, + "2004": 0.705, + "2005": 0.708, + "2006": 0.725, + "2007": 0.735, + "2008": 0.741, + "2009": 0.753, + "2010": 0.751, + "2011": 0.766, + "2012": 0.774, + "2013": 0.778, + "2014": 0.782, + "2015": 0.791, + "2016": 0.803, + "2017": 0.814, + "2018": 0.816, + "2019": 0.822, + "2020": 0.783, + "2021": 0.753 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr107", + "Region": "The Siberian Federal District", + "1990": 0.727, + "1991": 0.726, + "1992": 0.709, + "1993": 0.664, + "1994": 0.645, + "1995": 0.652, + "1996": 0.667, + "1997": 0.682, + "1998": 0.693, + "1999": 0.674, + "2000": 0.671, + "2001": 0.673, + "2002": 0.665, + "2003": 0.665, + "2004": 0.674, + "2005": 0.667, + "2006": 0.695, + "2007": 0.711, + "2008": 0.717, + "2009": 0.728, + "2010": 0.731, + "2011": 0.743, + "2012": 0.746, + "2013": 0.756, + "2014": 0.761, + "2015": 0.769, + "2016": 0.778, + "2017": 0.789, + "2018": 0.791, + "2019": 0.797, + "2020": 0.758, + "2021": 0.73 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr103", + "Region": "The South Federal District", + "1990": 0.754, + "1991": 0.751, + "1992": 0.749, + "1993": 0.721, + "1994": 0.711, + "1995": 0.708, + "1996": 0.721, + "1997": 0.73, + "1998": 0.734, + "1999": 0.726, + "2000": 0.716, + "2001": 0.72, + "2002": 0.719, + "2003": 0.723, + "2004": 0.734, + "2005": 0.736, + "2006": 0.749, + "2007": 0.76, + "2008": 0.766, + "2009": 0.776, + "2010": 0.778, + "2011": 0.788, + "2012": 0.797, + "2013": 0.805, + "2014": 0.806, + "2015": 0.813, + "2016": 0.817, + "2017": 0.828, + "2018": 0.83, + "2019": 0.836, + "2020": 0.796, + "2021": 0.767 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr106", + "Region": "The Urals Federal District", + "1990": 0.75, + "1991": 0.747, + "1992": 0.729, + "1993": 0.689, + "1994": 0.672, + "1995": 0.67, + "1996": 0.69, + "1997": 0.711, + "1998": 0.719, + "1999": 0.699, + "2000": 0.684, + "2001": 0.695, + "2002": 0.69, + "2003": 0.692, + "2004": 0.702, + "2005": 0.705, + "2006": 0.727, + "2007": 0.74, + "2008": 0.742, + "2009": 0.752, + "2010": 0.758, + "2011": 0.769, + "2012": 0.772, + "2013": 0.778, + "2014": 0.782, + "2015": 0.786, + "2016": 0.794, + "2017": 0.805, + "2018": 0.807, + "2019": 0.813, + "2020": 0.774, + "2021": 0.745 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "National", + "GDLCODE": "RWAt", + "Region": "Total", + "1990": 0.437, + "1991": 0.408, + "1992": 0.374, + "1993": 0.341, + "1994": -0.091, + "1995": 0.307, + "1996": 0.318, + "1997": 0.318, + "1998": 0.334, + "1999": 0.379, + "2000": 0.417, + "2001": 0.446, + "2002": 0.477, + "2003": 0.513, + "2004": 0.546, + "2005": 0.574, + "2006": 0.596, + "2007": 0.615, + "2008": 0.633, + "2009": 0.646, + "2010": 0.654, + "2011": 0.666, + "2012": 0.677, + "2013": 0.683, + "2014": 0.691, + "2015": 0.697, + "2016": 0.704, + "2017": 0.707, + "2018": 0.712, + "2019": 0.714, + "2020": 0.72, + "2021": 0.709 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr101", + "Region": "City of Kigali", + "1990": 0.476, + "1991": 0.445, + "1992": 0.409, + "1993": 0.38, + "1994": -0.076, + "1995": 0.353, + "1996": 0.368, + "1997": 0.37, + "1998": 0.39, + "1999": 0.441, + "2000": 0.486, + "2001": 0.518, + "2002": 0.552, + "2003": 0.592, + "2004": 0.628, + "2005": 0.659, + "2006": 0.673, + "2007": 0.684, + "2008": 0.695, + "2009": 0.7, + "2010": 0.701, + "2011": 0.715, + "2012": 0.729, + "2013": 0.737, + "2014": 0.748, + "2015": 0.755, + "2016": 0.76, + "2017": 0.761, + "2018": 0.763, + "2019": 0.764, + "2020": 0.767, + "2021": 0.756 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr105", + "Region": "East", + "1990": 0.38, + "1991": 0.353, + "1992": 0.322, + "1993": 0.299, + "1994": -0.102, + "1995": 0.279, + "1996": 0.295, + "1997": 0.298, + "1998": 0.317, + "1999": 0.365, + "2000": 0.406, + "2001": 0.43, + "2002": 0.455, + "2003": 0.485, + "2004": 0.511, + "2005": 0.533, + "2006": 0.554, + "2007": 0.573, + "2008": 0.591, + "2009": 0.604, + "2010": 0.614, + "2011": 0.625, + "2012": 0.636, + "2013": 0.643, + "2014": 0.651, + "2015": 0.657, + "2016": 0.669, + "2017": 0.677, + "2018": 0.687, + "2019": 0.695, + "2020": 0.705, + "2021": 0.695 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr104", + "Region": "North", + "1990": 0.414, + "1991": 0.386, + "1992": 0.353, + "1993": 0.324, + "1994": -0.096, + "1995": 0.294, + "1996": 0.307, + "1997": 0.307, + "1998": 0.324, + "1999": 0.37, + "2000": 0.409, + "2001": 0.444, + "2002": 0.482, + "2003": 0.525, + "2004": 0.566, + "2005": 0.602, + "2006": 0.616, + "2007": 0.627, + "2008": 0.637, + "2009": 0.643, + "2010": 0.644, + "2011": 0.661, + "2012": 0.677, + "2013": 0.689, + "2014": 0.702, + "2015": 0.712, + "2016": 0.713, + "2017": 0.709, + "2018": 0.708, + "2019": 0.705, + "2020": 0.704, + "2021": 0.693 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr102", + "Region": "South", + "1990": 0.438, + "1991": 0.409, + "1992": 0.375, + "1993": 0.341, + "1994": -0.091, + "1995": 0.307, + "1996": 0.318, + "1997": 0.317, + "1998": 0.333, + "1999": 0.378, + "2000": 0.416, + "2001": 0.446, + "2002": 0.478, + "2003": 0.516, + "2004": 0.55, + "2005": 0.579, + "2006": 0.602, + "2007": 0.623, + "2008": 0.642, + "2009": 0.656, + "2010": 0.666, + "2011": 0.676, + "2012": 0.685, + "2013": 0.69, + "2014": 0.696, + "2015": 0.7, + "2016": 0.703, + "2017": 0.703, + "2018": 0.704, + "2019": 0.704, + "2020": 0.705, + "2021": 0.695 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr103", + "Region": "West", + "1990": 0.454, + "1991": 0.424, + "1992": 0.389, + "1993": 0.356, + "1994": -0.086, + "1995": 0.321, + "1996": 0.333, + "1997": 0.332, + "1998": 0.349, + "1999": 0.395, + "2000": 0.434, + "2001": 0.461, + "2002": 0.49, + "2003": 0.523, + "2004": 0.553, + "2005": 0.578, + "2006": 0.605, + "2007": 0.629, + "2008": 0.651, + "2009": 0.669, + "2010": 0.682, + "2011": 0.69, + "2012": 0.698, + "2013": 0.701, + "2014": 0.706, + "2015": 0.708, + "2016": 0.715, + "2017": 0.719, + "2018": 0.725, + "2019": 0.728, + "2020": 0.734, + "2021": 0.723 + }, + { + "Country": "Saint Kitts and Nevis", + "Continent": "America", + "ISO_Code": "KNA", + "Level": "National", + "GDLCODE": "KNAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.79, + "2006": 0.789, + "2007": 0.79, + "2008": 0.79, + "2009": 0.791, + "2010": 0.789, + "2011": 0.793, + "2012": 0.795, + "2013": 0.792, + "2014": 0.784, + "2015": 0.781, + "2016": 0.796, + "2017": 0.798, + "2018": 0.792, + "2019": 0.793, + "2020": 0.794, + "2021": 0.795 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "National", + "GDLCODE": "LCAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.781, + "2001": 0.787, + "2002": 0.792, + "2003": 0.796, + "2004": 0.8, + "2005": 0.804, + "2006": 0.807, + "2007": 0.809, + "2008": 0.811, + "2009": 0.811, + "2010": 0.811, + "2011": 0.815, + "2012": 0.814, + "2013": 0.811, + "2014": 0.813, + "2015": 0.818, + "2016": 0.817, + "2017": 0.817, + "2018": 0.821, + "2019": 0.822, + "2020": 0.822, + "2021": 0.786 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr102", + "Region": "St Lucia rural", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.781, + "2001": 0.787, + "2002": 0.792, + "2003": 0.796, + "2004": 0.8, + "2005": 0.804, + "2006": 0.807, + "2007": 0.809, + "2008": 0.811, + "2009": 0.811, + "2010": 0.811, + "2011": 0.815, + "2012": 0.814, + "2013": 0.811, + "2014": 0.813, + "2015": 0.818, + "2016": 0.817, + "2017": 0.817, + "2018": 0.821, + "2019": 0.822, + "2020": 0.822, + "2021": 0.786 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr101", + "Region": "St Lucia urban", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.781, + "2001": 0.787, + "2002": 0.792, + "2003": 0.796, + "2004": 0.8, + "2005": 0.804, + "2006": 0.807, + "2007": 0.809, + "2008": 0.811, + "2009": 0.811, + "2010": 0.811, + "2011": 0.815, + "2012": 0.814, + "2013": 0.811, + "2014": 0.813, + "2015": 0.818, + "2016": 0.817, + "2017": 0.817, + "2018": 0.821, + "2019": 0.822, + "2020": 0.822, + "2021": 0.786 + }, + { + "Country": "Saint Vincent and the Grenadines", + "Continent": "America", + "ISO_Code": "VCT", + "Level": "National", + "GDLCODE": "VCTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.79, + "2001": 0.799, + "2002": 0.803, + "2003": 0.805, + "2004": 0.816, + "2005": 0.823, + "2006": 0.831, + "2007": 0.842, + "2008": 0.847, + "2009": 0.847, + "2010": 0.842, + "2011": 0.84, + "2012": 0.833, + "2013": 0.828, + "2014": 0.838, + "2015": 0.837, + "2016": 0.835, + "2017": 0.835, + "2018": 0.833, + "2019": 0.813, + "2020": 0.802, + "2021": 0.764 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "National", + "GDLCODE": "WSMt", + "Region": "Total", + "1990": 0.733, + "1991": 0.737, + "1992": 0.744, + "1993": 0.749, + "1994": 0.754, + "1995": 0.758, + "1996": 0.763, + "1997": 0.767, + "1998": 0.772, + "1999": 0.776, + "2000": 0.781, + "2001": 0.785, + "2002": 0.789, + "2003": 0.792, + "2004": 0.795, + "2005": 0.796, + "2006": 0.8, + "2007": 0.802, + "2008": 0.802, + "2009": 0.77, + "2010": 0.804, + "2011": 0.804, + "2012": 0.803, + "2013": 0.806, + "2014": 0.807, + "2015": 0.808, + "2016": 0.808, + "2017": 0.809, + "2018": 0.81, + "2019": 0.802, + "2020": 0.812, + "2021": 0.812 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr101", + "Region": "Apia Urban Area", + "1990": 0.868, + "1991": 0.869, + "1992": 0.874, + "1993": 0.878, + "1994": 0.879, + "1995": 0.881, + "1996": 0.88, + "1997": 0.88, + "1998": 0.88, + "1999": 0.879, + "2000": 0.879, + "2001": 0.877, + "2002": 0.874, + "2003": 0.873, + "2004": 0.871, + "2005": 0.867, + "2006": 0.868, + "2007": 0.864, + "2008": 0.86, + "2009": 0.823, + "2010": 0.854, + "2011": 0.851, + "2012": 0.846, + "2013": 0.845, + "2014": 0.844, + "2015": 0.842, + "2016": 0.839, + "2017": 0.838, + "2018": 0.836, + "2019": 0.795, + "2020": 0.804, + "2021": 0.804 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr102", + "Region": "North West Upolu", + "1990": 0.868, + "1991": 0.869, + "1992": 0.874, + "1993": 0.878, + "1994": 0.879, + "1995": 0.881, + "1996": 0.881, + "1997": 0.88, + "1998": 0.88, + "1999": 0.88, + "2000": 0.879, + "2001": 0.877, + "2002": 0.874, + "2003": 0.873, + "2004": 0.871, + "2005": 0.867, + "2006": 0.868, + "2007": 0.864, + "2008": 0.86, + "2009": 0.823, + "2010": 0.854, + "2011": 0.851, + "2012": 0.846, + "2013": 0.845, + "2014": 0.844, + "2015": 0.842, + "2016": 0.839, + "2017": 0.838, + "2018": 0.836, + "2019": 0.795, + "2020": 0.804, + "2021": 0.804 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr103", + "Region": "Rest of Upolu", + "1990": 0.881, + "1991": 0.882, + "1992": 0.887, + "1993": 0.891, + "1994": 0.892, + "1995": 0.894, + "1996": 0.893, + "1997": 0.893, + "1998": 0.893, + "1999": 0.892, + "2000": 0.892, + "2001": 0.89, + "2002": 0.887, + "2003": 0.886, + "2004": 0.884, + "2005": 0.88, + "2006": 0.881, + "2007": 0.877, + "2008": 0.873, + "2009": 0.836, + "2010": 0.866, + "2011": 0.863, + "2012": 0.858, + "2013": 0.857, + "2014": 0.857, + "2015": 0.854, + "2016": 0.852, + "2017": 0.851, + "2018": 0.848, + "2019": 0.807, + "2020": 0.816, + "2021": 0.816 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr104", + "Region": "Savaii", + "1990": 0.893, + "1991": 0.893, + "1992": 0.898, + "1993": 0.902, + "1994": 0.903, + "1995": 0.905, + "1996": 0.905, + "1997": 0.905, + "1998": 0.904, + "1999": 0.904, + "2000": 0.904, + "2001": 0.901, + "2002": 0.899, + "2003": 0.897, + "2004": 0.895, + "2005": 0.891, + "2006": 0.892, + "2007": 0.889, + "2008": 0.884, + "2009": 0.847, + "2010": 0.878, + "2011": 0.875, + "2012": 0.87, + "2013": 0.869, + "2014": 0.868, + "2015": 0.866, + "2016": 0.863, + "2017": 0.862, + "2018": 0.86, + "2019": 0.817, + "2020": 0.827, + "2021": 0.827 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "National", + "GDLCODE": "STPt", + "Region": "Total", + "1990": 0.638, + "1991": 0.637, + "1992": 0.635, + "1993": 0.633, + "1994": 0.632, + "1995": 0.632, + "1996": 0.632, + "1997": 0.634, + "1998": 0.634, + "1999": 0.637, + "2000": 0.641, + "2001": 0.647, + "2002": 0.655, + "2003": 0.664, + "2004": 0.673, + "2005": 0.672, + "2006": 0.683, + "2007": 0.688, + "2008": 0.694, + "2009": 0.694, + "2010": 0.696, + "2011": 0.691, + "2012": 0.704, + "2013": 0.713, + "2014": 0.721, + "2015": 0.727, + "2016": 0.731, + "2017": 0.743, + "2018": 0.744, + "2019": 0.747, + "2020": 0.735, + "2021": 0.732 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr101", + "Region": "Regiao Centro", + "1990": 0.642, + "1991": 0.641, + "1992": 0.639, + "1993": 0.637, + "1994": 0.635, + "1995": 0.635, + "1996": 0.636, + "1997": 0.637, + "1998": 0.637, + "1999": 0.64, + "2000": 0.645, + "2001": 0.65, + "2002": 0.659, + "2003": 0.668, + "2004": 0.677, + "2005": 0.676, + "2006": 0.687, + "2007": 0.692, + "2008": 0.697, + "2009": 0.698, + "2010": 0.7, + "2011": 0.695, + "2012": 0.708, + "2013": 0.717, + "2014": 0.725, + "2015": 0.733, + "2016": 0.739, + "2017": 0.754, + "2018": 0.758, + "2019": 0.763, + "2020": 0.751, + "2021": 0.748 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr104", + "Region": "Regiao do Principe", + "1990": 0.633, + "1991": 0.632, + "1992": 0.63, + "1993": 0.628, + "1994": 0.627, + "1995": 0.627, + "1996": 0.627, + "1997": 0.629, + "1998": 0.629, + "1999": 0.632, + "2000": 0.636, + "2001": 0.642, + "2002": 0.65, + "2003": 0.659, + "2004": 0.668, + "2005": 0.667, + "2006": 0.678, + "2007": 0.683, + "2008": 0.688, + "2009": 0.689, + "2010": 0.691, + "2011": 0.686, + "2012": 0.698, + "2013": 0.707, + "2014": 0.715, + "2015": 0.722, + "2016": 0.727, + "2017": 0.739, + "2018": 0.742, + "2019": 0.745, + "2020": 0.734, + "2021": 0.731 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr103", + "Region": "Regiao Norte", + "1990": 0.62, + "1991": 0.62, + "1992": 0.617, + "1993": 0.615, + "1994": 0.614, + "1995": 0.614, + "1996": 0.615, + "1997": 0.616, + "1998": 0.616, + "1999": 0.619, + "2000": 0.623, + "2001": 0.629, + "2002": 0.637, + "2003": 0.646, + "2004": 0.654, + "2005": 0.654, + "2006": 0.664, + "2007": 0.669, + "2008": 0.675, + "2009": 0.675, + "2010": 0.677, + "2011": 0.672, + "2012": 0.685, + "2013": 0.694, + "2014": 0.701, + "2015": 0.706, + "2016": 0.708, + "2017": 0.718, + "2018": 0.718, + "2019": 0.719, + "2020": 0.707, + "2021": 0.705 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr102", + "Region": "Regiao Sul", + "1990": 0.649, + "1991": 0.648, + "1992": 0.646, + "1993": 0.643, + "1994": 0.642, + "1995": 0.642, + "1996": 0.643, + "1997": 0.644, + "1998": 0.644, + "1999": 0.647, + "2000": 0.651, + "2001": 0.657, + "2002": 0.666, + "2003": 0.675, + "2004": 0.684, + "2005": 0.683, + "2006": 0.694, + "2007": 0.699, + "2008": 0.705, + "2009": 0.705, + "2010": 0.707, + "2011": 0.702, + "2012": 0.715, + "2013": 0.724, + "2014": 0.732, + "2015": 0.734, + "2016": 0.733, + "2017": 0.74, + "2018": 0.737, + "2019": 0.735, + "2020": 0.724, + "2021": 0.721 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "National", + "GDLCODE": "SAUt", + "Region": "Total", + "1990": 0.753, + "1991": 0.759, + "1992": 0.768, + "1993": 0.774, + "1994": 0.78, + "1995": 0.785, + "1996": 0.789, + "1997": 0.792, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.815, + "2002": 0.821, + "2003": 0.825, + "2004": 0.833, + "2005": 0.84, + "2006": 0.843, + "2007": 0.847, + "2008": 0.85, + "2009": 0.853, + "2010": 0.858, + "2011": 0.865, + "2012": 0.869, + "2013": 0.871, + "2014": 0.873, + "2015": 0.876, + "2016": 0.878, + "2017": 0.879, + "2018": 0.88, + "2019": 0.882, + "2020": 0.865, + "2021": 0.876 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr101", + "Region": "Center (Riadh, Qassim)", + "1990": 0.753, + "1991": 0.759, + "1992": 0.768, + "1993": 0.774, + "1994": 0.78, + "1995": 0.785, + "1996": 0.789, + "1997": 0.792, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.815, + "2002": 0.821, + "2003": 0.825, + "2004": 0.833, + "2005": 0.84, + "2006": 0.843, + "2007": 0.847, + "2008": 0.85, + "2009": 0.853, + "2010": 0.858, + "2011": 0.865, + "2012": 0.869, + "2013": 0.871, + "2014": 0.873, + "2015": 0.876, + "2016": 0.878, + "2017": 0.879, + "2018": 0.88, + "2019": 0.882, + "2020": 0.865, + "2021": 0.876 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr104", + "Region": "Eastern province", + "1990": 0.753, + "1991": 0.759, + "1992": 0.768, + "1993": 0.774, + "1994": 0.78, + "1995": 0.785, + "1996": 0.789, + "1997": 0.792, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.815, + "2002": 0.821, + "2003": 0.825, + "2004": 0.833, + "2005": 0.84, + "2006": 0.843, + "2007": 0.847, + "2008": 0.85, + "2009": 0.853, + "2010": 0.858, + "2011": 0.865, + "2012": 0.869, + "2013": 0.871, + "2014": 0.873, + "2015": 0.876, + "2016": 0.878, + "2017": 0.879, + "2018": 0.88, + "2019": 0.882, + "2020": 0.865, + "2021": 0.876 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr105", + "Region": "North (Northern Borders, Al Jawf, Hail)", + "1990": 0.753, + "1991": 0.759, + "1992": 0.768, + "1993": 0.774, + "1994": 0.78, + "1995": 0.785, + "1996": 0.789, + "1997": 0.792, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.815, + "2002": 0.821, + "2003": 0.825, + "2004": 0.833, + "2005": 0.84, + "2006": 0.843, + "2007": 0.847, + "2008": 0.85, + "2009": 0.853, + "2010": 0.858, + "2011": 0.865, + "2012": 0.869, + "2013": 0.871, + "2014": 0.873, + "2015": 0.876, + "2016": 0.878, + "2017": 0.879, + "2018": 0.88, + "2019": 0.882, + "2020": 0.865, + "2021": 0.876 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr103", + "Region": "South (Bahah, Jizan, Asir, Najran)", + "1990": 0.753, + "1991": 0.759, + "1992": 0.768, + "1993": 0.774, + "1994": 0.78, + "1995": 0.785, + "1996": 0.789, + "1997": 0.792, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.815, + "2002": 0.821, + "2003": 0.825, + "2004": 0.833, + "2005": 0.84, + "2006": 0.843, + "2007": 0.847, + "2008": 0.85, + "2009": 0.853, + "2010": 0.858, + "2011": 0.865, + "2012": 0.869, + "2013": 0.871, + "2014": 0.873, + "2015": 0.876, + "2016": 0.878, + "2017": 0.879, + "2018": 0.88, + "2019": 0.882, + "2020": 0.865, + "2021": 0.876 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr102", + "Region": "West (Makka, Madinah, Tabuk)", + "1990": 0.753, + "1991": 0.759, + "1992": 0.768, + "1993": 0.774, + "1994": 0.78, + "1995": 0.785, + "1996": 0.789, + "1997": 0.792, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.815, + "2002": 0.821, + "2003": 0.825, + "2004": 0.833, + "2005": 0.84, + "2006": 0.843, + "2007": 0.847, + "2008": 0.85, + "2009": 0.853, + "2010": 0.858, + "2011": 0.865, + "2012": 0.869, + "2013": 0.871, + "2014": 0.873, + "2015": 0.876, + "2016": 0.878, + "2017": 0.879, + "2018": 0.88, + "2019": 0.882, + "2020": 0.865, + "2021": 0.876 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "National", + "GDLCODE": "SENt", + "Region": "Total", + "1990": 0.568, + "1991": 0.571, + "1992": 0.571, + "1993": 0.569, + "1994": 0.569, + "1995": 0.567, + "1996": 0.564, + "1997": 0.563, + "1998": 0.56, + "1999": 0.563, + "2000": 0.568, + "2001": 0.578, + "2002": 0.588, + "2003": 0.602, + "2004": 0.616, + "2005": 0.629, + "2006": 0.642, + "2007": 0.655, + "2008": 0.665, + "2009": 0.676, + "2010": 0.686, + "2011": 0.696, + "2012": 0.699, + "2013": 0.709, + "2014": 0.715, + "2015": 0.721, + "2016": 0.731, + "2017": 0.735, + "2018": 0.74, + "2019": 0.747, + "2020": 0.739, + "2021": 0.725 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr101", + "Region": "Dakar", + "1990": 0.685, + "1991": 0.688, + "1992": 0.687, + "1993": 0.684, + "1994": 0.682, + "1995": 0.679, + "1996": 0.675, + "1997": 0.672, + "1998": 0.668, + "1999": 0.67, + "2000": 0.674, + "2001": 0.684, + "2002": 0.694, + "2003": 0.708, + "2004": 0.722, + "2005": 0.736, + "2006": 0.741, + "2007": 0.746, + "2008": 0.749, + "2009": 0.752, + "2010": 0.755, + "2011": 0.758, + "2012": 0.757, + "2013": 0.771, + "2014": 0.782, + "2015": 0.758, + "2016": 0.768, + "2017": 0.797, + "2018": 0.778, + "2019": 0.79, + "2020": 0.782, + "2021": 0.767 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr103", + "Region": "Diourbel", + "1990": 0.54, + "1991": 0.543, + "1992": 0.542, + "1993": 0.538, + "1994": 0.536, + "1995": 0.532, + "1996": 0.527, + "1997": 0.524, + "1998": 0.519, + "1999": 0.52, + "2000": 0.523, + "2001": 0.53, + "2002": 0.538, + "2003": 0.548, + "2004": 0.559, + "2005": 0.57, + "2006": 0.588, + "2007": 0.604, + "2008": 0.62, + "2009": 0.635, + "2010": 0.65, + "2011": 0.664, + "2012": 0.641, + "2013": 0.659, + "2014": 0.673, + "2015": 0.664, + "2016": 0.673, + "2017": 0.704, + "2018": 0.691, + "2019": 0.744, + "2020": 0.736, + "2021": 0.722 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr109", + "Region": "Fatick", + "1990": 0.552, + "1991": 0.555, + "1992": 0.554, + "1993": 0.552, + "1994": 0.55, + "1995": 0.548, + "1996": 0.544, + "1997": 0.542, + "1998": 0.539, + "1999": 0.541, + "2000": 0.545, + "2001": 0.553, + "2002": 0.563, + "2003": 0.575, + "2004": 0.588, + "2005": 0.6, + "2006": 0.618, + "2007": 0.634, + "2008": 0.65, + "2009": 0.665, + "2010": 0.68, + "2011": 0.694, + "2012": 0.703, + "2013": 0.718, + "2014": 0.73, + "2015": 0.715, + "2016": 0.724, + "2017": 0.755, + "2018": 0.777, + "2019": 0.753, + "2020": 0.745, + "2021": 0.731 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr106", + "Region": "Kaolack", + "1990": 0.563, + "1991": 0.565, + "1992": 0.565, + "1993": 0.562, + "1994": 0.559, + "1995": 0.556, + "1996": 0.551, + "1997": 0.548, + "1998": 0.544, + "1999": 0.545, + "2000": 0.549, + "2001": 0.556, + "2002": 0.565, + "2003": 0.576, + "2004": 0.588, + "2005": 0.6, + "2006": 0.614, + "2007": 0.628, + "2008": 0.641, + "2009": 0.653, + "2010": 0.665, + "2011": 0.677, + "2012": 0.707, + "2013": 0.715, + "2014": 0.719, + "2015": 0.707, + "2016": 0.717, + "2017": 0.73, + "2018": 0.755, + "2019": 0.746, + "2020": 0.738, + "2021": 0.724 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr110", + "Region": "Kolda", + "1990": 0.522, + "1991": 0.525, + "1992": 0.524, + "1993": 0.52, + "1994": 0.517, + "1995": 0.512, + "1996": 0.507, + "1997": 0.504, + "1998": 0.499, + "1999": 0.499, + "2000": 0.501, + "2001": 0.507, + "2002": 0.514, + "2003": 0.524, + "2004": 0.535, + "2005": 0.545, + "2006": 0.555, + "2007": 0.564, + "2008": 0.572, + "2009": 0.58, + "2010": 0.588, + "2011": 0.595, + "2012": 0.601, + "2013": 0.617, + "2014": 0.63, + "2015": 0.682, + "2016": 0.691, + "2017": 0.679, + "2018": 0.661, + "2019": 0.658, + "2020": 0.65, + "2021": 0.637 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr108", + "Region": "Louga", + "1990": 0.548, + "1991": 0.551, + "1992": 0.551, + "1993": 0.556, + "1994": 0.562, + "1995": 0.567, + "1996": 0.572, + "1997": 0.577, + "1998": 0.581, + "1999": 0.591, + "2000": 0.603, + "2001": 0.619, + "2002": 0.637, + "2003": 0.658, + "2004": 0.68, + "2005": 0.701, + "2006": 0.704, + "2007": 0.707, + "2008": 0.708, + "2009": 0.709, + "2010": 0.711, + "2011": 0.711, + "2012": 0.751, + "2013": 0.729, + "2014": 0.704, + "2015": 0.754, + "2016": 0.763, + "2017": 0.725, + "2018": 0.735, + "2019": 0.71, + "2020": 0.702, + "2021": 0.688 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr104", + "Region": "Saint Louis", + "1990": 0.55, + "1991": 0.552, + "1992": 0.552, + "1993": 0.557, + "1994": 0.562, + "1995": 0.567, + "1996": 0.57, + "1997": 0.575, + "1998": 0.579, + "1999": 0.588, + "2000": 0.599, + "2001": 0.615, + "2002": 0.632, + "2003": 0.652, + "2004": 0.673, + "2005": 0.694, + "2006": 0.694, + "2007": 0.695, + "2008": 0.693, + "2009": 0.692, + "2010": 0.691, + "2011": 0.689, + "2012": 0.753, + "2013": 0.751, + "2014": 0.746, + "2015": 0.766, + "2016": 0.776, + "2017": 0.736, + "2018": 0.758, + "2019": 0.751, + "2020": 0.743, + "2021": 0.729 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr105", + "Region": "Tambacounda", + "1990": 0.524, + "1991": 0.527, + "1992": 0.526, + "1993": 0.522, + "1994": 0.519, + "1995": 0.515, + "1996": 0.51, + "1997": 0.506, + "1998": 0.501, + "1999": 0.502, + "2000": 0.504, + "2001": 0.511, + "2002": 0.518, + "2003": 0.528, + "2004": 0.538, + "2005": 0.548, + "2006": 0.568, + "2007": 0.587, + "2008": 0.604, + "2009": 0.621, + "2010": 0.638, + "2011": 0.654, + "2012": 0.651, + "2013": 0.629, + "2014": 0.604, + "2015": 0.625, + "2016": 0.633, + "2017": 0.692, + "2018": 0.659, + "2019": 0.725, + "2020": 0.717, + "2021": 0.703 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr107", + "Region": "Thies", + "1990": 0.592, + "1991": 0.595, + "1992": 0.595, + "1993": 0.596, + "1994": 0.598, + "1995": 0.598, + "1996": 0.598, + "1997": 0.599, + "1998": 0.599, + "1999": 0.605, + "2000": 0.613, + "2001": 0.625, + "2002": 0.638, + "2003": 0.655, + "2004": 0.673, + "2005": 0.69, + "2006": 0.705, + "2007": 0.721, + "2008": 0.734, + "2009": 0.747, + "2010": 0.761, + "2011": 0.773, + "2012": 0.7, + "2013": 0.718, + "2014": 0.733, + "2015": 0.807, + "2016": 0.818, + "2017": 0.747, + "2018": 0.8, + "2019": 0.787, + "2020": 0.779, + "2021": 0.764 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr102", + "Region": "Ziguinchor", + "1990": 0.533, + "1991": 0.536, + "1992": 0.536, + "1993": 0.538, + "1994": 0.541, + "1995": 0.542, + "1996": 0.543, + "1997": 0.545, + "1998": 0.546, + "1999": 0.552, + "2000": 0.561, + "2001": 0.574, + "2002": 0.587, + "2003": 0.604, + "2004": 0.622, + "2005": 0.639, + "2006": 0.655, + "2007": 0.671, + "2008": 0.685, + "2009": 0.699, + "2010": 0.713, + "2011": 0.726, + "2012": 0.767, + "2013": 0.759, + "2014": 0.748, + "2015": 0.7, + "2016": 0.709, + "2017": 0.745, + "2018": 0.746, + "2019": 0.748, + "2020": 0.74, + "2021": 0.726 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "National", + "GDLCODE": "SRBt", + "Region": "Total", + "1990": 0.774, + "1991": 0.78, + "1992": 0.783, + "1993": 0.785, + "1994": 0.79, + "1995": 0.796, + "1996": 0.793, + "1997": 0.795, + "1998": 0.788, + "1999": 0.766, + "2000": 0.791, + "2001": 0.805, + "2002": 0.804, + "2003": 0.807, + "2004": 0.809, + "2005": 0.811, + "2006": 0.821, + "2007": 0.825, + "2008": 0.83, + "2009": 0.831, + "2010": 0.837, + "2011": 0.843, + "2012": 0.848, + "2013": 0.855, + "2014": 0.857, + "2015": 0.859, + "2016": 0.866, + "2017": 0.865, + "2018": 0.869, + "2019": 0.872, + "2020": 0.852, + "2021": 0.834 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr101", + "Region": "Belgrade", + "1990": 0.774, + "1991": 0.78, + "1992": 0.783, + "1993": 0.785, + "1994": 0.79, + "1995": 0.796, + "1996": 0.793, + "1997": 0.795, + "1998": 0.788, + "1999": 0.766, + "2000": 0.791, + "2001": 0.805, + "2002": 0.804, + "2003": 0.807, + "2004": 0.809, + "2005": 0.811, + "2006": 0.821, + "2007": 0.825, + "2008": 0.83, + "2009": 0.831, + "2010": 0.837, + "2011": 0.843, + "2012": 0.848, + "2013": 0.855, + "2014": 0.857, + "2015": 0.859, + "2016": 0.866, + "2017": 0.865, + "2018": 0.869, + "2019": 0.872, + "2020": 0.852, + "2021": 0.834 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr104", + "Region": "South and East Serbia", + "1990": 0.774, + "1991": 0.78, + "1992": 0.783, + "1993": 0.785, + "1994": 0.79, + "1995": 0.796, + "1996": 0.793, + "1997": 0.795, + "1998": 0.788, + "1999": 0.766, + "2000": 0.791, + "2001": 0.805, + "2002": 0.804, + "2003": 0.807, + "2004": 0.809, + "2005": 0.811, + "2006": 0.821, + "2007": 0.825, + "2008": 0.83, + "2009": 0.831, + "2010": 0.837, + "2011": 0.843, + "2012": 0.848, + "2013": 0.855, + "2014": 0.857, + "2015": 0.859, + "2016": 0.866, + "2017": 0.865, + "2018": 0.869, + "2019": 0.872, + "2020": 0.852, + "2021": 0.834 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr103", + "Region": "Sumadija and West Serbia", + "1990": 0.774, + "1991": 0.78, + "1992": 0.783, + "1993": 0.785, + "1994": 0.79, + "1995": 0.796, + "1996": 0.793, + "1997": 0.795, + "1998": 0.788, + "1999": 0.766, + "2000": 0.791, + "2001": 0.805, + "2002": 0.804, + "2003": 0.807, + "2004": 0.809, + "2005": 0.811, + "2006": 0.821, + "2007": 0.825, + "2008": 0.83, + "2009": 0.831, + "2010": 0.837, + "2011": 0.843, + "2012": 0.848, + "2013": 0.855, + "2014": 0.857, + "2015": 0.859, + "2016": 0.866, + "2017": 0.865, + "2018": 0.869, + "2019": 0.872, + "2020": 0.852, + "2021": 0.834 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr102", + "Region": "Vojvodina", + "1990": 0.774, + "1991": 0.78, + "1992": 0.783, + "1993": 0.785, + "1994": 0.79, + "1995": 0.796, + "1996": 0.793, + "1997": 0.795, + "1998": 0.788, + "1999": 0.766, + "2000": 0.791, + "2001": 0.805, + "2002": 0.804, + "2003": 0.807, + "2004": 0.809, + "2005": 0.811, + "2006": 0.821, + "2007": 0.825, + "2008": 0.83, + "2009": 0.831, + "2010": 0.837, + "2011": 0.843, + "2012": 0.848, + "2013": 0.855, + "2014": 0.857, + "2015": 0.859, + "2016": 0.866, + "2017": 0.865, + "2018": 0.869, + "2019": 0.872, + "2020": 0.852, + "2021": 0.834 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "National", + "GDLCODE": "SLEt", + "Region": "Total", + "1990": 0.37, + "1991": 0.362, + "1992": 0.363, + "1993": 0.363, + "1994": 0.353, + "1995": 0.349, + "1996": 0.364, + "1997": 0.365, + "1998": 0.351, + "1999": 0.34, + "2000": 0.385, + "2001": 0.395, + "2002": 0.406, + "2003": 0.415, + "2004": 0.424, + "2005": 0.434, + "2006": 0.451, + "2007": 0.467, + "2008": 0.485, + "2009": 0.502, + "2010": 0.518, + "2011": 0.533, + "2012": 0.545, + "2013": 0.559, + "2014": 0.56, + "2015": 0.572, + "2016": 0.591, + "2017": 0.595, + "2018": 0.612, + "2019": 0.619, + "2020": 0.612, + "2021": 0.616 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr109", + "Region": "Bo", + "1990": 0.349, + "1991": 0.341, + "1992": 0.343, + "1993": 0.343, + "1994": 0.333, + "1995": 0.329, + "1996": 0.344, + "1997": 0.344, + "1998": 0.331, + "1999": 0.32, + "2000": 0.364, + "2001": 0.373, + "2002": 0.384, + "2003": 0.393, + "2004": 0.402, + "2005": 0.412, + "2006": 0.428, + "2007": 0.444, + "2008": 0.461, + "2009": 0.483, + "2010": 0.504, + "2011": 0.524, + "2012": 0.543, + "2013": 0.562, + "2014": 0.601, + "2015": 0.649, + "2016": 0.705, + "2017": 0.742, + "2018": 0.677, + "2019": 0.595, + "2020": 0.588, + "2021": 0.593 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr101", + "Region": "Bombali", + "1990": 0.414, + "1991": 0.405, + "1992": 0.407, + "1993": 0.407, + "1994": 0.396, + "1995": 0.393, + "1996": 0.408, + "1997": 0.409, + "1998": 0.394, + "1999": 0.382, + "2000": 0.431, + "2001": 0.441, + "2002": 0.452, + "2003": 0.462, + "2004": 0.472, + "2005": 0.483, + "2006": 0.501, + "2007": 0.518, + "2008": 0.537, + "2009": 0.561, + "2010": 0.585, + "2011": 0.607, + "2012": 0.628, + "2013": 0.649, + "2014": 0.621, + "2015": 0.606, + "2016": 0.598, + "2017": 0.576, + "2018": 0.626, + "2019": 0.667, + "2020": 0.659, + "2021": 0.664 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr110", + "Region": "Bonthe", + "1990": 0.355, + "1991": 0.347, + "1992": 0.349, + "1993": 0.348, + "1994": 0.338, + "1995": 0.335, + "1996": 0.35, + "1997": 0.35, + "1998": 0.336, + "1999": 0.325, + "2000": 0.37, + "2001": 0.379, + "2002": 0.39, + "2003": 0.399, + "2004": 0.408, + "2005": 0.418, + "2006": 0.435, + "2007": 0.45, + "2008": 0.468, + "2009": 0.518, + "2010": 0.569, + "2011": 0.62, + "2012": 0.67, + "2013": 0.721, + "2014": 0.703, + "2015": 0.699, + "2016": 0.703, + "2017": 0.69, + "2018": 0.709, + "2019": 0.717, + "2020": 0.708, + "2021": 0.713 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr106", + "Region": "Kailahun", + "1990": 0.424, + "1991": 0.415, + "1992": 0.417, + "1993": 0.416, + "1994": 0.405, + "1995": 0.402, + "1996": 0.418, + "1997": 0.418, + "1998": 0.403, + "1999": 0.391, + "2000": 0.441, + "2001": 0.451, + "2002": 0.462, + "2003": 0.472, + "2004": 0.483, + "2005": 0.494, + "2006": 0.512, + "2007": 0.529, + "2008": 0.548, + "2009": 0.551, + "2010": 0.553, + "2011": 0.552, + "2012": 0.55, + "2013": 0.547, + "2014": 0.54, + "2015": 0.545, + "2016": 0.556, + "2017": 0.552, + "2018": 0.617, + "2019": 0.673, + "2020": 0.665, + "2021": 0.67 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr102", + "Region": "Kambia", + "1990": 0.42, + "1991": 0.411, + "1992": 0.413, + "1993": 0.413, + "1994": 0.401, + "1995": 0.398, + "1996": 0.414, + "1997": 0.415, + "1998": 0.399, + "1999": 0.387, + "2000": 0.437, + "2001": 0.447, + "2002": 0.458, + "2003": 0.468, + "2004": 0.478, + "2005": 0.489, + "2006": 0.507, + "2007": 0.524, + "2008": 0.544, + "2009": 0.562, + "2010": 0.579, + "2011": 0.594, + "2012": 0.608, + "2013": 0.622, + "2014": 0.642, + "2015": 0.674, + "2016": 0.712, + "2017": 0.733, + "2018": 0.669, + "2019": 0.59, + "2020": 0.583, + "2021": 0.587 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr107", + "Region": "Kenema", + "1990": 0.391, + "1991": 0.382, + "1992": 0.384, + "1993": 0.383, + "1994": 0.373, + "1995": 0.369, + "1996": 0.385, + "1997": 0.385, + "1998": 0.371, + "1999": 0.359, + "2000": 0.406, + "2001": 0.416, + "2002": 0.427, + "2003": 0.437, + "2004": 0.446, + "2005": 0.457, + "2006": 0.474, + "2007": 0.491, + "2008": 0.509, + "2009": 0.514, + "2010": 0.517, + "2011": 0.518, + "2012": 0.517, + "2013": 0.516, + "2014": 0.523, + "2015": 0.541, + "2016": 0.565, + "2017": 0.574, + "2018": 0.577, + "2019": 0.569, + "2020": 0.562, + "2021": 0.566 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr103", + "Region": "Koinadugu", + "1990": 0.326, + "1991": 0.318, + "1992": 0.32, + "1993": 0.319, + "1994": 0.31, + "1995": 0.307, + "1996": 0.321, + "1997": 0.321, + "1998": 0.308, + "1999": 0.298, + "2000": 0.34, + "2001": 0.349, + "2002": 0.359, + "2003": 0.368, + "2004": 0.377, + "2005": 0.386, + "2006": 0.402, + "2007": 0.417, + "2008": 0.434, + "2009": 0.455, + "2010": 0.476, + "2011": 0.495, + "2012": 0.513, + "2013": 0.532, + "2014": 0.543, + "2015": 0.565, + "2016": 0.592, + "2017": 0.605, + "2018": 0.641, + "2019": 0.668, + "2020": 0.66, + "2021": 0.665 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr108", + "Region": "Kono", + "1990": 0.373, + "1991": 0.365, + "1992": 0.366, + "1993": 0.366, + "1994": 0.356, + "1995": 0.352, + "1996": 0.367, + "1997": 0.368, + "1998": 0.354, + "1999": 0.342, + "2000": 0.388, + "2001": 0.398, + "2002": 0.409, + "2003": 0.418, + "2004": 0.428, + "2005": 0.438, + "2006": 0.455, + "2007": 0.471, + "2008": 0.489, + "2009": 0.506, + "2010": 0.522, + "2011": 0.536, + "2012": 0.549, + "2013": 0.562, + "2014": 0.556, + "2015": 0.56, + "2016": 0.571, + "2017": 0.567, + "2018": 0.603, + "2019": 0.629, + "2020": 0.622, + "2021": 0.626 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr111", + "Region": "Moyamba", + "1990": 0.374, + "1991": 0.365, + "1992": 0.367, + "1993": 0.367, + "1994": 0.356, + "1995": 0.353, + "1996": 0.368, + "1997": 0.369, + "1998": 0.354, + "1999": 0.343, + "2000": 0.389, + "2001": 0.399, + "2002": 0.409, + "2003": 0.419, + "2004": 0.428, + "2005": 0.439, + "2006": 0.455, + "2007": 0.471, + "2008": 0.489, + "2009": 0.501, + "2010": 0.512, + "2011": 0.521, + "2012": 0.528, + "2013": 0.535, + "2014": 0.558, + "2015": 0.591, + "2016": 0.631, + "2017": 0.654, + "2018": 0.635, + "2019": 0.603, + "2020": 0.595, + "2021": 0.6 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr104", + "Region": "Port Loko", + "1990": 0.404, + "1991": 0.395, + "1992": 0.397, + "1993": 0.396, + "1994": 0.385, + "1995": 0.382, + "1996": 0.398, + "1997": 0.398, + "1998": 0.383, + "1999": 0.372, + "2000": 0.42, + "2001": 0.429, + "2002": 0.441, + "2003": 0.451, + "2004": 0.46, + "2005": 0.471, + "2006": 0.489, + "2007": 0.505, + "2008": 0.524, + "2009": 0.534, + "2010": 0.543, + "2011": 0.549, + "2012": 0.553, + "2013": 0.558, + "2014": 0.559, + "2015": 0.57, + "2016": 0.589, + "2017": 0.592, + "2018": 0.571, + "2019": 0.538, + "2020": 0.531, + "2021": 0.535 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr112", + "Region": "Pujehun", + "1990": 0.377, + "1991": 0.368, + "1992": 0.37, + "1993": 0.369, + "1994": 0.359, + "1995": 0.356, + "1996": 0.371, + "1997": 0.371, + "1998": 0.357, + "1999": 0.346, + "2000": 0.392, + "2001": 0.402, + "2002": 0.412, + "2003": 0.422, + "2004": 0.431, + "2005": 0.442, + "2006": 0.458, + "2007": 0.475, + "2008": 0.493, + "2009": 0.501, + "2010": 0.509, + "2011": 0.514, + "2012": 0.517, + "2013": 0.52, + "2014": 0.521, + "2015": 0.533, + "2016": 0.55, + "2017": 0.554, + "2018": 0.604, + "2019": 0.647, + "2020": 0.639, + "2021": 0.644 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr105", + "Region": "Tonkolili", + "1990": 0.327, + "1991": 0.319, + "1992": 0.321, + "1993": 0.321, + "1994": 0.311, + "1995": 0.308, + "1996": 0.322, + "1997": 0.322, + "1998": 0.309, + "1999": 0.299, + "2000": 0.342, + "2001": 0.35, + "2002": 0.36, + "2003": 0.369, + "2004": 0.378, + "2005": 0.387, + "2006": 0.403, + "2007": 0.418, + "2008": 0.435, + "2009": 0.458, + "2010": 0.481, + "2011": 0.502, + "2012": 0.522, + "2013": 0.543, + "2014": 0.553, + "2015": 0.575, + "2016": 0.602, + "2017": 0.614, + "2018": 0.639, + "2019": 0.653, + "2020": 0.645, + "2021": 0.65 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr113", + "Region": "Western Rural", + "1990": 0.326, + "1991": 0.318, + "1992": 0.319, + "1993": 0.319, + "1994": 0.309, + "1995": 0.306, + "1996": 0.32, + "1997": 0.321, + "1998": 0.307, + "1999": 0.297, + "2000": 0.34, + "2001": 0.349, + "2002": 0.359, + "2003": 0.367, + "2004": 0.376, + "2005": 0.386, + "2006": 0.401, + "2007": 0.416, + "2008": 0.433, + "2009": 0.459, + "2010": 0.485, + "2011": 0.51, + "2012": 0.533, + "2013": 0.557, + "2014": 0.542, + "2015": 0.538, + "2016": 0.541, + "2017": 0.53, + "2018": 0.566, + "2019": 0.592, + "2020": 0.585, + "2021": 0.589 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr114", + "Region": "Western Urban", + "1990": 0.405, + "1991": 0.396, + "1992": 0.398, + "1993": 0.397, + "1994": 0.387, + "1995": 0.383, + "1996": 0.399, + "1997": 0.399, + "1998": 0.384, + "1999": 0.373, + "2000": 0.421, + "2001": 0.431, + "2002": 0.442, + "2003": 0.452, + "2004": 0.462, + "2005": 0.472, + "2006": 0.49, + "2007": 0.507, + "2008": 0.526, + "2009": 0.541, + "2010": 0.555, + "2011": 0.568, + "2012": 0.578, + "2013": 0.589, + "2014": 0.579, + "2015": 0.579, + "2016": 0.587, + "2017": 0.58, + "2018": 0.633, + "2019": 0.678, + "2020": 0.67, + "2021": 0.675 + }, + { + "Country": "Singapore", + "Continent": "Asia/Pacific", + "ISO_Code": "SGP", + "Level": "National", + "GDLCODE": "SGPt", + "Region": "Total", + "1990": 0.845, + "1991": 0.851, + "1992": 0.855, + "1993": 0.858, + "1994": 0.86, + "1995": 0.861, + "1996": 0.87, + "1997": 0.88, + "1998": 0.892, + "1999": 0.9, + "2000": 0.909, + "2001": 0.911, + "2002": 0.912, + "2003": 0.914, + "2004": 0.919, + "2005": 0.929, + "2006": 0.934, + "2007": 0.938, + "2008": 0.941, + "2009": 0.945, + "2010": 0.949, + "2011": 0.953, + "2012": 0.958, + "2013": 0.962, + "2014": 0.964, + "2015": 0.967, + "2016": 0.969, + "2017": 0.973, + "2018": 0.976, + "2019": 0.981, + "2020": 0.967, + "2021": 0.965 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "National", + "GDLCODE": "SVKt", + "Region": "Total", + "1990": 0.782, + "1991": 0.783, + "1992": 0.79, + "1993": 0.798, + "1994": 0.805, + "1995": 0.804, + "1996": 0.811, + "1997": 0.811, + "1998": 0.809, + "1999": 0.815, + "2000": 0.818, + "2001": 0.824, + "2002": 0.827, + "2003": 0.828, + "2004": 0.834, + "2005": 0.833, + "2006": 0.837, + "2007": 0.838, + "2008": 0.844, + "2009": 0.849, + "2010": 0.854, + "2011": 0.862, + "2012": 0.864, + "2013": 0.869, + "2014": 0.875, + "2015": 0.872, + "2016": 0.88, + "2017": 0.88, + "2018": 0.881, + "2019": 0.887, + "2020": 0.877, + "2021": 0.845 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr101", + "Region": "Bratislavsky kraj", + "1990": 0.797, + "1991": 0.798, + "1992": 0.805, + "1993": 0.813, + "1994": 0.82, + "1995": 0.819, + "1996": 0.826, + "1997": 0.826, + "1998": 0.833, + "1999": 0.839, + "2000": 0.837, + "2001": 0.847, + "2002": 0.852, + "2003": 0.853, + "2004": 0.854, + "2005": 0.852, + "2006": 0.859, + "2007": 0.869, + "2008": 0.872, + "2009": 0.877, + "2010": 0.875, + "2011": 0.888, + "2012": 0.891, + "2013": 0.892, + "2014": 0.901, + "2015": 0.898, + "2016": 0.904, + "2017": 0.9, + "2018": 0.902, + "2019": 0.91, + "2020": 0.9, + "2021": 0.867 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr103", + "Region": "Stredne Slovensko", + "1990": 0.78, + "1991": 0.782, + "1992": 0.788, + "1993": 0.796, + "1994": 0.803, + "1995": 0.802, + "1996": 0.81, + "1997": 0.809, + "1998": 0.804, + "1999": 0.808, + "2000": 0.811, + "2001": 0.816, + "2002": 0.821, + "2003": 0.823, + "2004": 0.827, + "2005": 0.826, + "2006": 0.831, + "2007": 0.83, + "2008": 0.835, + "2009": 0.841, + "2010": 0.846, + "2011": 0.857, + "2012": 0.857, + "2013": 0.863, + "2014": 0.872, + "2015": 0.864, + "2016": 0.875, + "2017": 0.877, + "2018": 0.876, + "2019": 0.878, + "2020": 0.868, + "2021": 0.836 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr104", + "Region": "Vychodne Slovensko", + "1990": 0.774, + "1991": 0.776, + "1992": 0.782, + "1993": 0.79, + "1994": 0.797, + "1995": 0.796, + "1996": 0.803, + "1997": 0.803, + "1998": 0.804, + "1999": 0.811, + "2000": 0.811, + "2001": 0.819, + "2002": 0.821, + "2003": 0.82, + "2004": 0.827, + "2005": 0.829, + "2006": 0.833, + "2007": 0.832, + "2008": 0.84, + "2009": 0.846, + "2010": 0.848, + "2011": 0.856, + "2012": 0.858, + "2013": 0.863, + "2014": 0.869, + "2015": 0.864, + "2016": 0.878, + "2017": 0.878, + "2018": 0.877, + "2019": 0.883, + "2020": 0.872, + "2021": 0.84 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr102", + "Region": "Zapadne Slovensko", + "1990": 0.785, + "1991": 0.786, + "1992": 0.793, + "1993": 0.801, + "1994": 0.808, + "1995": 0.807, + "1996": 0.814, + "1997": 0.813, + "1998": 0.808, + "1999": 0.814, + "2000": 0.821, + "2001": 0.827, + "2002": 0.829, + "2003": 0.83, + "2004": 0.838, + "2005": 0.836, + "2006": 0.839, + "2007": 0.84, + "2008": 0.845, + "2009": 0.849, + "2010": 0.857, + "2011": 0.862, + "2012": 0.866, + "2013": 0.872, + "2014": 0.873, + "2015": 0.874, + "2016": 0.878, + "2017": 0.878, + "2018": 0.88, + "2019": 0.89, + "2020": 0.88, + "2021": 0.848 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "National", + "GDLCODE": "SVNt", + "Region": "Total", + "1990": 0.823, + "1991": 0.82, + "1992": 0.824, + "1993": 0.823, + "1994": 0.832, + "1995": 0.84, + "1996": 0.847, + "1997": 0.849, + "1998": 0.851, + "1999": 0.857, + "2000": 0.865, + "2001": 0.87, + "2002": 0.874, + "2003": 0.872, + "2004": 0.884, + "2005": 0.888, + "2006": 0.899, + "2007": 0.901, + "2008": 0.91, + "2009": 0.912, + "2010": 0.919, + "2011": 0.923, + "2012": 0.925, + "2013": 0.928, + "2014": 0.938, + "2015": 0.936, + "2016": 0.941, + "2017": 0.94, + "2018": 0.944, + "2019": 0.948, + "2020": 0.93, + "2021": 0.934 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr110", + "Region": "Gorenjska", + "1990": 0.835, + "1991": 0.831, + "1992": 0.835, + "1993": 0.834, + "1994": 0.843, + "1995": 0.851, + "1996": 0.859, + "1997": 0.86, + "1998": 0.863, + "1999": 0.869, + "2000": 0.876, + "2001": 0.882, + "2002": 0.885, + "2003": 0.884, + "2004": 0.896, + "2005": 0.9, + "2006": 0.911, + "2007": 0.913, + "2008": 0.922, + "2009": 0.924, + "2010": 0.931, + "2011": 0.935, + "2012": 0.937, + "2013": 0.936, + "2014": 0.941, + "2015": 0.951, + "2016": 0.954, + "2017": 0.953, + "2018": 0.957, + "2019": 0.961, + "2020": 0.943, + "2021": 0.947 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr111", + "Region": "Goriska", + "1990": 0.835, + "1991": 0.831, + "1992": 0.835, + "1993": 0.834, + "1994": 0.843, + "1995": 0.851, + "1996": 0.859, + "1997": 0.86, + "1998": 0.863, + "1999": 0.869, + "2000": 0.876, + "2001": 0.882, + "2002": 0.886, + "2003": 0.884, + "2004": 0.896, + "2005": 0.9, + "2006": 0.911, + "2007": 0.914, + "2008": 0.922, + "2009": 0.924, + "2010": 0.931, + "2011": 0.935, + "2012": 0.922, + "2013": 0.93, + "2014": 0.926, + "2015": 0.94, + "2016": 0.934, + "2017": 0.933, + "2018": 0.937, + "2019": 0.941, + "2020": 0.923, + "2021": 0.927 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr107", + "Region": "Jugovzhodna Slovenija", + "1990": 0.809, + "1991": 0.806, + "1992": 0.81, + "1993": 0.809, + "1994": 0.818, + "1995": 0.825, + "1996": 0.833, + "1997": 0.835, + "1998": 0.837, + "1999": 0.843, + "2000": 0.85, + "2001": 0.855, + "2002": 0.859, + "2003": 0.857, + "2004": 0.87, + "2005": 0.873, + "2006": 0.884, + "2007": 0.887, + "2008": 0.895, + "2009": 0.897, + "2010": 0.903, + "2011": 0.908, + "2012": 0.912, + "2013": 0.914, + "2014": 0.92, + "2015": 0.922, + "2016": 0.93, + "2017": 0.928, + "2018": 0.933, + "2019": 0.936, + "2020": 0.919, + "2021": 0.922 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr103", + "Region": "Koroska", + "1990": 0.8, + "1991": 0.797, + "1992": 0.801, + "1993": 0.8, + "1994": 0.809, + "1995": 0.816, + "1996": 0.824, + "1997": 0.825, + "1998": 0.828, + "1999": 0.834, + "2000": 0.841, + "2001": 0.846, + "2002": 0.85, + "2003": 0.848, + "2004": 0.86, + "2005": 0.864, + "2006": 0.874, + "2007": 0.877, + "2008": 0.885, + "2009": 0.887, + "2010": 0.894, + "2011": 0.898, + "2012": 0.919, + "2013": 0.913, + "2014": 0.933, + "2015": 0.918, + "2016": 0.914, + "2017": 0.913, + "2018": 0.917, + "2019": 0.921, + "2020": 0.903, + "2021": 0.907 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr112", + "Region": "Obalno-kraska", + "1990": 0.829, + "1991": 0.825, + "1992": 0.829, + "1993": 0.828, + "1994": 0.837, + "1995": 0.845, + "1996": 0.853, + "1997": 0.854, + "1998": 0.857, + "1999": 0.863, + "2000": 0.87, + "2001": 0.875, + "2002": 0.879, + "2003": 0.877, + "2004": 0.89, + "2005": 0.894, + "2006": 0.904, + "2007": 0.907, + "2008": 0.915, + "2009": 0.918, + "2010": 0.924, + "2011": 0.929, + "2012": 0.936, + "2013": 0.936, + "2014": 0.95, + "2015": 0.949, + "2016": 0.939, + "2017": 0.938, + "2018": 0.943, + "2019": 0.946, + "2020": 0.928, + "2021": 0.932 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr109", + "Region": "Osrednjeslovenska", + "1990": 0.842, + "1991": 0.838, + "1992": 0.842, + "1993": 0.841, + "1994": 0.851, + "1995": 0.858, + "1996": 0.866, + "1997": 0.868, + "1998": 0.87, + "1999": 0.876, + "2000": 0.884, + "2001": 0.889, + "2002": 0.893, + "2003": 0.891, + "2004": 0.904, + "2005": 0.908, + "2006": 0.919, + "2007": 0.921, + "2008": 0.93, + "2009": 0.932, + "2010": 0.939, + "2011": 0.943, + "2012": 0.941, + "2013": 0.944, + "2014": 0.953, + "2015": 0.95, + "2016": 0.96, + "2017": 0.959, + "2018": 0.963, + "2019": 0.967, + "2020": 0.949, + "2021": 0.953 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr102", + "Region": "Podravska", + "1990": 0.804, + "1991": 0.8, + "1992": 0.804, + "1993": 0.803, + "1994": 0.812, + "1995": 0.82, + "1996": 0.827, + "1997": 0.829, + "1998": 0.831, + "1999": 0.837, + "2000": 0.844, + "2001": 0.85, + "2002": 0.853, + "2003": 0.852, + "2004": 0.864, + "2005": 0.867, + "2006": 0.878, + "2007": 0.881, + "2008": 0.889, + "2009": 0.891, + "2010": 0.897, + "2011": 0.902, + "2012": 0.913, + "2013": 0.912, + "2014": 0.925, + "2015": 0.913, + "2016": 0.922, + "2017": 0.921, + "2018": 0.925, + "2019": 0.929, + "2020": 0.911, + "2021": 0.915 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr101", + "Region": "Pomurska", + "1990": 0.791, + "1991": 0.788, + "1992": 0.792, + "1993": 0.79, + "1994": 0.799, + "1995": 0.807, + "1996": 0.814, + "1997": 0.816, + "1998": 0.818, + "1999": 0.824, + "2000": 0.831, + "2001": 0.836, + "2002": 0.84, + "2003": 0.838, + "2004": 0.85, + "2005": 0.854, + "2006": 0.864, + "2007": 0.867, + "2008": 0.875, + "2009": 0.877, + "2010": 0.884, + "2011": 0.888, + "2012": 0.907, + "2013": 0.904, + "2014": 0.906, + "2015": 0.919, + "2016": 0.913, + "2017": 0.912, + "2018": 0.916, + "2019": 0.92, + "2020": 0.902, + "2021": 0.906 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr106", + "Region": "Posavska", + "1990": 0.799, + "1991": 0.795, + "1992": 0.799, + "1993": 0.798, + "1994": 0.807, + "1995": 0.815, + "1996": 0.822, + "1997": 0.824, + "1998": 0.826, + "1999": 0.832, + "2000": 0.839, + "2001": 0.844, + "2002": 0.848, + "2003": 0.846, + "2004": 0.859, + "2005": 0.862, + "2006": 0.873, + "2007": 0.875, + "2008": 0.883, + "2009": 0.886, + "2010": 0.892, + "2011": 0.896, + "2012": 0.891, + "2013": 0.901, + "2014": 0.918, + "2015": 0.917, + "2016": 0.914, + "2017": 0.913, + "2018": 0.917, + "2019": 0.921, + "2020": 0.903, + "2021": 0.907 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr108", + "Region": "Primorsko-notranjska", + "1990": 0.837, + "1991": 0.833, + "1992": 0.837, + "1993": 0.836, + "1994": 0.845, + "1995": 0.853, + "1996": 0.861, + "1997": 0.863, + "1998": 0.865, + "1999": 0.871, + "2000": 0.878, + "2001": 0.884, + "2002": 0.888, + "2003": 0.886, + "2004": 0.898, + "2005": 0.902, + "2006": 0.913, + "2007": 0.916, + "2008": 0.924, + "2009": 0.926, + "2010": 0.933, + "2011": 0.937, + "2012": 0.911, + "2013": 0.93, + "2014": 0.933, + "2015": 0.931, + "2016": 0.931, + "2017": 0.93, + "2018": 0.934, + "2019": 0.938, + "2020": 0.92, + "2021": 0.924 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr104", + "Region": "Savinjska", + "1990": 0.812, + "1991": 0.809, + "1992": 0.813, + "1993": 0.811, + "1994": 0.821, + "1995": 0.828, + "1996": 0.836, + "1997": 0.837, + "1998": 0.84, + "1999": 0.846, + "2000": 0.853, + "2001": 0.858, + "2002": 0.862, + "2003": 0.86, + "2004": 0.873, + "2005": 0.876, + "2006": 0.887, + "2007": 0.889, + "2008": 0.898, + "2009": 0.9, + "2010": 0.906, + "2011": 0.911, + "2012": 0.904, + "2013": 0.918, + "2014": 0.922, + "2015": 0.917, + "2016": 0.928, + "2017": 0.927, + "2018": 0.931, + "2019": 0.935, + "2020": 0.917, + "2021": 0.921 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr105", + "Region": "Zasavska", + "1990": 0.796, + "1991": 0.793, + "1992": 0.797, + "1993": 0.796, + "1994": 0.805, + "1995": 0.812, + "1996": 0.82, + "1997": 0.821, + "1998": 0.824, + "1999": 0.829, + "2000": 0.837, + "2001": 0.842, + "2002": 0.845, + "2003": 0.844, + "2004": 0.856, + "2005": 0.859, + "2006": 0.87, + "2007": 0.873, + "2008": 0.881, + "2009": 0.883, + "2010": 0.889, + "2011": 0.893, + "2012": 0.91, + "2013": 0.896, + "2014": 0.922, + "2015": 0.914, + "2016": 0.922, + "2017": 0.921, + "2018": 0.925, + "2019": 0.929, + "2020": 0.911, + "2021": 0.915 + }, + { + "Country": "Solomon Islands", + "Continent": "Asia/Pacific", + "ISO_Code": "SLB", + "Level": "National", + "GDLCODE": "SLBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.724, + "2000": 0.727, + "2001": 0.729, + "2002": 0.731, + "2003": 0.733, + "2004": 0.735, + "2005": 0.737, + "2006": 0.74, + "2007": 0.738, + "2008": 0.745, + "2009": 0.746, + "2010": 0.75, + "2011": 0.752, + "2012": 0.755, + "2013": 0.757, + "2014": 0.757, + "2015": 0.763, + "2016": 0.766, + "2017": 0.769, + "2018": 0.772, + "2019": 0.775, + "2020": 0.772, + "2021": 0.775 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "National", + "GDLCODE": "SOMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.512, + "2007": 0.506, + "2008": 0.498, + "2009": 0.492, + "2010": 0.488, + "2011": 0.478, + "2012": 0.472, + "2013": 0.477, + "2014": 0.486, + "2015": 0.498, + "2016": 0.506, + "2017": 0.514, + "2018": 0.522, + "2019": 0.529, + "2020": 0.529, + "2021": 0.529 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr102", + "Region": "Awdal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.746, + "2007": 0.738, + "2008": 0.728, + "2009": 0.72, + "2010": 0.714, + "2011": 0.702, + "2012": 0.695, + "2013": 0.7, + "2014": 0.712, + "2015": 0.728, + "2016": 0.738, + "2017": 0.748, + "2018": 0.758, + "2019": 0.768, + "2020": 0.768, + "2021": 0.768 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr109", + "Region": "Bakool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.51, + "2007": 0.504, + "2008": 0.496, + "2009": 0.49, + "2010": 0.486, + "2011": 0.476, + "2012": 0.47, + "2013": 0.475, + "2014": 0.484, + "2015": 0.496, + "2016": 0.504, + "2017": 0.512, + "2018": 0.519, + "2019": 0.527, + "2020": 0.527, + "2021": 0.527 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr116", + "Region": "Banadir", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.476, + "2007": 0.47, + "2008": 0.463, + "2009": 0.457, + "2010": 0.452, + "2011": 0.444, + "2012": 0.438, + "2013": 0.442, + "2014": 0.451, + "2015": 0.463, + "2016": 0.47, + "2017": 0.477, + "2018": 0.485, + "2019": 0.492, + "2020": 0.492, + "2021": 0.492 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr108", + "Region": "Bari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.588, + "2007": 0.582, + "2008": 0.573, + "2009": 0.566, + "2010": 0.561, + "2011": 0.551, + "2012": 0.545, + "2013": 0.55, + "2014": 0.56, + "2015": 0.573, + "2016": 0.582, + "2017": 0.59, + "2018": 0.598, + "2019": 0.607, + "2020": 0.607, + "2021": 0.607 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr110", + "Region": "Bay", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.469, + "2007": 0.464, + "2008": 0.456, + "2009": 0.45, + "2010": 0.446, + "2011": 0.437, + "2012": 0.432, + "2013": 0.436, + "2014": 0.445, + "2015": 0.456, + "2016": 0.464, + "2017": 0.471, + "2018": 0.478, + "2019": 0.485, + "2020": 0.485, + "2021": 0.485 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr117", + "Region": "Galguduud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.515, + "2007": 0.509, + "2008": 0.501, + "2009": 0.495, + "2010": 0.491, + "2011": 0.481, + "2012": 0.475, + "2013": 0.48, + "2014": 0.489, + "2015": 0.501, + "2016": 0.509, + "2017": 0.517, + "2018": 0.525, + "2019": 0.532, + "2020": 0.532, + "2021": 0.532 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr111", + "Region": "Gedo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.529, + "2007": 0.523, + "2008": 0.515, + "2009": 0.509, + "2010": 0.504, + "2011": 0.494, + "2012": 0.488, + "2013": 0.493, + "2014": 0.502, + "2015": 0.515, + "2016": 0.523, + "2017": 0.531, + "2018": 0.538, + "2019": 0.546, + "2020": 0.546, + "2021": 0.546 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr113", + "Region": "Hiran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.761, + "2007": 0.753, + "2008": 0.743, + "2009": 0.735, + "2010": 0.729, + "2011": 0.717, + "2012": 0.709, + "2013": 0.715, + "2014": 0.727, + "2015": 0.743, + "2016": 0.753, + "2017": 0.763, + "2018": 0.773, + "2019": 0.783, + "2020": 0.783, + "2021": 0.783 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr118", + "Region": "Lower Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.448, + "2007": 0.443, + "2008": 0.435, + "2009": 0.43, + "2010": 0.426, + "2011": 0.417, + "2012": 0.411, + "2013": 0.416, + "2014": 0.424, + "2015": 0.435, + "2016": 0.443, + "2017": 0.45, + "2018": 0.457, + "2019": 0.464, + "2020": 0.464, + "2021": 0.464 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr115", + "Region": "Lower Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.445, + "2007": 0.44, + "2008": 0.432, + "2009": 0.427, + "2010": 0.423, + "2011": 0.414, + "2012": 0.408, + "2013": 0.413, + "2014": 0.421, + "2015": 0.432, + "2016": 0.44, + "2017": 0.447, + "2018": 0.454, + "2019": 0.461, + "2020": 0.461, + "2021": 0.461 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr112", + "Region": "Middle Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.6, + "2007": 0.594, + "2008": 0.585, + "2009": 0.578, + "2010": 0.573, + "2011": 0.563, + "2012": 0.556, + "2013": 0.561, + "2014": 0.571, + "2015": 0.585, + "2016": 0.594, + "2017": 0.602, + "2018": 0.611, + "2019": 0.619, + "2020": 0.619, + "2021": 0.619 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr114", + "Region": "Middle Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.561, + "2007": 0.554, + "2008": 0.546, + "2009": 0.54, + "2010": 0.535, + "2011": 0.525, + "2012": 0.519, + "2013": 0.524, + "2014": 0.533, + "2015": 0.546, + "2016": 0.554, + "2017": 0.563, + "2018": 0.571, + "2019": 0.579, + "2020": 0.579, + "2021": 0.579 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr106", + "Region": "Mudug", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.574, + "2007": 0.567, + "2008": 0.559, + "2009": 0.552, + "2010": 0.547, + "2011": 0.538, + "2012": 0.531, + "2013": 0.536, + "2014": 0.546, + "2015": 0.559, + "2016": 0.567, + "2017": 0.576, + "2018": 0.584, + "2019": 0.592, + "2020": 0.592, + "2021": 0.592 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr107", + "Region": "Nugal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.562, + "2007": 0.555, + "2008": 0.547, + "2009": 0.541, + "2010": 0.536, + "2011": 0.526, + "2012": 0.519, + "2013": 0.524, + "2014": 0.534, + "2015": 0.547, + "2016": 0.555, + "2017": 0.563, + "2018": 0.572, + "2019": 0.58, + "2020": 0.58, + "2021": 0.58 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr103", + "Region": "Sanaag", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.666, + "2007": 0.659, + "2008": 0.65, + "2009": 0.643, + "2010": 0.637, + "2011": 0.626, + "2012": 0.619, + "2013": 0.624, + "2014": 0.635, + "2015": 0.65, + "2016": 0.659, + "2017": 0.668, + "2018": 0.677, + "2019": 0.687, + "2020": 0.687, + "2021": 0.687 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr104", + "Region": "Sool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.613, + "2007": 0.606, + "2008": 0.598, + "2009": 0.591, + "2010": 0.586, + "2011": 0.575, + "2012": 0.568, + "2013": 0.573, + "2014": 0.584, + "2015": 0.598, + "2016": 0.606, + "2017": 0.615, + "2018": 0.624, + "2019": 0.632, + "2020": 0.632, + "2021": 0.632 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr105", + "Region": "Togdhere", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.497, + "2007": 0.491, + "2008": 0.483, + "2009": 0.477, + "2010": 0.473, + "2011": 0.464, + "2012": 0.458, + "2013": 0.462, + "2014": 0.471, + "2015": 0.483, + "2016": 0.491, + "2017": 0.498, + "2018": 0.506, + "2019": 0.513, + "2020": 0.513, + "2021": 0.513 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr101", + "Region": "W Galbeed", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.538, + "2007": 0.531, + "2008": 0.524, + "2009": 0.517, + "2010": 0.512, + "2011": 0.503, + "2012": 0.497, + "2013": 0.501, + "2014": 0.511, + "2015": 0.524, + "2016": 0.531, + "2017": 0.539, + "2018": 0.547, + "2019": 0.555, + "2020": 0.555, + "2021": 0.555 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "National", + "GDLCODE": "ZAFt", + "Region": "Total", + "1990": 0.667, + "1991": 0.666, + "1992": 0.667, + "1993": 0.662, + "1994": 0.656, + "1995": 0.65, + "1996": 0.638, + "1997": 0.628, + "1998": 0.615, + "1999": 0.604, + "2000": 0.592, + "2001": 0.573, + "2002": 0.549, + "2003": 0.528, + "2004": 0.524, + "2005": 0.523, + "2006": 0.527, + "2007": 0.538, + "2008": 0.554, + "2009": 0.576, + "2010": 0.598, + "2011": 0.625, + "2012": 0.644, + "2013": 0.654, + "2014": 0.667, + "2015": 0.676, + "2016": 0.688, + "2017": 0.698, + "2018": 0.703, + "2019": 0.71, + "2020": 0.696, + "2021": 0.651 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr102", + "Region": "Eastern Cape", + "1990": 0.611, + "1991": 0.61, + "1992": 0.611, + "1993": 0.606, + "1994": 0.6, + "1995": 0.595, + "1996": 0.583, + "1997": 0.574, + "1998": 0.562, + "1999": 0.552, + "2000": 0.543, + "2001": 0.526, + "2002": 0.504, + "2003": 0.486, + "2004": 0.483, + "2005": 0.483, + "2006": 0.489, + "2007": 0.5, + "2008": 0.517, + "2009": 0.539, + "2010": 0.561, + "2011": 0.589, + "2012": 0.607, + "2013": 0.619, + "2014": 0.633, + "2015": 0.643, + "2016": 0.656, + "2017": 0.665, + "2018": 0.67, + "2019": 0.677, + "2020": 0.663, + "2021": 0.62 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr104", + "Region": "Free State", + "1990": 0.685, + "1991": 0.683, + "1992": 0.684, + "1993": 0.68, + "1994": 0.673, + "1995": 0.667, + "1996": 0.655, + "1997": 0.645, + "1998": 0.632, + "1999": 0.617, + "2000": 0.603, + "2001": 0.582, + "2002": 0.554, + "2003": 0.531, + "2004": 0.524, + "2005": 0.521, + "2006": 0.523, + "2007": 0.532, + "2008": 0.545, + "2009": 0.565, + "2010": 0.584, + "2011": 0.608, + "2012": 0.623, + "2013": 0.631, + "2014": 0.641, + "2015": 0.647, + "2016": 0.656, + "2017": 0.666, + "2018": 0.67, + "2019": 0.678, + "2020": 0.664, + "2021": 0.62 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr107", + "Region": "Gauteng", + "1990": 0.697, + "1991": 0.696, + "1992": 0.697, + "1993": 0.692, + "1994": 0.685, + "1995": 0.68, + "1996": 0.667, + "1997": 0.657, + "1998": 0.644, + "1999": 0.631, + "2000": 0.618, + "2001": 0.598, + "2002": 0.572, + "2003": 0.55, + "2004": 0.544, + "2005": 0.542, + "2006": 0.546, + "2007": 0.557, + "2008": 0.572, + "2009": 0.594, + "2010": 0.615, + "2011": 0.642, + "2012": 0.66, + "2013": 0.67, + "2014": 0.682, + "2015": 0.69, + "2016": 0.701, + "2017": 0.711, + "2018": 0.716, + "2019": 0.724, + "2020": 0.709, + "2021": 0.664 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr105", + "Region": "KwaZulu Natal", + "1990": 0.624, + "1991": 0.623, + "1992": 0.624, + "1993": 0.619, + "1994": 0.613, + "1995": 0.608, + "1996": 0.596, + "1997": 0.586, + "1998": 0.575, + "1999": 0.567, + "2000": 0.559, + "2001": 0.544, + "2002": 0.523, + "2003": 0.506, + "2004": 0.505, + "2005": 0.506, + "2006": 0.514, + "2007": 0.528, + "2008": 0.546, + "2009": 0.571, + "2010": 0.596, + "2011": 0.626, + "2012": 0.648, + "2013": 0.662, + "2014": 0.678, + "2015": 0.69, + "2016": 0.706, + "2017": 0.716, + "2018": 0.72, + "2019": 0.728, + "2020": 0.714, + "2021": 0.668 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr108", + "Region": "Mpumalanga", + "1990": 0.65, + "1991": 0.649, + "1992": 0.65, + "1993": 0.645, + "1994": 0.639, + "1995": 0.634, + "1996": 0.621, + "1997": 0.612, + "1998": 0.599, + "1999": 0.586, + "2000": 0.573, + "2001": 0.553, + "2002": 0.528, + "2003": 0.506, + "2004": 0.5, + "2005": 0.498, + "2006": 0.501, + "2007": 0.51, + "2008": 0.524, + "2009": 0.544, + "2010": 0.563, + "2011": 0.588, + "2012": 0.604, + "2013": 0.612, + "2014": 0.623, + "2015": 0.63, + "2016": 0.64, + "2017": 0.649, + "2018": 0.653, + "2019": 0.661, + "2020": 0.647, + "2021": 0.605 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr106", + "Region": "North West", + "1990": 0.694, + "1991": 0.692, + "1992": 0.693, + "1993": 0.689, + "1994": 0.682, + "1995": 0.676, + "1996": 0.664, + "1997": 0.653, + "1998": 0.641, + "1999": 0.625, + "2000": 0.61, + "2001": 0.588, + "2002": 0.56, + "2003": 0.536, + "2004": 0.529, + "2005": 0.525, + "2006": 0.527, + "2007": 0.535, + "2008": 0.548, + "2009": 0.566, + "2010": 0.585, + "2011": 0.609, + "2012": 0.624, + "2013": 0.631, + "2014": 0.64, + "2015": 0.645, + "2016": 0.654, + "2017": 0.664, + "2018": 0.668, + "2019": 0.675, + "2020": 0.661, + "2021": 0.618 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr103", + "Region": "Northern Cape", + "1990": 0.672, + "1991": 0.67, + "1992": 0.672, + "1993": 0.667, + "1994": 0.66, + "1995": 0.655, + "1996": 0.643, + "1997": 0.632, + "1998": 0.62, + "1999": 0.608, + "2000": 0.596, + "2001": 0.577, + "2002": 0.552, + "2003": 0.531, + "2004": 0.526, + "2005": 0.525, + "2006": 0.529, + "2007": 0.54, + "2008": 0.556, + "2009": 0.577, + "2010": 0.599, + "2011": 0.626, + "2012": 0.644, + "2013": 0.654, + "2014": 0.667, + "2015": 0.676, + "2016": 0.687, + "2017": 0.698, + "2018": 0.702, + "2019": 0.709, + "2020": 0.695, + "2021": 0.651 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr109", + "Region": "Northern Province", + "1990": 0.682, + "1991": 0.68, + "1992": 0.682, + "1993": 0.677, + "1994": 0.67, + "1995": 0.665, + "1996": 0.652, + "1997": 0.642, + "1998": 0.629, + "1999": 0.619, + "2000": 0.609, + "2001": 0.591, + "2002": 0.567, + "2003": 0.548, + "2004": 0.545, + "2005": 0.545, + "2006": 0.551, + "2007": 0.564, + "2008": 0.581, + "2009": 0.606, + "2010": 0.63, + "2011": 0.659, + "2012": 0.68, + "2013": 0.693, + "2014": 0.708, + "2015": 0.718, + "2016": 0.733, + "2017": 0.743, + "2018": 0.748, + "2019": 0.756, + "2020": 0.741, + "2021": 0.694 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr101", + "Region": "Western Cape", + "1990": 0.789, + "1991": 0.787, + "1992": 0.788, + "1993": 0.783, + "1994": 0.775, + "1995": 0.769, + "1996": 0.755, + "1997": 0.744, + "1998": 0.73, + "1999": 0.712, + "2000": 0.693, + "2001": 0.667, + "2002": 0.635, + "2003": 0.607, + "2004": 0.597, + "2005": 0.592, + "2006": 0.592, + "2007": 0.599, + "2008": 0.611, + "2009": 0.629, + "2010": 0.647, + "2011": 0.67, + "2012": 0.684, + "2013": 0.69, + "2014": 0.698, + "2015": 0.701, + "2016": 0.708, + "2017": 0.718, + "2018": 0.723, + "2019": 0.73, + "2020": 0.716, + "2021": 0.67 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "National", + "GDLCODE": "KORt", + "Region": "Total", + "1990": 0.799, + "1991": 0.806, + "1992": 0.815, + "1993": 0.82, + "1994": 0.825, + "1995": 0.83, + "1996": 0.835, + "1997": 0.846, + "1998": 0.853, + "1999": 0.862, + "2000": 0.869, + "2001": 0.881, + "2002": 0.885, + "2003": 0.885, + "2004": 0.892, + "2005": 0.9, + "2006": 0.909, + "2007": 0.915, + "2008": 0.924, + "2009": 0.932, + "2010": 0.935, + "2011": 0.942, + "2012": 0.944, + "2013": 0.952, + "2014": 0.96, + "2015": 0.962, + "2016": 0.968, + "2017": 0.974, + "2018": 0.975, + "2019": 0.979, + "2020": 0.979, + "2021": 0.98 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr101", + "Region": "Capital Region", + "1990": 0.814, + "1991": 0.822, + "1992": 0.83, + "1993": 0.835, + "1994": 0.84, + "1995": 0.846, + "1996": 0.851, + "1997": 0.862, + "1998": 0.869, + "1999": 0.878, + "2000": 0.885, + "2001": 0.897, + "2002": 0.902, + "2003": 0.902, + "2004": 0.909, + "2005": 0.917, + "2006": 0.926, + "2007": 0.932, + "2008": 0.941, + "2009": 0.947, + "2010": 0.949, + "2011": 0.954, + "2012": 0.957, + "2013": 0.966, + "2014": 0.975, + "2015": 0.978, + "2016": 0.984, + "2017": 0.989, + "2018": 0.99, + "2019": 0.995, + "2020": 0.994, + "2021": 0.996 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr105", + "Region": "Chungcheong Region", + "1990": 0.796, + "1991": 0.804, + "1992": 0.812, + "1993": 0.817, + "1994": 0.822, + "1995": 0.827, + "1996": 0.832, + "1997": 0.843, + "1998": 0.85, + "1999": 0.859, + "2000": 0.866, + "2001": 0.878, + "2002": 0.882, + "2003": 0.882, + "2004": 0.889, + "2005": 0.897, + "2006": 0.906, + "2007": 0.912, + "2008": 0.921, + "2009": 0.93, + "2010": 0.934, + "2011": 0.942, + "2012": 0.945, + "2013": 0.955, + "2014": 0.964, + "2015": 0.967, + "2016": 0.973, + "2017": 0.978, + "2018": 0.979, + "2019": 0.984, + "2020": 0.983, + "2021": 0.985 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr106", + "Region": "Gangwon Region", + "1990": 0.787, + "1991": 0.794, + "1992": 0.802, + "1993": 0.807, + "1994": 0.812, + "1995": 0.817, + "1996": 0.822, + "1997": 0.833, + "1998": 0.84, + "1999": 0.848, + "2000": 0.855, + "2001": 0.868, + "2002": 0.872, + "2003": 0.872, + "2004": 0.879, + "2005": 0.887, + "2006": 0.895, + "2007": 0.901, + "2008": 0.91, + "2009": 0.916, + "2010": 0.917, + "2011": 0.922, + "2012": 0.925, + "2013": 0.935, + "2014": 0.944, + "2015": 0.947, + "2016": 0.952, + "2017": 0.958, + "2018": 0.959, + "2019": 0.964, + "2020": 0.963, + "2021": 0.964 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr103", + "Region": "Gyeongbuk Region", + "1990": 0.791, + "1991": 0.798, + "1992": 0.806, + "1993": 0.811, + "1994": 0.816, + "1995": 0.821, + "1996": 0.826, + "1997": 0.837, + "1998": 0.845, + "1999": 0.853, + "2000": 0.86, + "2001": 0.872, + "2002": 0.876, + "2003": 0.876, + "2004": 0.883, + "2005": 0.891, + "2006": 0.9, + "2007": 0.906, + "2008": 0.915, + "2009": 0.922, + "2010": 0.924, + "2011": 0.929, + "2012": 0.933, + "2013": 0.942, + "2014": 0.952, + "2015": 0.955, + "2016": 0.96, + "2017": 0.966, + "2018": 0.967, + "2019": 0.971, + "2020": 0.971, + "2021": 0.972 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr102", + "Region": "Gyeongnam Region", + "1990": 0.785, + "1991": 0.793, + "1992": 0.801, + "1993": 0.806, + "1994": 0.811, + "1995": 0.816, + "1996": 0.821, + "1997": 0.831, + "1998": 0.839, + "1999": 0.847, + "2000": 0.854, + "2001": 0.866, + "2002": 0.87, + "2003": 0.87, + "2004": 0.877, + "2005": 0.885, + "2006": 0.894, + "2007": 0.9, + "2008": 0.908, + "2009": 0.918, + "2010": 0.921, + "2011": 0.929, + "2012": 0.933, + "2013": 0.942, + "2014": 0.952, + "2015": 0.955, + "2016": 0.96, + "2017": 0.966, + "2018": 0.967, + "2019": 0.971, + "2020": 0.971, + "2021": 0.972 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr107", + "Region": "Jeju", + "1990": 0.82, + "1991": 0.827, + "1992": 0.836, + "1993": 0.841, + "1994": 0.846, + "1995": 0.851, + "1996": 0.856, + "1997": 0.867, + "1998": 0.875, + "1999": 0.884, + "2000": 0.891, + "2001": 0.903, + "2002": 0.908, + "2003": 0.908, + "2004": 0.915, + "2005": 0.923, + "2006": 0.932, + "2007": 0.938, + "2008": 0.947, + "2009": 0.953, + "2010": 0.954, + "2011": 0.959, + "2012": 0.963, + "2013": 0.973, + "2014": 0.983, + "2015": 0.986, + "2016": 0.992, + "2017": 0.997, + "2018": 0.998, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr104", + "Region": "Jeolla Region", + "1990": 0.792, + "1991": 0.8, + "1992": 0.808, + "1993": 0.813, + "1994": 0.818, + "1995": 0.823, + "1996": 0.828, + "1997": 0.838, + "1998": 0.846, + "1999": 0.854, + "2000": 0.861, + "2001": 0.874, + "2002": 0.878, + "2003": 0.878, + "2004": 0.885, + "2005": 0.893, + "2006": 0.901, + "2007": 0.907, + "2008": 0.916, + "2009": 0.924, + "2010": 0.927, + "2011": 0.934, + "2012": 0.938, + "2013": 0.947, + "2014": 0.957, + "2015": 0.959, + "2016": 0.965, + "2017": 0.97, + "2018": 0.971, + "2019": 0.976, + "2020": 0.975, + "2021": 0.977 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "National", + "GDLCODE": "SSDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.536, + "2011": 0.538, + "2012": 0.552, + "2013": 0.55, + "2014": 0.538, + "2015": 0.547, + "2016": 0.547, + "2017": 0.543, + "2018": 0.553, + "2019": 0.552, + "2020": 0.546, + "2021": 0.538 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr109", + "Region": "Central Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.499, + "2011": 0.501, + "2012": 0.514, + "2013": 0.513, + "2014": 0.501, + "2015": 0.51, + "2016": 0.51, + "2017": 0.506, + "2018": 0.516, + "2019": 0.515, + "2020": 0.509, + "2021": 0.501 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr110", + "Region": "Eastern Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.491, + "2011": 0.493, + "2012": 0.507, + "2013": 0.505, + "2014": 0.494, + "2015": 0.502, + "2016": 0.502, + "2017": 0.499, + "2018": 0.508, + "2019": 0.507, + "2020": 0.501, + "2021": 0.494 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr102", + "Region": "Jonglei", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.63, + "2011": 0.633, + "2012": 0.648, + "2013": 0.647, + "2014": 0.633, + "2015": 0.643, + "2016": 0.643, + "2017": 0.639, + "2018": 0.65, + "2019": 0.649, + "2020": 0.642, + "2021": 0.633 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr107", + "Region": "Lakes", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.592, + "2011": 0.594, + "2012": 0.61, + "2013": 0.608, + "2014": 0.595, + "2015": 0.605, + "2016": 0.604, + "2017": 0.601, + "2018": 0.611, + "2019": 0.61, + "2020": 0.603, + "2021": 0.595 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr105", + "Region": "Northern Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.454, + "2011": 0.456, + "2012": 0.469, + "2013": 0.467, + "2014": 0.457, + "2015": 0.465, + "2016": 0.465, + "2017": 0.461, + "2018": 0.47, + "2019": 0.47, + "2020": 0.464, + "2021": 0.457 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr103", + "Region": "Unity", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.657, + "2011": 0.659, + "2012": 0.675, + "2013": 0.673, + "2014": 0.66, + "2015": 0.67, + "2016": 0.67, + "2017": 0.665, + "2018": 0.677, + "2019": 0.676, + "2020": 0.668, + "2021": 0.66 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr101", + "Region": "Upper Nile", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.563, + "2011": 0.565, + "2012": 0.58, + "2013": 0.578, + "2014": 0.566, + "2015": 0.575, + "2016": 0.575, + "2017": 0.571, + "2018": 0.581, + "2019": 0.581, + "2020": 0.574, + "2021": 0.566 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr104", + "Region": "Warrap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.505, + "2011": 0.507, + "2012": 0.521, + "2013": 0.519, + "2014": 0.507, + "2015": 0.516, + "2016": 0.516, + "2017": 0.512, + "2018": 0.522, + "2019": 0.521, + "2020": 0.515, + "2021": 0.507 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr106", + "Region": "Western Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.529, + "2011": 0.531, + "2012": 0.545, + "2013": 0.543, + "2014": 0.531, + "2015": 0.54, + "2016": 0.54, + "2017": 0.536, + "2018": 0.546, + "2019": 0.546, + "2020": 0.539, + "2021": 0.531 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr108", + "Region": "Western Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.513, + "2011": 0.515, + "2012": 0.529, + "2013": 0.527, + "2014": 0.516, + "2015": 0.525, + "2016": 0.524, + "2017": 0.521, + "2018": 0.53, + "2019": 0.53, + "2020": 0.523, + "2021": 0.516 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "National", + "GDLCODE": "ESPt", + "Region": "Total", + "1990": 0.877, + "1991": 0.879, + "1992": 0.886, + "1993": 0.888, + "1994": 0.894, + "1995": 0.895, + "1996": 0.898, + "1997": 0.905, + "1998": 0.907, + "1999": 0.907, + "2000": 0.914, + "2001": 0.919, + "2002": 0.92, + "2003": 0.919, + "2004": 0.928, + "2005": 0.928, + "2006": 0.938, + "2007": 0.938, + "2008": 0.943, + "2009": 0.948, + "2010": 0.954, + "2011": 0.957, + "2012": 0.957, + "2013": 0.965, + "2014": 0.967, + "2015": 0.964, + "2016": 0.97, + "2017": 0.97, + "2018": 0.971, + "2019": 0.977, + "2020": 0.958, + "2021": 0.969 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr115", + "Region": "Andalucia", + "1990": 0.862, + "1991": 0.865, + "1992": 0.872, + "1993": 0.872, + "1994": 0.878, + "1995": 0.879, + "1996": 0.88, + "1997": 0.888, + "1998": 0.887, + "1999": 0.888, + "2000": 0.896, + "2001": 0.9, + "2002": 0.9, + "2003": 0.9, + "2004": 0.906, + "2005": 0.907, + "2006": 0.917, + "2007": 0.918, + "2008": 0.922, + "2009": 0.927, + "2010": 0.933, + "2011": 0.935, + "2012": 0.935, + "2013": 0.944, + "2014": 0.949, + "2015": 0.943, + "2016": 0.951, + "2017": 0.95, + "2018": 0.95, + "2019": 0.956, + "2020": 0.938, + "2021": 0.948 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr107", + "Region": "Aragon", + "1990": 0.895, + "1991": 0.897, + "1992": 0.909, + "1993": 0.905, + "1994": 0.909, + "1995": 0.906, + "1996": 0.911, + "1997": 0.912, + "1998": 0.917, + "1999": 0.911, + "2000": 0.925, + "2001": 0.93, + "2002": 0.931, + "2003": 0.927, + "2004": 0.931, + "2005": 0.934, + "2006": 0.948, + "2007": 0.946, + "2008": 0.952, + "2009": 0.954, + "2010": 0.957, + "2011": 0.959, + "2012": 0.964, + "2013": 0.969, + "2014": 0.966, + "2015": 0.964, + "2016": 0.975, + "2017": 0.972, + "2018": 0.976, + "2019": 0.984, + "2020": 0.965, + "2021": 0.976 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr119", + "Region": "Canarias", + "1990": 0.863, + "1991": 0.868, + "1992": 0.874, + "1993": 0.871, + "1994": 0.881, + "1995": 0.888, + "1996": 0.882, + "1997": 0.888, + "1998": 0.883, + "1999": 0.885, + "2000": 0.887, + "2001": 0.896, + "2002": 0.904, + "2003": 0.903, + "2004": 0.906, + "2005": 0.911, + "2006": 0.917, + "2007": 0.92, + "2008": 0.92, + "2009": 0.938, + "2010": 0.947, + "2011": 0.942, + "2012": 0.946, + "2013": 0.958, + "2014": 0.955, + "2015": 0.954, + "2016": 0.958, + "2017": 0.964, + "2018": 0.957, + "2019": 0.97, + "2020": 0.951, + "2021": 0.962 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr103", + "Region": "Cantabria", + "1990": 0.885, + "1991": 0.889, + "1992": 0.891, + "1993": 0.894, + "1994": 0.901, + "1995": 0.899, + "1996": 0.902, + "1997": 0.906, + "1998": 0.917, + "1999": 0.913, + "2000": 0.914, + "2001": 0.931, + "2002": 0.928, + "2003": 0.932, + "2004": 0.939, + "2005": 0.942, + "2006": 0.939, + "2007": 0.938, + "2008": 0.948, + "2009": 0.954, + "2010": 0.956, + "2011": 0.961, + "2012": 0.961, + "2013": 0.969, + "2014": 0.964, + "2015": 0.963, + "2016": 0.97, + "2017": 0.973, + "2018": 0.973, + "2019": 0.976, + "2020": 0.957, + "2021": 0.968 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr109", + "Region": "Castilla y Leon", + "1990": 0.902, + "1991": 0.902, + "1992": 0.909, + "1993": 0.911, + "1994": 0.918, + "1995": 0.92, + "1996": 0.92, + "1997": 0.928, + "1998": 0.927, + "1999": 0.93, + "2000": 0.936, + "2001": 0.943, + "2002": 0.937, + "2003": 0.94, + "2004": 0.948, + "2005": 0.945, + "2006": 0.956, + "2007": 0.955, + "2008": 0.958, + "2009": 0.967, + "2010": 0.97, + "2011": 0.974, + "2012": 0.972, + "2013": 0.978, + "2014": 0.979, + "2015": 0.978, + "2016": 0.983, + "2017": 0.983, + "2018": 0.984, + "2019": 0.988, + "2020": 0.969, + "2021": 0.98 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr110", + "Region": "Castilla-la Mancha", + "1990": 0.895, + "1991": 0.889, + "1992": 0.898, + "1993": 0.897, + "1994": 0.901, + "1995": 0.909, + "1996": 0.908, + "1997": 0.92, + "1998": 0.919, + "1999": 0.92, + "2000": 0.928, + "2001": 0.927, + "2002": 0.93, + "2003": 0.932, + "2004": 0.939, + "2005": 0.938, + "2006": 0.949, + "2007": 0.946, + "2008": 0.951, + "2009": 0.959, + "2010": 0.965, + "2011": 0.967, + "2012": 0.964, + "2013": 0.97, + "2014": 0.973, + "2015": 0.966, + "2016": 0.972, + "2017": 0.967, + "2018": 0.976, + "2019": 0.976, + "2020": 0.957, + "2021": 0.968 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr112", + "Region": "Cataluna", + "1990": 0.88, + "1991": 0.883, + "1992": 0.887, + "1993": 0.892, + "1994": 0.898, + "1995": 0.899, + "1996": 0.905, + "1997": 0.909, + "1998": 0.913, + "1999": 0.91, + "2000": 0.92, + "2001": 0.923, + "2002": 0.925, + "2003": 0.924, + "2004": 0.935, + "2005": 0.931, + "2006": 0.945, + "2007": 0.944, + "2008": 0.949, + "2009": 0.953, + "2010": 0.959, + "2011": 0.962, + "2012": 0.961, + "2013": 0.969, + "2014": 0.972, + "2015": 0.971, + "2016": 0.977, + "2017": 0.973, + "2018": 0.974, + "2019": 0.982, + "2020": 0.963, + "2021": 0.974 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr117", + "Region": "Ciudad Autonoma de Ceuta", + "1990": 0.831, + "1991": 0.845, + "1992": 0.864, + "1993": 0.861, + "1994": 0.864, + "1995": 0.874, + "1996": 0.849, + "1997": 0.868, + "1998": 0.857, + "1999": 0.867, + "2000": 0.894, + "2001": 0.897, + "2002": 0.874, + "2003": 0.887, + "2004": 0.891, + "2005": 0.894, + "2006": 0.897, + "2007": 0.89, + "2008": 0.905, + "2009": 0.892, + "2010": 0.896, + "2011": 0.91, + "2012": 0.929, + "2013": 0.912, + "2014": 0.926, + "2015": 0.935, + "2016": 0.938, + "2017": 0.923, + "2018": 0.941, + "2019": 0.938, + "2020": 0.919, + "2021": 0.93 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr118", + "Region": "Ciudad Autonoma de Melilla", + "1990": 0.848, + "1991": 0.868, + "1992": 0.889, + "1993": 0.874, + "1994": 0.849, + "1995": 0.868, + "1996": 0.883, + "1997": 0.869, + "1998": 0.853, + "1999": 0.888, + "2000": 0.88, + "2001": 0.881, + "2002": 0.882, + "2003": 0.881, + "2004": 0.886, + "2005": 0.905, + "2006": 0.896, + "2007": 0.91, + "2008": 0.902, + "2009": 0.936, + "2010": 0.944, + "2011": 0.918, + "2012": 0.926, + "2013": 0.932, + "2014": 0.927, + "2015": 0.92, + "2016": 0.935, + "2017": 0.934, + "2018": 0.928, + "2019": 0.938, + "2020": 0.919, + "2021": 0.93 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr108", + "Region": "Comunidad de Madrid", + "1990": 0.888, + "1991": 0.888, + "1992": 0.897, + "1993": 0.9, + "1994": 0.908, + "1995": 0.908, + "1996": 0.914, + "1997": 0.926, + "1998": 0.925, + "1999": 0.93, + "2000": 0.934, + "2001": 0.936, + "2002": 0.939, + "2003": 0.935, + "2004": 0.945, + "2005": 0.948, + "2006": 0.957, + "2007": 0.958, + "2008": 0.965, + "2009": 0.97, + "2010": 0.977, + "2011": 0.982, + "2012": 0.983, + "2013": 0.99, + "2014": 0.992, + "2015": 0.987, + "2016": 0.996, + "2017": 0.996, + "2018": 1, + "2019": 1, + "2020": 0.986, + "2021": 0.997 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr105", + "Region": "Comunidad Foral de Navarra", + "1990": 0.899, + "1991": 0.897, + "1992": 0.911, + "1993": 0.909, + "1994": 0.915, + "1995": 0.915, + "1996": 0.919, + "1997": 0.928, + "1998": 0.927, + "1999": 0.928, + "2000": 0.934, + "2001": 0.942, + "2002": 0.94, + "2003": 0.94, + "2004": 0.949, + "2005": 0.951, + "2006": 0.959, + "2007": 0.959, + "2008": 0.96, + "2009": 0.97, + "2010": 0.98, + "2011": 0.978, + "2012": 0.977, + "2013": 0.978, + "2014": 0.976, + "2015": 0.98, + "2016": 0.98, + "2017": 0.981, + "2018": 0.985, + "2019": 0.993, + "2020": 0.974, + "2021": 0.985 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr113", + "Region": "Comunidad Valenciana", + "1990": 0.869, + "1991": 0.871, + "1992": 0.875, + "1993": 0.88, + "1994": 0.881, + "1995": 0.888, + "1996": 0.888, + "1997": 0.892, + "1998": 0.9, + "1999": 0.894, + "2000": 0.905, + "2001": 0.908, + "2002": 0.91, + "2003": 0.909, + "2004": 0.922, + "2005": 0.919, + "2006": 0.931, + "2007": 0.932, + "2008": 0.937, + "2009": 0.944, + "2010": 0.947, + "2011": 0.95, + "2012": 0.95, + "2013": 0.96, + "2014": 0.959, + "2015": 0.957, + "2016": 0.963, + "2017": 0.961, + "2018": 0.962, + "2019": 0.97, + "2020": 0.951, + "2021": 0.962 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr111", + "Region": "Extremadura", + "1990": 0.872, + "1991": 0.876, + "1992": 0.883, + "1993": 0.881, + "1994": 0.891, + "1995": 0.895, + "1996": 0.892, + "1997": 0.902, + "1998": 0.902, + "1999": 0.902, + "2000": 0.907, + "2001": 0.913, + "2002": 0.914, + "2003": 0.909, + "2004": 0.922, + "2005": 0.918, + "2006": 0.931, + "2007": 0.93, + "2008": 0.94, + "2009": 0.939, + "2010": 0.941, + "2011": 0.95, + "2012": 0.944, + "2013": 0.95, + "2014": 0.958, + "2015": 0.954, + "2016": 0.957, + "2017": 0.957, + "2018": 0.961, + "2019": 0.964, + "2020": 0.945, + "2021": 0.956 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr101", + "Region": "Galicia", + "1990": 0.872, + "1991": 0.876, + "1992": 0.884, + "1993": 0.888, + "1994": 0.892, + "1995": 0.892, + "1996": 0.892, + "1997": 0.905, + "1998": 0.91, + "1999": 0.911, + "2000": 0.914, + "2001": 0.923, + "2002": 0.927, + "2003": 0.923, + "2004": 0.935, + "2005": 0.934, + "2006": 0.937, + "2007": 0.938, + "2008": 0.945, + "2009": 0.945, + "2010": 0.953, + "2011": 0.956, + "2012": 0.957, + "2013": 0.961, + "2014": 0.969, + "2015": 0.963, + "2016": 0.963, + "2017": 0.97, + "2018": 0.971, + "2019": 0.978, + "2020": 0.959, + "2021": 0.97 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr114", + "Region": "Illes Balears", + "1990": 0.86, + "1991": 0.863, + "1992": 0.874, + "1993": 0.877, + "1994": 0.886, + "1995": 0.883, + "1996": 0.888, + "1997": 0.897, + "1998": 0.9, + "1999": 0.894, + "2000": 0.899, + "2001": 0.911, + "2002": 0.916, + "2003": 0.921, + "2004": 0.929, + "2005": 0.93, + "2006": 0.937, + "2007": 0.944, + "2008": 0.942, + "2009": 0.939, + "2010": 0.945, + "2011": 0.951, + "2012": 0.95, + "2013": 0.961, + "2014": 0.962, + "2015": 0.96, + "2016": 0.969, + "2017": 0.966, + "2018": 0.973, + "2019": 0.981, + "2020": 0.962, + "2021": 0.973 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr106", + "Region": "La Rioja", + "1990": 0.877, + "1991": 0.891, + "1992": 0.895, + "1993": 0.901, + "1994": 0.911, + "1995": 0.911, + "1996": 0.912, + "1997": 0.922, + "1998": 0.92, + "1999": 0.916, + "2000": 0.934, + "2001": 0.934, + "2002": 0.933, + "2003": 0.935, + "2004": 0.945, + "2005": 0.939, + "2006": 0.954, + "2007": 0.947, + "2008": 0.952, + "2009": 0.965, + "2010": 0.968, + "2011": 0.967, + "2012": 0.964, + "2013": 0.978, + "2014": 0.981, + "2015": 0.975, + "2016": 0.983, + "2017": 0.98, + "2018": 0.977, + "2019": 0.981, + "2020": 0.962, + "2021": 0.973 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr104", + "Region": "Pais Vasco", + "1990": 0.882, + "1991": 0.882, + "1992": 0.889, + "1993": 0.895, + "1994": 0.9, + "1995": 0.897, + "1996": 0.897, + "1997": 0.911, + "1998": 0.91, + "1999": 0.916, + "2000": 0.92, + "2001": 0.928, + "2002": 0.928, + "2003": 0.929, + "2004": 0.937, + "2005": 0.938, + "2006": 0.948, + "2007": 0.946, + "2008": 0.951, + "2009": 0.954, + "2010": 0.961, + "2011": 0.962, + "2012": 0.966, + "2013": 0.973, + "2014": 0.976, + "2015": 0.972, + "2016": 0.977, + "2017": 0.98, + "2018": 0.98, + "2019": 0.985, + "2020": 0.966, + "2021": 0.977 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr102", + "Region": "Principado de Asturias", + "1990": 0.868, + "1991": 0.869, + "1992": 0.88, + "1993": 0.877, + "1994": 0.888, + "1995": 0.883, + "1996": 0.886, + "1997": 0.898, + "1998": 0.899, + "1999": 0.899, + "2000": 0.907, + "2001": 0.917, + "2002": 0.916, + "2003": 0.912, + "2004": 0.92, + "2005": 0.922, + "2006": 0.928, + "2007": 0.929, + "2008": 0.934, + "2009": 0.939, + "2010": 0.941, + "2011": 0.944, + "2012": 0.946, + "2013": 0.955, + "2014": 0.955, + "2015": 0.955, + "2016": 0.957, + "2017": 0.961, + "2018": 0.962, + "2019": 0.965, + "2020": 0.947, + "2021": 0.958 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr116", + "Region": "Region de Murcia", + "1990": 0.863, + "1991": 0.869, + "1992": 0.878, + "1993": 0.883, + "1994": 0.886, + "1995": 0.892, + "1996": 0.892, + "1997": 0.894, + "1998": 0.896, + "1999": 0.89, + "2000": 0.899, + "2001": 0.908, + "2002": 0.908, + "2003": 0.91, + "2004": 0.915, + "2005": 0.919, + "2006": 0.928, + "2007": 0.927, + "2008": 0.929, + "2009": 0.936, + "2010": 0.947, + "2011": 0.948, + "2012": 0.947, + "2013": 0.958, + "2014": 0.959, + "2015": 0.957, + "2016": 0.961, + "2017": 0.958, + "2018": 0.964, + "2019": 0.961, + "2020": 0.942, + "2021": 0.953 + }, + { + "Country": "Sri Lanka", + "Continent": "Asia/Pacific", + "ISO_Code": "LKA", + "Level": "National", + "GDLCODE": "LKAt", + "Region": "Total", + "1990": 0.799, + "1991": 0.796, + "1992": 0.808, + "1993": 0.816, + "1994": 0.814, + "1995": 0.804, + "1996": 0.804, + "1997": 0.802, + "1998": 0.801, + "1999": 0.81, + "2000": 0.775, + "2001": 0.781, + "2002": 0.786, + "2003": 0.79, + "2004": 0.724, + "2005": 0.802, + "2006": 0.8, + "2007": 0.801, + "2008": 0.796, + "2009": 0.757, + "2010": 0.819, + "2011": 0.821, + "2012": 0.829, + "2013": 0.834, + "2014": 0.841, + "2015": 0.845, + "2016": 0.851, + "2017": 0.852, + "2018": 0.858, + "2019": 0.862, + "2020": 0.868, + "2021": 0.868 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "National", + "GDLCODE": "SDNt", + "Region": "Total", + "1990": 0.457, + "1991": 0.465, + "1992": 0.398, + "1993": 0.409, + "1994": 0.564, + "1995": 0.492, + "1996": 0.497, + "1997": 0.505, + "1998": 0.443, + "1999": 0.569, + "2000": 0.59, + "2001": 0.593, + "2002": 0.6, + "2003": 0.588, + "2004": 0.566, + "2005": 0.574, + "2006": 0.62, + "2007": 0.635, + "2008": 0.634, + "2009": 0.656, + "2010": 0.662, + "2011": 0.665, + "2012": 0.674, + "2013": 0.672, + "2014": 0.681, + "2015": 0.687, + "2016": 0.689, + "2017": 0.699, + "2018": 0.703, + "2019": 0.706, + "2020": 0.702, + "2021": 0.696 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr105", + "Region": "Al Gedarif", + "1990": 0.428, + "1991": 0.435, + "1992": 0.371, + "1993": 0.381, + "1994": 0.53, + "1995": 0.462, + "1996": 0.466, + "1997": 0.474, + "1998": 0.415, + "1999": 0.536, + "2000": 0.555, + "2001": 0.559, + "2002": 0.565, + "2003": 0.554, + "2004": 0.532, + "2005": 0.54, + "2006": 0.584, + "2007": 0.599, + "2008": 0.598, + "2009": 0.619, + "2010": 0.625, + "2011": 0.636, + "2012": 0.652, + "2013": 0.659, + "2014": 0.675, + "2015": 0.681, + "2016": 0.683, + "2017": 0.693, + "2018": 0.697, + "2019": 0.7, + "2020": 0.696, + "2021": 0.69 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr107", + "Region": "Al Gezira", + "1990": 0.495, + "1991": 0.502, + "1992": 0.433, + "1993": 0.444, + "1994": 0.606, + "1995": 0.531, + "1996": 0.536, + "1997": 0.545, + "1998": 0.48, + "1999": 0.612, + "2000": 0.633, + "2001": 0.637, + "2002": 0.644, + "2003": 0.631, + "2004": 0.608, + "2005": 0.616, + "2006": 0.665, + "2007": 0.681, + "2008": 0.68, + "2009": 0.703, + "2010": 0.709, + "2011": 0.709, + "2012": 0.713, + "2013": 0.708, + "2014": 0.713, + "2015": 0.72, + "2016": 0.722, + "2017": 0.732, + "2018": 0.736, + "2019": 0.739, + "2020": 0.735, + "2021": 0.729 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr110", + "Region": "Blue Nile", + "1990": 0.346, + "1991": 0.353, + "1992": 0.296, + "1993": 0.305, + "1994": 0.437, + "1995": 0.376, + "1996": 0.38, + "1997": 0.387, + "1998": 0.334, + "1999": 0.442, + "2000": 0.459, + "2001": 0.463, + "2002": 0.468, + "2003": 0.458, + "2004": 0.439, + "2005": 0.446, + "2006": 0.485, + "2007": 0.498, + "2008": 0.497, + "2009": 0.516, + "2010": 0.521, + "2011": 0.542, + "2012": 0.567, + "2013": 0.583, + "2014": 0.608, + "2015": 0.613, + "2016": 0.615, + "2017": 0.625, + "2018": 0.628, + "2019": 0.631, + "2020": 0.627, + "2021": 0.622 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr104", + "Region": "Kassala", + "1990": 0.445, + "1991": 0.453, + "1992": 0.387, + "1993": 0.398, + "1994": 0.55, + "1995": 0.48, + "1996": 0.484, + "1997": 0.492, + "1998": 0.431, + "1999": 0.556, + "2000": 0.575, + "2001": 0.579, + "2002": 0.585, + "2003": 0.574, + "2004": 0.552, + "2005": 0.56, + "2006": 0.605, + "2007": 0.62, + "2008": 0.619, + "2009": 0.641, + "2010": 0.646, + "2011": 0.663, + "2012": 0.683, + "2013": 0.694, + "2014": 0.715, + "2015": 0.721, + "2016": 0.723, + "2017": 0.734, + "2018": 0.737, + "2019": 0.74, + "2020": 0.736, + "2021": 0.731 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr106", + "Region": "Khartoum", + "1990": 0.521, + "1991": 0.529, + "1992": 0.457, + "1993": 0.468, + "1994": 0.636, + "1995": 0.559, + "1996": 0.563, + "1997": 0.573, + "1998": 0.506, + "1999": 0.642, + "2000": 0.664, + "2001": 0.668, + "2002": 0.675, + "2003": 0.662, + "2004": 0.638, + "2005": 0.647, + "2006": 0.697, + "2007": 0.713, + "2008": 0.712, + "2009": 0.736, + "2010": 0.742, + "2011": 0.734, + "2012": 0.731, + "2013": 0.718, + "2014": 0.716, + "2015": 0.722, + "2016": 0.724, + "2017": 0.735, + "2018": 0.738, + "2019": 0.742, + "2020": 0.737, + "2021": 0.732 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr102", + "Region": "Nahr El Nil", + "1990": 0.482, + "1991": 0.49, + "1992": 0.421, + "1993": 0.432, + "1994": 0.592, + "1995": 0.518, + "1996": 0.522, + "1997": 0.531, + "1998": 0.467, + "1999": 0.598, + "2000": 0.618, + "2001": 0.622, + "2002": 0.629, + "2003": 0.616, + "2004": 0.594, + "2005": 0.602, + "2006": 0.649, + "2007": 0.665, + "2008": 0.664, + "2009": 0.687, + "2010": 0.693, + "2011": 0.71, + "2012": 0.733, + "2013": 0.745, + "2014": 0.768, + "2015": 0.774, + "2016": 0.776, + "2017": 0.787, + "2018": 0.791, + "2019": 0.794, + "2020": 0.79, + "2021": 0.784 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr113", + "Region": "North Darfur", + "1990": 0.542, + "1991": 0.55, + "1992": 0.476, + "1993": 0.488, + "1994": 0.66, + "1995": 0.58, + "1996": 0.585, + "1997": 0.595, + "1998": 0.526, + "1999": 0.666, + "2000": 0.688, + "2001": 0.693, + "2002": 0.7, + "2003": 0.686, + "2004": 0.662, + "2005": 0.671, + "2006": 0.722, + "2007": 0.739, + "2008": 0.738, + "2009": 0.762, + "2010": 0.769, + "2011": 0.735, + "2012": 0.708, + "2013": 0.67, + "2014": 0.644, + "2015": 0.65, + "2016": 0.651, + "2017": 0.661, + "2018": 0.665, + "2019": 0.668, + "2020": 0.664, + "2021": 0.659 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr111", + "Region": "North Kordofan", + "1990": 0.473, + "1991": 0.481, + "1992": 0.413, + "1993": 0.424, + "1994": 0.582, + "1995": 0.509, + "1996": 0.513, + "1997": 0.522, + "1998": 0.459, + "1999": 0.588, + "2000": 0.608, + "2001": 0.612, + "2002": 0.618, + "2003": 0.606, + "2004": 0.584, + "2005": 0.592, + "2006": 0.639, + "2007": 0.654, + "2008": 0.653, + "2009": 0.676, + "2010": 0.682, + "2011": 0.688, + "2012": 0.7, + "2013": 0.701, + "2014": 0.713, + "2015": 0.719, + "2016": 0.721, + "2017": 0.731, + "2018": 0.735, + "2019": 0.738, + "2020": 0.734, + "2021": 0.728 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr101", + "Region": "Northern", + "1990": 0.502, + "1991": 0.51, + "1992": 0.44, + "1993": 0.451, + "1994": 0.615, + "1995": 0.539, + "1996": 0.544, + "1997": 0.553, + "1998": 0.487, + "1999": 0.621, + "2000": 0.642, + "2001": 0.646, + "2002": 0.653, + "2003": 0.64, + "2004": 0.617, + "2005": 0.625, + "2006": 0.674, + "2007": 0.69, + "2008": 0.689, + "2009": 0.713, + "2010": 0.719, + "2011": 0.729, + "2012": 0.745, + "2013": 0.749, + "2014": 0.765, + "2015": 0.771, + "2016": 0.773, + "2017": 0.784, + "2018": 0.788, + "2019": 0.792, + "2020": 0.787, + "2021": 0.781 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr103", + "Region": "Red Sea", + "1990": 0.446, + "1991": 0.454, + "1992": 0.388, + "1993": 0.398, + "1994": 0.551, + "1995": 0.48, + "1996": 0.485, + "1997": 0.493, + "1998": 0.432, + "1999": 0.557, + "2000": 0.576, + "2001": 0.58, + "2002": 0.586, + "2003": 0.575, + "2004": 0.553, + "2005": 0.561, + "2006": 0.606, + "2007": 0.621, + "2008": 0.62, + "2009": 0.642, + "2010": 0.648, + "2011": 0.663, + "2012": 0.683, + "2013": 0.693, + "2014": 0.714, + "2015": 0.72, + "2016": 0.722, + "2017": 0.732, + "2018": 0.736, + "2019": 0.739, + "2020": 0.735, + "2021": 0.73 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr109", + "Region": "Sinnar", + "1990": 0.472, + "1991": 0.48, + "1992": 0.412, + "1993": 0.422, + "1994": 0.58, + "1995": 0.507, + "1996": 0.512, + "1997": 0.521, + "1998": 0.458, + "1999": 0.586, + "2000": 0.607, + "2001": 0.61, + "2002": 0.617, + "2003": 0.605, + "2004": 0.582, + "2005": 0.59, + "2006": 0.637, + "2007": 0.653, + "2008": 0.652, + "2009": 0.674, + "2010": 0.68, + "2011": 0.687, + "2012": 0.698, + "2013": 0.699, + "2014": 0.711, + "2015": 0.717, + "2016": 0.719, + "2017": 0.729, + "2018": 0.733, + "2019": 0.736, + "2020": 0.732, + "2021": 0.727 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr115", + "Region": "South Darfur", + "1990": 0.422, + "1991": 0.429, + "1992": 0.366, + "1993": 0.376, + "1994": 0.524, + "1995": 0.456, + "1996": 0.46, + "1997": 0.468, + "1998": 0.409, + "1999": 0.529, + "2000": 0.548, + "2001": 0.552, + "2002": 0.558, + "2003": 0.547, + "2004": 0.526, + "2005": 0.533, + "2006": 0.577, + "2007": 0.592, + "2008": 0.591, + "2009": 0.612, + "2010": 0.617, + "2011": 0.624, + "2012": 0.635, + "2013": 0.636, + "2014": 0.648, + "2015": 0.653, + "2016": 0.655, + "2017": 0.665, + "2018": 0.669, + "2019": 0.672, + "2020": 0.668, + "2021": 0.662 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr112", + "Region": "South Kordofan", + "1990": 0.417, + "1991": 0.424, + "1992": 0.361, + "1993": 0.371, + "1994": 0.517, + "1995": 0.45, + "1996": 0.454, + "1997": 0.462, + "1998": 0.403, + "1999": 0.523, + "2000": 0.542, + "2001": 0.545, + "2002": 0.551, + "2003": 0.54, + "2004": 0.519, + "2005": 0.527, + "2006": 0.57, + "2007": 0.585, + "2008": 0.584, + "2009": 0.605, + "2010": 0.61, + "2011": 0.624, + "2012": 0.643, + "2013": 0.651, + "2014": 0.67, + "2015": 0.676, + "2016": 0.678, + "2017": 0.688, + "2018": 0.691, + "2019": 0.694, + "2020": 0.69, + "2021": 0.685 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr114", + "Region": "West Darfur", + "1990": 0.458, + "1991": 0.465, + "1992": 0.399, + "1993": 0.409, + "1994": 0.564, + "1995": 0.493, + "1996": 0.497, + "1997": 0.506, + "1998": 0.444, + "1999": 0.57, + "2000": 0.59, + "2001": 0.594, + "2002": 0.6, + "2003": 0.588, + "2004": 0.566, + "2005": 0.574, + "2006": 0.62, + "2007": 0.635, + "2008": 0.635, + "2009": 0.657, + "2010": 0.662, + "2011": 0.66, + "2012": 0.662, + "2013": 0.655, + "2014": 0.658, + "2015": 0.664, + "2016": 0.666, + "2017": 0.676, + "2018": 0.679, + "2019": 0.682, + "2020": 0.678, + "2021": 0.673 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr108", + "Region": "White Nile", + "1990": 0.453, + "1991": 0.46, + "1992": 0.394, + "1993": 0.404, + "1994": 0.558, + "1995": 0.487, + "1996": 0.492, + "1997": 0.5, + "1998": 0.439, + "1999": 0.564, + "2000": 0.584, + "2001": 0.588, + "2002": 0.594, + "2003": 0.582, + "2004": 0.56, + "2005": 0.568, + "2006": 0.614, + "2007": 0.629, + "2008": 0.628, + "2009": 0.65, + "2010": 0.656, + "2011": 0.659, + "2012": 0.666, + "2013": 0.664, + "2014": 0.672, + "2015": 0.678, + "2016": 0.68, + "2017": 0.69, + "2018": 0.694, + "2019": 0.697, + "2020": 0.693, + "2021": 0.688 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "National", + "GDLCODE": "SURt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.714, + "2005": 0.723, + "2006": 0.732, + "2007": 0.742, + "2008": 0.751, + "2009": 0.762, + "2010": 0.768, + "2011": 0.768, + "2012": 0.766, + "2013": 0.764, + "2014": 0.766, + "2015": 0.782, + "2016": 0.794, + "2017": 0.806, + "2018": 0.809, + "2019": 0.804, + "2020": 0.809, + "2021": 0.773 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr105", + "Region": "Brokopondo and Sipaliwini", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.653, + "2005": 0.662, + "2006": 0.67, + "2007": 0.687, + "2008": 0.704, + "2009": 0.721, + "2010": 0.735, + "2011": 0.743, + "2012": 0.748, + "2013": 0.754, + "2014": 0.763, + "2015": 0.786, + "2016": 0.805, + "2017": 0.826, + "2018": 0.835, + "2019": 0.83, + "2020": 0.835, + "2021": 0.799 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr104", + "Region": "Commewijne and Marowijne", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.75, + "2005": 0.759, + "2006": 0.768, + "2007": 0.776, + "2008": 0.784, + "2009": 0.793, + "2010": 0.797, + "2011": 0.795, + "2012": 0.791, + "2013": 0.788, + "2014": 0.788, + "2015": 0.802, + "2016": 0.812, + "2017": 0.823, + "2018": 0.823, + "2019": 0.818, + "2020": 0.823, + "2021": 0.788 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr103", + "Region": "Nickerie, Coronie and Saramacca", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.757, + "2005": 0.767, + "2006": 0.776, + "2007": 0.784, + "2008": 0.792, + "2009": 0.801, + "2010": 0.805, + "2011": 0.803, + "2012": 0.799, + "2013": 0.796, + "2014": 0.795, + "2015": 0.809, + "2016": 0.82, + "2017": 0.831, + "2018": 0.831, + "2019": 0.826, + "2020": 0.831, + "2021": 0.795 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr101", + "Region": "Paramaribo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.707, + "2005": 0.716, + "2006": 0.724, + "2007": 0.733, + "2008": 0.741, + "2009": 0.75, + "2010": 0.755, + "2011": 0.754, + "2012": 0.751, + "2013": 0.748, + "2014": 0.749, + "2015": 0.763, + "2016": 0.774, + "2017": 0.785, + "2018": 0.786, + "2019": 0.781, + "2020": 0.786, + "2021": 0.752 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr102", + "Region": "Wanica and Para", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.727, + "2005": 0.736, + "2006": 0.745, + "2007": 0.753, + "2008": 0.762, + "2009": 0.771, + "2010": 0.776, + "2011": 0.775, + "2012": 0.772, + "2013": 0.769, + "2014": 0.77, + "2015": 0.785, + "2016": 0.796, + "2017": 0.807, + "2018": 0.808, + "2019": 0.804, + "2020": 0.808, + "2021": 0.773 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "National", + "GDLCODE": "SWEt", + "Region": "Total", + "1990": 0.886, + "1991": 0.888, + "1992": 0.893, + "1993": 0.894, + "1994": 0.904, + "1995": 0.905, + "1996": 0.908, + "1997": 0.912, + "1998": 0.914, + "1999": 0.916, + "2000": 0.919, + "2001": 0.921, + "2002": 0.922, + "2003": 0.926, + "2004": 0.931, + "2005": 0.933, + "2006": 0.936, + "2007": 0.938, + "2008": 0.941, + "2009": 0.944, + "2010": 0.946, + "2011": 0.95, + "2012": 0.95, + "2013": 0.953, + "2014": 0.957, + "2015": 0.957, + "2016": 0.959, + "2017": 0.961, + "2018": 0.962, + "2019": 0.97, + "2020": 0.96, + "2021": 0.969 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr107", + "Region": "Mellersta Norrland", + "1990": 0.875, + "1991": 0.875, + "1992": 0.887, + "1993": 0.887, + "1994": 0.896, + "1995": 0.896, + "1996": 0.906, + "1997": 0.902, + "1998": 0.904, + "1999": 0.903, + "2000": 0.912, + "2001": 0.914, + "2002": 0.917, + "2003": 0.914, + "2004": 0.916, + "2005": 0.918, + "2006": 0.92, + "2007": 0.924, + "2008": 0.932, + "2009": 0.93, + "2010": 0.932, + "2011": 0.932, + "2012": 0.94, + "2013": 0.935, + "2014": 0.938, + "2015": 0.936, + "2016": 0.948, + "2017": 0.944, + "2018": 0.953, + "2019": 0.953, + "2020": 0.944, + "2021": 0.952 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr106", + "Region": "Norra Mellansverige", + "1990": 0.88, + "1991": 0.872, + "1992": 0.881, + "1993": 0.881, + "1994": 0.895, + "1995": 0.893, + "1996": 0.898, + "1997": 0.902, + "1998": 0.904, + "1999": 0.909, + "2000": 0.911, + "2001": 0.912, + "2002": 0.911, + "2003": 0.915, + "2004": 0.924, + "2005": 0.921, + "2006": 0.923, + "2007": 0.929, + "2008": 0.932, + "2009": 0.93, + "2010": 0.938, + "2011": 0.944, + "2012": 0.939, + "2013": 0.946, + "2014": 0.948, + "2015": 0.94, + "2016": 0.95, + "2017": 0.953, + "2018": 0.956, + "2019": 0.962, + "2020": 0.953, + "2021": 0.961 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr102", + "Region": "Ostra Mellansverige", + "1990": 0.891, + "1991": 0.891, + "1992": 0.895, + "1993": 0.894, + "1994": 0.902, + "1995": 0.908, + "1996": 0.907, + "1997": 0.913, + "1998": 0.917, + "1999": 0.918, + "2000": 0.92, + "2001": 0.92, + "2002": 0.919, + "2003": 0.929, + "2004": 0.932, + "2005": 0.932, + "2006": 0.937, + "2007": 0.938, + "2008": 0.939, + "2009": 0.939, + "2010": 0.949, + "2011": 0.949, + "2012": 0.948, + "2013": 0.949, + "2014": 0.96, + "2015": 0.959, + "2016": 0.957, + "2017": 0.959, + "2018": 0.961, + "2019": 0.967, + "2020": 0.957, + "2021": 0.966 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr108", + "Region": "Ovre Norrland", + "1990": 0.871, + "1991": 0.88, + "1992": 0.882, + "1993": 0.889, + "1994": 0.898, + "1995": 0.896, + "1996": 0.896, + "1997": 0.906, + "1998": 0.907, + "1999": 0.903, + "2000": 0.907, + "2001": 0.915, + "2002": 0.908, + "2003": 0.914, + "2004": 0.923, + "2005": 0.927, + "2006": 0.932, + "2007": 0.93, + "2008": 0.93, + "2009": 0.937, + "2010": 0.938, + "2011": 0.938, + "2012": 0.937, + "2013": 0.938, + "2014": 0.945, + "2015": 0.943, + "2016": 0.95, + "2017": 0.951, + "2018": 0.948, + "2019": 0.955, + "2020": 0.945, + "2021": 0.954 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr103", + "Region": "Smaland med oarna", + "1990": 0.892, + "1991": 0.895, + "1992": 0.899, + "1993": 0.901, + "1994": 0.91, + "1995": 0.913, + "1996": 0.913, + "1997": 0.919, + "1998": 0.917, + "1999": 0.92, + "2000": 0.92, + "2001": 0.92, + "2002": 0.927, + "2003": 0.929, + "2004": 0.933, + "2005": 0.935, + "2006": 0.935, + "2007": 0.941, + "2008": 0.946, + "2009": 0.948, + "2010": 0.949, + "2011": 0.95, + "2012": 0.951, + "2013": 0.955, + "2014": 0.963, + "2015": 0.959, + "2016": 0.963, + "2017": 0.962, + "2018": 0.965, + "2019": 0.976, + "2020": 0.967, + "2021": 0.975 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr101", + "Region": "Stockholm", + "1990": 0.878, + "1991": 0.885, + "1992": 0.892, + "1993": 0.894, + "1994": 0.904, + "1995": 0.904, + "1996": 0.91, + "1997": 0.915, + "1998": 0.916, + "1999": 0.917, + "2000": 0.921, + "2001": 0.925, + "2002": 0.927, + "2003": 0.929, + "2004": 0.935, + "2005": 0.941, + "2006": 0.94, + "2007": 0.943, + "2008": 0.947, + "2009": 0.953, + "2010": 0.952, + "2011": 0.956, + "2012": 0.959, + "2013": 0.964, + "2014": 0.963, + "2015": 0.963, + "2016": 0.967, + "2017": 0.97, + "2018": 0.968, + "2019": 0.981, + "2020": 0.971, + "2021": 0.98 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr104", + "Region": "Sydsverige", + "1990": 0.891, + "1991": 0.894, + "1992": 0.899, + "1993": 0.897, + "1994": 0.904, + "1995": 0.907, + "1996": 0.909, + "1997": 0.912, + "1998": 0.916, + "1999": 0.917, + "2000": 0.92, + "2001": 0.922, + "2002": 0.924, + "2003": 0.928, + "2004": 0.935, + "2005": 0.933, + "2006": 0.94, + "2007": 0.937, + "2008": 0.941, + "2009": 0.947, + "2010": 0.947, + "2011": 0.953, + "2012": 0.946, + "2013": 0.952, + "2014": 0.955, + "2015": 0.959, + "2016": 0.959, + "2017": 0.959, + "2018": 0.961, + "2019": 0.969, + "2020": 0.959, + "2021": 0.968 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr105", + "Region": "Vastsverige", + "1990": 0.894, + "1991": 0.895, + "1992": 0.898, + "1993": 0.901, + "1994": 0.91, + "1995": 0.908, + "1996": 0.915, + "1997": 0.913, + "1998": 0.916, + "1999": 0.918, + "2000": 0.924, + "2001": 0.923, + "2002": 0.927, + "2003": 0.929, + "2004": 0.933, + "2005": 0.933, + "2006": 0.94, + "2007": 0.941, + "2008": 0.941, + "2009": 0.947, + "2010": 0.947, + "2011": 0.952, + "2012": 0.953, + "2013": 0.953, + "2014": 0.958, + "2015": 0.96, + "2016": 0.959, + "2017": 0.961, + "2018": 0.964, + "2019": 0.969, + "2020": 0.959, + "2021": 0.968 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "National", + "GDLCODE": "CHEt", + "Region": "Total", + "1990": 0.883, + "1991": 0.887, + "1992": 0.891, + "1993": 0.896, + "1994": 0.9, + "1995": 0.901, + "1996": 0.908, + "1997": 0.911, + "1998": 0.915, + "1999": 0.919, + "2000": 0.921, + "2001": 0.927, + "2002": 0.93, + "2003": 0.931, + "2004": 0.939, + "2005": 0.942, + "2006": 0.947, + "2007": 0.949, + "2008": 0.953, + "2009": 0.954, + "2010": 0.958, + "2011": 0.963, + "2012": 0.963, + "2013": 0.964, + "2014": 0.971, + "2015": 0.967, + "2016": 0.976, + "2017": 0.976, + "2018": 0.978, + "2019": 0.981, + "2020": 0.97, + "2021": 0.984 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr106", + "Region": "Central Switzerland", + "1990": 0.886, + "1991": 0.89, + "1992": 0.893, + "1993": 0.899, + "1994": 0.903, + "1995": 0.908, + "1996": 0.913, + "1997": 0.914, + "1998": 0.916, + "1999": 0.922, + "2000": 0.922, + "2001": 0.927, + "2002": 0.937, + "2003": 0.936, + "2004": 0.938, + "2005": 0.941, + "2006": 0.953, + "2007": 0.953, + "2008": 0.953, + "2009": 0.951, + "2010": 0.961, + "2011": 0.965, + "2012": 0.967, + "2013": 0.969, + "2014": 0.973, + "2015": 0.968, + "2016": 0.98, + "2017": 0.981, + "2018": 0.98, + "2019": 0.987, + "2020": 0.976, + "2021": 0.99 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr105", + "Region": "Eastern Switzerland", + "1990": 0.884, + "1991": 0.888, + "1992": 0.887, + "1993": 0.894, + "1994": 0.898, + "1995": 0.897, + "1996": 0.907, + "1997": 0.905, + "1998": 0.913, + "1999": 0.918, + "2000": 0.919, + "2001": 0.924, + "2002": 0.927, + "2003": 0.927, + "2004": 0.935, + "2005": 0.938, + "2006": 0.947, + "2007": 0.941, + "2008": 0.947, + "2009": 0.951, + "2010": 0.954, + "2011": 0.959, + "2012": 0.955, + "2013": 0.961, + "2014": 0.962, + "2015": 0.965, + "2016": 0.971, + "2017": 0.973, + "2018": 0.974, + "2019": 0.974, + "2020": 0.963, + "2021": 0.977 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr102", + "Region": "Espace Mittelland", + "1990": 0.88, + "1991": 0.884, + "1992": 0.89, + "1993": 0.894, + "1994": 0.895, + "1995": 0.896, + "1996": 0.905, + "1997": 0.907, + "1998": 0.911, + "1999": 0.913, + "2000": 0.916, + "2001": 0.924, + "2002": 0.924, + "2003": 0.927, + "2004": 0.933, + "2005": 0.941, + "2006": 0.94, + "2007": 0.946, + "2008": 0.952, + "2009": 0.95, + "2010": 0.954, + "2011": 0.954, + "2012": 0.957, + "2013": 0.958, + "2014": 0.964, + "2015": 0.96, + "2016": 0.966, + "2017": 0.967, + "2018": 0.969, + "2019": 0.974, + "2020": 0.963, + "2021": 0.977 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr101", + "Region": "Lake Geneva region", + "1990": 0.887, + "1991": 0.891, + "1992": 0.896, + "1993": 0.897, + "1994": 0.903, + "1995": 0.905, + "1996": 0.911, + "1997": 0.918, + "1998": 0.919, + "1999": 0.925, + "2000": 0.925, + "2001": 0.933, + "2002": 0.934, + "2003": 0.933, + "2004": 0.944, + "2005": 0.947, + "2006": 0.947, + "2007": 0.95, + "2008": 0.955, + "2009": 0.954, + "2010": 0.963, + "2011": 0.969, + "2012": 0.969, + "2013": 0.969, + "2014": 0.979, + "2015": 0.973, + "2016": 0.983, + "2017": 0.979, + "2018": 0.983, + "2019": 0.99, + "2020": 0.979, + "2021": 0.993 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr103", + "Region": "Northwestern Switzerland", + "1990": 0.88, + "1991": 0.884, + "1992": 0.888, + "1993": 0.891, + "1994": 0.901, + "1995": 0.902, + "1996": 0.91, + "1997": 0.914, + "1998": 0.914, + "1999": 0.914, + "2000": 0.922, + "2001": 0.926, + "2002": 0.929, + "2003": 0.931, + "2004": 0.943, + "2005": 0.941, + "2006": 0.948, + "2007": 0.953, + "2008": 0.955, + "2009": 0.951, + "2010": 0.957, + "2011": 0.962, + "2012": 0.964, + "2013": 0.964, + "2014": 0.97, + "2015": 0.963, + "2016": 0.974, + "2017": 0.978, + "2018": 0.978, + "2019": 0.98, + "2020": 0.969, + "2021": 0.984 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr107", + "Region": "Ticino", + "1990": 0.896, + "1991": 0.9, + "1992": 0.903, + "1993": 0.911, + "1994": 0.915, + "1995": 0.919, + "1996": 0.922, + "1997": 0.924, + "1998": 0.933, + "1999": 0.939, + "2000": 0.939, + "2001": 0.943, + "2002": 0.944, + "2003": 0.95, + "2004": 0.958, + "2005": 0.957, + "2006": 0.962, + "2007": 0.969, + "2008": 0.976, + "2009": 0.974, + "2010": 0.969, + "2011": 0.98, + "2012": 0.978, + "2013": 0.978, + "2014": 0.99, + "2015": 0.977, + "2016": 0.996, + "2017": 0.987, + "2018": 0.998, + "2019": 0.996, + "2020": 0.985, + "2021": 0.999 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr104", + "Region": "Zurich", + "1990": 0.88, + "1991": 0.884, + "1992": 0.893, + "1993": 0.897, + "1994": 0.898, + "1995": 0.897, + "1996": 0.904, + "1997": 0.908, + "1998": 0.913, + "1999": 0.918, + "2000": 0.916, + "2001": 0.923, + "2002": 0.929, + "2003": 0.931, + "2004": 0.939, + "2005": 0.938, + "2006": 0.948, + "2007": 0.949, + "2008": 0.953, + "2009": 0.957, + "2010": 0.96, + "2011": 0.965, + "2012": 0.966, + "2013": 0.966, + "2014": 0.971, + "2015": 0.97, + "2016": 0.979, + "2017": 0.978, + "2018": 0.98, + "2019": 0.98, + "2020": 0.969, + "2021": 0.984 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "National", + "GDLCODE": "SYRt", + "Region": "Total", + "1990": 0.766, + "1991": 0.77, + "1992": 0.773, + "1993": 0.772, + "1994": 0.771, + "1995": 0.776, + "1996": 0.775, + "1997": 0.774, + "1998": 0.772, + "1999": 0.776, + "2000": 0.781, + "2001": 0.795, + "2002": 0.799, + "2003": 0.806, + "2004": 0.807, + "2005": 0.812, + "2006": 0.821, + "2007": 0.826, + "2008": 0.824, + "2009": 0.829, + "2010": 0.829, + "2011": 0.82, + "2012": 0.72, + "2013": 0.674, + "2014": 0.664, + "2015": 0.694, + "2016": 0.708, + "2017": 0.746, + "2018": 0.771, + "2019": 0.797, + "2020": 0.802, + "2021": 0.801 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr111", + "Region": "Al Hasaka", + "1990": 0.755, + "1991": 0.758, + "1992": 0.762, + "1993": 0.761, + "1994": 0.76, + "1995": 0.764, + "1996": 0.763, + "1997": 0.762, + "1998": 0.761, + "1999": 0.764, + "2000": 0.769, + "2001": 0.783, + "2002": 0.787, + "2003": 0.794, + "2004": 0.795, + "2005": 0.8, + "2006": 0.809, + "2007": 0.814, + "2008": 0.812, + "2009": 0.816, + "2010": 0.817, + "2011": 0.808, + "2012": 0.708, + "2013": 0.664, + "2014": 0.653, + "2015": 0.683, + "2016": 0.697, + "2017": 0.735, + "2018": 0.76, + "2019": 0.785, + "2020": 0.79, + "2021": 0.789 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr106", + "Region": "Al Latakia", + "1990": 0.753, + "1991": 0.757, + "1992": 0.76, + "1993": 0.759, + "1994": 0.758, + "1995": 0.762, + "1996": 0.761, + "1997": 0.76, + "1998": 0.759, + "1999": 0.763, + "2000": 0.768, + "2001": 0.781, + "2002": 0.786, + "2003": 0.793, + "2004": 0.794, + "2005": 0.798, + "2006": 0.807, + "2007": 0.812, + "2008": 0.81, + "2009": 0.815, + "2010": 0.815, + "2011": 0.806, + "2012": 0.707, + "2013": 0.662, + "2014": 0.652, + "2015": 0.682, + "2016": 0.695, + "2017": 0.733, + "2018": 0.758, + "2019": 0.784, + "2020": 0.789, + "2021": 0.787 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr114", + "Region": "Al Qunitara - Quneitra", + "1990": 0.702, + "1991": 0.709, + "1992": 0.715, + "1993": 0.713, + "1994": 0.712, + "1995": 0.72, + "1996": 0.718, + "1997": 0.716, + "1998": 0.713, + "1999": 0.72, + "2000": 0.73, + "2001": 0.756, + "2002": 0.765, + "2003": 0.779, + "2004": 0.781, + "2005": 0.79, + "2006": 0.807, + "2007": 0.818, + "2008": 0.813, + "2009": 0.823, + "2010": 0.823, + "2011": 0.806, + "2012": 0.616, + "2013": 0.537, + "2014": 0.519, + "2015": 0.571, + "2016": 0.595, + "2017": 0.664, + "2018": 0.712, + "2019": 0.761, + "2020": 0.771, + "2021": 0.768 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr109", + "Region": "Al Raka-Raqqa", + "1990": 0.782, + "1991": 0.785, + "1992": 0.789, + "1993": 0.788, + "1994": 0.787, + "1995": 0.791, + "1996": 0.79, + "1997": 0.789, + "1998": 0.788, + "1999": 0.791, + "2000": 0.796, + "2001": 0.81, + "2002": 0.815, + "2003": 0.822, + "2004": 0.823, + "2005": 0.828, + "2006": 0.837, + "2007": 0.842, + "2008": 0.84, + "2009": 0.845, + "2010": 0.845, + "2011": 0.836, + "2012": 0.734, + "2013": 0.688, + "2014": 0.678, + "2015": 0.708, + "2016": 0.722, + "2017": 0.761, + "2018": 0.787, + "2019": 0.813, + "2020": 0.818, + "2021": 0.817 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr112", + "Region": "Al Swida - Sweida", + "1990": 0.775, + "1991": 0.778, + "1992": 0.782, + "1993": 0.781, + "1994": 0.78, + "1995": 0.784, + "1996": 0.783, + "1997": 0.782, + "1998": 0.781, + "1999": 0.784, + "2000": 0.789, + "2001": 0.803, + "2002": 0.808, + "2003": 0.815, + "2004": 0.816, + "2005": 0.82, + "2006": 0.829, + "2007": 0.835, + "2008": 0.833, + "2009": 0.837, + "2010": 0.838, + "2011": 0.829, + "2012": 0.727, + "2013": 0.682, + "2014": 0.671, + "2015": 0.702, + "2016": 0.715, + "2017": 0.754, + "2018": 0.78, + "2019": 0.806, + "2020": 0.811, + "2021": 0.81 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr101", + "Region": "Damascus", + "1990": 0.702, + "1991": 0.709, + "1992": 0.715, + "1993": 0.713, + "1994": 0.712, + "1995": 0.72, + "1996": 0.718, + "1997": 0.716, + "1998": 0.713, + "1999": 0.72, + "2000": 0.73, + "2001": 0.756, + "2002": 0.765, + "2003": 0.779, + "2004": 0.781, + "2005": 0.79, + "2006": 0.807, + "2007": 0.818, + "2008": 0.813, + "2009": 0.823, + "2010": 0.823, + "2011": 0.806, + "2012": 0.616, + "2013": 0.537, + "2014": 0.519, + "2015": 0.571, + "2016": 0.595, + "2017": 0.664, + "2018": 0.712, + "2019": 0.761, + "2020": 0.771, + "2021": 0.768 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr113", + "Region": "Daraa", + "1990": 0.753, + "1991": 0.756, + "1992": 0.759, + "1993": 0.758, + "1994": 0.758, + "1995": 0.762, + "1996": 0.761, + "1997": 0.76, + "1998": 0.758, + "1999": 0.762, + "2000": 0.767, + "2001": 0.78, + "2002": 0.785, + "2003": 0.792, + "2004": 0.793, + "2005": 0.797, + "2006": 0.806, + "2007": 0.812, + "2008": 0.809, + "2009": 0.814, + "2010": 0.814, + "2011": 0.806, + "2012": 0.706, + "2013": 0.662, + "2014": 0.651, + "2015": 0.681, + "2016": 0.695, + "2017": 0.732, + "2018": 0.758, + "2019": 0.783, + "2020": 0.788, + "2021": 0.787 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr110", + "Region": "Der El Zour - Deir Ezzor", + "1990": 0.792, + "1991": 0.796, + "1992": 0.799, + "1993": 0.798, + "1994": 0.797, + "1995": 0.802, + "1996": 0.8, + "1997": 0.799, + "1998": 0.798, + "1999": 0.802, + "2000": 0.807, + "2001": 0.821, + "2002": 0.826, + "2003": 0.833, + "2004": 0.834, + "2005": 0.839, + "2006": 0.848, + "2007": 0.853, + "2008": 0.851, + "2009": 0.856, + "2010": 0.856, + "2011": 0.847, + "2012": 0.744, + "2013": 0.698, + "2014": 0.687, + "2015": 0.718, + "2016": 0.732, + "2017": 0.771, + "2018": 0.797, + "2019": 0.824, + "2020": 0.829, + "2021": 0.827 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr107", + "Region": "Edlab Idleb", + "1990": 0.738, + "1991": 0.741, + "1992": 0.744, + "1993": 0.743, + "1994": 0.742, + "1995": 0.746, + "1996": 0.745, + "1997": 0.744, + "1998": 0.743, + "1999": 0.747, + "2000": 0.752, + "2001": 0.765, + "2002": 0.769, + "2003": 0.776, + "2004": 0.777, + "2005": 0.782, + "2006": 0.79, + "2007": 0.796, + "2008": 0.793, + "2009": 0.798, + "2010": 0.798, + "2011": 0.79, + "2012": 0.692, + "2013": 0.648, + "2014": 0.638, + "2015": 0.667, + "2016": 0.68, + "2017": 0.718, + "2018": 0.742, + "2019": 0.768, + "2020": 0.772, + "2021": 0.771 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr108", + "Region": "Halab - Aleppo", + "1990": 0.76, + "1991": 0.763, + "1992": 0.766, + "1993": 0.765, + "1994": 0.765, + "1995": 0.769, + "1996": 0.768, + "1997": 0.767, + "1998": 0.765, + "1999": 0.769, + "2000": 0.774, + "2001": 0.788, + "2002": 0.792, + "2003": 0.799, + "2004": 0.8, + "2005": 0.805, + "2006": 0.814, + "2007": 0.819, + "2008": 0.817, + "2009": 0.821, + "2010": 0.822, + "2011": 0.813, + "2012": 0.713, + "2013": 0.668, + "2014": 0.658, + "2015": 0.688, + "2016": 0.701, + "2017": 0.739, + "2018": 0.765, + "2019": 0.79, + "2020": 0.795, + "2021": 0.794 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr104", + "Region": "Hamaa", + "1990": 0.766, + "1991": 0.769, + "1992": 0.773, + "1993": 0.772, + "1994": 0.771, + "1995": 0.775, + "1996": 0.774, + "1997": 0.773, + "1998": 0.772, + "1999": 0.775, + "2000": 0.781, + "2001": 0.794, + "2002": 0.799, + "2003": 0.806, + "2004": 0.807, + "2005": 0.811, + "2006": 0.82, + "2007": 0.826, + "2008": 0.823, + "2009": 0.828, + "2010": 0.829, + "2011": 0.82, + "2012": 0.719, + "2013": 0.674, + "2014": 0.664, + "2015": 0.694, + "2016": 0.707, + "2017": 0.746, + "2018": 0.771, + "2019": 0.797, + "2020": 0.802, + "2021": 0.801 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr103", + "Region": "Homs", + "1990": 0.773, + "1991": 0.776, + "1992": 0.78, + "1993": 0.779, + "1994": 0.778, + "1995": 0.782, + "1996": 0.781, + "1997": 0.78, + "1998": 0.779, + "1999": 0.782, + "2000": 0.788, + "2001": 0.801, + "2002": 0.806, + "2003": 0.813, + "2004": 0.814, + "2005": 0.819, + "2006": 0.828, + "2007": 0.833, + "2008": 0.831, + "2009": 0.835, + "2010": 0.836, + "2011": 0.827, + "2012": 0.726, + "2013": 0.68, + "2014": 0.67, + "2015": 0.7, + "2016": 0.714, + "2017": 0.752, + "2018": 0.778, + "2019": 0.804, + "2020": 0.809, + "2021": 0.808 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr102", + "Region": "Rural Damascus", + "1990": 0.763, + "1991": 0.767, + "1992": 0.77, + "1993": 0.769, + "1994": 0.768, + "1995": 0.773, + "1996": 0.772, + "1997": 0.771, + "1998": 0.769, + "1999": 0.773, + "2000": 0.778, + "2001": 0.791, + "2002": 0.796, + "2003": 0.803, + "2004": 0.804, + "2005": 0.809, + "2006": 0.818, + "2007": 0.823, + "2008": 0.821, + "2009": 0.825, + "2010": 0.826, + "2011": 0.817, + "2012": 0.717, + "2013": 0.671, + "2014": 0.661, + "2015": 0.691, + "2016": 0.705, + "2017": 0.743, + "2018": 0.768, + "2019": 0.794, + "2020": 0.799, + "2021": 0.798 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr105", + "Region": "Tartous", + "1990": 0.788, + "1991": 0.791, + "1992": 0.795, + "1993": 0.793, + "1994": 0.793, + "1995": 0.797, + "1996": 0.796, + "1997": 0.795, + "1998": 0.794, + "1999": 0.797, + "2000": 0.802, + "2001": 0.816, + "2002": 0.821, + "2003": 0.828, + "2004": 0.829, + "2005": 0.834, + "2006": 0.843, + "2007": 0.849, + "2008": 0.846, + "2009": 0.851, + "2010": 0.851, + "2011": 0.842, + "2012": 0.74, + "2013": 0.694, + "2014": 0.683, + "2015": 0.714, + "2016": 0.728, + "2017": 0.767, + "2018": 0.793, + "2019": 0.819, + "2020": 0.824, + "2021": 0.823 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "National", + "GDLCODE": "TJKt", + "Region": "Total", + "1990": 0.644, + "1991": 0.637, + "1992": 0.54, + "1993": 0.506, + "1994": 0.577, + "1995": 0.605, + "1996": 0.602, + "1997": 0.621, + "1998": 0.639, + "1999": 0.656, + "2000": 0.666, + "2001": 0.678, + "2002": 0.69, + "2003": 0.701, + "2004": 0.708, + "2005": 0.716, + "2006": 0.723, + "2007": 0.726, + "2008": 0.734, + "2009": 0.739, + "2010": 0.734, + "2011": 0.741, + "2012": 0.746, + "2013": 0.752, + "2014": 0.755, + "2015": 0.759, + "2016": 0.762, + "2017": 0.768, + "2018": 0.775, + "2019": 0.783, + "2020": 0.738, + "2021": 0.794 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr104", + "Region": "DRS", + "1990": 0.639, + "1991": 0.631, + "1992": 0.535, + "1993": 0.501, + "1994": 0.571, + "1995": 0.6, + "1996": 0.597, + "1997": 0.615, + "1998": 0.633, + "1999": 0.65, + "2000": 0.66, + "2001": 0.672, + "2002": 0.684, + "2003": 0.695, + "2004": 0.702, + "2005": 0.71, + "2006": 0.719, + "2007": 0.724, + "2008": 0.733, + "2009": 0.74, + "2010": 0.737, + "2011": 0.745, + "2012": 0.752, + "2013": 0.759, + "2014": 0.762, + "2015": 0.767, + "2016": 0.771, + "2017": 0.777, + "2018": 0.784, + "2019": 0.792, + "2020": 0.748, + "2021": 0.804 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr101", + "Region": "Duchanbe", + "1990": 0.71, + "1991": 0.702, + "1992": 0.598, + "1993": 0.562, + "1994": 0.638, + "1995": 0.669, + "1996": 0.665, + "1997": 0.685, + "1998": 0.704, + "1999": 0.723, + "2000": 0.733, + "2001": 0.746, + "2002": 0.759, + "2003": 0.771, + "2004": 0.779, + "2005": 0.787, + "2006": 0.791, + "2007": 0.791, + "2008": 0.795, + "2009": 0.798, + "2010": 0.789, + "2011": 0.793, + "2012": 0.795, + "2013": 0.803, + "2014": 0.808, + "2015": 0.814, + "2016": 0.82, + "2017": 0.827, + "2018": 0.834, + "2019": 0.843, + "2020": 0.796, + "2021": 0.854 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr105", + "Region": "GBAO", + "1990": 0.655, + "1991": 0.648, + "1992": 0.55, + "1993": 0.515, + "1994": 0.587, + "1995": 0.616, + "1996": 0.613, + "1997": 0.632, + "1998": 0.65, + "1999": 0.667, + "2000": 0.677, + "2001": 0.689, + "2002": 0.702, + "2003": 0.713, + "2004": 0.72, + "2005": 0.728, + "2006": 0.738, + "2007": 0.744, + "2008": 0.753, + "2009": 0.761, + "2010": 0.759, + "2011": 0.768, + "2012": 0.775, + "2013": 0.777, + "2014": 0.776, + "2015": 0.776, + "2016": 0.776, + "2017": 0.777, + "2018": 0.784, + "2019": 0.792, + "2020": 0.748, + "2021": 0.804 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr102", + "Region": "Khatlon", + "1990": 0.619, + "1991": 0.611, + "1992": 0.517, + "1993": 0.484, + "1994": 0.553, + "1995": 0.581, + "1996": 0.578, + "1997": 0.596, + "1998": 0.613, + "1999": 0.63, + "2000": 0.639, + "2001": 0.651, + "2002": 0.663, + "2003": 0.674, + "2004": 0.681, + "2005": 0.688, + "2006": 0.695, + "2007": 0.698, + "2008": 0.705, + "2009": 0.71, + "2010": 0.706, + "2011": 0.712, + "2012": 0.716, + "2013": 0.725, + "2014": 0.73, + "2015": 0.737, + "2016": 0.743, + "2017": 0.751, + "2018": 0.757, + "2019": 0.765, + "2020": 0.722, + "2021": 0.776 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr103", + "Region": "Sughd (formerly Leninabad)", + "1990": 0.664, + "1991": 0.657, + "1992": 0.558, + "1993": 0.523, + "1994": 0.595, + "1995": 0.624, + "1996": 0.621, + "1997": 0.64, + "1998": 0.659, + "1999": 0.676, + "2000": 0.686, + "2001": 0.699, + "2002": 0.711, + "2003": 0.722, + "2004": 0.73, + "2005": 0.737, + "2006": 0.745, + "2007": 0.748, + "2008": 0.755, + "2009": 0.761, + "2010": 0.756, + "2011": 0.762, + "2012": 0.767, + "2013": 0.769, + "2014": 0.768, + "2015": 0.768, + "2016": 0.767, + "2017": 0.769, + "2018": 0.776, + "2019": 0.784, + "2020": 0.739, + "2021": 0.795 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "National", + "GDLCODE": "TZAt", + "Region": "Total", + "1990": 0.484, + "1991": 0.482, + "1992": 0.477, + "1993": 0.475, + "1994": 0.474, + "1995": 0.474, + "1996": 0.473, + "1997": 0.471, + "1998": 0.476, + "1999": 0.488, + "2000": 0.498, + "2001": 0.51, + "2002": 0.521, + "2003": 0.537, + "2004": 0.548, + "2005": 0.558, + "2006": 0.568, + "2007": 0.577, + "2008": 0.586, + "2009": 0.598, + "2010": 0.617, + "2011": 0.632, + "2012": 0.647, + "2013": 0.661, + "2014": 0.675, + "2015": 0.687, + "2016": 0.698, + "2017": 0.708, + "2018": 0.716, + "2019": 0.723, + "2020": 0.714, + "2021": 0.711 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr202", + "Region": " Arusha, Manyara", + "1990": 0.584, + "1991": 0.581, + "1992": 0.575, + "1993": 0.581, + "1994": 0.587, + "1995": 0.594, + "1996": 0.601, + "1997": 0.579, + "1998": 0.564, + "1999": 0.558, + "2000": 0.571, + "2001": 0.588, + "2002": 0.602, + "2003": 0.623, + "2004": 0.638, + "2005": 0.651, + "2006": 0.664, + "2007": 0.676, + "2008": 0.687, + "2009": 0.703, + "2010": 0.725, + "2011": 0.734, + "2012": 0.744, + "2013": 0.752, + "2014": 0.76, + "2015": 0.766, + "2016": 0.778, + "2017": 0.788, + "2018": 0.797, + "2019": 0.805, + "2020": 0.795, + "2021": 0.792 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr207", + "Region": " Dar Es Salam", + "1990": 0.46, + "1991": 0.457, + "1992": 0.452, + "1993": 0.469, + "1994": 0.487, + "1995": 0.505, + "1996": 0.522, + "1997": 0.514, + "1998": 0.512, + "1999": 0.519, + "2000": 0.529, + "2001": 0.543, + "2002": 0.556, + "2003": 0.573, + "2004": 0.586, + "2005": 0.587, + "2006": 0.586, + "2007": 0.586, + "2008": 0.585, + "2009": 0.587, + "2010": 0.596, + "2011": 0.608, + "2012": 0.62, + "2013": 0.632, + "2014": 0.643, + "2015": 0.653, + "2016": 0.663, + "2017": 0.673, + "2018": 0.681, + "2019": 0.687, + "2020": 0.679, + "2021": 0.676 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr201", + "Region": " Dodoma", + "1990": 0.415, + "1991": 0.413, + "1992": 0.408, + "1993": 0.41, + "1994": 0.413, + "1995": 0.416, + "1996": 0.419, + "1997": 0.412, + "1998": 0.411, + "1999": 0.417, + "2000": 0.44, + "2001": 0.466, + "2002": 0.491, + "2003": 0.52, + "2004": 0.545, + "2005": 0.556, + "2006": 0.566, + "2007": 0.576, + "2008": 0.585, + "2009": 0.597, + "2010": 0.616, + "2011": 0.623, + "2012": 0.63, + "2013": 0.636, + "2014": 0.641, + "2015": 0.645, + "2016": 0.655, + "2017": 0.664, + "2018": 0.672, + "2019": 0.679, + "2020": 0.671, + "2021": 0.667 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr211", + "Region": " Iringa, Njombe", + "1990": 0.525, + "1991": 0.522, + "1992": 0.517, + "1993": 0.502, + "1994": 0.489, + "1995": 0.476, + "1996": 0.463, + "1997": 0.472, + "1998": 0.487, + "1999": 0.51, + "2000": 0.514, + "2001": 0.521, + "2002": 0.526, + "2003": 0.536, + "2004": 0.541, + "2005": 0.544, + "2006": 0.547, + "2007": 0.549, + "2008": 0.551, + "2009": 0.557, + "2010": 0.568, + "2011": 0.598, + "2012": 0.629, + "2013": 0.66, + "2014": 0.69, + "2015": 0.719, + "2016": 0.73, + "2017": 0.74, + "2018": 0.748, + "2019": 0.756, + "2020": 0.746, + "2021": 0.743 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr218", + "Region": " Kagera", + "1990": 0.456, + "1991": 0.454, + "1992": 0.449, + "1993": 0.444, + "1994": 0.439, + "1995": 0.436, + "1996": 0.432, + "1997": 0.427, + "1998": 0.429, + "1999": 0.438, + "2000": 0.453, + "2001": 0.47, + "2002": 0.486, + "2003": 0.507, + "2004": 0.523, + "2005": 0.538, + "2006": 0.551, + "2007": 0.564, + "2008": 0.577, + "2009": 0.593, + "2010": 0.616, + "2011": 0.626, + "2012": 0.637, + "2013": 0.648, + "2014": 0.658, + "2015": 0.666, + "2016": 0.677, + "2017": 0.686, + "2018": 0.694, + "2019": 0.701, + "2020": 0.692, + "2021": 0.689 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr216", + "Region": " Kigoma", + "1990": 0.449, + "1991": 0.446, + "1992": 0.441, + "1993": 0.453, + "1994": 0.464, + "1995": 0.477, + "1996": 0.489, + "1997": 0.478, + "1998": 0.473, + "1999": 0.475, + "2000": 0.482, + "2001": 0.491, + "2002": 0.499, + "2003": 0.512, + "2004": 0.52, + "2005": 0.531, + "2006": 0.541, + "2007": 0.551, + "2008": 0.56, + "2009": 0.573, + "2010": 0.592, + "2011": 0.617, + "2012": 0.642, + "2013": 0.667, + "2014": 0.692, + "2015": 0.715, + "2016": 0.727, + "2017": 0.736, + "2018": 0.745, + "2019": 0.752, + "2020": 0.743, + "2021": 0.739 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr203", + "Region": " Kilimanjaro", + "1990": 0.656, + "1991": 0.653, + "1992": 0.647, + "1993": 0.636, + "1994": 0.626, + "1995": 0.617, + "1996": 0.607, + "1997": 0.621, + "1998": 0.642, + "1999": 0.674, + "2000": 0.67, + "2001": 0.669, + "2002": 0.666, + "2003": 0.669, + "2004": 0.666, + "2005": 0.68, + "2006": 0.692, + "2007": 0.704, + "2008": 0.715, + "2009": 0.731, + "2010": 0.754, + "2011": 0.755, + "2012": 0.756, + "2013": 0.757, + "2014": 0.757, + "2015": 0.754, + "2016": 0.766, + "2017": 0.776, + "2018": 0.785, + "2019": 0.793, + "2020": 0.783, + "2021": 0.78 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr208", + "Region": " Lindi", + "1990": 0.473, + "1991": 0.47, + "1992": 0.465, + "1993": 0.451, + "1994": 0.438, + "1995": 0.426, + "1996": 0.413, + "1997": 0.412, + "1998": 0.417, + "1999": 0.43, + "2000": 0.443, + "2001": 0.458, + "2002": 0.472, + "2003": 0.491, + "2004": 0.506, + "2005": 0.511, + "2006": 0.514, + "2007": 0.518, + "2008": 0.521, + "2009": 0.528, + "2010": 0.54, + "2011": 0.569, + "2012": 0.599, + "2013": 0.628, + "2014": 0.657, + "2015": 0.685, + "2016": 0.696, + "2017": 0.705, + "2018": 0.714, + "2019": 0.721, + "2020": 0.712, + "2021": 0.709 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr220", + "Region": " Mara", + "1990": 0.444, + "1991": 0.441, + "1992": 0.437, + "1993": 0.438, + "1994": 0.44, + "1995": 0.442, + "1996": 0.444, + "1997": 0.456, + "1998": 0.475, + "1999": 0.503, + "2000": 0.498, + "2001": 0.497, + "2002": 0.494, + "2003": 0.495, + "2004": 0.492, + "2005": 0.495, + "2006": 0.497, + "2007": 0.499, + "2008": 0.501, + "2009": 0.505, + "2010": 0.516, + "2011": 0.543, + "2012": 0.572, + "2013": 0.6, + "2014": 0.627, + "2015": 0.653, + "2016": 0.664, + "2017": 0.673, + "2018": 0.681, + "2019": 0.688, + "2020": 0.679, + "2021": 0.676 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr212", + "Region": " Mbeya", + "1990": 0.515, + "1991": 0.512, + "1992": 0.507, + "1993": 0.49, + "1994": 0.474, + "1995": 0.459, + "1996": 0.443, + "1997": 0.463, + "1998": 0.488, + "1999": 0.523, + "2000": 0.524, + "2001": 0.528, + "2002": 0.53, + "2003": 0.538, + "2004": 0.54, + "2005": 0.55, + "2006": 0.559, + "2007": 0.569, + "2008": 0.577, + "2009": 0.589, + "2010": 0.608, + "2011": 0.617, + "2012": 0.627, + "2013": 0.636, + "2014": 0.644, + "2015": 0.651, + "2016": 0.662, + "2017": 0.671, + "2018": 0.679, + "2019": 0.686, + "2020": 0.677, + "2021": 0.674 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr205", + "Region": " Morogoro", + "1990": 0.452, + "1991": 0.449, + "1992": 0.444, + "1993": 0.435, + "1994": 0.427, + "1995": 0.419, + "1996": 0.411, + "1997": 0.414, + "1998": 0.423, + "1999": 0.44, + "2000": 0.458, + "2001": 0.478, + "2002": 0.496, + "2003": 0.52, + "2004": 0.538, + "2005": 0.551, + "2006": 0.563, + "2007": 0.575, + "2008": 0.585, + "2009": 0.6, + "2010": 0.621, + "2011": 0.64, + "2012": 0.659, + "2013": 0.678, + "2014": 0.697, + "2015": 0.714, + "2016": 0.725, + "2017": 0.735, + "2018": 0.743, + "2019": 0.751, + "2020": 0.741, + "2021": 0.738 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr209", + "Region": " Mtwara", + "1990": 0.443, + "1991": 0.441, + "1992": 0.436, + "1993": 0.431, + "1994": 0.428, + "1995": 0.425, + "1996": 0.421, + "1997": 0.421, + "1998": 0.426, + "1999": 0.44, + "2000": 0.46, + "2001": 0.483, + "2002": 0.505, + "2003": 0.532, + "2004": 0.554, + "2005": 0.561, + "2006": 0.566, + "2007": 0.571, + "2008": 0.575, + "2009": 0.584, + "2010": 0.598, + "2011": 0.616, + "2012": 0.634, + "2013": 0.652, + "2014": 0.669, + "2015": 0.684, + "2016": 0.696, + "2017": 0.705, + "2018": 0.713, + "2019": 0.72, + "2020": 0.711, + "2021": 0.708 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr219", + "Region": " Mwanza, Geita", + "1990": 0.484, + "1991": 0.481, + "1992": 0.477, + "1993": 0.479, + "1994": 0.482, + "1995": 0.487, + "1996": 0.49, + "1997": 0.48, + "1998": 0.477, + "1999": 0.482, + "2000": 0.495, + "2001": 0.511, + "2002": 0.526, + "2003": 0.546, + "2004": 0.561, + "2005": 0.568, + "2006": 0.573, + "2007": 0.579, + "2008": 0.584, + "2009": 0.592, + "2010": 0.607, + "2011": 0.621, + "2012": 0.635, + "2013": 0.648, + "2014": 0.662, + "2015": 0.673, + "2016": 0.684, + "2017": 0.693, + "2018": 0.701, + "2019": 0.708, + "2020": 0.699, + "2021": 0.696 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr224", + "Region": " Pemba North", + "1990": 0.592, + "1991": 0.589, + "1992": 0.584, + "1993": 0.577, + "1994": 0.572, + "1995": 0.568, + "1996": 0.564, + "1997": 0.565, + "1998": 0.574, + "1999": 0.592, + "2000": 0.584, + "2001": 0.579, + "2002": 0.572, + "2003": 0.571, + "2004": 0.564, + "2005": 0.571, + "2006": 0.577, + "2007": 0.583, + "2008": 0.588, + "2009": 0.597, + "2010": 0.612, + "2011": 0.637, + "2012": 0.663, + "2013": 0.688, + "2014": 0.714, + "2015": 0.737, + "2016": 0.749, + "2017": 0.759, + "2018": 0.767, + "2019": 0.775, + "2020": 0.765, + "2021": 0.762 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr225", + "Region": " Pemba South", + "1990": 0.521, + "1991": 0.518, + "1992": 0.513, + "1993": 0.512, + "1994": 0.512, + "1995": 0.513, + "1996": 0.514, + "1997": 0.499, + "1998": 0.491, + "1999": 0.491, + "2000": 0.508, + "2001": 0.527, + "2002": 0.545, + "2003": 0.568, + "2004": 0.586, + "2005": 0.597, + "2006": 0.607, + "2007": 0.617, + "2008": 0.626, + "2009": 0.639, + "2010": 0.658, + "2011": 0.677, + "2012": 0.696, + "2013": 0.714, + "2014": 0.733, + "2015": 0.749, + "2016": 0.761, + "2017": 0.771, + "2018": 0.78, + "2019": 0.787, + "2020": 0.778, + "2021": 0.774 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr206", + "Region": " Pwani", + "1990": 0.461, + "1991": 0.458, + "1992": 0.453, + "1993": 0.455, + "1994": 0.457, + "1995": 0.46, + "1996": 0.462, + "1997": 0.464, + "1998": 0.472, + "1999": 0.488, + "2000": 0.495, + "2001": 0.504, + "2002": 0.512, + "2003": 0.524, + "2004": 0.532, + "2005": 0.548, + "2006": 0.562, + "2007": 0.576, + "2008": 0.59, + "2009": 0.607, + "2010": 0.63, + "2011": 0.637, + "2012": 0.644, + "2013": 0.651, + "2014": 0.657, + "2015": 0.661, + "2016": 0.672, + "2017": 0.681, + "2018": 0.689, + "2019": 0.696, + "2020": 0.687, + "2021": 0.684 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr215", + "Region": " Rukwa, Katavi", + "1990": 0.513, + "1991": 0.511, + "1992": 0.505, + "1993": 0.484, + "1994": 0.464, + "1995": 0.444, + "1996": 0.425, + "1997": 0.422, + "1998": 0.425, + "1999": 0.436, + "2000": 0.456, + "2001": 0.478, + "2002": 0.499, + "2003": 0.525, + "2004": 0.546, + "2005": 0.557, + "2006": 0.568, + "2007": 0.578, + "2008": 0.587, + "2009": 0.6, + "2010": 0.62, + "2011": 0.626, + "2012": 0.633, + "2013": 0.639, + "2014": 0.645, + "2015": 0.648, + "2016": 0.659, + "2017": 0.668, + "2018": 0.676, + "2019": 0.683, + "2020": 0.674, + "2021": 0.671 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr210", + "Region": " Ruvuma", + "1990": 0.503, + "1991": 0.501, + "1992": 0.496, + "1993": 0.499, + "1994": 0.504, + "1995": 0.509, + "1996": 0.514, + "1997": 0.499, + "1998": 0.49, + "1999": 0.489, + "2000": 0.488, + "2001": 0.489, + "2002": 0.489, + "2003": 0.494, + "2004": 0.493, + "2005": 0.525, + "2006": 0.555, + "2007": 0.585, + "2008": 0.614, + "2009": 0.647, + "2010": 0.687, + "2011": 0.693, + "2012": 0.699, + "2013": 0.705, + "2014": 0.71, + "2015": 0.713, + "2016": 0.724, + "2017": 0.734, + "2018": 0.742, + "2019": 0.75, + "2020": 0.74, + "2021": 0.737 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr217", + "Region": " Shinyanga, Simiyu", + "1990": 0.47, + "1991": 0.468, + "1992": 0.463, + "1993": 0.465, + "1994": 0.467, + "1995": 0.471, + "1996": 0.474, + "1997": 0.478, + "1998": 0.488, + "1999": 0.507, + "2000": 0.513, + "2001": 0.522, + "2002": 0.53, + "2003": 0.542, + "2004": 0.55, + "2005": 0.557, + "2006": 0.563, + "2007": 0.568, + "2008": 0.573, + "2009": 0.582, + "2010": 0.597, + "2011": 0.611, + "2012": 0.625, + "2013": 0.638, + "2014": 0.652, + "2015": 0.663, + "2016": 0.674, + "2017": 0.683, + "2018": 0.691, + "2019": 0.698, + "2020": 0.689, + "2021": 0.686 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr213", + "Region": " Singida", + "1990": 0.548, + "1991": 0.545, + "1992": 0.539, + "1993": 0.538, + "1994": 0.538, + "1995": 0.539, + "1996": 0.539, + "1997": 0.514, + "1998": 0.495, + "1999": 0.484, + "2000": 0.497, + "2001": 0.512, + "2002": 0.526, + "2003": 0.545, + "2004": 0.558, + "2005": 0.576, + "2006": 0.591, + "2007": 0.607, + "2008": 0.622, + "2009": 0.641, + "2010": 0.666, + "2011": 0.684, + "2012": 0.702, + "2013": 0.72, + "2014": 0.737, + "2015": 0.753, + "2016": 0.765, + "2017": 0.775, + "2018": 0.783, + "2019": 0.791, + "2020": 0.781, + "2021": 0.778 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr214", + "Region": " Tabora", + "1990": 0.495, + "1991": 0.492, + "1992": 0.487, + "1993": 0.492, + "1994": 0.497, + "1995": 0.504, + "1996": 0.51, + "1997": 0.487, + "1998": 0.47, + "1999": 0.461, + "2000": 0.474, + "2001": 0.49, + "2002": 0.504, + "2003": 0.523, + "2004": 0.538, + "2005": 0.555, + "2006": 0.57, + "2007": 0.586, + "2008": 0.6, + "2009": 0.619, + "2010": 0.643, + "2011": 0.656, + "2012": 0.668, + "2013": 0.68, + "2014": 0.691, + "2015": 0.701, + "2016": 0.712, + "2017": 0.722, + "2018": 0.73, + "2019": 0.737, + "2020": 0.728, + "2021": 0.725 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr204", + "Region": " Tanga", + "1990": 0.497, + "1991": 0.494, + "1992": 0.489, + "1993": 0.472, + "1994": 0.456, + "1995": 0.441, + "1996": 0.426, + "1997": 0.454, + "1998": 0.488, + "1999": 0.533, + "2000": 0.524, + "2001": 0.518, + "2002": 0.511, + "2003": 0.509, + "2004": 0.501, + "2005": 0.52, + "2006": 0.537, + "2007": 0.554, + "2008": 0.57, + "2009": 0.59, + "2010": 0.617, + "2011": 0.637, + "2012": 0.659, + "2013": 0.68, + "2014": 0.7, + "2015": 0.719, + "2016": 0.73, + "2017": 0.74, + "2018": 0.749, + "2019": 0.756, + "2020": 0.747, + "2021": 0.743 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr221", + "Region": " Zanzibar North", + "1990": 0.492, + "1991": 0.489, + "1992": 0.484, + "1993": 0.489, + "1994": 0.494, + "1995": 0.501, + "1996": 0.507, + "1997": 0.506, + "1998": 0.512, + "1999": 0.527, + "2000": 0.527, + "2001": 0.53, + "2002": 0.532, + "2003": 0.538, + "2004": 0.539, + "2005": 0.563, + "2006": 0.586, + "2007": 0.608, + "2008": 0.63, + "2009": 0.655, + "2010": 0.688, + "2011": 0.696, + "2012": 0.704, + "2013": 0.712, + "2014": 0.719, + "2015": 0.724, + "2016": 0.736, + "2017": 0.746, + "2018": 0.755, + "2019": 0.762, + "2020": 0.753, + "2021": 0.749 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr222", + "Region": " Zanzibar South", + "1990": 0.532, + "1991": 0.529, + "1992": 0.524, + "1993": 0.521, + "1994": 0.52, + "1995": 0.52, + "1996": 0.519, + "1997": 0.505, + "1998": 0.498, + "1999": 0.498, + "2000": 0.514, + "2001": 0.532, + "2002": 0.549, + "2003": 0.572, + "2004": 0.589, + "2005": 0.602, + "2006": 0.613, + "2007": 0.625, + "2008": 0.636, + "2009": 0.651, + "2010": 0.672, + "2011": 0.689, + "2012": 0.707, + "2013": 0.724, + "2014": 0.74, + "2015": 0.754, + "2016": 0.767, + "2017": 0.777, + "2018": 0.785, + "2019": 0.793, + "2020": 0.783, + "2021": 0.78 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr223", + "Region": " Zanzibar West", + "1990": 0.508, + "1991": 0.505, + "1992": 0.5, + "1993": 0.509, + "1994": 0.519, + "1995": 0.53, + "1996": 0.54, + "1997": 0.572, + "1998": 0.612, + "1999": 0.664, + "2000": 0.663, + "2001": 0.667, + "2002": 0.668, + "2003": 0.675, + "2004": 0.677, + "2005": 0.675, + "2006": 0.671, + "2007": 0.668, + "2008": 0.663, + "2009": 0.663, + "2010": 0.67, + "2011": 0.684, + "2012": 0.699, + "2013": 0.713, + "2014": 0.726, + "2015": 0.738, + "2016": 0.75, + "2017": 0.76, + "2018": 0.768, + "2019": 0.776, + "2020": 0.766, + "2021": 0.763 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "National", + "GDLCODE": "THAt", + "Region": "Total", + "1990": 0.776, + "1991": 0.78, + "1992": 0.783, + "1993": 0.786, + "1994": 0.788, + "1995": 0.784, + "1996": 0.795, + "1997": 0.808, + "1998": 0.813, + "1999": 0.808, + "2000": 0.805, + "2001": 0.809, + "2002": 0.814, + "2003": 0.818, + "2004": 0.817, + "2005": 0.828, + "2006": 0.845, + "2007": 0.849, + "2008": 0.854, + "2009": 0.859, + "2010": 0.864, + "2011": 0.868, + "2012": 0.873, + "2013": 0.878, + "2014": 0.883, + "2015": 0.888, + "2016": 0.893, + "2017": 0.898, + "2018": 0.902, + "2019": 0.907, + "2020": 0.912, + "2021": 0.903 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr101", + "Region": "Bangkok", + "1990": 0.772, + "1991": 0.776, + "1992": 0.778, + "1993": 0.781, + "1994": 0.784, + "1995": 0.779, + "1996": 0.79, + "1997": 0.803, + "1998": 0.809, + "1999": 0.804, + "2000": 0.8, + "2001": 0.805, + "2002": 0.81, + "2003": 0.813, + "2004": 0.812, + "2005": 0.823, + "2006": 0.841, + "2007": 0.844, + "2008": 0.848, + "2009": 0.852, + "2010": 0.856, + "2011": 0.86, + "2012": 0.864, + "2013": 0.871, + "2014": 0.879, + "2015": 0.886, + "2016": 0.893, + "2017": 0.901, + "2018": 0.904, + "2019": 0.907, + "2020": 0.912, + "2021": 0.903 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr102", + "Region": "Central", + "1990": 0.786, + "1991": 0.79, + "1992": 0.792, + "1993": 0.795, + "1994": 0.798, + "1995": 0.793, + "1996": 0.804, + "1997": 0.818, + "1998": 0.823, + "1999": 0.818, + "2000": 0.815, + "2001": 0.819, + "2002": 0.824, + "2003": 0.828, + "2004": 0.826, + "2005": 0.838, + "2006": 0.855, + "2007": 0.858, + "2008": 0.861, + "2009": 0.866, + "2010": 0.869, + "2011": 0.872, + "2012": 0.876, + "2013": 0.882, + "2014": 0.887, + "2015": 0.892, + "2016": 0.898, + "2017": 0.903, + "2018": 0.899, + "2019": 0.896, + "2020": 0.901, + "2021": 0.892 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr103", + "Region": "North", + "1990": 0.767, + "1991": 0.771, + "1992": 0.774, + "1993": 0.777, + "1994": 0.779, + "1995": 0.775, + "1996": 0.786, + "1997": 0.798, + "1998": 0.804, + "1999": 0.799, + "2000": 0.796, + "2001": 0.8, + "2002": 0.805, + "2003": 0.808, + "2004": 0.807, + "2005": 0.819, + "2006": 0.836, + "2007": 0.841, + "2008": 0.848, + "2009": 0.855, + "2010": 0.861, + "2011": 0.867, + "2012": 0.875, + "2013": 0.878, + "2014": 0.883, + "2015": 0.886, + "2016": 0.89, + "2017": 0.894, + "2018": 0.898, + "2019": 0.903, + "2020": 0.907, + "2021": 0.899 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr104", + "Region": "Northeast", + "1990": 0.778, + "1991": 0.782, + "1992": 0.784, + "1993": 0.787, + "1994": 0.79, + "1995": 0.785, + "1996": 0.796, + "1997": 0.809, + "1998": 0.815, + "1999": 0.81, + "2000": 0.806, + "2001": 0.811, + "2002": 0.816, + "2003": 0.819, + "2004": 0.818, + "2005": 0.83, + "2006": 0.847, + "2007": 0.849, + "2008": 0.852, + "2009": 0.856, + "2010": 0.859, + "2011": 0.862, + "2012": 0.866, + "2013": 0.873, + "2014": 0.879, + "2015": 0.885, + "2016": 0.892, + "2017": 0.899, + "2018": 0.902, + "2019": 0.906, + "2020": 0.91, + "2021": 0.902 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr105", + "Region": "South", + "1990": 0.77, + "1991": 0.774, + "1992": 0.776, + "1993": 0.779, + "1994": 0.782, + "1995": 0.777, + "1996": 0.788, + "1997": 0.801, + "1998": 0.807, + "1999": 0.802, + "2000": 0.798, + "2001": 0.803, + "2002": 0.808, + "2003": 0.811, + "2004": 0.81, + "2005": 0.821, + "2006": 0.838, + "2007": 0.844, + "2008": 0.851, + "2009": 0.858, + "2010": 0.865, + "2011": 0.871, + "2012": 0.878, + "2013": 0.879, + "2014": 0.879, + "2015": 0.88, + "2016": 0.88, + "2017": 0.881, + "2018": 0.896, + "2019": 0.912, + "2020": 0.916, + "2021": 0.908 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "National", + "GDLCODE": "TLSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.618, + "2003": 0.629, + "2004": 0.64, + "2005": 0.651, + "2006": 0.663, + "2007": 0.673, + "2008": 0.682, + "2009": 0.69, + "2010": 0.697, + "2011": 0.703, + "2012": 0.709, + "2013": 0.714, + "2014": 0.72, + "2015": 0.725, + "2016": 0.73, + "2017": 0.735, + "2018": 0.739, + "2019": 0.743, + "2020": 0.746, + "2021": 0.734 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr101", + "Region": "Aileu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.626, + "2003": 0.638, + "2004": 0.649, + "2005": 0.66, + "2006": 0.672, + "2007": 0.682, + "2008": 0.691, + "2009": 0.699, + "2010": 0.707, + "2011": 0.714, + "2012": 0.721, + "2013": 0.728, + "2014": 0.734, + "2015": 0.741, + "2016": 0.747, + "2017": 0.751, + "2018": 0.755, + "2019": 0.759, + "2020": 0.763, + "2021": 0.751 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr102", + "Region": "Ainaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.588, + "2003": 0.599, + "2004": 0.61, + "2005": 0.62, + "2006": 0.631, + "2007": 0.641, + "2008": 0.65, + "2009": 0.658, + "2010": 0.664, + "2011": 0.67, + "2012": 0.675, + "2013": 0.68, + "2014": 0.685, + "2015": 0.69, + "2016": 0.694, + "2017": 0.699, + "2018": 0.703, + "2019": 0.706, + "2020": 0.709, + "2021": 0.698 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr103", + "Region": "Baucau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.698, + "2003": 0.71, + "2004": 0.723, + "2005": 0.735, + "2006": 0.747, + "2007": 0.758, + "2008": 0.768, + "2009": 0.777, + "2010": 0.77, + "2011": 0.763, + "2012": 0.755, + "2013": 0.748, + "2014": 0.74, + "2015": 0.733, + "2016": 0.725, + "2017": 0.729, + "2018": 0.734, + "2019": 0.737, + "2020": 0.741, + "2021": 0.729 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr104", + "Region": "Bobonaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.61, + "2003": 0.621, + "2004": 0.632, + "2005": 0.643, + "2006": 0.654, + "2007": 0.664, + "2008": 0.673, + "2009": 0.681, + "2010": 0.691, + "2011": 0.7, + "2012": 0.709, + "2013": 0.717, + "2014": 0.725, + "2015": 0.733, + "2016": 0.741, + "2017": 0.745, + "2018": 0.75, + "2019": 0.753, + "2020": 0.757, + "2021": 0.745 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr105", + "Region": "Cova Lima", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.592, + "2003": 0.602, + "2004": 0.614, + "2005": 0.624, + "2006": 0.635, + "2007": 0.645, + "2008": 0.654, + "2009": 0.662, + "2010": 0.677, + "2011": 0.691, + "2012": 0.705, + "2013": 0.718, + "2014": 0.731, + "2015": 0.744, + "2016": 0.756, + "2017": 0.761, + "2018": 0.765, + "2019": 0.769, + "2020": 0.773, + "2021": 0.761 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr106", + "Region": "Dili", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.658, + "2003": 0.669, + "2004": 0.681, + "2005": 0.693, + "2006": 0.705, + "2007": 0.715, + "2008": 0.725, + "2009": 0.733, + "2010": 0.735, + "2011": 0.736, + "2012": 0.737, + "2013": 0.738, + "2014": 0.738, + "2015": 0.739, + "2016": 0.739, + "2017": 0.743, + "2018": 0.748, + "2019": 0.752, + "2020": 0.755, + "2021": 0.743 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr107", + "Region": "Ermera", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.58, + "2003": 0.59, + "2004": 0.602, + "2005": 0.612, + "2006": 0.623, + "2007": 0.632, + "2008": 0.641, + "2009": 0.649, + "2010": 0.665, + "2011": 0.679, + "2012": 0.693, + "2013": 0.707, + "2014": 0.72, + "2015": 0.734, + "2016": 0.746, + "2017": 0.751, + "2018": 0.755, + "2019": 0.759, + "2020": 0.762, + "2021": 0.751 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr109", + "Region": "Lautem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.585, + "2003": 0.596, + "2004": 0.607, + "2005": 0.618, + "2006": 0.629, + "2007": 0.638, + "2008": 0.647, + "2009": 0.655, + "2010": 0.67, + "2011": 0.684, + "2012": 0.697, + "2013": 0.71, + "2014": 0.723, + "2015": 0.736, + "2016": 0.748, + "2017": 0.752, + "2018": 0.757, + "2019": 0.761, + "2020": 0.764, + "2021": 0.752 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr108", + "Region": "Liquica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.581, + "2003": 0.592, + "2004": 0.603, + "2005": 0.613, + "2006": 0.624, + "2007": 0.634, + "2008": 0.643, + "2009": 0.651, + "2010": 0.671, + "2011": 0.691, + "2012": 0.71, + "2013": 0.728, + "2014": 0.746, + "2015": 0.764, + "2016": 0.781, + "2017": 0.786, + "2018": 0.79, + "2019": 0.794, + "2020": 0.798, + "2021": 0.786 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr111", + "Region": "Manatuto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.641, + "2003": 0.652, + "2004": 0.664, + "2005": 0.675, + "2006": 0.687, + "2007": 0.697, + "2008": 0.707, + "2009": 0.715, + "2010": 0.718, + "2011": 0.721, + "2012": 0.723, + "2013": 0.725, + "2014": 0.727, + "2015": 0.729, + "2016": 0.731, + "2017": 0.735, + "2018": 0.74, + "2019": 0.744, + "2020": 0.747, + "2021": 0.735 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr110", + "Region": "Manufahi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.607, + "2003": 0.618, + "2004": 0.629, + "2005": 0.64, + "2006": 0.651, + "2007": 0.661, + "2008": 0.671, + "2009": 0.679, + "2010": 0.686, + "2011": 0.693, + "2012": 0.7, + "2013": 0.707, + "2014": 0.713, + "2015": 0.719, + "2016": 0.725, + "2017": 0.729, + "2018": 0.733, + "2019": 0.737, + "2020": 0.74, + "2021": 0.729 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr112", + "Region": "Oecussi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.597, + "2003": 0.608, + "2004": 0.619, + "2005": 0.629, + "2006": 0.641, + "2007": 0.65, + "2008": 0.66, + "2009": 0.667, + "2010": 0.666, + "2011": 0.664, + "2012": 0.662, + "2013": 0.66, + "2014": 0.658, + "2015": 0.655, + "2016": 0.653, + "2017": 0.657, + "2018": 0.661, + "2019": 0.664, + "2020": 0.667, + "2021": 0.657 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr113", + "Region": "Viqueque", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.624, + "2003": 0.635, + "2004": 0.647, + "2005": 0.657, + "2006": 0.669, + "2007": 0.679, + "2008": 0.688, + "2009": 0.697, + "2010": 0.7, + "2011": 0.702, + "2012": 0.704, + "2013": 0.706, + "2014": 0.708, + "2015": 0.71, + "2016": 0.711, + "2017": 0.716, + "2018": 0.72, + "2019": 0.724, + "2020": 0.727, + "2021": 0.716 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "National", + "GDLCODE": "TGOt", + "Region": "Total", + "1990": 0.529, + "1991": 0.527, + "1992": 0.528, + "1993": 0.526, + "1994": 0.524, + "1995": 0.524, + "1996": 0.525, + "1997": 0.526, + "1998": 0.526, + "1999": 0.531, + "2000": 0.534, + "2001": 0.536, + "2002": 0.543, + "2003": 0.548, + "2004": 0.547, + "2005": 0.553, + "2006": 0.557, + "2007": 0.562, + "2008": 0.565, + "2009": 0.569, + "2010": 0.574, + "2011": 0.583, + "2012": 0.586, + "2013": 0.595, + "2014": 0.598, + "2015": 0.606, + "2016": 0.608, + "2017": 0.618, + "2018": 0.619, + "2019": 0.629, + "2020": 0.631, + "2021": 0.64 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr104", + "Region": "Centrale", + "1990": 0.528, + "1991": 0.527, + "1992": 0.527, + "1993": 0.525, + "1994": 0.523, + "1995": 0.523, + "1996": 0.524, + "1997": 0.525, + "1998": 0.525, + "1999": 0.528, + "2000": 0.528, + "2001": 0.527, + "2002": 0.531, + "2003": 0.533, + "2004": 0.529, + "2005": 0.532, + "2006": 0.533, + "2007": 0.536, + "2008": 0.538, + "2009": 0.542, + "2010": 0.545, + "2011": 0.553, + "2012": 0.554, + "2013": 0.562, + "2014": 0.564, + "2015": 0.584, + "2016": 0.598, + "2017": 0.619, + "2018": 0.621, + "2019": 0.631, + "2020": 0.633, + "2021": 0.642 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr105", + "Region": "Kara", + "1990": 0.504, + "1991": 0.502, + "1992": 0.503, + "1993": 0.501, + "1994": 0.499, + "1995": 0.499, + "1996": 0.5, + "1997": 0.501, + "1998": 0.501, + "1999": 0.51, + "2000": 0.516, + "2001": 0.521, + "2002": 0.531, + "2003": 0.539, + "2004": 0.541, + "2005": 0.55, + "2006": 0.558, + "2007": 0.554, + "2008": 0.55, + "2009": 0.547, + "2010": 0.544, + "2011": 0.546, + "2012": 0.541, + "2013": 0.543, + "2014": 0.538, + "2015": 0.553, + "2016": 0.562, + "2017": 0.578, + "2018": 0.579, + "2019": 0.589, + "2020": 0.591, + "2021": 0.599 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr101", + "Region": "Lome", + "1990": 0.584, + "1991": 0.583, + "1992": 0.583, + "1993": 0.581, + "1994": 0.579, + "1995": 0.579, + "1996": 0.58, + "1997": 0.581, + "1998": 0.582, + "1999": 0.597, + "2000": 0.61, + "2001": 0.622, + "2002": 0.639, + "2003": 0.654, + "2004": 0.663, + "2005": 0.679, + "2006": 0.693, + "2007": 0.686, + "2008": 0.676, + "2009": 0.669, + "2010": 0.662, + "2011": 0.66, + "2012": 0.651, + "2013": 0.649, + "2014": 0.64, + "2015": 0.638, + "2016": 0.63, + "2017": 0.629, + "2018": 0.63, + "2019": 0.64, + "2020": 0.643, + "2021": 0.652 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr102", + "Region": "Maritime", + "1990": 0.528, + "1991": 0.526, + "1992": 0.527, + "1993": 0.525, + "1994": 0.523, + "1995": 0.523, + "1996": 0.524, + "1997": 0.525, + "1998": 0.525, + "1999": 0.53, + "2000": 0.533, + "2001": 0.535, + "2002": 0.541, + "2003": 0.546, + "2004": 0.545, + "2005": 0.551, + "2006": 0.554, + "2007": 0.565, + "2008": 0.574, + "2009": 0.586, + "2010": 0.596, + "2011": 0.612, + "2012": 0.621, + "2013": 0.637, + "2014": 0.646, + "2015": 0.633, + "2016": 0.614, + "2017": 0.603, + "2018": 0.604, + "2019": 0.614, + "2020": 0.616, + "2021": 0.625 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr103", + "Region": "Plateaux", + "1990": 0.543, + "1991": 0.542, + "1992": 0.542, + "1993": 0.541, + "1994": 0.538, + "1995": 0.538, + "1996": 0.539, + "1997": 0.541, + "1998": 0.541, + "1999": 0.544, + "2000": 0.544, + "2001": 0.544, + "2002": 0.549, + "2003": 0.551, + "2004": 0.548, + "2005": 0.552, + "2006": 0.553, + "2007": 0.558, + "2008": 0.561, + "2009": 0.565, + "2010": 0.57, + "2011": 0.579, + "2012": 0.582, + "2013": 0.591, + "2014": 0.594, + "2015": 0.611, + "2016": 0.622, + "2017": 0.641, + "2018": 0.642, + "2019": 0.652, + "2020": 0.654, + "2021": 0.664 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr106", + "Region": "Savanes", + "1990": 0.493, + "1991": 0.491, + "1992": 0.492, + "1993": 0.49, + "1994": 0.488, + "1995": 0.488, + "1996": 0.489, + "1997": 0.49, + "1998": 0.49, + "1999": 0.49, + "2000": 0.488, + "2001": 0.484, + "2002": 0.485, + "2003": 0.485, + "2004": 0.478, + "2005": 0.479, + "2006": 0.477, + "2007": 0.489, + "2008": 0.499, + "2009": 0.511, + "2010": 0.522, + "2011": 0.539, + "2012": 0.548, + "2013": 0.564, + "2014": 0.573, + "2015": 0.588, + "2016": 0.596, + "2017": 0.611, + "2018": 0.612, + "2019": 0.623, + "2020": 0.625, + "2021": 0.634 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "National", + "GDLCODE": "TONt", + "Region": "Total", + "1990": null, + "1991": 0.731, + "1992": 0.734, + "1993": 0.736, + "1994": 0.739, + "1995": 0.741, + "1996": 0.743, + "1997": 0.746, + "1998": 0.748, + "1999": 0.751, + "2000": 0.754, + "2001": 0.756, + "2002": 0.759, + "2003": 0.761, + "2004": 0.764, + "2005": 0.766, + "2006": 0.768, + "2007": 0.77, + "2008": 0.772, + "2009": 0.769, + "2010": 0.774, + "2011": 0.775, + "2012": 0.776, + "2013": 0.777, + "2014": 0.778, + "2015": 0.779, + "2016": 0.779, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr104", + "Region": "Eua", + "1990": null, + "1991": 0.731, + "1992": 0.734, + "1993": 0.736, + "1994": 0.739, + "1995": 0.741, + "1996": 0.743, + "1997": 0.746, + "1998": 0.748, + "1999": 0.751, + "2000": 0.754, + "2001": 0.756, + "2002": 0.759, + "2003": 0.761, + "2004": 0.764, + "2005": 0.766, + "2006": 0.768, + "2007": 0.77, + "2008": 0.772, + "2009": 0.769, + "2010": 0.774, + "2011": 0.775, + "2012": 0.776, + "2013": 0.777, + "2014": 0.778, + "2015": 0.779, + "2016": 0.779, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr103", + "Region": "Ha-apai", + "1990": null, + "1991": 0.731, + "1992": 0.734, + "1993": 0.736, + "1994": 0.739, + "1995": 0.741, + "1996": 0.743, + "1997": 0.746, + "1998": 0.748, + "1999": 0.751, + "2000": 0.754, + "2001": 0.756, + "2002": 0.759, + "2003": 0.761, + "2004": 0.764, + "2005": 0.766, + "2006": 0.768, + "2007": 0.77, + "2008": 0.772, + "2009": 0.769, + "2010": 0.774, + "2011": 0.775, + "2012": 0.776, + "2013": 0.777, + "2014": 0.778, + "2015": 0.779, + "2016": 0.779, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr105", + "Region": "Ongo Niua", + "1990": null, + "1991": 0.731, + "1992": 0.734, + "1993": 0.736, + "1994": 0.739, + "1995": 0.741, + "1996": 0.743, + "1997": 0.746, + "1998": 0.748, + "1999": 0.751, + "2000": 0.754, + "2001": 0.756, + "2002": 0.759, + "2003": 0.761, + "2004": 0.764, + "2005": 0.766, + "2006": 0.768, + "2007": 0.77, + "2008": 0.772, + "2009": 0.769, + "2010": 0.774, + "2011": 0.775, + "2012": 0.776, + "2013": 0.777, + "2014": 0.778, + "2015": 0.779, + "2016": 0.779, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr101", + "Region": "Tongatapu", + "1990": null, + "1991": 0.731, + "1992": 0.734, + "1993": 0.736, + "1994": 0.739, + "1995": 0.741, + "1996": 0.743, + "1997": 0.746, + "1998": 0.748, + "1999": 0.751, + "2000": 0.754, + "2001": 0.756, + "2002": 0.759, + "2003": 0.761, + "2004": 0.764, + "2005": 0.766, + "2006": 0.768, + "2007": 0.77, + "2008": 0.772, + "2009": 0.769, + "2010": 0.774, + "2011": 0.775, + "2012": 0.776, + "2013": 0.777, + "2014": 0.778, + "2015": 0.779, + "2016": 0.779, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr102", + "Region": "Vava-u", + "1990": null, + "1991": 0.731, + "1992": 0.734, + "1993": 0.736, + "1994": 0.739, + "1995": 0.741, + "1996": 0.743, + "1997": 0.746, + "1998": 0.748, + "1999": 0.751, + "2000": 0.754, + "2001": 0.756, + "2002": 0.759, + "2003": 0.761, + "2004": 0.764, + "2005": 0.766, + "2006": 0.768, + "2007": 0.77, + "2008": 0.772, + "2009": 0.769, + "2010": 0.774, + "2011": 0.775, + "2012": 0.776, + "2013": 0.777, + "2014": 0.778, + "2015": 0.779, + "2016": 0.779, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.784, + "2021": 0.784 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "National", + "GDLCODE": "TTOt", + "Region": "Total", + "1990": 0.743, + "1991": 0.752, + "1992": 0.744, + "1993": 0.751, + "1994": 0.746, + "1995": 0.756, + "1996": 0.754, + "1997": 0.75, + "1998": 0.756, + "1999": 0.744, + "2000": 0.755, + "2001": 0.764, + "2002": 0.777, + "2003": 0.765, + "2004": 0.786, + "2005": 0.789, + "2006": 0.789, + "2007": 0.795, + "2008": 0.792, + "2009": 0.817, + "2010": 0.811, + "2011": 0.82, + "2012": 0.826, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.835, + "2017": 0.834, + "2018": 0.828, + "2019": 0.834, + "2020": 0.837, + "2021": 0.815 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr103", + "Region": "Central", + "1990": 0.743, + "1991": 0.752, + "1992": 0.744, + "1993": 0.751, + "1994": 0.746, + "1995": 0.756, + "1996": 0.754, + "1997": 0.75, + "1998": 0.756, + "1999": 0.744, + "2000": 0.755, + "2001": 0.764, + "2002": 0.777, + "2003": 0.765, + "2004": 0.786, + "2005": 0.789, + "2006": 0.789, + "2007": 0.795, + "2008": 0.792, + "2009": 0.817, + "2010": 0.811, + "2011": 0.82, + "2012": 0.826, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.835, + "2017": 0.834, + "2018": 0.828, + "2019": 0.834, + "2020": 0.837, + "2021": 0.815 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr102", + "Region": "East", + "1990": 0.743, + "1991": 0.752, + "1992": 0.744, + "1993": 0.751, + "1994": 0.746, + "1995": 0.756, + "1996": 0.754, + "1997": 0.75, + "1998": 0.756, + "1999": 0.744, + "2000": 0.755, + "2001": 0.764, + "2002": 0.777, + "2003": 0.765, + "2004": 0.786, + "2005": 0.789, + "2006": 0.789, + "2007": 0.795, + "2008": 0.792, + "2009": 0.817, + "2010": 0.811, + "2011": 0.82, + "2012": 0.826, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.835, + "2017": 0.834, + "2018": 0.828, + "2019": 0.834, + "2020": 0.837, + "2021": 0.815 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr101", + "Region": "North West", + "1990": 0.743, + "1991": 0.752, + "1992": 0.744, + "1993": 0.751, + "1994": 0.746, + "1995": 0.756, + "1996": 0.754, + "1997": 0.75, + "1998": 0.756, + "1999": 0.744, + "2000": 0.755, + "2001": 0.764, + "2002": 0.777, + "2003": 0.765, + "2004": 0.786, + "2005": 0.789, + "2006": 0.789, + "2007": 0.795, + "2008": 0.792, + "2009": 0.817, + "2010": 0.811, + "2011": 0.82, + "2012": 0.826, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.835, + "2017": 0.834, + "2018": 0.828, + "2019": 0.834, + "2020": 0.837, + "2021": 0.815 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr104", + "Region": "South West", + "1990": 0.743, + "1991": 0.752, + "1992": 0.744, + "1993": 0.751, + "1994": 0.746, + "1995": 0.756, + "1996": 0.754, + "1997": 0.75, + "1998": 0.756, + "1999": 0.744, + "2000": 0.755, + "2001": 0.764, + "2002": 0.777, + "2003": 0.765, + "2004": 0.786, + "2005": 0.789, + "2006": 0.789, + "2007": 0.795, + "2008": 0.792, + "2009": 0.817, + "2010": 0.811, + "2011": 0.82, + "2012": 0.826, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.835, + "2017": 0.834, + "2018": 0.828, + "2019": 0.834, + "2020": 0.837, + "2021": 0.815 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr105", + "Region": "Tobago", + "1990": 0.743, + "1991": 0.752, + "1992": 0.744, + "1993": 0.751, + "1994": 0.746, + "1995": 0.756, + "1996": 0.754, + "1997": 0.75, + "1998": 0.756, + "1999": 0.744, + "2000": 0.755, + "2001": 0.764, + "2002": 0.777, + "2003": 0.765, + "2004": 0.786, + "2005": 0.789, + "2006": 0.789, + "2007": 0.795, + "2008": 0.792, + "2009": 0.817, + "2010": 0.811, + "2011": 0.82, + "2012": 0.826, + "2013": 0.83, + "2014": 0.834, + "2015": 0.839, + "2016": 0.835, + "2017": 0.834, + "2018": 0.828, + "2019": 0.834, + "2020": 0.837, + "2021": 0.815 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "National", + "GDLCODE": "TUNt", + "Region": "Total", + "1990": 0.771, + "1991": 0.777, + "1992": 0.78, + "1993": 0.788, + "1994": 0.794, + "1995": 0.8, + "1996": 0.806, + "1997": 0.813, + "1998": 0.818, + "1999": 0.823, + "2000": 0.826, + "2001": 0.828, + "2002": 0.832, + "2003": 0.835, + "2004": 0.838, + "2005": 0.843, + "2006": 0.845, + "2007": 0.847, + "2008": 0.849, + "2009": 0.85, + "2010": 0.853, + "2011": 0.853, + "2012": 0.855, + "2013": 0.856, + "2014": 0.856, + "2015": 0.857, + "2016": 0.858, + "2017": 0.859, + "2018": 0.861, + "2019": 0.861, + "2020": 0.851, + "2021": 0.827 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr105", + "Region": "Centre Est (Sousse, Monastir, Mahdia, Sfax)", + "1990": 0.771, + "1991": 0.777, + "1992": 0.78, + "1993": 0.788, + "1994": 0.794, + "1995": 0.8, + "1996": 0.806, + "1997": 0.813, + "1998": 0.818, + "1999": 0.823, + "2000": 0.826, + "2001": 0.828, + "2002": 0.832, + "2003": 0.835, + "2004": 0.838, + "2005": 0.843, + "2006": 0.845, + "2007": 0.847, + "2008": 0.849, + "2009": 0.85, + "2010": 0.853, + "2011": 0.853, + "2012": 0.855, + "2013": 0.856, + "2014": 0.856, + "2015": 0.857, + "2016": 0.858, + "2017": 0.859, + "2018": 0.861, + "2019": 0.861, + "2020": 0.851, + "2021": 0.827 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr104", + "Region": "Centre Ouest (Kairouan, Kasserine, Sidi Bouzid)", + "1990": 0.722, + "1991": 0.728, + "1992": 0.731, + "1993": 0.739, + "1994": 0.744, + "1995": 0.75, + "1996": 0.756, + "1997": 0.763, + "1998": 0.767, + "1999": 0.772, + "2000": 0.775, + "2001": 0.777, + "2002": 0.78, + "2003": 0.784, + "2004": 0.787, + "2005": 0.791, + "2006": 0.793, + "2007": 0.795, + "2008": 0.797, + "2009": 0.798, + "2010": 0.8, + "2011": 0.801, + "2012": 0.802, + "2013": 0.804, + "2014": 0.804, + "2015": 0.804, + "2016": 0.806, + "2017": 0.807, + "2018": 0.808, + "2019": 0.809, + "2020": 0.798, + "2021": 0.776 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr101", + "Region": "Grand Tunis (Tunis, Ariana, Ben Arous, Manouba)", + "1990": 0.79, + "1991": 0.796, + "1992": 0.799, + "1993": 0.807, + "1994": 0.813, + "1995": 0.819, + "1996": 0.825, + "1997": 0.833, + "1998": 0.838, + "1999": 0.843, + "2000": 0.846, + "2001": 0.848, + "2002": 0.851, + "2003": 0.855, + "2004": 0.858, + "2005": 0.863, + "2006": 0.865, + "2007": 0.867, + "2008": 0.869, + "2009": 0.87, + "2010": 0.873, + "2011": 0.873, + "2012": 0.875, + "2013": 0.876, + "2014": 0.876, + "2015": 0.877, + "2016": 0.879, + "2017": 0.879, + "2018": 0.881, + "2019": 0.882, + "2020": 0.871, + "2021": 0.847 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr102", + "Region": "Nord Est (Nabeul, Zaghouan, Bizerte)", + "1990": 0.75, + "1991": 0.756, + "1992": 0.759, + "1993": 0.767, + "1994": 0.772, + "1995": 0.778, + "1996": 0.784, + "1997": 0.791, + "1998": 0.796, + "1999": 0.801, + "2000": 0.804, + "2001": 0.806, + "2002": 0.809, + "2003": 0.813, + "2004": 0.816, + "2005": 0.82, + "2006": 0.822, + "2007": 0.824, + "2008": 0.826, + "2009": 0.827, + "2010": 0.83, + "2011": 0.83, + "2012": 0.832, + "2013": 0.833, + "2014": 0.833, + "2015": 0.834, + "2016": 0.835, + "2017": 0.836, + "2018": 0.838, + "2019": 0.838, + "2020": 0.828, + "2021": 0.805 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr103", + "Region": "Nord Ouest (Beja, Jendouba, Kef, Siliana)", + "1990": 0.754, + "1991": 0.761, + "1992": 0.763, + "1993": 0.771, + "1994": 0.777, + "1995": 0.783, + "1996": 0.789, + "1997": 0.796, + "1998": 0.801, + "1999": 0.806, + "2000": 0.809, + "2001": 0.81, + "2002": 0.814, + "2003": 0.818, + "2004": 0.821, + "2005": 0.825, + "2006": 0.827, + "2007": 0.829, + "2008": 0.831, + "2009": 0.832, + "2010": 0.835, + "2011": 0.835, + "2012": 0.837, + "2013": 0.838, + "2014": 0.838, + "2015": 0.839, + "2016": 0.84, + "2017": 0.841, + "2018": 0.843, + "2019": 0.843, + "2020": 0.833, + "2021": 0.81 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr107", + "Region": "Sud Est (Gabes, Medinine, Tataouine)", + "1990": 0.781, + "1991": 0.787, + "1992": 0.79, + "1993": 0.798, + "1994": 0.804, + "1995": 0.81, + "1996": 0.816, + "1997": 0.824, + "1998": 0.828, + "1999": 0.834, + "2000": 0.836, + "2001": 0.838, + "2002": 0.842, + "2003": 0.846, + "2004": 0.849, + "2005": 0.853, + "2006": 0.856, + "2007": 0.858, + "2008": 0.86, + "2009": 0.861, + "2010": 0.863, + "2011": 0.864, + "2012": 0.865, + "2013": 0.867, + "2014": 0.867, + "2015": 0.867, + "2016": 0.869, + "2017": 0.87, + "2018": 0.871, + "2019": 0.872, + "2020": 0.861, + "2021": 0.838 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr106", + "Region": "Sud Ouest (Gafsa, Tozeur, Kebili)", + "1990": 0.748, + "1991": 0.754, + "1992": 0.757, + "1993": 0.765, + "1994": 0.771, + "1995": 0.776, + "1996": 0.782, + "1997": 0.79, + "1998": 0.794, + "1999": 0.799, + "2000": 0.802, + "2001": 0.804, + "2002": 0.808, + "2003": 0.811, + "2004": 0.814, + "2005": 0.818, + "2006": 0.821, + "2007": 0.823, + "2008": 0.825, + "2009": 0.826, + "2010": 0.828, + "2011": 0.829, + "2012": 0.83, + "2013": 0.832, + "2014": 0.832, + "2015": 0.832, + "2016": 0.834, + "2017": 0.834, + "2018": 0.836, + "2019": 0.837, + "2020": 0.826, + "2021": 0.803 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "National", + "GDLCODE": "TURt", + "Region": "Total", + "1990": 0.734, + "1991": 0.741, + "1992": 0.746, + "1993": 0.752, + "1994": 0.758, + "1995": 0.763, + "1996": 0.771, + "1997": 0.778, + "1998": 0.785, + "1999": 0.78, + "2000": 0.798, + "2001": 0.804, + "2002": 0.809, + "2003": 0.814, + "2004": 0.819, + "2005": 0.824, + "2006": 0.828, + "2007": 0.834, + "2008": 0.838, + "2009": 0.843, + "2010": 0.847, + "2011": 0.845, + "2012": 0.857, + "2013": 0.866, + "2014": 0.87, + "2015": 0.871, + "2016": 0.872, + "2017": 0.879, + "2018": 0.886, + "2019": 0.89, + "2020": 0.859, + "2021": 0.862 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr103", + "Region": "Aegean (Afyon, Aydin, Denizli, Izmir, Kutahya, Man", + "1990": 0.767, + "1991": 0.775, + "1992": 0.78, + "1993": 0.786, + "1994": 0.792, + "1995": 0.797, + "1996": 0.805, + "1997": 0.811, + "1998": 0.818, + "1999": 0.814, + "2000": 0.835, + "2001": 0.842, + "2002": 0.85, + "2003": 0.857, + "2004": 0.856, + "2005": 0.854, + "2006": 0.852, + "2007": 0.851, + "2008": 0.849, + "2009": 0.849, + "2010": 0.85, + "2011": 0.845, + "2012": 0.864, + "2013": 0.881, + "2014": 0.873, + "2015": 0.872, + "2016": 0.871, + "2017": 0.878, + "2018": 0.884, + "2019": 0.886, + "2020": 0.856, + "2021": 0.859 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr107", + "Region": "Central Anatolia (Kayseri, Kirsehir, Nevsehir, Nig", + "1990": 0.666, + "1991": 0.673, + "1992": 0.678, + "1993": 0.684, + "1994": 0.712, + "1995": 0.74, + "1996": 0.77, + "1997": 0.799, + "1998": 0.829, + "1999": 0.814, + "2000": 0.823, + "2001": 0.819, + "2002": 0.815, + "2003": 0.811, + "2004": 0.822, + "2005": 0.833, + "2006": 0.843, + "2007": 0.855, + "2008": 0.864, + "2009": 0.858, + "2010": 0.851, + "2011": 0.838, + "2012": 0.857, + "2013": 0.874, + "2014": 0.864, + "2015": 0.865, + "2016": 0.867, + "2017": 0.874, + "2018": 0.881, + "2019": 0.886, + "2020": 0.855, + "2021": 0.858 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr111", + "Region": "Central East Anatolia (Bingol, Bitlis, Elazig, Hak", + "1990": 0.715, + "1991": 0.722, + "1992": 0.727, + "1993": 0.733, + "1994": 0.735, + "1995": 0.735, + "1996": 0.739, + "1997": 0.742, + "1998": 0.745, + "1999": 0.737, + "2000": 0.752, + "2001": 0.755, + "2002": 0.758, + "2003": 0.76, + "2004": 0.762, + "2005": 0.763, + "2006": 0.764, + "2007": 0.766, + "2008": 0.767, + "2009": 0.787, + "2010": 0.807, + "2011": 0.82, + "2012": 0.832, + "2013": 0.843, + "2014": 0.863, + "2015": 0.868, + "2016": 0.869, + "2017": 0.875, + "2018": 0.888, + "2019": 0.89, + "2020": 0.86, + "2021": 0.862 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr109", + "Region": "East Black Sea (Artvin, Giresun, Gumushane, Ordu,", + "1990": 0.775, + "1991": 0.783, + "1992": 0.788, + "1993": 0.795, + "1994": 0.79, + "1995": 0.783, + "1996": 0.781, + "1997": 0.777, + "1998": 0.773, + "1999": 0.769, + "2000": 0.788, + "2001": 0.794, + "2002": 0.8, + "2003": 0.806, + "2004": 0.814, + "2005": 0.822, + "2006": 0.829, + "2007": 0.838, + "2008": 0.845, + "2009": 0.854, + "2010": 0.863, + "2011": 0.866, + "2012": 0.862, + "2013": 0.855, + "2014": 0.892, + "2015": 0.897, + "2016": 0.897, + "2017": 0.896, + "2018": 0.91, + "2019": 0.913, + "2020": 0.882, + "2021": 0.885 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr104", + "Region": "East Marmara (Bilecik, Bolu, Bursa, Duzce, Eskiseh", + "1990": 0.761, + "1991": 0.769, + "1992": 0.774, + "1993": 0.78, + "1994": 0.792, + "1995": 0.803, + "1996": 0.817, + "1997": 0.829, + "1998": 0.842, + "1999": 0.834, + "2000": 0.85, + "2001": 0.854, + "2002": 0.857, + "2003": 0.859, + "2004": 0.858, + "2005": 0.856, + "2006": 0.855, + "2007": 0.854, + "2008": 0.852, + "2009": 0.85, + "2010": 0.848, + "2011": 0.839, + "2012": 0.874, + "2013": 0.908, + "2014": 0.863, + "2015": 0.864, + "2016": 0.864, + "2017": 0.873, + "2018": 0.877, + "2019": 0.885, + "2020": 0.854, + "2021": 0.857 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr101", + "Region": "Istanbul", + "1990": 0.786, + "1991": 0.793, + "1992": 0.799, + "1993": 0.805, + "1994": 0.799, + "1995": 0.792, + "1996": 0.788, + "1997": 0.783, + "1998": 0.778, + "1999": 0.781, + "2000": 0.806, + "2001": 0.819, + "2002": 0.832, + "2003": 0.844, + "2004": 0.849, + "2005": 0.853, + "2006": 0.857, + "2007": 0.862, + "2008": 0.865, + "2009": 0.865, + "2010": 0.865, + "2011": 0.858, + "2012": 0.863, + "2013": 0.865, + "2014": 0.874, + "2015": 0.874, + "2016": 0.876, + "2017": 0.884, + "2018": 0.891, + "2019": 0.895, + "2020": 0.865, + "2021": 0.867 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr106", + "Region": "Mediterranean (Adana, Antalya, Burdur, Hatay, Ispa", + "1990": 0.733, + "1991": 0.74, + "1992": 0.745, + "1993": 0.751, + "1994": 0.767, + "1995": 0.781, + "1996": 0.799, + "1997": 0.815, + "1998": 0.831, + "1999": 0.817, + "2000": 0.828, + "2001": 0.825, + "2002": 0.822, + "2003": 0.819, + "2004": 0.822, + "2005": 0.824, + "2006": 0.827, + "2007": 0.83, + "2008": 0.831, + "2009": 0.84, + "2010": 0.849, + "2011": 0.85, + "2012": 0.852, + "2013": 0.851, + "2014": 0.873, + "2015": 0.873, + "2016": 0.872, + "2017": 0.88, + "2018": 0.887, + "2019": 0.889, + "2020": 0.858, + "2021": 0.861 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr110", + "Region": "North East Anatolia (Agri, Erzincan, Erzurum, Kars", + "1990": 0.612, + "1991": 0.618, + "1992": 0.623, + "1993": 0.628, + "1994": 0.632, + "1995": 0.634, + "1996": 0.639, + "1997": 0.643, + "1998": 0.648, + "1999": 0.657, + "2000": 0.686, + "2001": 0.705, + "2002": 0.723, + "2003": 0.74, + "2004": 0.753, + "2005": 0.766, + "2006": 0.778, + "2007": 0.791, + "2008": 0.803, + "2009": 0.807, + "2010": 0.811, + "2011": 0.809, + "2012": 0.817, + "2013": 0.822, + "2014": 0.856, + "2015": 0.858, + "2016": 0.864, + "2017": 0.871, + "2018": 0.876, + "2019": 0.884, + "2020": 0.853, + "2021": 0.856 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr112", + "Region": "South East Anatolia (Adiyaman, Diyarbakir, Gaziant", + "1990": 0.724, + "1991": 0.731, + "1992": 0.736, + "1993": 0.743, + "1994": 0.749, + "1995": 0.755, + "1996": 0.763, + "1997": 0.77, + "1998": 0.778, + "1999": 0.764, + "2000": 0.773, + "2001": 0.77, + "2002": 0.766, + "2003": 0.762, + "2004": 0.772, + "2005": 0.781, + "2006": 0.79, + "2007": 0.8, + "2008": 0.808, + "2009": 0.82, + "2010": 0.832, + "2011": 0.836, + "2012": 0.842, + "2013": 0.845, + "2014": 0.862, + "2015": 0.868, + "2016": 0.863, + "2017": 0.877, + "2018": 0.883, + "2019": 0.884, + "2020": 0.853, + "2021": 0.856 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr105", + "Region": "West Anatolia (Ankara, Konya, Karaman)", + "1990": 0.752, + "1991": 0.759, + "1992": 0.764, + "1993": 0.771, + "1994": 0.774, + "1995": 0.777, + "1996": 0.783, + "1997": 0.787, + "1998": 0.792, + "1999": 0.793, + "2000": 0.818, + "2001": 0.83, + "2002": 0.842, + "2003": 0.854, + "2004": 0.855, + "2005": 0.855, + "2006": 0.856, + "2007": 0.857, + "2008": 0.857, + "2009": 0.859, + "2010": 0.861, + "2011": 0.856, + "2012": 0.878, + "2013": 0.899, + "2014": 0.882, + "2015": 0.883, + "2016": 0.883, + "2017": 0.887, + "2018": 0.891, + "2019": 0.898, + "2020": 0.867, + "2021": 0.87 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr108", + "Region": "West Black Sea (Amasya, Cankiri, Corum, Kastamonu,", + "1990": 0.724, + "1991": 0.731, + "1992": 0.736, + "1993": 0.742, + "1994": 0.744, + "1995": 0.745, + "1996": 0.749, + "1997": 0.751, + "1998": 0.754, + "1999": 0.754, + "2000": 0.776, + "2001": 0.786, + "2002": 0.796, + "2003": 0.805, + "2004": 0.818, + "2005": 0.83, + "2006": 0.843, + "2007": 0.856, + "2008": 0.867, + "2009": 0.86, + "2010": 0.854, + "2011": 0.841, + "2012": 0.857, + "2013": 0.871, + "2014": 0.866, + "2015": 0.869, + "2016": 0.871, + "2017": 0.878, + "2018": 0.881, + "2019": 0.888, + "2020": 0.858, + "2021": 0.86 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr102", + "Region": "West Marmara (Balikesir, Canakkale, Edirne, Kirkla", + "1990": 0.734, + "1991": 0.741, + "1992": 0.745, + "1993": 0.752, + "1994": 0.76, + "1995": 0.768, + "1996": 0.778, + "1997": 0.788, + "1998": 0.797, + "1999": 0.793, + "2000": 0.813, + "2001": 0.82, + "2002": 0.827, + "2003": 0.833, + "2004": 0.84, + "2005": 0.847, + "2006": 0.853, + "2007": 0.861, + "2008": 0.866, + "2009": 0.859, + "2010": 0.853, + "2011": 0.84, + "2012": 0.872, + "2013": 0.903, + "2014": 0.86, + "2015": 0.859, + "2016": 0.865, + "2017": 0.866, + "2018": 0.871, + "2019": 0.879, + "2020": 0.849, + "2021": 0.852 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "National", + "GDLCODE": "TKMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.743, + "2011": 0.747, + "2012": 0.75, + "2013": 0.75, + "2014": 0.748, + "2015": 0.75, + "2016": 0.75, + "2017": 0.753, + "2018": 0.751, + "2019": 0.754, + "2020": 0.749, + "2021": 0.758 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr102", + "Region": "Akhal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.767, + "2011": 0.764, + "2012": 0.758, + "2013": 0.751, + "2014": 0.742, + "2015": 0.737, + "2016": 0.741, + "2017": 0.748, + "2018": 0.75, + "2019": 0.758, + "2020": 0.753, + "2021": 0.762 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr101", + "Region": "Ashgabat City", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.759, + "2011": 0.76, + "2012": 0.76, + "2013": 0.757, + "2014": 0.752, + "2015": 0.752, + "2016": 0.759, + "2017": 0.768, + "2018": 0.774, + "2019": 0.784, + "2020": 0.779, + "2021": 0.788 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr103", + "Region": "Balkan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.774, + "2011": 0.778, + "2012": 0.781, + "2013": 0.781, + "2014": 0.779, + "2015": 0.782, + "2016": 0.777, + "2017": 0.775, + "2018": 0.769, + "2019": 0.768, + "2020": 0.763, + "2021": 0.772 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr104", + "Region": "Dashoguz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.731, + "2011": 0.734, + "2012": 0.736, + "2013": 0.736, + "2014": 0.734, + "2015": 0.736, + "2016": 0.738, + "2017": 0.742, + "2018": 0.742, + "2019": 0.748, + "2020": 0.743, + "2021": 0.752 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr105", + "Region": "Lebap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.742, + "2011": 0.75, + "2012": 0.756, + "2013": 0.76, + "2014": 0.762, + "2015": 0.768, + "2016": 0.768, + "2017": 0.771, + "2018": 0.769, + "2019": 0.773, + "2020": 0.768, + "2021": 0.777 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr106", + "Region": "Mary", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.737, + "2011": 0.743, + "2012": 0.746, + "2013": 0.748, + "2014": 0.747, + "2015": 0.751, + "2016": 0.741, + "2017": 0.734, + "2018": 0.722, + "2019": 0.716, + "2020": 0.711, + "2021": 0.72 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "National", + "GDLCODE": "TUVt", + "Region": "Total", + "1990": 0.641, + "1991": 0.645, + "1992": 0.623, + "1993": 0.656, + "1994": 0.66, + "1995": 0.663, + "1996": 0.665, + "1997": 0.667, + "1998": 0.668, + "1999": 0.668, + "2000": 0.669, + "2001": 0.67, + "2002": 0.67, + "2003": 0.671, + "2004": 0.672, + "2005": 0.674, + "2006": 0.676, + "2007": 0.676, + "2008": 0.676, + "2009": 0.676, + "2010": 0.677, + "2011": 0.677, + "2012": 0.676, + "2013": 0.677, + "2014": 0.677, + "2015": 0.678, + "2016": 0.679, + "2017": 0.679, + "2018": 0.68, + "2019": 0.681, + "2020": 0.683, + "2021": 0.685 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr103", + "Region": "Funafuti", + "1990": 0.635, + "1991": 0.639, + "1992": 0.617, + "1993": 0.65, + "1994": 0.654, + "1995": 0.657, + "1996": 0.659, + "1997": 0.661, + "1998": 0.662, + "1999": 0.662, + "2000": 0.663, + "2001": 0.664, + "2002": 0.664, + "2003": 0.665, + "2004": 0.666, + "2005": 0.668, + "2006": 0.67, + "2007": 0.67, + "2008": 0.67, + "2009": 0.67, + "2010": 0.67, + "2011": 0.67, + "2012": 0.67, + "2013": 0.671, + "2014": 0.671, + "2015": 0.672, + "2016": 0.672, + "2017": 0.673, + "2018": 0.674, + "2019": 0.675, + "2020": 0.677, + "2021": 0.679 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "National", + "GDLCODE": "UGAt", + "Region": "Total", + "1990": 0.407, + "1991": 0.405, + "1992": 0.406, + "1993": 0.404, + "1994": 0.405, + "1995": 0.409, + "1996": 0.41, + "1997": 0.415, + "1998": 0.418, + "1999": 0.427, + "2000": 0.436, + "2001": 0.446, + "2002": 0.456, + "2003": 0.467, + "2004": 0.485, + "2005": 0.507, + "2006": 0.529, + "2007": 0.542, + "2008": 0.551, + "2009": 0.561, + "2010": 0.57, + "2011": 0.584, + "2012": 0.597, + "2013": 0.612, + "2014": 0.622, + "2015": 0.632, + "2016": 0.641, + "2017": 0.648, + "2018": 0.657, + "2019": 0.661, + "2020": 0.659, + "2021": 0.657 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr101", + "Region": "Central 1 (Central South)", + "1990": 0.394, + "1991": 0.392, + "1992": 0.393, + "1993": 0.391, + "1994": 0.393, + "1995": 0.396, + "1996": 0.398, + "1997": 0.402, + "1998": 0.405, + "1999": 0.415, + "2000": 0.423, + "2001": 0.433, + "2002": 0.443, + "2003": 0.454, + "2004": 0.472, + "2005": 0.493, + "2006": 0.514, + "2007": 0.53, + "2008": 0.541, + "2009": 0.553, + "2010": 0.564, + "2011": 0.58, + "2012": 0.6, + "2013": 0.621, + "2014": 0.638, + "2015": 0.655, + "2016": 0.671, + "2017": 0.678, + "2018": 0.687, + "2019": 0.692, + "2020": 0.69, + "2021": 0.687 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr102", + "Region": "Central 2 (Central North)", + "1990": 0.432, + "1991": 0.43, + "1992": 0.431, + "1993": 0.429, + "1994": 0.431, + "1995": 0.434, + "1996": 0.436, + "1997": 0.441, + "1998": 0.444, + "1999": 0.453, + "2000": 0.462, + "2001": 0.473, + "2002": 0.483, + "2003": 0.495, + "2004": 0.513, + "2005": 0.536, + "2006": 0.558, + "2007": 0.573, + "2008": 0.583, + "2009": 0.595, + "2010": 0.605, + "2011": 0.62, + "2012": 0.626, + "2013": 0.633, + "2014": 0.635, + "2015": 0.638, + "2016": 0.639, + "2017": 0.646, + "2018": 0.655, + "2019": 0.659, + "2020": 0.657, + "2021": 0.655 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr104", + "Region": "East Central (Busoga)", + "1990": 0.431, + "1991": 0.429, + "1992": 0.43, + "1993": 0.428, + "1994": 0.43, + "1995": 0.433, + "1996": 0.435, + "1997": 0.44, + "1998": 0.443, + "1999": 0.452, + "2000": 0.461, + "2001": 0.472, + "2002": 0.482, + "2003": 0.494, + "2004": 0.512, + "2005": 0.535, + "2006": 0.557, + "2007": 0.565, + "2008": 0.568, + "2009": 0.573, + "2010": 0.576, + "2011": 0.584, + "2012": 0.593, + "2013": 0.603, + "2014": 0.608, + "2015": 0.614, + "2016": 0.618, + "2017": 0.625, + "2018": 0.634, + "2019": 0.639, + "2020": 0.636, + "2021": 0.634 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr105", + "Region": "Eastern (Bukedi, Bugishu, Teso)", + "1990": 0.448, + "1991": 0.446, + "1992": 0.447, + "1993": 0.444, + "1994": 0.446, + "1995": 0.45, + "1996": 0.452, + "1997": 0.456, + "1998": 0.46, + "1999": 0.47, + "2000": 0.479, + "2001": 0.49, + "2002": 0.5, + "2003": 0.512, + "2004": 0.531, + "2005": 0.554, + "2006": 0.577, + "2007": 0.588, + "2008": 0.595, + "2009": 0.603, + "2010": 0.609, + "2011": 0.621, + "2012": 0.63, + "2013": 0.641, + "2014": 0.647, + "2015": 0.654, + "2016": 0.659, + "2017": 0.666, + "2018": 0.675, + "2019": 0.68, + "2020": 0.678, + "2021": 0.675 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr103", + "Region": "Kampala", + "1990": 0.478, + "1991": 0.476, + "1992": 0.476, + "1993": 0.474, + "1994": 0.476, + "1995": 0.48, + "1996": 0.482, + "1997": 0.487, + "1998": 0.49, + "1999": 0.5, + "2000": 0.51, + "2001": 0.521, + "2002": 0.532, + "2003": 0.544, + "2004": 0.564, + "2005": 0.588, + "2006": 0.612, + "2007": 0.625, + "2008": 0.633, + "2009": 0.643, + "2010": 0.651, + "2011": 0.665, + "2012": 0.666, + "2013": 0.668, + "2014": 0.665, + "2015": 0.663, + "2016": 0.659, + "2017": 0.667, + "2018": 0.676, + "2019": 0.681, + "2020": 0.678, + "2021": 0.676 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr106", + "Region": "North (Karamoja, Lango, Acholi)", + "1990": 0.379, + "1991": 0.377, + "1992": 0.378, + "1993": 0.376, + "1994": 0.378, + "1995": 0.381, + "1996": 0.383, + "1997": 0.387, + "1998": 0.39, + "1999": 0.399, + "2000": 0.407, + "2001": 0.417, + "2002": 0.427, + "2003": 0.437, + "2004": 0.455, + "2005": 0.476, + "2006": 0.497, + "2007": 0.512, + "2008": 0.523, + "2009": 0.535, + "2010": 0.545, + "2011": 0.561, + "2012": 0.578, + "2013": 0.597, + "2014": 0.61, + "2015": 0.625, + "2016": 0.637, + "2017": 0.645, + "2018": 0.654, + "2019": 0.658, + "2020": 0.656, + "2021": 0.654 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr109", + "Region": "Southwest (Ankole, Kigezi)", + "1990": 0.38, + "1991": 0.378, + "1992": 0.379, + "1993": 0.377, + "1994": 0.379, + "1995": 0.382, + "1996": 0.384, + "1997": 0.388, + "1998": 0.391, + "1999": 0.4, + "2000": 0.408, + "2001": 0.418, + "2002": 0.428, + "2003": 0.438, + "2004": 0.456, + "2005": 0.477, + "2006": 0.498, + "2007": 0.51, + "2008": 0.518, + "2009": 0.527, + "2010": 0.535, + "2011": 0.548, + "2012": 0.57, + "2013": 0.593, + "2014": 0.611, + "2015": 0.63, + "2016": 0.647, + "2017": 0.654, + "2018": 0.663, + "2019": 0.667, + "2020": 0.665, + "2021": 0.663 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr107", + "Region": "West Nile", + "1990": 0.37, + "1991": 0.369, + "1992": 0.369, + "1993": 0.367, + "1994": 0.369, + "1995": 0.372, + "1996": 0.374, + "1997": 0.378, + "1998": 0.381, + "1999": 0.39, + "2000": 0.398, + "2001": 0.408, + "2002": 0.417, + "2003": 0.428, + "2004": 0.445, + "2005": 0.466, + "2006": 0.486, + "2007": 0.502, + "2008": 0.513, + "2009": 0.526, + "2010": 0.537, + "2011": 0.553, + "2012": 0.567, + "2013": 0.583, + "2014": 0.594, + "2015": 0.606, + "2016": 0.615, + "2017": 0.622, + "2018": 0.631, + "2019": 0.636, + "2020": 0.633, + "2021": 0.631 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr108", + "Region": "Western (Bunyoro, Tooro)", + "1990": 0.404, + "1991": 0.402, + "1992": 0.403, + "1993": 0.401, + "1994": 0.403, + "1995": 0.406, + "1996": 0.408, + "1997": 0.412, + "1998": 0.415, + "1999": 0.425, + "2000": 0.433, + "2001": 0.443, + "2002": 0.453, + "2003": 0.464, + "2004": 0.482, + "2005": 0.504, + "2006": 0.526, + "2007": 0.536, + "2008": 0.542, + "2009": 0.55, + "2010": 0.556, + "2011": 0.567, + "2012": 0.579, + "2013": 0.593, + "2014": 0.601, + "2015": 0.611, + "2016": 0.619, + "2017": 0.626, + "2018": 0.635, + "2019": 0.639, + "2020": 0.637, + "2021": 0.634 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "National", + "GDLCODE": "UKRt", + "Region": "Total", + "1990": 0.766, + "1991": 0.755, + "1992": 0.748, + "1993": 0.737, + "1994": 0.73, + "1995": 0.72, + "1996": 0.725, + "1997": 0.733, + "1998": 0.745, + "1999": 0.74, + "2000": 0.736, + "2001": 0.741, + "2002": 0.741, + "2003": 0.742, + "2004": 0.745, + "2005": 0.741, + "2006": 0.75, + "2007": 0.75, + "2008": 0.756, + "2009": 0.773, + "2010": 0.779, + "2011": 0.791, + "2012": 0.794, + "2013": 0.798, + "2014": 0.809, + "2015": 0.822, + "2016": 0.836, + "2017": 0.842, + "2018": 0.837, + "2019": 0.839, + "2020": 0.809, + "2021": 0.794 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr102", + "Region": "Central", + "1990": 0.766, + "1991": 0.755, + "1992": 0.748, + "1993": 0.737, + "1994": 0.73, + "1995": 0.72, + "1996": 0.725, + "1997": 0.733, + "1998": 0.745, + "1999": 0.74, + "2000": 0.736, + "2001": 0.741, + "2002": 0.741, + "2003": 0.742, + "2004": 0.745, + "2005": 0.741, + "2006": 0.75, + "2007": 0.75, + "2008": 0.756, + "2009": 0.773, + "2010": 0.779, + "2011": 0.791, + "2012": 0.794, + "2013": 0.798, + "2014": 0.809, + "2015": 0.822, + "2016": 0.836, + "2017": 0.842, + "2018": 0.837, + "2019": 0.839, + "2020": 0.809, + "2021": 0.794 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr103", + "Region": "East", + "1990": 0.766, + "1991": 0.755, + "1992": 0.748, + "1993": 0.737, + "1994": 0.73, + "1995": 0.72, + "1996": 0.725, + "1997": 0.733, + "1998": 0.745, + "1999": 0.74, + "2000": 0.736, + "2001": 0.741, + "2002": 0.741, + "2003": 0.742, + "2004": 0.745, + "2005": 0.741, + "2006": 0.75, + "2007": 0.75, + "2008": 0.756, + "2009": 0.773, + "2010": 0.779, + "2011": 0.791, + "2012": 0.794, + "2013": 0.798, + "2014": 0.809, + "2015": 0.822, + "2016": 0.836, + "2017": 0.842, + "2018": 0.837, + "2019": 0.839, + "2020": 0.809, + "2021": 0.794 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr101", + "Region": "North", + "1990": 0.766, + "1991": 0.755, + "1992": 0.748, + "1993": 0.737, + "1994": 0.73, + "1995": 0.72, + "1996": 0.725, + "1997": 0.733, + "1998": 0.745, + "1999": 0.74, + "2000": 0.736, + "2001": 0.741, + "2002": 0.741, + "2003": 0.742, + "2004": 0.745, + "2005": 0.741, + "2006": 0.75, + "2007": 0.75, + "2008": 0.756, + "2009": 0.773, + "2010": 0.779, + "2011": 0.791, + "2012": 0.794, + "2013": 0.798, + "2014": 0.809, + "2015": 0.822, + "2016": 0.836, + "2017": 0.842, + "2018": 0.837, + "2019": 0.839, + "2020": 0.809, + "2021": 0.794 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr104", + "Region": "South", + "1990": 0.766, + "1991": 0.755, + "1992": 0.748, + "1993": 0.737, + "1994": 0.73, + "1995": 0.72, + "1996": 0.725, + "1997": 0.733, + "1998": 0.745, + "1999": 0.74, + "2000": 0.736, + "2001": 0.741, + "2002": 0.741, + "2003": 0.742, + "2004": 0.745, + "2005": 0.741, + "2006": 0.75, + "2007": 0.75, + "2008": 0.756, + "2009": 0.773, + "2010": 0.779, + "2011": 0.791, + "2012": 0.794, + "2013": 0.798, + "2014": 0.809, + "2015": 0.822, + "2016": 0.836, + "2017": 0.842, + "2018": 0.837, + "2019": 0.839, + "2020": 0.809, + "2021": 0.794 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr105", + "Region": "West", + "1990": 0.766, + "1991": 0.755, + "1992": 0.748, + "1993": 0.737, + "1994": 0.73, + "1995": 0.72, + "1996": 0.725, + "1997": 0.733, + "1998": 0.745, + "1999": 0.74, + "2000": 0.736, + "2001": 0.741, + "2002": 0.741, + "2003": 0.742, + "2004": 0.745, + "2005": 0.741, + "2006": 0.75, + "2007": 0.75, + "2008": 0.756, + "2009": 0.773, + "2010": 0.779, + "2011": 0.791, + "2012": 0.794, + "2013": 0.798, + "2014": 0.809, + "2015": 0.822, + "2016": 0.836, + "2017": 0.842, + "2018": 0.837, + "2019": 0.839, + "2020": 0.809, + "2021": 0.794 + }, + { + "Country": "United Arab Emirates", + "Continent": "Asia/Pacific", + "ISO_Code": "ARE", + "Level": "National", + "GDLCODE": "AREt", + "Region": "Total", + "1990": 0.798, + "1991": 0.804, + "1992": 0.805, + "1993": 0.808, + "1994": 0.809, + "1995": 0.811, + "1996": 0.812, + "1997": 0.814, + "1998": 0.816, + "1999": 0.826, + "2000": 0.837, + "2001": 0.841, + "2002": 0.845, + "2003": 0.865, + "2004": 0.869, + "2005": 0.872, + "2006": 0.876, + "2007": 0.879, + "2008": 0.884, + "2009": 0.892, + "2010": 0.897, + "2011": 0.9, + "2012": 0.903, + "2013": 0.905, + "2014": 0.908, + "2015": 0.911, + "2016": 0.913, + "2017": 0.915, + "2018": 0.917, + "2019": 0.919, + "2020": 0.907, + "2021": 0.903 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "National", + "GDLCODE": "GBRt", + "Region": "Total", + "1990": 0.857, + "1991": 0.86, + "1992": 0.866, + "1993": 0.864, + "1994": 0.873, + "1995": 0.871, + "1996": 0.875, + "1997": 0.879, + "1998": 0.881, + "1999": 0.883, + "2000": 0.89, + "2001": 0.894, + "2002": 0.896, + "2003": 0.897, + "2004": 0.906, + "2005": 0.909, + "2006": 0.913, + "2007": 0.916, + "2008": 0.918, + "2009": 0.926, + "2010": 0.929, + "2011": 0.935, + "2012": 0.936, + "2013": 0.937, + "2014": 0.941, + "2015": 0.937, + "2016": 0.94, + "2017": 0.941, + "2018": 0.94, + "2019": 0.95, + "2020": 0.93, + "2021": 0.934 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr104", + "Region": "East Midlands", + "1990": 0.857, + "1991": 0.859, + "1992": 0.865, + "1993": 0.863, + "1994": 0.872, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.88, + "1999": 0.881, + "2000": 0.893, + "2001": 0.899, + "2002": 0.898, + "2003": 0.898, + "2004": 0.908, + "2005": 0.913, + "2006": 0.915, + "2007": 0.92, + "2008": 0.92, + "2009": 0.928, + "2010": 0.933, + "2011": 0.939, + "2012": 0.941, + "2013": 0.939, + "2014": 0.941, + "2015": 0.936, + "2016": 0.94, + "2017": 0.94, + "2018": 0.938, + "2019": 0.947, + "2020": 0.927, + "2021": 0.932 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr106", + "Region": "East of England", + "1990": 0.873, + "1991": 0.875, + "1992": 0.882, + "1993": 0.879, + "1994": 0.887, + "1995": 0.886, + "1996": 0.89, + "1997": 0.895, + "1998": 0.897, + "1999": 0.899, + "2000": 0.909, + "2001": 0.911, + "2002": 0.914, + "2003": 0.915, + "2004": 0.923, + "2005": 0.927, + "2006": 0.931, + "2007": 0.936, + "2008": 0.936, + "2009": 0.944, + "2010": 0.946, + "2011": 0.954, + "2012": 0.954, + "2013": 0.953, + "2014": 0.955, + "2015": 0.953, + "2016": 0.954, + "2017": 0.955, + "2018": 0.953, + "2019": 0.962, + "2020": 0.942, + "2021": 0.947 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr107", + "Region": "London", + "1990": 0.945, + "1991": 0.948, + "1992": 0.955, + "1993": 0.952, + "1994": 0.951, + "1995": 0.947, + "1996": 0.95, + "1997": 0.952, + "1998": 0.952, + "1999": 0.952, + "2000": 0.957, + "2001": 0.957, + "2002": 0.958, + "2003": 0.958, + "2004": 0.958, + "2005": 0.957, + "2006": 0.956, + "2007": 0.956, + "2008": 0.956, + "2009": 0.955, + "2010": 0.956, + "2011": 0.956, + "2012": 0.957, + "2013": 0.955, + "2014": 0.958, + "2015": 0.953, + "2016": 0.963, + "2017": 0.964, + "2018": 0.964, + "2019": 0.973, + "2020": 0.953, + "2021": 0.958 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr101", + "Region": "North East", + "1990": 0.833, + "1991": 0.836, + "1992": 0.842, + "1993": 0.84, + "1994": 0.85, + "1995": 0.849, + "1996": 0.854, + "1997": 0.858, + "1998": 0.861, + "1999": 0.863, + "2000": 0.873, + "2001": 0.876, + "2002": 0.879, + "2003": 0.882, + "2004": 0.885, + "2005": 0.894, + "2006": 0.895, + "2007": 0.9, + "2008": 0.899, + "2009": 0.91, + "2010": 0.916, + "2011": 0.918, + "2012": 0.922, + "2013": 0.92, + "2014": 0.916, + "2015": 0.917, + "2016": 0.918, + "2017": 0.921, + "2018": 0.918, + "2019": 0.927, + "2020": 0.907, + "2021": 0.912 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr102", + "Region": "North West", + "1990": 0.836, + "1991": 0.839, + "1992": 0.845, + "1993": 0.843, + "1994": 0.852, + "1995": 0.85, + "1996": 0.854, + "1997": 0.857, + "1998": 0.859, + "1999": 0.86, + "2000": 0.872, + "2001": 0.874, + "2002": 0.88, + "2003": 0.881, + "2004": 0.89, + "2005": 0.892, + "2006": 0.896, + "2007": 0.898, + "2008": 0.901, + "2009": 0.908, + "2010": 0.912, + "2011": 0.919, + "2012": 0.921, + "2013": 0.92, + "2014": 0.922, + "2015": 0.92, + "2016": 0.919, + "2017": 0.923, + "2018": 0.924, + "2019": 0.933, + "2020": 0.913, + "2021": 0.918 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr112", + "Region": "Northern Ireland", + "1990": 0.845, + "1991": 0.847, + "1992": 0.853, + "1993": 0.851, + "1994": 0.858, + "1995": 0.857, + "1996": 0.862, + "1997": 0.867, + "1998": 0.87, + "1999": 0.872, + "2000": 0.885, + "2001": 0.892, + "2002": 0.893, + "2003": 0.899, + "2004": 0.902, + "2005": 0.906, + "2006": 0.905, + "2007": 0.908, + "2008": 0.909, + "2009": 0.915, + "2010": 0.917, + "2011": 0.928, + "2012": 0.928, + "2013": 0.926, + "2014": 0.932, + "2015": 0.929, + "2016": 0.937, + "2017": 0.93, + "2018": 0.934, + "2019": 0.943, + "2020": 0.923, + "2021": 0.928 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr111", + "Region": "Scotland", + "1990": 0.852, + "1991": 0.855, + "1992": 0.861, + "1993": 0.859, + "1994": 0.858, + "1995": 0.854, + "1996": 0.856, + "1997": 0.859, + "1998": 0.859, + "1999": 0.858, + "2000": 0.863, + "2001": 0.866, + "2002": 0.866, + "2003": 0.869, + "2004": 0.877, + "2005": 0.882, + "2006": 0.884, + "2007": 0.884, + "2008": 0.888, + "2009": 0.897, + "2010": 0.901, + "2011": 0.905, + "2012": 0.907, + "2013": 0.91, + "2014": 0.914, + "2015": 0.908, + "2016": 0.909, + "2017": 0.906, + "2018": 0.909, + "2019": 0.918, + "2020": 0.898, + "2021": 0.903 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr108", + "Region": "South East", + "1990": 0.874, + "1991": 0.877, + "1992": 0.883, + "1993": 0.88, + "1994": 0.89, + "1995": 0.888, + "1996": 0.892, + "1997": 0.896, + "1998": 0.899, + "1999": 0.9, + "2000": 0.91, + "2001": 0.914, + "2002": 0.916, + "2003": 0.918, + "2004": 0.927, + "2005": 0.93, + "2006": 0.934, + "2007": 0.939, + "2008": 0.942, + "2009": 0.947, + "2010": 0.949, + "2011": 0.956, + "2012": 0.957, + "2013": 0.954, + "2014": 0.959, + "2015": 0.957, + "2016": 0.958, + "2017": 0.959, + "2018": 0.96, + "2019": 0.97, + "2020": 0.949, + "2021": 0.954 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr109", + "Region": "South West", + "1990": 0.88, + "1991": 0.883, + "1992": 0.889, + "1993": 0.887, + "1994": 0.896, + "1995": 0.893, + "1996": 0.897, + "1997": 0.9, + "1998": 0.902, + "1999": 0.903, + "2000": 0.91, + "2001": 0.916, + "2002": 0.916, + "2003": 0.919, + "2004": 0.929, + "2005": 0.93, + "2006": 0.936, + "2007": 0.937, + "2008": 0.938, + "2009": 0.944, + "2010": 0.949, + "2011": 0.954, + "2012": 0.954, + "2013": 0.949, + "2014": 0.957, + "2015": 0.951, + "2016": 0.95, + "2017": 0.955, + "2018": 0.953, + "2019": 0.962, + "2020": 0.942, + "2021": 0.947 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr110", + "Region": "Wales", + "1990": 0.853, + "1991": 0.855, + "1992": 0.862, + "1993": 0.859, + "1994": 0.868, + "1995": 0.865, + "1996": 0.868, + "1997": 0.87, + "1998": 0.871, + "1999": 0.871, + "2000": 0.884, + "2001": 0.888, + "2002": 0.892, + "2003": 0.891, + "2004": 0.9, + "2005": 0.905, + "2006": 0.91, + "2007": 0.907, + "2008": 0.912, + "2009": 0.919, + "2010": 0.922, + "2011": 0.928, + "2012": 0.928, + "2013": 0.924, + "2014": 0.933, + "2015": 0.925, + "2016": 0.926, + "2017": 0.929, + "2018": 0.926, + "2019": 0.935, + "2020": 0.915, + "2021": 0.92 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr105", + "Region": "West Midlands", + "1990": 0.851, + "1991": 0.854, + "1992": 0.86, + "1993": 0.858, + "1994": 0.866, + "1995": 0.865, + "1996": 0.868, + "1997": 0.872, + "1998": 0.874, + "1999": 0.876, + "2000": 0.885, + "2001": 0.891, + "2002": 0.894, + "2003": 0.891, + "2004": 0.903, + "2005": 0.904, + "2006": 0.908, + "2007": 0.913, + "2008": 0.914, + "2009": 0.925, + "2010": 0.928, + "2011": 0.936, + "2012": 0.936, + "2013": 0.932, + "2014": 0.934, + "2015": 0.931, + "2016": 0.933, + "2017": 0.935, + "2018": 0.932, + "2019": 0.941, + "2020": 0.921, + "2021": 0.926 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr103", + "Region": "Yorkshire and The Humber", + "1990": 0.851, + "1991": 0.853, + "1992": 0.86, + "1993": 0.857, + "1994": 0.865, + "1995": 0.863, + "1996": 0.868, + "1997": 0.872, + "1998": 0.875, + "1999": 0.877, + "2000": 0.886, + "2001": 0.891, + "2002": 0.891, + "2003": 0.894, + "2004": 0.901, + "2005": 0.903, + "2006": 0.908, + "2007": 0.909, + "2008": 0.91, + "2009": 0.919, + "2010": 0.922, + "2011": 0.927, + "2012": 0.929, + "2013": 0.927, + "2014": 0.932, + "2015": 0.928, + "2016": 0.93, + "2017": 0.931, + "2018": 0.929, + "2019": 0.938, + "2020": 0.918, + "2021": 0.923 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "National", + "GDLCODE": "USAt", + "Region": "Total", + "1990": 0.852, + "1991": 0.854, + "1992": 0.858, + "1993": 0.855, + "1994": 0.858, + "1995": 0.859, + "1996": 0.864, + "1997": 0.869, + "1998": 0.872, + "1999": 0.872, + "2000": 0.874, + "2001": 0.876, + "2002": 0.877, + "2003": 0.879, + "2004": 0.886, + "2005": 0.885, + "2006": 0.89, + "2007": 0.894, + "2008": 0.895, + "2009": 0.901, + "2010": 0.904, + "2011": 0.905, + "2012": 0.907, + "2013": 0.907, + "2014": 0.908, + "2015": 0.906, + "2016": 0.905, + "2017": 0.905, + "2018": 0.908, + "2019": 0.91, + "2020": 0.883, + "2021": 0.88 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr101", + "Region": "Alabama", + "1990": 0.826, + "1991": 0.827, + "1992": 0.83, + "1993": 0.825, + "1994": 0.826, + "1995": 0.827, + "1996": 0.83, + "1997": 0.834, + "1998": 0.835, + "1999": 0.834, + "2000": 0.835, + "2001": 0.835, + "2002": 0.835, + "2003": 0.836, + "2004": 0.841, + "2005": 0.839, + "2006": 0.842, + "2007": 0.845, + "2008": 0.846, + "2009": 0.85, + "2010": 0.852, + "2011": 0.853, + "2012": 0.854, + "2013": 0.854, + "2014": 0.854, + "2015": 0.852, + "2016": 0.852, + "2017": 0.851, + "2018": 0.854, + "2019": 0.856, + "2020": 0.83, + "2021": 0.827 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr102", + "Region": "Alaska", + "1990": 0.86, + "1991": 0.861, + "1992": 0.864, + "1993": 0.859, + "1994": 0.861, + "1995": 0.862, + "1996": 0.866, + "1997": 0.87, + "1998": 0.872, + "1999": 0.871, + "2000": 0.872, + "2001": 0.875, + "2002": 0.876, + "2003": 0.879, + "2004": 0.885, + "2005": 0.885, + "2006": 0.888, + "2007": 0.891, + "2008": 0.891, + "2009": 0.895, + "2010": 0.896, + "2011": 0.897, + "2012": 0.898, + "2013": 0.898, + "2014": 0.899, + "2015": 0.896, + "2016": 0.896, + "2017": 0.896, + "2018": 0.898, + "2019": 0.901, + "2020": 0.874, + "2021": 0.871 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr103", + "Region": "Arizona", + "1990": 0.866, + "1991": 0.868, + "1992": 0.871, + "1993": 0.867, + "1994": 0.869, + "1995": 0.87, + "1996": 0.875, + "1997": 0.879, + "1998": 0.881, + "1999": 0.881, + "2000": 0.883, + "2001": 0.884, + "2002": 0.885, + "2003": 0.887, + "2004": 0.893, + "2005": 0.892, + "2006": 0.898, + "2007": 0.903, + "2008": 0.905, + "2009": 0.912, + "2010": 0.917, + "2011": 0.917, + "2012": 0.918, + "2013": 0.918, + "2014": 0.919, + "2015": 0.916, + "2016": 0.916, + "2017": 0.916, + "2018": 0.918, + "2019": 0.921, + "2020": 0.894, + "2021": 0.891 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr104", + "Region": "Arkansas", + "1990": 0.836, + "1991": 0.837, + "1992": 0.84, + "1993": 0.835, + "1994": 0.837, + "1995": 0.837, + "1996": 0.841, + "1997": 0.844, + "1998": 0.846, + "1999": 0.845, + "2000": 0.846, + "2001": 0.846, + "2002": 0.846, + "2003": 0.847, + "2004": 0.851, + "2005": 0.85, + "2006": 0.853, + "2007": 0.856, + "2008": 0.856, + "2009": 0.861, + "2010": 0.862, + "2011": 0.862, + "2012": 0.864, + "2013": 0.863, + "2014": 0.863, + "2015": 0.861, + "2016": 0.861, + "2017": 0.86, + "2018": 0.863, + "2019": 0.865, + "2020": 0.84, + "2021": 0.836 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr105", + "Region": "California", + "1990": 0.862, + "1991": 0.865, + "1992": 0.87, + "1993": 0.867, + "1994": 0.871, + "1995": 0.873, + "1996": 0.88, + "1997": 0.886, + "1998": 0.89, + "1999": 0.891, + "2000": 0.895, + "2001": 0.897, + "2002": 0.898, + "2003": 0.901, + "2004": 0.908, + "2005": 0.908, + "2006": 0.914, + "2007": 0.919, + "2008": 0.922, + "2009": 0.929, + "2010": 0.934, + "2011": 0.934, + "2012": 0.936, + "2013": 0.936, + "2014": 0.937, + "2015": 0.935, + "2016": 0.935, + "2017": 0.934, + "2018": 0.937, + "2019": 0.939, + "2020": 0.912, + "2021": 0.909 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr106", + "Region": "Colorado", + "1990": 0.878, + "1991": 0.88, + "1992": 0.883, + "1993": 0.879, + "1994": 0.881, + "1995": 0.882, + "1996": 0.887, + "1997": 0.892, + "1998": 0.894, + "1999": 0.894, + "2000": 0.896, + "2001": 0.898, + "2002": 0.898, + "2003": 0.9, + "2004": 0.906, + "2005": 0.906, + "2006": 0.91, + "2007": 0.913, + "2008": 0.914, + "2009": 0.92, + "2010": 0.923, + "2011": 0.923, + "2012": 0.925, + "2013": 0.924, + "2014": 0.925, + "2015": 0.923, + "2016": 0.922, + "2017": 0.922, + "2018": 0.924, + "2019": 0.927, + "2020": 0.9, + "2021": 0.897 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr107", + "Region": "Connecticut", + "1990": 0.877, + "1991": 0.878, + "1992": 0.881, + "1993": 0.877, + "1994": 0.879, + "1995": 0.88, + "1996": 0.886, + "1997": 0.891, + "1998": 0.894, + "1999": 0.895, + "2000": 0.898, + "2001": 0.901, + "2002": 0.903, + "2003": 0.906, + "2004": 0.913, + "2005": 0.914, + "2006": 0.919, + "2007": 0.923, + "2008": 0.924, + "2009": 0.93, + "2010": 0.934, + "2011": 0.934, + "2012": 0.936, + "2013": 0.936, + "2014": 0.937, + "2015": 0.935, + "2016": 0.935, + "2017": 0.934, + "2018": 0.937, + "2019": 0.939, + "2020": 0.912, + "2021": 0.909 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr108", + "Region": "Delaware", + "1990": 0.844, + "1991": 0.847, + "1992": 0.852, + "1993": 0.849, + "1994": 0.852, + "1995": 0.855, + "1996": 0.859, + "1997": 0.864, + "1998": 0.867, + "1999": 0.867, + "2000": 0.869, + "2001": 0.87, + "2002": 0.871, + "2003": 0.873, + "2004": 0.879, + "2005": 0.879, + "2006": 0.883, + "2007": 0.887, + "2008": 0.888, + "2009": 0.894, + "2010": 0.897, + "2011": 0.898, + "2012": 0.899, + "2013": 0.899, + "2014": 0.9, + "2015": 0.898, + "2016": 0.898, + "2017": 0.897, + "2018": 0.9, + "2019": 0.902, + "2020": 0.876, + "2021": 0.872 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr109", + "Region": "District of Columbia", + "1990": 0.733, + "1991": 0.736, + "1992": 0.742, + "1993": 0.74, + "1994": 0.744, + "1995": 0.747, + "1996": 0.761, + "1997": 0.775, + "1998": 0.786, + "1999": 0.795, + "2000": 0.806, + "2001": 0.81, + "2002": 0.812, + "2003": 0.816, + "2004": 0.824, + "2005": 0.825, + "2006": 0.835, + "2007": 0.845, + "2008": 0.852, + "2009": 0.864, + "2010": 0.873, + "2011": 0.872, + "2012": 0.872, + "2013": 0.871, + "2014": 0.871, + "2015": 0.869, + "2016": 0.868, + "2017": 0.868, + "2018": 0.871, + "2019": 0.873, + "2020": 0.847, + "2021": 0.844 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr110", + "Region": "Florida", + "1990": 0.86, + "1991": 0.862, + "1992": 0.866, + "1993": 0.863, + "1994": 0.865, + "1995": 0.867, + "1996": 0.872, + "1997": 0.877, + "1998": 0.88, + "1999": 0.88, + "2000": 0.883, + "2001": 0.884, + "2002": 0.885, + "2003": 0.887, + "2004": 0.893, + "2005": 0.892, + "2006": 0.897, + "2007": 0.901, + "2008": 0.903, + "2009": 0.909, + "2010": 0.912, + "2011": 0.913, + "2012": 0.915, + "2013": 0.915, + "2014": 0.916, + "2015": 0.913, + "2016": 0.913, + "2017": 0.913, + "2018": 0.915, + "2019": 0.918, + "2020": 0.891, + "2021": 0.887 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr111", + "Region": "Georgia", + "1990": 0.824, + "1991": 0.826, + "1992": 0.83, + "1993": 0.827, + "1994": 0.83, + "1995": 0.832, + "1996": 0.836, + "1997": 0.841, + "1998": 0.844, + "1999": 0.844, + "2000": 0.846, + "2001": 0.848, + "2002": 0.849, + "2003": 0.852, + "2004": 0.858, + "2005": 0.858, + "2006": 0.863, + "2007": 0.867, + "2008": 0.869, + "2009": 0.875, + "2010": 0.879, + "2011": 0.879, + "2012": 0.881, + "2013": 0.881, + "2014": 0.882, + "2015": 0.88, + "2016": 0.879, + "2017": 0.879, + "2018": 0.881, + "2019": 0.884, + "2020": 0.858, + "2021": 0.854 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr112", + "Region": "Hawaii", + "1990": 0.902, + "1991": 0.904, + "1992": 0.907, + "1993": 0.902, + "1994": 0.904, + "1995": 0.905, + "1996": 0.909, + "1997": 0.914, + "1998": 0.916, + "1999": 0.916, + "2000": 0.917, + "2001": 0.919, + "2002": 0.919, + "2003": 0.921, + "2004": 0.927, + "2005": 0.926, + "2006": 0.929, + "2007": 0.932, + "2008": 0.932, + "2009": 0.936, + "2010": 0.938, + "2011": 0.94, + "2012": 0.942, + "2013": 0.943, + "2014": 0.945, + "2015": 0.943, + "2016": 0.942, + "2017": 0.942, + "2018": 0.944, + "2019": 0.947, + "2020": 0.92, + "2021": 0.916 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr113", + "Region": "Idaho", + "1990": 0.876, + "1991": 0.878, + "1992": 0.882, + "1993": 0.878, + "1994": 0.881, + "1995": 0.882, + "1996": 0.886, + "1997": 0.89, + "1998": 0.891, + "1999": 0.89, + "2000": 0.891, + "2001": 0.892, + "2002": 0.892, + "2003": 0.893, + "2004": 0.898, + "2005": 0.897, + "2006": 0.901, + "2007": 0.904, + "2008": 0.905, + "2009": 0.909, + "2010": 0.912, + "2011": 0.913, + "2012": 0.915, + "2013": 0.916, + "2014": 0.917, + "2015": 0.915, + "2016": 0.915, + "2017": 0.914, + "2018": 0.917, + "2019": 0.919, + "2020": 0.892, + "2021": 0.889 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr114", + "Region": "Illinois", + "1990": 0.846, + "1991": 0.848, + "1992": 0.852, + "1993": 0.848, + "1994": 0.851, + "1995": 0.852, + "1996": 0.858, + "1997": 0.863, + "1998": 0.866, + "1999": 0.867, + "2000": 0.869, + "2001": 0.872, + "2002": 0.874, + "2003": 0.877, + "2004": 0.885, + "2005": 0.885, + "2006": 0.89, + "2007": 0.895, + "2008": 0.897, + "2009": 0.903, + "2010": 0.907, + "2011": 0.908, + "2012": 0.909, + "2013": 0.909, + "2014": 0.91, + "2015": 0.907, + "2016": 0.907, + "2017": 0.906, + "2018": 0.909, + "2019": 0.911, + "2020": 0.885, + "2021": 0.881 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr115", + "Region": "Indiana", + "1990": 0.852, + "1991": 0.853, + "1992": 0.856, + "1993": 0.851, + "1994": 0.853, + "1995": 0.853, + "1996": 0.857, + "1997": 0.861, + "1998": 0.862, + "1999": 0.861, + "2000": 0.862, + "2001": 0.864, + "2002": 0.864, + "2003": 0.866, + "2004": 0.871, + "2005": 0.871, + "2006": 0.874, + "2007": 0.877, + "2008": 0.877, + "2009": 0.882, + "2010": 0.884, + "2011": 0.885, + "2012": 0.887, + "2013": 0.887, + "2014": 0.888, + "2015": 0.886, + "2016": 0.885, + "2017": 0.885, + "2018": 0.888, + "2019": 0.89, + "2020": 0.864, + "2021": 0.86 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr116", + "Region": "Iowa", + "1990": 0.877, + "1991": 0.879, + "1992": 0.882, + "1993": 0.879, + "1994": 0.881, + "1995": 0.882, + "1996": 0.886, + "1997": 0.891, + "1998": 0.892, + "1999": 0.891, + "2000": 0.893, + "2001": 0.894, + "2002": 0.894, + "2003": 0.896, + "2004": 0.902, + "2005": 0.901, + "2006": 0.904, + "2007": 0.906, + "2008": 0.906, + "2009": 0.91, + "2010": 0.912, + "2011": 0.914, + "2012": 0.917, + "2013": 0.918, + "2014": 0.92, + "2015": 0.918, + "2016": 0.918, + "2017": 0.917, + "2018": 0.92, + "2019": 0.922, + "2020": 0.895, + "2021": 0.892 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr117", + "Region": "Kansas", + "1990": 0.873, + "1991": 0.874, + "1992": 0.877, + "1993": 0.872, + "1994": 0.873, + "1995": 0.874, + "1996": 0.877, + "1997": 0.881, + "1998": 0.882, + "1999": 0.88, + "2000": 0.881, + "2001": 0.882, + "2002": 0.881, + "2003": 0.883, + "2004": 0.888, + "2005": 0.886, + "2006": 0.89, + "2007": 0.892, + "2008": 0.893, + "2009": 0.897, + "2010": 0.9, + "2011": 0.901, + "2012": 0.903, + "2013": 0.903, + "2014": 0.905, + "2015": 0.903, + "2016": 0.902, + "2017": 0.902, + "2018": 0.904, + "2019": 0.907, + "2020": 0.88, + "2021": 0.877 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr118", + "Region": "Kentucky", + "1990": 0.835, + "1991": 0.836, + "1992": 0.839, + "1993": 0.835, + "1994": 0.837, + "1995": 0.838, + "1996": 0.842, + "1997": 0.845, + "1998": 0.847, + "1999": 0.846, + "2000": 0.847, + "2001": 0.847, + "2002": 0.847, + "2003": 0.848, + "2004": 0.852, + "2005": 0.851, + "2006": 0.854, + "2007": 0.856, + "2008": 0.856, + "2009": 0.86, + "2010": 0.862, + "2011": 0.862, + "2012": 0.863, + "2013": 0.863, + "2014": 0.863, + "2015": 0.861, + "2016": 0.861, + "2017": 0.86, + "2018": 0.863, + "2019": 0.865, + "2020": 0.84, + "2021": 0.836 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr119", + "Region": "Louisiana", + "1990": 0.818, + "1991": 0.819, + "1992": 0.822, + "1993": 0.818, + "1994": 0.819, + "1995": 0.82, + "1996": 0.824, + "1997": 0.828, + "1998": 0.83, + "1999": 0.829, + "2000": 0.831, + "2001": 0.831, + "2002": 0.83, + "2003": 0.83, + "2004": 0.834, + "2005": 0.832, + "2006": 0.838, + "2007": 0.843, + "2008": 0.845, + "2009": 0.852, + "2010": 0.856, + "2011": 0.857, + "2012": 0.858, + "2013": 0.858, + "2014": 0.859, + "2015": 0.856, + "2016": 0.856, + "2017": 0.856, + "2018": 0.858, + "2019": 0.86, + "2020": 0.835, + "2021": 0.832 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr120", + "Region": "Maine", + "1990": 0.867, + "1991": 0.869, + "1992": 0.873, + "1993": 0.869, + "1994": 0.872, + "1995": 0.873, + "1996": 0.877, + "1997": 0.881, + "1998": 0.883, + "1999": 0.882, + "2000": 0.883, + "2001": 0.884, + "2002": 0.885, + "2003": 0.886, + "2004": 0.892, + "2005": 0.891, + "2006": 0.895, + "2007": 0.899, + "2008": 0.9, + "2009": 0.905, + "2010": 0.908, + "2011": 0.909, + "2012": 0.911, + "2013": 0.911, + "2014": 0.913, + "2015": 0.91, + "2016": 0.91, + "2017": 0.91, + "2018": 0.912, + "2019": 0.914, + "2020": 0.888, + "2021": 0.884 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr121", + "Region": "Maryland", + "1990": 0.844, + "1991": 0.846, + "1992": 0.849, + "1993": 0.845, + "1994": 0.847, + "1995": 0.848, + "1996": 0.853, + "1997": 0.859, + "1998": 0.861, + "1999": 0.862, + "2000": 0.865, + "2001": 0.867, + "2002": 0.869, + "2003": 0.872, + "2004": 0.879, + "2005": 0.88, + "2006": 0.886, + "2007": 0.891, + "2008": 0.893, + "2009": 0.9, + "2010": 0.904, + "2011": 0.905, + "2012": 0.906, + "2013": 0.906, + "2014": 0.906, + "2015": 0.904, + "2016": 0.904, + "2017": 0.903, + "2018": 0.906, + "2019": 0.908, + "2020": 0.882, + "2021": 0.878 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr122", + "Region": "Massachusetts", + "1990": 0.871, + "1991": 0.874, + "1992": 0.878, + "1993": 0.875, + "1994": 0.878, + "1995": 0.88, + "1996": 0.885, + "1997": 0.891, + "1998": 0.894, + "1999": 0.894, + "2000": 0.896, + "2001": 0.898, + "2002": 0.9, + "2003": 0.903, + "2004": 0.909, + "2005": 0.909, + "2006": 0.914, + "2007": 0.918, + "2008": 0.92, + "2009": 0.926, + "2010": 0.93, + "2011": 0.93, + "2012": 0.932, + "2013": 0.932, + "2014": 0.933, + "2015": 0.93, + "2016": 0.93, + "2017": 0.93, + "2018": 0.932, + "2019": 0.935, + "2020": 0.907, + "2021": 0.904 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr123", + "Region": "Michigan", + "1990": 0.848, + "1991": 0.85, + "1992": 0.855, + "1993": 0.851, + "1994": 0.854, + "1995": 0.856, + "1996": 0.861, + "1997": 0.865, + "1998": 0.867, + "1999": 0.866, + "2000": 0.868, + "2001": 0.87, + "2002": 0.871, + "2003": 0.874, + "2004": 0.88, + "2005": 0.88, + "2006": 0.883, + "2007": 0.887, + "2008": 0.887, + "2009": 0.892, + "2010": 0.894, + "2011": 0.895, + "2012": 0.896, + "2013": 0.896, + "2014": 0.897, + "2015": 0.895, + "2016": 0.895, + "2017": 0.894, + "2018": 0.897, + "2019": 0.899, + "2020": 0.873, + "2021": 0.869 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr124", + "Region": "Minnesota", + "1990": 0.887, + "1991": 0.888, + "1992": 0.891, + "1993": 0.887, + "1994": 0.889, + "1995": 0.89, + "1996": 0.895, + "1997": 0.9, + "1998": 0.902, + "1999": 0.902, + "2000": 0.904, + "2001": 0.906, + "2002": 0.908, + "2003": 0.911, + "2004": 0.918, + "2005": 0.919, + "2006": 0.922, + "2007": 0.926, + "2008": 0.926, + "2009": 0.931, + "2010": 0.934, + "2011": 0.935, + "2012": 0.938, + "2013": 0.94, + "2014": 0.942, + "2015": 0.94, + "2016": 0.939, + "2017": 0.939, + "2018": 0.941, + "2019": 0.944, + "2020": 0.917, + "2021": 0.913 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr125", + "Region": "Mississippi", + "1990": 0.815, + "1991": 0.815, + "1992": 0.817, + "1993": 0.812, + "1994": 0.812, + "1995": 0.811, + "1996": 0.815, + "1997": 0.819, + "1998": 0.82, + "1999": 0.82, + "2000": 0.821, + "2001": 0.822, + "2002": 0.822, + "2003": 0.823, + "2004": 0.829, + "2005": 0.828, + "2006": 0.831, + "2007": 0.834, + "2008": 0.835, + "2009": 0.84, + "2010": 0.842, + "2011": 0.844, + "2012": 0.846, + "2013": 0.846, + "2014": 0.848, + "2015": 0.846, + "2016": 0.845, + "2017": 0.845, + "2018": 0.847, + "2019": 0.85, + "2020": 0.824, + "2021": 0.821 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr126", + "Region": "Missouri", + "1990": 0.85, + "1991": 0.851, + "1992": 0.854, + "1993": 0.849, + "1994": 0.85, + "1995": 0.851, + "1996": 0.855, + "1997": 0.859, + "1998": 0.861, + "1999": 0.861, + "2000": 0.862, + "2001": 0.863, + "2002": 0.864, + "2003": 0.865, + "2004": 0.87, + "2005": 0.869, + "2006": 0.873, + "2007": 0.876, + "2008": 0.876, + "2009": 0.881, + "2010": 0.883, + "2011": 0.884, + "2012": 0.886, + "2013": 0.886, + "2014": 0.886, + "2015": 0.884, + "2016": 0.884, + "2017": 0.883, + "2018": 0.886, + "2019": 0.888, + "2020": 0.862, + "2021": 0.859 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr127", + "Region": "Montana", + "1990": 0.869, + "1991": 0.871, + "1992": 0.874, + "1993": 0.87, + "1994": 0.872, + "1995": 0.873, + "1996": 0.877, + "1997": 0.881, + "1998": 0.882, + "1999": 0.881, + "2000": 0.882, + "2001": 0.883, + "2002": 0.883, + "2003": 0.885, + "2004": 0.891, + "2005": 0.89, + "2006": 0.893, + "2007": 0.896, + "2008": 0.896, + "2009": 0.901, + "2010": 0.903, + "2011": 0.902, + "2012": 0.903, + "2013": 0.902, + "2014": 0.902, + "2015": 0.9, + "2016": 0.899, + "2017": 0.899, + "2018": 0.901, + "2019": 0.904, + "2020": 0.877, + "2021": 0.874 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr128", + "Region": "Nebraska", + "1990": 0.874, + "1991": 0.876, + "1992": 0.88, + "1993": 0.876, + "1994": 0.878, + "1995": 0.879, + "1996": 0.883, + "1997": 0.887, + "1998": 0.889, + "1999": 0.888, + "2000": 0.889, + "2001": 0.891, + "2002": 0.892, + "2003": 0.894, + "2004": 0.9, + "2005": 0.9, + "2006": 0.904, + "2007": 0.907, + "2008": 0.908, + "2009": 0.913, + "2010": 0.915, + "2011": 0.916, + "2012": 0.919, + "2013": 0.92, + "2014": 0.922, + "2015": 0.92, + "2016": 0.919, + "2017": 0.919, + "2018": 0.921, + "2019": 0.924, + "2020": 0.897, + "2021": 0.894 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr129", + "Region": "Nevada", + "1990": 0.841, + "1991": 0.843, + "1992": 0.847, + "1993": 0.843, + "1994": 0.845, + "1995": 0.847, + "1996": 0.852, + "1997": 0.857, + "1998": 0.86, + "1999": 0.86, + "2000": 0.862, + "2001": 0.863, + "2002": 0.864, + "2003": 0.865, + "2004": 0.871, + "2005": 0.87, + "2006": 0.876, + "2007": 0.881, + "2008": 0.884, + "2009": 0.891, + "2010": 0.896, + "2011": 0.895, + "2012": 0.896, + "2013": 0.896, + "2014": 0.896, + "2015": 0.893, + "2016": 0.893, + "2017": 0.893, + "2018": 0.895, + "2019": 0.897, + "2020": 0.871, + "2021": 0.868 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr130", + "Region": "New Hampshire", + "1990": 0.872, + "1991": 0.875, + "1992": 0.88, + "1993": 0.877, + "1994": 0.881, + "1995": 0.883, + "1996": 0.888, + "1997": 0.893, + "1998": 0.895, + "1999": 0.895, + "2000": 0.896, + "2001": 0.898, + "2002": 0.899, + "2003": 0.901, + "2004": 0.907, + "2005": 0.907, + "2006": 0.912, + "2007": 0.916, + "2008": 0.917, + "2009": 0.923, + "2010": 0.927, + "2011": 0.927, + "2012": 0.929, + "2013": 0.929, + "2014": 0.93, + "2015": 0.927, + "2016": 0.927, + "2017": 0.926, + "2018": 0.929, + "2019": 0.931, + "2020": 0.904, + "2021": 0.901 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr131", + "Region": "New Jersey", + "1990": 0.853, + "1991": 0.855, + "1992": 0.86, + "1993": 0.857, + "1994": 0.86, + "1995": 0.862, + "1996": 0.869, + "1997": 0.875, + "1998": 0.878, + "1999": 0.88, + "2000": 0.883, + "2001": 0.886, + "2002": 0.889, + "2003": 0.892, + "2004": 0.9, + "2005": 0.901, + "2006": 0.906, + "2007": 0.911, + "2008": 0.914, + "2009": 0.92, + "2010": 0.924, + "2011": 0.925, + "2012": 0.928, + "2013": 0.928, + "2014": 0.93, + "2015": 0.927, + "2016": 0.927, + "2017": 0.926, + "2018": 0.929, + "2019": 0.931, + "2020": 0.904, + "2021": 0.901 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr132", + "Region": "New Mexico", + "1990": 0.861, + "1991": 0.863, + "1992": 0.866, + "1993": 0.862, + "1994": 0.864, + "1995": 0.865, + "1996": 0.869, + "1997": 0.874, + "1998": 0.876, + "1999": 0.876, + "2000": 0.878, + "2001": 0.878, + "2002": 0.878, + "2003": 0.879, + "2004": 0.884, + "2005": 0.882, + "2006": 0.886, + "2007": 0.889, + "2008": 0.889, + "2009": 0.894, + "2010": 0.896, + "2011": 0.897, + "2012": 0.899, + "2013": 0.899, + "2014": 0.9, + "2015": 0.898, + "2016": 0.898, + "2017": 0.897, + "2018": 0.9, + "2019": 0.902, + "2020": 0.876, + "2021": 0.872 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr133", + "Region": "New York", + "1990": 0.841, + "1991": 0.845, + "1992": 0.85, + "1993": 0.849, + "1994": 0.853, + "1995": 0.856, + "1996": 0.864, + "1997": 0.873, + "1998": 0.878, + "1999": 0.882, + "2000": 0.887, + "2001": 0.89, + "2002": 0.893, + "2003": 0.897, + "2004": 0.904, + "2005": 0.906, + "2006": 0.91, + "2007": 0.915, + "2008": 0.917, + "2009": 0.923, + "2010": 0.927, + "2011": 0.928, + "2012": 0.93, + "2013": 0.931, + "2014": 0.933, + "2015": 0.93, + "2016": 0.93, + "2017": 0.93, + "2018": 0.932, + "2019": 0.935, + "2020": 0.907, + "2021": 0.904 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr134", + "Region": "North Carolina", + "1990": 0.837, + "1991": 0.839, + "1992": 0.843, + "1993": 0.839, + "1994": 0.842, + "1995": 0.843, + "1996": 0.848, + "1997": 0.852, + "1998": 0.855, + "1999": 0.854, + "2000": 0.856, + "2001": 0.858, + "2002": 0.859, + "2003": 0.862, + "2004": 0.868, + "2005": 0.868, + "2006": 0.872, + "2007": 0.876, + "2008": 0.878, + "2009": 0.883, + "2010": 0.886, + "2011": 0.887, + "2012": 0.889, + "2013": 0.89, + "2014": 0.891, + "2015": 0.889, + "2016": 0.888, + "2017": 0.888, + "2018": 0.891, + "2019": 0.893, + "2020": 0.867, + "2021": 0.863 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr135", + "Region": "North Dakota", + "1990": 0.884, + "1991": 0.885, + "1992": 0.888, + "1993": 0.884, + "1994": 0.886, + "1995": 0.887, + "1996": 0.891, + "1997": 0.895, + "1998": 0.896, + "1999": 0.895, + "2000": 0.896, + "2001": 0.898, + "2002": 0.899, + "2003": 0.901, + "2004": 0.907, + "2005": 0.907, + "2006": 0.91, + "2007": 0.912, + "2008": 0.912, + "2009": 0.916, + "2010": 0.918, + "2011": 0.918, + "2012": 0.918, + "2013": 0.917, + "2014": 0.917, + "2015": 0.915, + "2016": 0.915, + "2017": 0.914, + "2018": 0.917, + "2019": 0.919, + "2020": 0.892, + "2021": 0.889 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr136", + "Region": "Ohio", + "1990": 0.852, + "1991": 0.853, + "1992": 0.857, + "1993": 0.853, + "1994": 0.854, + "1995": 0.855, + "1996": 0.86, + "1997": 0.864, + "1998": 0.866, + "1999": 0.865, + "2000": 0.866, + "2001": 0.867, + "2002": 0.867, + "2003": 0.868, + "2004": 0.873, + "2005": 0.872, + "2006": 0.876, + "2007": 0.879, + "2008": 0.88, + "2009": 0.885, + "2010": 0.887, + "2011": 0.888, + "2012": 0.89, + "2013": 0.89, + "2014": 0.891, + "2015": 0.889, + "2016": 0.888, + "2017": 0.888, + "2018": 0.891, + "2019": 0.893, + "2020": 0.867, + "2021": 0.863 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr137", + "Region": "Oklahoma", + "1990": 0.85, + "1991": 0.849, + "1992": 0.851, + "1993": 0.845, + "1994": 0.845, + "1995": 0.845, + "1996": 0.848, + "1997": 0.851, + "1998": 0.851, + "1999": 0.85, + "2000": 0.85, + "2001": 0.85, + "2002": 0.848, + "2003": 0.848, + "2004": 0.852, + "2005": 0.85, + "2006": 0.853, + "2007": 0.855, + "2008": 0.855, + "2009": 0.859, + "2010": 0.86, + "2011": 0.86, + "2012": 0.862, + "2013": 0.861, + "2014": 0.862, + "2015": 0.86, + "2016": 0.859, + "2017": 0.859, + "2018": 0.861, + "2019": 0.864, + "2020": 0.838, + "2021": 0.835 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr138", + "Region": "Oregon", + "1990": 0.869, + "1991": 0.871, + "1992": 0.874, + "1993": 0.87, + "1994": 0.872, + "1995": 0.873, + "1996": 0.878, + "1997": 0.883, + "1998": 0.885, + "1999": 0.885, + "2000": 0.886, + "2001": 0.888, + "2002": 0.888, + "2003": 0.89, + "2004": 0.896, + "2005": 0.896, + "2006": 0.9, + "2007": 0.904, + "2008": 0.905, + "2009": 0.911, + "2010": 0.914, + "2011": 0.915, + "2012": 0.916, + "2013": 0.916, + "2014": 0.917, + "2015": 0.915, + "2016": 0.915, + "2017": 0.914, + "2018": 0.917, + "2019": 0.919, + "2020": 0.892, + "2021": 0.889 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr139", + "Region": "Pennsylvania", + "1990": 0.852, + "1991": 0.854, + "1992": 0.858, + "1993": 0.854, + "1994": 0.857, + "1995": 0.859, + "1996": 0.863, + "1997": 0.868, + "1998": 0.87, + "1999": 0.87, + "2000": 0.872, + "2001": 0.874, + "2002": 0.874, + "2003": 0.876, + "2004": 0.881, + "2005": 0.881, + "2006": 0.885, + "2007": 0.89, + "2008": 0.891, + "2009": 0.897, + "2010": 0.9, + "2011": 0.9, + "2012": 0.902, + "2013": 0.901, + "2014": 0.902, + "2015": 0.9, + "2016": 0.899, + "2017": 0.899, + "2018": 0.901, + "2019": 0.904, + "2020": 0.877, + "2021": 0.874 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr140", + "Region": "Rhode Island", + "1990": 0.868, + "1991": 0.871, + "1992": 0.876, + "1993": 0.873, + "1994": 0.876, + "1995": 0.879, + "1996": 0.883, + "1997": 0.887, + "1998": 0.889, + "1999": 0.888, + "2000": 0.889, + "2001": 0.891, + "2002": 0.892, + "2003": 0.894, + "2004": 0.9, + "2005": 0.9, + "2006": 0.903, + "2007": 0.906, + "2008": 0.907, + "2009": 0.911, + "2010": 0.913, + "2011": 0.916, + "2012": 0.919, + "2013": 0.921, + "2014": 0.923, + "2015": 0.921, + "2016": 0.921, + "2017": 0.92, + "2018": 0.923, + "2019": 0.925, + "2020": 0.898, + "2021": 0.895 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr141", + "Region": "South Carolina", + "1990": 0.823, + "1991": 0.825, + "1992": 0.829, + "1993": 0.825, + "1994": 0.828, + "1995": 0.829, + "1996": 0.834, + "1997": 0.838, + "1998": 0.84, + "1999": 0.84, + "2000": 0.842, + "2001": 0.843, + "2002": 0.844, + "2003": 0.846, + "2004": 0.852, + "2005": 0.852, + "2006": 0.857, + "2007": 0.862, + "2008": 0.864, + "2009": 0.87, + "2010": 0.873, + "2011": 0.874, + "2012": 0.877, + "2013": 0.877, + "2014": 0.879, + "2015": 0.876, + "2016": 0.876, + "2017": 0.876, + "2018": 0.878, + "2019": 0.88, + "2020": 0.855, + "2021": 0.851 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr142", + "Region": "South Dakota", + "1990": 0.873, + "1991": 0.874, + "1992": 0.878, + "1993": 0.874, + "1994": 0.876, + "1995": 0.877, + "1996": 0.881, + "1997": 0.885, + "1998": 0.887, + "1999": 0.887, + "2000": 0.888, + "2001": 0.889, + "2002": 0.89, + "2003": 0.892, + "2004": 0.898, + "2005": 0.898, + "2006": 0.901, + "2007": 0.904, + "2008": 0.904, + "2009": 0.909, + "2010": 0.911, + "2011": 0.912, + "2012": 0.915, + "2013": 0.916, + "2014": 0.917, + "2015": 0.915, + "2016": 0.915, + "2017": 0.914, + "2018": 0.917, + "2019": 0.919, + "2020": 0.892, + "2021": 0.889 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr143", + "Region": "Tennessee", + "1990": 0.835, + "1991": 0.836, + "1992": 0.838, + "1993": 0.833, + "1994": 0.834, + "1995": 0.835, + "1996": 0.838, + "1997": 0.842, + "1998": 0.844, + "1999": 0.843, + "2000": 0.844, + "2001": 0.845, + "2002": 0.844, + "2003": 0.846, + "2004": 0.85, + "2005": 0.849, + "2006": 0.853, + "2007": 0.857, + "2008": 0.859, + "2009": 0.864, + "2010": 0.867, + "2011": 0.867, + "2012": 0.868, + "2013": 0.868, + "2014": 0.868, + "2015": 0.866, + "2016": 0.865, + "2017": 0.865, + "2018": 0.867, + "2019": 0.87, + "2020": 0.844, + "2021": 0.841 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr144", + "Region": "Texas", + "1990": 0.85, + "1991": 0.852, + "1992": 0.856, + "1993": 0.853, + "1994": 0.855, + "1995": 0.857, + "1996": 0.862, + "1997": 0.866, + "1998": 0.868, + "1999": 0.868, + "2000": 0.87, + "2001": 0.872, + "2002": 0.873, + "2003": 0.875, + "2004": 0.881, + "2005": 0.881, + "2006": 0.885, + "2007": 0.889, + "2008": 0.89, + "2009": 0.896, + "2010": 0.899, + "2011": 0.899, + "2012": 0.901, + "2013": 0.901, + "2014": 0.902, + "2015": 0.9, + "2016": 0.899, + "2017": 0.899, + "2018": 0.901, + "2019": 0.904, + "2020": 0.877, + "2021": 0.874 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr145", + "Region": "Utah", + "1990": 0.891, + "1991": 0.892, + "1992": 0.895, + "1993": 0.891, + "1994": 0.893, + "1995": 0.894, + "1996": 0.897, + "1997": 0.9, + "1998": 0.901, + "1999": 0.899, + "2000": 0.899, + "2001": 0.901, + "2002": 0.901, + "2003": 0.903, + "2004": 0.909, + "2005": 0.908, + "2006": 0.912, + "2007": 0.915, + "2008": 0.916, + "2009": 0.921, + "2010": 0.924, + "2011": 0.924, + "2012": 0.927, + "2013": 0.927, + "2014": 0.928, + "2015": 0.926, + "2016": 0.925, + "2017": 0.925, + "2018": 0.928, + "2019": 0.93, + "2020": 0.903, + "2021": 0.9 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr146", + "Region": "Vermont", + "1990": 0.865, + "1991": 0.868, + "1992": 0.873, + "1993": 0.87, + "1994": 0.874, + "1995": 0.876, + "1996": 0.881, + "1997": 0.886, + "1998": 0.888, + "1999": 0.888, + "2000": 0.889, + "2001": 0.892, + "2002": 0.894, + "2003": 0.897, + "2004": 0.905, + "2005": 0.906, + "2006": 0.909, + "2007": 0.912, + "2008": 0.913, + "2009": 0.917, + "2010": 0.92, + "2011": 0.923, + "2012": 0.927, + "2013": 0.929, + "2014": 0.933, + "2015": 0.93, + "2016": 0.93, + "2017": 0.93, + "2018": 0.932, + "2019": 0.935, + "2020": 0.907, + "2021": 0.904 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr147", + "Region": "Virginia", + "1990": 0.849, + "1991": 0.851, + "1992": 0.854, + "1993": 0.85, + "1994": 0.853, + "1995": 0.854, + "1996": 0.859, + "1997": 0.864, + "1998": 0.867, + "1999": 0.867, + "2000": 0.869, + "2001": 0.872, + "2002": 0.874, + "2003": 0.877, + "2004": 0.883, + "2005": 0.884, + "2006": 0.889, + "2007": 0.893, + "2008": 0.895, + "2009": 0.901, + "2010": 0.905, + "2011": 0.906, + "2012": 0.908, + "2013": 0.908, + "2014": 0.91, + "2015": 0.907, + "2016": 0.907, + "2017": 0.906, + "2018": 0.909, + "2019": 0.911, + "2020": 0.885, + "2021": 0.881 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr148", + "Region": "Washington", + "1990": 0.876, + "1991": 0.878, + "1992": 0.882, + "1993": 0.878, + "1994": 0.88, + "1995": 0.882, + "1996": 0.886, + "1997": 0.89, + "1998": 0.892, + "1999": 0.892, + "2000": 0.893, + "2001": 0.895, + "2002": 0.896, + "2003": 0.898, + "2004": 0.904, + "2005": 0.904, + "2006": 0.908, + "2007": 0.912, + "2008": 0.913, + "2009": 0.919, + "2010": 0.922, + "2011": 0.922, + "2012": 0.923, + "2013": 0.923, + "2014": 0.923, + "2015": 0.921, + "2016": 0.921, + "2017": 0.92, + "2018": 0.923, + "2019": 0.925, + "2020": 0.898, + "2021": 0.895 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr149", + "Region": "West Virginia", + "1990": 0.835, + "1991": 0.836, + "1992": 0.839, + "1993": 0.835, + "1994": 0.837, + "1995": 0.838, + "1996": 0.841, + "1997": 0.845, + "1998": 0.846, + "1999": 0.845, + "2000": 0.846, + "2001": 0.845, + "2002": 0.845, + "2003": 0.845, + "2004": 0.85, + "2005": 0.848, + "2006": 0.85, + "2007": 0.852, + "2008": 0.852, + "2009": 0.855, + "2010": 0.856, + "2011": 0.856, + "2012": 0.856, + "2013": 0.855, + "2014": 0.854, + "2015": 0.852, + "2016": 0.852, + "2017": 0.851, + "2018": 0.854, + "2019": 0.856, + "2020": 0.83, + "2021": 0.827 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr150", + "Region": "Wisconsin", + "1990": 0.875, + "1991": 0.877, + "1992": 0.88, + "1993": 0.877, + "1994": 0.879, + "1995": 0.88, + "1996": 0.884, + "1997": 0.888, + "1998": 0.889, + "1999": 0.888, + "2000": 0.889, + "2001": 0.891, + "2002": 0.892, + "2003": 0.895, + "2004": 0.901, + "2005": 0.901, + "2006": 0.905, + "2007": 0.908, + "2008": 0.909, + "2009": 0.915, + "2010": 0.917, + "2011": 0.919, + "2012": 0.922, + "2013": 0.923, + "2014": 0.925, + "2015": 0.923, + "2016": 0.922, + "2017": 0.922, + "2018": 0.924, + "2019": 0.927, + "2020": 0.9, + "2021": 0.897 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr151", + "Region": "Wyoming", + "1990": 0.865, + "1991": 0.867, + "1992": 0.87, + "1993": 0.867, + "1994": 0.869, + "1995": 0.87, + "1996": 0.874, + "1997": 0.878, + "1998": 0.879, + "1999": 0.878, + "2000": 0.879, + "2001": 0.88, + "2002": 0.88, + "2003": 0.881, + "2004": 0.886, + "2005": 0.885, + "2006": 0.888, + "2007": 0.891, + "2008": 0.891, + "2009": 0.895, + "2010": 0.897, + "2011": 0.897, + "2012": 0.899, + "2013": 0.898, + "2014": 0.899, + "2015": 0.896, + "2016": 0.896, + "2017": 0.896, + "2018": 0.898, + "2019": 0.901, + "2020": 0.874, + "2021": 0.871 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "National", + "GDLCODE": "URYt", + "Region": "Total", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr105", + "Region": "Centro (Durazno and Tacuarembo)", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr106", + "Region": "Centro Sur (Flores, Florida and Lavalleja)", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr103", + "Region": "Costa Este (Canelones, Maldonado and Rocha)", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr107", + "Region": "Litoral Norte (Paysandu, Salto and Rio Negro)", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr104", + "Region": "Litoral Sur (Soriano, Colonia and San Jose)", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr101", + "Region": "Montevideo and Metropolitan area", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr102", + "Region": "Norte (Artigas, Rivera, Cerro Largo and Trienta y Tres)", + "1990": 0.818, + "1991": 0.82, + "1992": 0.822, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.832, + "1997": 0.835, + "1998": 0.839, + "1999": 0.843, + "2000": 0.847, + "2001": 0.851, + "2002": 0.854, + "2003": 0.858, + "2004": 0.862, + "2005": 0.865, + "2006": 0.867, + "2007": 0.869, + "2008": 0.871, + "2009": 0.873, + "2010": 0.875, + "2011": 0.877, + "2012": 0.879, + "2013": 0.881, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.887, + "2018": 0.886, + "2019": 0.885, + "2020": 0.899, + "2021": 0.853 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "National", + "GDLCODE": "UZBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.703, + "2001": 0.709, + "2002": 0.717, + "2003": 0.724, + "2004": 0.729, + "2005": 0.731, + "2006": 0.737, + "2007": 0.743, + "2008": 0.75, + "2009": 0.752, + "2010": 0.757, + "2011": 0.764, + "2012": 0.767, + "2013": 0.769, + "2014": 0.773, + "2015": 0.777, + "2016": 0.781, + "2017": 0.785, + "2018": 0.787, + "2019": 0.79, + "2020": 0.774, + "2021": 0.782 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr102", + "Region": "Central (Navoi, Bukhara, Samarkand)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.684, + "2001": 0.691, + "2002": 0.701, + "2003": 0.709, + "2004": 0.716, + "2005": 0.719, + "2006": 0.726, + "2007": 0.732, + "2008": 0.739, + "2009": 0.741, + "2010": 0.747, + "2011": 0.753, + "2012": 0.756, + "2013": 0.758, + "2014": 0.762, + "2015": 0.766, + "2016": 0.77, + "2017": 0.774, + "2018": 0.776, + "2019": 0.779, + "2020": 0.763, + "2021": 0.771 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr104", + "Region": "Central-East (Dzhizak, Syrdarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.741, + "2001": 0.751, + "2002": 0.763, + "2003": 0.774, + "2004": 0.784, + "2005": 0.789, + "2006": 0.8, + "2007": 0.807, + "2008": 0.814, + "2009": 0.816, + "2010": 0.822, + "2011": 0.829, + "2012": 0.832, + "2013": 0.834, + "2014": 0.838, + "2015": 0.842, + "2016": 0.847, + "2017": 0.851, + "2018": 0.853, + "2019": 0.856, + "2020": 0.84, + "2021": 0.848 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr105", + "Region": "East (Namangan, Fergana, Andizhan)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.717, + "2001": 0.722, + "2002": 0.729, + "2003": 0.736, + "2004": 0.741, + "2005": 0.742, + "2006": 0.747, + "2007": 0.754, + "2008": 0.761, + "2009": 0.763, + "2010": 0.768, + "2011": 0.775, + "2012": 0.778, + "2013": 0.78, + "2014": 0.784, + "2015": 0.788, + "2016": 0.792, + "2017": 0.796, + "2018": 0.798, + "2019": 0.801, + "2020": 0.785, + "2021": 0.794 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr103", + "Region": "South (Kashkadarya, Surkhandarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.682, + "2001": 0.684, + "2002": 0.689, + "2003": 0.692, + "2004": 0.694, + "2005": 0.692, + "2006": 0.694, + "2007": 0.7, + "2008": 0.707, + "2009": 0.709, + "2010": 0.714, + "2011": 0.72, + "2012": 0.724, + "2013": 0.725, + "2014": 0.729, + "2015": 0.733, + "2016": 0.737, + "2017": 0.74, + "2018": 0.743, + "2019": 0.745, + "2020": 0.73, + "2021": 0.738 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr106", + "Region": "Tashkent", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.75, + "2001": 0.755, + "2002": 0.763, + "2003": 0.769, + "2004": 0.774, + "2005": 0.775, + "2006": 0.78, + "2007": 0.787, + "2008": 0.794, + "2009": 0.796, + "2010": 0.802, + "2011": 0.808, + "2012": 0.812, + "2013": 0.814, + "2014": 0.818, + "2015": 0.822, + "2016": 0.826, + "2017": 0.83, + "2018": 0.832, + "2019": 0.835, + "2020": 0.819, + "2021": 0.828 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr101", + "Region": "West (Karakalpakstan, Khorezm)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.664, + "2001": 0.673, + "2002": 0.685, + "2003": 0.695, + "2004": 0.704, + "2005": 0.709, + "2006": 0.719, + "2007": 0.725, + "2008": 0.732, + "2009": 0.734, + "2010": 0.739, + "2011": 0.746, + "2012": 0.749, + "2013": 0.751, + "2014": 0.754, + "2015": 0.758, + "2016": 0.762, + "2017": 0.766, + "2018": 0.768, + "2019": 0.771, + "2020": 0.756, + "2021": 0.764 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "National", + "GDLCODE": "VUTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr108", + "Region": "Luganville", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr103", + "Region": "Malampa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr104", + "Region": "Penama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr107", + "Region": "Port Vila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr105", + "Region": "Sanma", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr102", + "Region": "Shefa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr101", + "Region": "Tafea", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr106", + "Region": "Torba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.76, + "2006": 0.761, + "2007": 0.762, + "2008": 0.763, + "2009": 0.764, + "2010": 0.763, + "2011": 0.762, + "2012": 0.761, + "2013": 0.762, + "2014": 0.761, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.766, + "2019": 0.767, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "National", + "GDLCODE": "VENt", + "Region": "Total", + "1990": 0.793, + "1991": 0.797, + "1992": 0.797, + "1993": 0.799, + "1994": 0.798, + "1995": 0.802, + "1996": 0.802, + "1997": 0.811, + "1998": 0.81, + "1999": 0.804, + "2000": 0.807, + "2001": 0.788, + "2002": 0.81, + "2003": 0.799, + "2004": 0.808, + "2005": 0.812, + "2006": 0.811, + "2007": 0.816, + "2008": 0.807, + "2009": 0.809, + "2010": 0.814, + "2011": 0.814, + "2012": 0.816, + "2013": 0.818, + "2014": 0.813, + "2015": 0.815, + "2016": 0.801, + "2017": 0.799, + "2018": 0.8, + "2019": 0.802, + "2020": 0.786, + "2021": 0.778 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr110", + "Region": "Amacuros Delta Federal Territory", + "1990": 0.799, + "1991": 0.804, + "1992": 0.804, + "1993": 0.805, + "1994": 0.804, + "1995": 0.809, + "1996": 0.808, + "1997": 0.817, + "1998": 0.817, + "1999": 0.811, + "2000": 0.814, + "2001": 0.794, + "2002": 0.817, + "2003": 0.806, + "2004": 0.815, + "2005": 0.819, + "2006": 0.818, + "2007": 0.823, + "2008": 0.813, + "2009": 0.816, + "2010": 0.82, + "2011": 0.821, + "2012": 0.823, + "2013": 0.825, + "2014": 0.82, + "2015": 0.822, + "2016": 0.807, + "2017": 0.806, + "2018": 0.806, + "2019": 0.809, + "2020": 0.793, + "2021": 0.784 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr102", + "Region": "Amazonas Federal Territory", + "1990": 0.731, + "1991": 0.735, + "1992": 0.735, + "1993": 0.736, + "1994": 0.735, + "1995": 0.74, + "1996": 0.739, + "1997": 0.748, + "1998": 0.747, + "1999": 0.741, + "2000": 0.744, + "2001": 0.726, + "2002": 0.747, + "2003": 0.737, + "2004": 0.745, + "2005": 0.749, + "2006": 0.748, + "2007": 0.753, + "2008": 0.744, + "2009": 0.746, + "2010": 0.75, + "2011": 0.751, + "2012": 0.753, + "2013": 0.755, + "2014": 0.75, + "2015": 0.752, + "2016": 0.738, + "2017": 0.737, + "2018": 0.737, + "2019": 0.74, + "2020": 0.724, + "2021": 0.717 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr103", + "Region": "Anzoategui", + "1990": 0.813, + "1991": 0.818, + "1992": 0.818, + "1993": 0.82, + "1994": 0.818, + "1995": 0.823, + "1996": 0.822, + "1997": 0.832, + "1998": 0.831, + "1999": 0.825, + "2000": 0.828, + "2001": 0.808, + "2002": 0.831, + "2003": 0.82, + "2004": 0.829, + "2005": 0.833, + "2006": 0.832, + "2007": 0.837, + "2008": 0.828, + "2009": 0.83, + "2010": 0.835, + "2011": 0.835, + "2012": 0.837, + "2013": 0.839, + "2014": 0.834, + "2015": 0.837, + "2016": 0.822, + "2017": 0.82, + "2018": 0.82, + "2019": 0.823, + "2020": 0.807, + "2021": 0.798 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr104", + "Region": "Apure", + "1990": 0.8, + "1991": 0.805, + "1992": 0.805, + "1993": 0.806, + "1994": 0.805, + "1995": 0.81, + "1996": 0.809, + "1997": 0.818, + "1998": 0.818, + "1999": 0.811, + "2000": 0.815, + "2001": 0.795, + "2002": 0.818, + "2003": 0.807, + "2004": 0.815, + "2005": 0.82, + "2006": 0.819, + "2007": 0.824, + "2008": 0.814, + "2009": 0.816, + "2010": 0.821, + "2011": 0.822, + "2012": 0.824, + "2013": 0.826, + "2014": 0.821, + "2015": 0.823, + "2016": 0.808, + "2017": 0.807, + "2018": 0.807, + "2019": 0.81, + "2020": 0.794, + "2021": 0.785 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr105", + "Region": "Aragua", + "1990": 0.811, + "1991": 0.816, + "1992": 0.816, + "1993": 0.817, + "1994": 0.816, + "1995": 0.821, + "1996": 0.82, + "1997": 0.83, + "1998": 0.829, + "1999": 0.823, + "2000": 0.826, + "2001": 0.806, + "2002": 0.829, + "2003": 0.818, + "2004": 0.827, + "2005": 0.831, + "2006": 0.83, + "2007": 0.835, + "2008": 0.825, + "2009": 0.828, + "2010": 0.833, + "2011": 0.833, + "2012": 0.835, + "2013": 0.837, + "2014": 0.832, + "2015": 0.834, + "2016": 0.82, + "2017": 0.818, + "2018": 0.818, + "2019": 0.821, + "2020": 0.804, + "2021": 0.796 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr106", + "Region": "Barinas", + "1990": 0.789, + "1991": 0.794, + "1992": 0.793, + "1993": 0.795, + "1994": 0.794, + "1995": 0.798, + "1996": 0.798, + "1997": 0.807, + "1998": 0.806, + "1999": 0.8, + "2000": 0.803, + "2001": 0.784, + "2002": 0.806, + "2003": 0.795, + "2004": 0.804, + "2005": 0.808, + "2006": 0.807, + "2007": 0.812, + "2008": 0.803, + "2009": 0.805, + "2010": 0.81, + "2011": 0.81, + "2012": 0.812, + "2013": 0.814, + "2014": 0.809, + "2015": 0.812, + "2016": 0.797, + "2017": 0.795, + "2018": 0.796, + "2019": 0.799, + "2020": 0.782, + "2021": 0.774 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr107", + "Region": "Bolivar", + "1990": 0.791, + "1991": 0.796, + "1992": 0.795, + "1993": 0.797, + "1994": 0.796, + "1995": 0.8, + "1996": 0.8, + "1997": 0.809, + "1998": 0.808, + "1999": 0.802, + "2000": 0.806, + "2001": 0.786, + "2002": 0.808, + "2003": 0.797, + "2004": 0.806, + "2005": 0.81, + "2006": 0.81, + "2007": 0.814, + "2008": 0.805, + "2009": 0.807, + "2010": 0.812, + "2011": 0.812, + "2012": 0.814, + "2013": 0.817, + "2014": 0.811, + "2015": 0.814, + "2016": 0.799, + "2017": 0.797, + "2018": 0.798, + "2019": 0.801, + "2020": 0.784, + "2021": 0.776 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr108", + "Region": "Carabobo", + "1990": 0.802, + "1991": 0.806, + "1992": 0.806, + "1993": 0.808, + "1994": 0.807, + "1995": 0.811, + "1996": 0.811, + "1997": 0.82, + "1998": 0.819, + "1999": 0.813, + "2000": 0.816, + "2001": 0.796, + "2002": 0.819, + "2003": 0.808, + "2004": 0.817, + "2005": 0.821, + "2006": 0.82, + "2007": 0.825, + "2008": 0.816, + "2009": 0.818, + "2010": 0.823, + "2011": 0.823, + "2012": 0.825, + "2013": 0.827, + "2014": 0.822, + "2015": 0.824, + "2016": 0.81, + "2017": 0.808, + "2018": 0.809, + "2019": 0.811, + "2020": 0.795, + "2021": 0.786 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr109", + "Region": "Cojedes", + "1990": 0.779, + "1991": 0.784, + "1992": 0.783, + "1993": 0.785, + "1994": 0.784, + "1995": 0.788, + "1996": 0.788, + "1997": 0.797, + "1998": 0.796, + "1999": 0.79, + "2000": 0.793, + "2001": 0.774, + "2002": 0.796, + "2003": 0.785, + "2004": 0.794, + "2005": 0.798, + "2006": 0.797, + "2007": 0.802, + "2008": 0.793, + "2009": 0.795, + "2010": 0.8, + "2011": 0.8, + "2012": 0.802, + "2013": 0.804, + "2014": 0.799, + "2015": 0.801, + "2016": 0.787, + "2017": 0.785, + "2018": 0.786, + "2019": 0.789, + "2020": 0.772, + "2021": 0.764 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr111", + "Region": "Falcon", + "1990": 0.802, + "1991": 0.807, + "1992": 0.807, + "1993": 0.809, + "1994": 0.807, + "1995": 0.812, + "1996": 0.811, + "1997": 0.821, + "1998": 0.82, + "1999": 0.814, + "2000": 0.817, + "2001": 0.797, + "2002": 0.82, + "2003": 0.809, + "2004": 0.818, + "2005": 0.822, + "2006": 0.821, + "2007": 0.826, + "2008": 0.816, + "2009": 0.819, + "2010": 0.824, + "2011": 0.824, + "2012": 0.826, + "2013": 0.828, + "2014": 0.823, + "2015": 0.825, + "2016": 0.811, + "2017": 0.809, + "2018": 0.809, + "2019": 0.812, + "2020": 0.796, + "2021": 0.787 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr101", + "Region": "Federal District", + "1990": 0.792, + "1991": 0.797, + "1992": 0.796, + "1993": 0.798, + "1994": 0.797, + "1995": 0.802, + "1996": 0.801, + "1997": 0.81, + "1998": 0.81, + "1999": 0.803, + "2000": 0.807, + "2001": 0.787, + "2002": 0.81, + "2003": 0.798, + "2004": 0.807, + "2005": 0.811, + "2006": 0.811, + "2007": 0.816, + "2008": 0.806, + "2009": 0.808, + "2010": 0.813, + "2011": 0.813, + "2012": 0.815, + "2013": 0.818, + "2014": 0.813, + "2015": 0.815, + "2016": 0.8, + "2017": 0.799, + "2018": 0.799, + "2019": 0.802, + "2020": 0.785, + "2021": 0.777 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr112", + "Region": "Guarico", + "1990": 0.799, + "1991": 0.804, + "1992": 0.804, + "1993": 0.806, + "1994": 0.804, + "1995": 0.809, + "1996": 0.808, + "1997": 0.818, + "1998": 0.817, + "1999": 0.811, + "2000": 0.814, + "2001": 0.794, + "2002": 0.817, + "2003": 0.806, + "2004": 0.815, + "2005": 0.819, + "2006": 0.818, + "2007": 0.823, + "2008": 0.813, + "2009": 0.816, + "2010": 0.82, + "2011": 0.821, + "2012": 0.823, + "2013": 0.825, + "2014": 0.82, + "2015": 0.822, + "2016": 0.808, + "2017": 0.806, + "2018": 0.806, + "2019": 0.809, + "2020": 0.793, + "2021": 0.784 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr113", + "Region": "Lara", + "1990": 0.785, + "1991": 0.789, + "1992": 0.789, + "1993": 0.791, + "1994": 0.789, + "1995": 0.794, + "1996": 0.793, + "1997": 0.802, + "1998": 0.802, + "1999": 0.796, + "2000": 0.799, + "2001": 0.779, + "2002": 0.802, + "2003": 0.791, + "2004": 0.799, + "2005": 0.804, + "2006": 0.803, + "2007": 0.808, + "2008": 0.798, + "2009": 0.8, + "2010": 0.805, + "2011": 0.806, + "2012": 0.807, + "2013": 0.81, + "2014": 0.805, + "2015": 0.807, + "2016": 0.793, + "2017": 0.791, + "2018": 0.791, + "2019": 0.794, + "2020": 0.778, + "2021": 0.77 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr114", + "Region": "Merida", + "1990": 0.786, + "1991": 0.79, + "1992": 0.79, + "1993": 0.792, + "1994": 0.791, + "1995": 0.795, + "1996": 0.795, + "1997": 0.804, + "1998": 0.803, + "1999": 0.797, + "2000": 0.8, + "2001": 0.781, + "2002": 0.803, + "2003": 0.792, + "2004": 0.801, + "2005": 0.805, + "2006": 0.804, + "2007": 0.809, + "2008": 0.8, + "2009": 0.802, + "2010": 0.807, + "2011": 0.807, + "2012": 0.809, + "2013": 0.811, + "2014": 0.806, + "2015": 0.808, + "2016": 0.794, + "2017": 0.792, + "2018": 0.793, + "2019": 0.795, + "2020": 0.779, + "2021": 0.771 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr115", + "Region": "Miranda", + "1990": 0.794, + "1991": 0.799, + "1992": 0.798, + "1993": 0.8, + "1994": 0.799, + "1995": 0.804, + "1996": 0.803, + "1997": 0.812, + "1998": 0.812, + "1999": 0.805, + "2000": 0.809, + "2001": 0.789, + "2002": 0.812, + "2003": 0.801, + "2004": 0.809, + "2005": 0.814, + "2006": 0.813, + "2007": 0.818, + "2008": 0.808, + "2009": 0.81, + "2010": 0.815, + "2011": 0.816, + "2012": 0.817, + "2013": 0.82, + "2014": 0.815, + "2015": 0.817, + "2016": 0.802, + "2017": 0.801, + "2018": 0.801, + "2019": 0.804, + "2020": 0.788, + "2021": 0.779 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr116", + "Region": "Monagas", + "1990": 0.792, + "1991": 0.796, + "1992": 0.796, + "1993": 0.798, + "1994": 0.797, + "1995": 0.801, + "1996": 0.801, + "1997": 0.81, + "1998": 0.809, + "1999": 0.803, + "2000": 0.806, + "2001": 0.787, + "2002": 0.809, + "2003": 0.798, + "2004": 0.807, + "2005": 0.811, + "2006": 0.81, + "2007": 0.815, + "2008": 0.806, + "2009": 0.808, + "2010": 0.813, + "2011": 0.813, + "2012": 0.815, + "2013": 0.817, + "2014": 0.812, + "2015": 0.814, + "2016": 0.8, + "2017": 0.798, + "2018": 0.799, + "2019": 0.801, + "2020": 0.785, + "2021": 0.777 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr117", + "Region": "Nueva Esparta", + "1990": 0.802, + "1991": 0.806, + "1992": 0.806, + "1993": 0.808, + "1994": 0.807, + "1995": 0.811, + "1996": 0.811, + "1997": 0.82, + "1998": 0.819, + "1999": 0.813, + "2000": 0.816, + "2001": 0.797, + "2002": 0.819, + "2003": 0.808, + "2004": 0.817, + "2005": 0.821, + "2006": 0.821, + "2007": 0.825, + "2008": 0.816, + "2009": 0.818, + "2010": 0.823, + "2011": 0.823, + "2012": 0.825, + "2013": 0.828, + "2014": 0.822, + "2015": 0.825, + "2016": 0.81, + "2017": 0.808, + "2018": 0.809, + "2019": 0.812, + "2020": 0.795, + "2021": 0.787 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr118", + "Region": "Portuguesa", + "1990": 0.77, + "1991": 0.774, + "1992": 0.774, + "1993": 0.776, + "1994": 0.775, + "1995": 0.779, + "1996": 0.779, + "1997": 0.787, + "1998": 0.787, + "1999": 0.781, + "2000": 0.784, + "2001": 0.765, + "2002": 0.787, + "2003": 0.776, + "2004": 0.785, + "2005": 0.789, + "2006": 0.788, + "2007": 0.793, + "2008": 0.783, + "2009": 0.786, + "2010": 0.79, + "2011": 0.791, + "2012": 0.792, + "2013": 0.795, + "2014": 0.79, + "2015": 0.792, + "2016": 0.778, + "2017": 0.776, + "2018": 0.777, + "2019": 0.779, + "2020": 0.763, + "2021": 0.755 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr119", + "Region": "Sucre", + "1990": 0.789, + "1991": 0.793, + "1992": 0.793, + "1993": 0.795, + "1994": 0.794, + "1995": 0.798, + "1996": 0.798, + "1997": 0.807, + "1998": 0.806, + "1999": 0.8, + "2000": 0.803, + "2001": 0.784, + "2002": 0.806, + "2003": 0.795, + "2004": 0.804, + "2005": 0.808, + "2006": 0.807, + "2007": 0.812, + "2008": 0.803, + "2009": 0.805, + "2010": 0.81, + "2011": 0.81, + "2012": 0.812, + "2013": 0.814, + "2014": 0.809, + "2015": 0.811, + "2016": 0.797, + "2017": 0.795, + "2018": 0.796, + "2019": 0.798, + "2020": 0.782, + "2021": 0.774 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr120", + "Region": "Tachira", + "1990": 0.803, + "1991": 0.808, + "1992": 0.808, + "1993": 0.809, + "1994": 0.808, + "1995": 0.813, + "1996": 0.812, + "1997": 0.822, + "1998": 0.821, + "1999": 0.815, + "2000": 0.818, + "2001": 0.798, + "2002": 0.821, + "2003": 0.81, + "2004": 0.819, + "2005": 0.823, + "2006": 0.822, + "2007": 0.827, + "2008": 0.817, + "2009": 0.82, + "2010": 0.824, + "2011": 0.825, + "2012": 0.827, + "2013": 0.829, + "2014": 0.824, + "2015": 0.826, + "2016": 0.812, + "2017": 0.81, + "2018": 0.81, + "2019": 0.813, + "2020": 0.797, + "2021": 0.788 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr121", + "Region": "Trujillo", + "1990": 0.797, + "1991": 0.802, + "1992": 0.801, + "1993": 0.803, + "1994": 0.802, + "1995": 0.806, + "1996": 0.806, + "1997": 0.815, + "1998": 0.815, + "1999": 0.808, + "2000": 0.812, + "2001": 0.792, + "2002": 0.814, + "2003": 0.803, + "2004": 0.812, + "2005": 0.816, + "2006": 0.816, + "2007": 0.821, + "2008": 0.811, + "2009": 0.813, + "2010": 0.818, + "2011": 0.818, + "2012": 0.82, + "2013": 0.823, + "2014": 0.817, + "2015": 0.82, + "2016": 0.805, + "2017": 0.803, + "2018": 0.804, + "2019": 0.807, + "2020": 0.79, + "2021": 0.782 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr124", + "Region": "Vargas", + "1990": 0.822, + "1991": 0.827, + "1992": 0.827, + "1993": 0.829, + "1994": 0.827, + "1995": 0.832, + "1996": 0.832, + "1997": 0.841, + "1998": 0.84, + "1999": 0.834, + "2000": 0.837, + "2001": 0.817, + "2002": 0.84, + "2003": 0.829, + "2004": 0.838, + "2005": 0.842, + "2006": 0.842, + "2007": 0.847, + "2008": 0.837, + "2009": 0.839, + "2010": 0.844, + "2011": 0.844, + "2012": 0.846, + "2013": 0.849, + "2014": 0.843, + "2015": 0.846, + "2016": 0.831, + "2017": 0.829, + "2018": 0.829, + "2019": 0.832, + "2020": 0.815, + "2021": 0.807 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr122", + "Region": "Yaracuy", + "1990": 0.781, + "1991": 0.786, + "1992": 0.785, + "1993": 0.787, + "1994": 0.786, + "1995": 0.79, + "1996": 0.79, + "1997": 0.799, + "1998": 0.798, + "1999": 0.792, + "2000": 0.795, + "2001": 0.776, + "2002": 0.798, + "2003": 0.787, + "2004": 0.796, + "2005": 0.8, + "2006": 0.799, + "2007": 0.804, + "2008": 0.795, + "2009": 0.797, + "2010": 0.802, + "2011": 0.802, + "2012": 0.804, + "2013": 0.806, + "2014": 0.801, + "2015": 0.803, + "2016": 0.789, + "2017": 0.787, + "2018": 0.788, + "2019": 0.791, + "2020": 0.774, + "2021": 0.766 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr123", + "Region": "Zulia", + "1990": 0.779, + "1991": 0.783, + "1992": 0.783, + "1993": 0.785, + "1994": 0.784, + "1995": 0.788, + "1996": 0.787, + "1997": 0.796, + "1998": 0.796, + "1999": 0.79, + "2000": 0.793, + "2001": 0.774, + "2002": 0.796, + "2003": 0.785, + "2004": 0.794, + "2005": 0.798, + "2006": 0.797, + "2007": 0.802, + "2008": 0.792, + "2009": 0.795, + "2010": 0.799, + "2011": 0.8, + "2012": 0.802, + "2013": 0.804, + "2014": 0.799, + "2015": 0.801, + "2016": 0.787, + "2017": 0.785, + "2018": 0.785, + "2019": 0.788, + "2020": 0.772, + "2021": 0.764 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "National", + "GDLCODE": "VNMt", + "Region": "Total", + "1990": 0.757, + "1991": 0.767, + "1992": 0.769, + "1993": 0.779, + "1994": 0.781, + "1995": 0.791, + "1996": 0.792, + "1997": 0.797, + "1998": 0.802, + "1999": 0.805, + "2000": 0.807, + "2001": 0.81, + "2002": 0.812, + "2003": 0.815, + "2004": 0.817, + "2005": 0.82, + "2006": 0.82, + "2007": 0.822, + "2008": 0.822, + "2009": 0.823, + "2010": 0.823, + "2011": 0.826, + "2012": 0.826, + "2013": 0.827, + "2014": 0.829, + "2015": 0.829, + "2016": 0.83, + "2017": 0.83, + "2018": 0.83, + "2019": 0.832, + "2020": 0.852, + "2021": 0.825 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr104", + "Region": "Central Highlands", + "1990": 0.736, + "1991": 0.745, + "1992": 0.747, + "1993": 0.757, + "1994": 0.759, + "1995": 0.768, + "1996": 0.77, + "1997": 0.775, + "1998": 0.78, + "1999": 0.783, + "2000": 0.786, + "2001": 0.789, + "2002": 0.792, + "2003": 0.802, + "2004": 0.812, + "2005": 0.821, + "2006": 0.829, + "2007": 0.823, + "2008": 0.814, + "2009": 0.808, + "2010": 0.8, + "2011": 0.805, + "2012": 0.807, + "2013": 0.81, + "2014": 0.813, + "2015": 0.813, + "2016": 0.813, + "2017": 0.814, + "2018": 0.814, + "2019": 0.815, + "2020": 0.834, + "2021": 0.807 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr106", + "Region": "Mekong River Delta", + "1990": 0.743, + "1991": 0.752, + "1992": 0.754, + "1993": 0.764, + "1994": 0.766, + "1995": 0.776, + "1996": 0.778, + "1997": 0.782, + "1998": 0.791, + "1999": 0.798, + "2000": 0.804, + "2001": 0.811, + "2002": 0.817, + "2003": 0.824, + "2004": 0.83, + "2005": 0.835, + "2006": 0.84, + "2007": 0.836, + "2008": 0.831, + "2009": 0.827, + "2010": 0.823, + "2011": 0.832, + "2012": 0.839, + "2013": 0.847, + "2014": 0.855, + "2015": 0.851, + "2016": 0.848, + "2017": 0.844, + "2018": 0.84, + "2019": 0.837, + "2020": 0.853, + "2021": 0.822 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr103", + "Region": "North Central Coast and South Central Coast", + "1990": 0.768, + "1991": 0.778, + "1992": 0.779, + "1993": 0.79, + "1994": 0.792, + "1995": 0.801, + "1996": 0.803, + "1997": 0.808, + "1998": 0.811, + "1999": 0.813, + "2000": 0.814, + "2001": 0.816, + "2002": 0.817, + "2003": 0.823, + "2004": 0.83, + "2005": 0.836, + "2006": 0.841, + "2007": 0.833, + "2008": 0.824, + "2009": 0.816, + "2010": 0.808, + "2011": 0.818, + "2012": 0.826, + "2013": 0.835, + "2014": 0.844, + "2015": 0.846, + "2016": 0.847, + "2017": 0.848, + "2018": 0.849, + "2019": 0.852, + "2020": 0.873, + "2021": 0.846 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr102", + "Region": "North East, North West", + "1990": 0.706, + "1991": 0.715, + "1992": 0.717, + "1993": 0.727, + "1994": 0.729, + "1995": 0.738, + "1996": 0.74, + "1997": 0.744, + "1998": 0.749, + "1999": 0.753, + "2000": 0.756, + "2001": 0.759, + "2002": 0.762, + "2003": 0.771, + "2004": 0.779, + "2005": 0.787, + "2006": 0.794, + "2007": 0.8, + "2008": 0.804, + "2009": 0.81, + "2010": 0.814, + "2011": 0.807, + "2012": 0.796, + "2013": 0.787, + "2014": 0.778, + "2015": 0.781, + "2016": 0.785, + "2017": 0.789, + "2018": 0.792, + "2019": 0.797, + "2020": 0.819, + "2021": 0.796 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr101", + "Region": "Red River Delta", + "1990": 0.786, + "1991": 0.796, + "1992": 0.798, + "1993": 0.809, + "1994": 0.811, + "1995": 0.821, + "1996": 0.823, + "1997": 0.827, + "1998": 0.829, + "1999": 0.83, + "2000": 0.829, + "2001": 0.83, + "2002": 0.829, + "2003": 0.817, + "2004": 0.805, + "2005": 0.792, + "2006": 0.779, + "2007": 0.797, + "2008": 0.813, + "2009": 0.83, + "2010": 0.846, + "2011": 0.843, + "2012": 0.837, + "2013": 0.833, + "2014": 0.828, + "2015": 0.832, + "2016": 0.837, + "2017": 0.84, + "2018": 0.844, + "2019": 0.85, + "2020": 0.873, + "2021": 0.849 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr105", + "Region": "South East", + "1990": 0.809, + "1991": 0.819, + "1992": 0.821, + "1993": 0.832, + "1994": 0.834, + "1995": 0.844, + "1996": 0.846, + "1997": 0.851, + "1998": 0.854, + "1999": 0.855, + "2000": 0.855, + "2001": 0.856, + "2002": 0.857, + "2003": 0.86, + "2004": 0.862, + "2005": 0.864, + "2006": 0.864, + "2007": 0.859, + "2008": 0.851, + "2009": 0.845, + "2010": 0.838, + "2011": 0.843, + "2012": 0.845, + "2013": 0.848, + "2014": 0.852, + "2015": 0.847, + "2016": 0.843, + "2017": 0.838, + "2018": 0.833, + "2019": 0.83, + "2020": 0.845, + "2021": 0.813 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "National", + "GDLCODE": "YEMt", + "Region": "Total", + "1990": 0.595, + "1991": 0.601, + "1992": 0.607, + "1993": 0.613, + "1994": 0.611, + "1995": 0.622, + "1996": 0.624, + "1997": 0.633, + "1998": 0.637, + "1999": 0.646, + "2000": 0.655, + "2001": 0.665, + "2002": 0.675, + "2003": 0.685, + "2004": 0.692, + "2005": 0.701, + "2006": 0.708, + "2007": 0.716, + "2008": 0.723, + "2009": 0.726, + "2010": 0.727, + "2011": 0.73, + "2012": 0.728, + "2013": 0.731, + "2014": 0.729, + "2015": 0.706, + "2016": 0.709, + "2017": 0.707, + "2018": 0.686, + "2019": 0.694, + "2020": 0.687, + "2021": 0.673 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr102", + "Region": "Abyan, Aden (town and countryside), Lahej, Ad Dali (Al Dhalih)", + "1990": 0.666, + "1991": 0.672, + "1992": 0.678, + "1993": 0.686, + "1994": 0.683, + "1995": 0.695, + "1996": 0.697, + "1997": 0.706, + "1998": 0.711, + "1999": 0.722, + "2000": 0.733, + "2001": 0.744, + "2002": 0.756, + "2003": 0.767, + "2004": 0.775, + "2005": 0.785, + "2006": 0.793, + "2007": 0.794, + "2008": 0.793, + "2009": 0.789, + "2010": 0.783, + "2011": 0.778, + "2012": 0.77, + "2013": 0.767, + "2014": 0.764, + "2015": 0.74, + "2016": 0.743, + "2017": 0.741, + "2018": 0.719, + "2019": 0.728, + "2020": 0.721, + "2021": 0.706 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr104", + "Region": "Beida (Al Bayda), Dhamar, Raimah", + "1990": 0.605, + "1991": 0.61, + "1992": 0.616, + "1993": 0.623, + "1994": 0.62, + "1995": 0.632, + "1996": 0.634, + "1997": 0.642, + "1998": 0.64, + "1999": 0.643, + "2000": 0.646, + "2001": 0.649, + "2002": 0.653, + "2003": 0.656, + "2004": 0.656, + "2005": 0.658, + "2006": 0.658, + "2007": 0.669, + "2008": 0.678, + "2009": 0.684, + "2010": 0.688, + "2011": 0.692, + "2012": 0.693, + "2013": 0.699, + "2014": 0.696, + "2015": 0.674, + "2016": 0.677, + "2017": 0.675, + "2018": 0.655, + "2019": 0.662, + "2020": 0.656, + "2021": 0.642 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr107", + "Region": "Hajja, Sada, Amran (Omran)", + "1990": 0.544, + "1991": 0.549, + "1992": 0.555, + "1993": 0.561, + "1994": 0.559, + "1995": 0.57, + "1996": 0.571, + "1997": 0.579, + "1998": 0.586, + "1999": 0.597, + "2000": 0.609, + "2001": 0.62, + "2002": 0.633, + "2003": 0.645, + "2004": 0.655, + "2005": 0.665, + "2006": 0.674, + "2007": 0.689, + "2008": 0.701, + "2009": 0.71, + "2010": 0.717, + "2011": 0.725, + "2012": 0.729, + "2013": 0.738, + "2014": 0.735, + "2015": 0.712, + "2016": 0.715, + "2017": 0.713, + "2018": 0.692, + "2019": 0.7, + "2020": 0.693, + "2021": 0.679 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr108", + "Region": "Hodeida (Al Hudaydah), Mahweit (Al Mahwit)", + "1990": 0.545, + "1991": 0.55, + "1992": 0.556, + "1993": 0.562, + "1994": 0.56, + "1995": 0.571, + "1996": 0.573, + "1997": 0.581, + "1998": 0.584, + "1999": 0.592, + "2000": 0.6, + "2001": 0.609, + "2002": 0.618, + "2003": 0.627, + "2004": 0.633, + "2005": 0.64, + "2006": 0.646, + "2007": 0.661, + "2008": 0.673, + "2009": 0.683, + "2010": 0.69, + "2011": 0.698, + "2012": 0.702, + "2013": 0.711, + "2014": 0.709, + "2015": 0.686, + "2016": 0.689, + "2017": 0.687, + "2018": 0.666, + "2019": 0.674, + "2020": 0.668, + "2021": 0.654 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr101", + "Region": "Ibb", + "1990": 0.571, + "1991": 0.577, + "1992": 0.582, + "1993": 0.589, + "1994": 0.587, + "1995": 0.598, + "1996": 0.599, + "1997": 0.608, + "1998": 0.617, + "1999": 0.631, + "2000": 0.646, + "2001": 0.661, + "2002": 0.677, + "2003": 0.692, + "2004": 0.705, + "2005": 0.719, + "2006": 0.731, + "2007": 0.735, + "2008": 0.736, + "2009": 0.735, + "2010": 0.732, + "2011": 0.729, + "2012": 0.724, + "2013": 0.722, + "2014": 0.72, + "2015": 0.697, + "2016": 0.7, + "2017": 0.698, + "2018": 0.677, + "2019": 0.685, + "2020": 0.678, + "2021": 0.665 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr106", + "Region": "Jawf, Hadramet, Shabda (Shabwah), Marib, Mohra (Al Mahrah)", + "1990": 0.648, + "1991": 0.654, + "1992": 0.66, + "1993": 0.667, + "1994": 0.665, + "1995": 0.677, + "1996": 0.679, + "1997": 0.688, + "1998": 0.688, + "1999": 0.693, + "2000": 0.699, + "2001": 0.705, + "2002": 0.711, + "2003": 0.717, + "2004": 0.72, + "2005": 0.724, + "2006": 0.727, + "2007": 0.74, + "2008": 0.751, + "2009": 0.758, + "2010": 0.764, + "2011": 0.77, + "2012": 0.772, + "2013": 0.779, + "2014": 0.777, + "2015": 0.752, + "2016": 0.755, + "2017": 0.754, + "2018": 0.731, + "2019": 0.74, + "2020": 0.733, + "2021": 0.718 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr103", + "Region": "Sana a (capital; Al Amana), Sana a (governorate)", + "1990": 0.586, + "1991": 0.591, + "1992": 0.597, + "1993": 0.604, + "1994": 0.602, + "1995": 0.613, + "1996": 0.615, + "1997": 0.623, + "1998": 0.63, + "1999": 0.642, + "2000": 0.655, + "2001": 0.668, + "2002": 0.681, + "2003": 0.694, + "2004": 0.704, + "2005": 0.716, + "2006": 0.726, + "2007": 0.734, + "2008": 0.74, + "2009": 0.743, + "2010": 0.744, + "2011": 0.746, + "2012": 0.744, + "2013": 0.747, + "2014": 0.744, + "2015": 0.721, + "2016": 0.724, + "2017": 0.722, + "2018": 0.7, + "2019": 0.709, + "2020": 0.702, + "2021": 0.688 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr105", + "Region": "Taiz", + "1990": 0.66, + "1991": 0.666, + "1992": 0.672, + "1993": 0.679, + "1994": 0.677, + "1995": 0.689, + "1996": 0.691, + "1997": 0.7, + "1998": 0.707, + "1999": 0.719, + "2000": 0.732, + "2001": 0.745, + "2002": 0.759, + "2003": 0.772, + "2004": 0.782, + "2005": 0.794, + "2006": 0.804, + "2007": 0.798, + "2008": 0.789, + "2009": 0.777, + "2010": 0.764, + "2011": 0.752, + "2012": 0.736, + "2013": 0.726, + "2014": 0.723, + "2015": 0.7, + "2016": 0.703, + "2017": 0.701, + "2018": 0.68, + "2019": 0.688, + "2020": 0.681, + "2021": 0.668 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "National", + "GDLCODE": "ZMBt", + "Region": "Total", + "1990": 0.43, + "1991": 0.417, + "1992": 0.408, + "1993": 0.403, + "1994": 0.398, + "1995": 0.393, + "1996": 0.388, + "1997": 0.384, + "1998": 0.38, + "1999": 0.379, + "2000": 0.388, + "2001": 0.4, + "2002": 0.415, + "2003": 0.435, + "2004": 0.454, + "2005": 0.472, + "2006": 0.489, + "2007": 0.504, + "2008": 0.522, + "2009": 0.543, + "2010": 0.566, + "2011": 0.581, + "2012": 0.598, + "2013": 0.614, + "2014": 0.626, + "2015": 0.634, + "2016": 0.643, + "2017": 0.648, + "2018": 0.651, + "2019": 0.658, + "2020": 0.652, + "2021": 0.634 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr101", + "Region": "Central", + "1990": 0.461, + "1991": 0.448, + "1992": 0.438, + "1993": 0.434, + "1994": 0.428, + "1995": 0.423, + "1996": 0.418, + "1997": 0.404, + "1998": 0.391, + "1999": 0.381, + "2000": 0.381, + "2001": 0.384, + "2002": 0.389, + "2003": 0.42, + "2004": 0.45, + "2005": 0.48, + "2006": 0.51, + "2007": 0.537, + "2008": 0.551, + "2009": 0.567, + "2010": 0.586, + "2011": 0.596, + "2012": 0.609, + "2013": 0.62, + "2014": 0.628, + "2015": 0.646, + "2016": 0.665, + "2017": 0.681, + "2018": 0.694, + "2019": 0.701, + "2020": 0.695, + "2021": 0.676 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr102", + "Region": "Copperbelt", + "1990": 0.448, + "1991": 0.434, + "1992": 0.425, + "1993": 0.42, + "1994": 0.415, + "1995": 0.41, + "1996": 0.405, + "1997": 0.405, + "1998": 0.406, + "1999": 0.41, + "2000": 0.424, + "2001": 0.441, + "2002": 0.462, + "2003": 0.474, + "2004": 0.485, + "2005": 0.495, + "2006": 0.504, + "2007": 0.51, + "2008": 0.533, + "2009": 0.559, + "2010": 0.587, + "2011": 0.607, + "2012": 0.629, + "2013": 0.65, + "2014": 0.667, + "2015": 0.674, + "2016": 0.682, + "2017": 0.686, + "2018": 0.688, + "2019": 0.695, + "2020": 0.689, + "2021": 0.67 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr103", + "Region": "Eastern", + "1990": 0.397, + "1991": 0.385, + "1992": 0.376, + "1993": 0.372, + "1994": 0.367, + "1995": 0.362, + "1996": 0.358, + "1997": 0.359, + "1998": 0.361, + "1999": 0.365, + "2000": 0.379, + "2001": 0.397, + "2002": 0.417, + "2003": 0.432, + "2004": 0.446, + "2005": 0.46, + "2006": 0.472, + "2007": 0.482, + "2008": 0.494, + "2009": 0.507, + "2010": 0.523, + "2011": 0.531, + "2012": 0.541, + "2013": 0.55, + "2014": 0.556, + "2015": 0.582, + "2016": 0.608, + "2017": 0.631, + "2018": 0.652, + "2019": 0.659, + "2020": 0.653, + "2021": 0.635 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr104", + "Region": "Luapula", + "1990": 0.39, + "1991": 0.378, + "1992": 0.369, + "1993": 0.365, + "1994": 0.36, + "1995": 0.355, + "1996": 0.351, + "1997": 0.343, + "1998": 0.335, + "1999": 0.331, + "2000": 0.336, + "2001": 0.343, + "2002": 0.353, + "2003": 0.379, + "2004": 0.404, + "2005": 0.428, + "2006": 0.452, + "2007": 0.474, + "2008": 0.491, + "2009": 0.511, + "2010": 0.533, + "2011": 0.547, + "2012": 0.563, + "2013": 0.577, + "2014": 0.589, + "2015": 0.581, + "2016": 0.575, + "2017": 0.564, + "2018": 0.553, + "2019": 0.559, + "2020": 0.553, + "2021": 0.537 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr105", + "Region": "Lusaka", + "1990": 0.449, + "1991": 0.436, + "1992": 0.427, + "1993": 0.422, + "1994": 0.416, + "1995": 0.412, + "1996": 0.406, + "1997": 0.406, + "1998": 0.405, + "1999": 0.408, + "2000": 0.421, + "2001": 0.437, + "2002": 0.456, + "2003": 0.469, + "2004": 0.48, + "2005": 0.491, + "2006": 0.5, + "2007": 0.507, + "2008": 0.529, + "2009": 0.553, + "2010": 0.58, + "2011": 0.598, + "2012": 0.619, + "2013": 0.638, + "2014": 0.654, + "2015": 0.655, + "2016": 0.657, + "2017": 0.656, + "2018": 0.652, + "2019": 0.659, + "2020": 0.653, + "2021": 0.635 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr107", + "Region": "North-Western", + "1990": 0.477, + "1991": 0.463, + "1992": 0.454, + "1993": 0.449, + "1994": 0.443, + "1995": 0.438, + "1996": 0.433, + "1997": 0.429, + "1998": 0.426, + "1999": 0.426, + "2000": 0.437, + "2001": 0.451, + "2002": 0.468, + "2003": 0.488, + "2004": 0.506, + "2005": 0.524, + "2006": 0.541, + "2007": 0.555, + "2008": 0.571, + "2009": 0.59, + "2010": 0.61, + "2011": 0.623, + "2012": 0.637, + "2013": 0.65, + "2014": 0.66, + "2015": 0.685, + "2016": 0.71, + "2017": 0.732, + "2018": 0.751, + "2019": 0.759, + "2020": 0.752, + "2021": 0.732 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr106", + "Region": "Northern", + "1990": 0.423, + "1991": 0.41, + "1992": 0.401, + "1993": 0.397, + "1994": 0.391, + "1995": 0.387, + "1996": 0.382, + "1997": 0.375, + "1998": 0.37, + "1999": 0.367, + "2000": 0.374, + "2001": 0.383, + "2002": 0.396, + "2003": 0.413, + "2004": 0.429, + "2005": 0.444, + "2006": 0.459, + "2007": 0.47, + "2008": 0.492, + "2009": 0.515, + "2010": 0.541, + "2011": 0.558, + "2012": 0.578, + "2013": 0.596, + "2014": 0.612, + "2015": 0.62, + "2016": 0.63, + "2017": 0.635, + "2018": 0.639, + "2019": 0.646, + "2020": 0.64, + "2021": 0.622 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr108", + "Region": "Southern", + "1990": 0.484, + "1991": 0.47, + "1992": 0.46, + "1993": 0.455, + "1994": 0.449, + "1995": 0.444, + "1996": 0.439, + "1997": 0.43, + "1998": 0.422, + "1999": 0.417, + "2000": 0.422, + "2001": 0.431, + "2002": 0.442, + "2003": 0.469, + "2004": 0.494, + "2005": 0.519, + "2006": 0.543, + "2007": 0.565, + "2008": 0.579, + "2009": 0.596, + "2010": 0.615, + "2011": 0.625, + "2012": 0.637, + "2013": 0.648, + "2014": 0.656, + "2015": 0.653, + "2016": 0.651, + "2017": 0.645, + "2018": 0.637, + "2019": 0.644, + "2020": 0.638, + "2021": 0.62 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr109", + "Region": "Western", + "1990": 0.421, + "1991": 0.409, + "1992": 0.4, + "1993": 0.395, + "1994": 0.39, + "1995": 0.385, + "1996": 0.38, + "1997": 0.372, + "1998": 0.364, + "1999": 0.359, + "2000": 0.363, + "2001": 0.371, + "2002": 0.381, + "2003": 0.407, + "2004": 0.431, + "2005": 0.455, + "2006": 0.479, + "2007": 0.5, + "2008": 0.521, + "2009": 0.545, + "2010": 0.572, + "2011": 0.59, + "2012": 0.61, + "2013": 0.629, + "2014": 0.644, + "2015": 0.652, + "2016": 0.661, + "2017": 0.665, + "2018": 0.668, + "2019": 0.675, + "2020": 0.669, + "2021": 0.651 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "National", + "GDLCODE": "ZWEt", + "Region": "Total", + "1990": 0.607, + "1991": 0.586, + "1992": 0.561, + "1993": 0.53, + "1994": 0.501, + "1995": 0.47, + "1996": 0.445, + "1997": 0.431, + "1998": 0.413, + "1999": 0.388, + "2000": 0.38, + "2001": 0.338, + "2002": 0.378, + "2003": 0.36, + "2004": 0.377, + "2005": 0.381, + "2006": 0.39, + "2007": 0.394, + "2008": 0.411, + "2009": 0.432, + "2010": 0.472, + "2011": 0.513, + "2012": 0.548, + "2013": 0.576, + "2014": 0.598, + "2015": 0.609, + "2016": 0.62, + "2017": 0.626, + "2018": 0.637, + "2019": 0.635, + "2020": 0.633, + "2021": 0.604 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr110", + "Region": "Bulawayo", + "1990": 0.706, + "1991": 0.683, + "1992": 0.655, + "1993": 0.621, + "1994": 0.589, + "1995": 0.547, + "1996": 0.513, + "1997": 0.49, + "1998": 0.464, + "1999": 0.43, + "2000": 0.422, + "2001": 0.377, + "2002": 0.42, + "2003": 0.401, + "2004": 0.419, + "2005": 0.424, + "2006": 0.433, + "2007": 0.435, + "2008": 0.45, + "2009": 0.468, + "2010": 0.507, + "2011": 0.547, + "2012": 0.593, + "2013": 0.632, + "2014": 0.664, + "2015": 0.686, + "2016": 0.691, + "2017": 0.692, + "2018": 0.697, + "2019": 0.689, + "2020": 0.686, + "2021": 0.656 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr109", + "Region": "Harare", + "1990": 0.671, + "1991": 0.649, + "1992": 0.622, + "1993": 0.589, + "1994": 0.558, + "1995": 0.521, + "1996": 0.492, + "1997": 0.473, + "1998": 0.451, + "1999": 0.422, + "2000": 0.41, + "2001": 0.363, + "2002": 0.401, + "2003": 0.379, + "2004": 0.393, + "2005": 0.393, + "2006": 0.399, + "2007": 0.401, + "2008": 0.416, + "2009": 0.435, + "2010": 0.473, + "2011": 0.512, + "2012": 0.56, + "2013": 0.603, + "2014": 0.639, + "2015": 0.665, + "2016": 0.666, + "2017": 0.662, + "2018": 0.663, + "2019": 0.651, + "2020": 0.649, + "2021": 0.619 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr101", + "Region": "Manicaland", + "1990": 0.582, + "1991": 0.562, + "1992": 0.537, + "1993": 0.507, + "1994": 0.48, + "1995": 0.441, + "1996": 0.41, + "1997": 0.389, + "1998": 0.364, + "1999": 0.334, + "2000": 0.328, + "2001": 0.29, + "2002": 0.327, + "2003": 0.312, + "2004": 0.328, + "2005": 0.333, + "2006": 0.342, + "2007": 0.349, + "2008": 0.368, + "2009": 0.391, + "2010": 0.433, + "2011": 0.476, + "2012": 0.505, + "2013": 0.527, + "2014": 0.543, + "2015": 0.549, + "2016": 0.572, + "2017": 0.591, + "2018": 0.614, + "2019": 0.625, + "2020": 0.622, + "2021": 0.594 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr102", + "Region": "Mashonaland Central", + "1990": 0.579, + "1991": 0.559, + "1992": 0.534, + "1993": 0.504, + "1994": 0.477, + "1995": 0.444, + "1996": 0.418, + "1997": 0.401, + "1998": 0.381, + "1999": 0.355, + "2000": 0.351, + "2001": 0.314, + "2002": 0.357, + "2003": 0.343, + "2004": 0.363, + "2005": 0.37, + "2006": 0.382, + "2007": 0.382, + "2008": 0.395, + "2009": 0.411, + "2010": 0.445, + "2011": 0.48, + "2012": 0.519, + "2013": 0.551, + "2014": 0.577, + "2015": 0.594, + "2016": 0.6, + "2017": 0.601, + "2018": 0.606, + "2019": 0.599, + "2020": 0.597, + "2021": 0.569 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr103", + "Region": "Mashonaland East", + "1990": 0.625, + "1991": 0.604, + "1992": 0.578, + "1993": 0.546, + "1994": 0.517, + "1995": 0.478, + "1996": 0.448, + "1997": 0.426, + "1998": 0.402, + "1999": 0.371, + "2000": 0.365, + "2001": 0.326, + "2002": 0.367, + "2003": 0.351, + "2004": 0.37, + "2005": 0.376, + "2006": 0.386, + "2007": 0.398, + "2008": 0.423, + "2009": 0.453, + "2010": 0.503, + "2011": 0.555, + "2012": 0.572, + "2013": 0.58, + "2014": 0.58, + "2015": 0.57, + "2016": 0.593, + "2017": 0.612, + "2018": 0.635, + "2019": 0.646, + "2020": 0.643, + "2021": 0.614 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr104", + "Region": "Mashonaland West", + "1990": 0.523, + "1991": 0.504, + "1992": 0.481, + "1993": 0.453, + "1994": 0.428, + "1995": 0.414, + "1996": 0.406, + "1997": 0.407, + "1998": 0.403, + "1999": 0.393, + "2000": 0.382, + "2001": 0.338, + "2002": 0.376, + "2003": 0.355, + "2004": 0.37, + "2005": 0.371, + "2006": 0.378, + "2007": 0.379, + "2008": 0.393, + "2009": 0.41, + "2010": 0.446, + "2011": 0.482, + "2012": 0.515, + "2013": 0.541, + "2014": 0.56, + "2015": 0.57, + "2016": 0.578, + "2017": 0.581, + "2018": 0.588, + "2019": 0.584, + "2020": 0.581, + "2021": 0.554 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr108", + "Region": "Masvingo", + "1990": 0.602, + "1991": 0.581, + "1992": 0.556, + "1993": 0.525, + "1994": 0.497, + "1995": 0.475, + "1996": 0.459, + "1997": 0.452, + "1998": 0.442, + "1999": 0.425, + "2000": 0.414, + "2001": 0.367, + "2002": 0.407, + "2003": 0.385, + "2004": 0.401, + "2005": 0.402, + "2006": 0.409, + "2007": 0.411, + "2008": 0.425, + "2009": 0.444, + "2010": 0.481, + "2011": 0.52, + "2012": 0.563, + "2013": 0.599, + "2014": 0.628, + "2015": 0.648, + "2016": 0.661, + "2017": 0.67, + "2018": 0.683, + "2019": 0.683, + "2020": 0.681, + "2021": 0.65 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr105", + "Region": "Matebeleland North", + "1990": 0.621, + "1991": 0.6, + "1992": 0.574, + "1993": 0.543, + "1994": 0.514, + "1995": 0.493, + "1996": 0.478, + "1997": 0.473, + "1998": 0.464, + "1999": 0.447, + "2000": 0.431, + "2001": 0.378, + "2002": 0.413, + "2003": 0.387, + "2004": 0.397, + "2005": 0.394, + "2006": 0.396, + "2007": 0.414, + "2008": 0.446, + "2009": 0.483, + "2010": 0.542, + "2011": 0.604, + "2012": 0.628, + "2013": 0.642, + "2014": 0.648, + "2015": 0.643, + "2016": 0.655, + "2017": 0.663, + "2018": 0.675, + "2019": 0.674, + "2020": 0.671, + "2021": 0.642 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr106", + "Region": "Matebeleland South", + "1990": 0.614, + "1991": 0.593, + "1992": 0.567, + "1993": 0.536, + "1994": 0.508, + "1995": 0.483, + "1996": 0.465, + "1997": 0.457, + "1998": 0.445, + "1999": 0.425, + "2000": 0.418, + "2001": 0.374, + "2002": 0.417, + "2003": 0.399, + "2004": 0.418, + "2005": 0.423, + "2006": 0.433, + "2007": 0.443, + "2008": 0.467, + "2009": 0.495, + "2010": 0.544, + "2011": 0.596, + "2012": 0.622, + "2013": 0.64, + "2014": 0.649, + "2015": 0.647, + "2016": 0.665, + "2017": 0.678, + "2018": 0.695, + "2019": 0.699, + "2020": 0.696, + "2021": 0.665 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr107", + "Region": "Midlands", + "1990": 0.616, + "1991": 0.595, + "1992": 0.569, + "1993": 0.538, + "1994": 0.51, + "1995": 0.473, + "1996": 0.445, + "1997": 0.426, + "1998": 0.404, + "1999": 0.376, + "2000": 0.371, + "2001": 0.332, + "2002": 0.374, + "2003": 0.358, + "2004": 0.378, + "2005": 0.384, + "2006": 0.396, + "2007": 0.399, + "2008": 0.415, + "2009": 0.434, + "2010": 0.473, + "2011": 0.514, + "2012": 0.554, + "2013": 0.587, + "2014": 0.614, + "2015": 0.631, + "2016": 0.634, + "2017": 0.632, + "2018": 0.634, + "2019": 0.624, + "2020": 0.621, + "2021": 0.593 + } +] diff --git a/public/gdl-data/income.json b/public/gdl-data/income.json new file mode 100644 index 0000000..64a4f72 --- /dev/null +++ b/public/gdl-data/income.json @@ -0,0 +1,78962 @@ +[ + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "National", + "GDLCODE": "AFGt", + "Region": "Total", + "1990": 0.497, + "1991": 0.472, + "1992": 0.457, + "1993": 0.412, + "1994": 0.361, + "1995": 0.392, + "1996": 0.391, + "1997": 0.379, + "1998": 0.369, + "1999": 0.358, + "2000": 0.346, + "2001": 0.331, + "2002": 0.384, + "2003": 0.399, + "2004": 0.397, + "2005": 0.402, + "2006": 0.411, + "2007": 0.438, + "2008": 0.433, + "2009": 0.444, + "2010": 0.448, + "2011": 0.452, + "2012": 0.462, + "2013": 0.466, + "2014": 0.465, + "2015": 0.46, + "2016": 0.458, + "2017": 0.459, + "2018": 0.457, + "2019": 0.46, + "2020": 0.452, + "2021": 0.439 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr101", + "Region": "Central (Kabul Wardak Kapisa Logar Parwan Panjsher)", + "1990": 0.539, + "1991": 0.513, + "1992": 0.498, + "1993": 0.451, + "1994": 0.398, + "1995": 0.43, + "1996": 0.43, + "1997": 0.417, + "1998": 0.407, + "1999": 0.396, + "2000": 0.382, + "2001": 0.367, + "2002": 0.422, + "2003": 0.437, + "2004": 0.436, + "2005": 0.441, + "2006": 0.45, + "2007": 0.478, + "2008": 0.473, + "2009": 0.484, + "2010": 0.488, + "2011": 0.492, + "2012": 0.5, + "2013": 0.503, + "2014": 0.5, + "2015": 0.493, + "2016": 0.492, + "2017": 0.492, + "2018": 0.49, + "2019": 0.493, + "2020": 0.485, + "2021": 0.471 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr102", + "Region": "Central Highlands (Bamyan Daikundi)", + "1990": 0.469, + "1991": 0.444, + "1992": 0.43, + "1993": 0.385, + "1994": 0.335, + "1995": 0.366, + "1996": 0.365, + "1997": 0.354, + "1998": 0.344, + "1999": 0.333, + "2000": 0.321, + "2001": 0.306, + "2002": 0.358, + "2003": 0.373, + "2004": 0.371, + "2005": 0.376, + "2006": 0.385, + "2007": 0.411, + "2008": 0.406, + "2009": 0.416, + "2010": 0.421, + "2011": 0.422, + "2012": 0.428, + "2013": 0.429, + "2014": 0.425, + "2015": 0.416, + "2016": 0.415, + "2017": 0.415, + "2018": 0.413, + "2019": 0.416, + "2020": 0.409, + "2021": 0.396 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr103", + "Region": "East (Nangarhar Kunar Laghman Nooristan)", + "1990": 0.472, + "1991": 0.448, + "1992": 0.433, + "1993": 0.389, + "1994": 0.339, + "1995": 0.369, + "1996": 0.369, + "1997": 0.357, + "1998": 0.347, + "1999": 0.336, + "2000": 0.324, + "2001": 0.31, + "2002": 0.361, + "2003": 0.376, + "2004": 0.374, + "2005": 0.38, + "2006": 0.388, + "2007": 0.414, + "2008": 0.409, + "2009": 0.42, + "2010": 0.424, + "2011": 0.424, + "2012": 0.429, + "2013": 0.429, + "2014": 0.424, + "2015": 0.414, + "2016": 0.413, + "2017": 0.413, + "2018": 0.411, + "2019": 0.414, + "2020": 0.407, + "2021": 0.394 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr104", + "Region": "North (Samangan Sar-e-Pul Balkh Jawzjan Faryab)", + "1990": 0.477, + "1991": 0.453, + "1992": 0.438, + "1993": 0.393, + "1994": 0.343, + "1995": 0.374, + "1996": 0.373, + "1997": 0.361, + "1998": 0.351, + "1999": 0.341, + "2000": 0.328, + "2001": 0.314, + "2002": 0.366, + "2003": 0.381, + "2004": 0.379, + "2005": 0.384, + "2006": 0.393, + "2007": 0.419, + "2008": 0.414, + "2009": 0.425, + "2010": 0.429, + "2011": 0.443, + "2012": 0.461, + "2013": 0.475, + "2014": 0.483, + "2015": 0.486, + "2016": 0.484, + "2017": 0.485, + "2018": 0.483, + "2019": 0.486, + "2020": 0.478, + "2021": 0.464 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr105", + "Region": "North East (Baghlan Takhar Badakhshan Kunduz)", + "1990": 0.494, + "1991": 0.469, + "1992": 0.454, + "1993": 0.408, + "1994": 0.357, + "1995": 0.389, + "1996": 0.388, + "1997": 0.376, + "1998": 0.366, + "1999": 0.355, + "2000": 0.343, + "2001": 0.328, + "2002": 0.381, + "2003": 0.396, + "2004": 0.394, + "2005": 0.399, + "2006": 0.408, + "2007": 0.434, + "2008": 0.429, + "2009": 0.44, + "2010": 0.444, + "2011": 0.445, + "2012": 0.45, + "2013": 0.451, + "2014": 0.446, + "2015": 0.437, + "2016": 0.435, + "2017": 0.436, + "2018": 0.434, + "2019": 0.437, + "2020": 0.43, + "2021": 0.416 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr106", + "Region": "South (Uruzgan Helmand Zabul Nimroz Kandahar)", + "1990": 0.487, + "1991": 0.462, + "1992": 0.447, + "1993": 0.402, + "1994": 0.351, + "1995": 0.382, + "1996": 0.382, + "1997": 0.37, + "1998": 0.36, + "1999": 0.349, + "2000": 0.336, + "2001": 0.322, + "2002": 0.374, + "2003": 0.389, + "2004": 0.387, + "2005": 0.393, + "2006": 0.401, + "2007": 0.428, + "2008": 0.423, + "2009": 0.434, + "2010": 0.438, + "2011": 0.444, + "2012": 0.454, + "2013": 0.46, + "2014": 0.46, + "2015": 0.455, + "2016": 0.454, + "2017": 0.454, + "2018": 0.452, + "2019": 0.455, + "2020": 0.448, + "2021": 0.434 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr107", + "Region": "South East (Ghazni Paktya Paktika Khost)", + "1990": 0.518, + "1991": 0.492, + "1992": 0.477, + "1993": 0.431, + "1994": 0.379, + "1995": 0.411, + "1996": 0.41, + "1997": 0.398, + "1998": 0.387, + "1999": 0.377, + "2000": 0.364, + "2001": 0.349, + "2002": 0.402, + "2003": 0.418, + "2004": 0.416, + "2005": 0.421, + "2006": 0.43, + "2007": 0.457, + "2008": 0.452, + "2009": 0.463, + "2010": 0.468, + "2011": 0.466, + "2012": 0.468, + "2013": 0.466, + "2014": 0.459, + "2015": 0.447, + "2016": 0.445, + "2017": 0.445, + "2018": 0.443, + "2019": 0.446, + "2020": 0.439, + "2021": 0.425 + }, + { + "Country": "Afghanistan", + "Continent": "Asia/Pacific", + "ISO_Code": "AFG", + "Level": "Subnat", + "GDLCODE": "AFGr108", + "Region": "West (Ghor Herat Badghis Farah)", + "1990": 0.494, + "1991": 0.469, + "1992": 0.454, + "1993": 0.409, + "1994": 0.358, + "1995": 0.39, + "1996": 0.389, + "1997": 0.377, + "1998": 0.367, + "1999": 0.356, + "2000": 0.343, + "2001": 0.329, + "2002": 0.381, + "2003": 0.396, + "2004": 0.395, + "2005": 0.4, + "2006": 0.408, + "2007": 0.435, + "2008": 0.43, + "2009": 0.441, + "2010": 0.445, + "2011": 0.447, + "2012": 0.454, + "2013": 0.457, + "2014": 0.453, + "2015": 0.445, + "2016": 0.444, + "2017": 0.444, + "2018": 0.442, + "2019": 0.445, + "2020": 0.438, + "2021": 0.424 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "National", + "GDLCODE": "ALBt", + "Region": "Total", + "1990": 0.583, + "1991": 0.531, + "1992": 0.518, + "1993": 0.539, + "1994": 0.555, + "1995": 0.578, + "1996": 0.592, + "1997": 0.575, + "1998": 0.589, + "1999": 0.608, + "2000": 0.62, + "2001": 0.634, + "2002": 0.64, + "2003": 0.649, + "2004": 0.657, + "2005": 0.666, + "2006": 0.677, + "2007": 0.686, + "2008": 0.695, + "2009": 0.698, + "2010": 0.705, + "2011": 0.711, + "2012": 0.712, + "2013": 0.717, + "2014": 0.719, + "2015": 0.723, + "2016": 0.729, + "2017": 0.733, + "2018": 0.739, + "2019": 0.741, + "2020": 0.735, + "2021": 0.748 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr201", + "Region": " Berat", + "1990": 0.586, + "1991": 0.533, + "1992": 0.52, + "1993": 0.541, + "1994": 0.558, + "1995": 0.58, + "1996": 0.595, + "1997": 0.578, + "1998": 0.592, + "1999": 0.611, + "2000": 0.623, + "2001": 0.637, + "2002": 0.643, + "2003": 0.652, + "2004": 0.66, + "2005": 0.669, + "2006": 0.68, + "2007": 0.69, + "2008": 0.699, + "2009": 0.703, + "2010": 0.709, + "2011": 0.713, + "2012": 0.713, + "2013": 0.717, + "2014": 0.718, + "2015": 0.72, + "2016": 0.725, + "2017": 0.727, + "2018": 0.733, + "2019": 0.735, + "2020": 0.73, + "2021": 0.742 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr202", + "Region": " Diber", + "1990": 0.584, + "1991": 0.532, + "1992": 0.519, + "1993": 0.54, + "1994": 0.556, + "1995": 0.579, + "1996": 0.593, + "1997": 0.576, + "1998": 0.59, + "1999": 0.609, + "2000": 0.621, + "2001": 0.635, + "2002": 0.641, + "2003": 0.65, + "2004": 0.658, + "2005": 0.667, + "2006": 0.671, + "2007": 0.674, + "2008": 0.676, + "2009": 0.673, + "2010": 0.682, + "2011": 0.691, + "2012": 0.695, + "2013": 0.703, + "2014": 0.708, + "2015": 0.715, + "2016": 0.723, + "2017": 0.73, + "2018": 0.736, + "2019": 0.738, + "2020": 0.732, + "2021": 0.745 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr203", + "Region": " Durres", + "1990": 0.588, + "1991": 0.536, + "1992": 0.523, + "1993": 0.544, + "1994": 0.56, + "1995": 0.583, + "1996": 0.598, + "1997": 0.58, + "1998": 0.595, + "1999": 0.614, + "2000": 0.626, + "2001": 0.64, + "2002": 0.646, + "2003": 0.655, + "2004": 0.663, + "2005": 0.671, + "2006": 0.683, + "2007": 0.693, + "2008": 0.703, + "2009": 0.706, + "2010": 0.715, + "2011": 0.722, + "2012": 0.724, + "2013": 0.731, + "2014": 0.734, + "2015": 0.74, + "2016": 0.747, + "2017": 0.752, + "2018": 0.758, + "2019": 0.76, + "2020": 0.754, + "2021": 0.767 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr204", + "Region": " Elbasan", + "1990": 0.572, + "1991": 0.52, + "1992": 0.507, + "1993": 0.528, + "1994": 0.544, + "1995": 0.566, + "1996": 0.581, + "1997": 0.564, + "1998": 0.578, + "1999": 0.596, + "2000": 0.608, + "2001": 0.622, + "2002": 0.628, + "2003": 0.637, + "2004": 0.645, + "2005": 0.653, + "2006": 0.664, + "2007": 0.674, + "2008": 0.683, + "2009": 0.685, + "2010": 0.693, + "2011": 0.7, + "2012": 0.702, + "2013": 0.709, + "2014": 0.711, + "2015": 0.716, + "2016": 0.723, + "2017": 0.728, + "2018": 0.734, + "2019": 0.736, + "2020": 0.73, + "2021": 0.743 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr205", + "Region": " Fier", + "1990": 0.552, + "1991": 0.501, + "1992": 0.489, + "1993": 0.509, + "1994": 0.525, + "1995": 0.547, + "1996": 0.562, + "1997": 0.545, + "1998": 0.559, + "1999": 0.577, + "2000": 0.589, + "2001": 0.602, + "2002": 0.608, + "2003": 0.617, + "2004": 0.625, + "2005": 0.633, + "2006": 0.649, + "2007": 0.663, + "2008": 0.677, + "2009": 0.684, + "2010": 0.69, + "2011": 0.694, + "2012": 0.693, + "2013": 0.697, + "2014": 0.697, + "2015": 0.699, + "2016": 0.703, + "2017": 0.705, + "2018": 0.71, + "2019": 0.713, + "2020": 0.707, + "2021": 0.719 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr206", + "Region": " Gjirokaster", + "1990": 0.6, + "1991": 0.547, + "1992": 0.534, + "1993": 0.555, + "1994": 0.572, + "1995": 0.595, + "1996": 0.609, + "1997": 0.592, + "1998": 0.607, + "1999": 0.625, + "2000": 0.638, + "2001": 0.652, + "2002": 0.658, + "2003": 0.667, + "2004": 0.675, + "2005": 0.684, + "2006": 0.688, + "2007": 0.691, + "2008": 0.693, + "2009": 0.689, + "2010": 0.698, + "2011": 0.705, + "2012": 0.709, + "2013": 0.716, + "2014": 0.72, + "2015": 0.726, + "2016": 0.734, + "2017": 0.74, + "2018": 0.746, + "2019": 0.748, + "2020": 0.743, + "2021": 0.755 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr207", + "Region": " Korce", + "1990": 0.585, + "1991": 0.532, + "1992": 0.519, + "1993": 0.54, + "1994": 0.557, + "1995": 0.579, + "1996": 0.594, + "1997": 0.577, + "1998": 0.591, + "1999": 0.61, + "2000": 0.622, + "2001": 0.636, + "2002": 0.642, + "2003": 0.651, + "2004": 0.659, + "2005": 0.667, + "2006": 0.676, + "2007": 0.682, + "2008": 0.688, + "2009": 0.688, + "2010": 0.697, + "2011": 0.705, + "2012": 0.708, + "2013": 0.715, + "2014": 0.719, + "2015": 0.725, + "2016": 0.732, + "2017": 0.738, + "2018": 0.744, + "2019": 0.746, + "2020": 0.74, + "2021": 0.753 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr208", + "Region": " Kukes", + "1990": 0.592, + "1991": 0.54, + "1992": 0.527, + "1993": 0.548, + "1994": 0.564, + "1995": 0.587, + "1996": 0.602, + "1997": 0.584, + "1998": 0.599, + "1999": 0.618, + "2000": 0.63, + "2001": 0.644, + "2002": 0.65, + "2003": 0.659, + "2004": 0.667, + "2005": 0.676, + "2006": 0.678, + "2007": 0.679, + "2008": 0.679, + "2009": 0.673, + "2010": 0.684, + "2011": 0.693, + "2012": 0.698, + "2013": 0.707, + "2014": 0.713, + "2015": 0.721, + "2016": 0.73, + "2017": 0.738, + "2018": 0.744, + "2019": 0.746, + "2020": 0.74, + "2021": 0.753 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr209", + "Region": " Lezhe", + "1990": 0.559, + "1991": 0.508, + "1992": 0.495, + "1993": 0.516, + "1994": 0.532, + "1995": 0.554, + "1996": 0.569, + "1997": 0.552, + "1998": 0.566, + "1999": 0.584, + "2000": 0.596, + "2001": 0.609, + "2002": 0.615, + "2003": 0.624, + "2004": 0.632, + "2005": 0.641, + "2006": 0.656, + "2007": 0.67, + "2008": 0.683, + "2009": 0.69, + "2010": 0.697, + "2011": 0.703, + "2012": 0.703, + "2013": 0.708, + "2014": 0.71, + "2015": 0.714, + "2016": 0.719, + "2017": 0.722, + "2018": 0.728, + "2019": 0.73, + "2020": 0.725, + "2021": 0.737 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr210", + "Region": " Shkoder", + "1990": 0.587, + "1991": 0.534, + "1992": 0.521, + "1993": 0.542, + "1994": 0.559, + "1995": 0.582, + "1996": 0.596, + "1997": 0.579, + "1998": 0.593, + "1999": 0.612, + "2000": 0.624, + "2001": 0.638, + "2002": 0.644, + "2003": 0.653, + "2004": 0.661, + "2005": 0.67, + "2006": 0.68, + "2007": 0.69, + "2008": 0.699, + "2009": 0.702, + "2010": 0.71, + "2011": 0.717, + "2012": 0.72, + "2013": 0.727, + "2014": 0.73, + "2015": 0.735, + "2016": 0.743, + "2017": 0.748, + "2018": 0.754, + "2019": 0.756, + "2020": 0.75, + "2021": 0.763 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr211", + "Region": " Tirana", + "1990": 0.601, + "1991": 0.549, + "1992": 0.535, + "1993": 0.557, + "1994": 0.573, + "1995": 0.596, + "1996": 0.611, + "1997": 0.593, + "1998": 0.608, + "1999": 0.627, + "2000": 0.639, + "2001": 0.653, + "2002": 0.659, + "2003": 0.668, + "2004": 0.677, + "2005": 0.685, + "2006": 0.696, + "2007": 0.705, + "2008": 0.714, + "2009": 0.716, + "2010": 0.721, + "2011": 0.725, + "2012": 0.724, + "2013": 0.727, + "2014": 0.727, + "2015": 0.729, + "2016": 0.733, + "2017": 0.734, + "2018": 0.74, + "2019": 0.742, + "2020": 0.737, + "2021": 0.749 + }, + { + "Country": "Albania", + "Continent": "Europe", + "ISO_Code": "ALB", + "Level": "Subnat", + "GDLCODE": "ALBr212", + "Region": " Vlore", + "1990": 0.589, + "1991": 0.536, + "1992": 0.523, + "1993": 0.544, + "1994": 0.56, + "1995": 0.583, + "1996": 0.598, + "1997": 0.58, + "1998": 0.595, + "1999": 0.614, + "2000": 0.626, + "2001": 0.64, + "2002": 0.646, + "2003": 0.655, + "2004": 0.663, + "2005": 0.672, + "2006": 0.683, + "2007": 0.693, + "2008": 0.703, + "2009": 0.706, + "2010": 0.712, + "2011": 0.718, + "2012": 0.718, + "2013": 0.723, + "2014": 0.724, + "2015": 0.728, + "2016": 0.733, + "2017": 0.736, + "2018": 0.742, + "2019": 0.744, + "2020": 0.738, + "2021": 0.751 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "National", + "GDLCODE": "DZAt", + "Region": "Total", + "1990": 0.671, + "1991": 0.664, + "1992": 0.664, + "1993": 0.659, + "1994": 0.654, + "1995": 0.655, + "1996": 0.659, + "1997": 0.659, + "1998": 0.665, + "1999": 0.667, + "2000": 0.669, + "2001": 0.674, + "2002": 0.679, + "2003": 0.688, + "2004": 0.691, + "2005": 0.696, + "2006": 0.698, + "2007": 0.704, + "2008": 0.706, + "2009": 0.705, + "2010": 0.709, + "2011": 0.709, + "2012": 0.711, + "2013": 0.711, + "2014": 0.713, + "2015": 0.716, + "2016": 0.719, + "2017": 0.718, + "2018": 0.715, + "2019": 0.713, + "2020": 0.703, + "2021": 0.707 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr104", + "Region": "Hauts Plateaux Centre (Djelfa, Laghouat, MSila)", + "1990": 0.66, + "1991": 0.653, + "1992": 0.653, + "1993": 0.648, + "1994": 0.643, + "1995": 0.645, + "1996": 0.648, + "1997": 0.648, + "1998": 0.654, + "1999": 0.656, + "2000": 0.658, + "2001": 0.663, + "2002": 0.668, + "2003": 0.676, + "2004": 0.68, + "2005": 0.684, + "2006": 0.685, + "2007": 0.691, + "2008": 0.692, + "2009": 0.692, + "2010": 0.695, + "2011": 0.695, + "2012": 0.696, + "2013": 0.696, + "2014": 0.701, + "2015": 0.706, + "2016": 0.712, + "2017": 0.713, + "2018": 0.713, + "2019": 0.714, + "2020": 0.704, + "2021": 0.708 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr105", + "Region": "Hauts Plateaux Est (Setif, Batna, Khenchela, Bordj Bou Arreridj, Oum El Bouaghi, Tebessa)", + "1990": 0.663, + "1991": 0.655, + "1992": 0.656, + "1993": 0.65, + "1994": 0.645, + "1995": 0.647, + "1996": 0.65, + "1997": 0.65, + "1998": 0.656, + "1999": 0.658, + "2000": 0.66, + "2001": 0.665, + "2002": 0.67, + "2003": 0.68, + "2004": 0.685, + "2005": 0.691, + "2006": 0.693, + "2007": 0.701, + "2008": 0.704, + "2009": 0.704, + "2010": 0.709, + "2011": 0.71, + "2012": 0.713, + "2013": 0.714, + "2014": 0.715, + "2015": 0.715, + "2016": 0.717, + "2017": 0.714, + "2018": 0.709, + "2019": 0.706, + "2020": 0.696, + "2021": 0.7 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr106", + "Region": "Hauts Plateaux Ouest (Tiaret, Saida, Tissemsilt, Naama, El Bayadh)", + "1990": 0.657, + "1991": 0.649, + "1992": 0.65, + "1993": 0.644, + "1994": 0.639, + "1995": 0.641, + "1996": 0.644, + "1997": 0.644, + "1998": 0.65, + "1999": 0.652, + "2000": 0.655, + "2001": 0.659, + "2002": 0.664, + "2003": 0.674, + "2004": 0.678, + "2005": 0.684, + "2006": 0.686, + "2007": 0.693, + "2008": 0.696, + "2009": 0.696, + "2010": 0.7, + "2011": 0.701, + "2012": 0.704, + "2013": 0.705, + "2014": 0.708, + "2015": 0.711, + "2016": 0.715, + "2017": 0.714, + "2018": 0.712, + "2019": 0.711, + "2020": 0.701, + "2021": 0.705 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr101", + "Region": "Nord Centre (Alger, Blida, Boumerdes, Tipaza, Bouira, Medea, Tizi-Ouzou, Bejaia, Chlef, Ain Defla)", + "1990": 0.688, + "1991": 0.68, + "1992": 0.681, + "1993": 0.675, + "1994": 0.67, + "1995": 0.672, + "1996": 0.675, + "1997": 0.675, + "1998": 0.681, + "1999": 0.683, + "2000": 0.686, + "2001": 0.691, + "2002": 0.696, + "2003": 0.703, + "2004": 0.705, + "2005": 0.709, + "2006": 0.709, + "2007": 0.713, + "2008": 0.714, + "2009": 0.712, + "2010": 0.714, + "2011": 0.712, + "2012": 0.713, + "2013": 0.711, + "2014": 0.715, + "2015": 0.718, + "2016": 0.723, + "2017": 0.723, + "2018": 0.721, + "2019": 0.721, + "2020": 0.711, + "2021": 0.715 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr102", + "Region": "Nord Est (Annaba, Constantine, Skikda, Jijel, Mila, Souk Ahras, El Tarf, Guelma)", + "1990": 0.661, + "1991": 0.653, + "1992": 0.654, + "1993": 0.649, + "1994": 0.643, + "1995": 0.645, + "1996": 0.648, + "1997": 0.648, + "1998": 0.654, + "1999": 0.656, + "2000": 0.659, + "2001": 0.663, + "2002": 0.669, + "2003": 0.678, + "2004": 0.683, + "2005": 0.689, + "2006": 0.691, + "2007": 0.698, + "2008": 0.701, + "2009": 0.701, + "2010": 0.706, + "2011": 0.707, + "2012": 0.709, + "2013": 0.71, + "2014": 0.712, + "2015": 0.713, + "2016": 0.716, + "2017": 0.714, + "2018": 0.71, + "2019": 0.708, + "2020": 0.698, + "2021": 0.702 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr103", + "Region": "Nord Ouest (Oran, Tlemcen, Mostaganem, Ain Temouchent, Relizane, Sidi Bel Abbes, Mascara)", + "1990": 0.666, + "1991": 0.658, + "1992": 0.659, + "1993": 0.653, + "1994": 0.648, + "1995": 0.65, + "1996": 0.653, + "1997": 0.653, + "1998": 0.659, + "1999": 0.661, + "2000": 0.664, + "2001": 0.668, + "2002": 0.674, + "2003": 0.683, + "2004": 0.687, + "2005": 0.693, + "2006": 0.695, + "2007": 0.702, + "2008": 0.705, + "2009": 0.706, + "2010": 0.71, + "2011": 0.711, + "2012": 0.713, + "2013": 0.714, + "2014": 0.715, + "2015": 0.717, + "2016": 0.719, + "2017": 0.716, + "2018": 0.712, + "2019": 0.709, + "2020": 0.7, + "2021": 0.703 + }, + { + "Country": "Algeria", + "Continent": "Africa", + "ISO_Code": "DZA", + "Level": "Subnat", + "GDLCODE": "DZAr107", + "Region": "Sud (Bechar, Tindouf, Adrar, Ghardaia, Biskra, El Oued, Ouargla, Tamanrasset,Illizi)", + "1990": 0.671, + "1991": 0.664, + "1992": 0.664, + "1993": 0.659, + "1994": 0.654, + "1995": 0.655, + "1996": 0.659, + "1997": 0.659, + "1998": 0.664, + "1999": 0.667, + "2000": 0.669, + "2001": 0.674, + "2002": 0.679, + "2003": 0.688, + "2004": 0.692, + "2005": 0.698, + "2006": 0.699, + "2007": 0.706, + "2008": 0.708, + "2009": 0.708, + "2010": 0.712, + "2011": 0.713, + "2012": 0.715, + "2013": 0.716, + "2014": 0.717, + "2015": 0.719, + "2016": 0.722, + "2017": 0.719, + "2018": 0.715, + "2019": 0.713, + "2020": 0.703, + "2021": 0.707 + }, + { + "Country": "Andorra", + "Continent": "Europe", + "ISO_Code": "AND", + "Level": "National", + "GDLCODE": "ANDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.932, + "2001": 0.939, + "2002": 0.94, + "2003": 0.946, + "2004": 0.952, + "2005": 0.955, + "2006": 0.958, + "2007": 0.957, + "2008": 0.946, + "2009": 0.937, + "2010": 0.934, + "2011": 0.935, + "2012": 0.93, + "2013": 0.927, + "2014": 0.934, + "2015": 0.939, + "2016": 0.945, + "2017": 0.947, + "2018": 0.949, + "2019": 0.952, + "2020": 0.932, + "2021": 0.942 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "National", + "GDLCODE": "AGOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.538, + "2000": 0.545, + "2001": 0.553, + "2002": 0.58, + "2003": 0.581, + "2004": 0.589, + "2005": 0.602, + "2006": 0.61, + "2007": 0.627, + "2008": 0.63, + "2009": 0.642, + "2010": 0.64, + "2011": 0.639, + "2012": 0.648, + "2013": 0.652, + "2014": 0.656, + "2015": 0.655, + "2016": 0.646, + "2017": 0.639, + "2018": 0.628, + "2019": 0.621, + "2020": 0.608, + "2021": 0.604 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr218", + "Region": " Bengo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.488, + "2000": 0.494, + "2001": 0.502, + "2002": 0.528, + "2003": 0.529, + "2004": 0.536, + "2005": 0.549, + "2006": 0.557, + "2007": 0.573, + "2008": 0.576, + "2009": 0.587, + "2010": 0.585, + "2011": 0.585, + "2012": 0.596, + "2013": 0.603, + "2014": 0.611, + "2015": 0.613, + "2016": 0.607, + "2017": 0.6, + "2018": 0.589, + "2019": 0.582, + "2020": 0.57, + "2021": 0.567 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr209", + "Region": " Benguela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.585, + "2000": 0.592, + "2001": 0.601, + "2002": 0.629, + "2003": 0.63, + "2004": 0.638, + "2005": 0.652, + "2006": 0.66, + "2007": 0.678, + "2008": 0.681, + "2009": 0.693, + "2010": 0.691, + "2011": 0.69, + "2012": 0.682, + "2013": 0.67, + "2014": 0.658, + "2015": 0.641, + "2016": 0.615, + "2017": 0.608, + "2018": 0.598, + "2019": 0.59, + "2020": 0.578, + "2021": 0.575 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr211", + "Region": " Bie", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.403, + "2000": 0.409, + "2001": 0.417, + "2002": 0.441, + "2003": 0.441, + "2004": 0.448, + "2005": 0.46, + "2006": 0.467, + "2007": 0.482, + "2008": 0.485, + "2009": 0.495, + "2010": 0.494, + "2011": 0.493, + "2012": 0.508, + "2013": 0.519, + "2014": 0.531, + "2015": 0.537, + "2016": 0.536, + "2017": 0.53, + "2018": 0.52, + "2019": 0.513, + "2020": 0.501, + "2021": 0.498 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr201", + "Region": " Cabinda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.628, + "2000": 0.636, + "2001": 0.645, + "2002": 0.674, + "2003": 0.675, + "2004": 0.683, + "2005": 0.697, + "2006": 0.706, + "2007": 0.724, + "2008": 0.727, + "2009": 0.74, + "2010": 0.738, + "2011": 0.737, + "2012": 0.74, + "2013": 0.739, + "2014": 0.738, + "2015": 0.732, + "2016": 0.716, + "2017": 0.709, + "2018": 0.698, + "2019": 0.69, + "2020": 0.677, + "2021": 0.673 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr216", + "Region": " Cunene", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.465, + "2000": 0.472, + "2001": 0.479, + "2002": 0.505, + "2003": 0.505, + "2004": 0.513, + "2005": 0.525, + "2006": 0.533, + "2007": 0.549, + "2008": 0.552, + "2009": 0.562, + "2010": 0.561, + "2011": 0.56, + "2012": 0.565, + "2013": 0.565, + "2014": 0.566, + "2015": 0.562, + "2016": 0.55, + "2017": 0.544, + "2018": 0.534, + "2019": 0.527, + "2020": 0.515, + "2021": 0.512 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr210", + "Region": " Huambo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.509, + "2000": 0.516, + "2001": 0.524, + "2002": 0.551, + "2003": 0.551, + "2004": 0.559, + "2005": 0.572, + "2006": 0.58, + "2007": 0.597, + "2008": 0.6, + "2009": 0.611, + "2010": 0.609, + "2011": 0.608, + "2012": 0.612, + "2013": 0.611, + "2014": 0.61, + "2015": 0.604, + "2016": 0.591, + "2017": 0.584, + "2018": 0.573, + "2019": 0.566, + "2020": 0.554, + "2021": 0.551 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr215", + "Region": " Huila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.541, + "2000": 0.548, + "2001": 0.557, + "2002": 0.584, + "2003": 0.584, + "2004": 0.592, + "2005": 0.606, + "2006": 0.613, + "2007": 0.631, + "2008": 0.634, + "2009": 0.645, + "2010": 0.643, + "2011": 0.643, + "2012": 0.636, + "2013": 0.625, + "2014": 0.615, + "2015": 0.6, + "2016": 0.576, + "2017": 0.569, + "2018": 0.559, + "2019": 0.552, + "2020": 0.54, + "2021": 0.537 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr213", + "Region": " Kuando Kubango", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.391, + "2000": 0.398, + "2001": 0.405, + "2002": 0.429, + "2003": 0.429, + "2004": 0.436, + "2005": 0.448, + "2006": 0.455, + "2007": 0.47, + "2008": 0.473, + "2009": 0.483, + "2010": 0.481, + "2011": 0.481, + "2012": 0.504, + "2013": 0.524, + "2014": 0.544, + "2015": 0.559, + "2016": 0.566, + "2017": 0.559, + "2018": 0.549, + "2019": 0.542, + "2020": 0.53, + "2021": 0.527 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr205", + "Region": " Kuanza Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.456, + "2000": 0.462, + "2001": 0.47, + "2002": 0.495, + "2003": 0.496, + "2004": 0.503, + "2005": 0.516, + "2006": 0.523, + "2007": 0.539, + "2008": 0.542, + "2009": 0.553, + "2010": 0.551, + "2011": 0.55, + "2012": 0.565, + "2013": 0.575, + "2014": 0.586, + "2015": 0.591, + "2016": 0.588, + "2017": 0.582, + "2018": 0.571, + "2019": 0.564, + "2020": 0.552, + "2021": 0.549 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr206", + "Region": " Kuanza Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.426, + "2000": 0.433, + "2001": 0.44, + "2002": 0.465, + "2003": 0.465, + "2004": 0.472, + "2005": 0.485, + "2006": 0.492, + "2007": 0.507, + "2008": 0.51, + "2009": 0.52, + "2010": 0.519, + "2011": 0.518, + "2012": 0.53, + "2013": 0.539, + "2014": 0.547, + "2015": 0.551, + "2016": 0.546, + "2017": 0.54, + "2018": 0.53, + "2019": 0.523, + "2020": 0.511, + "2021": 0.508 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr204", + "Region": " Luanda", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.702, + "2000": 0.71, + "2001": 0.719, + "2002": 0.75, + "2003": 0.751, + "2004": 0.76, + "2005": 0.775, + "2006": 0.784, + "2007": 0.803, + "2008": 0.807, + "2009": 0.819, + "2010": 0.817, + "2011": 0.817, + "2012": 0.819, + "2013": 0.817, + "2014": 0.815, + "2015": 0.806, + "2016": 0.789, + "2017": 0.781, + "2018": 0.769, + "2019": 0.761, + "2020": 0.747, + "2021": 0.743 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr208", + "Region": " Lunda Norte", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.426, + "2000": 0.432, + "2001": 0.44, + "2002": 0.464, + "2003": 0.465, + "2004": 0.472, + "2005": 0.484, + "2006": 0.491, + "2007": 0.507, + "2008": 0.51, + "2009": 0.52, + "2010": 0.518, + "2011": 0.518, + "2012": 0.536, + "2013": 0.55, + "2014": 0.565, + "2015": 0.575, + "2016": 0.576, + "2017": 0.569, + "2018": 0.559, + "2019": 0.552, + "2020": 0.54, + "2021": 0.537 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr217", + "Region": " Lunda Sul", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.399, + "2000": 0.405, + "2001": 0.412, + "2002": 0.436, + "2003": 0.437, + "2004": 0.444, + "2005": 0.456, + "2006": 0.462, + "2007": 0.478, + "2008": 0.481, + "2009": 0.491, + "2010": 0.489, + "2011": 0.488, + "2012": 0.518, + "2013": 0.543, + "2014": 0.568, + "2015": 0.589, + "2016": 0.601, + "2017": 0.594, + "2018": 0.583, + "2019": 0.576, + "2020": 0.564, + "2021": 0.561 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr207", + "Region": " Malange", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.454, + "2000": 0.461, + "2001": 0.469, + "2002": 0.494, + "2003": 0.494, + "2004": 0.502, + "2005": 0.514, + "2006": 0.521, + "2007": 0.537, + "2008": 0.54, + "2009": 0.551, + "2010": 0.549, + "2011": 0.549, + "2012": 0.567, + "2013": 0.582, + "2014": 0.597, + "2015": 0.607, + "2016": 0.608, + "2017": 0.601, + "2018": 0.591, + "2019": 0.584, + "2020": 0.571, + "2021": 0.568 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr212", + "Region": " Moxico", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.439, + "2000": 0.446, + "2001": 0.454, + "2002": 0.478, + "2003": 0.479, + "2004": 0.486, + "2005": 0.499, + "2006": 0.506, + "2007": 0.521, + "2008": 0.524, + "2009": 0.535, + "2010": 0.533, + "2011": 0.533, + "2012": 0.543, + "2013": 0.55, + "2014": 0.558, + "2015": 0.56, + "2016": 0.554, + "2017": 0.548, + "2018": 0.537, + "2019": 0.531, + "2020": 0.519, + "2021": 0.516 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr214", + "Region": " Namibe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.564, + "2000": 0.571, + "2001": 0.579, + "2002": 0.607, + "2003": 0.607, + "2004": 0.615, + "2005": 0.629, + "2006": 0.637, + "2007": 0.655, + "2008": 0.658, + "2009": 0.669, + "2010": 0.667, + "2011": 0.667, + "2012": 0.667, + "2013": 0.663, + "2014": 0.66, + "2015": 0.65, + "2016": 0.633, + "2017": 0.626, + "2018": 0.615, + "2019": 0.608, + "2020": 0.596, + "2021": 0.592 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr203", + "Region": " Uige", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.496, + "2000": 0.502, + "2001": 0.51, + "2002": 0.536, + "2003": 0.537, + "2004": 0.544, + "2005": 0.557, + "2006": 0.565, + "2007": 0.582, + "2008": 0.585, + "2009": 0.596, + "2010": 0.594, + "2011": 0.593, + "2012": 0.591, + "2013": 0.585, + "2014": 0.579, + "2015": 0.568, + "2016": 0.55, + "2017": 0.543, + "2018": 0.533, + "2019": 0.526, + "2020": 0.514, + "2021": 0.511 + }, + { + "Country": "Angola", + "Continent": "Africa", + "ISO_Code": "AGO", + "Level": "Subnat", + "GDLCODE": "AGOr202", + "Region": " Zaire", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.42, + "2000": 0.426, + "2001": 0.434, + "2002": 0.458, + "2003": 0.459, + "2004": 0.466, + "2005": 0.478, + "2006": 0.485, + "2007": 0.501, + "2008": 0.503, + "2009": 0.514, + "2010": 0.512, + "2011": 0.511, + "2012": 0.545, + "2013": 0.574, + "2014": 0.603, + "2015": 0.627, + "2016": 0.642, + "2017": 0.635, + "2018": 0.624, + "2019": 0.617, + "2020": 0.605, + "2021": 0.601 + }, + { + "Country": "Antigua and Barbuda", + "Continent": "America", + "ISO_Code": "ATG", + "Level": "National", + "GDLCODE": "ATGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.786, + "2006": 0.802, + "2007": 0.813, + "2008": 0.811, + "2009": 0.79, + "2010": 0.778, + "2011": 0.772, + "2012": 0.774, + "2013": 0.773, + "2014": 0.777, + "2015": 0.782, + "2016": 0.788, + "2017": 0.791, + "2018": 0.799, + "2019": 0.805, + "2020": 0.769, + "2021": 0.774 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "National", + "GDLCODE": "ARGt", + "Region": "Total", + "1990": 0.742, + "1991": 0.755, + "1992": 0.766, + "1993": 0.777, + "1994": 0.783, + "1995": 0.777, + "1996": 0.783, + "1997": 0.792, + "1998": 0.796, + "1999": 0.789, + "2000": 0.786, + "2001": 0.777, + "2002": 0.754, + "2003": 0.767, + "2004": 0.767, + "2005": 0.778, + "2006": 0.801, + "2007": 0.814, + "2008": 0.819, + "2009": 0.807, + "2010": 0.82, + "2011": 0.828, + "2012": 0.825, + "2013": 0.827, + "2014": 0.822, + "2015": 0.825, + "2016": 0.819, + "2017": 0.821, + "2018": 0.814, + "2019": 0.809, + "2020": 0.794, + "2021": 0.807 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr104", + "Region": "Cuyo", + "1990": 0.756, + "1991": 0.769, + "1992": 0.78, + "1993": 0.791, + "1994": 0.798, + "1995": 0.791, + "1996": 0.797, + "1997": 0.807, + "1998": 0.81, + "1999": 0.803, + "2000": 0.8, + "2001": 0.791, + "2002": 0.768, + "2003": 0.781, + "2004": 0.781, + "2005": 0.792, + "2006": 0.816, + "2007": 0.828, + "2008": 0.833, + "2009": 0.821, + "2010": 0.834, + "2011": 0.842, + "2012": 0.839, + "2013": 0.84, + "2014": 0.834, + "2015": 0.835, + "2016": 0.829, + "2017": 0.83, + "2018": 0.822, + "2019": 0.815, + "2020": 0.799, + "2021": 0.812 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr101", + "Region": "Gran Buenos Aires", + "1990": 0.738, + "1991": 0.751, + "1992": 0.762, + "1993": 0.773, + "1994": 0.779, + "1995": 0.773, + "1996": 0.779, + "1997": 0.789, + "1998": 0.792, + "1999": 0.785, + "2000": 0.782, + "2001": 0.773, + "2002": 0.75, + "2003": 0.763, + "2004": 0.763, + "2005": 0.774, + "2006": 0.797, + "2007": 0.81, + "2008": 0.815, + "2009": 0.803, + "2010": 0.816, + "2011": 0.823, + "2012": 0.821, + "2013": 0.824, + "2014": 0.819, + "2015": 0.822, + "2016": 0.817, + "2017": 0.819, + "2018": 0.812, + "2019": 0.807, + "2020": 0.792, + "2021": 0.805 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr103", + "Region": "NEA", + "1990": 0.718, + "1991": 0.731, + "1992": 0.742, + "1993": 0.753, + "1994": 0.759, + "1995": 0.752, + "1996": 0.758, + "1997": 0.768, + "1998": 0.772, + "1999": 0.765, + "2000": 0.762, + "2001": 0.753, + "2002": 0.73, + "2003": 0.743, + "2004": 0.743, + "2005": 0.754, + "2006": 0.777, + "2007": 0.789, + "2008": 0.794, + "2009": 0.782, + "2010": 0.795, + "2011": 0.803, + "2012": 0.802, + "2013": 0.806, + "2014": 0.803, + "2015": 0.807, + "2016": 0.804, + "2017": 0.808, + "2018": 0.803, + "2019": 0.8, + "2020": 0.787, + "2021": 0.8 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr102", + "Region": "NOA", + "1990": 0.73, + "1991": 0.743, + "1992": 0.754, + "1993": 0.765, + "1994": 0.771, + "1995": 0.765, + "1996": 0.77, + "1997": 0.78, + "1998": 0.784, + "1999": 0.777, + "2000": 0.774, + "2001": 0.765, + "2002": 0.742, + "2003": 0.755, + "2004": 0.755, + "2005": 0.766, + "2006": 0.789, + "2007": 0.801, + "2008": 0.806, + "2009": 0.795, + "2010": 0.807, + "2011": 0.815, + "2012": 0.814, + "2013": 0.818, + "2014": 0.814, + "2015": 0.819, + "2016": 0.815, + "2017": 0.819, + "2018": 0.813, + "2019": 0.81, + "2020": 0.796, + "2021": 0.81 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr105", + "Region": "Pampeana", + "1990": 0.749, + "1991": 0.762, + "1992": 0.773, + "1993": 0.784, + "1994": 0.791, + "1995": 0.784, + "1996": 0.79, + "1997": 0.8, + "1998": 0.803, + "1999": 0.796, + "2000": 0.793, + "2001": 0.785, + "2002": 0.761, + "2003": 0.775, + "2004": 0.775, + "2005": 0.786, + "2006": 0.809, + "2007": 0.821, + "2008": 0.826, + "2009": 0.814, + "2010": 0.827, + "2011": 0.835, + "2012": 0.832, + "2013": 0.834, + "2014": 0.828, + "2015": 0.83, + "2016": 0.824, + "2017": 0.825, + "2018": 0.817, + "2019": 0.811, + "2020": 0.796, + "2021": 0.809 + }, + { + "Country": "Argentina urban", + "Continent": "America", + "ISO_Code": "ARG", + "Level": "Subnat", + "GDLCODE": "ARGr106", + "Region": "Patagonia", + "1990": 0.764, + "1991": 0.777, + "1992": 0.788, + "1993": 0.799, + "1994": 0.806, + "1995": 0.799, + "1996": 0.805, + "1997": 0.815, + "1998": 0.818, + "1999": 0.811, + "2000": 0.808, + "2001": 0.799, + "2002": 0.776, + "2003": 0.789, + "2004": 0.789, + "2005": 0.8, + "2006": 0.824, + "2007": 0.837, + "2008": 0.841, + "2009": 0.83, + "2010": 0.843, + "2011": 0.851, + "2012": 0.847, + "2013": 0.848, + "2014": 0.841, + "2015": 0.842, + "2016": 0.836, + "2017": 0.836, + "2018": 0.828, + "2019": 0.821, + "2020": 0.805, + "2021": 0.818 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "National", + "GDLCODE": "ARMt", + "Region": "Total", + "1990": 0.597, + "1991": 0.579, + "1992": 0.5, + "1993": 0.49, + "1994": 0.501, + "1995": 0.519, + "1996": 0.53, + "1997": 0.541, + "1998": 0.549, + "1999": 0.554, + "2000": 0.564, + "2001": 0.578, + "2002": 0.599, + "2003": 0.619, + "2004": 0.636, + "2005": 0.657, + "2006": 0.678, + "2007": 0.7, + "2008": 0.712, + "2009": 0.687, + "2010": 0.692, + "2011": 0.697, + "2012": 0.708, + "2013": 0.715, + "2014": 0.717, + "2015": 0.72, + "2016": 0.718, + "2017": 0.73, + "2018": 0.734, + "2019": 0.745, + "2020": 0.729, + "2021": 0.737 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr101", + "Region": "Aragatsotn", + "1990": 0.519, + "1991": 0.502, + "1992": 0.428, + "1993": 0.418, + "1994": 0.428, + "1995": 0.445, + "1996": 0.456, + "1997": 0.466, + "1998": 0.473, + "1999": 0.479, + "2000": 0.488, + "2001": 0.503, + "2002": 0.523, + "2003": 0.544, + "2004": 0.562, + "2005": 0.583, + "2006": 0.604, + "2007": 0.626, + "2008": 0.639, + "2009": 0.616, + "2010": 0.623, + "2011": 0.636, + "2012": 0.656, + "2013": 0.671, + "2014": 0.683, + "2015": 0.695, + "2016": 0.701, + "2017": 0.713, + "2018": 0.718, + "2019": 0.728, + "2020": 0.712, + "2021": 0.72 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr102", + "Region": "Ararat", + "1990": 0.574, + "1991": 0.556, + "1992": 0.479, + "1993": 0.469, + "1994": 0.479, + "1995": 0.497, + "1996": 0.508, + "1997": 0.519, + "1998": 0.526, + "1999": 0.532, + "2000": 0.541, + "2001": 0.555, + "2002": 0.575, + "2003": 0.595, + "2004": 0.611, + "2005": 0.631, + "2006": 0.652, + "2007": 0.673, + "2008": 0.684, + "2009": 0.66, + "2010": 0.664, + "2011": 0.673, + "2012": 0.687, + "2013": 0.697, + "2014": 0.703, + "2015": 0.709, + "2016": 0.71, + "2017": 0.722, + "2018": 0.727, + "2019": 0.737, + "2020": 0.721, + "2021": 0.729 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr103", + "Region": "Armavir", + "1990": 0.561, + "1991": 0.544, + "1992": 0.467, + "1993": 0.457, + "1994": 0.467, + "1995": 0.485, + "1996": 0.496, + "1997": 0.507, + "1998": 0.514, + "1999": 0.519, + "2000": 0.529, + "2001": 0.542, + "2002": 0.561, + "2003": 0.58, + "2004": 0.595, + "2005": 0.614, + "2006": 0.633, + "2007": 0.653, + "2008": 0.664, + "2009": 0.639, + "2010": 0.643, + "2011": 0.651, + "2012": 0.666, + "2013": 0.676, + "2014": 0.682, + "2015": 0.69, + "2016": 0.691, + "2017": 0.703, + "2018": 0.707, + "2019": 0.717, + "2020": 0.702, + "2021": 0.71 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr104", + "Region": "Gegharkunik", + "1990": 0.537, + "1991": 0.52, + "1992": 0.444, + "1993": 0.434, + "1994": 0.445, + "1995": 0.462, + "1996": 0.472, + "1997": 0.483, + "1998": 0.49, + "1999": 0.496, + "2000": 0.505, + "2001": 0.524, + "2002": 0.549, + "2003": 0.575, + "2004": 0.597, + "2005": 0.623, + "2006": 0.649, + "2007": 0.677, + "2008": 0.695, + "2009": 0.676, + "2010": 0.687, + "2011": 0.687, + "2012": 0.693, + "2013": 0.696, + "2014": 0.693, + "2015": 0.692, + "2016": 0.685, + "2017": 0.697, + "2018": 0.701, + "2019": 0.711, + "2020": 0.696, + "2021": 0.704 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr106", + "Region": "Kotayk", + "1990": 0.615, + "1991": 0.598, + "1992": 0.517, + "1993": 0.507, + "1994": 0.518, + "1995": 0.536, + "1996": 0.547, + "1997": 0.559, + "1998": 0.566, + "1999": 0.572, + "2000": 0.582, + "2001": 0.596, + "2002": 0.616, + "2003": 0.636, + "2004": 0.652, + "2005": 0.672, + "2006": 0.693, + "2007": 0.714, + "2008": 0.725, + "2009": 0.699, + "2010": 0.704, + "2011": 0.709, + "2012": 0.721, + "2013": 0.728, + "2014": 0.731, + "2015": 0.734, + "2016": 0.732, + "2017": 0.744, + "2018": 0.749, + "2019": 0.76, + "2020": 0.743, + "2021": 0.752 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr105", + "Region": "Lori", + "1990": 0.565, + "1991": 0.548, + "1992": 0.47, + "1993": 0.46, + "1994": 0.471, + "1995": 0.488, + "1996": 0.499, + "1997": 0.51, + "1998": 0.518, + "1999": 0.523, + "2000": 0.533, + "2001": 0.55, + "2002": 0.573, + "2003": 0.597, + "2004": 0.617, + "2005": 0.641, + "2006": 0.665, + "2007": 0.69, + "2008": 0.706, + "2009": 0.684, + "2010": 0.693, + "2011": 0.694, + "2012": 0.701, + "2013": 0.704, + "2014": 0.702, + "2015": 0.701, + "2016": 0.695, + "2017": 0.707, + "2018": 0.711, + "2019": 0.721, + "2020": 0.705, + "2021": 0.714 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr107", + "Region": "Shirak", + "1990": 0.589, + "1991": 0.571, + "1992": 0.493, + "1993": 0.482, + "1994": 0.493, + "1995": 0.511, + "1996": 0.522, + "1997": 0.533, + "1998": 0.541, + "1999": 0.546, + "2000": 0.556, + "2001": 0.568, + "2002": 0.587, + "2003": 0.605, + "2004": 0.62, + "2005": 0.638, + "2006": 0.657, + "2007": 0.676, + "2008": 0.686, + "2009": 0.66, + "2010": 0.663, + "2011": 0.672, + "2012": 0.687, + "2013": 0.698, + "2014": 0.705, + "2015": 0.713, + "2016": 0.714, + "2017": 0.726, + "2018": 0.731, + "2019": 0.741, + "2020": 0.725, + "2021": 0.734 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr108", + "Region": "Syunik", + "1990": 0.615, + "1991": 0.597, + "1992": 0.517, + "1993": 0.506, + "1994": 0.517, + "1995": 0.535, + "1996": 0.547, + "1997": 0.558, + "1998": 0.566, + "1999": 0.572, + "2000": 0.581, + "2001": 0.594, + "2002": 0.614, + "2003": 0.633, + "2004": 0.648, + "2005": 0.668, + "2006": 0.687, + "2007": 0.707, + "2008": 0.718, + "2009": 0.691, + "2010": 0.695, + "2011": 0.699, + "2012": 0.709, + "2013": 0.716, + "2014": 0.717, + "2015": 0.719, + "2016": 0.716, + "2017": 0.728, + "2018": 0.733, + "2019": 0.743, + "2020": 0.727, + "2021": 0.735 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr110", + "Region": "Tavush", + "1990": 0.558, + "1991": 0.54, + "1992": 0.464, + "1993": 0.454, + "1994": 0.464, + "1995": 0.481, + "1996": 0.492, + "1997": 0.503, + "1998": 0.511, + "1999": 0.516, + "2000": 0.525, + "2001": 0.541, + "2002": 0.562, + "2003": 0.584, + "2004": 0.602, + "2005": 0.624, + "2006": 0.646, + "2007": 0.669, + "2008": 0.682, + "2009": 0.66, + "2010": 0.666, + "2011": 0.674, + "2012": 0.689, + "2013": 0.699, + "2014": 0.705, + "2015": 0.711, + "2016": 0.712, + "2017": 0.724, + "2018": 0.729, + "2019": 0.739, + "2020": 0.723, + "2021": 0.731 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr109", + "Region": "Vayots Dzor", + "1990": 0.594, + "1991": 0.577, + "1992": 0.497, + "1993": 0.487, + "1994": 0.498, + "1995": 0.516, + "1996": 0.527, + "1997": 0.538, + "1998": 0.546, + "1999": 0.551, + "2000": 0.561, + "2001": 0.574, + "2002": 0.593, + "2003": 0.612, + "2004": 0.628, + "2005": 0.647, + "2006": 0.666, + "2007": 0.686, + "2008": 0.696, + "2009": 0.67, + "2010": 0.674, + "2011": 0.681, + "2012": 0.695, + "2013": 0.704, + "2014": 0.709, + "2015": 0.715, + "2016": 0.715, + "2017": 0.727, + "2018": 0.732, + "2019": 0.742, + "2020": 0.726, + "2021": 0.735 + }, + { + "Country": "Armenia", + "Continent": "Europe", + "ISO_Code": "ARM", + "Level": "Subnat", + "GDLCODE": "ARMr111", + "Region": "Yerevan", + "1990": 0.65, + "1991": 0.632, + "1992": 0.549, + "1993": 0.539, + "1994": 0.55, + "1995": 0.568, + "1996": 0.58, + "1997": 0.592, + "1998": 0.6, + "1999": 0.606, + "2000": 0.616, + "2001": 0.628, + "2002": 0.647, + "2003": 0.666, + "2004": 0.682, + "2005": 0.701, + "2006": 0.72, + "2007": 0.74, + "2008": 0.75, + "2009": 0.722, + "2010": 0.724, + "2011": 0.728, + "2012": 0.737, + "2013": 0.743, + "2014": 0.743, + "2015": 0.745, + "2016": 0.741, + "2017": 0.753, + "2018": 0.758, + "2019": 0.768, + "2020": 0.752, + "2021": 0.761 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "National", + "GDLCODE": "AUSt", + "Region": "Total", + "1990": 0.857, + "1991": 0.856, + "1992": 0.862, + "1993": 0.867, + "1994": 0.869, + "1995": 0.873, + "1996": 0.877, + "1997": 0.883, + "1998": 0.889, + "1999": 0.893, + "2000": 0.894, + "2001": 0.899, + "2002": 0.902, + "2003": 0.906, + "2004": 0.907, + "2005": 0.909, + "2006": 0.911, + "2007": 0.914, + "2008": 0.915, + "2009": 0.915, + "2010": 0.915, + "2011": 0.92, + "2012": 0.922, + "2013": 0.924, + "2014": 0.926, + "2015": 0.927, + "2016": 0.928, + "2017": 0.93, + "2018": 0.931, + "2019": 0.93, + "2020": 0.93, + "2021": 0.936 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr108", + "Region": "Australian Capital Territory", + "1990": 0.884, + "1991": 0.892, + "1992": 0.899, + "1993": 0.903, + "1994": 0.905, + "1995": 0.905, + "1996": 0.906, + "1997": 0.912, + "1998": 0.917, + "1999": 0.923, + "2000": 0.922, + "2001": 0.929, + "2002": 0.929, + "2003": 0.941, + "2004": 0.943, + "2005": 0.945, + "2006": 0.946, + "2007": 0.949, + "2008": 0.95, + "2009": 0.95, + "2010": 0.961, + "2011": 0.962, + "2012": 0.965, + "2013": 0.97, + "2014": 0.967, + "2015": 0.969, + "2016": 0.973, + "2017": 0.974, + "2018": 0.976, + "2019": 0.975, + "2020": 0.974, + "2021": 0.981 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr101", + "Region": "New South Wales", + "1990": 0.867, + "1991": 0.868, + "1992": 0.875, + "1993": 0.877, + "1994": 0.879, + "1995": 0.883, + "1996": 0.888, + "1997": 0.894, + "1998": 0.899, + "1999": 0.904, + "2000": 0.906, + "2001": 0.909, + "2002": 0.907, + "2003": 0.911, + "2004": 0.913, + "2005": 0.913, + "2006": 0.912, + "2007": 0.912, + "2008": 0.911, + "2009": 0.909, + "2010": 0.912, + "2011": 0.916, + "2012": 0.917, + "2013": 0.92, + "2014": 0.921, + "2015": 0.926, + "2016": 0.93, + "2017": 0.932, + "2018": 0.933, + "2019": 0.933, + "2020": 0.932, + "2021": 0.939 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr107", + "Region": "Northern Territory", + "1990": 0.872, + "1991": 0.881, + "1992": 0.878, + "1993": 0.878, + "1994": 0.873, + "1995": 0.879, + "1996": 0.883, + "1997": 0.886, + "1998": 0.896, + "1999": 0.912, + "2000": 0.913, + "2001": 0.916, + "2002": 0.922, + "2003": 0.929, + "2004": 0.926, + "2005": 0.928, + "2006": 0.933, + "2007": 0.938, + "2008": 0.941, + "2009": 0.949, + "2010": 0.939, + "2011": 0.943, + "2012": 0.947, + "2013": 0.963, + "2014": 0.969, + "2015": 0.976, + "2016": 0.975, + "2017": 0.977, + "2018": 0.978, + "2019": 0.978, + "2020": 0.977, + "2021": 0.984 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr103", + "Region": "Queensland", + "1990": 0.838, + "1991": 0.835, + "1992": 0.845, + "1993": 0.854, + "1994": 0.855, + "1995": 0.86, + "1996": 0.862, + "1997": 0.869, + "1998": 0.874, + "1999": 0.877, + "2000": 0.877, + "2001": 0.883, + "2002": 0.889, + "2003": 0.89, + "2004": 0.894, + "2005": 0.901, + "2006": 0.91, + "2007": 0.915, + "2008": 0.914, + "2009": 0.92, + "2010": 0.912, + "2011": 0.913, + "2012": 0.918, + "2013": 0.916, + "2014": 0.916, + "2015": 0.919, + "2016": 0.92, + "2017": 0.922, + "2018": 0.923, + "2019": 0.923, + "2020": 0.922, + "2021": 0.929 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr104", + "Region": "South Australia", + "1990": 0.841, + "1991": 0.84, + "1992": 0.845, + "1993": 0.851, + "1994": 0.853, + "1995": 0.855, + "1996": 0.86, + "1997": 0.865, + "1998": 0.874, + "1999": 0.872, + "2000": 0.873, + "2001": 0.878, + "2002": 0.884, + "2003": 0.89, + "2004": 0.89, + "2005": 0.888, + "2006": 0.888, + "2007": 0.891, + "2008": 0.893, + "2009": 0.89, + "2010": 0.894, + "2011": 0.898, + "2012": 0.895, + "2013": 0.899, + "2014": 0.9, + "2015": 0.904, + "2016": 0.904, + "2017": 0.905, + "2018": 0.907, + "2019": 0.906, + "2020": 0.905, + "2021": 0.912 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr106", + "Region": "Tasmania", + "1990": 0.819, + "1991": 0.816, + "1992": 0.827, + "1993": 0.832, + "1994": 0.831, + "1995": 0.835, + "1996": 0.84, + "1997": 0.846, + "1998": 0.848, + "1999": 0.851, + "2000": 0.851, + "2001": 0.853, + "2002": 0.861, + "2003": 0.866, + "2004": 0.874, + "2005": 0.872, + "2006": 0.873, + "2007": 0.88, + "2008": 0.879, + "2009": 0.871, + "2010": 0.877, + "2011": 0.876, + "2012": 0.872, + "2013": 0.873, + "2014": 0.875, + "2015": 0.879, + "2016": 0.881, + "2017": 0.882, + "2018": 0.883, + "2019": 0.883, + "2020": 0.882, + "2021": 0.889 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr102", + "Region": "Victoria", + "1990": 0.859, + "1991": 0.855, + "1992": 0.857, + "1993": 0.864, + "1994": 0.867, + "1995": 0.87, + "1996": 0.875, + "1997": 0.88, + "1998": 0.886, + "1999": 0.894, + "2000": 0.895, + "2001": 0.9, + "2002": 0.903, + "2003": 0.908, + "2004": 0.907, + "2005": 0.908, + "2006": 0.904, + "2007": 0.905, + "2008": 0.906, + "2009": 0.9, + "2010": 0.903, + "2011": 0.905, + "2012": 0.904, + "2013": 0.906, + "2014": 0.906, + "2015": 0.911, + "2016": 0.913, + "2017": 0.914, + "2018": 0.915, + "2019": 0.915, + "2020": 0.914, + "2021": 0.921 + }, + { + "Country": "Australia", + "Continent": "Asia/Pacific", + "ISO_Code": "AUS", + "Level": "Subnat", + "GDLCODE": "AUSr105", + "Region": "Western Australia", + "1990": 0.859, + "1991": 0.858, + "1992": 0.866, + "1993": 0.87, + "1994": 0.876, + "1995": 0.882, + "1996": 0.888, + "1997": 0.889, + "1998": 0.897, + "1999": 0.897, + "2000": 0.9, + "2001": 0.909, + "2002": 0.914, + "2003": 0.922, + "2004": 0.921, + "2005": 0.925, + "2006": 0.94, + "2007": 0.951, + "2008": 0.957, + "2009": 0.962, + "2010": 0.962, + "2011": 0.98, + "2012": 0.987, + "2013": 0.984, + "2014": 0.992, + "2015": 0.981, + "2016": 0.971, + "2017": 0.973, + "2018": 0.974, + "2019": 0.974, + "2020": 0.973, + "2021": 0.98 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "National", + "GDLCODE": "AUTt", + "Region": "Total", + "1990": 0.901, + "1991": 0.904, + "1992": 0.907, + "1993": 0.906, + "1994": 0.909, + "1995": 0.911, + "1996": 0.914, + "1997": 0.916, + "1998": 0.921, + "1999": 0.924, + "2000": 0.93, + "2001": 0.93, + "2002": 0.933, + "2003": 0.934, + "2004": 0.937, + "2005": 0.939, + "2006": 0.944, + "2007": 0.948, + "2008": 0.95, + "2009": 0.944, + "2010": 0.946, + "2011": 0.948, + "2012": 0.947, + "2013": 0.946, + "2014": 0.947, + "2015": 0.946, + "2016": 0.949, + "2017": 0.949, + "2018": 0.952, + "2019": 0.954, + "2020": 0.943, + "2021": 0.949 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr101", + "Region": "Burgenland", + "1990": 0.834, + "1991": 0.837, + "1992": 0.84, + "1993": 0.839, + "1994": 0.842, + "1995": 0.844, + "1996": 0.847, + "1997": 0.849, + "1998": 0.854, + "1999": 0.857, + "2000": 0.861, + "2001": 0.862, + "2002": 0.87, + "2003": 0.872, + "2004": 0.877, + "2005": 0.874, + "2006": 0.876, + "2007": 0.881, + "2008": 0.881, + "2009": 0.878, + "2010": 0.883, + "2011": 0.884, + "2012": 0.887, + "2013": 0.888, + "2014": 0.889, + "2015": 0.89, + "2016": 0.894, + "2017": 0.898, + "2018": 0.898, + "2019": 0.9, + "2020": 0.89, + "2021": 0.896 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr104", + "Region": "Karnten", + "1990": 0.871, + "1991": 0.875, + "1992": 0.877, + "1993": 0.877, + "1994": 0.879, + "1995": 0.881, + "1996": 0.885, + "1997": 0.887, + "1998": 0.892, + "1999": 0.895, + "2000": 0.9, + "2001": 0.899, + "2002": 0.903, + "2003": 0.905, + "2004": 0.909, + "2005": 0.913, + "2006": 0.916, + "2007": 0.923, + "2008": 0.924, + "2009": 0.916, + "2010": 0.919, + "2011": 0.923, + "2012": 0.921, + "2013": 0.92, + "2014": 0.921, + "2015": 0.919, + "2016": 0.921, + "2017": 0.924, + "2018": 0.928, + "2019": 0.93, + "2020": 0.92, + "2021": 0.925 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr102", + "Region": "Niederosterreich", + "1990": 0.869, + "1991": 0.873, + "1992": 0.875, + "1993": 0.875, + "1994": 0.877, + "1995": 0.879, + "1996": 0.882, + "1997": 0.885, + "1998": 0.889, + "1999": 0.892, + "2000": 0.897, + "2001": 0.896, + "2002": 0.898, + "2003": 0.9, + "2004": 0.906, + "2005": 0.905, + "2006": 0.91, + "2007": 0.917, + "2008": 0.92, + "2009": 0.912, + "2010": 0.914, + "2011": 0.916, + "2012": 0.915, + "2013": 0.914, + "2014": 0.916, + "2015": 0.916, + "2016": 0.918, + "2017": 0.92, + "2018": 0.922, + "2019": 0.923, + "2020": 0.913, + "2021": 0.919 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr106", + "Region": "Oberosterreich", + "1990": 0.895, + "1991": 0.898, + "1992": 0.901, + "1993": 0.901, + "1994": 0.903, + "1995": 0.905, + "1996": 0.908, + "1997": 0.911, + "1998": 0.916, + "1999": 0.919, + "2000": 0.924, + "2001": 0.925, + "2002": 0.927, + "2003": 0.929, + "2004": 0.932, + "2005": 0.937, + "2006": 0.942, + "2007": 0.946, + "2008": 0.951, + "2009": 0.942, + "2010": 0.945, + "2011": 0.949, + "2012": 0.948, + "2013": 0.95, + "2014": 0.95, + "2015": 0.949, + "2016": 0.952, + "2017": 0.952, + "2018": 0.956, + "2019": 0.958, + "2020": 0.948, + "2021": 0.953 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr107", + "Region": "Salzburg", + "1990": 0.918, + "1991": 0.921, + "1992": 0.924, + "1993": 0.923, + "1994": 0.926, + "1995": 0.928, + "1996": 0.931, + "1997": 0.934, + "1998": 0.938, + "1999": 0.941, + "2000": 0.947, + "2001": 0.946, + "2002": 0.951, + "2003": 0.952, + "2004": 0.957, + "2005": 0.959, + "2006": 0.965, + "2007": 0.972, + "2008": 0.972, + "2009": 0.966, + "2010": 0.971, + "2011": 0.973, + "2012": 0.974, + "2013": 0.972, + "2014": 0.971, + "2015": 0.972, + "2016": 0.977, + "2017": 0.977, + "2018": 0.979, + "2019": 0.982, + "2020": 0.971, + "2021": 0.977 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr105", + "Region": "Steiermark", + "1990": 0.877, + "1991": 0.88, + "1992": 0.883, + "1993": 0.882, + "1994": 0.885, + "1995": 0.887, + "1996": 0.89, + "1997": 0.892, + "1998": 0.897, + "1999": 0.9, + "2000": 0.905, + "2001": 0.907, + "2002": 0.908, + "2003": 0.91, + "2004": 0.917, + "2005": 0.919, + "2006": 0.923, + "2007": 0.93, + "2008": 0.931, + "2009": 0.924, + "2010": 0.926, + "2011": 0.929, + "2012": 0.93, + "2013": 0.929, + "2014": 0.93, + "2015": 0.929, + "2016": 0.933, + "2017": 0.935, + "2018": 0.936, + "2019": 0.94, + "2020": 0.929, + "2021": 0.935 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr108", + "Region": "Tirol", + "1990": 0.902, + "1991": 0.905, + "1992": 0.908, + "1993": 0.907, + "1994": 0.91, + "1995": 0.912, + "1996": 0.915, + "1997": 0.917, + "1998": 0.922, + "1999": 0.925, + "2000": 0.93, + "2001": 0.932, + "2002": 0.936, + "2003": 0.939, + "2004": 0.941, + "2005": 0.945, + "2006": 0.951, + "2007": 0.954, + "2008": 0.954, + "2009": 0.95, + "2010": 0.95, + "2011": 0.952, + "2012": 0.954, + "2013": 0.955, + "2014": 0.955, + "2015": 0.956, + "2016": 0.959, + "2017": 0.959, + "2018": 0.962, + "2019": 0.965, + "2020": 0.954, + "2021": 0.96 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr109", + "Region": "Vorarlberg", + "1990": 0.905, + "1991": 0.908, + "1992": 0.91, + "1993": 0.91, + "1994": 0.912, + "1995": 0.915, + "1996": 0.918, + "1997": 0.92, + "1998": 0.925, + "1999": 0.928, + "2000": 0.933, + "2001": 0.936, + "2002": 0.94, + "2003": 0.939, + "2004": 0.943, + "2005": 0.945, + "2006": 0.95, + "2007": 0.955, + "2008": 0.957, + "2009": 0.949, + "2010": 0.951, + "2011": 0.954, + "2012": 0.953, + "2013": 0.955, + "2014": 0.959, + "2015": 0.964, + "2016": 0.961, + "2017": 0.964, + "2018": 0.971, + "2019": 0.966, + "2020": 0.955, + "2021": 0.961 + }, + { + "Country": "Austria", + "Continent": "Europe", + "ISO_Code": "AUT", + "Level": "Subnat", + "GDLCODE": "AUTr103", + "Region": "Wien", + "1990": 0.953, + "1991": 0.956, + "1992": 0.959, + "1993": 0.959, + "1994": 0.961, + "1995": 0.964, + "1996": 0.967, + "1997": 0.969, + "1998": 0.974, + "1999": 0.977, + "2000": 0.983, + "2001": 0.983, + "2002": 0.986, + "2003": 0.984, + "2004": 0.984, + "2005": 0.984, + "2006": 0.988, + "2007": 0.989, + "2008": 0.991, + "2009": 0.987, + "2010": 0.988, + "2011": 0.986, + "2012": 0.983, + "2013": 0.98, + "2014": 0.978, + "2015": 0.975, + "2016": 0.979, + "2017": 0.975, + "2018": 0.977, + "2019": 0.979, + "2020": 0.968, + "2021": 0.974 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "National", + "GDLCODE": "AZEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.513, + "1996": 0.513, + "1997": 0.52, + "1998": 0.534, + "1999": 0.55, + "2000": 0.555, + "2001": 0.567, + "2002": 0.578, + "2003": 0.591, + "2004": 0.599, + "2005": 0.625, + "2006": 0.668, + "2007": 0.696, + "2008": 0.717, + "2009": 0.733, + "2010": 0.741, + "2011": 0.735, + "2012": 0.738, + "2013": 0.746, + "2014": 0.752, + "2015": 0.751, + "2016": 0.74, + "2017": 0.742, + "2018": 0.741, + "2019": 0.745, + "2020": 0.742, + "2021": 0.749 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr102", + "Region": "Absheron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.558, + "1996": 0.558, + "1997": 0.566, + "1998": 0.58, + "1999": 0.596, + "2000": 0.602, + "2001": 0.614, + "2002": 0.626, + "2003": 0.639, + "2004": 0.647, + "2005": 0.675, + "2006": 0.719, + "2007": 0.748, + "2008": 0.769, + "2009": 0.787, + "2010": 0.794, + "2011": 0.789, + "2012": 0.792, + "2013": 0.8, + "2014": 0.806, + "2015": 0.805, + "2016": 0.794, + "2017": 0.796, + "2018": 0.795, + "2019": 0.799, + "2020": 0.796, + "2021": 0.803 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr107", + "Region": "Aran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.47, + "1996": 0.47, + "1997": 0.477, + "1998": 0.491, + "1999": 0.506, + "2000": 0.511, + "2001": 0.522, + "2002": 0.533, + "2003": 0.546, + "2004": 0.553, + "2005": 0.579, + "2006": 0.619, + "2007": 0.646, + "2008": 0.667, + "2009": 0.683, + "2010": 0.69, + "2011": 0.685, + "2012": 0.688, + "2013": 0.695, + "2014": 0.7, + "2015": 0.7, + "2016": 0.689, + "2017": 0.691, + "2018": 0.69, + "2019": 0.694, + "2020": 0.691, + "2021": 0.698 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr101", + "Region": "Baku", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.583, + "1996": 0.583, + "1997": 0.591, + "1998": 0.606, + "1999": 0.622, + "2000": 0.628, + "2001": 0.64, + "2002": 0.652, + "2003": 0.666, + "2004": 0.674, + "2005": 0.702, + "2006": 0.747, + "2007": 0.776, + "2008": 0.799, + "2009": 0.816, + "2010": 0.824, + "2011": 0.818, + "2012": 0.822, + "2013": 0.83, + "2014": 0.836, + "2015": 0.835, + "2016": 0.823, + "2017": 0.825, + "2018": 0.824, + "2019": 0.828, + "2020": 0.825, + "2021": 0.833 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr109", + "Region": "Dakhlik Shirvan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.469, + "1996": 0.469, + "1997": 0.476, + "1998": 0.489, + "1999": 0.504, + "2000": 0.509, + "2001": 0.521, + "2002": 0.532, + "2003": 0.544, + "2004": 0.551, + "2005": 0.577, + "2006": 0.617, + "2007": 0.644, + "2008": 0.665, + "2009": 0.681, + "2010": 0.688, + "2011": 0.682, + "2012": 0.686, + "2013": 0.693, + "2014": 0.698, + "2015": 0.698, + "2016": 0.687, + "2017": 0.689, + "2018": 0.688, + "2019": 0.692, + "2020": 0.689, + "2021": 0.696 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr103", + "Region": "Ganja Gazakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.472, + "1996": 0.472, + "1997": 0.479, + "1998": 0.492, + "1999": 0.507, + "2000": 0.513, + "2001": 0.524, + "2002": 0.535, + "2003": 0.547, + "2004": 0.555, + "2005": 0.58, + "2006": 0.621, + "2007": 0.648, + "2008": 0.668, + "2009": 0.684, + "2010": 0.692, + "2011": 0.686, + "2012": 0.689, + "2013": 0.697, + "2014": 0.702, + "2015": 0.701, + "2016": 0.691, + "2017": 0.693, + "2018": 0.692, + "2019": 0.695, + "2020": 0.693, + "2021": 0.7 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr106", + "Region": "Guba Khachmaz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.485, + "1996": 0.485, + "1997": 0.492, + "1998": 0.506, + "1999": 0.52, + "2000": 0.526, + "2001": 0.537, + "2002": 0.548, + "2003": 0.561, + "2004": 0.569, + "2005": 0.594, + "2006": 0.636, + "2007": 0.663, + "2008": 0.683, + "2009": 0.7, + "2010": 0.707, + "2011": 0.701, + "2012": 0.705, + "2013": 0.712, + "2014": 0.718, + "2015": 0.717, + "2016": 0.706, + "2017": 0.708, + "2018": 0.707, + "2019": 0.711, + "2020": 0.708, + "2021": 0.715 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr105", + "Region": "Lankaran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.46, + "1996": 0.46, + "1997": 0.467, + "1998": 0.48, + "1999": 0.495, + "2000": 0.5, + "2001": 0.511, + "2002": 0.522, + "2003": 0.534, + "2004": 0.542, + "2005": 0.567, + "2006": 0.607, + "2007": 0.634, + "2008": 0.654, + "2009": 0.67, + "2010": 0.677, + "2011": 0.672, + "2012": 0.675, + "2013": 0.682, + "2014": 0.688, + "2015": 0.687, + "2016": 0.676, + "2017": 0.678, + "2018": 0.678, + "2019": 0.681, + "2020": 0.678, + "2021": 0.685 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr104", + "Region": "Shaki Zaqatala", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.481, + "1996": 0.481, + "1997": 0.488, + "1998": 0.501, + "1999": 0.516, + "2000": 0.522, + "2001": 0.533, + "2002": 0.544, + "2003": 0.556, + "2004": 0.564, + "2005": 0.59, + "2006": 0.631, + "2007": 0.658, + "2008": 0.679, + "2009": 0.695, + "2010": 0.702, + "2011": 0.697, + "2012": 0.7, + "2013": 0.707, + "2014": 0.713, + "2015": 0.712, + "2016": 0.701, + "2017": 0.703, + "2018": 0.702, + "2019": 0.706, + "2020": 0.703, + "2021": 0.71 + }, + { + "Country": "Azerbaijan", + "Continent": "Europe", + "ISO_Code": "AZE", + "Level": "Subnat", + "GDLCODE": "AZEr108", + "Region": "Yukhari Karabakh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.468, + "1996": 0.469, + "1997": 0.476, + "1998": 0.489, + "1999": 0.504, + "2000": 0.509, + "2001": 0.521, + "2002": 0.531, + "2003": 0.544, + "2004": 0.551, + "2005": 0.577, + "2006": 0.617, + "2007": 0.644, + "2008": 0.665, + "2009": 0.681, + "2010": 0.688, + "2011": 0.682, + "2012": 0.685, + "2013": 0.693, + "2014": 0.698, + "2015": 0.697, + "2016": 0.687, + "2017": 0.689, + "2018": 0.688, + "2019": 0.692, + "2020": 0.689, + "2021": 0.696 + }, + { + "Country": "Bahamas", + "Continent": "America", + "ISO_Code": "BHS", + "Level": "National", + "GDLCODE": "BHSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.905, + "2001": 0.905, + "2002": 0.907, + "2003": 0.903, + "2004": 0.902, + "2005": 0.904, + "2006": 0.904, + "2007": 0.904, + "2008": 0.9, + "2009": 0.89, + "2010": 0.889, + "2011": 0.888, + "2012": 0.89, + "2013": 0.882, + "2014": 0.883, + "2015": 0.883, + "2016": 0.881, + "2017": 0.882, + "2018": 0.881, + "2019": 0.883, + "2020": 0.857, + "2021": 0.864 + }, + { + "Country": "Bahrain", + "Continent": "Asia/Pacific", + "ISO_Code": "BHR", + "Level": "National", + "GDLCODE": "BHRt", + "Region": "Total", + "1990": 0.908, + "1991": 0.907, + "1992": 0.923, + "1993": 0.93, + "1994": 0.923, + "1995": 0.926, + "1996": 0.928, + "1997": 0.923, + "1998": 0.927, + "1999": 0.928, + "2000": 0.933, + "2001": 0.928, + "2002": 0.924, + "2003": 0.925, + "2004": 0.926, + "2005": 0.927, + "2006": 0.926, + "2007": 0.927, + "2008": 0.921, + "2009": 0.906, + "2010": 0.906, + "2011": 0.896, + "2012": 0.917, + "2013": 0.923, + "2014": 0.925, + "2015": 0.924, + "2016": 0.924, + "2017": 0.923, + "2018": 0.919, + "2019": 0.915, + "2020": 0.901, + "2021": 0.903 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "National", + "GDLCODE": "BGDt", + "Region": "Total", + "1990": 0.414, + "1991": 0.416, + "1992": 0.421, + "1993": 0.425, + "1994": 0.428, + "1995": 0.433, + "1996": 0.435, + "1997": 0.439, + "1998": 0.443, + "1999": 0.448, + "2000": 0.453, + "2001": 0.457, + "2002": 0.461, + "2003": 0.466, + "2004": 0.472, + "2005": 0.479, + "2006": 0.489, + "2007": 0.498, + "2008": 0.507, + "2009": 0.513, + "2010": 0.52, + "2011": 0.527, + "2012": 0.535, + "2013": 0.542, + "2014": 0.547, + "2015": 0.555, + "2016": 0.563, + "2017": 0.57, + "2018": 0.58, + "2019": 0.59, + "2020": 0.594, + "2021": 0.605 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr214", + "Region": " Bagerhat, Khulna, Satkhira", + "1990": 0.409, + "1991": 0.411, + "1992": 0.416, + "1993": 0.42, + "1994": 0.423, + "1995": 0.427, + "1996": 0.43, + "1997": 0.434, + "1998": 0.438, + "1999": 0.442, + "2000": 0.447, + "2001": 0.452, + "2002": 0.456, + "2003": 0.46, + "2004": 0.466, + "2005": 0.472, + "2006": 0.48, + "2007": 0.488, + "2008": 0.495, + "2009": 0.499, + "2010": 0.505, + "2011": 0.511, + "2012": 0.512, + "2013": 0.511, + "2014": 0.509, + "2015": 0.522, + "2016": 0.536, + "2017": 0.549, + "2018": 0.566, + "2019": 0.582, + "2020": 0.586, + "2021": 0.597 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr204", + "Region": " Bandarban, Cox s Bazar", + "1990": 0.363, + "1991": 0.365, + "1992": 0.37, + "1993": 0.374, + "1994": 0.377, + "1995": 0.381, + "1996": 0.383, + "1997": 0.387, + "1998": 0.391, + "1999": 0.395, + "2000": 0.4, + "2001": 0.404, + "2002": 0.408, + "2003": 0.412, + "2004": 0.418, + "2005": 0.424, + "2006": 0.431, + "2007": 0.439, + "2008": 0.446, + "2009": 0.45, + "2010": 0.455, + "2011": 0.461, + "2012": 0.474, + "2013": 0.485, + "2014": 0.495, + "2015": 0.499, + "2016": 0.502, + "2017": 0.505, + "2018": 0.512, + "2019": 0.518, + "2020": 0.522, + "2021": 0.532 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr202", + "Region": " Barguna, Bhola, Patuakhali", + "1990": 0.384, + "1991": 0.386, + "1992": 0.39, + "1993": 0.394, + "1994": 0.397, + "1995": 0.402, + "1996": 0.404, + "1997": 0.408, + "1998": 0.412, + "1999": 0.416, + "2000": 0.421, + "2001": 0.425, + "2002": 0.429, + "2003": 0.434, + "2004": 0.439, + "2005": 0.445, + "2006": 0.452, + "2007": 0.46, + "2008": 0.466, + "2009": 0.47, + "2010": 0.475, + "2011": 0.48, + "2012": 0.487, + "2013": 0.492, + "2014": 0.496, + "2015": 0.501, + "2016": 0.506, + "2017": 0.51, + "2018": 0.518, + "2019": 0.525, + "2020": 0.529, + "2021": 0.539 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr201", + "Region": " Barisal, Jhalokati, Pirojpur", + "1990": 0.427, + "1991": 0.429, + "1992": 0.434, + "1993": 0.438, + "1994": 0.441, + "1995": 0.445, + "1996": 0.448, + "1997": 0.452, + "1998": 0.456, + "1999": 0.461, + "2000": 0.466, + "2001": 0.47, + "2002": 0.474, + "2003": 0.479, + "2004": 0.485, + "2005": 0.489, + "2006": 0.496, + "2007": 0.503, + "2008": 0.509, + "2009": 0.512, + "2010": 0.516, + "2011": 0.52, + "2012": 0.539, + "2013": 0.555, + "2014": 0.57, + "2015": 0.567, + "2016": 0.564, + "2017": 0.559, + "2018": 0.559, + "2019": 0.558, + "2020": 0.562, + "2021": 0.572 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr219", + "Region": " Bogra, Gaibandha, Jaypurhat", + "1990": 0.392, + "1991": 0.394, + "1992": 0.399, + "1993": 0.403, + "1994": 0.406, + "1995": 0.41, + "1996": 0.413, + "1997": 0.416, + "1998": 0.421, + "1999": 0.425, + "2000": 0.43, + "2001": 0.434, + "2002": 0.438, + "2003": 0.443, + "2004": 0.448, + "2005": 0.455, + "2006": 0.463, + "2007": 0.472, + "2008": 0.48, + "2009": 0.485, + "2010": 0.491, + "2011": 0.497, + "2012": 0.507, + "2013": 0.515, + "2014": 0.522, + "2015": 0.529, + "2016": 0.537, + "2017": 0.544, + "2018": 0.554, + "2019": 0.564, + "2020": 0.568, + "2021": 0.578 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr207", + "Region": " Brahmanbaria, Chandpur, Comilla", + "1990": 0.409, + "1991": 0.41, + "1992": 0.415, + "1993": 0.419, + "1994": 0.422, + "1995": 0.427, + "1996": 0.429, + "1997": 0.433, + "1998": 0.437, + "1999": 0.442, + "2000": 0.447, + "2001": 0.451, + "2002": 0.455, + "2003": 0.46, + "2004": 0.465, + "2005": 0.475, + "2006": 0.486, + "2007": 0.498, + "2008": 0.508, + "2009": 0.516, + "2010": 0.525, + "2011": 0.535, + "2012": 0.547, + "2013": 0.558, + "2014": 0.567, + "2015": 0.576, + "2016": 0.585, + "2017": 0.594, + "2018": 0.606, + "2019": 0.618, + "2020": 0.622, + "2021": 0.633 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr203", + "Region": " Chittagong", + "1990": 0.454, + "1991": 0.456, + "1992": 0.461, + "1993": 0.466, + "1994": 0.469, + "1995": 0.473, + "1996": 0.476, + "1997": 0.48, + "1998": 0.484, + "1999": 0.489, + "2000": 0.494, + "2001": 0.499, + "2002": 0.503, + "2003": 0.507, + "2004": 0.514, + "2005": 0.523, + "2006": 0.535, + "2007": 0.547, + "2008": 0.558, + "2009": 0.567, + "2010": 0.576, + "2011": 0.586, + "2012": 0.594, + "2013": 0.599, + "2014": 0.604, + "2015": 0.609, + "2016": 0.615, + "2017": 0.62, + "2018": 0.628, + "2019": 0.636, + "2020": 0.641, + "2021": 0.651 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr216", + "Region": " Chuadanga, Jhenaidah, Kushtia, Meherpur", + "1990": 0.422, + "1991": 0.424, + "1992": 0.429, + "1993": 0.433, + "1994": 0.436, + "1995": 0.44, + "1996": 0.443, + "1997": 0.447, + "1998": 0.451, + "1999": 0.455, + "2000": 0.461, + "2001": 0.465, + "2002": 0.469, + "2003": 0.474, + "2004": 0.48, + "2005": 0.486, + "2006": 0.494, + "2007": 0.503, + "2008": 0.511, + "2009": 0.515, + "2010": 0.521, + "2011": 0.528, + "2012": 0.538, + "2013": 0.547, + "2014": 0.554, + "2015": 0.562, + "2016": 0.57, + "2017": 0.578, + "2018": 0.588, + "2019": 0.599, + "2020": 0.603, + "2021": 0.614 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr208", + "Region": " Dhaka", + "1990": 0.557, + "1991": 0.559, + "1992": 0.564, + "1993": 0.569, + "1994": 0.572, + "1995": 0.577, + "1996": 0.58, + "1997": 0.584, + "1998": 0.589, + "1999": 0.594, + "2000": 0.6, + "2001": 0.605, + "2002": 0.61, + "2003": 0.615, + "2004": 0.621, + "2005": 0.631, + "2006": 0.644, + "2007": 0.657, + "2008": 0.668, + "2009": 0.677, + "2010": 0.687, + "2011": 0.697, + "2012": 0.689, + "2013": 0.679, + "2014": 0.667, + "2015": 0.672, + "2016": 0.677, + "2017": 0.681, + "2018": 0.689, + "2019": 0.696, + "2020": 0.701, + "2021": 0.712 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr220", + "Region": " Dinajpur, Nilphamari, Panchagarh, Thakurgaon", + "1990": 0.38, + "1991": 0.382, + "1992": 0.387, + "1993": 0.391, + "1994": 0.394, + "1995": 0.398, + "1996": 0.401, + "1997": 0.404, + "1998": 0.409, + "1999": 0.413, + "2000": 0.418, + "2001": 0.422, + "2002": 0.426, + "2003": 0.43, + "2004": 0.436, + "2005": 0.443, + "2006": 0.452, + "2007": 0.461, + "2008": 0.469, + "2009": 0.475, + "2010": 0.482, + "2011": 0.489, + "2012": 0.498, + "2013": 0.506, + "2014": 0.512, + "2015": 0.522, + "2016": 0.532, + "2017": 0.542, + "2018": 0.555, + "2019": 0.568, + "2020": 0.572, + "2021": 0.582 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr212", + "Region": " Faridpur, Manikganj, Rajbari", + "1990": 0.424, + "1991": 0.426, + "1992": 0.431, + "1993": 0.435, + "1994": 0.439, + "1995": 0.443, + "1996": 0.445, + "1997": 0.449, + "1998": 0.454, + "1999": 0.458, + "2000": 0.463, + "2001": 0.467, + "2002": 0.472, + "2003": 0.476, + "2004": 0.482, + "2005": 0.484, + "2006": 0.489, + "2007": 0.493, + "2008": 0.497, + "2009": 0.498, + "2010": 0.499, + "2011": 0.501, + "2012": 0.51, + "2013": 0.517, + "2014": 0.522, + "2015": 0.533, + "2016": 0.543, + "2017": 0.553, + "2018": 0.566, + "2019": 0.579, + "2020": 0.584, + "2021": 0.594 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr206", + "Region": " Feni, Lakshmipur, Noakhali", + "1990": 0.418, + "1991": 0.42, + "1992": 0.425, + "1993": 0.429, + "1994": 0.432, + "1995": 0.437, + "1996": 0.439, + "1997": 0.443, + "1998": 0.448, + "1999": 0.452, + "2000": 0.457, + "2001": 0.461, + "2002": 0.466, + "2003": 0.47, + "2004": 0.476, + "2005": 0.482, + "2006": 0.49, + "2007": 0.498, + "2008": 0.505, + "2009": 0.509, + "2010": 0.515, + "2011": 0.521, + "2012": 0.531, + "2013": 0.54, + "2014": 0.547, + "2015": 0.554, + "2016": 0.561, + "2017": 0.567, + "2018": 0.576, + "2019": 0.585, + "2020": 0.59, + "2021": 0.6 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr209", + "Region": " Gazipur, Narayanganj, Narsingdi", + "1990": 0.423, + "1991": 0.425, + "1992": 0.43, + "1993": 0.434, + "1994": 0.437, + "1995": 0.441, + "1996": 0.444, + "1997": 0.448, + "1998": 0.452, + "1999": 0.457, + "2000": 0.462, + "2001": 0.466, + "2002": 0.47, + "2003": 0.475, + "2004": 0.481, + "2005": 0.494, + "2006": 0.509, + "2007": 0.524, + "2008": 0.538, + "2009": 0.55, + "2010": 0.562, + "2011": 0.575, + "2012": 0.584, + "2013": 0.591, + "2014": 0.597, + "2015": 0.602, + "2016": 0.607, + "2017": 0.611, + "2018": 0.619, + "2019": 0.626, + "2020": 0.63, + "2021": 0.641 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr213", + "Region": " Gopalganj, Madaripur, Munshiganj, Shariatpur", + "1990": 0.403, + "1991": 0.405, + "1992": 0.41, + "1993": 0.414, + "1994": 0.417, + "1995": 0.421, + "1996": 0.424, + "1997": 0.428, + "1998": 0.432, + "1999": 0.436, + "2000": 0.441, + "2001": 0.446, + "2002": 0.45, + "2003": 0.454, + "2004": 0.46, + "2005": 0.469, + "2006": 0.48, + "2007": 0.491, + "2008": 0.501, + "2009": 0.509, + "2010": 0.517, + "2011": 0.526, + "2012": 0.535, + "2013": 0.541, + "2014": 0.547, + "2015": 0.557, + "2016": 0.567, + "2017": 0.576, + "2018": 0.589, + "2019": 0.601, + "2020": 0.606, + "2021": 0.616 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr223", + "Region": " Habiganj, Sunamganj", + "1990": 0.377, + "1991": 0.379, + "1992": 0.383, + "1993": 0.387, + "1994": 0.39, + "1995": 0.394, + "1996": 0.397, + "1997": 0.401, + "1998": 0.405, + "1999": 0.409, + "2000": 0.414, + "2001": 0.418, + "2002": 0.422, + "2003": 0.426, + "2004": 0.432, + "2005": 0.439, + "2006": 0.447, + "2007": 0.456, + "2008": 0.463, + "2009": 0.468, + "2010": 0.474, + "2011": 0.481, + "2012": 0.487, + "2013": 0.491, + "2014": 0.494, + "2015": 0.505, + "2016": 0.516, + "2017": 0.526, + "2018": 0.539, + "2019": 0.552, + "2020": 0.556, + "2021": 0.567 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr210", + "Region": " Jamalpur, Sherpur, Tangail", + "1990": 0.38, + "1991": 0.382, + "1992": 0.387, + "1993": 0.391, + "1994": 0.394, + "1995": 0.398, + "1996": 0.401, + "1997": 0.404, + "1998": 0.408, + "1999": 0.412, + "2000": 0.417, + "2001": 0.422, + "2002": 0.426, + "2003": 0.43, + "2004": 0.436, + "2005": 0.443, + "2006": 0.452, + "2007": 0.461, + "2008": 0.47, + "2009": 0.476, + "2010": 0.482, + "2011": 0.489, + "2012": 0.501, + "2013": 0.51, + "2014": 0.518, + "2015": 0.528, + "2016": 0.538, + "2017": 0.547, + "2018": 0.559, + "2019": 0.571, + "2020": 0.576, + "2021": 0.586 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr215", + "Region": " Jessore, Magura, Narail", + "1990": 0.436, + "1991": 0.438, + "1992": 0.443, + "1993": 0.447, + "1994": 0.45, + "1995": 0.454, + "1996": 0.457, + "1997": 0.461, + "1998": 0.465, + "1999": 0.47, + "2000": 0.475, + "2001": 0.479, + "2002": 0.484, + "2003": 0.488, + "2004": 0.494, + "2005": 0.497, + "2006": 0.503, + "2007": 0.508, + "2008": 0.513, + "2009": 0.515, + "2010": 0.517, + "2011": 0.521, + "2012": 0.527, + "2013": 0.531, + "2014": 0.534, + "2015": 0.546, + "2016": 0.559, + "2017": 0.57, + "2018": 0.585, + "2019": 0.6, + "2020": 0.605, + "2021": 0.615 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr205", + "Region": " Khagrachhari, Rangamati (Chattagram)", + "1990": 0.387, + "1991": 0.388, + "1992": 0.393, + "1993": 0.397, + "1994": 0.4, + "1995": 0.404, + "1996": 0.407, + "1997": 0.411, + "1998": 0.415, + "1999": 0.419, + "2000": 0.424, + "2001": 0.428, + "2002": 0.432, + "2003": 0.437, + "2004": 0.442, + "2005": 0.446, + "2006": 0.451, + "2007": 0.457, + "2008": 0.462, + "2009": 0.464, + "2010": 0.467, + "2011": 0.47, + "2012": 0.485, + "2013": 0.499, + "2014": 0.511, + "2015": 0.512, + "2016": 0.512, + "2017": 0.513, + "2018": 0.516, + "2019": 0.519, + "2020": 0.523, + "2021": 0.533 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr211", + "Region": " Kishoreganj, Mymensingh, Netrakona", + "1990": 0.372, + "1991": 0.374, + "1992": 0.378, + "1993": 0.382, + "1994": 0.385, + "1995": 0.389, + "1996": 0.392, + "1997": 0.396, + "1998": 0.4, + "1999": 0.404, + "2000": 0.409, + "2001": 0.413, + "2002": 0.417, + "2003": 0.421, + "2004": 0.427, + "2005": 0.433, + "2006": 0.441, + "2007": 0.45, + "2008": 0.457, + "2009": 0.462, + "2010": 0.468, + "2011": 0.474, + "2012": 0.482, + "2013": 0.487, + "2014": 0.492, + "2015": 0.503, + "2016": 0.514, + "2017": 0.525, + "2018": 0.538, + "2019": 0.552, + "2020": 0.556, + "2021": 0.566 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr221", + "Region": " Kurigram, Lalmonirhat, Rangpur", + "1990": 0.373, + "1991": 0.375, + "1992": 0.379, + "1993": 0.383, + "1994": 0.386, + "1995": 0.39, + "1996": 0.393, + "1997": 0.397, + "1998": 0.401, + "1999": 0.405, + "2000": 0.41, + "2001": 0.414, + "2002": 0.418, + "2003": 0.422, + "2004": 0.428, + "2005": 0.434, + "2006": 0.442, + "2007": 0.45, + "2008": 0.457, + "2009": 0.461, + "2010": 0.466, + "2011": 0.472, + "2012": 0.484, + "2013": 0.494, + "2014": 0.503, + "2015": 0.509, + "2016": 0.515, + "2017": 0.521, + "2018": 0.529, + "2019": 0.538, + "2020": 0.542, + "2021": 0.552 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr222", + "Region": " Maulvibazar, Sylhet", + "1990": 0.443, + "1991": 0.445, + "1992": 0.45, + "1993": 0.455, + "1994": 0.458, + "1995": 0.462, + "1996": 0.465, + "1997": 0.469, + "1998": 0.473, + "1999": 0.477, + "2000": 0.483, + "2001": 0.487, + "2002": 0.492, + "2003": 0.496, + "2004": 0.502, + "2005": 0.508, + "2006": 0.516, + "2007": 0.523, + "2008": 0.53, + "2009": 0.535, + "2010": 0.54, + "2011": 0.545, + "2012": 0.55, + "2013": 0.552, + "2014": 0.553, + "2015": 0.563, + "2016": 0.574, + "2017": 0.583, + "2018": 0.596, + "2019": 0.609, + "2020": 0.613, + "2021": 0.624 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr217", + "Region": " Naogaon, Nawabganj, Rajshahi", + "1990": 0.405, + "1991": 0.406, + "1992": 0.411, + "1993": 0.415, + "1994": 0.418, + "1995": 0.422, + "1996": 0.425, + "1997": 0.429, + "1998": 0.433, + "1999": 0.437, + "2000": 0.442, + "2001": 0.447, + "2002": 0.451, + "2003": 0.455, + "2004": 0.461, + "2005": 0.467, + "2006": 0.475, + "2007": 0.483, + "2008": 0.491, + "2009": 0.495, + "2010": 0.501, + "2011": 0.507, + "2012": 0.509, + "2013": 0.51, + "2014": 0.509, + "2015": 0.524, + "2016": 0.538, + "2017": 0.552, + "2018": 0.568, + "2019": 0.585, + "2020": 0.589, + "2021": 0.6 + }, + { + "Country": "Bangladesh", + "Continent": "Asia/Pacific", + "ISO_Code": "BGD", + "Level": "Subnat", + "GDLCODE": "BGDr218", + "Region": " Natore, Pabna, Sirajganj", + "1990": 0.397, + "1991": 0.399, + "1992": 0.404, + "1993": 0.408, + "1994": 0.411, + "1995": 0.415, + "1996": 0.418, + "1997": 0.421, + "1998": 0.426, + "1999": 0.43, + "2000": 0.435, + "2001": 0.439, + "2002": 0.443, + "2003": 0.448, + "2004": 0.453, + "2005": 0.459, + "2006": 0.467, + "2007": 0.475, + "2008": 0.483, + "2009": 0.487, + "2010": 0.493, + "2011": 0.499, + "2012": 0.51, + "2013": 0.52, + "2014": 0.528, + "2015": 0.536, + "2016": 0.544, + "2017": 0.551, + "2018": 0.561, + "2019": 0.572, + "2020": 0.576, + "2021": 0.586 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "National", + "GDLCODE": "BRBt", + "Region": "Total", + "1990": 0.742, + "1991": 0.736, + "1992": 0.725, + "1993": 0.724, + "1994": 0.729, + "1995": 0.731, + "1996": 0.736, + "1997": 0.743, + "1998": 0.738, + "1999": 0.738, + "2000": 0.753, + "2001": 0.748, + "2002": 0.748, + "2003": 0.752, + "2004": 0.753, + "2005": 0.758, + "2006": 0.763, + "2007": 0.769, + "2008": 0.767, + "2009": 0.76, + "2010": 0.759, + "2011": 0.751, + "2012": 0.754, + "2013": 0.751, + "2014": 0.751, + "2015": 0.754, + "2016": 0.757, + "2017": 0.758, + "2018": 0.757, + "2019": 0.756, + "2020": 0.725, + "2021": 0.727 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr102", + "Region": "Christ Church and St. Philip", + "1990": 0.749, + "1991": 0.743, + "1992": 0.732, + "1993": 0.732, + "1994": 0.737, + "1995": 0.738, + "1996": 0.744, + "1997": 0.751, + "1998": 0.745, + "1999": 0.745, + "2000": 0.76, + "2001": 0.755, + "2002": 0.756, + "2003": 0.759, + "2004": 0.76, + "2005": 0.765, + "2006": 0.77, + "2007": 0.776, + "2008": 0.775, + "2009": 0.768, + "2010": 0.766, + "2011": 0.759, + "2012": 0.762, + "2013": 0.759, + "2014": 0.758, + "2015": 0.761, + "2016": 0.764, + "2017": 0.765, + "2018": 0.764, + "2019": 0.763, + "2020": 0.732, + "2021": 0.734 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr101", + "Region": "St Michael", + "1990": 0.734, + "1991": 0.728, + "1992": 0.717, + "1993": 0.717, + "1994": 0.722, + "1995": 0.724, + "1996": 0.729, + "1997": 0.736, + "1998": 0.73, + "1999": 0.73, + "2000": 0.745, + "2001": 0.741, + "2002": 0.741, + "2003": 0.744, + "2004": 0.745, + "2005": 0.75, + "2006": 0.755, + "2007": 0.761, + "2008": 0.76, + "2009": 0.753, + "2010": 0.751, + "2011": 0.744, + "2012": 0.747, + "2013": 0.744, + "2014": 0.743, + "2015": 0.746, + "2016": 0.749, + "2017": 0.75, + "2018": 0.749, + "2019": 0.748, + "2020": 0.718, + "2021": 0.72 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr103", + "Region": "St. James, St. George, and St. Thomas", + "1990": 0.75, + "1991": 0.743, + "1992": 0.732, + "1993": 0.732, + "1994": 0.737, + "1995": 0.739, + "1996": 0.744, + "1997": 0.751, + "1998": 0.745, + "1999": 0.745, + "2000": 0.761, + "2001": 0.756, + "2002": 0.756, + "2003": 0.759, + "2004": 0.76, + "2005": 0.765, + "2006": 0.77, + "2007": 0.776, + "2008": 0.775, + "2009": 0.768, + "2010": 0.767, + "2011": 0.759, + "2012": 0.762, + "2013": 0.759, + "2014": 0.758, + "2015": 0.761, + "2016": 0.765, + "2017": 0.765, + "2018": 0.764, + "2019": 0.764, + "2020": 0.733, + "2021": 0.734 + }, + { + "Country": "Barbados", + "Continent": "America", + "ISO_Code": "BRB", + "Level": "Subnat", + "GDLCODE": "BRBr104", + "Region": "St. Lucy, St. Peter, St. Andrew, St. Joseph, and St. John", + "1990": 0.736, + "1991": 0.73, + "1992": 0.719, + "1993": 0.719, + "1994": 0.724, + "1995": 0.726, + "1996": 0.731, + "1997": 0.738, + "1998": 0.732, + "1999": 0.732, + "2000": 0.747, + "2001": 0.743, + "2002": 0.743, + "2003": 0.746, + "2004": 0.747, + "2005": 0.752, + "2006": 0.757, + "2007": 0.763, + "2008": 0.762, + "2009": 0.755, + "2010": 0.753, + "2011": 0.746, + "2012": 0.749, + "2013": 0.746, + "2014": 0.745, + "2015": 0.748, + "2016": 0.751, + "2017": 0.752, + "2018": 0.751, + "2019": 0.75, + "2020": 0.72, + "2021": 0.721 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "National", + "GDLCODE": "BLRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.613, + "1996": 0.618, + "1997": 0.635, + "1998": 0.647, + "1999": 0.653, + "2000": 0.662, + "2001": 0.67, + "2002": 0.679, + "2003": 0.69, + "2004": 0.708, + "2005": 0.722, + "2006": 0.737, + "2007": 0.75, + "2008": 0.765, + "2009": 0.765, + "2010": 0.776, + "2011": 0.783, + "2012": 0.786, + "2013": 0.785, + "2014": 0.789, + "2015": 0.781, + "2016": 0.776, + "2017": 0.782, + "2018": 0.787, + "2019": 0.79, + "2020": 0.787, + "2021": 0.791 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr101", + "Region": "Brest region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.607, + "1996": 0.612, + "1997": 0.628, + "1998": 0.641, + "1999": 0.647, + "2000": 0.656, + "2001": 0.664, + "2002": 0.672, + "2003": 0.684, + "2004": 0.701, + "2005": 0.715, + "2006": 0.729, + "2007": 0.741, + "2008": 0.755, + "2009": 0.754, + "2010": 0.764, + "2011": 0.77, + "2012": 0.772, + "2013": 0.771, + "2014": 0.775, + "2015": 0.767, + "2016": 0.763, + "2017": 0.768, + "2018": 0.773, + "2019": 0.777, + "2020": 0.774, + "2021": 0.778 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr103", + "Region": "Gomel region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.612, + "1996": 0.617, + "1997": 0.634, + "1998": 0.646, + "1999": 0.652, + "2000": 0.662, + "2001": 0.669, + "2002": 0.678, + "2003": 0.69, + "2004": 0.707, + "2005": 0.721, + "2006": 0.735, + "2007": 0.745, + "2008": 0.759, + "2009": 0.757, + "2010": 0.766, + "2011": 0.772, + "2012": 0.772, + "2013": 0.774, + "2014": 0.779, + "2015": 0.772, + "2016": 0.77, + "2017": 0.777, + "2018": 0.784, + "2019": 0.789, + "2020": 0.786, + "2021": 0.79 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr104", + "Region": "Grodno region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.606, + "1996": 0.611, + "1997": 0.627, + "1998": 0.64, + "1999": 0.646, + "2000": 0.655, + "2001": 0.663, + "2002": 0.671, + "2003": 0.683, + "2004": 0.7, + "2005": 0.714, + "2006": 0.731, + "2007": 0.746, + "2008": 0.763, + "2009": 0.765, + "2010": 0.778, + "2011": 0.788, + "2012": 0.792, + "2013": 0.792, + "2014": 0.796, + "2015": 0.789, + "2016": 0.785, + "2017": 0.791, + "2018": 0.796, + "2019": 0.8, + "2020": 0.797, + "2021": 0.802 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr105", + "Region": "Minsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.626, + "1996": 0.631, + "1997": 0.648, + "1998": 0.661, + "1999": 0.667, + "2000": 0.676, + "2001": 0.684, + "2002": 0.692, + "2003": 0.704, + "2004": 0.722, + "2005": 0.736, + "2006": 0.752, + "2007": 0.766, + "2008": 0.782, + "2009": 0.782, + "2010": 0.794, + "2011": 0.803, + "2012": 0.806, + "2013": 0.804, + "2014": 0.806, + "2015": 0.796, + "2016": 0.79, + "2017": 0.794, + "2018": 0.798, + "2019": 0.8, + "2020": 0.797, + "2021": 0.801 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr106", + "Region": "Mogilev region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.606, + "1996": 0.61, + "1997": 0.627, + "1998": 0.64, + "1999": 0.646, + "2000": 0.655, + "2001": 0.662, + "2002": 0.671, + "2003": 0.683, + "2004": 0.7, + "2005": 0.714, + "2006": 0.727, + "2007": 0.738, + "2008": 0.751, + "2009": 0.748, + "2010": 0.757, + "2011": 0.763, + "2012": 0.763, + "2013": 0.764, + "2014": 0.769, + "2015": 0.763, + "2016": 0.761, + "2017": 0.768, + "2018": 0.774, + "2019": 0.78, + "2020": 0.776, + "2021": 0.781 + }, + { + "Country": "Belarus", + "Continent": "Europe", + "ISO_Code": "BLR", + "Level": "Subnat", + "GDLCODE": "BLRr102", + "Region": "Vitebsk region", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.604, + "1996": 0.609, + "1997": 0.625, + "1998": 0.638, + "1999": 0.644, + "2000": 0.653, + "2001": 0.661, + "2002": 0.669, + "2003": 0.681, + "2004": 0.698, + "2005": 0.712, + "2006": 0.728, + "2007": 0.741, + "2008": 0.757, + "2009": 0.757, + "2010": 0.769, + "2011": 0.777, + "2012": 0.78, + "2013": 0.779, + "2014": 0.782, + "2015": 0.774, + "2016": 0.769, + "2017": 0.774, + "2018": 0.779, + "2019": 0.782, + "2020": 0.778, + "2021": 0.783 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "National", + "GDLCODE": "BELt", + "Region": "Total", + "1990": 0.895, + "1991": 0.897, + "1992": 0.899, + "1993": 0.898, + "1994": 0.904, + "1995": 0.907, + "1996": 0.908, + "1997": 0.913, + "1998": 0.916, + "1999": 0.92, + "2000": 0.923, + "2001": 0.924, + "2002": 0.926, + "2003": 0.926, + "2004": 0.929, + "2005": 0.931, + "2006": 0.933, + "2007": 0.938, + "2008": 0.936, + "2009": 0.934, + "2010": 0.934, + "2011": 0.931, + "2012": 0.934, + "2013": 0.935, + "2014": 0.937, + "2015": 0.939, + "2016": 0.94, + "2017": 0.941, + "2018": 0.942, + "2019": 0.946, + "2020": 0.937, + "2021": 0.946 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr101", + "Region": "Bruxelles - Brussel", + "1990": 1, + "1991": 1, + "1992": 1, + "1993": 1, + "1994": 1, + "1995": 1, + "1996": 1, + "1997": 1, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr102", + "Region": "Prov. Antwerpen", + "1990": 0.92, + "1991": 0.923, + "1992": 0.925, + "1993": 0.924, + "1994": 0.93, + "1995": 0.932, + "1996": 0.933, + "1997": 0.939, + "1998": 0.942, + "1999": 0.946, + "2000": 0.949, + "2001": 0.947, + "2002": 0.951, + "2003": 0.951, + "2004": 0.955, + "2005": 0.96, + "2006": 0.96, + "2007": 0.965, + "2008": 0.963, + "2009": 0.958, + "2010": 0.958, + "2011": 0.956, + "2012": 0.959, + "2013": 0.96, + "2014": 0.961, + "2015": 0.965, + "2016": 0.966, + "2017": 0.967, + "2018": 0.969, + "2019": 0.973, + "2020": 0.964, + "2021": 0.972 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr107", + "Region": "Prov. Brabant Wallon", + "1990": 0.892, + "1991": 0.895, + "1992": 0.897, + "1993": 0.896, + "1994": 0.901, + "1995": 0.904, + "1996": 0.905, + "1997": 0.91, + "1998": 0.913, + "1999": 0.917, + "2000": 0.921, + "2001": 0.923, + "2002": 0.927, + "2003": 0.926, + "2004": 0.934, + "2005": 0.936, + "2006": 0.939, + "2007": 0.945, + "2008": 0.95, + "2009": 0.944, + "2010": 0.956, + "2011": 0.939, + "2012": 0.946, + "2013": 0.951, + "2014": 0.955, + "2015": 0.955, + "2016": 0.961, + "2017": 0.965, + "2018": 0.974, + "2019": 0.98, + "2020": 0.971, + "2021": 0.98 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr108", + "Region": "Prov. Hainaut", + "1990": 0.83, + "1991": 0.833, + "1992": 0.835, + "1993": 0.834, + "1994": 0.839, + "1995": 0.842, + "1996": 0.843, + "1997": 0.848, + "1998": 0.851, + "1999": 0.854, + "2000": 0.858, + "2001": 0.858, + "2002": 0.858, + "2003": 0.861, + "2004": 0.863, + "2005": 0.864, + "2006": 0.867, + "2007": 0.87, + "2008": 0.872, + "2009": 0.863, + "2010": 0.865, + "2011": 0.864, + "2012": 0.866, + "2013": 0.865, + "2014": 0.867, + "2015": 0.868, + "2016": 0.869, + "2017": 0.87, + "2018": 0.872, + "2019": 0.874, + "2020": 0.865, + "2021": 0.874 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr109", + "Region": "Prov. Liege", + "1990": 0.849, + "1991": 0.852, + "1992": 0.853, + "1993": 0.853, + "1994": 0.858, + "1995": 0.861, + "1996": 0.862, + "1997": 0.867, + "1998": 0.87, + "1999": 0.873, + "2000": 0.877, + "2001": 0.876, + "2002": 0.877, + "2003": 0.877, + "2004": 0.88, + "2005": 0.881, + "2006": 0.884, + "2007": 0.888, + "2008": 0.888, + "2009": 0.885, + "2010": 0.884, + "2011": 0.883, + "2012": 0.884, + "2013": 0.884, + "2014": 0.886, + "2015": 0.885, + "2016": 0.887, + "2017": 0.889, + "2018": 0.89, + "2019": 0.893, + "2020": 0.884, + "2021": 0.893 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr103", + "Region": "Prov. Limburg", + "1990": 0.866, + "1991": 0.868, + "1992": 0.87, + "1993": 0.87, + "1994": 0.875, + "1995": 0.878, + "1996": 0.879, + "1997": 0.884, + "1998": 0.887, + "1999": 0.89, + "2000": 0.894, + "2001": 0.895, + "2002": 0.897, + "2003": 0.898, + "2004": 0.898, + "2005": 0.896, + "2006": 0.902, + "2007": 0.908, + "2008": 0.907, + "2009": 0.898, + "2010": 0.9, + "2011": 0.9, + "2012": 0.902, + "2013": 0.903, + "2014": 0.907, + "2015": 0.906, + "2016": 0.908, + "2017": 0.91, + "2018": 0.911, + "2019": 0.914, + "2020": 0.905, + "2021": 0.913 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr110", + "Region": "Prov. Luxembourg", + "1990": 0.842, + "1991": 0.845, + "1992": 0.846, + "1993": 0.846, + "1994": 0.851, + "1995": 0.854, + "1996": 0.855, + "1997": 0.86, + "1998": 0.863, + "1999": 0.866, + "2000": 0.87, + "2001": 0.866, + "2002": 0.869, + "2003": 0.868, + "2004": 0.869, + "2005": 0.871, + "2006": 0.876, + "2007": 0.876, + "2008": 0.873, + "2009": 0.868, + "2010": 0.867, + "2011": 0.865, + "2012": 0.86, + "2013": 0.86, + "2014": 0.864, + "2015": 0.865, + "2016": 0.865, + "2017": 0.866, + "2018": 0.868, + "2019": 0.871, + "2020": 0.862, + "2021": 0.871 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr111", + "Region": "Prov. Namur", + "1990": 0.837, + "1991": 0.839, + "1992": 0.841, + "1993": 0.841, + "1994": 0.846, + "1995": 0.848, + "1996": 0.849, + "1997": 0.854, + "1998": 0.857, + "1999": 0.861, + "2000": 0.865, + "2001": 0.864, + "2002": 0.867, + "2003": 0.869, + "2004": 0.872, + "2005": 0.873, + "2006": 0.877, + "2007": 0.88, + "2008": 0.881, + "2009": 0.877, + "2010": 0.879, + "2011": 0.875, + "2012": 0.878, + "2013": 0.879, + "2014": 0.879, + "2015": 0.879, + "2016": 0.88, + "2017": 0.881, + "2018": 0.882, + "2019": 0.885, + "2020": 0.876, + "2021": 0.885 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr104", + "Region": "Prov. Oost-Vlaanderen", + "1990": 0.872, + "1991": 0.874, + "1992": 0.876, + "1993": 0.875, + "1994": 0.881, + "1995": 0.883, + "1996": 0.885, + "1997": 0.89, + "1998": 0.893, + "1999": 0.896, + "2000": 0.9, + "2001": 0.9, + "2002": 0.904, + "2003": 0.906, + "2004": 0.91, + "2005": 0.911, + "2006": 0.914, + "2007": 0.92, + "2008": 0.917, + "2009": 0.917, + "2010": 0.917, + "2011": 0.915, + "2012": 0.919, + "2013": 0.921, + "2014": 0.921, + "2015": 0.925, + "2016": 0.927, + "2017": 0.929, + "2018": 0.929, + "2019": 0.932, + "2020": 0.923, + "2021": 0.931 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr105", + "Region": "Prov. Vlaams-Brabant", + "1990": 0.896, + "1991": 0.899, + "1992": 0.9, + "1993": 0.9, + "1994": 0.905, + "1995": 0.908, + "1996": 0.909, + "1997": 0.914, + "1998": 0.917, + "1999": 0.921, + "2000": 0.925, + "2001": 0.929, + "2002": 0.927, + "2003": 0.93, + "2004": 0.933, + "2005": 0.935, + "2006": 0.94, + "2007": 0.945, + "2008": 0.943, + "2009": 0.945, + "2010": 0.943, + "2011": 0.94, + "2012": 0.945, + "2013": 0.946, + "2014": 0.947, + "2015": 0.95, + "2016": 0.953, + "2017": 0.954, + "2018": 0.955, + "2019": 0.958, + "2020": 0.949, + "2021": 0.958 + }, + { + "Country": "Belgium", + "Continent": "Europe", + "ISO_Code": "BEL", + "Level": "Subnat", + "GDLCODE": "BELr106", + "Region": "Prov. West-Vlaanderen", + "1990": 0.885, + "1991": 0.888, + "1992": 0.889, + "1993": 0.889, + "1994": 0.894, + "1995": 0.897, + "1996": 0.898, + "1997": 0.903, + "1998": 0.906, + "1999": 0.91, + "2000": 0.914, + "2001": 0.913, + "2002": 0.915, + "2003": 0.916, + "2004": 0.919, + "2005": 0.919, + "2006": 0.925, + "2007": 0.931, + "2008": 0.926, + "2009": 0.924, + "2010": 0.925, + "2011": 0.923, + "2012": 0.927, + "2013": 0.929, + "2014": 0.931, + "2015": 0.933, + "2016": 0.936, + "2017": 0.937, + "2018": 0.938, + "2019": 0.942, + "2020": 0.933, + "2021": 0.941 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "National", + "GDLCODE": "BLZt", + "Region": "Total", + "1990": 0.583, + "1991": 0.596, + "1992": 0.61, + "1993": 0.616, + "1994": 0.611, + "1995": 0.609, + "1996": 0.606, + "1997": 0.607, + "1998": 0.605, + "1999": 0.611, + "2000": 0.623, + "2001": 0.623, + "2002": 0.626, + "2003": 0.633, + "2004": 0.634, + "2005": 0.634, + "2006": 0.637, + "2007": 0.63, + "2008": 0.632, + "2009": 0.637, + "2010": 0.633, + "2011": 0.638, + "2012": 0.636, + "2013": 0.635, + "2014": 0.636, + "2015": 0.641, + "2016": 0.637, + "2017": 0.635, + "2018": 0.635, + "2019": 0.635, + "2020": 0.616, + "2021": 0.626 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr102", + "Region": "Belize", + "1990": 0.62, + "1991": 0.633, + "1992": 0.647, + "1993": 0.654, + "1994": 0.649, + "1995": 0.647, + "1996": 0.643, + "1997": 0.644, + "1998": 0.642, + "1999": 0.648, + "2000": 0.66, + "2001": 0.66, + "2002": 0.664, + "2003": 0.671, + "2004": 0.672, + "2005": 0.672, + "2006": 0.675, + "2007": 0.666, + "2008": 0.666, + "2009": 0.669, + "2010": 0.663, + "2011": 0.665, + "2012": 0.663, + "2013": 0.662, + "2014": 0.663, + "2015": 0.668, + "2016": 0.664, + "2017": 0.662, + "2018": 0.662, + "2019": 0.662, + "2020": 0.643, + "2021": 0.653 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr103", + "Region": "Cayo", + "1990": 0.596, + "1991": 0.61, + "1992": 0.623, + "1993": 0.629, + "1994": 0.625, + "1995": 0.623, + "1996": 0.619, + "1997": 0.62, + "1998": 0.618, + "1999": 0.624, + "2000": 0.636, + "2001": 0.636, + "2002": 0.64, + "2003": 0.647, + "2004": 0.647, + "2005": 0.647, + "2006": 0.65, + "2007": 0.622, + "2008": 0.603, + "2009": 0.586, + "2010": 0.561, + "2011": 0.543, + "2012": 0.542, + "2013": 0.541, + "2014": 0.542, + "2015": 0.547, + "2016": 0.543, + "2017": 0.541, + "2018": 0.541, + "2019": 0.541, + "2020": 0.523, + "2021": 0.533 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr101", + "Region": "Corozal, Orange Walk", + "1990": 0.571, + "1991": 0.584, + "1992": 0.597, + "1993": 0.603, + "1994": 0.599, + "1995": 0.597, + "1996": 0.593, + "1997": 0.594, + "1998": 0.592, + "1999": 0.598, + "2000": 0.61, + "2001": 0.61, + "2002": 0.613, + "2003": 0.62, + "2004": 0.621, + "2005": 0.621, + "2006": 0.624, + "2007": 0.618, + "2008": 0.621, + "2009": 0.626, + "2010": 0.623, + "2011": 0.628, + "2012": 0.626, + "2013": 0.625, + "2014": 0.627, + "2015": 0.631, + "2016": 0.627, + "2017": 0.626, + "2018": 0.626, + "2019": 0.625, + "2020": 0.606, + "2021": 0.617 + }, + { + "Country": "Belize", + "Continent": "America", + "ISO_Code": "BLZ", + "Level": "Subnat", + "GDLCODE": "BLZr104", + "Region": "Stann Creek, Toledo", + "1990": 0.522, + "1991": 0.534, + "1992": 0.547, + "1993": 0.553, + "1994": 0.549, + "1995": 0.547, + "1996": 0.544, + "1997": 0.544, + "1998": 0.542, + "1999": 0.548, + "2000": 0.559, + "2001": 0.56, + "2002": 0.563, + "2003": 0.57, + "2004": 0.57, + "2005": 0.57, + "2006": 0.573, + "2007": 0.581, + "2008": 0.597, + "2009": 0.616, + "2010": 0.626, + "2011": 0.645, + "2012": 0.643, + "2013": 0.642, + "2014": 0.643, + "2015": 0.648, + "2016": 0.644, + "2017": 0.642, + "2018": 0.642, + "2019": 0.642, + "2020": 0.623, + "2021": 0.633 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "National", + "GDLCODE": "BENt", + "Region": "Total", + "1990": 0.462, + "1991": 0.464, + "1992": 0.46, + "1993": 0.466, + "1994": 0.463, + "1995": 0.468, + "1996": 0.469, + "1997": 0.474, + "1998": 0.477, + "1999": 0.48, + "2000": 0.484, + "2001": 0.488, + "2002": 0.489, + "2003": 0.49, + "2004": 0.492, + "2005": 0.491, + "2006": 0.492, + "2007": 0.496, + "2008": 0.5, + "2009": 0.499, + "2010": 0.497, + "2011": 0.498, + "2012": 0.5, + "2013": 0.507, + "2014": 0.512, + "2015": 0.51, + "2016": 0.51, + "2017": 0.514, + "2018": 0.52, + "2019": 0.526, + "2020": 0.528, + "2021": 0.533 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr101", + "Region": "Atacora (incl Donga)", + "1990": 0.433, + "1991": 0.435, + "1992": 0.431, + "1993": 0.437, + "1994": 0.434, + "1995": 0.438, + "1996": 0.44, + "1997": 0.439, + "1998": 0.437, + "1999": 0.435, + "2000": 0.433, + "2001": 0.431, + "2002": 0.434, + "2003": 0.436, + "2004": 0.44, + "2005": 0.44, + "2006": 0.442, + "2007": 0.447, + "2008": 0.452, + "2009": 0.451, + "2010": 0.451, + "2011": 0.452, + "2012": 0.458, + "2013": 0.469, + "2014": 0.478, + "2015": 0.48, + "2016": 0.485, + "2017": 0.493, + "2018": 0.503, + "2019": 0.509, + "2020": 0.51, + "2021": 0.515 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr102", + "Region": "Atlantique (incl Littoral (Cotonou))", + "1990": 0.526, + "1991": 0.528, + "1992": 0.524, + "1993": 0.53, + "1994": 0.527, + "1995": 0.532, + "1996": 0.533, + "1997": 0.542, + "1998": 0.548, + "1999": 0.555, + "2000": 0.562, + "2001": 0.569, + "2002": 0.566, + "2003": 0.562, + "2004": 0.56, + "2005": 0.554, + "2006": 0.551, + "2007": 0.558, + "2008": 0.565, + "2009": 0.567, + "2010": 0.568, + "2011": 0.572, + "2012": 0.572, + "2013": 0.576, + "2014": 0.579, + "2015": 0.574, + "2016": 0.572, + "2017": 0.574, + "2018": 0.577, + "2019": 0.584, + "2020": 0.585, + "2021": 0.591 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr103", + "Region": "Borgou (incl Alibori)", + "1990": 0.443, + "1991": 0.445, + "1992": 0.441, + "1993": 0.447, + "1994": 0.444, + "1995": 0.448, + "1996": 0.45, + "1997": 0.454, + "1998": 0.455, + "1999": 0.458, + "2000": 0.46, + "2001": 0.462, + "2002": 0.466, + "2003": 0.468, + "2004": 0.472, + "2005": 0.473, + "2006": 0.476, + "2007": 0.477, + "2008": 0.477, + "2009": 0.473, + "2010": 0.469, + "2011": 0.466, + "2012": 0.47, + "2013": 0.478, + "2014": 0.484, + "2015": 0.484, + "2016": 0.486, + "2017": 0.491, + "2018": 0.499, + "2019": 0.504, + "2020": 0.506, + "2021": 0.511 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr104", + "Region": "Mono (incl Couffo)", + "1990": 0.441, + "1991": 0.443, + "1992": 0.439, + "1993": 0.445, + "1994": 0.442, + "1995": 0.446, + "1996": 0.448, + "1997": 0.448, + "1998": 0.446, + "1999": 0.445, + "2000": 0.444, + "2001": 0.443, + "2002": 0.446, + "2003": 0.447, + "2004": 0.451, + "2005": 0.45, + "2006": 0.453, + "2007": 0.456, + "2008": 0.458, + "2009": 0.456, + "2010": 0.453, + "2011": 0.453, + "2012": 0.456, + "2013": 0.463, + "2014": 0.469, + "2015": 0.468, + "2016": 0.47, + "2017": 0.474, + "2018": 0.481, + "2019": 0.487, + "2020": 0.488, + "2021": 0.493 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr105", + "Region": "Queme (incl Plateau)", + "1990": 0.445, + "1991": 0.446, + "1992": 0.443, + "1993": 0.448, + "1994": 0.446, + "1995": 0.45, + "1996": 0.452, + "1997": 0.462, + "1998": 0.471, + "1999": 0.481, + "2000": 0.491, + "2001": 0.5, + "2002": 0.503, + "2003": 0.504, + "2004": 0.507, + "2005": 0.507, + "2006": 0.509, + "2007": 0.51, + "2008": 0.511, + "2009": 0.506, + "2010": 0.502, + "2011": 0.5, + "2012": 0.503, + "2013": 0.51, + "2014": 0.516, + "2015": 0.514, + "2016": 0.516, + "2017": 0.52, + "2018": 0.526, + "2019": 0.532, + "2020": 0.534, + "2021": 0.54 + }, + { + "Country": "Benin", + "Continent": "Africa", + "ISO_Code": "BEN", + "Level": "Subnat", + "GDLCODE": "BENr106", + "Region": "Zou (incl Collines)", + "1990": 0.455, + "1991": 0.457, + "1992": 0.453, + "1993": 0.459, + "1994": 0.456, + "1995": 0.46, + "1996": 0.462, + "1997": 0.463, + "1998": 0.462, + "1999": 0.462, + "2000": 0.462, + "2001": 0.462, + "2002": 0.464, + "2003": 0.464, + "2004": 0.467, + "2005": 0.465, + "2006": 0.467, + "2007": 0.469, + "2008": 0.47, + "2009": 0.467, + "2010": 0.463, + "2011": 0.462, + "2012": 0.468, + "2013": 0.479, + "2014": 0.488, + "2015": 0.491, + "2016": 0.496, + "2017": 0.504, + "2018": 0.514, + "2019": 0.52, + "2020": 0.522, + "2021": 0.527 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "National", + "GDLCODE": "BTNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.602, + "2006": 0.612, + "2007": 0.634, + "2008": 0.637, + "2009": 0.644, + "2010": 0.657, + "2011": 0.665, + "2012": 0.668, + "2013": 0.671, + "2014": 0.678, + "2015": 0.686, + "2016": 0.693, + "2017": 0.698, + "2018": 0.701, + "2019": 0.707, + "2020": 0.694, + "2021": 0.687 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr101", + "Region": "Bumthang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.62, + "2006": 0.63, + "2007": 0.653, + "2008": 0.656, + "2009": 0.663, + "2010": 0.676, + "2011": 0.685, + "2012": 0.688, + "2013": 0.691, + "2014": 0.697, + "2015": 0.705, + "2016": 0.713, + "2017": 0.718, + "2018": 0.72, + "2019": 0.727, + "2020": 0.714, + "2021": 0.706 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr102", + "Region": "Chukha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.631, + "2006": 0.641, + "2007": 0.664, + "2008": 0.667, + "2009": 0.674, + "2010": 0.687, + "2011": 0.696, + "2012": 0.699, + "2013": 0.702, + "2014": 0.709, + "2015": 0.717, + "2016": 0.725, + "2017": 0.73, + "2018": 0.732, + "2019": 0.739, + "2020": 0.725, + "2021": 0.718 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr103", + "Region": "Dagana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.521, + "2006": 0.53, + "2007": 0.551, + "2008": 0.554, + "2009": 0.56, + "2010": 0.572, + "2011": 0.581, + "2012": 0.584, + "2013": 0.586, + "2014": 0.592, + "2015": 0.6, + "2016": 0.607, + "2017": 0.612, + "2018": 0.614, + "2019": 0.62, + "2020": 0.608, + "2021": 0.601 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr104", + "Region": "Gasa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.518, + "2006": 0.527, + "2007": 0.548, + "2008": 0.551, + "2009": 0.557, + "2010": 0.569, + "2011": 0.577, + "2012": 0.58, + "2013": 0.583, + "2014": 0.589, + "2015": 0.597, + "2016": 0.604, + "2017": 0.608, + "2018": 0.61, + "2019": 0.617, + "2020": 0.604, + "2021": 0.598 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr105", + "Region": "Haa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.64, + "2006": 0.65, + "2007": 0.673, + "2008": 0.677, + "2009": 0.683, + "2010": 0.696, + "2011": 0.706, + "2012": 0.709, + "2013": 0.712, + "2014": 0.719, + "2015": 0.727, + "2016": 0.734, + "2017": 0.739, + "2018": 0.742, + "2019": 0.749, + "2020": 0.735, + "2021": 0.728 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr106", + "Region": "Lhuntse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.541, + "2006": 0.55, + "2007": 0.571, + "2008": 0.574, + "2009": 0.58, + "2010": 0.593, + "2011": 0.601, + "2012": 0.604, + "2013": 0.607, + "2014": 0.613, + "2015": 0.621, + "2016": 0.628, + "2017": 0.632, + "2018": 0.635, + "2019": 0.641, + "2020": 0.629, + "2021": 0.622 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr107", + "Region": "Mongar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.566, + "2006": 0.576, + "2007": 0.597, + "2008": 0.601, + "2009": 0.607, + "2010": 0.619, + "2011": 0.628, + "2012": 0.631, + "2013": 0.634, + "2014": 0.64, + "2015": 0.648, + "2016": 0.655, + "2017": 0.66, + "2018": 0.662, + "2019": 0.669, + "2020": 0.656, + "2021": 0.649 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr108", + "Region": "Paro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.668, + "2006": 0.678, + "2007": 0.701, + "2008": 0.705, + "2009": 0.711, + "2010": 0.725, + "2011": 0.734, + "2012": 0.738, + "2013": 0.741, + "2014": 0.748, + "2015": 0.756, + "2016": 0.764, + "2017": 0.769, + "2018": 0.771, + "2019": 0.778, + "2020": 0.765, + "2021": 0.757 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr109", + "Region": "Pemagatshel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.543, + "2006": 0.552, + "2007": 0.573, + "2008": 0.577, + "2009": 0.583, + "2010": 0.595, + "2011": 0.603, + "2012": 0.606, + "2013": 0.609, + "2014": 0.615, + "2015": 0.623, + "2016": 0.63, + "2017": 0.635, + "2018": 0.637, + "2019": 0.643, + "2020": 0.631, + "2021": 0.624 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr110", + "Region": "Punakha", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.621, + "2006": 0.631, + "2007": 0.653, + "2008": 0.657, + "2009": 0.663, + "2010": 0.676, + "2011": 0.685, + "2012": 0.688, + "2013": 0.691, + "2014": 0.698, + "2015": 0.706, + "2016": 0.714, + "2017": 0.719, + "2018": 0.721, + "2019": 0.728, + "2020": 0.714, + "2021": 0.707 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr111", + "Region": "Samdrup jongkhar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.578, + "2006": 0.588, + "2007": 0.61, + "2008": 0.613, + "2009": 0.619, + "2010": 0.632, + "2011": 0.64, + "2012": 0.644, + "2013": 0.646, + "2014": 0.653, + "2015": 0.661, + "2016": 0.668, + "2017": 0.673, + "2018": 0.675, + "2019": 0.682, + "2020": 0.669, + "2021": 0.662 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr112", + "Region": "Samtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.58, + "2006": 0.59, + "2007": 0.612, + "2008": 0.615, + "2009": 0.621, + "2010": 0.634, + "2011": 0.643, + "2012": 0.646, + "2013": 0.649, + "2014": 0.655, + "2015": 0.663, + "2016": 0.67, + "2017": 0.675, + "2018": 0.677, + "2019": 0.684, + "2020": 0.671, + "2021": 0.664 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr113", + "Region": "Sarpang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.618, + "2006": 0.627, + "2007": 0.65, + "2008": 0.653, + "2009": 0.66, + "2010": 0.673, + "2011": 0.682, + "2012": 0.685, + "2013": 0.688, + "2014": 0.695, + "2015": 0.703, + "2016": 0.71, + "2017": 0.715, + "2018": 0.717, + "2019": 0.724, + "2020": 0.711, + "2021": 0.704 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr114", + "Region": "Thimphu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.714, + "2006": 0.724, + "2007": 0.748, + "2008": 0.752, + "2009": 0.759, + "2010": 0.773, + "2011": 0.783, + "2012": 0.786, + "2013": 0.789, + "2014": 0.796, + "2015": 0.805, + "2016": 0.813, + "2017": 0.818, + "2018": 0.821, + "2019": 0.828, + "2020": 0.814, + "2021": 0.806 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr115", + "Region": "Trashigang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.553, + "2006": 0.562, + "2007": 0.583, + "2008": 0.587, + "2009": 0.593, + "2010": 0.605, + "2011": 0.614, + "2012": 0.617, + "2013": 0.619, + "2014": 0.626, + "2015": 0.633, + "2016": 0.641, + "2017": 0.645, + "2018": 0.648, + "2019": 0.654, + "2020": 0.641, + "2021": 0.634 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr116", + "Region": "Trashiyangtse", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.569, + "2006": 0.578, + "2007": 0.6, + "2008": 0.603, + "2009": 0.61, + "2010": 0.622, + "2011": 0.631, + "2012": 0.634, + "2013": 0.637, + "2014": 0.643, + "2015": 0.651, + "2016": 0.658, + "2017": 0.663, + "2018": 0.665, + "2019": 0.671, + "2020": 0.659, + "2021": 0.652 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr117", + "Region": "Trongsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.554, + "2006": 0.563, + "2007": 0.585, + "2008": 0.588, + "2009": 0.594, + "2010": 0.607, + "2011": 0.615, + "2012": 0.618, + "2013": 0.621, + "2014": 0.627, + "2015": 0.635, + "2016": 0.642, + "2017": 0.647, + "2018": 0.649, + "2019": 0.655, + "2020": 0.643, + "2021": 0.636 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr118", + "Region": "Tsirang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.548, + "2006": 0.557, + "2007": 0.578, + "2008": 0.582, + "2009": 0.588, + "2010": 0.6, + "2011": 0.608, + "2012": 0.612, + "2013": 0.614, + "2014": 0.621, + "2015": 0.628, + "2016": 0.635, + "2017": 0.64, + "2018": 0.642, + "2019": 0.649, + "2020": 0.636, + "2021": 0.629 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr119", + "Region": "Wangdi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.581, + "2006": 0.591, + "2007": 0.613, + "2008": 0.616, + "2009": 0.622, + "2010": 0.635, + "2011": 0.644, + "2012": 0.647, + "2013": 0.65, + "2014": 0.656, + "2015": 0.664, + "2016": 0.671, + "2017": 0.676, + "2018": 0.678, + "2019": 0.685, + "2020": 0.672, + "2021": 0.665 + }, + { + "Country": "Bhutan", + "Continent": "Asia/Pacific", + "ISO_Code": "BTN", + "Level": "Subnat", + "GDLCODE": "BTNr120", + "Region": "Zhemgang", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.527, + "2006": 0.536, + "2007": 0.557, + "2008": 0.56, + "2009": 0.566, + "2010": 0.579, + "2011": 0.587, + "2012": 0.59, + "2013": 0.593, + "2014": 0.599, + "2015": 0.606, + "2016": 0.613, + "2017": 0.618, + "2018": 0.62, + "2019": 0.626, + "2020": 0.614, + "2021": 0.607 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "National", + "GDLCODE": "BOLt", + "Region": "Total", + "1990": 0.57, + "1991": 0.576, + "1992": 0.577, + "1993": 0.58, + "1994": 0.584, + "1995": 0.588, + "1996": 0.592, + "1997": 0.596, + "1998": 0.602, + "1999": 0.599, + "2000": 0.599, + "2001": 0.599, + "2002": 0.6, + "2003": 0.599, + "2004": 0.601, + "2005": 0.606, + "2006": 0.611, + "2007": 0.615, + "2008": 0.622, + "2009": 0.623, + "2010": 0.626, + "2011": 0.631, + "2012": 0.633, + "2013": 0.64, + "2014": 0.648, + "2015": 0.657, + "2016": 0.663, + "2017": 0.665, + "2018": 0.67, + "2019": 0.672, + "2020": 0.657, + "2021": 0.664 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr108", + "Region": "Beni", + "1990": 0.532, + "1991": 0.538, + "1992": 0.539, + "1993": 0.542, + "1994": 0.546, + "1995": 0.55, + "1996": 0.553, + "1997": 0.558, + "1998": 0.563, + "1999": 0.558, + "2000": 0.557, + "2001": 0.555, + "2002": 0.554, + "2003": 0.552, + "2004": 0.557, + "2005": 0.564, + "2006": 0.572, + "2007": 0.578, + "2008": 0.588, + "2009": 0.589, + "2010": 0.591, + "2011": 0.597, + "2012": 0.599, + "2013": 0.606, + "2014": 0.614, + "2015": 0.622, + "2016": 0.628, + "2017": 0.63, + "2018": 0.635, + "2019": 0.636, + "2020": 0.622, + "2021": 0.629 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr101", + "Region": "Chuquisaca", + "1990": 0.51, + "1991": 0.516, + "1992": 0.517, + "1993": 0.519, + "1994": 0.524, + "1995": 0.527, + "1996": 0.531, + "1997": 0.535, + "1998": 0.54, + "1999": 0.543, + "2000": 0.548, + "2001": 0.553, + "2002": 0.559, + "2003": 0.564, + "2004": 0.564, + "2005": 0.567, + "2006": 0.57, + "2007": 0.571, + "2008": 0.576, + "2009": 0.578, + "2010": 0.58, + "2011": 0.586, + "2012": 0.587, + "2013": 0.594, + "2014": 0.602, + "2015": 0.61, + "2016": 0.616, + "2017": 0.618, + "2018": 0.623, + "2019": 0.625, + "2020": 0.611, + "2021": 0.617 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr103", + "Region": "Cochabamba", + "1990": 0.578, + "1991": 0.583, + "1992": 0.584, + "1993": 0.587, + "1994": 0.592, + "1995": 0.596, + "1996": 0.599, + "1997": 0.604, + "1998": 0.609, + "1999": 0.606, + "2000": 0.607, + "2001": 0.606, + "2002": 0.607, + "2003": 0.606, + "2004": 0.608, + "2005": 0.613, + "2006": 0.618, + "2007": 0.622, + "2008": 0.629, + "2009": 0.631, + "2010": 0.633, + "2011": 0.639, + "2012": 0.641, + "2013": 0.648, + "2014": 0.656, + "2015": 0.664, + "2016": 0.671, + "2017": 0.673, + "2018": 0.678, + "2019": 0.68, + "2020": 0.665, + "2021": 0.672 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr102", + "Region": "La Paz", + "1990": 0.568, + "1991": 0.573, + "1992": 0.574, + "1993": 0.577, + "1994": 0.582, + "1995": 0.586, + "1996": 0.589, + "1997": 0.594, + "1998": 0.599, + "1999": 0.594, + "2000": 0.593, + "2001": 0.59, + "2002": 0.589, + "2003": 0.587, + "2004": 0.589, + "2005": 0.594, + "2006": 0.599, + "2007": 0.604, + "2008": 0.611, + "2009": 0.613, + "2010": 0.615, + "2011": 0.621, + "2012": 0.622, + "2013": 0.63, + "2014": 0.637, + "2015": 0.646, + "2016": 0.652, + "2017": 0.654, + "2018": 0.659, + "2019": 0.661, + "2020": 0.646, + "2021": 0.653 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr104", + "Region": "Oruro", + "1990": 0.576, + "1991": 0.581, + "1992": 0.583, + "1993": 0.586, + "1994": 0.59, + "1995": 0.594, + "1996": 0.598, + "1997": 0.602, + "1998": 0.608, + "1999": 0.606, + "2000": 0.607, + "2001": 0.608, + "2002": 0.61, + "2003": 0.61, + "2004": 0.609, + "2005": 0.61, + "2006": 0.611, + "2007": 0.611, + "2008": 0.614, + "2009": 0.616, + "2010": 0.618, + "2011": 0.624, + "2012": 0.625, + "2013": 0.633, + "2014": 0.641, + "2015": 0.649, + "2016": 0.655, + "2017": 0.657, + "2018": 0.662, + "2019": 0.664, + "2020": 0.649, + "2021": 0.656 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr109", + "Region": "Pando", + "1990": 0.535, + "1991": 0.54, + "1992": 0.541, + "1993": 0.544, + "1994": 0.549, + "1995": 0.552, + "1996": 0.556, + "1997": 0.561, + "1998": 0.566, + "1999": 0.562, + "2000": 0.562, + "2001": 0.561, + "2002": 0.561, + "2003": 0.559, + "2004": 0.569, + "2005": 0.582, + "2006": 0.594, + "2007": 0.606, + "2008": 0.62, + "2009": 0.622, + "2010": 0.624, + "2011": 0.63, + "2012": 0.632, + "2013": 0.639, + "2014": 0.647, + "2015": 0.655, + "2016": 0.662, + "2017": 0.664, + "2018": 0.669, + "2019": 0.67, + "2020": 0.656, + "2021": 0.663 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr105", + "Region": "Potosi", + "1990": 0.484, + "1991": 0.49, + "1992": 0.491, + "1993": 0.494, + "1994": 0.498, + "1995": 0.501, + "1996": 0.505, + "1997": 0.509, + "1998": 0.514, + "1999": 0.518, + "2000": 0.525, + "2001": 0.532, + "2002": 0.54, + "2003": 0.547, + "2004": 0.547, + "2005": 0.55, + "2006": 0.553, + "2007": 0.555, + "2008": 0.56, + "2009": 0.561, + "2010": 0.564, + "2011": 0.569, + "2012": 0.571, + "2013": 0.578, + "2014": 0.585, + "2015": 0.593, + "2016": 0.599, + "2017": 0.601, + "2018": 0.606, + "2019": 0.608, + "2020": 0.594, + "2021": 0.6 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr107", + "Region": "Santa Cruz", + "1990": 0.628, + "1991": 0.634, + "1992": 0.635, + "1993": 0.638, + "1994": 0.643, + "1995": 0.647, + "1996": 0.65, + "1997": 0.655, + "1998": 0.661, + "1999": 0.654, + "2000": 0.65, + "2001": 0.645, + "2002": 0.642, + "2003": 0.637, + "2004": 0.643, + "2005": 0.651, + "2006": 0.66, + "2007": 0.667, + "2008": 0.678, + "2009": 0.68, + "2010": 0.682, + "2011": 0.688, + "2012": 0.69, + "2013": 0.698, + "2014": 0.706, + "2015": 0.714, + "2016": 0.721, + "2017": 0.723, + "2018": 0.729, + "2019": 0.73, + "2020": 0.715, + "2021": 0.722 + }, + { + "Country": "Bolivia", + "Continent": "America", + "ISO_Code": "BOL", + "Level": "Subnat", + "GDLCODE": "BOLr106", + "Region": "Tarija", + "1990": 0.598, + "1991": 0.604, + "1992": 0.605, + "1993": 0.608, + "1994": 0.613, + "1995": 0.617, + "1996": 0.62, + "1997": 0.625, + "1998": 0.631, + "1999": 0.629, + "2000": 0.631, + "2001": 0.632, + "2002": 0.635, + "2003": 0.636, + "2004": 0.637, + "2005": 0.64, + "2006": 0.644, + "2007": 0.646, + "2008": 0.653, + "2009": 0.654, + "2010": 0.656, + "2011": 0.662, + "2012": 0.664, + "2013": 0.672, + "2014": 0.68, + "2015": 0.688, + "2016": 0.695, + "2017": 0.697, + "2018": 0.702, + "2019": 0.704, + "2020": 0.689, + "2021": 0.696 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "National", + "GDLCODE": "BIHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.667, + "2001": 0.669, + "2002": 0.675, + "2003": 0.679, + "2004": 0.686, + "2005": 0.691, + "2006": 0.698, + "2007": 0.707, + "2008": 0.716, + "2009": 0.712, + "2010": 0.712, + "2011": 0.714, + "2012": 0.715, + "2013": 0.722, + "2014": 0.725, + "2015": 0.732, + "2016": 0.738, + "2017": 0.743, + "2018": 0.75, + "2019": 0.755, + "2020": 0.751, + "2021": 0.759 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr103", + "Region": "Central Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.686, + "2001": 0.688, + "2002": 0.694, + "2003": 0.698, + "2004": 0.706, + "2005": 0.711, + "2006": 0.717, + "2007": 0.723, + "2008": 0.73, + "2009": 0.723, + "2010": 0.72, + "2011": 0.719, + "2012": 0.72, + "2013": 0.727, + "2014": 0.73, + "2015": 0.737, + "2016": 0.743, + "2017": 0.748, + "2018": 0.755, + "2019": 0.761, + "2020": 0.756, + "2021": 0.765 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr102", + "Region": "Northern Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.648, + "2001": 0.65, + "2002": 0.655, + "2003": 0.659, + "2004": 0.667, + "2005": 0.671, + "2006": 0.678, + "2007": 0.687, + "2008": 0.698, + "2009": 0.695, + "2010": 0.696, + "2011": 0.699, + "2012": 0.7, + "2013": 0.707, + "2014": 0.71, + "2015": 0.717, + "2016": 0.723, + "2017": 0.728, + "2018": 0.735, + "2019": 0.74, + "2020": 0.735, + "2021": 0.744 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr105", + "Region": "Republica Srpska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.657, + "2001": 0.659, + "2002": 0.664, + "2003": 0.668, + "2004": 0.676, + "2005": 0.68, + "2006": 0.687, + "2007": 0.696, + "2008": 0.707, + "2009": 0.704, + "2010": 0.704, + "2011": 0.707, + "2012": 0.708, + "2013": 0.715, + "2014": 0.718, + "2015": 0.725, + "2016": 0.731, + "2017": 0.736, + "2018": 0.743, + "2019": 0.748, + "2020": 0.744, + "2021": 0.752 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr101", + "Region": "Western Bosnia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.689, + "2001": 0.691, + "2002": 0.697, + "2003": 0.701, + "2004": 0.708, + "2005": 0.713, + "2006": 0.72, + "2007": 0.728, + "2008": 0.738, + "2009": 0.733, + "2010": 0.732, + "2011": 0.734, + "2012": 0.735, + "2013": 0.742, + "2014": 0.746, + "2015": 0.753, + "2016": 0.759, + "2017": 0.763, + "2018": 0.771, + "2019": 0.776, + "2020": 0.772, + "2021": 0.78 + }, + { + "Country": "Bosnia and Herzegovina", + "Continent": "Europe", + "ISO_Code": "BIH", + "Level": "Subnat", + "GDLCODE": "BIHr104", + "Region": "Western herzegovina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.666, + "2001": 0.668, + "2002": 0.673, + "2003": 0.677, + "2004": 0.685, + "2005": 0.69, + "2006": 0.696, + "2007": 0.708, + "2008": 0.72, + "2009": 0.72, + "2010": 0.722, + "2011": 0.727, + "2012": 0.728, + "2013": 0.735, + "2014": 0.739, + "2015": 0.746, + "2016": 0.751, + "2017": 0.756, + "2018": 0.763, + "2019": 0.769, + "2020": 0.764, + "2021": 0.773 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "National", + "GDLCODE": "BWAt", + "Region": "Total", + "1990": 0.666, + "1991": 0.678, + "1992": 0.68, + "1993": 0.684, + "1994": 0.671, + "1995": 0.683, + "1996": 0.682, + "1997": 0.693, + "1998": 0.697, + "1999": 0.699, + "2000": 0.697, + "2001": 0.699, + "2002": 0.692, + "2003": 0.701, + "2004": 0.701, + "2005": 0.707, + "2006": 0.717, + "2007": 0.727, + "2008": 0.734, + "2009": 0.724, + "2010": 0.73, + "2011": 0.741, + "2012": 0.746, + "2013": 0.757, + "2014": 0.768, + "2015": 0.759, + "2016": 0.765, + "2017": 0.768, + "2018": 0.769, + "2019": 0.77, + "2020": 0.754, + "2021": 0.768 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr101", + "Region": "Central", + "1990": 0.64, + "1991": 0.651, + "1992": 0.653, + "1993": 0.657, + "1994": 0.644, + "1995": 0.656, + "1996": 0.655, + "1997": 0.666, + "1998": 0.67, + "1999": 0.671, + "2000": 0.669, + "2001": 0.676, + "2002": 0.668, + "2003": 0.677, + "2004": 0.677, + "2005": 0.683, + "2006": 0.692, + "2007": 0.702, + "2008": 0.709, + "2009": 0.699, + "2010": 0.705, + "2011": 0.715, + "2012": 0.723, + "2013": 0.736, + "2014": 0.747, + "2015": 0.738, + "2016": 0.745, + "2017": 0.747, + "2018": 0.749, + "2019": 0.749, + "2020": 0.733, + "2021": 0.748 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr110", + "Region": "Chobe", + "1990": 0.676, + "1991": 0.688, + "1992": 0.689, + "1993": 0.693, + "1994": 0.68, + "1995": 0.692, + "1996": 0.691, + "1997": 0.703, + "1998": 0.707, + "1999": 0.708, + "2000": 0.706, + "2001": 0.703, + "2002": 0.697, + "2003": 0.708, + "2004": 0.709, + "2005": 0.717, + "2006": 0.728, + "2007": 0.74, + "2008": 0.748, + "2009": 0.74, + "2010": 0.748, + "2011": 0.76, + "2012": 0.748, + "2013": 0.741, + "2014": 0.752, + "2015": 0.743, + "2016": 0.749, + "2017": 0.752, + "2018": 0.753, + "2019": 0.754, + "2020": 0.738, + "2021": 0.753 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr102", + "Region": "Ghanzi", + "1990": 0.704, + "1991": 0.716, + "1992": 0.717, + "1993": 0.722, + "1994": 0.708, + "1995": 0.721, + "1996": 0.719, + "1997": 0.731, + "1998": 0.736, + "1999": 0.737, + "2000": 0.735, + "2001": 0.661, + "2002": 0.653, + "2003": 0.661, + "2004": 0.659, + "2005": 0.664, + "2006": 0.673, + "2007": 0.681, + "2008": 0.687, + "2009": 0.676, + "2010": 0.681, + "2011": 0.69, + "2012": 0.704, + "2013": 0.723, + "2014": 0.734, + "2015": 0.725, + "2016": 0.731, + "2017": 0.734, + "2018": 0.735, + "2019": 0.735, + "2020": 0.72, + "2021": 0.734 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr103", + "Region": "Kgalagadi", + "1990": 0.69, + "1991": 0.702, + "1992": 0.704, + "1993": 0.708, + "1994": 0.694, + "1995": 0.707, + "1996": 0.706, + "1997": 0.718, + "1998": 0.722, + "1999": 0.723, + "2000": 0.721, + "2001": 0.663, + "2002": 0.655, + "2003": 0.664, + "2004": 0.663, + "2005": 0.669, + "2006": 0.678, + "2007": 0.688, + "2008": 0.694, + "2009": 0.684, + "2010": 0.69, + "2011": 0.7, + "2012": 0.713, + "2013": 0.731, + "2014": 0.742, + "2015": 0.732, + "2016": 0.739, + "2017": 0.742, + "2018": 0.743, + "2019": 0.743, + "2020": 0.728, + "2021": 0.742 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr104", + "Region": "Kgatleng", + "1990": 0.685, + "1991": 0.697, + "1992": 0.698, + "1993": 0.703, + "1994": 0.689, + "1995": 0.702, + "1996": 0.7, + "1997": 0.712, + "1998": 0.716, + "1999": 0.718, + "2000": 0.716, + "2001": 0.713, + "2002": 0.706, + "2003": 0.715, + "2004": 0.716, + "2005": 0.722, + "2006": 0.733, + "2007": 0.743, + "2008": 0.751, + "2009": 0.741, + "2010": 0.748, + "2011": 0.759, + "2012": 0.762, + "2013": 0.769, + "2014": 0.781, + "2015": 0.771, + "2016": 0.778, + "2017": 0.781, + "2018": 0.782, + "2019": 0.782, + "2020": 0.766, + "2021": 0.781 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr105", + "Region": "Kweneng", + "1990": 0.65, + "1991": 0.662, + "1992": 0.664, + "1993": 0.668, + "1994": 0.655, + "1995": 0.667, + "1996": 0.665, + "1997": 0.677, + "1998": 0.681, + "1999": 0.682, + "2000": 0.68, + "2001": 0.674, + "2002": 0.668, + "2003": 0.678, + "2004": 0.68, + "2005": 0.687, + "2006": 0.699, + "2007": 0.71, + "2008": 0.718, + "2009": 0.71, + "2010": 0.718, + "2011": 0.73, + "2012": 0.733, + "2013": 0.741, + "2014": 0.752, + "2015": 0.743, + "2016": 0.75, + "2017": 0.752, + "2018": 0.754, + "2019": 0.754, + "2020": 0.738, + "2021": 0.753 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr106", + "Region": "North-East", + "1990": 0.694, + "1991": 0.706, + "1992": 0.708, + "1993": 0.712, + "1994": 0.699, + "1995": 0.711, + "1996": 0.71, + "1997": 0.722, + "1998": 0.726, + "1999": 0.727, + "2000": 0.725, + "2001": 0.726, + "2002": 0.719, + "2003": 0.73, + "2004": 0.731, + "2005": 0.739, + "2006": 0.75, + "2007": 0.762, + "2008": 0.77, + "2009": 0.761, + "2010": 0.769, + "2011": 0.781, + "2012": 0.78, + "2013": 0.785, + "2014": 0.796, + "2015": 0.787, + "2016": 0.793, + "2017": 0.796, + "2018": 0.797, + "2019": 0.798, + "2020": 0.782, + "2021": 0.797 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr107", + "Region": "North-West, Ngamiland", + "1990": 0.617, + "1991": 0.628, + "1992": 0.629, + "1993": 0.633, + "1994": 0.621, + "1995": 0.632, + "1996": 0.631, + "1997": 0.643, + "1998": 0.647, + "1999": 0.648, + "2000": 0.646, + "2001": 0.644, + "2002": 0.636, + "2003": 0.645, + "2004": 0.643, + "2005": 0.649, + "2006": 0.658, + "2007": 0.667, + "2008": 0.672, + "2009": 0.662, + "2010": 0.668, + "2011": 0.677, + "2012": 0.689, + "2013": 0.705, + "2014": 0.716, + "2015": 0.707, + "2016": 0.713, + "2017": 0.716, + "2018": 0.717, + "2019": 0.717, + "2020": 0.702, + "2021": 0.716 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr108", + "Region": "South-East", + "1990": 0.74, + "1991": 0.753, + "1992": 0.754, + "1993": 0.759, + "1994": 0.745, + "1995": 0.757, + "1996": 0.756, + "1997": 0.769, + "1998": 0.773, + "1999": 0.774, + "2000": 0.772, + "2001": 0.776, + "2002": 0.767, + "2003": 0.776, + "2004": 0.775, + "2005": 0.781, + "2006": 0.79, + "2007": 0.8, + "2008": 0.807, + "2009": 0.796, + "2010": 0.802, + "2011": 0.812, + "2012": 0.822, + "2013": 0.836, + "2014": 0.848, + "2015": 0.838, + "2016": 0.845, + "2017": 0.848, + "2018": 0.849, + "2019": 0.849, + "2020": 0.833, + "2021": 0.848 + }, + { + "Country": "Botswana", + "Continent": "Africa", + "ISO_Code": "BWA", + "Level": "Subnat", + "GDLCODE": "BWAr109", + "Region": "Southern", + "1990": 0.626, + "1991": 0.638, + "1992": 0.639, + "1993": 0.643, + "1994": 0.63, + "1995": 0.642, + "1996": 0.641, + "1997": 0.652, + "1998": 0.656, + "1999": 0.658, + "2000": 0.656, + "2001": 0.678, + "2002": 0.67, + "2003": 0.678, + "2004": 0.677, + "2005": 0.682, + "2006": 0.691, + "2007": 0.7, + "2008": 0.706, + "2009": 0.696, + "2010": 0.701, + "2011": 0.711, + "2012": 0.723, + "2013": 0.741, + "2014": 0.752, + "2015": 0.742, + "2016": 0.749, + "2017": 0.752, + "2018": 0.753, + "2019": 0.753, + "2020": 0.738, + "2021": 0.752 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "National", + "GDLCODE": "BRAt", + "Region": "Total", + "1990": 0.699, + "1991": 0.699, + "1992": 0.696, + "1993": 0.7, + "1994": 0.704, + "1995": 0.711, + "1996": 0.71, + "1997": 0.712, + "1998": 0.709, + "1999": 0.706, + "2000": 0.714, + "2001": 0.713, + "2002": 0.716, + "2003": 0.716, + "2004": 0.723, + "2005": 0.726, + "2006": 0.731, + "2007": 0.739, + "2008": 0.744, + "2009": 0.743, + "2010": 0.751, + "2011": 0.756, + "2012": 0.758, + "2013": 0.763, + "2014": 0.761, + "2015": 0.755, + "2016": 0.748, + "2017": 0.749, + "2018": 0.749, + "2019": 0.75, + "2020": 0.744, + "2021": 0.75 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr102", + "Region": "Acre", + "1990": 0.594, + "1991": 0.593, + "1992": 0.59, + "1993": 0.594, + "1994": 0.598, + "1995": 0.605, + "1996": 0.604, + "1997": 0.606, + "1998": 0.602, + "1999": 0.6, + "2000": 0.607, + "2001": 0.61, + "2002": 0.616, + "2003": 0.619, + "2004": 0.629, + "2005": 0.636, + "2006": 0.644, + "2007": 0.655, + "2008": 0.663, + "2009": 0.665, + "2010": 0.676, + "2011": 0.681, + "2012": 0.683, + "2013": 0.688, + "2014": 0.686, + "2015": 0.68, + "2016": 0.674, + "2017": 0.675, + "2018": 0.675, + "2019": 0.676, + "2020": 0.67, + "2021": 0.676 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr114", + "Region": "Alagoas", + "1990": 0.61, + "1991": 0.61, + "1992": 0.607, + "1993": 0.611, + "1994": 0.615, + "1995": 0.621, + "1996": 0.621, + "1997": 0.622, + "1998": 0.619, + "1999": 0.616, + "2000": 0.624, + "2001": 0.63, + "2002": 0.638, + "2003": 0.644, + "2004": 0.657, + "2005": 0.666, + "2006": 0.676, + "2007": 0.69, + "2008": 0.701, + "2009": 0.706, + "2010": 0.719, + "2011": 0.725, + "2012": 0.726, + "2013": 0.731, + "2014": 0.73, + "2015": 0.723, + "2016": 0.717, + "2017": 0.718, + "2018": 0.718, + "2019": 0.719, + "2020": 0.713, + "2021": 0.719 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr106", + "Region": "Amapa", + "1990": 0.662, + "1991": 0.661, + "1992": 0.658, + "1993": 0.662, + "1994": 0.666, + "1995": 0.673, + "1996": 0.672, + "1997": 0.674, + "1998": 0.671, + "1999": 0.668, + "2000": 0.676, + "2001": 0.674, + "2002": 0.675, + "2003": 0.674, + "2004": 0.68, + "2005": 0.682, + "2006": 0.686, + "2007": 0.692, + "2008": 0.696, + "2009": 0.694, + "2010": 0.701, + "2011": 0.706, + "2012": 0.708, + "2013": 0.712, + "2014": 0.711, + "2015": 0.705, + "2016": 0.698, + "2017": 0.699, + "2018": 0.699, + "2019": 0.7, + "2020": 0.695, + "2021": 0.701 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr103", + "Region": "Amazonas", + "1990": 0.63, + "1991": 0.629, + "1992": 0.627, + "1993": 0.63, + "1994": 0.634, + "1995": 0.641, + "1996": 0.64, + "1997": 0.642, + "1998": 0.639, + "1999": 0.636, + "2000": 0.644, + "2001": 0.645, + "2002": 0.648, + "2003": 0.65, + "2004": 0.658, + "2005": 0.662, + "2006": 0.668, + "2007": 0.677, + "2008": 0.684, + "2009": 0.684, + "2010": 0.693, + "2011": 0.698, + "2012": 0.7, + "2013": 0.704, + "2014": 0.703, + "2015": 0.697, + "2016": 0.69, + "2017": 0.691, + "2018": 0.691, + "2019": 0.692, + "2020": 0.687, + "2021": 0.693 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr116", + "Region": "Bahia", + "1990": 0.621, + "1991": 0.62, + "1992": 0.617, + "1993": 0.621, + "1994": 0.625, + "1995": 0.632, + "1996": 0.631, + "1997": 0.633, + "1998": 0.629, + "1999": 0.627, + "2000": 0.634, + "2001": 0.639, + "2002": 0.647, + "2003": 0.652, + "2004": 0.664, + "2005": 0.673, + "2006": 0.682, + "2007": 0.695, + "2008": 0.706, + "2009": 0.71, + "2010": 0.723, + "2011": 0.728, + "2012": 0.73, + "2013": 0.735, + "2014": 0.733, + "2015": 0.727, + "2016": 0.72, + "2017": 0.721, + "2018": 0.721, + "2019": 0.723, + "2020": 0.716, + "2021": 0.723 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr110", + "Region": "Ceara", + "1990": 0.619, + "1991": 0.618, + "1992": 0.615, + "1993": 0.619, + "1994": 0.623, + "1995": 0.63, + "1996": 0.629, + "1997": 0.631, + "1998": 0.627, + "1999": 0.625, + "2000": 0.632, + "2001": 0.638, + "2002": 0.646, + "2003": 0.651, + "2004": 0.664, + "2005": 0.672, + "2006": 0.682, + "2007": 0.696, + "2008": 0.707, + "2009": 0.711, + "2010": 0.724, + "2011": 0.729, + "2012": 0.731, + "2013": 0.736, + "2014": 0.735, + "2015": 0.728, + "2016": 0.721, + "2017": 0.723, + "2018": 0.723, + "2019": 0.724, + "2020": 0.718, + "2021": 0.724 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr127", + "Region": "Distrito Federal", + "1990": 0.763, + "1991": 0.763, + "1992": 0.76, + "1993": 0.764, + "1994": 0.768, + "1995": 0.776, + "1996": 0.775, + "1997": 0.777, + "1998": 0.773, + "1999": 0.77, + "2000": 0.778, + "2001": 0.774, + "2002": 0.773, + "2003": 0.77, + "2004": 0.774, + "2005": 0.774, + "2006": 0.775, + "2007": 0.78, + "2008": 0.782, + "2009": 0.778, + "2010": 0.783, + "2011": 0.788, + "2012": 0.79, + "2013": 0.795, + "2014": 0.793, + "2015": 0.786, + "2016": 0.78, + "2017": 0.781, + "2018": 0.781, + "2019": 0.782, + "2020": 0.776, + "2021": 0.782 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr118", + "Region": "Espirito Santo", + "1990": 0.724, + "1991": 0.723, + "1992": 0.72, + "1993": 0.724, + "1994": 0.728, + "1995": 0.736, + "1996": 0.735, + "1997": 0.737, + "1998": 0.733, + "1999": 0.73, + "2000": 0.738, + "2001": 0.736, + "2002": 0.737, + "2003": 0.736, + "2004": 0.742, + "2005": 0.744, + "2006": 0.747, + "2007": 0.754, + "2008": 0.758, + "2009": 0.755, + "2010": 0.762, + "2011": 0.768, + "2012": 0.769, + "2013": 0.774, + "2014": 0.773, + "2015": 0.766, + "2016": 0.759, + "2017": 0.761, + "2018": 0.761, + "2019": 0.762, + "2020": 0.756, + "2021": 0.762 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr126", + "Region": "Goias", + "1990": 0.689, + "1991": 0.688, + "1992": 0.686, + "1993": 0.69, + "1994": 0.693, + "1995": 0.701, + "1996": 0.7, + "1997": 0.702, + "1998": 0.698, + "1999": 0.695, + "2000": 0.703, + "2001": 0.705, + "2002": 0.71, + "2003": 0.712, + "2004": 0.721, + "2005": 0.726, + "2006": 0.733, + "2007": 0.743, + "2008": 0.751, + "2009": 0.752, + "2010": 0.762, + "2011": 0.767, + "2012": 0.769, + "2013": 0.774, + "2014": 0.772, + "2015": 0.766, + "2016": 0.759, + "2017": 0.76, + "2018": 0.76, + "2019": 0.761, + "2020": 0.755, + "2021": 0.761 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr108", + "Region": "Maranhao", + "1990": 0.56, + "1991": 0.559, + "1992": 0.557, + "1993": 0.56, + "1994": 0.564, + "1995": 0.571, + "1996": 0.57, + "1997": 0.571, + "1998": 0.568, + "1999": 0.566, + "2000": 0.573, + "2001": 0.58, + "2002": 0.589, + "2003": 0.596, + "2004": 0.61, + "2005": 0.62, + "2006": 0.632, + "2007": 0.646, + "2008": 0.658, + "2009": 0.664, + "2010": 0.679, + "2011": 0.684, + "2012": 0.685, + "2013": 0.69, + "2014": 0.689, + "2015": 0.682, + "2016": 0.676, + "2017": 0.677, + "2018": 0.677, + "2019": 0.678, + "2020": 0.673, + "2021": 0.678 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr125", + "Region": "Mato Grosso", + "1990": 0.656, + "1991": 0.655, + "1992": 0.653, + "1993": 0.656, + "1994": 0.66, + "1995": 0.667, + "1996": 0.667, + "1997": 0.668, + "1998": 0.665, + "1999": 0.662, + "2000": 0.67, + "2001": 0.674, + "2002": 0.68, + "2003": 0.684, + "2004": 0.695, + "2005": 0.702, + "2006": 0.71, + "2007": 0.722, + "2008": 0.731, + "2009": 0.734, + "2010": 0.746, + "2011": 0.751, + "2012": 0.753, + "2013": 0.758, + "2014": 0.757, + "2015": 0.75, + "2016": 0.743, + "2017": 0.744, + "2018": 0.744, + "2019": 0.746, + "2020": 0.739, + "2021": 0.746 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr124", + "Region": "Mato Grosso do Sul", + "1990": 0.688, + "1991": 0.688, + "1992": 0.685, + "1993": 0.689, + "1994": 0.693, + "1995": 0.7, + "1996": 0.699, + "1997": 0.701, + "1998": 0.697, + "1999": 0.695, + "2000": 0.703, + "2001": 0.704, + "2002": 0.708, + "2003": 0.709, + "2004": 0.718, + "2005": 0.722, + "2006": 0.729, + "2007": 0.738, + "2008": 0.745, + "2009": 0.745, + "2010": 0.755, + "2011": 0.761, + "2012": 0.762, + "2013": 0.767, + "2014": 0.766, + "2015": 0.759, + "2016": 0.752, + "2017": 0.754, + "2018": 0.754, + "2019": 0.755, + "2020": 0.749, + "2021": 0.755 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr117", + "Region": "Minas Gerais", + "1990": 0.717, + "1991": 0.716, + "1992": 0.714, + "1993": 0.718, + "1994": 0.722, + "1995": 0.729, + "1996": 0.728, + "1997": 0.73, + "1998": 0.726, + "1999": 0.724, + "2000": 0.732, + "2001": 0.73, + "2002": 0.732, + "2003": 0.731, + "2004": 0.737, + "2005": 0.74, + "2006": 0.744, + "2007": 0.751, + "2008": 0.756, + "2009": 0.753, + "2010": 0.761, + "2011": 0.766, + "2012": 0.768, + "2013": 0.773, + "2014": 0.771, + "2015": 0.765, + "2016": 0.758, + "2017": 0.759, + "2018": 0.759, + "2019": 0.76, + "2020": 0.754, + "2021": 0.76 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr105", + "Region": "Para", + "1990": 0.592, + "1991": 0.591, + "1992": 0.589, + "1993": 0.592, + "1994": 0.596, + "1995": 0.603, + "1996": 0.602, + "1997": 0.604, + "1998": 0.6, + "1999": 0.598, + "2000": 0.605, + "2001": 0.609, + "2002": 0.614, + "2003": 0.618, + "2004": 0.628, + "2005": 0.635, + "2006": 0.643, + "2007": 0.654, + "2008": 0.663, + "2009": 0.666, + "2010": 0.677, + "2011": 0.682, + "2012": 0.683, + "2013": 0.688, + "2014": 0.687, + "2015": 0.68, + "2016": 0.674, + "2017": 0.675, + "2018": 0.675, + "2019": 0.676, + "2020": 0.671, + "2021": 0.676 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr112", + "Region": "Paraiba", + "1990": 0.631, + "1991": 0.63, + "1992": 0.627, + "1993": 0.631, + "1994": 0.635, + "1995": 0.642, + "1996": 0.641, + "1997": 0.643, + "1998": 0.639, + "1999": 0.637, + "2000": 0.644, + "2001": 0.649, + "2002": 0.657, + "2003": 0.662, + "2004": 0.674, + "2005": 0.682, + "2006": 0.692, + "2007": 0.705, + "2008": 0.715, + "2009": 0.719, + "2010": 0.732, + "2011": 0.737, + "2012": 0.739, + "2013": 0.744, + "2014": 0.743, + "2015": 0.736, + "2016": 0.729, + "2017": 0.731, + "2018": 0.731, + "2019": 0.732, + "2020": 0.726, + "2021": 0.732 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr121", + "Region": "Parana", + "1990": 0.726, + "1991": 0.725, + "1992": 0.722, + "1993": 0.727, + "1994": 0.731, + "1995": 0.738, + "1996": 0.737, + "1997": 0.739, + "1998": 0.735, + "1999": 0.733, + "2000": 0.741, + "2001": 0.739, + "2002": 0.74, + "2003": 0.739, + "2004": 0.745, + "2005": 0.747, + "2006": 0.751, + "2007": 0.758, + "2008": 0.762, + "2009": 0.76, + "2010": 0.767, + "2011": 0.772, + "2012": 0.774, + "2013": 0.779, + "2014": 0.778, + "2015": 0.771, + "2016": 0.764, + "2017": 0.765, + "2018": 0.765, + "2019": 0.767, + "2020": 0.76, + "2021": 0.767 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr113", + "Region": "Pernambuco", + "1990": 0.643, + "1991": 0.643, + "1992": 0.64, + "1993": 0.644, + "1994": 0.647, + "1995": 0.655, + "1996": 0.654, + "1997": 0.656, + "1998": 0.652, + "1999": 0.649, + "2000": 0.657, + "2001": 0.661, + "2002": 0.667, + "2003": 0.671, + "2004": 0.681, + "2005": 0.688, + "2006": 0.697, + "2007": 0.708, + "2008": 0.717, + "2009": 0.72, + "2010": 0.732, + "2011": 0.737, + "2012": 0.738, + "2013": 0.743, + "2014": 0.742, + "2015": 0.735, + "2016": 0.729, + "2017": 0.73, + "2018": 0.73, + "2019": 0.731, + "2020": 0.725, + "2021": 0.731 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr109", + "Region": "Piaui", + "1990": 0.588, + "1991": 0.587, + "1992": 0.584, + "1993": 0.588, + "1994": 0.592, + "1995": 0.598, + "1996": 0.598, + "1997": 0.599, + "1998": 0.596, + "1999": 0.594, + "2000": 0.601, + "2001": 0.607, + "2002": 0.616, + "2003": 0.623, + "2004": 0.636, + "2005": 0.645, + "2006": 0.656, + "2007": 0.67, + "2008": 0.682, + "2009": 0.687, + "2010": 0.702, + "2011": 0.707, + "2012": 0.708, + "2013": 0.713, + "2014": 0.712, + "2015": 0.705, + "2016": 0.699, + "2017": 0.7, + "2018": 0.7, + "2019": 0.701, + "2020": 0.695, + "2021": 0.701 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr119", + "Region": "Rio de Janeiro", + "1990": 0.741, + "1991": 0.741, + "1992": 0.738, + "1993": 0.742, + "1994": 0.746, + "1995": 0.754, + "1996": 0.753, + "1997": 0.755, + "1998": 0.751, + "1999": 0.748, + "2000": 0.756, + "2001": 0.753, + "2002": 0.752, + "2003": 0.749, + "2004": 0.753, + "2005": 0.753, + "2006": 0.755, + "2007": 0.76, + "2008": 0.763, + "2009": 0.758, + "2010": 0.764, + "2011": 0.769, + "2012": 0.771, + "2013": 0.775, + "2014": 0.774, + "2015": 0.767, + "2016": 0.761, + "2017": 0.762, + "2018": 0.762, + "2019": 0.763, + "2020": 0.757, + "2021": 0.763 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr111", + "Region": "Rio Grande do Norte", + "1990": 0.642, + "1991": 0.641, + "1992": 0.639, + "1993": 0.642, + "1994": 0.646, + "1995": 0.653, + "1996": 0.652, + "1997": 0.654, + "1998": 0.651, + "1999": 0.648, + "2000": 0.656, + "2001": 0.661, + "2002": 0.669, + "2003": 0.674, + "2004": 0.687, + "2005": 0.695, + "2006": 0.706, + "2007": 0.719, + "2008": 0.73, + "2009": 0.734, + "2010": 0.747, + "2011": 0.753, + "2012": 0.754, + "2013": 0.759, + "2014": 0.758, + "2015": 0.751, + "2016": 0.744, + "2017": 0.746, + "2018": 0.746, + "2019": 0.747, + "2020": 0.741, + "2021": 0.747 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr123", + "Region": "Rio Grande do Sul", + "1990": 0.738, + "1991": 0.737, + "1992": 0.734, + "1993": 0.738, + "1994": 0.742, + "1995": 0.75, + "1996": 0.749, + "1997": 0.751, + "1998": 0.747, + "1999": 0.744, + "2000": 0.752, + "2001": 0.749, + "2002": 0.749, + "2003": 0.747, + "2004": 0.752, + "2005": 0.752, + "2006": 0.755, + "2007": 0.761, + "2008": 0.764, + "2009": 0.76, + "2010": 0.766, + "2011": 0.771, + "2012": 0.773, + "2013": 0.778, + "2014": 0.777, + "2015": 0.77, + "2016": 0.763, + "2017": 0.764, + "2018": 0.764, + "2019": 0.765, + "2020": 0.759, + "2021": 0.765 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr101", + "Region": "Rondonia", + "1990": 0.621, + "1991": 0.621, + "1992": 0.618, + "1993": 0.622, + "1994": 0.625, + "1995": 0.632, + "1996": 0.632, + "1997": 0.633, + "1998": 0.63, + "1999": 0.627, + "2000": 0.635, + "2001": 0.638, + "2002": 0.644, + "2003": 0.648, + "2004": 0.658, + "2005": 0.665, + "2006": 0.673, + "2007": 0.685, + "2008": 0.694, + "2009": 0.696, + "2010": 0.708, + "2011": 0.713, + "2012": 0.714, + "2013": 0.719, + "2014": 0.718, + "2015": 0.711, + "2016": 0.705, + "2017": 0.706, + "2018": 0.706, + "2019": 0.707, + "2020": 0.701, + "2021": 0.707 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr104", + "Region": "Roraima", + "1990": 0.633, + "1991": 0.632, + "1992": 0.629, + "1993": 0.633, + "1994": 0.637, + "1995": 0.644, + "1996": 0.643, + "1997": 0.645, + "1998": 0.641, + "1999": 0.639, + "2000": 0.646, + "2001": 0.65, + "2002": 0.655, + "2003": 0.659, + "2004": 0.669, + "2005": 0.676, + "2006": 0.684, + "2007": 0.695, + "2008": 0.704, + "2009": 0.707, + "2010": 0.718, + "2011": 0.723, + "2012": 0.725, + "2013": 0.73, + "2014": 0.728, + "2015": 0.722, + "2016": 0.715, + "2017": 0.716, + "2018": 0.716, + "2019": 0.718, + "2020": 0.712, + "2021": 0.718 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr122", + "Region": "Santa Catarina", + "1990": 0.749, + "1991": 0.748, + "1992": 0.745, + "1993": 0.749, + "1994": 0.753, + "1995": 0.761, + "1996": 0.76, + "1997": 0.762, + "1998": 0.758, + "1999": 0.755, + "2000": 0.764, + "2001": 0.76, + "2002": 0.759, + "2003": 0.756, + "2004": 0.76, + "2005": 0.76, + "2006": 0.762, + "2007": 0.767, + "2008": 0.77, + "2009": 0.765, + "2010": 0.771, + "2011": 0.776, + "2012": 0.778, + "2013": 0.782, + "2014": 0.781, + "2015": 0.774, + "2016": 0.768, + "2017": 0.769, + "2018": 0.769, + "2019": 0.77, + "2020": 0.764, + "2021": 0.77 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr120", + "Region": "Sao Paulo", + "1990": 0.763, + "1991": 0.762, + "1992": 0.759, + "1993": 0.763, + "1994": 0.767, + "1995": 0.775, + "1996": 0.774, + "1997": 0.776, + "1998": 0.772, + "1999": 0.769, + "2000": 0.778, + "2001": 0.773, + "2002": 0.772, + "2003": 0.768, + "2004": 0.772, + "2005": 0.771, + "2006": 0.772, + "2007": 0.777, + "2008": 0.779, + "2009": 0.774, + "2010": 0.778, + "2011": 0.784, + "2012": 0.785, + "2013": 0.79, + "2014": 0.789, + "2015": 0.782, + "2016": 0.775, + "2017": 0.777, + "2018": 0.777, + "2019": 0.778, + "2020": 0.771, + "2021": 0.778 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr115", + "Region": "Sergipe", + "1990": 0.643, + "1991": 0.643, + "1992": 0.64, + "1993": 0.644, + "1994": 0.648, + "1995": 0.655, + "1996": 0.654, + "1997": 0.656, + "1998": 0.652, + "1999": 0.65, + "2000": 0.657, + "2001": 0.662, + "2002": 0.669, + "2003": 0.673, + "2004": 0.685, + "2005": 0.693, + "2006": 0.702, + "2007": 0.714, + "2008": 0.724, + "2009": 0.728, + "2010": 0.74, + "2011": 0.746, + "2012": 0.747, + "2013": 0.752, + "2014": 0.751, + "2015": 0.744, + "2016": 0.737, + "2017": 0.739, + "2018": 0.739, + "2019": 0.74, + "2020": 0.734, + "2021": 0.74 + }, + { + "Country": "Brazil", + "Continent": "America", + "ISO_Code": "BRA", + "Level": "Subnat", + "GDLCODE": "BRAr107", + "Region": "Tocantins", + "1990": 0.581, + "1991": 0.58, + "1992": 0.577, + "1993": 0.581, + "1994": 0.585, + "1995": 0.591, + "1996": 0.591, + "1997": 0.592, + "1998": 0.589, + "1999": 0.587, + "2000": 0.594, + "2001": 0.603, + "2002": 0.616, + "2003": 0.625, + "2004": 0.642, + "2005": 0.655, + "2006": 0.669, + "2007": 0.686, + "2008": 0.701, + "2009": 0.71, + "2010": 0.727, + "2011": 0.732, + "2012": 0.734, + "2013": 0.739, + "2014": 0.738, + "2015": 0.731, + "2016": 0.724, + "2017": 0.725, + "2018": 0.726, + "2019": 0.727, + "2020": 0.721, + "2021": 0.727 + }, + { + "Country": "Brunei Darussalam", + "Continent": "Asia/Pacific", + "ISO_Code": "BRN", + "Level": "National", + "GDLCODE": "BRNt", + "Region": "Total", + "1990": 0.993, + "1991": 0.993, + "1992": 0.996, + "1993": 0.992, + "1994": 0.993, + "1995": 0.995, + "1996": 0.996, + "1997": 0.99, + "1998": 0.986, + "1999": 0.987, + "2000": 0.988, + "2001": 0.989, + "2002": 0.992, + "2003": 0.993, + "2004": 0.991, + "2005": 0.99, + "2006": 0.994, + "2007": 0.993, + "2008": 0.988, + "2009": 0.984, + "2010": 0.984, + "2011": 0.984, + "2012": 0.984, + "2013": 0.981, + "2014": 0.977, + "2015": 0.982, + "2016": 0.978, + "2017": 0.977, + "2018": 0.969, + "2019": 0.976, + "2020": 0.979, + "2021": 0.977 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "National", + "GDLCODE": "BGRt", + "Region": "Total", + "1990": 0.721, + "1991": 0.707, + "1992": 0.709, + "1993": 0.708, + "1994": 0.711, + "1995": 0.715, + "1996": 0.722, + "1997": 0.701, + "1998": 0.709, + "1999": 0.697, + "2000": 0.703, + "2001": 0.715, + "2002": 0.73, + "2003": 0.738, + "2004": 0.748, + "2005": 0.758, + "2006": 0.766, + "2007": 0.769, + "2008": 0.783, + "2009": 0.781, + "2010": 0.786, + "2011": 0.788, + "2012": 0.793, + "2013": 0.792, + "2014": 0.796, + "2015": 0.799, + "2016": 0.804, + "2017": 0.808, + "2018": 0.812, + "2019": 0.82, + "2020": 0.815, + "2021": 0.822 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr102", + "Region": "Severen tsentralen", + "1990": 0.677, + "1991": 0.663, + "1992": 0.665, + "1993": 0.664, + "1994": 0.667, + "1995": 0.67, + "1996": 0.677, + "1997": 0.657, + "1998": 0.665, + "1999": 0.653, + "2000": 0.659, + "2001": 0.684, + "2002": 0.702, + "2003": 0.695, + "2004": 0.702, + "2005": 0.712, + "2006": 0.709, + "2007": 0.709, + "2008": 0.72, + "2009": 0.711, + "2010": 0.711, + "2011": 0.721, + "2012": 0.73, + "2013": 0.733, + "2014": 0.741, + "2015": 0.735, + "2016": 0.741, + "2017": 0.742, + "2018": 0.746, + "2019": 0.753, + "2020": 0.748, + "2021": 0.755 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr103", + "Region": "Severoiztochen", + "1990": 0.713, + "1991": 0.699, + "1992": 0.701, + "1993": 0.7, + "1994": 0.703, + "1995": 0.707, + "1996": 0.714, + "1997": 0.693, + "1998": 0.701, + "1999": 0.689, + "2000": 0.695, + "2001": 0.695, + "2002": 0.712, + "2003": 0.714, + "2004": 0.726, + "2005": 0.733, + "2006": 0.74, + "2007": 0.741, + "2008": 0.757, + "2009": 0.749, + "2010": 0.749, + "2011": 0.754, + "2012": 0.761, + "2013": 0.76, + "2014": 0.767, + "2015": 0.764, + "2016": 0.768, + "2017": 0.769, + "2018": 0.775, + "2019": 0.777, + "2020": 0.772, + "2021": 0.779 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr101", + "Region": "Severozapaden", + "1990": 0.702, + "1991": 0.688, + "1992": 0.69, + "1993": 0.689, + "1994": 0.692, + "1995": 0.696, + "1996": 0.703, + "1997": 0.681, + "1998": 0.69, + "1999": 0.678, + "2000": 0.684, + "2001": 0.695, + "2002": 0.702, + "2003": 0.695, + "2004": 0.702, + "2005": 0.704, + "2006": 0.702, + "2007": 0.697, + "2008": 0.709, + "2009": 0.701, + "2010": 0.7, + "2011": 0.712, + "2012": 0.712, + "2013": 0.71, + "2014": 0.72, + "2015": 0.715, + "2016": 0.718, + "2017": 0.727, + "2018": 0.74, + "2019": 0.738, + "2020": 0.734, + "2021": 0.74 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr104", + "Region": "Yugoiztochen", + "1990": 0.724, + "1991": 0.71, + "1992": 0.712, + "1993": 0.711, + "1994": 0.714, + "1995": 0.718, + "1996": 0.725, + "1997": 0.703, + "1998": 0.712, + "1999": 0.7, + "2000": 0.706, + "2001": 0.705, + "2002": 0.712, + "2003": 0.722, + "2004": 0.733, + "2005": 0.746, + "2006": 0.74, + "2007": 0.731, + "2008": 0.748, + "2009": 0.749, + "2010": 0.753, + "2011": 0.754, + "2012": 0.761, + "2013": 0.763, + "2014": 0.771, + "2015": 0.767, + "2016": 0.783, + "2017": 0.786, + "2018": 0.777, + "2019": 0.772, + "2020": 0.767, + "2021": 0.774 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr105", + "Region": "Yugozapaden", + "1990": 0.779, + "1991": 0.764, + "1992": 0.766, + "1993": 0.765, + "1994": 0.768, + "1995": 0.772, + "1996": 0.78, + "1997": 0.757, + "1998": 0.766, + "1999": 0.753, + "2000": 0.76, + "2001": 0.777, + "2002": 0.799, + "2003": 0.808, + "2004": 0.819, + "2005": 0.829, + "2006": 0.846, + "2007": 0.858, + "2008": 0.871, + "2009": 0.872, + "2010": 0.88, + "2011": 0.875, + "2012": 0.877, + "2013": 0.873, + "2014": 0.877, + "2015": 0.882, + "2016": 0.886, + "2017": 0.888, + "2018": 0.892, + "2019": 0.906, + "2020": 0.901, + "2021": 0.909 + }, + { + "Country": "Bulgaria", + "Continent": "Europe", + "ISO_Code": "BGR", + "Level": "Subnat", + "GDLCODE": "BGRr106", + "Region": "Yuzhen tsentralen", + "1990": 0.663, + "1991": 0.649, + "1992": 0.651, + "1993": 0.65, + "1994": 0.653, + "1995": 0.656, + "1996": 0.663, + "1997": 0.643, + "1998": 0.651, + "1999": 0.639, + "2000": 0.645, + "2001": 0.661, + "2002": 0.67, + "2003": 0.685, + "2004": 0.702, + "2005": 0.712, + "2006": 0.716, + "2007": 0.709, + "2008": 0.72, + "2009": 0.722, + "2010": 0.721, + "2011": 0.726, + "2012": 0.734, + "2013": 0.733, + "2014": 0.729, + "2015": 0.739, + "2016": 0.745, + "2017": 0.748, + "2018": 0.752, + "2019": 0.761, + "2020": 0.757, + "2021": 0.764 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "National", + "GDLCODE": "BFAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.387, + "2001": 0.392, + "2002": 0.393, + "2003": 0.4, + "2004": 0.403, + "2005": 0.41, + "2006": 0.416, + "2007": 0.418, + "2008": 0.421, + "2009": 0.42, + "2010": 0.425, + "2011": 0.428, + "2012": 0.436, + "2013": 0.44, + "2014": 0.439, + "2015": 0.44, + "2016": 0.444, + "2017": 0.45, + "2018": 0.456, + "2019": 0.457, + "2020": 0.455, + "2021": 0.461 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr101", + "Region": "Boucle de Mouhoun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.361, + "2001": 0.365, + "2002": 0.366, + "2003": 0.372, + "2004": 0.375, + "2005": 0.383, + "2006": 0.388, + "2007": 0.39, + "2008": 0.394, + "2009": 0.393, + "2010": 0.398, + "2011": 0.401, + "2012": 0.408, + "2013": 0.412, + "2014": 0.411, + "2015": 0.412, + "2016": 0.416, + "2017": 0.422, + "2018": 0.428, + "2019": 0.428, + "2020": 0.427, + "2021": 0.433 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr102", + "Region": "Cascades", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.399, + "2001": 0.406, + "2002": 0.41, + "2003": 0.419, + "2004": 0.421, + "2005": 0.429, + "2006": 0.434, + "2007": 0.436, + "2008": 0.439, + "2009": 0.437, + "2010": 0.442, + "2011": 0.446, + "2012": 0.453, + "2013": 0.457, + "2014": 0.456, + "2015": 0.457, + "2016": 0.462, + "2017": 0.468, + "2018": 0.474, + "2019": 0.474, + "2020": 0.473, + "2021": 0.479 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr103", + "Region": "Centre (incl Ouagadougou)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.496, + "2001": 0.509, + "2002": 0.519, + "2003": 0.534, + "2004": 0.534, + "2005": 0.54, + "2006": 0.543, + "2007": 0.542, + "2008": 0.544, + "2009": 0.539, + "2010": 0.542, + "2011": 0.546, + "2012": 0.554, + "2013": 0.558, + "2014": 0.557, + "2015": 0.558, + "2016": 0.563, + "2017": 0.569, + "2018": 0.576, + "2019": 0.577, + "2020": 0.575, + "2021": 0.582 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr104", + "Region": "Centre-Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.388, + "2001": 0.39, + "2002": 0.389, + "2003": 0.393, + "2004": 0.396, + "2005": 0.404, + "2006": 0.41, + "2007": 0.412, + "2008": 0.416, + "2009": 0.415, + "2010": 0.42, + "2011": 0.423, + "2012": 0.43, + "2013": 0.434, + "2014": 0.434, + "2015": 0.435, + "2016": 0.439, + "2017": 0.445, + "2018": 0.451, + "2019": 0.451, + "2020": 0.45, + "2021": 0.456 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr105", + "Region": "Centre-Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.366, + "2001": 0.368, + "2002": 0.366, + "2003": 0.37, + "2004": 0.374, + "2005": 0.384, + "2006": 0.391, + "2007": 0.395, + "2008": 0.4, + "2009": 0.401, + "2010": 0.407, + "2011": 0.411, + "2012": 0.418, + "2013": 0.421, + "2014": 0.421, + "2015": 0.422, + "2016": 0.426, + "2017": 0.432, + "2018": 0.438, + "2019": 0.438, + "2020": 0.437, + "2021": 0.443 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr106", + "Region": "Centre-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.381, + "2001": 0.385, + "2002": 0.384, + "2003": 0.389, + "2004": 0.391, + "2005": 0.399, + "2006": 0.405, + "2007": 0.406, + "2008": 0.41, + "2009": 0.408, + "2010": 0.413, + "2011": 0.417, + "2012": 0.424, + "2013": 0.427, + "2014": 0.427, + "2015": 0.428, + "2016": 0.432, + "2017": 0.438, + "2018": 0.444, + "2019": 0.444, + "2020": 0.443, + "2021": 0.449 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr107", + "Region": "Centre-Sud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.381, + "2001": 0.385, + "2002": 0.385, + "2003": 0.391, + "2004": 0.392, + "2005": 0.399, + "2006": 0.403, + "2007": 0.403, + "2008": 0.405, + "2009": 0.403, + "2010": 0.406, + "2011": 0.41, + "2012": 0.417, + "2013": 0.421, + "2014": 0.42, + "2015": 0.421, + "2016": 0.425, + "2017": 0.431, + "2018": 0.437, + "2019": 0.437, + "2020": 0.436, + "2021": 0.442 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr108", + "Region": "Est", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.353, + "2001": 0.354, + "2002": 0.352, + "2003": 0.355, + "2004": 0.358, + "2005": 0.366, + "2006": 0.372, + "2007": 0.374, + "2008": 0.378, + "2009": 0.377, + "2010": 0.382, + "2011": 0.385, + "2012": 0.392, + "2013": 0.396, + "2014": 0.395, + "2015": 0.396, + "2016": 0.4, + "2017": 0.406, + "2018": 0.412, + "2019": 0.412, + "2020": 0.411, + "2021": 0.416 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr109", + "Region": "Hauts Bassins", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.418, + "2001": 0.424, + "2002": 0.426, + "2003": 0.434, + "2004": 0.436, + "2005": 0.444, + "2006": 0.45, + "2007": 0.451, + "2008": 0.455, + "2009": 0.453, + "2010": 0.458, + "2011": 0.462, + "2012": 0.469, + "2013": 0.473, + "2014": 0.472, + "2015": 0.473, + "2016": 0.478, + "2017": 0.484, + "2018": 0.49, + "2019": 0.491, + "2020": 0.489, + "2021": 0.495 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr110", + "Region": "Nord", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.373, + "2001": 0.375, + "2002": 0.373, + "2003": 0.377, + "2004": 0.382, + "2005": 0.391, + "2006": 0.399, + "2007": 0.402, + "2008": 0.408, + "2009": 0.409, + "2010": 0.416, + "2011": 0.419, + "2012": 0.426, + "2013": 0.43, + "2014": 0.429, + "2015": 0.43, + "2016": 0.434, + "2017": 0.44, + "2018": 0.446, + "2019": 0.447, + "2020": 0.446, + "2021": 0.451 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr111", + "Region": "Plateau Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.37, + "2001": 0.372, + "2002": 0.37, + "2003": 0.373, + "2004": 0.379, + "2005": 0.39, + "2006": 0.399, + "2007": 0.404, + "2008": 0.411, + "2009": 0.413, + "2010": 0.421, + "2011": 0.424, + "2012": 0.432, + "2013": 0.435, + "2014": 0.435, + "2015": 0.436, + "2016": 0.44, + "2017": 0.446, + "2018": 0.452, + "2019": 0.453, + "2020": 0.451, + "2021": 0.457 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr112", + "Region": "Sahel", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.336, + "2001": 0.339, + "2002": 0.338, + "2003": 0.342, + "2004": 0.342, + "2005": 0.347, + "2006": 0.35, + "2007": 0.35, + "2008": 0.351, + "2009": 0.348, + "2010": 0.35, + "2011": 0.354, + "2012": 0.36, + "2013": 0.364, + "2014": 0.363, + "2015": 0.364, + "2016": 0.368, + "2017": 0.374, + "2018": 0.38, + "2019": 0.38, + "2020": 0.379, + "2021": 0.384 + }, + { + "Country": "Burkina Faso", + "Continent": "Africa", + "ISO_Code": "BFA", + "Level": "Subnat", + "GDLCODE": "BFAr113", + "Region": "Sud-Ouest", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.349, + "2001": 0.352, + "2002": 0.351, + "2003": 0.355, + "2004": 0.358, + "2005": 0.366, + "2006": 0.372, + "2007": 0.374, + "2008": 0.378, + "2009": 0.377, + "2010": 0.382, + "2011": 0.385, + "2012": 0.392, + "2013": 0.396, + "2014": 0.395, + "2015": 0.396, + "2016": 0.401, + "2017": 0.406, + "2018": 0.412, + "2019": 0.413, + "2020": 0.411, + "2021": 0.417 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "National", + "GDLCODE": "BDIt", + "Region": "Total", + "1990": 0.366, + "1991": 0.371, + "1992": 0.37, + "1993": 0.357, + "1994": 0.349, + "1995": 0.336, + "1996": 0.32, + "1997": 0.319, + "1998": 0.326, + "1999": 0.321, + "2000": 0.322, + "2001": 0.317, + "2002": 0.319, + "2003": 0.312, + "2004": 0.313, + "2005": 0.311, + "2006": 0.316, + "2007": 0.316, + "2008": 0.319, + "2009": 0.319, + "2010": 0.322, + "2011": 0.323, + "2012": 0.325, + "2013": 0.328, + "2014": 0.329, + "2015": 0.319, + "2016": 0.313, + "2017": 0.309, + "2018": 0.307, + "2019": 0.305, + "2020": 0.301, + "2021": 0.301 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr103", + "Region": "East (Cankuzo, Rutana, Ruyigi )", + "1990": 0.348, + "1991": 0.354, + "1992": 0.353, + "1993": 0.339, + "1994": 0.332, + "1995": 0.319, + "1996": 0.303, + "1997": 0.302, + "1998": 0.308, + "1999": 0.304, + "2000": 0.305, + "2001": 0.3, + "2002": 0.302, + "2003": 0.295, + "2004": 0.296, + "2005": 0.295, + "2006": 0.301, + "2007": 0.303, + "2008": 0.307, + "2009": 0.309, + "2010": 0.314, + "2011": 0.314, + "2012": 0.316, + "2013": 0.318, + "2014": 0.319, + "2015": 0.308, + "2016": 0.302, + "2017": 0.297, + "2018": 0.295, + "2019": 0.293, + "2020": 0.29, + "2021": 0.289 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr105", + "Region": "Middle (Gitega, Karuzi, Muramvya, Mwaro)", + "1990": 0.359, + "1991": 0.365, + "1992": 0.364, + "1993": 0.351, + "1994": 0.343, + "1995": 0.33, + "1996": 0.314, + "1997": 0.313, + "1998": 0.319, + "1999": 0.315, + "2000": 0.316, + "2001": 0.311, + "2002": 0.313, + "2003": 0.306, + "2004": 0.307, + "2005": 0.306, + "2006": 0.31, + "2007": 0.31, + "2008": 0.312, + "2009": 0.311, + "2010": 0.314, + "2011": 0.315, + "2012": 0.318, + "2013": 0.322, + "2014": 0.323, + "2015": 0.313, + "2016": 0.308, + "2017": 0.304, + "2018": 0.302, + "2019": 0.3, + "2020": 0.296, + "2021": 0.295 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr101", + "Region": "North (Kayanza, Kirundo, Muyinga, Ngozi)", + "1990": 0.362, + "1991": 0.367, + "1992": 0.366, + "1993": 0.353, + "1994": 0.345, + "1995": 0.332, + "1996": 0.316, + "1997": 0.316, + "1998": 0.322, + "1999": 0.317, + "2000": 0.318, + "2001": 0.313, + "2002": 0.315, + "2003": 0.308, + "2004": 0.309, + "2005": 0.308, + "2006": 0.31, + "2007": 0.307, + "2008": 0.307, + "2009": 0.304, + "2010": 0.305, + "2011": 0.305, + "2012": 0.307, + "2013": 0.309, + "2014": 0.309, + "2015": 0.298, + "2016": 0.292, + "2017": 0.287, + "2018": 0.285, + "2019": 0.283, + "2020": 0.279, + "2021": 0.279 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr102", + "Region": "South (Bururi, Makamba)", + "1990": 0.364, + "1991": 0.37, + "1992": 0.369, + "1993": 0.355, + "1994": 0.347, + "1995": 0.334, + "1996": 0.318, + "1997": 0.318, + "1998": 0.324, + "1999": 0.32, + "2000": 0.32, + "2001": 0.315, + "2002": 0.317, + "2003": 0.31, + "2004": 0.311, + "2005": 0.31, + "2006": 0.315, + "2007": 0.317, + "2008": 0.32, + "2009": 0.321, + "2010": 0.325, + "2011": 0.327, + "2012": 0.331, + "2013": 0.335, + "2014": 0.338, + "2015": 0.329, + "2016": 0.324, + "2017": 0.321, + "2018": 0.32, + "2019": 0.318, + "2020": 0.314, + "2021": 0.313 + }, + { + "Country": "Burundi", + "Continent": "Africa", + "ISO_Code": "BDI", + "Level": "Subnat", + "GDLCODE": "BDIr104", + "Region": "West (Bubanza, Buja Rural, Cibitoke, Mairie de Bujumbura)", + "1990": 0.386, + "1991": 0.392, + "1992": 0.391, + "1993": 0.377, + "1994": 0.369, + "1995": 0.356, + "1996": 0.339, + "1997": 0.339, + "1998": 0.345, + "1999": 0.341, + "2000": 0.341, + "2001": 0.336, + "2002": 0.338, + "2003": 0.331, + "2004": 0.332, + "2005": 0.331, + "2006": 0.338, + "2007": 0.341, + "2008": 0.345, + "2009": 0.347, + "2010": 0.353, + "2011": 0.354, + "2012": 0.358, + "2013": 0.361, + "2014": 0.363, + "2015": 0.353, + "2016": 0.347, + "2017": 0.344, + "2018": 0.342, + "2019": 0.34, + "2020": 0.336, + "2021": 0.335 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "National", + "GDLCODE": "KHMt", + "Region": "Total", + "1990": 0.349, + "1991": 0.354, + "1992": 0.359, + "1993": 0.362, + "1994": 0.363, + "1995": 0.372, + "1996": 0.375, + "1997": 0.378, + "1998": 0.38, + "1999": 0.393, + "2000": 0.403, + "2001": 0.412, + "2002": 0.417, + "2003": 0.428, + "2004": 0.44, + "2005": 0.455, + "2006": 0.469, + "2007": 0.482, + "2008": 0.489, + "2009": 0.486, + "2010": 0.492, + "2011": 0.5, + "2012": 0.507, + "2013": 0.517, + "2014": 0.523, + "2015": 0.53, + "2016": 0.537, + "2017": 0.545, + "2018": 0.552, + "2019": 0.562, + "2020": 0.558, + "2021": 0.56 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr101", + "Region": "Banteay Mean Chey", + "1990": 0.327, + "1991": 0.331, + "1992": 0.337, + "1993": 0.339, + "1994": 0.34, + "1995": 0.349, + "1996": 0.352, + "1997": 0.355, + "1998": 0.357, + "1999": 0.37, + "2000": 0.38, + "2001": 0.388, + "2002": 0.393, + "2003": 0.404, + "2004": 0.415, + "2005": 0.43, + "2006": 0.45, + "2007": 0.469, + "2008": 0.482, + "2009": 0.486, + "2010": 0.498, + "2011": 0.512, + "2012": 0.525, + "2013": 0.54, + "2014": 0.552, + "2015": 0.559, + "2016": 0.567, + "2017": 0.574, + "2018": 0.582, + "2019": 0.592, + "2020": 0.588, + "2021": 0.59 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr113", + "Region": "Bat Dambang-Krong Pailin", + "1990": 0.356, + "1991": 0.362, + "1992": 0.367, + "1993": 0.369, + "1994": 0.371, + "1995": 0.379, + "1996": 0.382, + "1997": 0.386, + "1998": 0.388, + "1999": 0.401, + "2000": 0.411, + "2001": 0.421, + "2002": 0.428, + "2003": 0.44, + "2004": 0.454, + "2005": 0.471, + "2006": 0.484, + "2007": 0.496, + "2008": 0.502, + "2009": 0.498, + "2010": 0.503, + "2011": 0.515, + "2012": 0.526, + "2013": 0.54, + "2014": 0.55, + "2015": 0.556, + "2016": 0.564, + "2017": 0.572, + "2018": 0.579, + "2019": 0.589, + "2020": 0.586, + "2021": 0.587 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr102", + "Region": "Kampong Cham (incl Tboung Khmum)", + "1990": 0.339, + "1991": 0.344, + "1992": 0.35, + "1993": 0.352, + "1994": 0.353, + "1995": 0.362, + "1996": 0.365, + "1997": 0.369, + "1998": 0.371, + "1999": 0.383, + "2000": 0.393, + "2001": 0.4, + "2002": 0.405, + "2003": 0.414, + "2004": 0.425, + "2005": 0.439, + "2006": 0.45, + "2007": 0.461, + "2008": 0.466, + "2009": 0.462, + "2010": 0.466, + "2011": 0.474, + "2012": 0.483, + "2013": 0.494, + "2014": 0.501, + "2015": 0.507, + "2016": 0.515, + "2017": 0.522, + "2018": 0.529, + "2019": 0.539, + "2020": 0.536, + "2021": 0.537 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr103", + "Region": "Kampong Chhnang", + "1990": 0.333, + "1991": 0.338, + "1992": 0.344, + "1993": 0.346, + "1994": 0.347, + "1995": 0.356, + "1996": 0.359, + "1997": 0.362, + "1998": 0.364, + "1999": 0.377, + "2000": 0.387, + "2001": 0.392, + "2002": 0.395, + "2003": 0.403, + "2004": 0.412, + "2005": 0.425, + "2006": 0.436, + "2007": 0.448, + "2008": 0.452, + "2009": 0.448, + "2010": 0.453, + "2011": 0.462, + "2012": 0.471, + "2013": 0.482, + "2014": 0.49, + "2015": 0.496, + "2016": 0.504, + "2017": 0.511, + "2018": 0.518, + "2019": 0.528, + "2020": 0.524, + "2021": 0.526 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr104", + "Region": "Kampong Spueu", + "1990": 0.309, + "1991": 0.314, + "1992": 0.319, + "1993": 0.321, + "1994": 0.322, + "1995": 0.331, + "1996": 0.333, + "1997": 0.337, + "1998": 0.339, + "1999": 0.351, + "2000": 0.361, + "2001": 0.369, + "2002": 0.374, + "2003": 0.385, + "2004": 0.396, + "2005": 0.411, + "2006": 0.428, + "2007": 0.445, + "2008": 0.455, + "2009": 0.456, + "2010": 0.466, + "2011": 0.474, + "2012": 0.481, + "2013": 0.491, + "2014": 0.498, + "2015": 0.504, + "2016": 0.511, + "2017": 0.519, + "2018": 0.526, + "2019": 0.535, + "2020": 0.532, + "2021": 0.534 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr105", + "Region": "Kampong Thum", + "1990": 0.315, + "1991": 0.32, + "1992": 0.325, + "1993": 0.327, + "1994": 0.328, + "1995": 0.337, + "1996": 0.34, + "1997": 0.343, + "1998": 0.345, + "1999": 0.358, + "2000": 0.368, + "2001": 0.378, + "2002": 0.385, + "2003": 0.398, + "2004": 0.411, + "2005": 0.429, + "2006": 0.441, + "2007": 0.453, + "2008": 0.459, + "2009": 0.455, + "2010": 0.46, + "2011": 0.467, + "2012": 0.474, + "2013": 0.484, + "2014": 0.49, + "2015": 0.496, + "2016": 0.503, + "2017": 0.511, + "2018": 0.518, + "2019": 0.527, + "2020": 0.524, + "2021": 0.526 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr114", + "Region": "Kampot-Krong Kaeb-Krong Preah Sihanouk", + "1990": 0.332, + "1991": 0.337, + "1992": 0.342, + "1993": 0.344, + "1994": 0.346, + "1995": 0.354, + "1996": 0.357, + "1997": 0.361, + "1998": 0.363, + "1999": 0.375, + "2000": 0.385, + "2001": 0.393, + "2002": 0.399, + "2003": 0.409, + "2004": 0.42, + "2005": 0.435, + "2006": 0.448, + "2007": 0.461, + "2008": 0.467, + "2009": 0.464, + "2010": 0.47, + "2011": 0.478, + "2012": 0.486, + "2013": 0.497, + "2014": 0.504, + "2015": 0.51, + "2016": 0.517, + "2017": 0.525, + "2018": 0.532, + "2019": 0.542, + "2020": 0.538, + "2021": 0.54 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr106", + "Region": "Kandal", + "1990": 0.34, + "1991": 0.345, + "1992": 0.351, + "1993": 0.353, + "1994": 0.354, + "1995": 0.363, + "1996": 0.366, + "1997": 0.369, + "1998": 0.371, + "1999": 0.384, + "2000": 0.394, + "2001": 0.41, + "2002": 0.423, + "2003": 0.442, + "2004": 0.462, + "2005": 0.485, + "2006": 0.498, + "2007": 0.51, + "2008": 0.516, + "2009": 0.512, + "2010": 0.517, + "2011": 0.525, + "2012": 0.532, + "2013": 0.542, + "2014": 0.549, + "2015": 0.555, + "2016": 0.563, + "2017": 0.571, + "2018": 0.578, + "2019": 0.588, + "2020": 0.584, + "2021": 0.586 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr107", + "Region": "Kaoh Kong", + "1990": 0.355, + "1991": 0.36, + "1992": 0.366, + "1993": 0.368, + "1994": 0.369, + "1995": 0.378, + "1996": 0.381, + "1997": 0.385, + "1998": 0.387, + "1999": 0.4, + "2000": 0.41, + "2001": 0.419, + "2002": 0.426, + "2003": 0.438, + "2004": 0.451, + "2005": 0.468, + "2006": 0.484, + "2007": 0.501, + "2008": 0.511, + "2009": 0.511, + "2010": 0.521, + "2011": 0.529, + "2012": 0.537, + "2013": 0.548, + "2014": 0.556, + "2015": 0.562, + "2016": 0.57, + "2017": 0.578, + "2018": 0.585, + "2019": 0.595, + "2020": 0.592, + "2021": 0.593 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr116", + "Region": "Mondol Kiri-Rotanak Kiri", + "1990": 0.324, + "1991": 0.329, + "1992": 0.334, + "1993": 0.336, + "1994": 0.338, + "1995": 0.346, + "1996": 0.349, + "1997": 0.353, + "1998": 0.355, + "1999": 0.367, + "2000": 0.377, + "2001": 0.383, + "2002": 0.387, + "2003": 0.395, + "2004": 0.405, + "2005": 0.418, + "2006": 0.429, + "2007": 0.44, + "2008": 0.445, + "2009": 0.44, + "2010": 0.445, + "2011": 0.458, + "2012": 0.471, + "2013": 0.487, + "2014": 0.5, + "2015": 0.506, + "2016": 0.513, + "2017": 0.521, + "2018": 0.528, + "2019": 0.537, + "2020": 0.534, + "2021": 0.536 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr108", + "Region": "Phnom Penh", + "1990": 0.533, + "1991": 0.539, + "1992": 0.546, + "1993": 0.548, + "1994": 0.55, + "1995": 0.56, + "1996": 0.564, + "1997": 0.568, + "1998": 0.57, + "1999": 0.585, + "2000": 0.597, + "2001": 0.601, + "2002": 0.602, + "2003": 0.609, + "2004": 0.617, + "2005": 0.629, + "2006": 0.647, + "2007": 0.666, + "2008": 0.676, + "2009": 0.676, + "2010": 0.686, + "2011": 0.68, + "2012": 0.673, + "2013": 0.67, + "2014": 0.662, + "2015": 0.669, + "2016": 0.678, + "2017": 0.686, + "2018": 0.694, + "2019": 0.705, + "2020": 0.702, + "2021": 0.703 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr110", + "Region": "Pousat", + "1990": 0.329, + "1991": 0.333, + "1992": 0.339, + "1993": 0.341, + "1994": 0.342, + "1995": 0.351, + "1996": 0.354, + "1997": 0.357, + "1998": 0.359, + "1999": 0.372, + "2000": 0.382, + "2001": 0.389, + "2002": 0.393, + "2003": 0.402, + "2004": 0.412, + "2005": 0.426, + "2006": 0.438, + "2007": 0.451, + "2008": 0.457, + "2009": 0.454, + "2010": 0.46, + "2011": 0.464, + "2012": 0.467, + "2013": 0.473, + "2014": 0.476, + "2015": 0.482, + "2016": 0.489, + "2017": 0.496, + "2018": 0.503, + "2019": 0.513, + "2020": 0.51, + "2021": 0.511 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr115", + "Region": "Preah Vihear-Stueng Traeng-Kracheh", + "1990": 0.326, + "1991": 0.331, + "1992": 0.337, + "1993": 0.339, + "1994": 0.34, + "1995": 0.348, + "1996": 0.351, + "1997": 0.355, + "1998": 0.357, + "1999": 0.369, + "2000": 0.38, + "2001": 0.385, + "2002": 0.388, + "2003": 0.396, + "2004": 0.405, + "2005": 0.418, + "2006": 0.429, + "2007": 0.439, + "2008": 0.444, + "2009": 0.439, + "2010": 0.443, + "2011": 0.448, + "2012": 0.453, + "2013": 0.461, + "2014": 0.465, + "2015": 0.471, + "2016": 0.478, + "2017": 0.486, + "2018": 0.493, + "2019": 0.502, + "2020": 0.499, + "2021": 0.5 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr109", + "Region": "Prey Veaeng", + "1990": 0.335, + "1991": 0.34, + "1992": 0.345, + "1993": 0.347, + "1994": 0.349, + "1995": 0.357, + "1996": 0.36, + "1997": 0.364, + "1998": 0.366, + "1999": 0.378, + "2000": 0.389, + "2001": 0.393, + "2002": 0.395, + "2003": 0.401, + "2004": 0.409, + "2005": 0.421, + "2006": 0.435, + "2007": 0.45, + "2008": 0.457, + "2009": 0.456, + "2010": 0.463, + "2011": 0.477, + "2012": 0.489, + "2013": 0.504, + "2014": 0.516, + "2015": 0.522, + "2016": 0.53, + "2017": 0.538, + "2018": 0.545, + "2019": 0.554, + "2020": 0.551, + "2021": 0.553 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr117", + "Region": "Siem Reab-Otdar Mean Chey", + "1990": 0.325, + "1991": 0.33, + "1992": 0.335, + "1993": 0.338, + "1994": 0.339, + "1995": 0.347, + "1996": 0.35, + "1997": 0.354, + "1998": 0.356, + "1999": 0.368, + "2000": 0.378, + "2001": 0.39, + "2002": 0.399, + "2003": 0.413, + "2004": 0.428, + "2005": 0.447, + "2006": 0.457, + "2007": 0.467, + "2008": 0.471, + "2009": 0.465, + "2010": 0.469, + "2011": 0.477, + "2012": 0.484, + "2013": 0.494, + "2014": 0.501, + "2015": 0.507, + "2016": 0.514, + "2017": 0.522, + "2018": 0.529, + "2019": 0.539, + "2020": 0.535, + "2021": 0.537 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr111", + "Region": "Svay Rieng", + "1990": 0.334, + "1991": 0.339, + "1992": 0.345, + "1993": 0.347, + "1994": 0.348, + "1995": 0.357, + "1996": 0.36, + "1997": 0.363, + "1998": 0.365, + "1999": 0.378, + "2000": 0.388, + "2001": 0.395, + "2002": 0.399, + "2003": 0.408, + "2004": 0.418, + "2005": 0.432, + "2006": 0.445, + "2007": 0.457, + "2008": 0.462, + "2009": 0.459, + "2010": 0.464, + "2011": 0.475, + "2012": 0.486, + "2013": 0.5, + "2014": 0.51, + "2015": 0.516, + "2016": 0.524, + "2017": 0.532, + "2018": 0.539, + "2019": 0.548, + "2020": 0.545, + "2021": 0.547 + }, + { + "Country": "Cambodia", + "Continent": "Asia/Pacific", + "ISO_Code": "KHM", + "Level": "Subnat", + "GDLCODE": "KHMr112", + "Region": "Takaev", + "1990": 0.328, + "1991": 0.333, + "1992": 0.338, + "1993": 0.34, + "1994": 0.342, + "1995": 0.35, + "1996": 0.353, + "1997": 0.357, + "1998": 0.359, + "1999": 0.371, + "2000": 0.381, + "2001": 0.391, + "2002": 0.397, + "2003": 0.409, + "2004": 0.422, + "2005": 0.438, + "2006": 0.448, + "2007": 0.459, + "2008": 0.463, + "2009": 0.457, + "2010": 0.461, + "2011": 0.476, + "2012": 0.491, + "2013": 0.508, + "2014": 0.522, + "2015": 0.528, + "2016": 0.536, + "2017": 0.544, + "2018": 0.551, + "2019": 0.561, + "2020": 0.557, + "2021": 0.559 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "National", + "GDLCODE": "CMRt", + "Region": "Total", + "1990": 0.526, + "1991": 0.513, + "1992": 0.506, + "1993": 0.489, + "1994": 0.487, + "1995": 0.487, + "1996": 0.489, + "1997": 0.491, + "1998": 0.496, + "1999": 0.499, + "2000": 0.498, + "2001": 0.499, + "2002": 0.504, + "2003": 0.511, + "2004": 0.519, + "2005": 0.517, + "2006": 0.521, + "2007": 0.522, + "2008": 0.523, + "2009": 0.524, + "2010": 0.523, + "2011": 0.524, + "2012": 0.526, + "2013": 0.529, + "2014": 0.535, + "2015": 0.538, + "2016": 0.54, + "2017": 0.541, + "2018": 0.543, + "2019": 0.544, + "2020": 0.541, + "2021": 0.542 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr101", + "Region": "Adamaoua", + "1990": 0.526, + "1991": 0.513, + "1992": 0.506, + "1993": 0.489, + "1994": 0.487, + "1995": 0.487, + "1996": 0.489, + "1997": 0.491, + "1998": 0.496, + "1999": 0.496, + "2000": 0.492, + "2001": 0.49, + "2002": 0.492, + "2003": 0.496, + "2004": 0.5, + "2005": 0.499, + "2006": 0.502, + "2007": 0.503, + "2008": 0.504, + "2009": 0.506, + "2010": 0.505, + "2011": 0.506, + "2012": 0.503, + "2013": 0.501, + "2014": 0.503, + "2015": 0.502, + "2016": 0.499, + "2017": 0.496, + "2018": 0.493, + "2019": 0.494, + "2020": 0.491, + "2021": 0.492 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr102", + "Region": "Centre (incl Yaounde)", + "1990": 0.554, + "1991": 0.54, + "1992": 0.532, + "1993": 0.516, + "1994": 0.513, + "1995": 0.513, + "1996": 0.515, + "1997": 0.517, + "1998": 0.522, + "1999": 0.53, + "2000": 0.533, + "2001": 0.539, + "2002": 0.547, + "2003": 0.559, + "2004": 0.572, + "2005": 0.573, + "2006": 0.579, + "2007": 0.583, + "2008": 0.586, + "2009": 0.59, + "2010": 0.591, + "2011": 0.595, + "2012": 0.595, + "2013": 0.595, + "2014": 0.599, + "2015": 0.601, + "2016": 0.601, + "2017": 0.6, + "2018": 0.6, + "2019": 0.601, + "2020": 0.597, + "2021": 0.599 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr103", + "Region": "Est", + "1990": 0.465, + "1991": 0.453, + "1992": 0.446, + "1993": 0.43, + "1994": 0.428, + "1995": 0.428, + "1996": 0.43, + "1997": 0.432, + "1998": 0.436, + "1999": 0.445, + "2000": 0.449, + "2001": 0.456, + "2002": 0.466, + "2003": 0.478, + "2004": 0.492, + "2005": 0.486, + "2006": 0.486, + "2007": 0.483, + "2008": 0.48, + "2009": 0.477, + "2010": 0.473, + "2011": 0.47, + "2012": 0.473, + "2013": 0.476, + "2014": 0.483, + "2015": 0.487, + "2016": 0.49, + "2017": 0.492, + "2018": 0.495, + "2019": 0.496, + "2020": 0.493, + "2021": 0.494 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr104", + "Region": "Extreme Nord", + "1990": 0.461, + "1991": 0.448, + "1992": 0.441, + "1993": 0.426, + "1994": 0.423, + "1995": 0.423, + "1996": 0.425, + "1997": 0.428, + "1998": 0.432, + "1999": 0.434, + "2000": 0.432, + "2001": 0.433, + "2002": 0.436, + "2003": 0.442, + "2004": 0.448, + "2005": 0.444, + "2006": 0.445, + "2007": 0.444, + "2008": 0.442, + "2009": 0.441, + "2010": 0.438, + "2011": 0.437, + "2012": 0.437, + "2013": 0.438, + "2014": 0.442, + "2015": 0.444, + "2016": 0.444, + "2017": 0.444, + "2018": 0.444, + "2019": 0.445, + "2020": 0.442, + "2021": 0.443 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr105", + "Region": "Littoral (incl Douala)", + "1990": 0.61, + "1991": 0.596, + "1992": 0.588, + "1993": 0.57, + "1994": 0.568, + "1995": 0.567, + "1996": 0.57, + "1997": 0.572, + "1998": 0.577, + "1999": 0.58, + "2000": 0.579, + "2001": 0.58, + "2002": 0.584, + "2003": 0.591, + "2004": 0.599, + "2005": 0.599, + "2006": 0.605, + "2007": 0.607, + "2008": 0.61, + "2009": 0.613, + "2010": 0.614, + "2011": 0.616, + "2012": 0.618, + "2013": 0.621, + "2014": 0.627, + "2015": 0.63, + "2016": 0.632, + "2017": 0.633, + "2018": 0.634, + "2019": 0.635, + "2020": 0.632, + "2021": 0.633 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr106", + "Region": "Nord", + "1990": 0.488, + "1991": 0.475, + "1992": 0.468, + "1993": 0.452, + "1994": 0.45, + "1995": 0.45, + "1996": 0.452, + "1997": 0.454, + "1998": 0.458, + "1999": 0.457, + "2000": 0.452, + "2001": 0.45, + "2002": 0.449, + "2003": 0.452, + "2004": 0.455, + "2005": 0.451, + "2006": 0.452, + "2007": 0.45, + "2008": 0.448, + "2009": 0.447, + "2010": 0.443, + "2011": 0.442, + "2012": 0.443, + "2013": 0.444, + "2014": 0.449, + "2015": 0.452, + "2016": 0.453, + "2017": 0.453, + "2018": 0.454, + "2019": 0.455, + "2020": 0.452, + "2021": 0.453 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr107", + "Region": "Nord Ouest", + "1990": 0.529, + "1991": 0.516, + "1992": 0.508, + "1993": 0.492, + "1994": 0.489, + "1995": 0.489, + "1996": 0.491, + "1997": 0.494, + "1998": 0.498, + "1999": 0.496, + "2000": 0.489, + "2001": 0.485, + "2002": 0.484, + "2003": 0.486, + "2004": 0.488, + "2005": 0.487, + "2006": 0.492, + "2007": 0.494, + "2008": 0.495, + "2009": 0.498, + "2010": 0.498, + "2011": 0.5, + "2012": 0.502, + "2013": 0.505, + "2014": 0.512, + "2015": 0.516, + "2016": 0.519, + "2017": 0.52, + "2018": 0.523, + "2019": 0.523, + "2020": 0.52, + "2021": 0.522 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr108", + "Region": "Ouest", + "1990": 0.544, + "1991": 0.53, + "1992": 0.522, + "1993": 0.506, + "1994": 0.503, + "1995": 0.503, + "1996": 0.505, + "1997": 0.508, + "1998": 0.513, + "1999": 0.513, + "2000": 0.51, + "2001": 0.508, + "2002": 0.51, + "2003": 0.515, + "2004": 0.52, + "2005": 0.519, + "2006": 0.523, + "2007": 0.524, + "2008": 0.525, + "2009": 0.527, + "2010": 0.527, + "2011": 0.528, + "2012": 0.532, + "2013": 0.536, + "2014": 0.544, + "2015": 0.549, + "2016": 0.553, + "2017": 0.556, + "2018": 0.56, + "2019": 0.56, + "2020": 0.557, + "2021": 0.559 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr109", + "Region": "Sud", + "1990": 0.503, + "1991": 0.49, + "1992": 0.483, + "1993": 0.467, + "1994": 0.464, + "1995": 0.464, + "1996": 0.466, + "1997": 0.468, + "1998": 0.473, + "1999": 0.48, + "2000": 0.483, + "2001": 0.488, + "2002": 0.496, + "2003": 0.507, + "2004": 0.519, + "2005": 0.517, + "2006": 0.519, + "2007": 0.519, + "2008": 0.52, + "2009": 0.52, + "2010": 0.519, + "2011": 0.519, + "2012": 0.524, + "2013": 0.53, + "2014": 0.539, + "2015": 0.545, + "2016": 0.551, + "2017": 0.555, + "2018": 0.56, + "2019": 0.561, + "2020": 0.557, + "2021": 0.559 + }, + { + "Country": "Cameroon", + "Continent": "Africa", + "ISO_Code": "CMR", + "Level": "Subnat", + "GDLCODE": "CMRr110", + "Region": "Sud Ouest", + "1990": 0.553, + "1991": 0.54, + "1992": 0.532, + "1993": 0.515, + "1994": 0.513, + "1995": 0.513, + "1996": 0.515, + "1997": 0.517, + "1998": 0.522, + "1999": 0.526, + "2000": 0.525, + "2001": 0.527, + "2002": 0.532, + "2003": 0.539, + "2004": 0.548, + "2005": 0.544, + "2006": 0.545, + "2007": 0.543, + "2008": 0.542, + "2009": 0.541, + "2010": 0.538, + "2011": 0.536, + "2012": 0.552, + "2013": 0.569, + "2014": 0.589, + "2015": 0.607, + "2016": 0.624, + "2017": 0.639, + "2018": 0.655, + "2019": 0.656, + "2020": 0.652, + "2021": 0.654 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "National", + "GDLCODE": "CANt", + "Region": "Total", + "1990": 0.873, + "1991": 0.867, + "1992": 0.866, + "1993": 0.868, + "1994": 0.872, + "1995": 0.876, + "1996": 0.878, + "1997": 0.883, + "1998": 0.885, + "1999": 0.892, + "2000": 0.902, + "2001": 0.902, + "2002": 0.904, + "2003": 0.908, + "2004": 0.914, + "2005": 0.919, + "2006": 0.922, + "2007": 0.926, + "2008": 0.928, + "2009": 0.916, + "2010": 0.921, + "2011": 0.926, + "2012": 0.927, + "2013": 0.929, + "2014": 0.931, + "2015": 0.928, + "2016": 0.927, + "2017": 0.932, + "2018": 0.933, + "2019": 0.934, + "2020": 0.923, + "2021": 0.929 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr109", + "Region": "Alberta", + "1990": 0.898, + "1991": 0.89, + "1992": 0.887, + "1993": 0.895, + "1994": 0.903, + "1995": 0.905, + "1996": 0.912, + "1997": 0.92, + "1998": 0.914, + "1999": 0.922, + "2000": 0.949, + "2001": 0.95, + "2002": 0.943, + "2003": 0.957, + "2004": 0.969, + "2005": 0.985, + "2006": 0.991, + "2007": 0.993, + "2008": 1, + "2009": 0.971, + "2010": 0.981, + "2011": 0.991, + "2012": 0.992, + "2013": 1, + "2014": 1, + "2015": 0.98, + "2016": 0.979, + "2017": 0.984, + "2018": 0.985, + "2019": 0.986, + "2020": 0.975, + "2021": 0.981 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr110", + "Region": "British Columbia", + "1990": 0.87, + "1991": 0.867, + "1992": 0.869, + "1993": 0.873, + "1994": 0.876, + "1995": 0.878, + "1996": 0.877, + "1997": 0.88, + "1998": 0.878, + "1999": 0.882, + "2000": 0.891, + "2001": 0.888, + "2002": 0.89, + "2003": 0.895, + "2004": 0.904, + "2005": 0.911, + "2006": 0.918, + "2007": 0.92, + "2008": 0.919, + "2009": 0.909, + "2010": 0.912, + "2011": 0.916, + "2012": 0.915, + "2013": 0.917, + "2014": 0.92, + "2015": 0.922, + "2016": 0.921, + "2017": 0.926, + "2018": 0.927, + "2019": 0.928, + "2020": 0.917, + "2021": 0.923 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr107", + "Region": "Manitoba", + "1990": 0.856, + "1991": 0.849, + "1992": 0.849, + "1993": 0.846, + "1994": 0.851, + "1995": 0.855, + "1996": 0.86, + "1997": 0.863, + "1998": 0.868, + "1999": 0.871, + "2000": 0.877, + "2001": 0.878, + "2002": 0.88, + "2003": 0.881, + "2004": 0.887, + "2005": 0.891, + "2006": 0.899, + "2007": 0.905, + "2008": 0.907, + "2009": 0.901, + "2010": 0.904, + "2011": 0.907, + "2012": 0.912, + "2013": 0.915, + "2014": 0.914, + "2015": 0.914, + "2016": 0.914, + "2017": 0.918, + "2018": 0.92, + "2019": 0.921, + "2020": 0.91, + "2021": 0.916 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr104", + "Region": "New Brunswick", + "1990": 0.828, + "1991": 0.823, + "1992": 0.825, + "1993": 0.83, + "1994": 0.833, + "1995": 0.843, + "1996": 0.843, + "1997": 0.842, + "1998": 0.847, + "1999": 0.857, + "2000": 0.863, + "2001": 0.864, + "2002": 0.865, + "2003": 0.87, + "2004": 0.876, + "2005": 0.881, + "2006": 0.885, + "2007": 0.89, + "2008": 0.889, + "2009": 0.887, + "2010": 0.891, + "2011": 0.894, + "2012": 0.892, + "2013": 0.891, + "2014": 0.89, + "2015": 0.892, + "2016": 0.892, + "2017": 0.896, + "2018": 0.897, + "2019": 0.898, + "2020": 0.887, + "2021": 0.893 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr101", + "Region": "Newfoundland and Labrador", + "1990": 0.806, + "1991": 0.807, + "1992": 0.803, + "1993": 0.804, + "1994": 0.811, + "1995": 0.817, + "1996": 0.814, + "1997": 0.816, + "1998": 0.825, + "1999": 0.838, + "2000": 0.857, + "2001": 0.859, + "2002": 0.879, + "2003": 0.892, + "2004": 0.9, + "2005": 0.917, + "2006": 0.93, + "2007": 0.953, + "2008": 0.961, + "2009": 0.922, + "2010": 0.941, + "2011": 0.959, + "2012": 0.949, + "2013": 0.958, + "2014": 0.953, + "2015": 0.932, + "2016": 0.931, + "2017": 0.936, + "2018": 0.937, + "2019": 0.938, + "2020": 0.927, + "2021": 0.933 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr103", + "Region": "Nova Scotia", + "1990": 0.833, + "1991": 0.833, + "1992": 0.834, + "1993": 0.832, + "1994": 0.831, + "1995": 0.834, + "1996": 0.833, + "1997": 0.838, + "1998": 0.843, + "1999": 0.852, + "2000": 0.86, + "2001": 0.864, + "2002": 0.868, + "2003": 0.875, + "2004": 0.878, + "2005": 0.881, + "2006": 0.881, + "2007": 0.884, + "2008": 0.886, + "2009": 0.882, + "2010": 0.887, + "2011": 0.887, + "2012": 0.885, + "2013": 0.887, + "2014": 0.886, + "2015": 0.888, + "2016": 0.887, + "2017": 0.892, + "2018": 0.893, + "2019": 0.894, + "2020": 0.883, + "2021": 0.889 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr106", + "Region": "Ontario", + "1990": 0.889, + "1991": 0.883, + "1992": 0.88, + "1993": 0.881, + "1994": 0.885, + "1995": 0.889, + "1996": 0.891, + "1997": 0.896, + "1998": 0.899, + "1999": 0.906, + "2000": 0.913, + "2001": 0.913, + "2002": 0.915, + "2003": 0.916, + "2004": 0.919, + "2005": 0.921, + "2006": 0.922, + "2007": 0.923, + "2008": 0.92, + "2009": 0.914, + "2010": 0.919, + "2011": 0.921, + "2012": 0.921, + "2013": 0.921, + "2014": 0.924, + "2015": 0.927, + "2016": 0.927, + "2017": 0.931, + "2018": 0.933, + "2019": 0.934, + "2020": 0.923, + "2021": 0.929 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr102", + "Region": "Prince Edward Island, Yukon Territory, Northwest Territories, Nunavut", + "1990": 0.875, + "1991": 0.867, + "1992": 0.867, + "1993": 0.867, + "1994": 0.866, + "1995": 0.869, + "1996": 0.874, + "1997": 0.876, + "1998": 0.875, + "1999": 0.888, + "2000": 0.898, + "2001": 0.906, + "2002": 0.908, + "2003": 0.917, + "2004": 0.928, + "2005": 0.929, + "2006": 0.931, + "2007": 0.935, + "2008": 0.941, + "2009": 0.929, + "2010": 0.943, + "2011": 0.942, + "2012": 0.938, + "2013": 0.941, + "2014": 0.943, + "2015": 0.942, + "2016": 0.942, + "2017": 0.946, + "2018": 0.948, + "2019": 0.949, + "2020": 0.938, + "2021": 0.944 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr105", + "Region": "Quebec", + "1990": 0.855, + "1991": 0.85, + "1992": 0.849, + "1993": 0.85, + "1994": 0.854, + "1995": 0.858, + "1996": 0.859, + "1997": 0.863, + "1998": 0.866, + "1999": 0.874, + "2000": 0.881, + "2001": 0.882, + "2002": 0.885, + "2003": 0.888, + "2004": 0.892, + "2005": 0.893, + "2006": 0.894, + "2007": 0.897, + "2008": 0.896, + "2009": 0.893, + "2010": 0.896, + "2011": 0.899, + "2012": 0.899, + "2013": 0.9, + "2014": 0.899, + "2015": 0.9, + "2016": 0.899, + "2017": 0.904, + "2018": 0.905, + "2019": 0.906, + "2020": 0.895, + "2021": 0.901 + }, + { + "Country": "Canada", + "Continent": "America", + "ISO_Code": "CAN", + "Level": "Subnat", + "GDLCODE": "CANr108", + "Region": "Saskatchewan", + "1990": 0.849, + "1991": 0.846, + "1992": 0.843, + "1993": 0.849, + "1994": 0.856, + "1995": 0.865, + "1996": 0.876, + "1997": 0.875, + "1998": 0.876, + "1999": 0.881, + "2000": 0.894, + "2001": 0.889, + "2002": 0.892, + "2003": 0.901, + "2004": 0.914, + "2005": 0.923, + "2006": 0.925, + "2007": 0.939, + "2008": 0.972, + "2009": 0.95, + "2010": 0.953, + "2011": 0.973, + "2012": 0.974, + "2013": 0.98, + "2014": 0.976, + "2015": 0.963, + "2016": 0.963, + "2017": 0.968, + "2018": 0.969, + "2019": 0.97, + "2020": 0.959, + "2021": 0.965 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "National", + "GDLCODE": "CPVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.564, + "2001": 0.573, + "2002": 0.576, + "2003": 0.581, + "2004": 0.585, + "2005": 0.59, + "2006": 0.602, + "2007": 0.616, + "2008": 0.623, + "2009": 0.619, + "2010": 0.617, + "2011": 0.621, + "2012": 0.621, + "2013": 0.621, + "2014": 0.618, + "2015": 0.619, + "2016": 0.625, + "2017": 0.629, + "2018": 0.635, + "2019": 0.642, + "2020": 0.616, + "2021": 0.624 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr105", + "Region": "Fogo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.558, + "2001": 0.567, + "2002": 0.57, + "2003": 0.576, + "2004": 0.579, + "2005": 0.584, + "2006": 0.596, + "2007": 0.61, + "2008": 0.617, + "2009": 0.613, + "2010": 0.611, + "2011": 0.615, + "2012": 0.615, + "2013": 0.615, + "2014": 0.612, + "2015": 0.613, + "2016": 0.619, + "2017": 0.622, + "2018": 0.629, + "2019": 0.636, + "2020": 0.61, + "2021": 0.618 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr101", + "Region": "S.Antao", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.552, + "2001": 0.561, + "2002": 0.564, + "2003": 0.569, + "2004": 0.573, + "2005": 0.578, + "2006": 0.59, + "2007": 0.603, + "2008": 0.61, + "2009": 0.607, + "2010": 0.604, + "2011": 0.609, + "2012": 0.608, + "2013": 0.609, + "2014": 0.605, + "2015": 0.607, + "2016": 0.612, + "2017": 0.616, + "2018": 0.622, + "2019": 0.629, + "2020": 0.603, + "2021": 0.612 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr102", + "Region": "S.Vicente", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.591, + "2001": 0.6, + "2002": 0.603, + "2003": 0.609, + "2004": 0.612, + "2005": 0.618, + "2006": 0.63, + "2007": 0.644, + "2008": 0.651, + "2009": 0.647, + "2010": 0.644, + "2011": 0.649, + "2012": 0.649, + "2013": 0.649, + "2014": 0.646, + "2015": 0.647, + "2016": 0.653, + "2017": 0.657, + "2018": 0.663, + "2019": 0.67, + "2020": 0.644, + "2021": 0.652 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr104", + "Region": "Santiago- Praia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.584, + "2001": 0.593, + "2002": 0.597, + "2003": 0.602, + "2004": 0.606, + "2005": 0.611, + "2006": 0.623, + "2007": 0.637, + "2008": 0.644, + "2009": 0.64, + "2010": 0.638, + "2011": 0.643, + "2012": 0.642, + "2013": 0.642, + "2014": 0.639, + "2015": 0.641, + "2016": 0.646, + "2017": 0.65, + "2018": 0.657, + "2019": 0.664, + "2020": 0.637, + "2021": 0.646 + }, + { + "Country": "Cape Verde", + "Continent": "Africa", + "ISO_Code": "CPV", + "Level": "Subnat", + "GDLCODE": "CPVr103", + "Region": "Santiago-Interior", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.529, + "2001": 0.538, + "2002": 0.541, + "2003": 0.546, + "2004": 0.55, + "2005": 0.555, + "2006": 0.566, + "2007": 0.579, + "2008": 0.586, + "2009": 0.583, + "2010": 0.58, + "2011": 0.585, + "2012": 0.584, + "2013": 0.585, + "2014": 0.581, + "2015": 0.583, + "2016": 0.588, + "2017": 0.592, + "2018": 0.598, + "2019": 0.605, + "2020": 0.58, + "2021": 0.588 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "National", + "GDLCODE": "CAFt", + "Region": "Total", + "1990": 0.388, + "1991": 0.386, + "1992": 0.38, + "1993": 0.375, + "1994": 0.376, + "1995": 0.381, + "1996": 0.364, + "1997": 0.37, + "1998": 0.373, + "1999": 0.38, + "2000": 0.378, + "2001": 0.377, + "2002": 0.373, + "2003": 0.359, + "2004": 0.359, + "2005": 0.361, + "2006": 0.358, + "2007": 0.362, + "2008": 0.368, + "2009": 0.371, + "2010": 0.378, + "2011": 0.383, + "2012": 0.39, + "2013": 0.321, + "2014": 0.321, + "2015": 0.327, + "2016": 0.332, + "2017": 0.342, + "2018": 0.348, + "2019": 0.35, + "2020": 0.344, + "2021": 0.343 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr106", + "Region": "Bangui", + "1990": 0.479, + "1991": 0.477, + "1992": 0.47, + "1993": 0.464, + "1994": 0.466, + "1995": 0.471, + "1996": 0.453, + "1997": 0.459, + "1998": 0.461, + "1999": 0.468, + "2000": 0.466, + "2001": 0.464, + "2002": 0.459, + "2003": 0.445, + "2004": 0.444, + "2005": 0.445, + "2006": 0.442, + "2007": 0.453, + "2008": 0.465, + "2009": 0.474, + "2010": 0.486, + "2011": 0.493, + "2012": 0.502, + "2013": 0.428, + "2014": 0.429, + "2015": 0.437, + "2016": 0.444, + "2017": 0.456, + "2018": 0.464, + "2019": 0.468, + "2020": 0.461, + "2021": 0.46 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr101", + "Region": "RS I (Ombella Mpoko, Lobaye, Kemo, Nana Grebizi, Ouaka)", + "1990": 0.376, + "1991": 0.375, + "1992": 0.369, + "1993": 0.363, + "1994": 0.365, + "1995": 0.37, + "1996": 0.354, + "1997": 0.36, + "1998": 0.363, + "1999": 0.37, + "2000": 0.369, + "2001": 0.368, + "2002": 0.364, + "2003": 0.352, + "2004": 0.352, + "2005": 0.353, + "2006": 0.351, + "2007": 0.355, + "2008": 0.361, + "2009": 0.363, + "2010": 0.369, + "2011": 0.375, + "2012": 0.382, + "2013": 0.315, + "2014": 0.315, + "2015": 0.322, + "2016": 0.328, + "2017": 0.337, + "2018": 0.344, + "2019": 0.347, + "2020": 0.341, + "2021": 0.34 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr102", + "Region": "RS II (Mambera Kadei, Nana Mambere, Sangha Mbaere)", + "1990": 0.376, + "1991": 0.375, + "1992": 0.369, + "1993": 0.363, + "1994": 0.365, + "1995": 0.37, + "1996": 0.354, + "1997": 0.36, + "1998": 0.363, + "1999": 0.37, + "2000": 0.369, + "2001": 0.368, + "2002": 0.364, + "2003": 0.351, + "2004": 0.351, + "2005": 0.353, + "2006": 0.351, + "2007": 0.354, + "2008": 0.359, + "2009": 0.361, + "2010": 0.366, + "2011": 0.371, + "2012": 0.377, + "2013": 0.31, + "2014": 0.31, + "2015": 0.315, + "2016": 0.321, + "2017": 0.33, + "2018": 0.336, + "2019": 0.338, + "2020": 0.332, + "2021": 0.331 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr103", + "Region": "RS III (Ouham Pende, Ouham)", + "1990": 0.367, + "1991": 0.365, + "1992": 0.359, + "1993": 0.354, + "1994": 0.356, + "1995": 0.361, + "1996": 0.345, + "1997": 0.351, + "1998": 0.355, + "1999": 0.362, + "2000": 0.361, + "2001": 0.36, + "2002": 0.356, + "2003": 0.344, + "2004": 0.344, + "2005": 0.346, + "2006": 0.344, + "2007": 0.346, + "2008": 0.349, + "2009": 0.35, + "2010": 0.354, + "2011": 0.358, + "2012": 0.365, + "2013": 0.298, + "2014": 0.297, + "2015": 0.302, + "2016": 0.307, + "2017": 0.316, + "2018": 0.321, + "2019": 0.323, + "2020": 0.317, + "2021": 0.316 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr104", + "Region": "RS IV (Haute-Kotto, Baminigui Bangoran, Vakaga)", + "1990": 0.373, + "1991": 0.372, + "1992": 0.366, + "1993": 0.36, + "1994": 0.362, + "1995": 0.366, + "1996": 0.35, + "1997": 0.356, + "1998": 0.358, + "1999": 0.365, + "2000": 0.363, + "2001": 0.362, + "2002": 0.357, + "2003": 0.344, + "2004": 0.344, + "2005": 0.345, + "2006": 0.343, + "2007": 0.344, + "2008": 0.348, + "2009": 0.349, + "2010": 0.352, + "2011": 0.358, + "2012": 0.366, + "2013": 0.301, + "2014": 0.302, + "2015": 0.309, + "2016": 0.316, + "2017": 0.326, + "2018": 0.334, + "2019": 0.337, + "2020": 0.331, + "2021": 0.33 + }, + { + "Country": "Central African Republic CAR", + "Continent": "Africa", + "ISO_Code": "CAF", + "Level": "Subnat", + "GDLCODE": "CAFr105", + "Region": "RS V (Basse Kotto, Mbornou, Houte Mbormou)", + "1990": 0.36, + "1991": 0.359, + "1992": 0.353, + "1993": 0.347, + "1994": 0.349, + "1995": 0.353, + "1996": 0.337, + "1997": 0.343, + "1998": 0.346, + "1999": 0.352, + "2000": 0.351, + "2001": 0.349, + "2002": 0.345, + "2003": 0.332, + "2004": 0.332, + "2005": 0.333, + "2006": 0.331, + "2007": 0.332, + "2008": 0.334, + "2009": 0.334, + "2010": 0.336, + "2011": 0.342, + "2012": 0.349, + "2013": 0.284, + "2014": 0.285, + "2015": 0.291, + "2016": 0.297, + "2017": 0.307, + "2018": 0.314, + "2019": 0.317, + "2020": 0.31, + "2021": 0.309 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "National", + "GDLCODE": "TCDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.329, + "2001": 0.34, + "2002": 0.343, + "2003": 0.329, + "2004": 0.386, + "2005": 0.395, + "2006": 0.38, + "2007": 0.393, + "2008": 0.388, + "2009": 0.41, + "2010": 0.425, + "2011": 0.421, + "2012": 0.429, + "2013": 0.429, + "2014": 0.435, + "2015": 0.437, + "2016": 0.424, + "2017": 0.416, + "2018": 0.414, + "2019": 0.415, + "2020": 0.401, + "2021": 0.395 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr101", + "Region": "Zone 1 (N'Djamena)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.412, + "2001": 0.43, + "2002": 0.439, + "2003": 0.429, + "2004": 0.498, + "2005": 0.515, + "2006": 0.505, + "2007": 0.525, + "2008": 0.526, + "2009": 0.557, + "2010": 0.581, + "2011": 0.574, + "2012": 0.58, + "2013": 0.576, + "2014": 0.58, + "2015": 0.579, + "2016": 0.563, + "2017": 0.552, + "2018": 0.549, + "2019": 0.548, + "2020": 0.532, + "2021": 0.525 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr102", + "Region": "Zone 2 (Borkou, Ennedi, Tibesti, Kanem, Barh El Gazal, Lac)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.312, + "2001": 0.324, + "2002": 0.328, + "2003": 0.315, + "2004": 0.373, + "2005": 0.383, + "2006": 0.37, + "2007": 0.383, + "2008": 0.379, + "2009": 0.402, + "2010": 0.418, + "2011": 0.417, + "2012": 0.427, + "2013": 0.429, + "2014": 0.437, + "2015": 0.442, + "2016": 0.429, + "2017": 0.42, + "2018": 0.419, + "2019": 0.419, + "2020": 0.405, + "2021": 0.399 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr103", + "Region": "Zone 3 (Guera, Batha, Salamat)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.311, + "2001": 0.321, + "2002": 0.324, + "2003": 0.31, + "2004": 0.365, + "2005": 0.374, + "2006": 0.359, + "2007": 0.371, + "2008": 0.366, + "2009": 0.387, + "2010": 0.401, + "2011": 0.398, + "2012": 0.407, + "2013": 0.407, + "2014": 0.413, + "2015": 0.416, + "2016": 0.405, + "2017": 0.398, + "2018": 0.398, + "2019": 0.4, + "2020": 0.387, + "2021": 0.381 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr104", + "Region": "Zone 4 (Ouaddai, Assongha, Sila, Biltine - Wadi Fira)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.31, + "2001": 0.32, + "2002": 0.323, + "2003": 0.308, + "2004": 0.363, + "2005": 0.372, + "2006": 0.357, + "2007": 0.368, + "2008": 0.363, + "2009": 0.384, + "2010": 0.398, + "2011": 0.392, + "2012": 0.396, + "2013": 0.393, + "2014": 0.395, + "2015": 0.394, + "2016": 0.389, + "2017": 0.387, + "2018": 0.393, + "2019": 0.4, + "2020": 0.386, + "2021": 0.38 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr105", + "Region": "Zone 5 (Chari-Baguimi, Dababa, Baguirmi, Hadjer Lamis)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.323, + "2001": 0.334, + "2002": 0.337, + "2003": 0.322, + "2004": 0.379, + "2005": 0.389, + "2006": 0.375, + "2007": 0.389, + "2008": 0.385, + "2009": 0.408, + "2010": 0.424, + "2011": 0.422, + "2012": 0.431, + "2013": 0.432, + "2014": 0.439, + "2015": 0.442, + "2016": 0.428, + "2017": 0.419, + "2018": 0.416, + "2019": 0.416, + "2020": 0.402, + "2021": 0.396 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr106", + "Region": "Zone 6 (Mayo-Kebbi Est and Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.335, + "2001": 0.346, + "2002": 0.349, + "2003": 0.334, + "2004": 0.392, + "2005": 0.396, + "2006": 0.377, + "2007": 0.385, + "2008": 0.375, + "2009": 0.393, + "2010": 0.403, + "2011": 0.402, + "2012": 0.412, + "2013": 0.414, + "2014": 0.422, + "2015": 0.427, + "2016": 0.416, + "2017": 0.41, + "2018": 0.412, + "2019": 0.414, + "2020": 0.4, + "2021": 0.394 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr107", + "Region": "Zone 7 (Logone Occidental & Oriental, Monts de Lam, Tandjile Est & Ouest)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.328, + "2001": 0.339, + "2002": 0.341, + "2003": 0.326, + "2004": 0.383, + "2005": 0.388, + "2006": 0.37, + "2007": 0.379, + "2008": 0.37, + "2009": 0.388, + "2010": 0.399, + "2011": 0.399, + "2012": 0.41, + "2013": 0.413, + "2014": 0.421, + "2015": 0.426, + "2016": 0.412, + "2017": 0.401, + "2018": 0.398, + "2019": 0.396, + "2020": 0.382, + "2021": 0.376 + }, + { + "Country": "Chad", + "Continent": "Africa", + "ISO_Code": "TCD", + "Level": "Subnat", + "GDLCODE": "TCDr108", + "Region": "Zone 8 (Mandoul, Moyen-Chari, Bahr Koh, Lac Iro)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.324, + "2001": 0.333, + "2002": 0.335, + "2003": 0.32, + "2004": 0.375, + "2005": 0.382, + "2006": 0.365, + "2007": 0.375, + "2008": 0.367, + "2009": 0.386, + "2010": 0.399, + "2011": 0.399, + "2012": 0.411, + "2013": 0.414, + "2014": 0.423, + "2015": 0.429, + "2016": 0.414, + "2017": 0.404, + "2018": 0.4, + "2019": 0.399, + "2020": 0.385, + "2021": 0.379 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "National", + "GDLCODE": "CHLt", + "Region": "Total", + "1990": 0.687, + "1991": 0.696, + "1992": 0.711, + "1993": 0.719, + "1994": 0.722, + "1995": 0.734, + "1996": 0.742, + "1997": 0.751, + "1998": 0.757, + "1999": 0.753, + "2000": 0.759, + "2001": 0.762, + "2002": 0.765, + "2003": 0.766, + "2004": 0.771, + "2005": 0.777, + "2006": 0.777, + "2007": 0.784, + "2008": 0.795, + "2009": 0.792, + "2010": 0.798, + "2011": 0.806, + "2012": 0.815, + "2013": 0.82, + "2014": 0.823, + "2015": 0.826, + "2016": 0.826, + "2017": 0.824, + "2018": 0.827, + "2019": 0.828, + "2020": 0.817, + "2021": 0.831 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr111", + "Region": "Aisen", + "1990": 0.66, + "1991": 0.669, + "1992": 0.684, + "1993": 0.692, + "1994": 0.695, + "1995": 0.706, + "1996": 0.715, + "1997": 0.724, + "1998": 0.729, + "1999": 0.726, + "2000": 0.731, + "2001": 0.734, + "2002": 0.737, + "2003": 0.738, + "2004": 0.743, + "2005": 0.749, + "2006": 0.749, + "2007": 0.756, + "2008": 0.766, + "2009": 0.764, + "2010": 0.77, + "2011": 0.777, + "2012": 0.786, + "2013": 0.791, + "2014": 0.794, + "2015": 0.797, + "2016": 0.797, + "2017": 0.795, + "2018": 0.798, + "2019": 0.799, + "2020": 0.788, + "2021": 0.802 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr102", + "Region": "Antofagasta", + "1990": 0.7, + "1991": 0.709, + "1992": 0.724, + "1993": 0.732, + "1994": 0.736, + "1995": 0.747, + "1996": 0.756, + "1997": 0.765, + "1998": 0.771, + "1999": 0.767, + "2000": 0.773, + "2001": 0.776, + "2002": 0.779, + "2003": 0.78, + "2004": 0.785, + "2005": 0.791, + "2006": 0.792, + "2007": 0.799, + "2008": 0.809, + "2009": 0.806, + "2010": 0.813, + "2011": 0.82, + "2012": 0.83, + "2013": 0.835, + "2014": 0.838, + "2015": 0.841, + "2016": 0.841, + "2017": 0.839, + "2018": 0.842, + "2019": 0.843, + "2020": 0.831, + "2021": 0.846 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr109", + "Region": "Arbucania", + "1990": 0.646, + "1991": 0.655, + "1992": 0.669, + "1993": 0.677, + "1994": 0.68, + "1995": 0.691, + "1996": 0.7, + "1997": 0.708, + "1998": 0.714, + "1999": 0.71, + "2000": 0.715, + "2001": 0.719, + "2002": 0.721, + "2003": 0.722, + "2004": 0.727, + "2005": 0.733, + "2006": 0.734, + "2007": 0.74, + "2008": 0.751, + "2009": 0.748, + "2010": 0.754, + "2011": 0.761, + "2012": 0.77, + "2013": 0.775, + "2014": 0.778, + "2015": 0.781, + "2016": 0.781, + "2017": 0.779, + "2018": 0.782, + "2019": 0.783, + "2020": 0.772, + "2021": 0.786 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr103", + "Region": "Atacama", + "1990": 0.682, + "1991": 0.69, + "1992": 0.705, + "1993": 0.713, + "1994": 0.717, + "1995": 0.728, + "1996": 0.737, + "1997": 0.746, + "1998": 0.751, + "1999": 0.748, + "2000": 0.753, + "2001": 0.757, + "2002": 0.759, + "2003": 0.76, + "2004": 0.765, + "2005": 0.771, + "2006": 0.772, + "2007": 0.779, + "2008": 0.789, + "2009": 0.786, + "2010": 0.793, + "2011": 0.8, + "2012": 0.809, + "2013": 0.814, + "2014": 0.817, + "2015": 0.82, + "2016": 0.821, + "2017": 0.818, + "2018": 0.821, + "2019": 0.822, + "2020": 0.811, + "2021": 0.825 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr108", + "Region": "Bio Bio", + "1990": 0.673, + "1991": 0.682, + "1992": 0.696, + "1993": 0.705, + "1994": 0.708, + "1995": 0.719, + "1996": 0.728, + "1997": 0.737, + "1998": 0.742, + "1999": 0.739, + "2000": 0.744, + "2001": 0.747, + "2002": 0.75, + "2003": 0.751, + "2004": 0.756, + "2005": 0.762, + "2006": 0.762, + "2007": 0.769, + "2008": 0.78, + "2009": 0.777, + "2010": 0.783, + "2011": 0.791, + "2012": 0.8, + "2013": 0.805, + "2014": 0.808, + "2015": 0.811, + "2016": 0.811, + "2017": 0.809, + "2018": 0.812, + "2019": 0.813, + "2020": 0.801, + "2021": 0.816 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr104", + "Region": "Coquimbo", + "1990": 0.666, + "1991": 0.675, + "1992": 0.69, + "1993": 0.698, + "1994": 0.701, + "1995": 0.713, + "1996": 0.721, + "1997": 0.73, + "1998": 0.735, + "1999": 0.732, + "2000": 0.737, + "2001": 0.741, + "2002": 0.743, + "2003": 0.744, + "2004": 0.749, + "2005": 0.755, + "2006": 0.756, + "2007": 0.762, + "2008": 0.773, + "2009": 0.77, + "2010": 0.776, + "2011": 0.784, + "2012": 0.793, + "2013": 0.798, + "2014": 0.801, + "2015": 0.804, + "2016": 0.804, + "2017": 0.802, + "2018": 0.805, + "2019": 0.806, + "2020": 0.794, + "2021": 0.809 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr110", + "Region": "Los Lagos (incl Los Rios)", + "1990": 0.656, + "1991": 0.665, + "1992": 0.68, + "1993": 0.688, + "1994": 0.691, + "1995": 0.702, + "1996": 0.71, + "1997": 0.719, + "1998": 0.725, + "1999": 0.721, + "2000": 0.727, + "2001": 0.73, + "2002": 0.732, + "2003": 0.733, + "2004": 0.739, + "2005": 0.744, + "2006": 0.745, + "2007": 0.752, + "2008": 0.762, + "2009": 0.759, + "2010": 0.765, + "2011": 0.773, + "2012": 0.782, + "2013": 0.787, + "2014": 0.79, + "2015": 0.792, + "2016": 0.793, + "2017": 0.791, + "2018": 0.794, + "2019": 0.795, + "2020": 0.783, + "2021": 0.798 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr112", + "Region": "Magallanes and La Antartica Chilena", + "1990": 0.701, + "1991": 0.711, + "1992": 0.726, + "1993": 0.734, + "1994": 0.737, + "1995": 0.749, + "1996": 0.757, + "1997": 0.767, + "1998": 0.772, + "1999": 0.769, + "2000": 0.774, + "2001": 0.778, + "2002": 0.78, + "2003": 0.781, + "2004": 0.786, + "2005": 0.792, + "2006": 0.793, + "2007": 0.8, + "2008": 0.811, + "2009": 0.808, + "2010": 0.814, + "2011": 0.822, + "2012": 0.831, + "2013": 0.836, + "2014": 0.839, + "2015": 0.842, + "2016": 0.843, + "2017": 0.84, + "2018": 0.843, + "2019": 0.844, + "2020": 0.833, + "2021": 0.847 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr107", + "Region": "Maule", + "1990": 0.665, + "1991": 0.674, + "1992": 0.688, + "1993": 0.696, + "1994": 0.7, + "1995": 0.711, + "1996": 0.719, + "1997": 0.728, + "1998": 0.733, + "1999": 0.73, + "2000": 0.735, + "2001": 0.739, + "2002": 0.741, + "2003": 0.742, + "2004": 0.747, + "2005": 0.753, + "2006": 0.754, + "2007": 0.761, + "2008": 0.771, + "2009": 0.768, + "2010": 0.774, + "2011": 0.782, + "2012": 0.791, + "2013": 0.796, + "2014": 0.799, + "2015": 0.802, + "2016": 0.802, + "2017": 0.8, + "2018": 0.803, + "2019": 0.804, + "2020": 0.792, + "2021": 0.807 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr106", + "Region": "OHiggins", + "1990": 0.679, + "1991": 0.688, + "1992": 0.703, + "1993": 0.711, + "1994": 0.714, + "1995": 0.725, + "1996": 0.734, + "1997": 0.743, + "1998": 0.748, + "1999": 0.745, + "2000": 0.75, + "2001": 0.754, + "2002": 0.756, + "2003": 0.757, + "2004": 0.762, + "2005": 0.768, + "2006": 0.769, + "2007": 0.776, + "2008": 0.786, + "2009": 0.783, + "2010": 0.79, + "2011": 0.797, + "2012": 0.807, + "2013": 0.811, + "2014": 0.814, + "2015": 0.817, + "2016": 0.818, + "2017": 0.816, + "2018": 0.818, + "2019": 0.819, + "2020": 0.808, + "2021": 0.822 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr113", + "Region": "Region Metropolitana", + "1990": 0.706, + "1991": 0.715, + "1992": 0.73, + "1993": 0.739, + "1994": 0.742, + "1995": 0.754, + "1996": 0.762, + "1997": 0.772, + "1998": 0.777, + "1999": 0.774, + "2000": 0.779, + "2001": 0.783, + "2002": 0.785, + "2003": 0.786, + "2004": 0.792, + "2005": 0.797, + "2006": 0.798, + "2007": 0.805, + "2008": 0.816, + "2009": 0.813, + "2010": 0.819, + "2011": 0.827, + "2012": 0.837, + "2013": 0.841, + "2014": 0.844, + "2015": 0.847, + "2016": 0.848, + "2017": 0.846, + "2018": 0.849, + "2019": 0.85, + "2020": 0.838, + "2021": 0.853 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr101", + "Region": "Tarapaca (incl Arica and Parinacota)", + "1990": 0.687, + "1991": 0.696, + "1992": 0.711, + "1993": 0.719, + "1994": 0.723, + "1995": 0.734, + "1996": 0.743, + "1997": 0.752, + "1998": 0.757, + "1999": 0.754, + "2000": 0.759, + "2001": 0.763, + "2002": 0.765, + "2003": 0.766, + "2004": 0.771, + "2005": 0.777, + "2006": 0.778, + "2007": 0.785, + "2008": 0.795, + "2009": 0.792, + "2010": 0.799, + "2011": 0.806, + "2012": 0.816, + "2013": 0.821, + "2014": 0.823, + "2015": 0.826, + "2016": 0.827, + "2017": 0.825, + "2018": 0.828, + "2019": 0.829, + "2020": 0.817, + "2021": 0.832 + }, + { + "Country": "Chili", + "Continent": "America", + "ISO_Code": "CHL", + "Level": "Subnat", + "GDLCODE": "CHLr105", + "Region": "Valparaiso (former Aconcagua)", + "1990": 0.694, + "1991": 0.703, + "1992": 0.718, + "1993": 0.726, + "1994": 0.73, + "1995": 0.741, + "1996": 0.75, + "1997": 0.759, + "1998": 0.764, + "1999": 0.761, + "2000": 0.766, + "2001": 0.77, + "2002": 0.772, + "2003": 0.773, + "2004": 0.778, + "2005": 0.784, + "2006": 0.785, + "2007": 0.792, + "2008": 0.803, + "2009": 0.8, + "2010": 0.806, + "2011": 0.813, + "2012": 0.823, + "2013": 0.828, + "2014": 0.831, + "2015": 0.834, + "2016": 0.834, + "2017": 0.832, + "2018": 0.835, + "2019": 0.836, + "2020": 0.824, + "2021": 0.839 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "National", + "GDLCODE": "CHNt", + "Region": "Total", + "1990": 0.406, + "1991": 0.417, + "1992": 0.435, + "1993": 0.451, + "1994": 0.467, + "1995": 0.478, + "1996": 0.49, + "1997": 0.503, + "1998": 0.512, + "1999": 0.522, + "2000": 0.533, + "2001": 0.544, + "2002": 0.557, + "2003": 0.571, + "2004": 0.585, + "2005": 0.6, + "2006": 0.618, + "2007": 0.638, + "2008": 0.651, + "2009": 0.663, + "2010": 0.677, + "2011": 0.689, + "2012": 0.701, + "2013": 0.71, + "2014": 0.721, + "2015": 0.73, + "2016": 0.739, + "2017": 0.749, + "2018": 0.758, + "2019": 0.766, + "2020": 0.769, + "2021": 0.78 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr112", + "Region": "Anhui", + "1990": 0.334, + "1991": 0.345, + "1992": 0.361, + "1993": 0.377, + "1994": 0.39, + "1995": 0.415, + "1996": 0.427, + "1997": 0.44, + "1998": 0.451, + "1999": 0.463, + "2000": 0.469, + "2001": 0.483, + "2002": 0.494, + "2003": 0.506, + "2004": 0.521, + "2005": 0.529, + "2006": 0.546, + "2007": 0.567, + "2008": 0.583, + "2009": 0.602, + "2010": 0.624, + "2011": 0.645, + "2012": 0.66, + "2013": 0.672, + "2014": 0.684, + "2015": 0.69, + "2016": 0.702, + "2017": 0.714, + "2018": 0.729, + "2019": 0.738, + "2020": 0.74, + "2021": 0.752 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr101", + "Region": "Beijing", + "1990": 0.558, + "1991": 0.571, + "1992": 0.591, + "1993": 0.609, + "1994": 0.618, + "1995": 0.624, + "1996": 0.632, + "1997": 0.651, + "1998": 0.671, + "1999": 0.69, + "2000": 0.706, + "2001": 0.721, + "2002": 0.739, + "2003": 0.753, + "2004": 0.765, + "2005": 0.773, + "2006": 0.787, + "2007": 0.804, + "2008": 0.805, + "2009": 0.81, + "2010": 0.814, + "2011": 0.817, + "2012": 0.826, + "2013": 0.834, + "2014": 0.843, + "2015": 0.852, + "2016": 0.862, + "2017": 0.872, + "2018": 0.883, + "2019": 0.893, + "2020": 0.895, + "2021": 0.908 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr122", + "Region": "Chongqing", + "1990": 0.359, + "1991": 0.369, + "1992": 0.386, + "1993": 0.402, + "1994": 0.425, + "1995": 0.447, + "1996": 0.46, + "1997": 0.477, + "1998": 0.485, + "1999": 0.493, + "2000": 0.501, + "2001": 0.515, + "2002": 0.532, + "2003": 0.548, + "2004": 0.562, + "2005": 0.573, + "2006": 0.586, + "2007": 0.607, + "2008": 0.627, + "2009": 0.644, + "2010": 0.661, + "2011": 0.682, + "2012": 0.698, + "2013": 0.709, + "2014": 0.726, + "2015": 0.738, + "2016": 0.752, + "2017": 0.762, + "2018": 0.767, + "2019": 0.778, + "2020": 0.78, + "2021": 0.792 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr113", + "Region": "Fujian", + "1990": 0.434, + "1991": 0.445, + "1992": 0.464, + "1993": 0.48, + "1994": 0.513, + "1995": 0.523, + "1996": 0.536, + "1997": 0.552, + "1998": 0.564, + "1999": 0.577, + "2000": 0.586, + "2001": 0.592, + "2002": 0.602, + "2003": 0.613, + "2004": 0.621, + "2005": 0.63, + "2006": 0.647, + "2007": 0.67, + "2008": 0.682, + "2009": 0.7, + "2010": 0.717, + "2011": 0.73, + "2012": 0.744, + "2013": 0.755, + "2014": 0.77, + "2015": 0.778, + "2016": 0.79, + "2017": 0.804, + "2018": 0.818, + "2019": 0.829, + "2020": 0.831, + "2021": 0.843 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr128", + "Region": "Gansu", + "1990": 0.312, + "1991": 0.323, + "1992": 0.339, + "1993": 0.354, + "1994": 0.358, + "1995": 0.365, + "1996": 0.393, + "1997": 0.401, + "1998": 0.415, + "1999": 0.426, + "2000": 0.437, + "2001": 0.446, + "2002": 0.457, + "2003": 0.47, + "2004": 0.485, + "2005": 0.495, + "2006": 0.515, + "2007": 0.535, + "2008": 0.545, + "2009": 0.554, + "2010": 0.571, + "2011": 0.589, + "2012": 0.603, + "2013": 0.614, + "2014": 0.626, + "2015": 0.626, + "2016": 0.631, + "2017": 0.635, + "2018": 0.645, + "2019": 0.654, + "2020": 0.656, + "2021": 0.667 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr119", + "Region": "Guangdong", + "1990": 0.488, + "1991": 0.5, + "1992": 0.519, + "1993": 0.537, + "1994": 0.548, + "1995": 0.556, + "1996": 0.563, + "1997": 0.574, + "1998": 0.583, + "1999": 0.592, + "2000": 0.606, + "2001": 0.616, + "2002": 0.63, + "2003": 0.646, + "2004": 0.657, + "2005": 0.672, + "2006": 0.69, + "2007": 0.707, + "2008": 0.715, + "2009": 0.722, + "2010": 0.73, + "2011": 0.737, + "2012": 0.744, + "2013": 0.753, + "2014": 0.765, + "2015": 0.777, + "2016": 0.787, + "2017": 0.796, + "2018": 0.802, + "2019": 0.81, + "2020": 0.813, + "2021": 0.825 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr120", + "Region": "Guangxi", + "1990": 0.345, + "1991": 0.356, + "1992": 0.372, + "1993": 0.388, + "1994": 0.41, + "1995": 0.419, + "1996": 0.427, + "1997": 0.432, + "1998": 0.446, + "1999": 0.451, + "2000": 0.454, + "2001": 0.464, + "2002": 0.476, + "2003": 0.485, + "2004": 0.499, + "2005": 0.509, + "2006": 0.528, + "2007": 0.549, + "2008": 0.562, + "2009": 0.575, + "2010": 0.595, + "2011": 0.614, + "2012": 0.624, + "2013": 0.633, + "2014": 0.645, + "2015": 0.656, + "2016": 0.666, + "2017": 0.675, + "2018": 0.684, + "2019": 0.693, + "2020": 0.696, + "2021": 0.707 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr124", + "Region": "Guizhou", + "1990": 0.273, + "1991": 0.283, + "1992": 0.298, + "1993": 0.313, + "1994": 0.323, + "1995": 0.329, + "1996": 0.338, + "1997": 0.348, + "1998": 0.354, + "1999": 0.367, + "2000": 0.376, + "2001": 0.386, + "2002": 0.396, + "2003": 0.411, + "2004": 0.421, + "2005": 0.444, + "2006": 0.463, + "2007": 0.49, + "2008": 0.513, + "2009": 0.528, + "2010": 0.544, + "2011": 0.566, + "2012": 0.591, + "2013": 0.611, + "2014": 0.632, + "2015": 0.651, + "2016": 0.665, + "2017": 0.681, + "2018": 0.694, + "2019": 0.705, + "2020": 0.707, + "2021": 0.718 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr121", + "Region": "Hainan", + "1990": 0.442, + "1991": 0.454, + "1992": 0.472, + "1993": 0.489, + "1994": 0.497, + "1995": 0.484, + "1996": 0.482, + "1997": 0.484, + "1998": 0.492, + "1999": 0.503, + "2000": 0.511, + "2001": 0.52, + "2002": 0.532, + "2003": 0.541, + "2004": 0.547, + "2005": 0.552, + "2006": 0.569, + "2007": 0.585, + "2008": 0.6, + "2009": 0.612, + "2010": 0.633, + "2011": 0.65, + "2012": 0.664, + "2013": 0.675, + "2014": 0.689, + "2015": 0.699, + "2016": 0.709, + "2017": 0.718, + "2018": 0.725, + "2019": 0.734, + "2020": 0.737, + "2021": 0.748 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr103", + "Region": "Hebei", + "1990": 0.385, + "1991": 0.396, + "1992": 0.413, + "1993": 0.429, + "1994": 0.444, + "1995": 0.456, + "1996": 0.471, + "1997": 0.485, + "1998": 0.494, + "1999": 0.503, + "2000": 0.515, + "2001": 0.525, + "2002": 0.535, + "2003": 0.549, + "2004": 0.565, + "2005": 0.579, + "2006": 0.594, + "2007": 0.612, + "2008": 0.624, + "2009": 0.634, + "2010": 0.645, + "2011": 0.657, + "2012": 0.665, + "2013": 0.667, + "2014": 0.672, + "2015": 0.677, + "2016": 0.686, + "2017": 0.691, + "2018": 0.695, + "2019": 0.704, + "2020": 0.706, + "2021": 0.717 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr108", + "Region": "Heilongjiang", + "1990": 0.406, + "1991": 0.418, + "1992": 0.435, + "1993": 0.452, + "1994": 0.471, + "1995": 0.478, + "1996": 0.493, + "1997": 0.505, + "1998": 0.507, + "1999": 0.512, + "2000": 0.526, + "2001": 0.533, + "2002": 0.54, + "2003": 0.551, + "2004": 0.561, + "2005": 0.574, + "2006": 0.587, + "2007": 0.598, + "2008": 0.61, + "2009": 0.612, + "2010": 0.622, + "2011": 0.637, + "2012": 0.65, + "2013": 0.656, + "2014": 0.66, + "2015": 0.654, + "2016": 0.656, + "2017": 0.657, + "2018": 0.66, + "2019": 0.667, + "2020": 0.669, + "2021": 0.68 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr116", + "Region": "Henan", + "1990": 0.336, + "1991": 0.346, + "1992": 0.363, + "1993": 0.378, + "1994": 0.397, + "1995": 0.419, + "1996": 0.438, + "1997": 0.448, + "1998": 0.456, + "1999": 0.463, + "2000": 0.478, + "2001": 0.489, + "2002": 0.499, + "2003": 0.513, + "2004": 0.534, + "2005": 0.555, + "2006": 0.573, + "2007": 0.596, + "2008": 0.612, + "2009": 0.623, + "2010": 0.637, + "2011": 0.649, + "2012": 0.66, + "2013": 0.669, + "2014": 0.682, + "2015": 0.691, + "2016": 0.701, + "2017": 0.712, + "2018": 0.723, + "2019": 0.732, + "2020": 0.734, + "2021": 0.746 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr117", + "Region": "Hubei", + "1990": 0.372, + "1991": 0.383, + "1992": 0.4, + "1993": 0.416, + "1994": 0.427, + "1995": 0.435, + "1996": 0.45, + "1997": 0.464, + "1998": 0.475, + "1999": 0.481, + "2000": 0.495, + "2001": 0.51, + "2002": 0.52, + "2003": 0.532, + "2004": 0.545, + "2005": 0.56, + "2006": 0.579, + "2007": 0.603, + "2008": 0.622, + "2009": 0.642, + "2010": 0.662, + "2011": 0.681, + "2012": 0.696, + "2013": 0.709, + "2014": 0.724, + "2015": 0.734, + "2016": 0.745, + "2017": 0.756, + "2018": 0.769, + "2019": 0.779, + "2020": 0.782, + "2021": 0.794 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr118", + "Region": "Hunan", + "1990": 0.346, + "1991": 0.357, + "1992": 0.374, + "1993": 0.389, + "1994": 0.407, + "1995": 0.422, + "1996": 0.437, + "1997": 0.449, + "1998": 0.456, + "1999": 0.466, + "2000": 0.482, + "2001": 0.493, + "2002": 0.505, + "2003": 0.518, + "2004": 0.533, + "2005": 0.544, + "2006": 0.561, + "2007": 0.584, + "2008": 0.603, + "2009": 0.62, + "2010": 0.637, + "2011": 0.652, + "2012": 0.666, + "2013": 0.676, + "2014": 0.69, + "2015": 0.702, + "2016": 0.711, + "2017": 0.72, + "2018": 0.725, + "2019": 0.737, + "2020": 0.74, + "2021": 0.751 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr105", + "Region": "Inner Mongolia", + "1990": 0.376, + "1991": 0.387, + "1992": 0.404, + "1993": 0.42, + "1994": 0.433, + "1995": 0.439, + "1996": 0.455, + "1997": 0.467, + "1998": 0.478, + "1999": 0.492, + "2000": 0.504, + "2001": 0.517, + "2002": 0.534, + "2003": 0.559, + "2004": 0.58, + "2005": 0.599, + "2006": 0.619, + "2007": 0.641, + "2008": 0.658, + "2009": 0.676, + "2010": 0.686, + "2011": 0.695, + "2012": 0.707, + "2013": 0.715, + "2014": 0.724, + "2015": 0.733, + "2016": 0.74, + "2017": 0.746, + "2018": 0.753, + "2019": 0.761, + "2020": 0.764, + "2021": 0.775 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr110", + "Region": "Jiangsu", + "1990": 0.464, + "1991": 0.475, + "1992": 0.494, + "1993": 0.511, + "1994": 0.53, + "1995": 0.54, + "1996": 0.552, + "1997": 0.562, + "1998": 0.571, + "1999": 0.582, + "2000": 0.593, + "2001": 0.604, + "2002": 0.618, + "2003": 0.636, + "2004": 0.651, + "2005": 0.672, + "2006": 0.69, + "2007": 0.71, + "2008": 0.725, + "2009": 0.739, + "2010": 0.755, + "2011": 0.767, + "2012": 0.778, + "2013": 0.789, + "2014": 0.802, + "2015": 0.815, + "2016": 0.825, + "2017": 0.835, + "2018": 0.842, + "2019": 0.849, + "2020": 0.851, + "2021": 0.864 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr114", + "Region": "Jiangxi", + "1990": 0.333, + "1991": 0.344, + "1992": 0.36, + "1993": 0.376, + "1994": 0.392, + "1995": 0.399, + "1996": 0.417, + "1997": 0.43, + "1998": 0.438, + "1999": 0.449, + "2000": 0.46, + "2001": 0.469, + "2002": 0.483, + "2003": 0.498, + "2004": 0.515, + "2005": 0.529, + "2006": 0.549, + "2007": 0.57, + "2008": 0.586, + "2009": 0.599, + "2010": 0.618, + "2011": 0.637, + "2012": 0.648, + "2013": 0.66, + "2014": 0.673, + "2015": 0.682, + "2016": 0.693, + "2017": 0.702, + "2018": 0.714, + "2019": 0.724, + "2020": 0.726, + "2021": 0.738 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr107", + "Region": "Jilin", + "1990": 0.399, + "1991": 0.41, + "1992": 0.428, + "1993": 0.444, + "1994": 0.458, + "1995": 0.463, + "1996": 0.478, + "1997": 0.485, + "1998": 0.494, + "1999": 0.503, + "2000": 0.508, + "2001": 0.515, + "2002": 0.523, + "2003": 0.524, + "2004": 0.534, + "2005": 0.545, + "2006": 0.563, + "2007": 0.588, + "2008": 0.603, + "2009": 0.619, + "2010": 0.633, + "2011": 0.649, + "2012": 0.664, + "2013": 0.672, + "2014": 0.68, + "2015": 0.68, + "2016": 0.685, + "2017": 0.688, + "2018": 0.689, + "2019": 0.695, + "2020": 0.697, + "2021": 0.708 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr106", + "Region": "Liaoning", + "1990": 0.486, + "1991": 0.498, + "1992": 0.517, + "1993": 0.535, + "1994": 0.538, + "1995": 0.531, + "1996": 0.538, + "1997": 0.551, + "1998": 0.561, + "1999": 0.573, + "2000": 0.585, + "2001": 0.594, + "2002": 0.603, + "2003": 0.61, + "2004": 0.613, + "2005": 0.622, + "2006": 0.639, + "2007": 0.659, + "2008": 0.672, + "2009": 0.679, + "2010": 0.68, + "2011": 0.692, + "2012": 0.702, + "2013": 0.709, + "2014": 0.715, + "2015": 0.715, + "2016": 0.715, + "2017": 0.72, + "2018": 0.728, + "2019": 0.735, + "2020": 0.738, + "2021": 0.749 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr130", + "Region": "Ningxia", + "1990": 0.357, + "1991": 0.368, + "1992": 0.385, + "1993": 0.401, + "1994": 0.414, + "1995": 0.426, + "1996": 0.436, + "1997": 0.444, + "1998": 0.454, + "1999": 0.465, + "2000": 0.476, + "2001": 0.491, + "2002": 0.503, + "2003": 0.52, + "2004": 0.532, + "2005": 0.538, + "2006": 0.556, + "2007": 0.583, + "2008": 0.61, + "2009": 0.623, + "2010": 0.643, + "2011": 0.661, + "2012": 0.671, + "2013": 0.678, + "2014": 0.686, + "2015": 0.69, + "2016": 0.698, + "2017": 0.713, + "2018": 0.721, + "2019": 0.728, + "2020": 0.73, + "2021": 0.742 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr129", + "Region": "Qinghai", + "1990": 0.372, + "1991": 0.383, + "1992": 0.4, + "1993": 0.416, + "1994": 0.425, + "1995": 0.429, + "1996": 0.431, + "1997": 0.439, + "1998": 0.448, + "1999": 0.46, + "2000": 0.469, + "2001": 0.484, + "2002": 0.499, + "2003": 0.511, + "2004": 0.521, + "2005": 0.53, + "2006": 0.548, + "2007": 0.568, + "2008": 0.59, + "2009": 0.595, + "2010": 0.613, + "2011": 0.627, + "2012": 0.639, + "2013": 0.651, + "2014": 0.661, + "2015": 0.671, + "2016": 0.686, + "2017": 0.693, + "2018": 0.704, + "2019": 0.711, + "2020": 0.714, + "2021": 0.725 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr127", + "Region": "Shaanxi", + "1990": 0.345, + "1991": 0.356, + "1992": 0.372, + "1993": 0.388, + "1994": 0.395, + "1995": 0.403, + "1996": 0.416, + "1997": 0.428, + "1998": 0.436, + "1999": 0.45, + "2000": 0.464, + "2001": 0.477, + "2002": 0.492, + "2003": 0.507, + "2004": 0.525, + "2005": 0.547, + "2006": 0.57, + "2007": 0.592, + "2008": 0.616, + "2009": 0.631, + "2010": 0.652, + "2011": 0.671, + "2012": 0.69, + "2013": 0.703, + "2014": 0.717, + "2015": 0.719, + "2016": 0.726, + "2017": 0.739, + "2018": 0.75, + "2019": 0.758, + "2020": 0.761, + "2021": 0.772 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr115", + "Region": "Shandong", + "1990": 0.419, + "1991": 0.43, + "1992": 0.448, + "1993": 0.464, + "1994": 0.488, + "1995": 0.502, + "1996": 0.517, + "1997": 0.528, + "1998": 0.536, + "1999": 0.547, + "2000": 0.557, + "2001": 0.567, + "2002": 0.58, + "2003": 0.586, + "2004": 0.605, + "2005": 0.623, + "2006": 0.644, + "2007": 0.66, + "2008": 0.676, + "2009": 0.687, + "2010": 0.696, + "2011": 0.704, + "2012": 0.715, + "2013": 0.725, + "2014": 0.734, + "2015": 0.746, + "2016": 0.752, + "2017": 0.756, + "2018": 0.759, + "2019": 0.766, + "2020": 0.768, + "2021": 0.78 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr109", + "Region": "Shanghai", + "1990": 0.607, + "1991": 0.62, + "1992": 0.641, + "1993": 0.66, + "1994": 0.67, + "1995": 0.676, + "1996": 0.687, + "1997": 0.701, + "1998": 0.71, + "1999": 0.722, + "2000": 0.735, + "2001": 0.741, + "2002": 0.749, + "2003": 0.763, + "2004": 0.774, + "2005": 0.78, + "2006": 0.792, + "2007": 0.805, + "2008": 0.807, + "2009": 0.813, + "2010": 0.816, + "2011": 0.816, + "2012": 0.821, + "2013": 0.827, + "2014": 0.839, + "2015": 0.847, + "2016": 0.861, + "2017": 0.871, + "2018": 0.879, + "2019": 0.885, + "2020": 0.888, + "2021": 0.901 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr104", + "Region": "Shanxi", + "1990": 0.366, + "1991": 0.377, + "1992": 0.394, + "1993": 0.409, + "1994": 0.413, + "1995": 0.429, + "1996": 0.445, + "1997": 0.459, + "1998": 0.47, + "1999": 0.475, + "2000": 0.485, + "2001": 0.495, + "2002": 0.513, + "2003": 0.537, + "2004": 0.556, + "2005": 0.571, + "2006": 0.587, + "2007": 0.612, + "2008": 0.63, + "2009": 0.627, + "2010": 0.646, + "2011": 0.661, + "2012": 0.668, + "2013": 0.667, + "2014": 0.667, + "2015": 0.663, + "2016": 0.662, + "2017": 0.685, + "2018": 0.695, + "2019": 0.702, + "2020": 0.704, + "2021": 0.715 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr123", + "Region": "Sichuan", + "1990": 0.335, + "1991": 0.345, + "1992": 0.362, + "1993": 0.377, + "1994": 0.389, + "1995": 0.407, + "1996": 0.421, + "1997": 0.436, + "1998": 0.444, + "1999": 0.454, + "2000": 0.464, + "2001": 0.473, + "2002": 0.485, + "2003": 0.496, + "2004": 0.511, + "2005": 0.523, + "2006": 0.542, + "2007": 0.566, + "2008": 0.585, + "2009": 0.6, + "2010": 0.619, + "2011": 0.638, + "2012": 0.655, + "2013": 0.665, + "2014": 0.677, + "2015": 0.683, + "2016": 0.693, + "2017": 0.708, + "2018": 0.722, + "2019": 0.731, + "2020": 0.734, + "2021": 0.745 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr102", + "Region": "Tianjin", + "1990": 0.508, + "1991": 0.521, + "1992": 0.54, + "1993": 0.558, + "1994": 0.575, + "1995": 0.584, + "1996": 0.601, + "1997": 0.613, + "1998": 0.622, + "1999": 0.632, + "2000": 0.641, + "2001": 0.65, + "2002": 0.662, + "2003": 0.679, + "2004": 0.69, + "2005": 0.708, + "2006": 0.717, + "2007": 0.727, + "2008": 0.743, + "2009": 0.75, + "2010": 0.759, + "2011": 0.765, + "2012": 0.773, + "2013": 0.776, + "2014": 0.781, + "2015": 0.78, + "2016": 0.784, + "2017": 0.791, + "2018": 0.797, + "2019": 0.803, + "2020": 0.806, + "2021": 0.818 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr126", + "Region": "Tibet", + "1990": 0.315, + "1991": 0.325, + "1992": 0.341, + "1993": 0.356, + "1994": 0.362, + "1995": 0.368, + "1996": 0.379, + "1997": 0.398, + "1998": 0.42, + "1999": 0.441, + "2000": 0.452, + "2001": 0.472, + "2002": 0.49, + "2003": 0.503, + "2004": 0.514, + "2005": 0.521, + "2006": 0.539, + "2007": 0.555, + "2008": 0.564, + "2009": 0.579, + "2010": 0.588, + "2011": 0.6, + "2012": 0.618, + "2013": 0.635, + "2014": 0.651, + "2015": 0.663, + "2016": 0.676, + "2017": 0.69, + "2018": 0.703, + "2019": 0.712, + "2020": 0.715, + "2021": 0.726 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr131", + "Region": "Xinjiang", + "1990": 0.406, + "1991": 0.418, + "1992": 0.435, + "1993": 0.452, + "1994": 0.468, + "1995": 0.473, + "1996": 0.475, + "1997": 0.491, + "1998": 0.498, + "1999": 0.506, + "2000": 0.523, + "2001": 0.532, + "2002": 0.539, + "2003": 0.556, + "2004": 0.565, + "2005": 0.577, + "2006": 0.593, + "2007": 0.606, + "2008": 0.618, + "2009": 0.619, + "2010": 0.642, + "2011": 0.658, + "2012": 0.672, + "2013": 0.685, + "2014": 0.697, + "2015": 0.694, + "2016": 0.694, + "2017": 0.709, + "2018": 0.723, + "2019": 0.728, + "2020": 0.73, + "2021": 0.742 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr125", + "Region": "Yunnan", + "1990": 0.349, + "1991": 0.359, + "1992": 0.376, + "1993": 0.392, + "1994": 0.4, + "1995": 0.409, + "1996": 0.43, + "1997": 0.439, + "1998": 0.449, + "1999": 0.454, + "2000": 0.459, + "2001": 0.464, + "2002": 0.474, + "2003": 0.484, + "2004": 0.498, + "2005": 0.506, + "2006": 0.524, + "2007": 0.546, + "2008": 0.56, + "2009": 0.572, + "2010": 0.585, + "2011": 0.603, + "2012": 0.622, + "2013": 0.639, + "2014": 0.651, + "2015": 0.659, + "2016": 0.67, + "2017": 0.683, + "2018": 0.696, + "2019": 0.709, + "2020": 0.712, + "2021": 0.723 + }, + { + "Country": "China", + "Continent": "Asia/Pacific", + "ISO_Code": "CHN", + "Level": "Subnat", + "GDLCODE": "CHNr111", + "Region": "Zhejiang", + "1990": 0.468, + "1991": 0.48, + "1992": 0.499, + "1993": 0.516, + "1994": 0.54, + "1995": 0.556, + "1996": 0.569, + "1997": 0.581, + "1998": 0.59, + "1999": 0.602, + "2000": 0.613, + "2001": 0.624, + "2002": 0.643, + "2003": 0.664, + "2004": 0.676, + "2005": 0.686, + "2006": 0.703, + "2007": 0.721, + "2008": 0.729, + "2009": 0.737, + "2010": 0.751, + "2011": 0.758, + "2012": 0.767, + "2013": 0.775, + "2014": 0.785, + "2015": 0.796, + "2016": 0.805, + "2017": 0.814, + "2018": 0.823, + "2019": 0.83, + "2020": 0.832, + "2021": 0.845 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "National", + "GDLCODE": "COLt", + "Region": "Total", + "1990": 0.661, + "1991": 0.662, + "1992": 0.665, + "1993": 0.672, + "1994": 0.679, + "1995": 0.684, + "1996": 0.684, + "1997": 0.686, + "1998": 0.685, + "1999": 0.676, + "2000": 0.677, + "2001": 0.677, + "2002": 0.678, + "2003": 0.681, + "2004": 0.686, + "2005": 0.693, + "2006": 0.7, + "2007": 0.708, + "2008": 0.71, + "2009": 0.711, + "2010": 0.715, + "2011": 0.722, + "2012": 0.727, + "2013": 0.734, + "2014": 0.74, + "2015": 0.745, + "2016": 0.747, + "2017": 0.746, + "2018": 0.746, + "2019": 0.749, + "2020": 0.737, + "2021": 0.751 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr129", + "Region": "Amazonas", + "1990": 0.67, + "1991": 0.67, + "1992": 0.674, + "1993": 0.681, + "1994": 0.688, + "1995": 0.693, + "1996": 0.688, + "1997": 0.685, + "1998": 0.679, + "1999": 0.666, + "2000": 0.662, + "2001": 0.663, + "2002": 0.666, + "2003": 0.67, + "2004": 0.677, + "2005": 0.685, + "2006": 0.67, + "2007": 0.655, + "2008": 0.635, + "2009": 0.613, + "2010": 0.595, + "2011": 0.61, + "2012": 0.623, + "2013": 0.637, + "2014": 0.651, + "2015": 0.663, + "2016": 0.665, + "2017": 0.663, + "2018": 0.664, + "2019": 0.667, + "2020": 0.656, + "2021": 0.668 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr101", + "Region": "Antioquia (incl Medellin)", + "1990": 0.686, + "1991": 0.687, + "1992": 0.69, + "1993": 0.697, + "1994": 0.704, + "1995": 0.709, + "1996": 0.712, + "1997": 0.717, + "1998": 0.719, + "1999": 0.713, + "2000": 0.717, + "2001": 0.711, + "2002": 0.706, + "2003": 0.703, + "2004": 0.703, + "2005": 0.703, + "2006": 0.712, + "2007": 0.72, + "2008": 0.723, + "2009": 0.724, + "2010": 0.729, + "2011": 0.736, + "2012": 0.741, + "2013": 0.748, + "2014": 0.754, + "2015": 0.759, + "2016": 0.761, + "2017": 0.759, + "2018": 0.76, + "2019": 0.763, + "2020": 0.751, + "2021": 0.765 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr125", + "Region": "Arauca", + "1990": 0.689, + "1991": 0.69, + "1992": 0.694, + "1993": 0.7, + "1994": 0.708, + "1995": 0.713, + "1996": 0.708, + "1997": 0.705, + "1998": 0.699, + "1999": 0.685, + "2000": 0.682, + "2001": 0.683, + "2002": 0.686, + "2003": 0.69, + "2004": 0.697, + "2005": 0.705, + "2006": 0.711, + "2007": 0.717, + "2008": 0.717, + "2009": 0.716, + "2010": 0.719, + "2011": 0.723, + "2012": 0.725, + "2013": 0.728, + "2014": 0.731, + "2015": 0.733, + "2016": 0.734, + "2017": 0.733, + "2018": 0.733, + "2019": 0.737, + "2020": 0.725, + "2021": 0.738 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr102", + "Region": "Atlantico (incl Barranquilla)", + "1990": 0.671, + "1991": 0.672, + "1992": 0.676, + "1993": 0.682, + "1994": 0.689, + "1995": 0.694, + "1996": 0.692, + "1997": 0.692, + "1998": 0.689, + "1999": 0.677, + "2000": 0.676, + "2001": 0.677, + "2002": 0.68, + "2003": 0.684, + "2004": 0.691, + "2005": 0.698, + "2006": 0.706, + "2007": 0.713, + "2008": 0.715, + "2009": 0.715, + "2010": 0.719, + "2011": 0.728, + "2012": 0.735, + "2013": 0.743, + "2014": 0.751, + "2015": 0.758, + "2016": 0.759, + "2017": 0.758, + "2018": 0.758, + "2019": 0.762, + "2020": 0.75, + "2021": 0.763 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr103", + "Region": "Bogota D.C.", + "1990": 0.72, + "1991": 0.721, + "1992": 0.725, + "1993": 0.732, + "1994": 0.739, + "1995": 0.745, + "1996": 0.74, + "1997": 0.739, + "1998": 0.734, + "1999": 0.721, + "2000": 0.719, + "2001": 0.719, + "2002": 0.721, + "2003": 0.725, + "2004": 0.732, + "2005": 0.74, + "2006": 0.746, + "2007": 0.751, + "2008": 0.752, + "2009": 0.751, + "2010": 0.753, + "2011": 0.76, + "2012": 0.765, + "2013": 0.772, + "2014": 0.777, + "2015": 0.782, + "2016": 0.784, + "2017": 0.782, + "2018": 0.783, + "2019": 0.786, + "2020": 0.774, + "2021": 0.787 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr104", + "Region": "Bolivar (Sur and Norte)", + "1990": 0.633, + "1991": 0.634, + "1992": 0.638, + "1993": 0.644, + "1994": 0.651, + "1995": 0.656, + "1996": 0.653, + "1997": 0.653, + "1998": 0.65, + "1999": 0.639, + "2000": 0.638, + "2001": 0.64, + "2002": 0.642, + "2003": 0.646, + "2004": 0.653, + "2005": 0.661, + "2006": 0.666, + "2007": 0.671, + "2008": 0.671, + "2009": 0.669, + "2010": 0.671, + "2011": 0.681, + "2012": 0.689, + "2013": 0.698, + "2014": 0.706, + "2015": 0.714, + "2016": 0.716, + "2017": 0.714, + "2018": 0.714, + "2019": 0.718, + "2020": 0.706, + "2021": 0.719 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr105", + "Region": "Boyaca", + "1990": 0.613, + "1991": 0.614, + "1992": 0.617, + "1993": 0.623, + "1994": 0.63, + "1995": 0.635, + "1996": 0.64, + "1997": 0.646, + "1998": 0.65, + "1999": 0.646, + "2000": 0.651, + "2001": 0.646, + "2002": 0.643, + "2003": 0.641, + "2004": 0.642, + "2005": 0.644, + "2006": 0.659, + "2007": 0.673, + "2008": 0.683, + "2009": 0.691, + "2010": 0.702, + "2011": 0.71, + "2012": 0.716, + "2013": 0.723, + "2014": 0.729, + "2015": 0.735, + "2016": 0.736, + "2017": 0.735, + "2018": 0.735, + "2019": 0.738, + "2020": 0.727, + "2021": 0.74 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr106", + "Region": "Caldas", + "1990": 0.689, + "1991": 0.69, + "1992": 0.693, + "1993": 0.7, + "1994": 0.707, + "1995": 0.712, + "1996": 0.711, + "1997": 0.712, + "1998": 0.709, + "1999": 0.699, + "2000": 0.699, + "2001": 0.698, + "2002": 0.698, + "2003": 0.7, + "2004": 0.705, + "2005": 0.711, + "2006": 0.718, + "2007": 0.725, + "2008": 0.727, + "2009": 0.728, + "2010": 0.731, + "2011": 0.739, + "2012": 0.745, + "2013": 0.752, + "2014": 0.758, + "2015": 0.763, + "2016": 0.765, + "2017": 0.764, + "2018": 0.764, + "2019": 0.767, + "2020": 0.755, + "2021": 0.769 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr107", + "Region": "Caqueta", + "1990": 0.611, + "1991": 0.612, + "1992": 0.616, + "1993": 0.622, + "1994": 0.629, + "1995": 0.634, + "1996": 0.629, + "1997": 0.626, + "1998": 0.621, + "1999": 0.608, + "2000": 0.604, + "2001": 0.605, + "2002": 0.608, + "2003": 0.612, + "2004": 0.619, + "2005": 0.626, + "2006": 0.641, + "2007": 0.655, + "2008": 0.665, + "2009": 0.672, + "2010": 0.683, + "2011": 0.688, + "2012": 0.69, + "2013": 0.693, + "2014": 0.696, + "2015": 0.698, + "2016": 0.699, + "2017": 0.698, + "2018": 0.698, + "2019": 0.702, + "2020": 0.69, + "2021": 0.703 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr126", + "Region": "Casanare", + "1990": 0.698, + "1991": 0.699, + "1992": 0.703, + "1993": 0.71, + "1994": 0.717, + "1995": 0.722, + "1996": 0.717, + "1997": 0.714, + "1998": 0.708, + "1999": 0.694, + "2000": 0.691, + "2001": 0.692, + "2002": 0.695, + "2003": 0.699, + "2004": 0.706, + "2005": 0.715, + "2006": 0.715, + "2007": 0.715, + "2008": 0.71, + "2009": 0.703, + "2010": 0.7, + "2011": 0.706, + "2012": 0.71, + "2013": 0.715, + "2014": 0.72, + "2015": 0.723, + "2016": 0.725, + "2017": 0.723, + "2018": 0.724, + "2019": 0.727, + "2020": 0.715, + "2021": 0.728 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr108", + "Region": "Cauca", + "1990": 0.613, + "1991": 0.613, + "1992": 0.617, + "1993": 0.623, + "1994": 0.63, + "1995": 0.635, + "1996": 0.628, + "1997": 0.624, + "1998": 0.616, + "1999": 0.601, + "2000": 0.596, + "2001": 0.599, + "2002": 0.603, + "2003": 0.609, + "2004": 0.617, + "2005": 0.626, + "2006": 0.64, + "2007": 0.653, + "2008": 0.662, + "2009": 0.669, + "2010": 0.679, + "2011": 0.683, + "2012": 0.685, + "2013": 0.689, + "2014": 0.692, + "2015": 0.694, + "2016": 0.696, + "2017": 0.695, + "2018": 0.695, + "2019": 0.698, + "2020": 0.687, + "2021": 0.699 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr109", + "Region": "Cesar", + "1990": 0.617, + "1991": 0.617, + "1992": 0.621, + "1993": 0.627, + "1994": 0.634, + "1995": 0.639, + "1996": 0.642, + "1997": 0.647, + "1998": 0.649, + "1999": 0.643, + "2000": 0.647, + "2001": 0.642, + "2002": 0.639, + "2003": 0.637, + "2004": 0.638, + "2005": 0.64, + "2006": 0.652, + "2007": 0.664, + "2008": 0.671, + "2009": 0.677, + "2010": 0.685, + "2011": 0.69, + "2012": 0.693, + "2013": 0.697, + "2014": 0.7, + "2015": 0.703, + "2016": 0.705, + "2017": 0.703, + "2018": 0.704, + "2019": 0.707, + "2020": 0.695, + "2021": 0.708 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr112", + "Region": "Choco", + "1990": 0.578, + "1991": 0.578, + "1992": 0.582, + "1993": 0.588, + "1994": 0.595, + "1995": 0.599, + "1996": 0.597, + "1997": 0.597, + "1998": 0.594, + "1999": 0.584, + "2000": 0.583, + "2001": 0.586, + "2002": 0.59, + "2003": 0.596, + "2004": 0.605, + "2005": 0.614, + "2006": 0.62, + "2007": 0.625, + "2008": 0.625, + "2009": 0.623, + "2010": 0.625, + "2011": 0.627, + "2012": 0.627, + "2013": 0.629, + "2014": 0.63, + "2015": 0.63, + "2016": 0.631, + "2017": 0.63, + "2018": 0.63, + "2019": 0.633, + "2020": 0.622, + "2021": 0.634 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr110", + "Region": "Cordoba", + "1990": 0.566, + "1991": 0.567, + "1992": 0.57, + "1993": 0.576, + "1994": 0.583, + "1995": 0.587, + "1996": 0.591, + "1997": 0.598, + "1998": 0.601, + "1999": 0.597, + "2000": 0.602, + "2001": 0.601, + "2002": 0.602, + "2003": 0.604, + "2004": 0.608, + "2005": 0.614, + "2006": 0.622, + "2007": 0.629, + "2008": 0.632, + "2009": 0.633, + "2010": 0.637, + "2011": 0.648, + "2012": 0.656, + "2013": 0.666, + "2014": 0.675, + "2015": 0.683, + "2016": 0.685, + "2017": 0.684, + "2018": 0.684, + "2019": 0.687, + "2020": 0.676, + "2021": 0.688 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr111", + "Region": "Cundinamarca", + "1990": 0.654, + "1991": 0.655, + "1992": 0.659, + "1993": 0.665, + "1994": 0.672, + "1995": 0.677, + "1996": 0.675, + "1997": 0.675, + "1998": 0.673, + "1999": 0.662, + "2000": 0.661, + "2001": 0.661, + "2002": 0.663, + "2003": 0.666, + "2004": 0.672, + "2005": 0.678, + "2006": 0.689, + "2007": 0.7, + "2008": 0.706, + "2009": 0.71, + "2010": 0.717, + "2011": 0.726, + "2012": 0.733, + "2013": 0.741, + "2014": 0.749, + "2015": 0.756, + "2016": 0.757, + "2017": 0.756, + "2018": 0.756, + "2019": 0.759, + "2020": 0.748, + "2021": 0.761 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr130", + "Region": "Guainja", + "1990": 0.612, + "1991": 0.613, + "1992": 0.616, + "1993": 0.623, + "1994": 0.629, + "1995": 0.634, + "1996": 0.629, + "1997": 0.627, + "1998": 0.621, + "1999": 0.608, + "2000": 0.605, + "2001": 0.606, + "2002": 0.609, + "2003": 0.613, + "2004": 0.619, + "2005": 0.627, + "2006": 0.628, + "2007": 0.629, + "2008": 0.624, + "2009": 0.618, + "2010": 0.616, + "2011": 0.612, + "2012": 0.607, + "2013": 0.602, + "2014": 0.597, + "2015": 0.592, + "2016": 0.593, + "2017": 0.592, + "2018": 0.592, + "2019": 0.595, + "2020": 0.585, + "2021": 0.596 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr114", + "Region": "Guajira", + "1990": 0.57, + "1991": 0.571, + "1992": 0.574, + "1993": 0.58, + "1994": 0.587, + "1995": 0.592, + "1996": 0.586, + "1997": 0.583, + "1998": 0.578, + "1999": 0.564, + "2000": 0.56, + "2001": 0.569, + "2002": 0.579, + "2003": 0.59, + "2004": 0.604, + "2005": 0.619, + "2006": 0.626, + "2007": 0.631, + "2008": 0.633, + "2009": 0.632, + "2010": 0.635, + "2011": 0.64, + "2012": 0.644, + "2013": 0.649, + "2014": 0.653, + "2015": 0.656, + "2016": 0.658, + "2017": 0.656, + "2018": 0.657, + "2019": 0.66, + "2020": 0.649, + "2021": 0.661 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr131", + "Region": "Guaviare", + "1990": 0.618, + "1991": 0.619, + "1992": 0.622, + "1993": 0.628, + "1994": 0.635, + "1995": 0.64, + "1996": 0.635, + "1997": 0.633, + "1998": 0.627, + "1999": 0.614, + "2000": 0.611, + "2001": 0.612, + "2002": 0.614, + "2003": 0.618, + "2004": 0.625, + "2005": 0.633, + "2006": 0.644, + "2007": 0.654, + "2008": 0.66, + "2009": 0.664, + "2010": 0.671, + "2011": 0.683, + "2012": 0.692, + "2013": 0.702, + "2014": 0.712, + "2015": 0.721, + "2016": 0.722, + "2017": 0.721, + "2018": 0.721, + "2019": 0.724, + "2020": 0.713, + "2021": 0.726 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr113", + "Region": "Huila", + "1990": 0.668, + "1991": 0.669, + "1992": 0.672, + "1993": 0.679, + "1994": 0.686, + "1995": 0.691, + "1996": 0.689, + "1997": 0.689, + "1998": 0.686, + "1999": 0.675, + "2000": 0.674, + "2001": 0.674, + "2002": 0.674, + "2003": 0.676, + "2004": 0.681, + "2005": 0.688, + "2006": 0.695, + "2007": 0.703, + "2008": 0.705, + "2009": 0.706, + "2010": 0.71, + "2011": 0.718, + "2012": 0.723, + "2013": 0.73, + "2014": 0.736, + "2015": 0.741, + "2016": 0.743, + "2017": 0.741, + "2018": 0.742, + "2019": 0.745, + "2020": 0.733, + "2021": 0.747 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr115", + "Region": "Magdalena", + "1990": 0.605, + "1991": 0.606, + "1992": 0.61, + "1993": 0.616, + "1994": 0.623, + "1995": 0.627, + "1996": 0.632, + "1997": 0.638, + "1998": 0.642, + "1999": 0.637, + "2000": 0.643, + "2001": 0.64, + "2002": 0.638, + "2003": 0.637, + "2004": 0.64, + "2005": 0.643, + "2006": 0.651, + "2007": 0.658, + "2008": 0.661, + "2009": 0.662, + "2010": 0.666, + "2011": 0.674, + "2012": 0.68, + "2013": 0.687, + "2014": 0.693, + "2015": 0.699, + "2016": 0.7, + "2017": 0.699, + "2018": 0.699, + "2019": 0.702, + "2020": 0.691, + "2021": 0.704 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr116", + "Region": "Meta", + "1990": 0.718, + "1991": 0.719, + "1992": 0.723, + "1993": 0.73, + "1994": 0.737, + "1995": 0.742, + "1996": 0.742, + "1997": 0.745, + "1998": 0.744, + "1999": 0.735, + "2000": 0.737, + "2001": 0.723, + "2002": 0.711, + "2003": 0.7, + "2004": 0.692, + "2005": 0.685, + "2006": 0.693, + "2007": 0.7, + "2008": 0.702, + "2009": 0.703, + "2010": 0.707, + "2011": 0.716, + "2012": 0.724, + "2013": 0.732, + "2014": 0.74, + "2015": 0.748, + "2016": 0.749, + "2017": 0.748, + "2018": 0.748, + "2019": 0.751, + "2020": 0.74, + "2021": 0.753 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr117", + "Region": "Narino", + "1990": 0.563, + "1991": 0.564, + "1992": 0.567, + "1993": 0.573, + "1994": 0.58, + "1995": 0.584, + "1996": 0.591, + "1997": 0.601, + "1998": 0.607, + "1999": 0.606, + "2000": 0.614, + "2001": 0.621, + "2002": 0.63, + "2003": 0.641, + "2004": 0.654, + "2005": 0.668, + "2006": 0.672, + "2007": 0.675, + "2008": 0.673, + "2009": 0.669, + "2010": 0.669, + "2011": 0.676, + "2012": 0.68, + "2013": 0.686, + "2014": 0.692, + "2015": 0.696, + "2016": 0.698, + "2017": 0.696, + "2018": 0.697, + "2019": 0.7, + "2020": 0.688, + "2021": 0.701 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr118", + "Region": "Norte de Santander", + "1990": 0.69, + "1991": 0.691, + "1992": 0.695, + "1993": 0.701, + "1994": 0.709, + "1995": 0.714, + "1996": 0.713, + "1997": 0.714, + "1998": 0.713, + "1999": 0.703, + "2000": 0.704, + "2001": 0.696, + "2002": 0.69, + "2003": 0.685, + "2004": 0.683, + "2005": 0.682, + "2006": 0.691, + "2007": 0.7, + "2008": 0.703, + "2009": 0.705, + "2010": 0.711, + "2011": 0.719, + "2012": 0.726, + "2013": 0.733, + "2014": 0.741, + "2015": 0.747, + "2016": 0.748, + "2017": 0.747, + "2018": 0.747, + "2019": 0.75, + "2020": 0.739, + "2021": 0.752 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr127", + "Region": "Putumayo", + "1990": 0.681, + "1991": 0.682, + "1992": 0.685, + "1993": 0.692, + "1994": 0.699, + "1995": 0.704, + "1996": 0.699, + "1997": 0.696, + "1998": 0.691, + "1999": 0.677, + "2000": 0.673, + "2001": 0.674, + "2002": 0.677, + "2003": 0.681, + "2004": 0.689, + "2005": 0.697, + "2006": 0.693, + "2007": 0.69, + "2008": 0.681, + "2009": 0.67, + "2010": 0.664, + "2011": 0.673, + "2012": 0.679, + "2013": 0.688, + "2014": 0.695, + "2015": 0.702, + "2016": 0.703, + "2017": 0.702, + "2018": 0.702, + "2019": 0.705, + "2020": 0.694, + "2021": 0.707 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr119", + "Region": "Quindio", + "1990": 0.701, + "1991": 0.701, + "1992": 0.705, + "1993": 0.712, + "1994": 0.719, + "1995": 0.724, + "1996": 0.721, + "1997": 0.721, + "1998": 0.717, + "1999": 0.706, + "2000": 0.704, + "2001": 0.705, + "2002": 0.706, + "2003": 0.71, + "2004": 0.716, + "2005": 0.723, + "2006": 0.731, + "2007": 0.738, + "2008": 0.741, + "2009": 0.741, + "2010": 0.745, + "2011": 0.753, + "2012": 0.758, + "2013": 0.764, + "2014": 0.77, + "2015": 0.775, + "2016": 0.777, + "2017": 0.775, + "2018": 0.776, + "2019": 0.779, + "2020": 0.767, + "2021": 0.781 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr120", + "Region": "Risaralda", + "1990": 0.716, + "1991": 0.717, + "1992": 0.72, + "1993": 0.727, + "1994": 0.734, + "1995": 0.74, + "1996": 0.74, + "1997": 0.742, + "1998": 0.742, + "1999": 0.733, + "2000": 0.734, + "2001": 0.727, + "2002": 0.722, + "2003": 0.718, + "2004": 0.718, + "2005": 0.718, + "2006": 0.724, + "2007": 0.73, + "2008": 0.731, + "2009": 0.73, + "2010": 0.733, + "2011": 0.741, + "2012": 0.747, + "2013": 0.754, + "2014": 0.761, + "2015": 0.766, + "2016": 0.768, + "2017": 0.767, + "2018": 0.767, + "2019": 0.77, + "2020": 0.758, + "2021": 0.772 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr128", + "Region": "San Andres", + "1990": 0.701, + "1991": 0.702, + "1992": 0.706, + "1993": 0.712, + "1994": 0.72, + "1995": 0.725, + "1996": 0.719, + "1997": 0.717, + "1998": 0.711, + "1999": 0.697, + "2000": 0.693, + "2001": 0.695, + "2002": 0.697, + "2003": 0.702, + "2004": 0.709, + "2005": 0.717, + "2006": 0.725, + "2007": 0.732, + "2008": 0.734, + "2009": 0.734, + "2010": 0.738, + "2011": 0.743, + "2012": 0.746, + "2013": 0.75, + "2014": 0.754, + "2015": 0.757, + "2016": 0.758, + "2017": 0.757, + "2018": 0.757, + "2019": 0.761, + "2020": 0.749, + "2021": 0.762 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr121", + "Region": "Santander", + "1990": 0.642, + "1991": 0.643, + "1992": 0.647, + "1993": 0.653, + "1994": 0.66, + "1995": 0.665, + "1996": 0.666, + "1997": 0.669, + "1998": 0.669, + "1999": 0.662, + "2000": 0.664, + "2001": 0.667, + "2002": 0.672, + "2003": 0.678, + "2004": 0.688, + "2005": 0.698, + "2006": 0.703, + "2007": 0.708, + "2008": 0.707, + "2009": 0.705, + "2010": 0.707, + "2011": 0.719, + "2012": 0.729, + "2013": 0.741, + "2014": 0.751, + "2015": 0.761, + "2016": 0.763, + "2017": 0.761, + "2018": 0.762, + "2019": 0.765, + "2020": 0.753, + "2021": 0.767 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr122", + "Region": "Sucre", + "1990": 0.537, + "1991": 0.537, + "1992": 0.541, + "1993": 0.547, + "1994": 0.553, + "1995": 0.558, + "1996": 0.575, + "1997": 0.595, + "1998": 0.612, + "1999": 0.621, + "2000": 0.64, + "2001": 0.639, + "2002": 0.639, + "2003": 0.64, + "2004": 0.645, + "2005": 0.65, + "2006": 0.655, + "2007": 0.66, + "2008": 0.66, + "2009": 0.658, + "2010": 0.659, + "2011": 0.67, + "2012": 0.679, + "2013": 0.69, + "2014": 0.699, + "2015": 0.708, + "2016": 0.71, + "2017": 0.709, + "2018": 0.709, + "2019": 0.712, + "2020": 0.701, + "2021": 0.713 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr123", + "Region": "Tolima", + "1990": 0.614, + "1991": 0.614, + "1992": 0.618, + "1993": 0.624, + "1994": 0.631, + "1995": 0.636, + "1996": 0.635, + "1997": 0.637, + "1998": 0.635, + "1999": 0.626, + "2000": 0.627, + "2001": 0.633, + "2002": 0.641, + "2003": 0.651, + "2004": 0.663, + "2005": 0.677, + "2006": 0.685, + "2007": 0.693, + "2008": 0.696, + "2009": 0.697, + "2010": 0.702, + "2011": 0.707, + "2012": 0.71, + "2013": 0.714, + "2014": 0.718, + "2015": 0.721, + "2016": 0.722, + "2017": 0.721, + "2018": 0.721, + "2019": 0.725, + "2020": 0.713, + "2021": 0.726 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr124", + "Region": "Valle (incl Cali)", + "1990": 0.698, + "1991": 0.699, + "1992": 0.702, + "1993": 0.709, + "1994": 0.716, + "1995": 0.722, + "1996": 0.718, + "1997": 0.718, + "1998": 0.714, + "1999": 0.702, + "2000": 0.7, + "2001": 0.702, + "2002": 0.706, + "2003": 0.711, + "2004": 0.719, + "2005": 0.728, + "2006": 0.734, + "2007": 0.74, + "2008": 0.74, + "2009": 0.739, + "2010": 0.741, + "2011": 0.749, + "2012": 0.755, + "2013": 0.762, + "2014": 0.768, + "2015": 0.774, + "2016": 0.776, + "2017": 0.774, + "2018": 0.775, + "2019": 0.778, + "2020": 0.766, + "2021": 0.779 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr132", + "Region": "Vaupis", + "1990": 0.609, + "1991": 0.61, + "1992": 0.614, + "1993": 0.62, + "1994": 0.627, + "1995": 0.631, + "1996": 0.626, + "1997": 0.624, + "1998": 0.618, + "1999": 0.605, + "2000": 0.602, + "2001": 0.603, + "2002": 0.606, + "2003": 0.61, + "2004": 0.617, + "2005": 0.624, + "2006": 0.622, + "2007": 0.619, + "2008": 0.612, + "2009": 0.603, + "2010": 0.597, + "2011": 0.587, + "2012": 0.574, + "2013": 0.562, + "2014": 0.55, + "2015": 0.537, + "2016": 0.538, + "2017": 0.537, + "2018": 0.538, + "2019": 0.54, + "2020": 0.53, + "2021": 0.542 + }, + { + "Country": "Colombia", + "Continent": "America", + "ISO_Code": "COL", + "Level": "Subnat", + "GDLCODE": "COLr133", + "Region": "Vichada", + "1990": 0.635, + "1991": 0.636, + "1992": 0.64, + "1993": 0.646, + "1994": 0.653, + "1995": 0.658, + "1996": 0.653, + "1997": 0.65, + "1998": 0.645, + "1999": 0.631, + "2000": 0.628, + "2001": 0.629, + "2002": 0.632, + "2003": 0.636, + "2004": 0.643, + "2005": 0.651, + "2006": 0.652, + "2007": 0.654, + "2008": 0.65, + "2009": 0.646, + "2010": 0.644, + "2011": 0.663, + "2012": 0.68, + "2013": 0.699, + "2014": 0.717, + "2015": 0.734, + "2016": 0.735, + "2017": 0.734, + "2018": 0.734, + "2019": 0.737, + "2020": 0.726, + "2021": 0.739 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "National", + "GDLCODE": "COMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.505, + "2001": 0.505, + "2002": 0.504, + "2003": 0.504, + "2004": 0.503, + "2005": 0.504, + "2006": 0.504, + "2007": 0.502, + "2008": 0.504, + "2009": 0.505, + "2010": 0.507, + "2011": 0.51, + "2012": 0.511, + "2013": 0.514, + "2014": 0.514, + "2015": 0.512, + "2016": 0.514, + "2017": 0.516, + "2018": 0.517, + "2019": 0.519, + "2020": 0.521, + "2021": 0.521 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr103", + "Region": "Anjouan (Ndzouani)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.49, + "2001": 0.49, + "2002": 0.489, + "2003": 0.489, + "2004": 0.488, + "2005": 0.489, + "2006": 0.49, + "2007": 0.488, + "2008": 0.49, + "2009": 0.492, + "2010": 0.494, + "2011": 0.496, + "2012": 0.498, + "2013": 0.501, + "2014": 0.501, + "2015": 0.499, + "2016": 0.501, + "2017": 0.503, + "2018": 0.504, + "2019": 0.505, + "2020": 0.508, + "2021": 0.508 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr101", + "Region": "Grande Comore (Ngazidja)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.52, + "2001": 0.52, + "2002": 0.519, + "2003": 0.519, + "2004": 0.518, + "2005": 0.519, + "2006": 0.519, + "2007": 0.517, + "2008": 0.519, + "2009": 0.521, + "2010": 0.523, + "2011": 0.525, + "2012": 0.526, + "2013": 0.53, + "2014": 0.529, + "2015": 0.528, + "2016": 0.53, + "2017": 0.532, + "2018": 0.533, + "2019": 0.534, + "2020": 0.537, + "2021": 0.536 + }, + { + "Country": "Comoros", + "Continent": "Africa", + "ISO_Code": "COM", + "Level": "Subnat", + "GDLCODE": "COMr102", + "Region": "Moheli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.48, + "2001": 0.481, + "2002": 0.481, + "2003": 0.482, + "2004": 0.482, + "2005": 0.484, + "2006": 0.486, + "2007": 0.485, + "2008": 0.488, + "2009": 0.49, + "2010": 0.493, + "2011": 0.497, + "2012": 0.499, + "2013": 0.502, + "2014": 0.502, + "2015": 0.501, + "2016": 0.502, + "2017": 0.505, + "2018": 0.505, + "2019": 0.507, + "2020": 0.51, + "2021": 0.509 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "National", + "GDLCODE": "COGt", + "Region": "Total", + "1990": 0.571, + "1991": 0.572, + "1992": 0.575, + "1993": 0.562, + "1994": 0.554, + "1995": 0.522, + "1996": 0.523, + "1997": 0.536, + "1998": 0.55, + "1999": 0.522, + "2000": 0.513, + "2001": 0.525, + "2002": 0.528, + "2003": 0.523, + "2004": 0.516, + "2005": 0.534, + "2006": 0.558, + "2007": 0.543, + "2008": 0.549, + "2009": 0.573, + "2010": 0.58, + "2011": 0.574, + "2012": 0.593, + "2013": 0.593, + "2014": 0.606, + "2015": 0.593, + "2016": 0.568, + "2017": 0.543, + "2018": 0.527, + "2019": 0.512, + "2020": 0.512, + "2021": 0.508 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr204", + "Region": " Bouenza", + "1990": 0.519, + "1991": 0.52, + "1992": 0.524, + "1993": 0.511, + "1994": 0.503, + "1995": 0.473, + "1996": 0.474, + "1997": 0.486, + "1998": 0.499, + "1999": 0.473, + "2000": 0.463, + "2001": 0.475, + "2002": 0.478, + "2003": 0.474, + "2004": 0.467, + "2005": 0.484, + "2006": 0.507, + "2007": 0.492, + "2008": 0.498, + "2009": 0.521, + "2010": 0.527, + "2011": 0.521, + "2012": 0.532, + "2013": 0.525, + "2014": 0.529, + "2015": 0.511, + "2016": 0.487, + "2017": 0.464, + "2018": 0.448, + "2019": 0.435, + "2020": 0.435, + "2021": 0.431 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr211", + "Region": " Brazzaville", + "1990": 0.654, + "1991": 0.655, + "1992": 0.659, + "1993": 0.645, + "1994": 0.636, + "1995": 0.602, + "1996": 0.604, + "1997": 0.617, + "1998": 0.632, + "1999": 0.603, + "2000": 0.592, + "2001": 0.605, + "2002": 0.608, + "2003": 0.603, + "2004": 0.596, + "2005": 0.615, + "2006": 0.637, + "2007": 0.617, + "2008": 0.621, + "2009": 0.642, + "2010": 0.646, + "2011": 0.636, + "2012": 0.659, + "2013": 0.663, + "2014": 0.679, + "2015": 0.669, + "2016": 0.642, + "2017": 0.616, + "2018": 0.598, + "2019": 0.583, + "2020": 0.583, + "2021": 0.579 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr207", + "Region": " Cuvette", + "1990": 0.483, + "1991": 0.484, + "1992": 0.487, + "1993": 0.475, + "1994": 0.467, + "1995": 0.437, + "1996": 0.439, + "1997": 0.451, + "1998": 0.463, + "1999": 0.438, + "2000": 0.429, + "2001": 0.44, + "2002": 0.443, + "2003": 0.438, + "2004": 0.432, + "2005": 0.449, + "2006": 0.475, + "2007": 0.466, + "2008": 0.476, + "2009": 0.503, + "2010": 0.514, + "2011": 0.513, + "2012": 0.529, + "2013": 0.528, + "2014": 0.539, + "2015": 0.526, + "2016": 0.502, + "2017": 0.478, + "2018": 0.462, + "2019": 0.449, + "2020": 0.449, + "2021": 0.445 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr208", + "Region": " Cuvette Ouest", + "1990": 0.494, + "1991": 0.495, + "1992": 0.498, + "1993": 0.486, + "1994": 0.478, + "1995": 0.448, + "1996": 0.449, + "1997": 0.461, + "1998": 0.474, + "1999": 0.448, + "2000": 0.439, + "2001": 0.451, + "2002": 0.453, + "2003": 0.449, + "2004": 0.442, + "2005": 0.459, + "2006": 0.476, + "2007": 0.455, + "2008": 0.456, + "2009": 0.471, + "2010": 0.471, + "2011": 0.46, + "2012": 0.47, + "2013": 0.465, + "2014": 0.469, + "2015": 0.452, + "2016": 0.43, + "2017": 0.407, + "2018": 0.393, + "2019": 0.38, + "2020": 0.38, + "2021": 0.376 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr201", + "Region": " Kouilou", + "1990": 0.494, + "1991": 0.495, + "1992": 0.498, + "1993": 0.486, + "1994": 0.478, + "1995": 0.448, + "1996": 0.449, + "1997": 0.461, + "1998": 0.474, + "1999": 0.449, + "2000": 0.439, + "2001": 0.451, + "2002": 0.454, + "2003": 0.449, + "2004": 0.443, + "2005": 0.46, + "2006": 0.475, + "2007": 0.455, + "2008": 0.455, + "2009": 0.47, + "2010": 0.469, + "2011": 0.458, + "2012": 0.473, + "2013": 0.472, + "2014": 0.482, + "2015": 0.469, + "2016": 0.447, + "2017": 0.424, + "2018": 0.409, + "2019": 0.396, + "2020": 0.396, + "2021": 0.392 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr203", + "Region": " Lekoumou", + "1990": 0.501, + "1991": 0.502, + "1992": 0.506, + "1993": 0.493, + "1994": 0.485, + "1995": 0.455, + "1996": 0.457, + "1997": 0.469, + "1998": 0.481, + "1999": 0.456, + "2000": 0.446, + "2001": 0.458, + "2002": 0.461, + "2003": 0.456, + "2004": 0.45, + "2005": 0.467, + "2006": 0.483, + "2007": 0.462, + "2008": 0.462, + "2009": 0.477, + "2010": 0.477, + "2011": 0.465, + "2012": 0.478, + "2013": 0.474, + "2014": 0.481, + "2015": 0.466, + "2016": 0.443, + "2017": 0.42, + "2018": 0.405, + "2019": 0.393, + "2020": 0.392, + "2021": 0.389 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr210", + "Region": " Likouala", + "1990": 0.528, + "1991": 0.529, + "1992": 0.533, + "1993": 0.52, + "1994": 0.512, + "1995": 0.481, + "1996": 0.482, + "1997": 0.495, + "1998": 0.508, + "1999": 0.482, + "2000": 0.472, + "2001": 0.484, + "2002": 0.487, + "2003": 0.482, + "2004": 0.475, + "2005": 0.493, + "2006": 0.504, + "2007": 0.478, + "2008": 0.473, + "2009": 0.484, + "2010": 0.478, + "2011": 0.462, + "2012": 0.475, + "2013": 0.472, + "2014": 0.479, + "2015": 0.465, + "2016": 0.442, + "2017": 0.419, + "2018": 0.405, + "2019": 0.392, + "2020": 0.392, + "2021": 0.388 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr202", + "Region": " Niari", + "1990": 0.496, + "1991": 0.497, + "1992": 0.501, + "1993": 0.488, + "1994": 0.48, + "1995": 0.451, + "1996": 0.452, + "1997": 0.464, + "1998": 0.477, + "1999": 0.451, + "2000": 0.442, + "2001": 0.453, + "2002": 0.456, + "2003": 0.452, + "2004": 0.445, + "2005": 0.462, + "2006": 0.489, + "2007": 0.48, + "2008": 0.491, + "2009": 0.519, + "2010": 0.53, + "2011": 0.53, + "2012": 0.542, + "2013": 0.538, + "2014": 0.545, + "2015": 0.529, + "2016": 0.505, + "2017": 0.481, + "2018": 0.465, + "2019": 0.452, + "2020": 0.451, + "2021": 0.448 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr206", + "Region": " Plateaux", + "1990": 0.486, + "1991": 0.487, + "1992": 0.49, + "1993": 0.478, + "1994": 0.47, + "1995": 0.44, + "1996": 0.441, + "1997": 0.453, + "1998": 0.466, + "1999": 0.441, + "2000": 0.431, + "2001": 0.443, + "2002": 0.446, + "2003": 0.441, + "2004": 0.435, + "2005": 0.452, + "2006": 0.469, + "2007": 0.45, + "2008": 0.452, + "2009": 0.469, + "2010": 0.47, + "2011": 0.461, + "2012": 0.477, + "2013": 0.477, + "2014": 0.487, + "2015": 0.475, + "2016": 0.452, + "2017": 0.429, + "2018": 0.415, + "2019": 0.402, + "2020": 0.401, + "2021": 0.398 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr212", + "Region": " Pointe Noire", + "1990": 0.638, + "1991": 0.639, + "1992": 0.643, + "1993": 0.629, + "1994": 0.62, + "1995": 0.587, + "1996": 0.588, + "1997": 0.602, + "1998": 0.616, + "1999": 0.587, + "2000": 0.577, + "2001": 0.59, + "2002": 0.593, + "2003": 0.588, + "2004": 0.581, + "2005": 0.6, + "2006": 0.624, + "2007": 0.608, + "2008": 0.614, + "2009": 0.639, + "2010": 0.645, + "2011": 0.639, + "2012": 0.654, + "2013": 0.652, + "2014": 0.661, + "2015": 0.645, + "2016": 0.619, + "2017": 0.593, + "2018": 0.576, + "2019": 0.561, + "2020": 0.56, + "2021": 0.556 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr205", + "Region": " Pool", + "1990": 0.472, + "1991": 0.473, + "1992": 0.476, + "1993": 0.464, + "1994": 0.456, + "1995": 0.427, + "1996": 0.428, + "1997": 0.44, + "1998": 0.452, + "1999": 0.427, + "2000": 0.418, + "2001": 0.429, + "2002": 0.432, + "2003": 0.428, + "2004": 0.421, + "2005": 0.438, + "2006": 0.457, + "2007": 0.441, + "2008": 0.444, + "2009": 0.463, + "2010": 0.466, + "2011": 0.459, + "2012": 0.468, + "2013": 0.461, + "2014": 0.465, + "2015": 0.447, + "2016": 0.424, + "2017": 0.402, + "2018": 0.387, + "2019": 0.375, + "2020": 0.375, + "2021": 0.371 + }, + { + "Country": "Congo Brazzaville", + "Continent": "Africa", + "ISO_Code": "COG", + "Level": "Subnat", + "GDLCODE": "COGr209", + "Region": " Sangha", + "1990": 0.525, + "1991": 0.526, + "1992": 0.53, + "1993": 0.517, + "1994": 0.508, + "1995": 0.478, + "1996": 0.479, + "1997": 0.492, + "1998": 0.505, + "1999": 0.479, + "2000": 0.469, + "2001": 0.481, + "2002": 0.484, + "2003": 0.479, + "2004": 0.472, + "2005": 0.49, + "2006": 0.506, + "2007": 0.485, + "2008": 0.485, + "2009": 0.501, + "2010": 0.501, + "2011": 0.489, + "2012": 0.506, + "2013": 0.506, + "2014": 0.518, + "2015": 0.506, + "2016": 0.483, + "2017": 0.459, + "2018": 0.444, + "2019": 0.431, + "2020": 0.43, + "2021": 0.427 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "National", + "GDLCODE": "CODt", + "Region": "Total", + "1990": 0.427, + "1991": 0.409, + "1992": 0.385, + "1993": 0.362, + "1994": 0.341, + "1995": 0.334, + "1996": 0.34, + "1997": 0.327, + "1998": 0.321, + "1999": 0.306, + "2000": 0.302, + "2001": 0.29, + "2002": 0.293, + "2003": 0.297, + "2004": 0.302, + "2005": 0.304, + "2006": 0.309, + "2007": 0.312, + "2008": 0.312, + "2009": 0.315, + "2010": 0.32, + "2011": 0.323, + "2012": 0.327, + "2013": 0.328, + "2014": 0.337, + "2015": 0.345, + "2016": 0.353, + "2017": 0.352, + "2018": 0.356, + "2019": 0.357, + "2020": 0.355, + "2021": 0.359 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr103", + "Region": "Bandundu", + "1990": 0.385, + "1991": 0.367, + "1992": 0.344, + "1993": 0.322, + "1994": 0.301, + "1995": 0.295, + "1996": 0.301, + "1997": 0.288, + "1998": 0.283, + "1999": 0.268, + "2000": 0.264, + "2001": 0.253, + "2002": 0.255, + "2003": 0.26, + "2004": 0.264, + "2005": 0.266, + "2006": 0.27, + "2007": 0.274, + "2008": 0.273, + "2009": 0.276, + "2010": 0.281, + "2011": 0.286, + "2012": 0.291, + "2013": 0.293, + "2014": 0.297, + "2015": 0.3, + "2016": 0.302, + "2017": 0.296, + "2018": 0.295, + "2019": 0.296, + "2020": 0.294, + "2021": 0.298 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr102", + "Region": "Bas-Congo", + "1990": 0.425, + "1991": 0.407, + "1992": 0.384, + "1993": 0.36, + "1994": 0.339, + "1995": 0.332, + "1996": 0.338, + "1997": 0.325, + "1998": 0.32, + "1999": 0.304, + "2000": 0.301, + "2001": 0.288, + "2002": 0.291, + "2003": 0.296, + "2004": 0.3, + "2005": 0.302, + "2006": 0.307, + "2007": 0.31, + "2008": 0.311, + "2009": 0.315, + "2010": 0.321, + "2011": 0.327, + "2012": 0.334, + "2013": 0.338, + "2014": 0.348, + "2015": 0.357, + "2016": 0.365, + "2017": 0.365, + "2018": 0.37, + "2019": 0.371, + "2020": 0.369, + "2021": 0.372 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr104", + "Region": "Equateur", + "1990": 0.381, + "1991": 0.363, + "1992": 0.341, + "1993": 0.318, + "1994": 0.298, + "1995": 0.291, + "1996": 0.297, + "1997": 0.284, + "1998": 0.279, + "1999": 0.264, + "2000": 0.261, + "2001": 0.249, + "2002": 0.252, + "2003": 0.256, + "2004": 0.26, + "2005": 0.263, + "2006": 0.267, + "2007": 0.27, + "2008": 0.272, + "2009": 0.277, + "2010": 0.284, + "2011": 0.286, + "2012": 0.289, + "2013": 0.289, + "2014": 0.296, + "2015": 0.302, + "2016": 0.308, + "2017": 0.305, + "2018": 0.307, + "2019": 0.308, + "2020": 0.306, + "2021": 0.309 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr111", + "Region": "Kasai Occidental", + "1990": 0.38, + "1991": 0.362, + "1992": 0.34, + "1993": 0.318, + "1994": 0.297, + "1995": 0.29, + "1996": 0.296, + "1997": 0.284, + "1998": 0.279, + "1999": 0.264, + "2000": 0.26, + "2001": 0.249, + "2002": 0.251, + "2003": 0.256, + "2004": 0.26, + "2005": 0.262, + "2006": 0.266, + "2007": 0.269, + "2008": 0.269, + "2009": 0.272, + "2010": 0.276, + "2011": 0.282, + "2012": 0.288, + "2013": 0.291, + "2014": 0.294, + "2015": 0.296, + "2016": 0.297, + "2017": 0.29, + "2018": 0.287, + "2019": 0.288, + "2020": 0.286, + "2021": 0.289 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr110", + "Region": "Kasai Oriental", + "1990": 0.44, + "1991": 0.421, + "1992": 0.398, + "1993": 0.374, + "1994": 0.352, + "1995": 0.345, + "1996": 0.352, + "1997": 0.338, + "1998": 0.333, + "1999": 0.317, + "2000": 0.314, + "2001": 0.301, + "2002": 0.304, + "2003": 0.309, + "2004": 0.313, + "2005": 0.315, + "2006": 0.32, + "2007": 0.323, + "2008": 0.315, + "2009": 0.309, + "2010": 0.306, + "2011": 0.307, + "2012": 0.309, + "2013": 0.307, + "2014": 0.312, + "2015": 0.315, + "2016": 0.319, + "2017": 0.313, + "2018": 0.313, + "2019": 0.314, + "2020": 0.312, + "2021": 0.315 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr109", + "Region": "Katanga", + "1990": 0.45, + "1991": 0.431, + "1992": 0.407, + "1993": 0.383, + "1994": 0.362, + "1995": 0.354, + "1996": 0.361, + "1997": 0.347, + "1998": 0.342, + "1999": 0.326, + "2000": 0.322, + "2001": 0.31, + "2002": 0.313, + "2003": 0.317, + "2004": 0.322, + "2005": 0.324, + "2006": 0.329, + "2007": 0.332, + "2008": 0.323, + "2009": 0.317, + "2010": 0.312, + "2011": 0.323, + "2012": 0.335, + "2013": 0.344, + "2014": 0.351, + "2015": 0.356, + "2016": 0.361, + "2017": 0.357, + "2018": 0.358, + "2019": 0.359, + "2020": 0.357, + "2021": 0.361 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr101", + "Region": "Kinshasa", + "1990": 0.581, + "1991": 0.56, + "1992": 0.534, + "1993": 0.507, + "1994": 0.483, + "1995": 0.475, + "1996": 0.482, + "1997": 0.467, + "1998": 0.461, + "1999": 0.443, + "2000": 0.439, + "2001": 0.425, + "2002": 0.428, + "2003": 0.434, + "2004": 0.439, + "2005": 0.441, + "2006": 0.446, + "2007": 0.45, + "2008": 0.462, + "2009": 0.478, + "2010": 0.497, + "2011": 0.503, + "2012": 0.511, + "2013": 0.514, + "2014": 0.519, + "2015": 0.522, + "2016": 0.524, + "2017": 0.516, + "2018": 0.514, + "2019": 0.515, + "2020": 0.513, + "2021": 0.517 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr108", + "Region": "Maniema", + "1990": 0.412, + "1991": 0.393, + "1992": 0.37, + "1993": 0.347, + "1994": 0.326, + "1995": 0.319, + "1996": 0.325, + "1997": 0.312, + "1998": 0.307, + "1999": 0.292, + "2000": 0.288, + "2001": 0.276, + "2002": 0.279, + "2003": 0.283, + "2004": 0.288, + "2005": 0.29, + "2006": 0.294, + "2007": 0.298, + "2008": 0.295, + "2009": 0.295, + "2010": 0.297, + "2011": 0.304, + "2012": 0.312, + "2013": 0.317, + "2014": 0.315, + "2015": 0.312, + "2016": 0.309, + "2017": 0.298, + "2018": 0.291, + "2019": 0.292, + "2020": 0.29, + "2021": 0.293 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr106", + "Region": "Nord-Kivu", + "1990": 0.41, + "1991": 0.391, + "1992": 0.369, + "1993": 0.346, + "1994": 0.325, + "1995": 0.318, + "1996": 0.324, + "1997": 0.311, + "1998": 0.306, + "1999": 0.29, + "2000": 0.287, + "2001": 0.275, + "2002": 0.277, + "2003": 0.282, + "2004": 0.286, + "2005": 0.288, + "2006": 0.293, + "2007": 0.296, + "2008": 0.299, + "2009": 0.304, + "2010": 0.312, + "2011": 0.319, + "2012": 0.326, + "2013": 0.331, + "2014": 0.342, + "2015": 0.352, + "2016": 0.362, + "2017": 0.363, + "2018": 0.368, + "2019": 0.37, + "2020": 0.368, + "2021": 0.371 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr105", + "Region": "Orientale", + "1990": 0.393, + "1991": 0.375, + "1992": 0.352, + "1993": 0.329, + "1994": 0.309, + "1995": 0.302, + "1996": 0.308, + "1997": 0.295, + "1998": 0.29, + "1999": 0.275, + "2000": 0.272, + "2001": 0.26, + "2002": 0.262, + "2003": 0.267, + "2004": 0.271, + "2005": 0.273, + "2006": 0.278, + "2007": 0.281, + "2008": 0.281, + "2009": 0.284, + "2010": 0.288, + "2011": 0.298, + "2012": 0.309, + "2013": 0.316, + "2014": 0.325, + "2015": 0.332, + "2016": 0.338, + "2017": 0.337, + "2018": 0.339, + "2019": 0.34, + "2020": 0.339, + "2021": 0.342 + }, + { + "Country": "Congo Democratic Republic", + "Continent": "Africa", + "ISO_Code": "COD", + "Level": "Subnat", + "GDLCODE": "CODr107", + "Region": "Sud-Kivu", + "1990": 0.44, + "1991": 0.421, + "1992": 0.397, + "1993": 0.374, + "1994": 0.352, + "1995": 0.345, + "1996": 0.351, + "1997": 0.338, + "1998": 0.333, + "1999": 0.317, + "2000": 0.313, + "2001": 0.301, + "2002": 0.304, + "2003": 0.308, + "2004": 0.313, + "2005": 0.315, + "2006": 0.32, + "2007": 0.323, + "2008": 0.316, + "2009": 0.313, + "2010": 0.311, + "2011": 0.312, + "2012": 0.313, + "2013": 0.312, + "2014": 0.326, + "2015": 0.338, + "2016": 0.35, + "2017": 0.354, + "2018": 0.363, + "2019": 0.364, + "2020": 0.362, + "2021": 0.365 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "National", + "GDLCODE": "CRIt", + "Region": "Total", + "1990": 0.688, + "1991": 0.69, + "1992": 0.7, + "1993": 0.707, + "1994": 0.711, + "1995": 0.713, + "1996": 0.712, + "1997": 0.717, + "1998": 0.722, + "1999": 0.723, + "2000": 0.724, + "2001": 0.726, + "2002": 0.729, + "2003": 0.733, + "2004": 0.738, + "2005": 0.743, + "2006": 0.753, + "2007": 0.763, + "2008": 0.769, + "2009": 0.763, + "2010": 0.77, + "2011": 0.774, + "2012": 0.78, + "2013": 0.781, + "2014": 0.784, + "2015": 0.787, + "2016": 0.792, + "2017": 0.795, + "2018": 0.797, + "2019": 0.798, + "2020": 0.791, + "2021": 0.8 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr102", + "Region": "Alajuela", + "1990": 0.693, + "1991": 0.696, + "1992": 0.706, + "1993": 0.712, + "1994": 0.717, + "1995": 0.719, + "1996": 0.718, + "1997": 0.722, + "1998": 0.728, + "1999": 0.728, + "2000": 0.73, + "2001": 0.732, + "2002": 0.735, + "2003": 0.739, + "2004": 0.744, + "2005": 0.748, + "2006": 0.758, + "2007": 0.769, + "2008": 0.775, + "2009": 0.769, + "2010": 0.775, + "2011": 0.78, + "2012": 0.785, + "2013": 0.786, + "2014": 0.788, + "2015": 0.791, + "2016": 0.795, + "2017": 0.797, + "2018": 0.799, + "2019": 0.8, + "2020": 0.792, + "2021": 0.802 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr103", + "Region": "Cartago", + "1990": 0.695, + "1991": 0.698, + "1992": 0.707, + "1993": 0.714, + "1994": 0.719, + "1995": 0.721, + "1996": 0.72, + "1997": 0.724, + "1998": 0.73, + "1999": 0.73, + "2000": 0.731, + "2001": 0.734, + "2002": 0.737, + "2003": 0.741, + "2004": 0.746, + "2005": 0.75, + "2006": 0.76, + "2007": 0.771, + "2008": 0.777, + "2009": 0.771, + "2010": 0.777, + "2011": 0.782, + "2012": 0.788, + "2013": 0.789, + "2014": 0.792, + "2015": 0.796, + "2016": 0.8, + "2017": 0.804, + "2018": 0.806, + "2019": 0.807, + "2020": 0.799, + "2021": 0.809 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr105", + "Region": "Guanacaste", + "1990": 0.672, + "1991": 0.674, + "1992": 0.684, + "1993": 0.69, + "1994": 0.695, + "1995": 0.697, + "1996": 0.696, + "1997": 0.7, + "1998": 0.706, + "1999": 0.706, + "2000": 0.707, + "2001": 0.71, + "2002": 0.712, + "2003": 0.716, + "2004": 0.721, + "2005": 0.726, + "2006": 0.736, + "2007": 0.746, + "2008": 0.752, + "2009": 0.746, + "2010": 0.753, + "2011": 0.757, + "2012": 0.763, + "2013": 0.766, + "2014": 0.769, + "2015": 0.773, + "2016": 0.779, + "2017": 0.783, + "2018": 0.786, + "2019": 0.787, + "2020": 0.779, + "2021": 0.789 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr104", + "Region": "Heredia", + "1990": 0.696, + "1991": 0.699, + "1992": 0.708, + "1993": 0.715, + "1994": 0.72, + "1995": 0.722, + "1996": 0.721, + "1997": 0.725, + "1998": 0.731, + "1999": 0.731, + "2000": 0.733, + "2001": 0.735, + "2002": 0.738, + "2003": 0.742, + "2004": 0.747, + "2005": 0.751, + "2006": 0.761, + "2007": 0.772, + "2008": 0.778, + "2009": 0.772, + "2010": 0.779, + "2011": 0.783, + "2012": 0.789, + "2013": 0.79, + "2014": 0.792, + "2015": 0.796, + "2016": 0.8, + "2017": 0.803, + "2018": 0.805, + "2019": 0.806, + "2020": 0.799, + "2021": 0.808 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr107", + "Region": "Limon", + "1990": 0.672, + "1991": 0.675, + "1992": 0.684, + "1993": 0.691, + "1994": 0.696, + "1995": 0.697, + "1996": 0.697, + "1997": 0.701, + "1998": 0.706, + "1999": 0.707, + "2000": 0.708, + "2001": 0.711, + "2002": 0.713, + "2003": 0.717, + "2004": 0.722, + "2005": 0.727, + "2006": 0.736, + "2007": 0.747, + "2008": 0.753, + "2009": 0.747, + "2010": 0.753, + "2011": 0.758, + "2012": 0.763, + "2013": 0.763, + "2014": 0.765, + "2015": 0.768, + "2016": 0.771, + "2017": 0.774, + "2018": 0.775, + "2019": 0.776, + "2020": 0.769, + "2021": 0.778 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr106", + "Region": "Puntarenas", + "1990": 0.67, + "1991": 0.673, + "1992": 0.682, + "1993": 0.689, + "1994": 0.693, + "1995": 0.695, + "1996": 0.694, + "1997": 0.699, + "1998": 0.704, + "1999": 0.704, + "2000": 0.706, + "2001": 0.708, + "2002": 0.711, + "2003": 0.715, + "2004": 0.72, + "2005": 0.724, + "2006": 0.734, + "2007": 0.744, + "2008": 0.75, + "2009": 0.745, + "2010": 0.751, + "2011": 0.755, + "2012": 0.762, + "2013": 0.764, + "2014": 0.768, + "2015": 0.772, + "2016": 0.777, + "2017": 0.781, + "2018": 0.784, + "2019": 0.785, + "2020": 0.778, + "2021": 0.788 + }, + { + "Country": "Costa Rica", + "Continent": "America", + "ISO_Code": "CRI", + "Level": "Subnat", + "GDLCODE": "CRIr101", + "Region": "San Jose", + "1990": 0.694, + "1991": 0.696, + "1992": 0.706, + "1993": 0.713, + "1994": 0.717, + "1995": 0.719, + "1996": 0.718, + "1997": 0.723, + "1998": 0.728, + "1999": 0.729, + "2000": 0.73, + "2001": 0.733, + "2002": 0.735, + "2003": 0.739, + "2004": 0.744, + "2005": 0.749, + "2006": 0.759, + "2007": 0.769, + "2008": 0.775, + "2009": 0.77, + "2010": 0.776, + "2011": 0.78, + "2012": 0.786, + "2013": 0.787, + "2014": 0.79, + "2015": 0.794, + "2016": 0.798, + "2017": 0.802, + "2018": 0.804, + "2019": 0.805, + "2020": 0.797, + "2021": 0.807 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "National", + "GDLCODE": "CIVt", + "Region": "Total", + "1990": 0.504, + "1991": 0.497, + "1992": 0.493, + "1993": 0.49, + "1994": 0.49, + "1995": 0.496, + "1996": 0.499, + "1997": 0.508, + "1998": 0.511, + "1999": 0.506, + "2000": 0.503, + "2001": 0.5, + "2002": 0.494, + "2003": 0.49, + "2004": 0.49, + "2005": 0.489, + "2006": 0.488, + "2007": 0.487, + "2008": 0.488, + "2009": 0.492, + "2010": 0.498, + "2011": 0.487, + "2012": 0.496, + "2013": 0.506, + "2014": 0.563, + "2015": 0.569, + "2016": 0.575, + "2017": 0.581, + "2018": 0.586, + "2019": 0.593, + "2020": 0.592, + "2021": 0.597 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr101", + "Region": "Centre", + "1990": 0.516, + "1991": 0.508, + "1992": 0.505, + "1993": 0.501, + "1994": 0.502, + "1995": 0.507, + "1996": 0.51, + "1997": 0.518, + "1998": 0.521, + "1999": 0.515, + "2000": 0.512, + "2001": 0.509, + "2002": 0.504, + "2003": 0.5, + "2004": 0.499, + "2005": 0.499, + "2006": 0.491, + "2007": 0.483, + "2008": 0.477, + "2009": 0.473, + "2010": 0.472, + "2011": 0.454, + "2012": 0.468, + "2013": 0.482, + "2014": 0.543, + "2015": 0.554, + "2016": 0.565, + "2017": 0.571, + "2018": 0.576, + "2019": 0.583, + "2020": 0.582, + "2021": 0.587 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr102", + "Region": "Centre Est", + "1990": 0.503, + "1991": 0.496, + "1992": 0.493, + "1993": 0.489, + "1994": 0.49, + "1995": 0.5, + "1996": 0.507, + "1997": 0.52, + "1998": 0.528, + "1999": 0.528, + "2000": 0.516, + "2001": 0.506, + "2002": 0.493, + "2003": 0.481, + "2004": 0.473, + "2005": 0.465, + "2006": 0.469, + "2007": 0.473, + "2008": 0.478, + "2009": 0.487, + "2010": 0.498, + "2011": 0.491, + "2012": 0.499, + "2013": 0.507, + "2014": 0.562, + "2015": 0.566, + "2016": 0.571, + "2017": 0.576, + "2018": 0.581, + "2019": 0.588, + "2020": 0.587, + "2021": 0.593 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr103", + "Region": "Centre Nord", + "1990": 0.508, + "1991": 0.501, + "1992": 0.497, + "1993": 0.494, + "1994": 0.494, + "1995": 0.499, + "1996": 0.5, + "1997": 0.508, + "1998": 0.509, + "1999": 0.503, + "2000": 0.5, + "2001": 0.498, + "2002": 0.493, + "2003": 0.49, + "2004": 0.49, + "2005": 0.49, + "2006": 0.491, + "2007": 0.492, + "2008": 0.494, + "2009": 0.499, + "2010": 0.507, + "2011": 0.496, + "2012": 0.505, + "2013": 0.514, + "2014": 0.571, + "2015": 0.576, + "2016": 0.582, + "2017": 0.588, + "2018": 0.593, + "2019": 0.6, + "2020": 0.598, + "2021": 0.604 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr104", + "Region": "Centre Ouest", + "1990": 0.455, + "1991": 0.448, + "1992": 0.445, + "1993": 0.442, + "1994": 0.442, + "1995": 0.45, + "1996": 0.454, + "1997": 0.463, + "1998": 0.468, + "1999": 0.465, + "2000": 0.458, + "2001": 0.451, + "2002": 0.442, + "2003": 0.434, + "2004": 0.43, + "2005": 0.425, + "2006": 0.432, + "2007": 0.439, + "2008": 0.447, + "2009": 0.458, + "2010": 0.472, + "2011": 0.468, + "2012": 0.471, + "2013": 0.475, + "2014": 0.524, + "2015": 0.524, + "2016": 0.525, + "2017": 0.53, + "2018": 0.535, + "2019": 0.542, + "2020": 0.54, + "2021": 0.546 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr105", + "Region": "Nord", + "1990": 0.464, + "1991": 0.457, + "1992": 0.454, + "1993": 0.45, + "1994": 0.451, + "1995": 0.462, + "1996": 0.47, + "1997": 0.485, + "1998": 0.493, + "1999": 0.494, + "2000": 0.485, + "2001": 0.477, + "2002": 0.466, + "2003": 0.457, + "2004": 0.45, + "2005": 0.444, + "2006": 0.445, + "2007": 0.445, + "2008": 0.448, + "2009": 0.453, + "2010": 0.46, + "2011": 0.45, + "2012": 0.458, + "2013": 0.466, + "2014": 0.52, + "2015": 0.524, + "2016": 0.529, + "2017": 0.535, + "2018": 0.539, + "2019": 0.546, + "2020": 0.545, + "2021": 0.55 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr106", + "Region": "Nord Est", + "1990": 0.485, + "1991": 0.478, + "1992": 0.475, + "1993": 0.471, + "1994": 0.472, + "1995": 0.475, + "1996": 0.474, + "1997": 0.48, + "1998": 0.48, + "1999": 0.472, + "2000": 0.46, + "2001": 0.449, + "2002": 0.436, + "2003": 0.424, + "2004": 0.415, + "2005": 0.406, + "2006": 0.409, + "2007": 0.413, + "2008": 0.418, + "2009": 0.426, + "2010": 0.436, + "2011": 0.43, + "2012": 0.44, + "2013": 0.451, + "2014": 0.507, + "2015": 0.515, + "2016": 0.523, + "2017": 0.528, + "2018": 0.533, + "2019": 0.54, + "2020": 0.538, + "2021": 0.544 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr107", + "Region": "Nord Ouest", + "1990": 0.49, + "1991": 0.482, + "1992": 0.479, + "1993": 0.475, + "1994": 0.476, + "1995": 0.475, + "1996": 0.47, + "1997": 0.471, + "1998": 0.467, + "1999": 0.455, + "2000": 0.451, + "2001": 0.448, + "2002": 0.442, + "2003": 0.438, + "2004": 0.437, + "2005": 0.436, + "2006": 0.439, + "2007": 0.442, + "2008": 0.447, + "2009": 0.455, + "2010": 0.464, + "2011": 0.457, + "2012": 0.463, + "2013": 0.47, + "2014": 0.522, + "2015": 0.525, + "2016": 0.528, + "2017": 0.533, + "2018": 0.538, + "2019": 0.545, + "2020": 0.544, + "2021": 0.549 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr108", + "Region": "Ouest", + "1990": 0.442, + "1991": 0.435, + "1992": 0.431, + "1993": 0.428, + "1994": 0.429, + "1995": 0.436, + "1996": 0.439, + "1997": 0.449, + "1998": 0.453, + "1999": 0.45, + "2000": 0.438, + "2001": 0.428, + "2002": 0.415, + "2003": 0.403, + "2004": 0.395, + "2005": 0.387, + "2006": 0.393, + "2007": 0.4, + "2008": 0.408, + "2009": 0.418, + "2010": 0.431, + "2011": 0.427, + "2012": 0.433, + "2013": 0.438, + "2014": 0.489, + "2015": 0.491, + "2016": 0.493, + "2017": 0.499, + "2018": 0.503, + "2019": 0.51, + "2020": 0.508, + "2021": 0.514 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr110", + "Region": "Sud Ouest", + "1990": 0.449, + "1991": 0.442, + "1992": 0.439, + "1993": 0.435, + "1994": 0.436, + "1995": 0.449, + "1996": 0.459, + "1997": 0.475, + "1998": 0.486, + "1999": 0.488, + "2000": 0.477, + "2001": 0.466, + "2002": 0.452, + "2003": 0.44, + "2004": 0.431, + "2005": 0.423, + "2006": 0.424, + "2007": 0.426, + "2008": 0.429, + "2009": 0.434, + "2010": 0.442, + "2011": 0.433, + "2012": 0.445, + "2013": 0.456, + "2014": 0.513, + "2015": 0.521, + "2016": 0.53, + "2017": 0.535, + "2018": 0.54, + "2019": 0.547, + "2020": 0.546, + "2021": 0.551 + }, + { + "Country": "Cote d'Ivoire", + "Continent": "Africa", + "ISO_Code": "CIV", + "Level": "Subnat", + "GDLCODE": "CIVr109", + "Region": "Sud, Abidjan", + "1990": 0.556, + "1991": 0.548, + "1992": 0.544, + "1993": 0.541, + "1994": 0.542, + "1995": 0.547, + "1996": 0.549, + "1997": 0.557, + "1998": 0.56, + "1999": 0.554, + "2000": 0.554, + "2001": 0.555, + "2002": 0.553, + "2003": 0.552, + "2004": 0.555, + "2005": 0.558, + "2006": 0.556, + "2007": 0.554, + "2008": 0.555, + "2009": 0.558, + "2010": 0.563, + "2011": 0.551, + "2012": 0.561, + "2013": 0.572, + "2014": 0.633, + "2015": 0.64, + "2016": 0.647, + "2017": 0.653, + "2018": 0.658, + "2019": 0.666, + "2020": 0.664, + "2021": 0.67 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "National", + "GDLCODE": "HRVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.758, + "1996": 0.769, + "1997": 0.779, + "1998": 0.781, + "1999": 0.779, + "2000": 0.785, + "2001": 0.795, + "2002": 0.804, + "2003": 0.809, + "2004": 0.818, + "2005": 0.823, + "2006": 0.83, + "2007": 0.838, + "2008": 0.839, + "2009": 0.827, + "2010": 0.826, + "2011": 0.826, + "2012": 0.823, + "2013": 0.825, + "2014": 0.825, + "2015": 0.832, + "2016": 0.835, + "2017": 0.844, + "2018": 0.85, + "2019": 0.856, + "2020": 0.847, + "2021": 0.862 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr101", + "Region": "City of Zagreb", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.835, + "1996": 0.847, + "1997": 0.857, + "1998": 0.86, + "1999": 0.857, + "2000": 0.864, + "2001": 0.875, + "2002": 0.882, + "2003": 0.891, + "2004": 0.901, + "2005": 0.91, + "2006": 0.918, + "2007": 0.923, + "2008": 0.925, + "2009": 0.913, + "2010": 0.919, + "2011": 0.917, + "2012": 0.913, + "2013": 0.913, + "2014": 0.912, + "2015": 0.92, + "2016": 0.923, + "2017": 0.933, + "2018": 0.939, + "2019": 0.945, + "2020": 0.935, + "2021": 0.951 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr107", + "Region": "County of Bjelovar-Bilogora", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.713, + "1996": 0.723, + "1997": 0.733, + "1998": 0.736, + "1999": 0.733, + "2000": 0.739, + "2001": 0.749, + "2002": 0.761, + "2003": 0.758, + "2004": 0.763, + "2005": 0.76, + "2006": 0.775, + "2007": 0.772, + "2008": 0.786, + "2009": 0.779, + "2010": 0.765, + "2011": 0.766, + "2012": 0.761, + "2013": 0.763, + "2014": 0.768, + "2015": 0.775, + "2016": 0.778, + "2017": 0.787, + "2018": 0.792, + "2019": 0.798, + "2020": 0.789, + "2021": 0.804 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr110", + "Region": "County of Brod-Posavina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.683, + "1996": 0.693, + "1997": 0.702, + "1998": 0.705, + "1999": 0.702, + "2000": 0.708, + "2001": 0.726, + "2002": 0.734, + "2003": 0.734, + "2004": 0.743, + "2005": 0.735, + "2006": 0.743, + "2007": 0.749, + "2008": 0.755, + "2009": 0.741, + "2010": 0.736, + "2011": 0.739, + "2012": 0.737, + "2013": 0.74, + "2014": 0.736, + "2015": 0.742, + "2016": 0.745, + "2017": 0.754, + "2018": 0.759, + "2019": 0.764, + "2020": 0.756, + "2021": 0.77 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr121", + "Region": "County of Dubrovnik-Neretva", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.74, + "1996": 0.751, + "1997": 0.761, + "1998": 0.763, + "1999": 0.761, + "2000": 0.767, + "2001": 0.779, + "2002": 0.782, + "2003": 0.792, + "2004": 0.812, + "2005": 0.819, + "2006": 0.826, + "2007": 0.845, + "2008": 0.838, + "2009": 0.826, + "2010": 0.823, + "2011": 0.818, + "2012": 0.817, + "2013": 0.821, + "2014": 0.826, + "2015": 0.833, + "2016": 0.836, + "2017": 0.845, + "2018": 0.85, + "2019": 0.856, + "2020": 0.847, + "2021": 0.863 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr120", + "Region": "County of Istria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.798, + "1996": 0.809, + "1997": 0.819, + "1998": 0.822, + "1999": 0.819, + "2000": 0.826, + "2001": 0.842, + "2002": 0.853, + "2003": 0.859, + "2004": 0.869, + "2005": 0.867, + "2006": 0.87, + "2007": 0.878, + "2008": 0.871, + "2009": 0.863, + "2010": 0.862, + "2011": 0.862, + "2012": 0.855, + "2013": 0.859, + "2014": 0.86, + "2015": 0.867, + "2016": 0.87, + "2017": 0.879, + "2018": 0.885, + "2019": 0.891, + "2020": 0.882, + "2021": 0.898 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr113", + "Region": "County of Karlovac", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.721, + "1996": 0.731, + "1997": 0.741, + "1998": 0.743, + "1999": 0.741, + "2000": 0.747, + "2001": 0.77, + "2002": 0.78, + "2003": 0.77, + "2004": 0.769, + "2005": 0.773, + "2006": 0.786, + "2007": 0.797, + "2008": 0.795, + "2009": 0.778, + "2010": 0.775, + "2011": 0.781, + "2012": 0.777, + "2013": 0.783, + "2014": 0.781, + "2015": 0.788, + "2016": 0.791, + "2017": 0.8, + "2018": 0.805, + "2019": 0.811, + "2020": 0.802, + "2021": 0.817 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr105", + "Region": "County of Koprivnica-Krizevc", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.777, + "1996": 0.788, + "1997": 0.798, + "1998": 0.801, + "1999": 0.798, + "2000": 0.804, + "2001": 0.808, + "2002": 0.815, + "2003": 0.813, + "2004": 0.809, + "2005": 0.806, + "2006": 0.824, + "2007": 0.825, + "2008": 0.814, + "2009": 0.816, + "2010": 0.804, + "2011": 0.809, + "2012": 0.805, + "2013": 0.802, + "2014": 0.799, + "2015": 0.806, + "2016": 0.809, + "2017": 0.818, + "2018": 0.823, + "2019": 0.829, + "2020": 0.82, + "2021": 0.836 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr103", + "Region": "County of Krapina-Zagorje", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.715, + "1996": 0.726, + "1997": 0.735, + "1998": 0.738, + "1999": 0.735, + "2000": 0.741, + "2001": 0.758, + "2002": 0.759, + "2003": 0.759, + "2004": 0.76, + "2005": 0.77, + "2006": 0.771, + "2007": 0.781, + "2008": 0.773, + "2009": 0.754, + "2010": 0.745, + "2011": 0.748, + "2012": 0.747, + "2013": 0.753, + "2014": 0.758, + "2015": 0.765, + "2016": 0.767, + "2017": 0.776, + "2018": 0.781, + "2019": 0.787, + "2020": 0.778, + "2021": 0.793 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr116", + "Region": "County of Lika-Senj", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.729, + "1996": 0.74, + "1997": 0.75, + "1998": 0.752, + "1999": 0.75, + "2000": 0.756, + "2001": 0.751, + "2002": 0.779, + "2003": 0.806, + "2004": 0.849, + "2005": 0.805, + "2006": 0.806, + "2007": 0.797, + "2008": 0.812, + "2009": 0.796, + "2010": 0.789, + "2011": 0.787, + "2012": 0.78, + "2013": 0.784, + "2014": 0.785, + "2015": 0.792, + "2016": 0.795, + "2017": 0.804, + "2018": 0.809, + "2019": 0.815, + "2020": 0.806, + "2021": 0.821 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr106", + "Region": "County of Medimurje", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.728, + "1996": 0.738, + "1997": 0.748, + "1998": 0.75, + "1999": 0.748, + "2000": 0.754, + "2001": 0.766, + "2002": 0.78, + "2003": 0.777, + "2004": 0.78, + "2005": 0.783, + "2006": 0.795, + "2007": 0.798, + "2008": 0.809, + "2009": 0.797, + "2010": 0.791, + "2011": 0.794, + "2012": 0.793, + "2013": 0.796, + "2014": 0.801, + "2015": 0.808, + "2016": 0.811, + "2017": 0.82, + "2018": 0.826, + "2019": 0.832, + "2020": 0.822, + "2021": 0.838 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr111", + "Region": "County of Osijek-Baranja", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.72, + "1996": 0.731, + "1997": 0.74, + "1998": 0.743, + "1999": 0.74, + "2000": 0.746, + "2001": 0.755, + "2002": 0.769, + "2003": 0.766, + "2004": 0.777, + "2005": 0.784, + "2006": 0.792, + "2007": 0.809, + "2008": 0.81, + "2009": 0.797, + "2010": 0.789, + "2011": 0.792, + "2012": 0.786, + "2013": 0.79, + "2014": 0.79, + "2015": 0.797, + "2016": 0.799, + "2017": 0.808, + "2018": 0.814, + "2019": 0.82, + "2020": 0.811, + "2021": 0.826 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr109", + "Region": "County of Pozega-Slavonia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.709, + "1996": 0.719, + "1997": 0.728, + "1998": 0.731, + "1999": 0.728, + "2000": 0.734, + "2001": 0.743, + "2002": 0.748, + "2003": 0.758, + "2004": 0.764, + "2005": 0.762, + "2006": 0.76, + "2007": 0.764, + "2008": 0.766, + "2009": 0.751, + "2010": 0.75, + "2011": 0.749, + "2012": 0.743, + "2013": 0.746, + "2014": 0.74, + "2015": 0.747, + "2016": 0.749, + "2017": 0.758, + "2018": 0.763, + "2019": 0.769, + "2020": 0.76, + "2021": 0.775 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr115", + "Region": "County of Primorje-Gorski Kotar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.795, + "1996": 0.806, + "1997": 0.816, + "1998": 0.819, + "1999": 0.816, + "2000": 0.822, + "2001": 0.82, + "2002": 0.823, + "2003": 0.835, + "2004": 0.84, + "2005": 0.851, + "2006": 0.856, + "2007": 0.859, + "2008": 0.868, + "2009": 0.853, + "2010": 0.853, + "2011": 0.855, + "2012": 0.86, + "2013": 0.861, + "2014": 0.858, + "2015": 0.865, + "2016": 0.868, + "2017": 0.877, + "2018": 0.883, + "2019": 0.889, + "2020": 0.88, + "2021": 0.896 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr118", + "Region": "County of Sibenik-Knin", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.707, + "1996": 0.717, + "1997": 0.727, + "1998": 0.73, + "1999": 0.727, + "2000": 0.733, + "2001": 0.737, + "2002": 0.749, + "2003": 0.763, + "2004": 0.777, + "2005": 0.789, + "2006": 0.784, + "2007": 0.803, + "2008": 0.795, + "2009": 0.772, + "2010": 0.781, + "2011": 0.784, + "2012": 0.782, + "2013": 0.789, + "2014": 0.79, + "2015": 0.797, + "2016": 0.8, + "2017": 0.809, + "2018": 0.814, + "2019": 0.82, + "2020": 0.811, + "2021": 0.826 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr114", + "Region": "County of Sisak-Moslavina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.746, + "1996": 0.757, + "1997": 0.767, + "1998": 0.769, + "1999": 0.767, + "2000": 0.773, + "2001": 0.762, + "2002": 0.763, + "2003": 0.761, + "2004": 0.764, + "2005": 0.771, + "2006": 0.787, + "2007": 0.776, + "2008": 0.788, + "2009": 0.784, + "2010": 0.786, + "2011": 0.791, + "2012": 0.787, + "2013": 0.784, + "2014": 0.777, + "2015": 0.784, + "2016": 0.786, + "2017": 0.795, + "2018": 0.801, + "2019": 0.807, + "2020": 0.798, + "2021": 0.813 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr119", + "Region": "County of Split-Dalmatia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.722, + "1996": 0.733, + "1997": 0.742, + "1998": 0.745, + "1999": 0.742, + "2000": 0.748, + "2001": 0.762, + "2002": 0.769, + "2003": 0.775, + "2004": 0.79, + "2005": 0.789, + "2006": 0.798, + "2007": 0.813, + "2008": 0.807, + "2009": 0.792, + "2010": 0.791, + "2011": 0.788, + "2012": 0.782, + "2013": 0.785, + "2014": 0.785, + "2015": 0.792, + "2016": 0.795, + "2017": 0.804, + "2018": 0.809, + "2019": 0.815, + "2020": 0.806, + "2021": 0.821 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr104", + "Region": "County of Varazdin", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.744, + "1996": 0.755, + "1997": 0.765, + "1998": 0.767, + "1999": 0.765, + "2000": 0.771, + "2001": 0.782, + "2002": 0.797, + "2003": 0.797, + "2004": 0.791, + "2005": 0.792, + "2006": 0.798, + "2007": 0.804, + "2008": 0.811, + "2009": 0.8, + "2010": 0.791, + "2011": 0.792, + "2012": 0.79, + "2013": 0.795, + "2014": 0.797, + "2015": 0.804, + "2016": 0.807, + "2017": 0.816, + "2018": 0.821, + "2019": 0.827, + "2020": 0.818, + "2021": 0.833 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr108", + "Region": "County of Virovitica-Podravina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.71, + "1996": 0.72, + "1997": 0.73, + "1998": 0.733, + "1999": 0.73, + "2000": 0.736, + "2001": 0.75, + "2002": 0.756, + "2003": 0.758, + "2004": 0.758, + "2005": 0.754, + "2006": 0.771, + "2007": 0.776, + "2008": 0.771, + "2009": 0.752, + "2010": 0.745, + "2011": 0.75, + "2012": 0.746, + "2013": 0.744, + "2014": 0.735, + "2015": 0.742, + "2016": 0.745, + "2017": 0.753, + "2018": 0.759, + "2019": 0.764, + "2020": 0.756, + "2021": 0.77 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr112", + "Region": "County of Vukovar-Srijem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.676, + "1996": 0.686, + "1997": 0.696, + "1998": 0.698, + "1999": 0.696, + "2000": 0.702, + "2001": 0.718, + "2002": 0.729, + "2003": 0.734, + "2004": 0.738, + "2005": 0.744, + "2006": 0.76, + "2007": 0.76, + "2008": 0.766, + "2009": 0.753, + "2010": 0.743, + "2011": 0.747, + "2012": 0.74, + "2013": 0.744, + "2014": 0.742, + "2015": 0.749, + "2016": 0.751, + "2017": 0.76, + "2018": 0.765, + "2019": 0.771, + "2020": 0.762, + "2021": 0.777 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr117", + "Region": "County of Zadar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.713, + "1996": 0.723, + "1997": 0.733, + "1998": 0.735, + "1999": 0.733, + "2000": 0.738, + "2001": 0.759, + "2002": 0.77, + "2003": 0.788, + "2004": 0.792, + "2005": 0.799, + "2006": 0.798, + "2007": 0.814, + "2008": 0.818, + "2009": 0.8, + "2010": 0.793, + "2011": 0.791, + "2012": 0.788, + "2013": 0.791, + "2014": 0.792, + "2015": 0.799, + "2016": 0.802, + "2017": 0.811, + "2018": 0.817, + "2019": 0.822, + "2020": 0.813, + "2021": 0.829 + }, + { + "Country": "Croatia", + "Continent": "Europe", + "ISO_Code": "HRV", + "Level": "Subnat", + "GDLCODE": "HRVr102", + "Region": "County of Zagreb", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.724, + "1996": 0.734, + "1997": 0.744, + "1998": 0.747, + "1999": 0.744, + "2000": 0.75, + "2001": 0.745, + "2002": 0.77, + "2003": 0.77, + "2004": 0.779, + "2005": 0.789, + "2006": 0.786, + "2007": 0.798, + "2008": 0.798, + "2009": 0.79, + "2010": 0.78, + "2011": 0.784, + "2012": 0.781, + "2013": 0.783, + "2014": 0.787, + "2015": 0.794, + "2016": 0.796, + "2017": 0.805, + "2018": 0.811, + "2019": 0.817, + "2020": 0.808, + "2021": 0.823 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "National", + "GDLCODE": "CUBt", + "Region": "Total", + "1990": 0.599, + "1991": 0.581, + "1992": 0.562, + "1993": 0.537, + "1994": 0.537, + "1995": 0.539, + "1996": 0.55, + "1997": 0.554, + "1998": 0.554, + "1999": 0.562, + "2000": 0.57, + "2001": 0.575, + "2002": 0.577, + "2003": 0.582, + "2004": 0.59, + "2005": 0.606, + "2006": 0.624, + "2007": 0.634, + "2008": 0.64, + "2009": 0.641, + "2010": 0.645, + "2011": 0.65, + "2012": 0.655, + "2013": 0.659, + "2014": 0.66, + "2015": 0.666, + "2016": 0.666, + "2017": 0.669, + "2018": 0.672, + "2019": 0.675, + "2020": 0.658, + "2021": 0.66 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr103", + "Region": "C. Habana", + "1990": 0.599, + "1991": 0.635, + "1992": 0.615, + "1993": 0.589, + "1994": 0.589, + "1995": 0.591, + "1996": 0.603, + "1997": 0.606, + "1998": 0.606, + "1999": 0.615, + "2000": 0.623, + "2001": 0.628, + "2002": 0.63, + "2003": 0.635, + "2004": 0.644, + "2005": 0.66, + "2006": 0.679, + "2007": 0.689, + "2008": 0.696, + "2009": 0.697, + "2010": 0.701, + "2011": 0.706, + "2012": 0.711, + "2013": 0.715, + "2014": 0.716, + "2015": 0.723, + "2016": 0.723, + "2017": 0.726, + "2018": 0.73, + "2019": 0.733, + "2020": 0.715, + "2021": 0.716 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr109", + "Region": "Camaguey", + "1990": 0.599, + "1991": 0.547, + "1992": 0.529, + "1993": 0.504, + "1994": 0.504, + "1995": 0.506, + "1996": 0.517, + "1997": 0.521, + "1998": 0.52, + "1999": 0.528, + "2000": 0.536, + "2001": 0.541, + "2002": 0.543, + "2003": 0.548, + "2004": 0.555, + "2005": 0.571, + "2006": 0.588, + "2007": 0.598, + "2008": 0.604, + "2009": 0.605, + "2010": 0.609, + "2011": 0.614, + "2012": 0.618, + "2013": 0.622, + "2014": 0.623, + "2015": 0.63, + "2016": 0.63, + "2017": 0.633, + "2018": 0.636, + "2019": 0.639, + "2020": 0.622, + "2021": 0.623 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr108", + "Region": "Ciego de Avila", + "1990": 0.599, + "1991": 0.579, + "1992": 0.561, + "1993": 0.535, + "1994": 0.536, + "1995": 0.538, + "1996": 0.549, + "1997": 0.552, + "1998": 0.552, + "1999": 0.56, + "2000": 0.568, + "2001": 0.573, + "2002": 0.575, + "2003": 0.58, + "2004": 0.588, + "2005": 0.604, + "2006": 0.622, + "2007": 0.632, + "2008": 0.638, + "2009": 0.639, + "2010": 0.643, + "2011": 0.648, + "2012": 0.653, + "2013": 0.657, + "2014": 0.658, + "2015": 0.664, + "2016": 0.665, + "2017": 0.667, + "2018": 0.671, + "2019": 0.674, + "2020": 0.656, + "2021": 0.658 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr106", + "Region": "Cienfuegos", + "1990": 0.599, + "1991": 0.59, + "1992": 0.571, + "1993": 0.545, + "1994": 0.546, + "1995": 0.548, + "1996": 0.559, + "1997": 0.562, + "1998": 0.562, + "1999": 0.571, + "2000": 0.579, + "2001": 0.583, + "2002": 0.585, + "2003": 0.59, + "2004": 0.598, + "2005": 0.615, + "2006": 0.633, + "2007": 0.643, + "2008": 0.649, + "2009": 0.65, + "2010": 0.654, + "2011": 0.659, + "2012": 0.664, + "2013": 0.668, + "2014": 0.669, + "2015": 0.675, + "2016": 0.676, + "2017": 0.678, + "2018": 0.682, + "2019": 0.685, + "2020": 0.667, + "2021": 0.669 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr112", + "Region": "Granma", + "1990": 0.599, + "1991": 0.539, + "1992": 0.521, + "1993": 0.496, + "1994": 0.497, + "1995": 0.499, + "1996": 0.509, + "1997": 0.513, + "1998": 0.513, + "1999": 0.521, + "2000": 0.528, + "2001": 0.533, + "2002": 0.535, + "2003": 0.54, + "2004": 0.547, + "2005": 0.563, + "2006": 0.58, + "2007": 0.59, + "2008": 0.596, + "2009": 0.597, + "2010": 0.601, + "2011": 0.606, + "2012": 0.61, + "2013": 0.614, + "2014": 0.615, + "2015": 0.621, + "2016": 0.621, + "2017": 0.624, + "2018": 0.627, + "2019": 0.63, + "2020": 0.614, + "2021": 0.615 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr114", + "Region": "Guantanamo", + "1990": 0.599, + "1991": 0.566, + "1992": 0.547, + "1993": 0.522, + "1994": 0.523, + "1995": 0.525, + "1996": 0.536, + "1997": 0.539, + "1998": 0.539, + "1999": 0.547, + "2000": 0.555, + "2001": 0.56, + "2002": 0.561, + "2003": 0.567, + "2004": 0.574, + "2005": 0.59, + "2006": 0.608, + "2007": 0.618, + "2008": 0.624, + "2009": 0.625, + "2010": 0.629, + "2011": 0.634, + "2012": 0.638, + "2013": 0.642, + "2014": 0.643, + "2015": 0.65, + "2016": 0.65, + "2017": 0.653, + "2018": 0.656, + "2019": 0.659, + "2020": 0.642, + "2021": 0.643 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr111", + "Region": "Holguin", + "1990": 0.599, + "1991": 0.545, + "1992": 0.527, + "1993": 0.502, + "1994": 0.503, + "1995": 0.505, + "1996": 0.515, + "1997": 0.519, + "1998": 0.519, + "1999": 0.527, + "2000": 0.534, + "2001": 0.539, + "2002": 0.541, + "2003": 0.546, + "2004": 0.554, + "2005": 0.569, + "2006": 0.586, + "2007": 0.596, + "2008": 0.602, + "2009": 0.603, + "2010": 0.607, + "2011": 0.612, + "2012": 0.616, + "2013": 0.62, + "2014": 0.621, + "2015": 0.628, + "2016": 0.628, + "2017": 0.631, + "2018": 0.634, + "2019": 0.637, + "2020": 0.62, + "2021": 0.621 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr115", + "Region": "Isla", + "1990": 0.599, + "1991": 0.632, + "1992": 0.612, + "1993": 0.586, + "1994": 0.586, + "1995": 0.588, + "1996": 0.6, + "1997": 0.604, + "1998": 0.603, + "1999": 0.612, + "2000": 0.62, + "2001": 0.625, + "2002": 0.627, + "2003": 0.633, + "2004": 0.641, + "2005": 0.658, + "2006": 0.676, + "2007": 0.687, + "2008": 0.693, + "2009": 0.694, + "2010": 0.698, + "2011": 0.704, + "2012": 0.708, + "2013": 0.712, + "2014": 0.713, + "2015": 0.72, + "2016": 0.721, + "2017": 0.723, + "2018": 0.727, + "2019": 0.73, + "2020": 0.712, + "2021": 0.713 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr110", + "Region": "Las Tunas", + "1990": 0.599, + "1991": 0.54, + "1992": 0.522, + "1993": 0.498, + "1994": 0.498, + "1995": 0.5, + "1996": 0.511, + "1997": 0.514, + "1998": 0.514, + "1999": 0.522, + "2000": 0.529, + "2001": 0.534, + "2002": 0.536, + "2003": 0.541, + "2004": 0.549, + "2005": 0.564, + "2006": 0.581, + "2007": 0.591, + "2008": 0.597, + "2009": 0.598, + "2010": 0.602, + "2011": 0.607, + "2012": 0.611, + "2013": 0.615, + "2014": 0.616, + "2015": 0.622, + "2016": 0.623, + "2017": 0.625, + "2018": 0.629, + "2019": 0.632, + "2020": 0.615, + "2021": 0.616 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr104", + "Region": "Matanzas", + "1990": 0.599, + "1991": 0.608, + "1992": 0.589, + "1993": 0.563, + "1994": 0.563, + "1995": 0.565, + "1996": 0.577, + "1997": 0.58, + "1998": 0.58, + "1999": 0.589, + "2000": 0.597, + "2001": 0.602, + "2002": 0.603, + "2003": 0.609, + "2004": 0.617, + "2005": 0.633, + "2006": 0.651, + "2007": 0.662, + "2008": 0.668, + "2009": 0.669, + "2010": 0.673, + "2011": 0.678, + "2012": 0.683, + "2013": 0.687, + "2014": 0.688, + "2015": 0.695, + "2016": 0.695, + "2017": 0.698, + "2018": 0.701, + "2019": 0.704, + "2020": 0.687, + "2021": 0.688 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr101", + "Region": "Pinar del Rio", + "1990": 0.599, + "1991": 0.593, + "1992": 0.574, + "1993": 0.548, + "1994": 0.549, + "1995": 0.551, + "1996": 0.562, + "1997": 0.566, + "1998": 0.565, + "1999": 0.574, + "2000": 0.582, + "2001": 0.587, + "2002": 0.588, + "2003": 0.594, + "2004": 0.602, + "2005": 0.618, + "2006": 0.636, + "2007": 0.646, + "2008": 0.652, + "2009": 0.653, + "2010": 0.657, + "2011": 0.662, + "2012": 0.667, + "2013": 0.671, + "2014": 0.672, + "2015": 0.679, + "2016": 0.679, + "2017": 0.682, + "2018": 0.685, + "2019": 0.688, + "2020": 0.671, + "2021": 0.672 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr102", + "Region": "Prov. Habana", + "1990": 0.599, + "1991": 0.618, + "1992": 0.598, + "1993": 0.573, + "1994": 0.573, + "1995": 0.575, + "1996": 0.586, + "1997": 0.59, + "1998": 0.59, + "1999": 0.598, + "2000": 0.606, + "2001": 0.611, + "2002": 0.613, + "2003": 0.619, + "2004": 0.627, + "2005": 0.643, + "2006": 0.662, + "2007": 0.672, + "2008": 0.678, + "2009": 0.679, + "2010": 0.684, + "2011": 0.689, + "2012": 0.693, + "2013": 0.698, + "2014": 0.699, + "2015": 0.705, + "2016": 0.706, + "2017": 0.708, + "2018": 0.712, + "2019": 0.715, + "2020": 0.697, + "2021": 0.699 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr107", + "Region": "S.Spiritus", + "1990": 0.599, + "1991": 0.57, + "1992": 0.551, + "1993": 0.526, + "1994": 0.527, + "1995": 0.529, + "1996": 0.54, + "1997": 0.543, + "1998": 0.543, + "1999": 0.551, + "2000": 0.559, + "2001": 0.564, + "2002": 0.566, + "2003": 0.571, + "2004": 0.579, + "2005": 0.595, + "2006": 0.612, + "2007": 0.622, + "2008": 0.628, + "2009": 0.629, + "2010": 0.633, + "2011": 0.638, + "2012": 0.643, + "2013": 0.647, + "2014": 0.648, + "2015": 0.654, + "2016": 0.655, + "2017": 0.657, + "2018": 0.661, + "2019": 0.664, + "2020": 0.647, + "2021": 0.648 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr113", + "Region": "Santiago de Cuba", + "1990": 0.599, + "1991": 0.558, + "1992": 0.54, + "1993": 0.515, + "1994": 0.515, + "1995": 0.517, + "1996": 0.528, + "1997": 0.532, + "1998": 0.532, + "1999": 0.54, + "2000": 0.547, + "2001": 0.552, + "2002": 0.554, + "2003": 0.559, + "2004": 0.567, + "2005": 0.583, + "2006": 0.6, + "2007": 0.61, + "2008": 0.616, + "2009": 0.617, + "2010": 0.621, + "2011": 0.626, + "2012": 0.63, + "2013": 0.634, + "2014": 0.635, + "2015": 0.642, + "2016": 0.642, + "2017": 0.645, + "2018": 0.648, + "2019": 0.651, + "2020": 0.634, + "2021": 0.635 + }, + { + "Country": "Cuba", + "Continent": "America", + "ISO_Code": "CUB", + "Level": "Subnat", + "GDLCODE": "CUBr105", + "Region": "Villa Clara", + "1990": 0.599, + "1991": 0.579, + "1992": 0.56, + "1993": 0.535, + "1994": 0.535, + "1995": 0.537, + "1996": 0.548, + "1997": 0.551, + "1998": 0.551, + "1999": 0.56, + "2000": 0.567, + "2001": 0.572, + "2002": 0.574, + "2003": 0.579, + "2004": 0.587, + "2005": 0.603, + "2006": 0.621, + "2007": 0.631, + "2008": 0.637, + "2009": 0.638, + "2010": 0.642, + "2011": 0.647, + "2012": 0.652, + "2013": 0.656, + "2014": 0.657, + "2015": 0.663, + "2016": 0.664, + "2017": 0.666, + "2018": 0.67, + "2019": 0.673, + "2020": 0.655, + "2021": 0.657 + }, + { + "Country": "Cyprus", + "Continent": "Europe", + "ISO_Code": "CYP", + "Level": "National", + "GDLCODE": "CYPt", + "Region": "Total", + "1990": 0.835, + "1991": 0.832, + "1992": 0.841, + "1993": 0.839, + "1994": 0.844, + "1995": 0.847, + "1996": 0.847, + "1997": 0.847, + "1998": 0.867, + "1999": 0.86, + "2000": 0.862, + "2001": 0.869, + "2002": 0.876, + "2003": 0.88, + "2004": 0.882, + "2005": 0.888, + "2006": 0.892, + "2007": 0.895, + "2008": 0.904, + "2009": 0.899, + "2010": 0.896, + "2011": 0.899, + "2012": 0.887, + "2013": 0.876, + "2014": 0.873, + "2015": 0.882, + "2016": 0.885, + "2017": 0.894, + "2018": 0.899, + "2019": 0.903, + "2020": 0.891, + "2021": 0.898 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "National", + "GDLCODE": "CZEt", + "Region": "Total", + "1990": 0.818, + "1991": 0.799, + "1992": 0.798, + "1993": 0.8, + "1994": 0.804, + "1995": 0.812, + "1996": 0.82, + "1997": 0.82, + "1998": 0.823, + "1999": 0.825, + "2000": 0.829, + "2001": 0.835, + "2002": 0.839, + "2003": 0.845, + "2004": 0.851, + "2005": 0.859, + "2006": 0.863, + "2007": 0.871, + "2008": 0.873, + "2009": 0.866, + "2010": 0.866, + "2011": 0.866, + "2012": 0.866, + "2013": 0.868, + "2014": 0.872, + "2015": 0.88, + "2016": 0.884, + "2017": 0.892, + "2018": 0.896, + "2019": 0.899, + "2020": 0.896, + "2021": 0.9 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr106", + "Region": "Jihovychod", + "1990": 0.795, + "1991": 0.777, + "1992": 0.776, + "1993": 0.777, + "1994": 0.781, + "1995": 0.789, + "1996": 0.797, + "1997": 0.797, + "1998": 0.8, + "1999": 0.802, + "2000": 0.806, + "2001": 0.815, + "2002": 0.817, + "2003": 0.825, + "2004": 0.827, + "2005": 0.834, + "2006": 0.84, + "2007": 0.851, + "2008": 0.855, + "2009": 0.848, + "2010": 0.847, + "2011": 0.849, + "2012": 0.851, + "2013": 0.856, + "2014": 0.856, + "2015": 0.864, + "2016": 0.866, + "2017": 0.874, + "2018": 0.879, + "2019": 0.882, + "2020": 0.879, + "2021": 0.883 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr103", + "Region": "Jihozapad", + "1990": 0.807, + "1991": 0.788, + "1992": 0.787, + "1993": 0.788, + "1994": 0.793, + "1995": 0.801, + "1996": 0.809, + "1997": 0.809, + "1998": 0.812, + "1999": 0.814, + "2000": 0.818, + "2001": 0.823, + "2002": 0.823, + "2003": 0.829, + "2004": 0.837, + "2005": 0.843, + "2006": 0.849, + "2007": 0.851, + "2008": 0.846, + "2009": 0.842, + "2010": 0.842, + "2011": 0.842, + "2012": 0.842, + "2013": 0.845, + "2014": 0.849, + "2015": 0.855, + "2016": 0.858, + "2017": 0.867, + "2018": 0.869, + "2019": 0.872, + "2020": 0.868, + "2021": 0.873 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr108", + "Region": "Moravskoslezsko", + "1990": 0.773, + "1991": 0.754, + "1992": 0.754, + "1993": 0.755, + "1994": 0.759, + "1995": 0.767, + "1996": 0.775, + "1997": 0.775, + "1998": 0.778, + "1999": 0.779, + "2000": 0.783, + "2001": 0.79, + "2002": 0.792, + "2003": 0.798, + "2004": 0.809, + "2005": 0.825, + "2006": 0.828, + "2007": 0.836, + "2008": 0.841, + "2009": 0.829, + "2010": 0.832, + "2011": 0.836, + "2012": 0.838, + "2013": 0.833, + "2014": 0.841, + "2015": 0.846, + "2016": 0.852, + "2017": 0.857, + "2018": 0.864, + "2019": 0.864, + "2020": 0.86, + "2021": 0.864 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr101", + "Region": "Praha", + "1990": 0.936, + "1991": 0.916, + "1992": 0.915, + "1993": 0.916, + "1994": 0.921, + "1995": 0.93, + "1996": 0.938, + "1997": 0.938, + "1998": 0.942, + "1999": 0.943, + "2000": 0.948, + "2001": 0.956, + "2002": 0.966, + "2003": 0.976, + "2004": 0.982, + "2005": 0.991, + "2006": 0.994, + "2007": 1, + "2008": 1, + "2009": 0.996, + "2010": 0.999, + "2011": 0.994, + "2012": 0.994, + "2013": 0.997, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr105", + "Region": "Severovychod", + "1990": 0.801, + "1991": 0.783, + "1992": 0.782, + "1993": 0.783, + "1994": 0.787, + "1995": 0.795, + "1996": 0.803, + "1997": 0.803, + "1998": 0.806, + "1999": 0.808, + "2000": 0.812, + "2001": 0.815, + "2002": 0.814, + "2003": 0.815, + "2004": 0.82, + "2005": 0.826, + "2006": 0.832, + "2007": 0.836, + "2008": 0.837, + "2009": 0.829, + "2010": 0.829, + "2011": 0.831, + "2012": 0.829, + "2013": 0.831, + "2014": 0.837, + "2015": 0.844, + "2016": 0.85, + "2017": 0.86, + "2018": 0.864, + "2019": 0.866, + "2020": 0.863, + "2021": 0.867 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr104", + "Region": "Severozapad", + "1990": 0.789, + "1991": 0.771, + "1992": 0.77, + "1993": 0.771, + "1994": 0.775, + "1995": 0.783, + "1996": 0.791, + "1997": 0.791, + "1998": 0.794, + "1999": 0.796, + "2000": 0.8, + "2001": 0.799, + "2002": 0.802, + "2003": 0.811, + "2004": 0.812, + "2005": 0.819, + "2006": 0.821, + "2007": 0.827, + "2008": 0.827, + "2009": 0.824, + "2010": 0.82, + "2011": 0.818, + "2012": 0.818, + "2013": 0.817, + "2014": 0.818, + "2015": 0.827, + "2016": 0.827, + "2017": 0.834, + "2018": 0.834, + "2019": 0.841, + "2020": 0.837, + "2021": 0.842 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr102", + "Region": "Stredni Cechy", + "1990": 0.818, + "1991": 0.799, + "1992": 0.798, + "1993": 0.799, + "1994": 0.804, + "1995": 0.812, + "1996": 0.82, + "1997": 0.82, + "1998": 0.823, + "1999": 0.825, + "2000": 0.829, + "2001": 0.833, + "2002": 0.838, + "2003": 0.839, + "2004": 0.844, + "2005": 0.846, + "2006": 0.855, + "2007": 0.861, + "2008": 0.863, + "2009": 0.85, + "2010": 0.846, + "2011": 0.849, + "2012": 0.85, + "2013": 0.847, + "2014": 0.855, + "2015": 0.862, + "2016": 0.869, + "2017": 0.877, + "2018": 0.877, + "2019": 0.882, + "2020": 0.879, + "2021": 0.883 + }, + { + "Country": "Czech Republic", + "Continent": "Europe", + "ISO_Code": "CZE", + "Level": "Subnat", + "GDLCODE": "CZEr107", + "Region": "Stredni Morava", + "1990": 0.779, + "1991": 0.761, + "1992": 0.76, + "1993": 0.761, + "1994": 0.765, + "1995": 0.773, + "1996": 0.782, + "1997": 0.781, + "1998": 0.785, + "1999": 0.786, + "2000": 0.79, + "2001": 0.796, + "2002": 0.797, + "2003": 0.803, + "2004": 0.807, + "2005": 0.813, + "2006": 0.82, + "2007": 0.825, + "2008": 0.833, + "2009": 0.824, + "2010": 0.825, + "2011": 0.827, + "2012": 0.828, + "2013": 0.829, + "2014": 0.837, + "2015": 0.844, + "2016": 0.849, + "2017": 0.858, + "2018": 0.861, + "2019": 0.865, + "2020": 0.862, + "2021": 0.866 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "National", + "GDLCODE": "DNKt", + "Region": "Total", + "1990": 0.89, + "1991": 0.891, + "1992": 0.895, + "1993": 0.895, + "1994": 0.902, + "1995": 0.907, + "1996": 0.911, + "1997": 0.915, + "1998": 0.918, + "1999": 0.923, + "2000": 0.927, + "2001": 0.928, + "2002": 0.929, + "2003": 0.93, + "2004": 0.936, + "2005": 0.941, + "2006": 0.947, + "2007": 0.946, + "2008": 0.947, + "2009": 0.938, + "2010": 0.943, + "2011": 0.944, + "2012": 0.944, + "2013": 0.947, + "2014": 0.95, + "2015": 0.952, + "2016": 0.954, + "2017": 0.957, + "2018": 0.96, + "2019": 0.963, + "2020": 0.962, + "2021": 0.967 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr101", + "Region": "Hovedstaden", + "1990": 0.922, + "1991": 0.923, + "1992": 0.927, + "1993": 0.927, + "1994": 0.935, + "1995": 0.939, + "1996": 0.943, + "1997": 0.948, + "1998": 0.951, + "1999": 0.955, + "2000": 0.959, + "2001": 0.961, + "2002": 0.959, + "2003": 0.961, + "2004": 0.969, + "2005": 0.978, + "2006": 0.978, + "2007": 0.977, + "2008": 0.979, + "2009": 0.972, + "2010": 0.981, + "2011": 0.978, + "2012": 0.98, + "2013": 0.984, + "2014": 0.989, + "2015": 0.994, + "2016": 0.994, + "2017": 0.998, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr104", + "Region": "Midtjylland", + "1990": 0.881, + "1991": 0.882, + "1992": 0.886, + "1993": 0.886, + "1994": 0.894, + "1995": 0.898, + "1996": 0.902, + "1997": 0.907, + "1998": 0.91, + "1999": 0.914, + "2000": 0.918, + "2001": 0.92, + "2002": 0.923, + "2003": 0.921, + "2004": 0.926, + "2005": 0.927, + "2006": 0.937, + "2007": 0.936, + "2008": 0.936, + "2009": 0.929, + "2010": 0.928, + "2011": 0.931, + "2012": 0.929, + "2013": 0.931, + "2014": 0.934, + "2015": 0.933, + "2016": 0.942, + "2017": 0.945, + "2018": 0.946, + "2019": 0.952, + "2020": 0.95, + "2021": 0.956 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr105", + "Region": "Nordjylland", + "1990": 0.87, + "1991": 0.871, + "1992": 0.875, + "1993": 0.875, + "1994": 0.882, + "1995": 0.887, + "1996": 0.891, + "1997": 0.895, + "1998": 0.898, + "1999": 0.902, + "2000": 0.906, + "2001": 0.908, + "2002": 0.913, + "2003": 0.914, + "2004": 0.914, + "2005": 0.917, + "2006": 0.926, + "2007": 0.927, + "2008": 0.926, + "2009": 0.918, + "2010": 0.919, + "2011": 0.919, + "2012": 0.921, + "2013": 0.924, + "2014": 0.924, + "2015": 0.927, + "2016": 0.929, + "2017": 0.933, + "2018": 0.934, + "2019": 0.937, + "2020": 0.935, + "2021": 0.941 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr102", + "Region": "Sjaelland", + "1990": 0.841, + "1991": 0.842, + "1992": 0.846, + "1993": 0.846, + "1994": 0.853, + "1995": 0.858, + "1996": 0.861, + "1997": 0.866, + "1998": 0.869, + "1999": 0.873, + "2000": 0.877, + "2001": 0.88, + "2002": 0.883, + "2003": 0.884, + "2004": 0.889, + "2005": 0.891, + "2006": 0.897, + "2007": 0.894, + "2008": 0.889, + "2009": 0.881, + "2010": 0.887, + "2011": 0.887, + "2012": 0.889, + "2013": 0.889, + "2014": 0.892, + "2015": 0.898, + "2016": 0.897, + "2017": 0.901, + "2018": 0.903, + "2019": 0.906, + "2020": 0.905, + "2021": 0.911 + }, + { + "Country": "Denmark", + "Continent": "Europe", + "ISO_Code": "DNK", + "Level": "Subnat", + "GDLCODE": "DNKr103", + "Region": "Syddanmark", + "1990": 0.875, + "1991": 0.876, + "1992": 0.881, + "1993": 0.881, + "1994": 0.888, + "1995": 0.893, + "1996": 0.897, + "1997": 0.901, + "1998": 0.904, + "1999": 0.908, + "2000": 0.912, + "2001": 0.913, + "2002": 0.916, + "2003": 0.917, + "2004": 0.921, + "2005": 0.922, + "2006": 0.931, + "2007": 0.932, + "2008": 0.933, + "2009": 0.924, + "2010": 0.928, + "2011": 0.931, + "2012": 0.93, + "2013": 0.934, + "2014": 0.938, + "2015": 0.938, + "2016": 0.94, + "2017": 0.941, + "2018": 0.943, + "2019": 0.946, + "2020": 0.945, + "2021": 0.951 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "National", + "GDLCODE": "DJIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.45, + "1996": 0.439, + "1997": 0.441, + "1998": 0.437, + "1999": 0.441, + "2000": 0.439, + "2001": 0.438, + "2002": 0.442, + "2003": 0.452, + "2004": 0.457, + "2005": 0.46, + "2006": 0.476, + "2007": 0.481, + "2008": 0.486, + "2009": 0.504, + "2010": 0.518, + "2011": 0.534, + "2012": 0.55, + "2013": 0.557, + "2014": 0.565, + "2015": 0.573, + "2016": 0.577, + "2017": 0.58, + "2018": 0.59, + "2019": 0.588, + "2020": 0.588, + "2021": 0.592 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr101", + "Region": "Djibouti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.466, + "1996": 0.454, + "1997": 0.457, + "1998": 0.452, + "1999": 0.456, + "2000": 0.455, + "2001": 0.454, + "2002": 0.457, + "2003": 0.468, + "2004": 0.473, + "2005": 0.475, + "2006": 0.491, + "2007": 0.497, + "2008": 0.502, + "2009": 0.52, + "2010": 0.534, + "2011": 0.55, + "2012": 0.567, + "2013": 0.574, + "2014": 0.582, + "2015": 0.591, + "2016": 0.594, + "2017": 0.598, + "2018": 0.608, + "2019": 0.606, + "2020": 0.605, + "2021": 0.609 + }, + { + "Country": "Djibouti", + "Continent": "Africa", + "ISO_Code": "DJI", + "Level": "Subnat", + "GDLCODE": "DJIr102", + "Region": "Other Districts", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.373, + "1996": 0.362, + "1997": 0.364, + "1998": 0.36, + "1999": 0.364, + "2000": 0.363, + "2001": 0.362, + "2002": 0.365, + "2003": 0.375, + "2004": 0.379, + "2005": 0.382, + "2006": 0.396, + "2007": 0.401, + "2008": 0.406, + "2009": 0.422, + "2010": 0.436, + "2011": 0.451, + "2012": 0.466, + "2013": 0.472, + "2014": 0.48, + "2015": 0.488, + "2016": 0.491, + "2017": 0.494, + "2018": 0.503, + "2019": 0.502, + "2020": 0.501, + "2021": 0.505 + }, + { + "Country": "Dominica", + "Continent": "America", + "ISO_Code": "DMA", + "Level": "National", + "GDLCODE": "DMAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.677, + "2001": 0.684, + "2002": 0.678, + "2003": 0.688, + "2004": 0.69, + "2005": 0.692, + "2006": 0.705, + "2007": 0.713, + "2008": 0.724, + "2009": 0.725, + "2010": 0.727, + "2011": 0.726, + "2012": 0.725, + "2013": 0.723, + "2014": 0.73, + "2015": 0.722, + "2016": 0.728, + "2017": 0.711, + "2018": 0.726, + "2019": 0.732, + "2020": 0.712, + "2021": 0.717 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "National", + "GDLCODE": "DOMt", + "Region": "Total", + "1990": 0.617, + "1991": 0.616, + "1992": 0.629, + "1993": 0.635, + "1994": 0.637, + "1995": 0.643, + "1996": 0.65, + "1997": 0.66, + "1998": 0.667, + "1999": 0.673, + "2000": 0.678, + "2001": 0.68, + "2002": 0.684, + "2003": 0.676, + "2004": 0.675, + "2005": 0.692, + "2006": 0.704, + "2007": 0.712, + "2008": 0.718, + "2009": 0.717, + "2010": 0.727, + "2011": 0.73, + "2012": 0.732, + "2013": 0.736, + "2014": 0.744, + "2015": 0.754, + "2016": 0.761, + "2017": 0.766, + "2018": 0.775, + "2019": 0.781, + "2020": 0.768, + "2021": 0.784 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr101", + "Region": "Region 0 (Distrito Nacional, Santo Domingo, Monte Plata)", + "1990": 0.672, + "1991": 0.672, + "1992": 0.685, + "1993": 0.691, + "1994": 0.693, + "1995": 0.699, + "1996": 0.707, + "1997": 0.715, + "1998": 0.719, + "1999": 0.723, + "2000": 0.725, + "2001": 0.724, + "2002": 0.726, + "2003": 0.714, + "2004": 0.709, + "2005": 0.722, + "2006": 0.731, + "2007": 0.736, + "2008": 0.74, + "2009": 0.738, + "2010": 0.747, + "2011": 0.748, + "2012": 0.749, + "2013": 0.752, + "2014": 0.761, + "2015": 0.771, + "2016": 0.779, + "2017": 0.784, + "2018": 0.793, + "2019": 0.799, + "2020": 0.786, + "2021": 0.803 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr102", + "Region": "Region I (Peravia, San Cristobal, San Jose de Ocoa, Azua)", + "1990": 0.6, + "1991": 0.599, + "1992": 0.612, + "1993": 0.617, + "1994": 0.62, + "1995": 0.625, + "1996": 0.632, + "1997": 0.643, + "1998": 0.65, + "1999": 0.656, + "2000": 0.661, + "2001": 0.663, + "2002": 0.668, + "2003": 0.658, + "2004": 0.655, + "2005": 0.67, + "2006": 0.68, + "2007": 0.686, + "2008": 0.694, + "2009": 0.695, + "2010": 0.708, + "2011": 0.712, + "2012": 0.716, + "2013": 0.723, + "2014": 0.731, + "2015": 0.739, + "2016": 0.747, + "2017": 0.751, + "2018": 0.759, + "2019": 0.764, + "2020": 0.752, + "2021": 0.768 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr103", + "Region": "Region II (Espaillat, Puerto Plata, Santiago)", + "1990": 0.623, + "1991": 0.622, + "1992": 0.635, + "1993": 0.641, + "1994": 0.643, + "1995": 0.649, + "1996": 0.656, + "1997": 0.668, + "1998": 0.677, + "1999": 0.684, + "2000": 0.691, + "2001": 0.693, + "2002": 0.7, + "2003": 0.694, + "2004": 0.694, + "2005": 0.713, + "2006": 0.727, + "2007": 0.738, + "2008": 0.742, + "2009": 0.74, + "2010": 0.749, + "2011": 0.75, + "2012": 0.751, + "2013": 0.754, + "2014": 0.762, + "2015": 0.77, + "2016": 0.777, + "2017": 0.78, + "2018": 0.788, + "2019": 0.793, + "2020": 0.78, + "2021": 0.796 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr104", + "Region": "Region III (Duarte, Maria Trinidad Sanchez, Salcedo, Samana)", + "1990": 0.567, + "1991": 0.566, + "1992": 0.579, + "1993": 0.584, + "1994": 0.586, + "1995": 0.592, + "1996": 0.599, + "1997": 0.612, + "1998": 0.622, + "1999": 0.632, + "2000": 0.64, + "2001": 0.645, + "2002": 0.653, + "2003": 0.646, + "2004": 0.646, + "2005": 0.663, + "2006": 0.676, + "2007": 0.686, + "2008": 0.694, + "2009": 0.697, + "2010": 0.711, + "2011": 0.717, + "2012": 0.723, + "2013": 0.731, + "2014": 0.739, + "2015": 0.748, + "2016": 0.756, + "2017": 0.76, + "2018": 0.77, + "2019": 0.775, + "2020": 0.763, + "2021": 0.779 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr105", + "Region": "Region IV (Independencia, Bahoruco, Barahona, Pedernales)", + "1990": 0.563, + "1991": 0.562, + "1992": 0.575, + "1993": 0.58, + "1994": 0.582, + "1995": 0.587, + "1996": 0.594, + "1997": 0.603, + "1998": 0.609, + "1999": 0.613, + "2000": 0.617, + "2001": 0.617, + "2002": 0.62, + "2003": 0.614, + "2004": 0.615, + "2005": 0.632, + "2006": 0.646, + "2007": 0.656, + "2008": 0.661, + "2009": 0.661, + "2010": 0.672, + "2011": 0.675, + "2012": 0.678, + "2013": 0.682, + "2014": 0.693, + "2015": 0.705, + "2016": 0.716, + "2017": 0.724, + "2018": 0.736, + "2019": 0.744, + "2020": 0.732, + "2021": 0.748 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr106", + "Region": "Region V (El Seibo, La Altagracia, La Romana, San Pedro de Macoris, Hato Mayor)", + "1990": 0.589, + "1991": 0.588, + "1992": 0.601, + "1993": 0.606, + "1994": 0.608, + "1995": 0.614, + "1996": 0.621, + "1997": 0.631, + "1998": 0.638, + "1999": 0.645, + "2000": 0.65, + "2001": 0.651, + "2002": 0.656, + "2003": 0.649, + "2004": 0.649, + "2005": 0.666, + "2006": 0.679, + "2007": 0.689, + "2008": 0.695, + "2009": 0.695, + "2010": 0.706, + "2011": 0.71, + "2012": 0.713, + "2013": 0.718, + "2014": 0.725, + "2015": 0.734, + "2016": 0.74, + "2017": 0.744, + "2018": 0.752, + "2019": 0.757, + "2020": 0.744, + "2021": 0.76 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr107", + "Region": "Region VI (San Juan, Elias Pina)", + "1990": 0.502, + "1991": 0.501, + "1992": 0.513, + "1993": 0.518, + "1994": 0.52, + "1995": 0.525, + "1996": 0.532, + "1997": 0.545, + "1998": 0.555, + "1999": 0.564, + "2000": 0.572, + "2001": 0.577, + "2002": 0.584, + "2003": 0.583, + "2004": 0.587, + "2005": 0.608, + "2006": 0.625, + "2007": 0.639, + "2008": 0.649, + "2009": 0.655, + "2010": 0.67, + "2011": 0.678, + "2012": 0.686, + "2013": 0.696, + "2014": 0.704, + "2015": 0.714, + "2016": 0.723, + "2017": 0.728, + "2018": 0.738, + "2019": 0.744, + "2020": 0.731, + "2021": 0.747 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr108", + "Region": "Region VII (Dajabon, Monte Cristi, Santiago Rodriguez, Valverde)", + "1990": 0.578, + "1991": 0.577, + "1992": 0.59, + "1993": 0.595, + "1994": 0.597, + "1995": 0.603, + "1996": 0.61, + "1997": 0.62, + "1998": 0.627, + "1999": 0.634, + "2000": 0.639, + "2001": 0.641, + "2002": 0.645, + "2003": 0.64, + "2004": 0.642, + "2005": 0.661, + "2006": 0.675, + "2007": 0.686, + "2008": 0.69, + "2009": 0.688, + "2010": 0.697, + "2011": 0.698, + "2012": 0.699, + "2013": 0.702, + "2014": 0.712, + "2015": 0.724, + "2016": 0.733, + "2017": 0.74, + "2018": 0.751, + "2019": 0.759, + "2020": 0.746, + "2021": 0.762 + }, + { + "Country": "Dominican Republic", + "Continent": "America", + "ISO_Code": "DOM", + "Level": "Subnat", + "GDLCODE": "DOMr109", + "Region": "Region VIII (La Vega, Monsenor Nouel, Sanchez Ramirez)", + "1990": 0.591, + "1991": 0.59, + "1992": 0.603, + "1993": 0.608, + "1994": 0.61, + "1995": 0.616, + "1996": 0.623, + "1997": 0.634, + "1998": 0.643, + "1999": 0.65, + "2000": 0.656, + "2001": 0.658, + "2002": 0.664, + "2003": 0.661, + "2004": 0.664, + "2005": 0.684, + "2006": 0.7, + "2007": 0.713, + "2008": 0.719, + "2009": 0.719, + "2010": 0.73, + "2011": 0.733, + "2012": 0.735, + "2013": 0.74, + "2014": 0.749, + "2015": 0.758, + "2016": 0.766, + "2017": 0.771, + "2018": 0.78, + "2019": 0.785, + "2020": 0.773, + "2021": 0.789 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "National", + "GDLCODE": "ECUt", + "Region": "Total", + "1990": 0.655, + "1991": 0.66, + "1992": 0.662, + "1993": 0.663, + "1994": 0.666, + "1995": 0.667, + "1996": 0.666, + "1997": 0.67, + "1998": 0.671, + "1999": 0.657, + "2000": 0.655, + "2001": 0.661, + "2002": 0.665, + "2003": 0.667, + "2004": 0.675, + "2005": 0.682, + "2006": 0.686, + "2007": 0.687, + "2008": 0.696, + "2009": 0.695, + "2010": 0.699, + "2011": 0.707, + "2012": 0.714, + "2013": 0.718, + "2014": 0.722, + "2015": 0.719, + "2016": 0.715, + "2017": 0.715, + "2018": 0.713, + "2019": 0.711, + "2020": 0.696, + "2021": 0.7 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr101", + "Region": "Coste", + "1990": 0.641, + "1991": 0.646, + "1992": 0.648, + "1993": 0.649, + "1994": 0.653, + "1995": 0.653, + "1996": 0.652, + "1997": 0.656, + "1998": 0.657, + "1999": 0.643, + "2000": 0.642, + "2001": 0.648, + "2002": 0.652, + "2003": 0.653, + "2004": 0.662, + "2005": 0.668, + "2006": 0.672, + "2007": 0.673, + "2008": 0.683, + "2009": 0.684, + "2010": 0.689, + "2011": 0.7, + "2012": 0.706, + "2013": 0.711, + "2014": 0.714, + "2015": 0.712, + "2016": 0.707, + "2017": 0.707, + "2018": 0.706, + "2019": 0.703, + "2020": 0.689, + "2021": 0.693 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr103", + "Region": "Oriente", + "1990": 0.617, + "1991": 0.622, + "1992": 0.623, + "1993": 0.625, + "1994": 0.628, + "1995": 0.629, + "1996": 0.628, + "1997": 0.631, + "1998": 0.632, + "1999": 0.619, + "2000": 0.617, + "2001": 0.623, + "2002": 0.627, + "2003": 0.628, + "2004": 0.637, + "2005": 0.643, + "2006": 0.647, + "2007": 0.648, + "2008": 0.653, + "2009": 0.649, + "2010": 0.65, + "2011": 0.655, + "2012": 0.661, + "2013": 0.666, + "2014": 0.669, + "2015": 0.667, + "2016": 0.662, + "2017": 0.662, + "2018": 0.661, + "2019": 0.658, + "2020": 0.645, + "2021": 0.649 + }, + { + "Country": "Ecuador", + "Continent": "America", + "ISO_Code": "ECU", + "Level": "Subnat", + "GDLCODE": "ECUr102", + "Region": "Sierra", + "1990": 0.686, + "1991": 0.691, + "1992": 0.693, + "1993": 0.694, + "1994": 0.697, + "1995": 0.698, + "1996": 0.697, + "1997": 0.701, + "1998": 0.702, + "1999": 0.688, + "2000": 0.686, + "2001": 0.692, + "2002": 0.696, + "2003": 0.697, + "2004": 0.706, + "2005": 0.713, + "2006": 0.717, + "2007": 0.718, + "2008": 0.725, + "2009": 0.722, + "2010": 0.724, + "2011": 0.732, + "2012": 0.738, + "2013": 0.743, + "2014": 0.746, + "2015": 0.743, + "2016": 0.739, + "2017": 0.739, + "2018": 0.738, + "2019": 0.735, + "2020": 0.72, + "2021": 0.724 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "National", + "GDLCODE": "EGYt", + "Region": "Total", + "1990": 0.617, + "1991": 0.62, + "1992": 0.623, + "1993": 0.624, + "1994": 0.627, + "1995": 0.631, + "1996": 0.636, + "1997": 0.641, + "1998": 0.646, + "1999": 0.651, + "2000": 0.658, + "2001": 0.661, + "2002": 0.66, + "2003": 0.662, + "2004": 0.665, + "2005": 0.669, + "2006": 0.677, + "2007": 0.686, + "2008": 0.693, + "2009": 0.696, + "2010": 0.698, + "2011": 0.696, + "2012": 0.696, + "2013": 0.696, + "2014": 0.697, + "2015": 0.701, + "2016": 0.705, + "2017": 0.707, + "2018": 0.711, + "2019": 0.715, + "2020": 0.718, + "2021": 0.72 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr102", + "Region": "Alexandria", + "1990": 0.672, + "1991": 0.675, + "1992": 0.678, + "1993": 0.68, + "1994": 0.682, + "1995": 0.687, + "1996": 0.69, + "1997": 0.694, + "1998": 0.698, + "1999": 0.702, + "2000": 0.707, + "2001": 0.706, + "2002": 0.701, + "2003": 0.698, + "2004": 0.697, + "2005": 0.696, + "2006": 0.705, + "2007": 0.713, + "2008": 0.72, + "2009": 0.721, + "2010": 0.72, + "2011": 0.717, + "2012": 0.715, + "2013": 0.712, + "2014": 0.711, + "2015": 0.715, + "2016": 0.719, + "2017": 0.721, + "2018": 0.725, + "2019": 0.728, + "2020": 0.732, + "2021": 0.734 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr118", + "Region": "Assuit", + "1990": 0.558, + "1991": 0.561, + "1992": 0.564, + "1993": 0.565, + "1994": 0.568, + "1995": 0.572, + "1996": 0.575, + "1997": 0.578, + "1998": 0.582, + "1999": 0.586, + "2000": 0.59, + "2001": 0.606, + "2002": 0.617, + "2003": 0.63, + "2004": 0.645, + "2005": 0.661, + "2006": 0.661, + "2007": 0.661, + "2008": 0.66, + "2009": 0.666, + "2010": 0.67, + "2011": 0.671, + "2012": 0.673, + "2013": 0.675, + "2014": 0.679, + "2015": 0.683, + "2016": 0.687, + "2017": 0.689, + "2018": 0.693, + "2019": 0.696, + "2020": 0.699, + "2021": 0.701 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr121", + "Region": "Aswan", + "1990": 0.637, + "1991": 0.64, + "1992": 0.643, + "1993": 0.644, + "1994": 0.647, + "1995": 0.651, + "1996": 0.651, + "1997": 0.652, + "1998": 0.654, + "1999": 0.654, + "2000": 0.656, + "2001": 0.66, + "2002": 0.659, + "2003": 0.66, + "2004": 0.663, + "2005": 0.667, + "2006": 0.677, + "2007": 0.687, + "2008": 0.695, + "2009": 0.697, + "2010": 0.697, + "2011": 0.694, + "2012": 0.693, + "2013": 0.691, + "2014": 0.691, + "2015": 0.695, + "2016": 0.699, + "2017": 0.701, + "2018": 0.705, + "2019": 0.709, + "2020": 0.712, + "2021": 0.714 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr112", + "Region": "Behera", + "1990": 0.597, + "1991": 0.6, + "1992": 0.603, + "1993": 0.604, + "1994": 0.607, + "1995": 0.611, + "1996": 0.614, + "1997": 0.618, + "1998": 0.622, + "1999": 0.626, + "2000": 0.63, + "2001": 0.638, + "2002": 0.642, + "2003": 0.647, + "2004": 0.655, + "2005": 0.663, + "2006": 0.673, + "2007": 0.684, + "2008": 0.694, + "2009": 0.697, + "2010": 0.699, + "2011": 0.698, + "2012": 0.699, + "2013": 0.699, + "2014": 0.7, + "2015": 0.704, + "2016": 0.708, + "2017": 0.71, + "2018": 0.714, + "2019": 0.718, + "2020": 0.721, + "2021": 0.723 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr115", + "Region": "Beni Suef", + "1990": 0.513, + "1991": 0.516, + "1992": 0.519, + "1993": 0.52, + "1994": 0.523, + "1995": 0.526, + "1996": 0.535, + "1997": 0.545, + "1998": 0.555, + "1999": 0.565, + "2000": 0.576, + "2001": 0.587, + "2002": 0.593, + "2003": 0.602, + "2004": 0.613, + "2005": 0.624, + "2006": 0.632, + "2007": 0.64, + "2008": 0.648, + "2009": 0.658, + "2010": 0.666, + "2011": 0.671, + "2012": 0.678, + "2013": 0.685, + "2014": 0.693, + "2015": 0.697, + "2016": 0.7, + "2017": 0.703, + "2018": 0.706, + "2019": 0.71, + "2020": 0.713, + "2021": 0.715 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr101", + "Region": "Cairo", + "1990": 0.684, + "1991": 0.687, + "1992": 0.69, + "1993": 0.691, + "1994": 0.694, + "1995": 0.699, + "1996": 0.701, + "1997": 0.703, + "1998": 0.707, + "1999": 0.709, + "2000": 0.713, + "2001": 0.712, + "2002": 0.707, + "2003": 0.705, + "2004": 0.704, + "2005": 0.703, + "2006": 0.708, + "2007": 0.712, + "2008": 0.716, + "2009": 0.717, + "2010": 0.717, + "2011": 0.713, + "2012": 0.712, + "2013": 0.709, + "2014": 0.709, + "2015": 0.713, + "2016": 0.717, + "2017": 0.719, + "2018": 0.723, + "2019": 0.726, + "2020": 0.73, + "2021": 0.731 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr106", + "Region": "Dakahlia", + "1990": 0.633, + "1991": 0.636, + "1992": 0.639, + "1993": 0.641, + "1994": 0.643, + "1995": 0.647, + "1996": 0.653, + "1997": 0.66, + "1998": 0.667, + "1999": 0.673, + "2000": 0.681, + "2001": 0.681, + "2002": 0.676, + "2003": 0.674, + "2004": 0.674, + "2005": 0.674, + "2006": 0.684, + "2007": 0.694, + "2008": 0.703, + "2009": 0.706, + "2010": 0.706, + "2011": 0.704, + "2012": 0.704, + "2013": 0.703, + "2014": 0.703, + "2015": 0.708, + "2016": 0.711, + "2017": 0.714, + "2018": 0.717, + "2019": 0.721, + "2020": 0.724, + "2021": 0.726 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr105", + "Region": "Damietta", + "1990": 0.66, + "1991": 0.663, + "1992": 0.666, + "1993": 0.668, + "1994": 0.67, + "1995": 0.675, + "1996": 0.677, + "1997": 0.68, + "1998": 0.683, + "1999": 0.687, + "2000": 0.691, + "2001": 0.689, + "2002": 0.683, + "2003": 0.679, + "2004": 0.677, + "2005": 0.676, + "2006": 0.688, + "2007": 0.7, + "2008": 0.711, + "2009": 0.713, + "2010": 0.714, + "2011": 0.712, + "2012": 0.711, + "2013": 0.71, + "2014": 0.71, + "2015": 0.715, + "2016": 0.718, + "2017": 0.721, + "2018": 0.724, + "2019": 0.728, + "2020": 0.731, + "2021": 0.733 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr116", + "Region": "Fayoum", + "1990": 0.529, + "1991": 0.532, + "1992": 0.535, + "1993": 0.536, + "1994": 0.538, + "1995": 0.542, + "1996": 0.552, + "1997": 0.562, + "1998": 0.572, + "1999": 0.582, + "2000": 0.594, + "2001": 0.598, + "2002": 0.598, + "2003": 0.601, + "2004": 0.605, + "2005": 0.609, + "2006": 0.624, + "2007": 0.638, + "2008": 0.651, + "2009": 0.66, + "2010": 0.666, + "2011": 0.67, + "2012": 0.676, + "2013": 0.681, + "2014": 0.687, + "2015": 0.691, + "2016": 0.695, + "2017": 0.697, + "2018": 0.701, + "2019": 0.705, + "2020": 0.708, + "2021": 0.71 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr122", + "Region": "Frontier governorates (Red Sea, New Valley, Matroh, North Sainai, South Sainai)", + "1990": 0.629, + "1991": 0.633, + "1992": 0.636, + "1993": 0.637, + "1994": 0.64, + "1995": 0.644, + "1996": 0.646, + "1997": 0.65, + "1998": 0.653, + "1999": 0.657, + "2000": 0.661, + "2001": 0.663, + "2002": 0.661, + "2003": 0.661, + "2004": 0.662, + "2005": 0.665, + "2006": 0.673, + "2007": 0.681, + "2008": 0.689, + "2009": 0.693, + "2010": 0.695, + "2011": 0.694, + "2012": 0.696, + "2013": 0.696, + "2014": 0.698, + "2015": 0.702, + "2016": 0.706, + "2017": 0.708, + "2018": 0.712, + "2019": 0.715, + "2020": 0.719, + "2021": 0.72 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr110", + "Region": "Gharbia", + "1990": 0.618, + "1991": 0.622, + "1992": 0.625, + "1993": 0.626, + "1994": 0.629, + "1995": 0.633, + "1996": 0.639, + "1997": 0.647, + "1998": 0.654, + "1999": 0.662, + "2000": 0.67, + "2001": 0.675, + "2002": 0.676, + "2003": 0.679, + "2004": 0.684, + "2005": 0.689, + "2006": 0.696, + "2007": 0.702, + "2008": 0.708, + "2009": 0.709, + "2010": 0.709, + "2011": 0.705, + "2012": 0.703, + "2013": 0.701, + "2014": 0.7, + "2015": 0.704, + "2016": 0.708, + "2017": 0.71, + "2018": 0.714, + "2019": 0.717, + "2020": 0.721, + "2021": 0.723 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr114", + "Region": "Giza", + "1990": 0.641, + "1991": 0.644, + "1992": 0.647, + "1993": 0.649, + "1994": 0.651, + "1995": 0.655, + "1996": 0.661, + "1997": 0.667, + "1998": 0.674, + "1999": 0.68, + "2000": 0.688, + "2001": 0.687, + "2002": 0.681, + "2003": 0.678, + "2004": 0.677, + "2005": 0.676, + "2006": 0.686, + "2007": 0.696, + "2008": 0.705, + "2009": 0.707, + "2010": 0.707, + "2011": 0.704, + "2012": 0.703, + "2013": 0.7, + "2014": 0.7, + "2015": 0.704, + "2016": 0.708, + "2017": 0.71, + "2018": 0.714, + "2019": 0.718, + "2020": 0.721, + "2021": 0.723 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr113", + "Region": "Ismailia", + "1990": 0.665, + "1991": 0.668, + "1992": 0.671, + "1993": 0.673, + "1994": 0.675, + "1995": 0.68, + "1996": 0.682, + "1997": 0.685, + "1998": 0.689, + "1999": 0.692, + "2000": 0.696, + "2001": 0.696, + "2002": 0.692, + "2003": 0.69, + "2004": 0.69, + "2005": 0.691, + "2006": 0.696, + "2007": 0.701, + "2008": 0.705, + "2009": 0.708, + "2010": 0.709, + "2011": 0.708, + "2012": 0.708, + "2013": 0.707, + "2014": 0.708, + "2015": 0.712, + "2016": 0.716, + "2017": 0.718, + "2018": 0.722, + "2019": 0.726, + "2020": 0.729, + "2021": 0.731 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr109", + "Region": "Kafr El-Sheikh", + "1990": 0.587, + "1991": 0.59, + "1992": 0.593, + "1993": 0.594, + "1994": 0.597, + "1995": 0.601, + "1996": 0.609, + "1997": 0.618, + "1998": 0.628, + "1999": 0.637, + "2000": 0.648, + "2001": 0.653, + "2002": 0.655, + "2003": 0.659, + "2004": 0.664, + "2005": 0.67, + "2006": 0.675, + "2007": 0.681, + "2008": 0.685, + "2009": 0.691, + "2010": 0.696, + "2011": 0.697, + "2012": 0.701, + "2013": 0.703, + "2014": 0.708, + "2015": 0.712, + "2016": 0.716, + "2017": 0.718, + "2018": 0.722, + "2019": 0.725, + "2020": 0.728, + "2021": 0.73 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr108", + "Region": "Kalyubia", + "1990": 0.629, + "1991": 0.633, + "1992": 0.636, + "1993": 0.637, + "1994": 0.64, + "1995": 0.644, + "1996": 0.649, + "1997": 0.655, + "1998": 0.662, + "1999": 0.668, + "2000": 0.676, + "2001": 0.677, + "2002": 0.675, + "2003": 0.675, + "2004": 0.676, + "2005": 0.678, + "2006": 0.687, + "2007": 0.696, + "2008": 0.704, + "2009": 0.704, + "2010": 0.703, + "2011": 0.698, + "2012": 0.696, + "2013": 0.692, + "2014": 0.691, + "2015": 0.695, + "2016": 0.699, + "2017": 0.701, + "2018": 0.705, + "2019": 0.708, + "2020": 0.711, + "2021": 0.713 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr111", + "Region": "Menoufia", + "1990": 0.597, + "1991": 0.601, + "1992": 0.604, + "1993": 0.605, + "1994": 0.608, + "1995": 0.612, + "1996": 0.617, + "1997": 0.623, + "1998": 0.63, + "1999": 0.636, + "2000": 0.643, + "2001": 0.651, + "2002": 0.655, + "2003": 0.661, + "2004": 0.669, + "2005": 0.677, + "2006": 0.683, + "2007": 0.689, + "2008": 0.694, + "2009": 0.698, + "2010": 0.699, + "2011": 0.698, + "2012": 0.698, + "2013": 0.698, + "2014": 0.7, + "2015": 0.704, + "2016": 0.707, + "2017": 0.71, + "2018": 0.714, + "2019": 0.717, + "2020": 0.72, + "2021": 0.722 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr117", + "Region": "Menya", + "1990": 0.507, + "1991": 0.509, + "1992": 0.512, + "1993": 0.513, + "1994": 0.516, + "1995": 0.52, + "1996": 0.53, + "1997": 0.541, + "1998": 0.552, + "1999": 0.563, + "2000": 0.575, + "2001": 0.58, + "2002": 0.58, + "2003": 0.583, + "2004": 0.588, + "2005": 0.593, + "2006": 0.608, + "2007": 0.623, + "2008": 0.637, + "2009": 0.647, + "2010": 0.655, + "2011": 0.66, + "2012": 0.667, + "2013": 0.672, + "2014": 0.68, + "2015": 0.684, + "2016": 0.688, + "2017": 0.69, + "2018": 0.694, + "2019": 0.697, + "2020": 0.701, + "2021": 0.703 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr103", + "Region": "Port Said", + "1990": 0.691, + "1991": 0.694, + "1992": 0.698, + "1993": 0.699, + "1994": 0.702, + "1995": 0.706, + "1996": 0.71, + "1997": 0.715, + "1998": 0.721, + "1999": 0.726, + "2000": 0.732, + "2001": 0.728, + "2002": 0.719, + "2003": 0.713, + "2004": 0.708, + "2005": 0.705, + "2006": 0.714, + "2007": 0.724, + "2008": 0.733, + "2009": 0.733, + "2010": 0.732, + "2011": 0.728, + "2012": 0.726, + "2013": 0.722, + "2014": 0.721, + "2015": 0.725, + "2016": 0.729, + "2017": 0.731, + "2018": 0.735, + "2019": 0.739, + "2020": 0.742, + "2021": 0.744 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr120", + "Region": "Qena", + "1990": 0.556, + "1991": 0.559, + "1992": 0.562, + "1993": 0.563, + "1994": 0.566, + "1995": 0.57, + "1996": 0.577, + "1997": 0.584, + "1998": 0.593, + "1999": 0.6, + "2000": 0.609, + "2001": 0.619, + "2002": 0.624, + "2003": 0.631, + "2004": 0.64, + "2005": 0.649, + "2006": 0.656, + "2007": 0.663, + "2008": 0.669, + "2009": 0.674, + "2010": 0.678, + "2011": 0.679, + "2012": 0.682, + "2013": 0.684, + "2014": 0.688, + "2015": 0.692, + "2016": 0.696, + "2017": 0.698, + "2018": 0.702, + "2019": 0.705, + "2020": 0.709, + "2021": 0.711 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr107", + "Region": "Sharkia", + "1990": 0.608, + "1991": 0.611, + "1992": 0.614, + "1993": 0.615, + "1994": 0.618, + "1995": 0.622, + "1996": 0.624, + "1997": 0.627, + "1998": 0.63, + "1999": 0.633, + "2000": 0.637, + "2001": 0.643, + "2002": 0.645, + "2003": 0.65, + "2004": 0.656, + "2005": 0.662, + "2006": 0.67, + "2007": 0.678, + "2008": 0.685, + "2009": 0.688, + "2010": 0.691, + "2011": 0.69, + "2012": 0.691, + "2013": 0.691, + "2014": 0.693, + "2015": 0.698, + "2016": 0.701, + "2017": 0.703, + "2018": 0.707, + "2019": 0.711, + "2020": 0.714, + "2021": 0.716 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr119", + "Region": "Souhag", + "1990": 0.556, + "1991": 0.559, + "1992": 0.562, + "1993": 0.563, + "1994": 0.565, + "1995": 0.569, + "1996": 0.574, + "1997": 0.58, + "1998": 0.586, + "1999": 0.592, + "2000": 0.598, + "2001": 0.607, + "2002": 0.612, + "2003": 0.62, + "2004": 0.628, + "2005": 0.638, + "2006": 0.65, + "2007": 0.661, + "2008": 0.673, + "2009": 0.676, + "2010": 0.677, + "2011": 0.676, + "2012": 0.677, + "2013": 0.676, + "2014": 0.678, + "2015": 0.682, + "2016": 0.686, + "2017": 0.688, + "2018": 0.692, + "2019": 0.695, + "2020": 0.698, + "2021": 0.7 + }, + { + "Country": "Egypt", + "Continent": "Africa", + "ISO_Code": "EGY", + "Level": "Subnat", + "GDLCODE": "EGYr104", + "Region": "Suez", + "1990": 0.688, + "1991": 0.691, + "1992": 0.694, + "1993": 0.696, + "1994": 0.699, + "1995": 0.703, + "1996": 0.706, + "1997": 0.71, + "1998": 0.715, + "1999": 0.719, + "2000": 0.724, + "2001": 0.722, + "2002": 0.715, + "2003": 0.711, + "2004": 0.709, + "2005": 0.707, + "2006": 0.712, + "2007": 0.717, + "2008": 0.722, + "2009": 0.724, + "2010": 0.724, + "2011": 0.721, + "2012": 0.721, + "2013": 0.719, + "2014": 0.719, + "2015": 0.723, + "2016": 0.727, + "2017": 0.729, + "2018": 0.733, + "2019": 0.737, + "2020": 0.74, + "2021": 0.742 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "National", + "GDLCODE": "SLVt", + "Region": "Total", + "1990": 0.595, + "1991": 0.596, + "1992": 0.605, + "1993": 0.612, + "1994": 0.617, + "1995": 0.623, + "1996": 0.623, + "1997": 0.625, + "1998": 0.627, + "1999": 0.628, + "2000": 0.629, + "2001": 0.629, + "2002": 0.63, + "2003": 0.631, + "2004": 0.631, + "2005": 0.634, + "2006": 0.641, + "2007": 0.643, + "2008": 0.647, + "2009": 0.641, + "2010": 0.644, + "2011": 0.649, + "2012": 0.651, + "2013": 0.653, + "2014": 0.655, + "2015": 0.657, + "2016": 0.66, + "2017": 0.662, + "2018": 0.664, + "2019": 0.668, + "2020": 0.653, + "2021": 0.667 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr102", + "Region": "Central I", + "1990": 0.647, + "1991": 0.648, + "1992": 0.657, + "1993": 0.664, + "1994": 0.67, + "1995": 0.676, + "1996": 0.675, + "1997": 0.677, + "1998": 0.68, + "1999": 0.681, + "2000": 0.682, + "2001": 0.682, + "2002": 0.683, + "2003": 0.683, + "2004": 0.684, + "2005": 0.687, + "2006": 0.694, + "2007": 0.697, + "2008": 0.698, + "2009": 0.689, + "2010": 0.69, + "2011": 0.692, + "2012": 0.691, + "2013": 0.687, + "2014": 0.684, + "2015": 0.686, + "2016": 0.688, + "2017": 0.69, + "2018": 0.693, + "2019": 0.697, + "2020": 0.682, + "2021": 0.696 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr103", + "Region": "Central II", + "1990": 0.543, + "1991": 0.544, + "1992": 0.553, + "1993": 0.559, + "1994": 0.564, + "1995": 0.57, + "1996": 0.569, + "1997": 0.571, + "1998": 0.574, + "1999": 0.574, + "2000": 0.576, + "2001": 0.576, + "2002": 0.577, + "2003": 0.577, + "2004": 0.577, + "2005": 0.581, + "2006": 0.587, + "2007": 0.589, + "2008": 0.597, + "2009": 0.596, + "2010": 0.604, + "2011": 0.613, + "2012": 0.619, + "2013": 0.623, + "2014": 0.627, + "2015": 0.63, + "2016": 0.632, + "2017": 0.634, + "2018": 0.637, + "2019": 0.64, + "2020": 0.626, + "2021": 0.64 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr101", + "Region": "Occidental", + "1990": 0.547, + "1991": 0.548, + "1992": 0.557, + "1993": 0.563, + "1994": 0.569, + "1995": 0.575, + "1996": 0.574, + "1997": 0.576, + "1998": 0.578, + "1999": 0.579, + "2000": 0.58, + "2001": 0.58, + "2002": 0.581, + "2003": 0.582, + "2004": 0.582, + "2005": 0.585, + "2006": 0.592, + "2007": 0.594, + "2008": 0.6, + "2009": 0.598, + "2010": 0.604, + "2011": 0.612, + "2012": 0.617, + "2013": 0.626, + "2014": 0.635, + "2015": 0.638, + "2016": 0.64, + "2017": 0.642, + "2018": 0.645, + "2019": 0.648, + "2020": 0.634, + "2021": 0.648 + }, + { + "Country": "El Salvador", + "Continent": "America", + "ISO_Code": "SLV", + "Level": "Subnat", + "GDLCODE": "SLVr104", + "Region": "Oriental", + "1990": 0.574, + "1991": 0.575, + "1992": 0.584, + "1993": 0.59, + "1994": 0.596, + "1995": 0.602, + "1996": 0.601, + "1997": 0.603, + "1998": 0.606, + "1999": 0.606, + "2000": 0.607, + "2001": 0.607, + "2002": 0.608, + "2003": 0.609, + "2004": 0.609, + "2005": 0.612, + "2006": 0.619, + "2007": 0.621, + "2008": 0.623, + "2009": 0.616, + "2010": 0.617, + "2011": 0.62, + "2012": 0.62, + "2013": 0.622, + "2014": 0.624, + "2015": 0.627, + "2016": 0.629, + "2017": 0.631, + "2018": 0.634, + "2019": 0.637, + "2020": 0.623, + "2021": 0.637 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "National", + "GDLCODE": "GNQt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.701, + "2001": 0.726, + "2002": 0.759, + "2003": 0.751, + "2004": 0.767, + "2005": 0.795, + "2006": 0.83, + "2007": 0.848, + "2008": 0.845, + "2009": 0.845, + "2010": 0.798, + "2011": 0.803, + "2012": 0.813, + "2013": 0.809, + "2014": 0.806, + "2015": 0.81, + "2016": 0.796, + "2017": 0.772, + "2018": 0.759, + "2019": 0.74, + "2020": 0.734, + "2021": 0.724 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr101", + "Region": "Annobon, Bioko", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.821, + "2001": 0.848, + "2002": 0.884, + "2003": 0.876, + "2004": 0.893, + "2005": 0.923, + "2006": 0.962, + "2007": 0.981, + "2008": 0.977, + "2009": 0.978, + "2010": 0.927, + "2011": 0.932, + "2012": 0.943, + "2013": 0.938, + "2014": 0.935, + "2015": 0.94, + "2016": 0.924, + "2017": 0.898, + "2018": 0.884, + "2019": 0.864, + "2020": 0.857, + "2021": 0.846 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr102", + "Region": "Centro Sur", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.62, + "2001": 0.643, + "2002": 0.675, + "2003": 0.667, + "2004": 0.682, + "2005": 0.708, + "2006": 0.742, + "2007": 0.758, + "2008": 0.755, + "2009": 0.756, + "2010": 0.712, + "2011": 0.716, + "2012": 0.726, + "2013": 0.721, + "2014": 0.718, + "2015": 0.723, + "2016": 0.709, + "2017": 0.687, + "2018": 0.674, + "2019": 0.657, + "2020": 0.651, + "2021": 0.642 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr103", + "Region": "Kie Ntem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.616, + "2001": 0.638, + "2002": 0.67, + "2003": 0.662, + "2004": 0.677, + "2005": 0.703, + "2006": 0.737, + "2007": 0.753, + "2008": 0.75, + "2009": 0.751, + "2010": 0.707, + "2011": 0.711, + "2012": 0.721, + "2013": 0.716, + "2014": 0.713, + "2015": 0.718, + "2016": 0.704, + "2017": 0.682, + "2018": 0.669, + "2019": 0.652, + "2020": 0.647, + "2021": 0.637 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr104", + "Region": "Litoral", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.717, + "2001": 0.741, + "2002": 0.775, + "2003": 0.767, + "2004": 0.783, + "2005": 0.811, + "2006": 0.847, + "2007": 0.865, + "2008": 0.861, + "2009": 0.862, + "2010": 0.815, + "2011": 0.82, + "2012": 0.83, + "2013": 0.825, + "2014": 0.822, + "2015": 0.827, + "2016": 0.812, + "2017": 0.788, + "2018": 0.775, + "2019": 0.756, + "2020": 0.75, + "2021": 0.74 + }, + { + "Country": "Equatorial Guinea", + "Continent": "Africa", + "ISO_Code": "GNQ", + "Level": "Subnat", + "GDLCODE": "GNQr105", + "Region": "Wele Nzas", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.619, + "2001": 0.642, + "2002": 0.673, + "2003": 0.665, + "2004": 0.68, + "2005": 0.706, + "2006": 0.74, + "2007": 0.757, + "2008": 0.753, + "2009": 0.754, + "2010": 0.71, + "2011": 0.714, + "2012": 0.724, + "2013": 0.72, + "2014": 0.717, + "2015": 0.721, + "2016": 0.708, + "2017": 0.685, + "2018": 0.673, + "2019": 0.655, + "2020": 0.65, + "2021": 0.64 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "National", + "GDLCODE": "ERIt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.418, + "2006": 0.412, + "2007": 0.41, + "2008": 0.374, + "2009": 0.388, + "2010": 0.401, + "2011": 0.433, + "2012": 0.434, + "2013": 0.416, + "2014": 0.456, + "2015": 0.419, + "2016": 0.429, + "2017": 0.411, + "2018": 0.428, + "2019": 0.432, + "2020": 0.429, + "2021": 0.431 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr104", + "Region": "Anseba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.379, + "2006": 0.373, + "2007": 0.371, + "2008": 0.336, + "2009": 0.35, + "2010": 0.362, + "2011": 0.394, + "2012": 0.395, + "2013": 0.377, + "2014": 0.415, + "2015": 0.38, + "2016": 0.389, + "2017": 0.372, + "2018": 0.388, + "2019": 0.392, + "2020": 0.389, + "2021": 0.391 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr106", + "Region": "Debub (Southern)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.382, + "2006": 0.376, + "2007": 0.375, + "2008": 0.34, + "2009": 0.354, + "2010": 0.366, + "2011": 0.397, + "2012": 0.399, + "2013": 0.381, + "2014": 0.419, + "2015": 0.384, + "2016": 0.393, + "2017": 0.376, + "2018": 0.392, + "2019": 0.396, + "2020": 0.393, + "2021": 0.395 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr101", + "Region": "Debubawi Keyih Bahri (Southern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.49, + "2006": 0.483, + "2007": 0.481, + "2008": 0.443, + "2009": 0.458, + "2010": 0.472, + "2011": 0.506, + "2012": 0.507, + "2013": 0.488, + "2014": 0.53, + "2015": 0.491, + "2016": 0.501, + "2017": 0.483, + "2018": 0.5, + "2019": 0.504, + "2020": 0.501, + "2021": 0.503 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr105", + "Region": "Gash Barka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.352, + "2006": 0.346, + "2007": 0.345, + "2008": 0.31, + "2009": 0.324, + "2010": 0.336, + "2011": 0.367, + "2012": 0.368, + "2013": 0.351, + "2014": 0.388, + "2015": 0.353, + "2016": 0.362, + "2017": 0.346, + "2018": 0.361, + "2019": 0.365, + "2020": 0.362, + "2021": 0.364 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr102", + "Region": "Maekel (Central including Asmara)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.553, + "2006": 0.546, + "2007": 0.545, + "2008": 0.504, + "2009": 0.52, + "2010": 0.534, + "2011": 0.571, + "2012": 0.572, + "2013": 0.552, + "2014": 0.596, + "2015": 0.555, + "2016": 0.565, + "2017": 0.546, + "2018": 0.565, + "2019": 0.569, + "2020": 0.565, + "2021": 0.568 + }, + { + "Country": "Eritrea", + "Continent": "Africa", + "ISO_Code": "ERI", + "Level": "Subnat", + "GDLCODE": "ERIr103", + "Region": "Semenawi Keyih Bahri (Northern Red Sea)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.377, + "2006": 0.371, + "2007": 0.369, + "2008": 0.334, + "2009": 0.348, + "2010": 0.36, + "2011": 0.392, + "2012": 0.393, + "2013": 0.376, + "2014": 0.413, + "2015": 0.378, + "2016": 0.387, + "2017": 0.37, + "2018": 0.387, + "2019": 0.39, + "2020": 0.387, + "2021": 0.389 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "National", + "GDLCODE": "ESTt", + "Region": "Total", + "1990": 0.746, + "1991": 0.735, + "1992": 0.706, + "1993": 0.694, + "1994": 0.695, + "1995": 0.706, + "1996": 0.715, + "1997": 0.73, + "1998": 0.739, + "1999": 0.738, + "2000": 0.75, + "2001": 0.76, + "2002": 0.773, + "2003": 0.787, + "2004": 0.8, + "2005": 0.817, + "2006": 0.834, + "2007": 0.846, + "2008": 0.844, + "2009": 0.826, + "2010": 0.827, + "2011": 0.839, + "2012": 0.846, + "2013": 0.853, + "2014": 0.859, + "2015": 0.863, + "2016": 0.869, + "2017": 0.876, + "2018": 0.883, + "2019": 0.889, + "2020": 0.885, + "2021": 0.897 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr103", + "Region": "Kesk-Eesti", + "1990": 0.694, + "1991": 0.684, + "1992": 0.655, + "1993": 0.644, + "1994": 0.645, + "1995": 0.655, + "1996": 0.665, + "1997": 0.674, + "1998": 0.684, + "1999": 0.684, + "2000": 0.698, + "2001": 0.702, + "2002": 0.716, + "2003": 0.724, + "2004": 0.735, + "2005": 0.747, + "2006": 0.761, + "2007": 0.782, + "2008": 0.77, + "2009": 0.751, + "2010": 0.76, + "2011": 0.773, + "2012": 0.781, + "2013": 0.777, + "2014": 0.783, + "2015": 0.786, + "2016": 0.788, + "2017": 0.794, + "2018": 0.801, + "2019": 0.806, + "2020": 0.803, + "2021": 0.814 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr104", + "Region": "Kirde-Eesti", + "1990": 0.706, + "1991": 0.695, + "1992": 0.666, + "1993": 0.654, + "1994": 0.655, + "1995": 0.666, + "1996": 0.673, + "1997": 0.682, + "1998": 0.682, + "1999": 0.677, + "2000": 0.684, + "2001": 0.693, + "2002": 0.702, + "2003": 0.716, + "2004": 0.726, + "2005": 0.748, + "2006": 0.759, + "2007": 0.775, + "2008": 0.781, + "2009": 0.757, + "2010": 0.771, + "2011": 0.787, + "2012": 0.783, + "2013": 0.797, + "2014": 0.793, + "2015": 0.781, + "2016": 0.782, + "2017": 0.789, + "2018": 0.795, + "2019": 0.8, + "2020": 0.797, + "2021": 0.809 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr102", + "Region": "Laane-Eesti", + "1990": 0.708, + "1991": 0.697, + "1992": 0.669, + "1993": 0.657, + "1994": 0.658, + "1995": 0.669, + "1996": 0.678, + "1997": 0.692, + "1998": 0.705, + "1999": 0.699, + "2000": 0.71, + "2001": 0.721, + "2002": 0.727, + "2003": 0.734, + "2004": 0.746, + "2005": 0.772, + "2006": 0.784, + "2007": 0.8, + "2008": 0.794, + "2009": 0.77, + "2010": 0.778, + "2011": 0.78, + "2012": 0.783, + "2013": 0.783, + "2014": 0.784, + "2015": 0.793, + "2016": 0.797, + "2017": 0.804, + "2018": 0.81, + "2019": 0.816, + "2020": 0.813, + "2021": 0.824 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr105", + "Region": "Louna-Eesti", + "1990": 0.698, + "1991": 0.688, + "1992": 0.659, + "1993": 0.647, + "1994": 0.648, + "1995": 0.659, + "1996": 0.67, + "1997": 0.68, + "1998": 0.687, + "1999": 0.684, + "2000": 0.694, + "2001": 0.703, + "2002": 0.716, + "2003": 0.732, + "2004": 0.739, + "2005": 0.761, + "2006": 0.774, + "2007": 0.792, + "2008": 0.797, + "2009": 0.771, + "2010": 0.773, + "2011": 0.784, + "2012": 0.791, + "2013": 0.797, + "2014": 0.805, + "2015": 0.812, + "2016": 0.818, + "2017": 0.824, + "2018": 0.831, + "2019": 0.836, + "2020": 0.833, + "2021": 0.845 + }, + { + "Country": "Estonia", + "Continent": "Europe", + "ISO_Code": "EST", + "Level": "Subnat", + "GDLCODE": "ESTr101", + "Region": "Pohja-Eesti", + "1990": 0.8, + "1991": 0.789, + "1992": 0.758, + "1993": 0.745, + "1994": 0.746, + "1995": 0.758, + "1996": 0.767, + "1997": 0.785, + "1998": 0.795, + "1999": 0.796, + "2000": 0.81, + "2001": 0.821, + "2002": 0.835, + "2003": 0.849, + "2004": 0.862, + "2005": 0.877, + "2006": 0.895, + "2007": 0.904, + "2008": 0.899, + "2009": 0.885, + "2010": 0.88, + "2011": 0.893, + "2012": 0.901, + "2013": 0.908, + "2014": 0.915, + "2015": 0.92, + "2016": 0.926, + "2017": 0.933, + "2018": 0.94, + "2019": 0.946, + "2020": 0.943, + "2021": 0.956 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "National", + "GDLCODE": "SWZt", + "Region": "Total", + "1990": 0.602, + "1991": 0.601, + "1992": 0.603, + "1993": 0.6, + "1994": 0.593, + "1995": 0.606, + "1996": 0.613, + "1997": 0.615, + "1998": 0.61, + "1999": 0.615, + "2000": 0.611, + "2001": 0.618, + "2002": 0.614, + "2003": 0.616, + "2004": 0.624, + "2005": 0.641, + "2006": 0.641, + "2007": 0.648, + "2008": 0.646, + "2009": 0.644, + "2010": 0.644, + "2011": 0.645, + "2012": 0.651, + "2013": 0.659, + "2014": 0.659, + "2015": 0.662, + "2016": 0.66, + "2017": 0.659, + "2018": 0.66, + "2019": 0.657, + "2020": 0.653, + "2021": 0.656 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr101", + "Region": "Hhohho", + "1990": 0.612, + "1991": 0.612, + "1992": 0.614, + "1993": 0.611, + "1994": 0.604, + "1995": 0.617, + "1996": 0.624, + "1997": 0.626, + "1998": 0.621, + "1999": 0.625, + "2000": 0.621, + "2001": 0.63, + "2002": 0.628, + "2003": 0.631, + "2004": 0.64, + "2005": 0.659, + "2006": 0.66, + "2007": 0.665, + "2008": 0.661, + "2009": 0.658, + "2010": 0.656, + "2011": 0.658, + "2012": 0.666, + "2013": 0.675, + "2014": 0.677, + "2015": 0.68, + "2016": 0.677, + "2017": 0.677, + "2018": 0.678, + "2019": 0.675, + "2020": 0.67, + "2021": 0.673 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr104", + "Region": "Lubombo", + "1990": 0.604, + "1991": 0.603, + "1992": 0.605, + "1993": 0.602, + "1994": 0.595, + "1995": 0.608, + "1996": 0.615, + "1997": 0.617, + "1998": 0.612, + "1999": 0.616, + "2000": 0.613, + "2001": 0.617, + "2002": 0.611, + "2003": 0.61, + "2004": 0.615, + "2005": 0.629, + "2006": 0.626, + "2007": 0.632, + "2008": 0.629, + "2009": 0.625, + "2010": 0.624, + "2011": 0.626, + "2012": 0.634, + "2013": 0.643, + "2014": 0.645, + "2015": 0.647, + "2016": 0.645, + "2017": 0.645, + "2018": 0.646, + "2019": 0.643, + "2020": 0.638, + "2021": 0.641 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr102", + "Region": "Manzini", + "1990": 0.615, + "1991": 0.615, + "1992": 0.616, + "1993": 0.613, + "1994": 0.606, + "1995": 0.619, + "1996": 0.626, + "1997": 0.628, + "1998": 0.623, + "1999": 0.628, + "2000": 0.624, + "2001": 0.633, + "2002": 0.63, + "2003": 0.632, + "2004": 0.642, + "2005": 0.66, + "2006": 0.661, + "2007": 0.67, + "2008": 0.67, + "2009": 0.67, + "2010": 0.672, + "2011": 0.669, + "2012": 0.672, + "2013": 0.676, + "2014": 0.673, + "2015": 0.675, + "2016": 0.673, + "2017": 0.673, + "2018": 0.674, + "2019": 0.671, + "2020": 0.666, + "2021": 0.669 + }, + { + "Country": "Eswatini", + "Continent": "Africa", + "ISO_Code": "SWZ", + "Level": "Subnat", + "GDLCODE": "SWZr103", + "Region": "Shiselweni", + "1990": 0.561, + "1991": 0.561, + "1992": 0.563, + "1993": 0.56, + "1994": 0.553, + "1995": 0.566, + "1996": 0.572, + "1997": 0.574, + "1998": 0.569, + "1999": 0.574, + "2000": 0.57, + "2001": 0.577, + "2002": 0.573, + "2003": 0.574, + "2004": 0.581, + "2005": 0.597, + "2006": 0.596, + "2007": 0.603, + "2008": 0.602, + "2009": 0.6, + "2010": 0.601, + "2011": 0.601, + "2012": 0.606, + "2013": 0.614, + "2014": 0.613, + "2015": 0.616, + "2016": 0.613, + "2017": 0.613, + "2018": 0.614, + "2019": 0.611, + "2020": 0.607, + "2021": 0.61 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "National", + "GDLCODE": "ETHt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.299, + "2001": 0.307, + "2002": 0.305, + "2003": 0.297, + "2004": 0.312, + "2005": 0.326, + "2006": 0.337, + "2007": 0.349, + "2008": 0.361, + "2009": 0.369, + "2010": 0.382, + "2011": 0.394, + "2012": 0.402, + "2013": 0.413, + "2014": 0.424, + "2015": 0.434, + "2016": 0.444, + "2017": 0.453, + "2018": 0.459, + "2019": 0.467, + "2020": 0.472, + "2021": 0.478 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr110", + "Region": "Addis", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.47, + "2001": 0.486, + "2002": 0.491, + "2003": 0.49, + "2004": 0.515, + "2005": 0.538, + "2006": 0.55, + "2007": 0.564, + "2008": 0.576, + "2009": 0.584, + "2010": 0.598, + "2011": 0.611, + "2012": 0.626, + "2013": 0.645, + "2014": 0.663, + "2015": 0.681, + "2016": 0.699, + "2017": 0.71, + "2018": 0.718, + "2019": 0.727, + "2020": 0.734, + "2021": 0.74 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr102", + "Region": "Affar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.291, + "2001": 0.299, + "2002": 0.297, + "2003": 0.29, + "2004": 0.305, + "2005": 0.319, + "2006": 0.332, + "2007": 0.347, + "2008": 0.361, + "2009": 0.372, + "2010": 0.388, + "2011": 0.403, + "2012": 0.41, + "2013": 0.421, + "2014": 0.431, + "2015": 0.441, + "2016": 0.45, + "2017": 0.46, + "2018": 0.466, + "2019": 0.474, + "2020": 0.479, + "2021": 0.484 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr103", + "Region": "Amhara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.284, + "2001": 0.291, + "2002": 0.288, + "2003": 0.28, + "2004": 0.294, + "2005": 0.306, + "2006": 0.318, + "2007": 0.331, + "2008": 0.342, + "2009": 0.351, + "2010": 0.364, + "2011": 0.376, + "2012": 0.384, + "2013": 0.394, + "2014": 0.404, + "2015": 0.414, + "2016": 0.422, + "2017": 0.432, + "2018": 0.438, + "2019": 0.445, + "2020": 0.45, + "2021": 0.456 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr106", + "Region": "Ben-Gumz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.287, + "2001": 0.294, + "2002": 0.291, + "2003": 0.283, + "2004": 0.296, + "2005": 0.308, + "2006": 0.32, + "2007": 0.332, + "2008": 0.343, + "2009": 0.352, + "2010": 0.365, + "2011": 0.377, + "2012": 0.385, + "2013": 0.396, + "2014": 0.407, + "2015": 0.418, + "2016": 0.428, + "2017": 0.437, + "2018": 0.443, + "2019": 0.451, + "2020": 0.456, + "2021": 0.461 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr111", + "Region": "Dire Dawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.405, + "2001": 0.417, + "2002": 0.419, + "2003": 0.415, + "2004": 0.436, + "2005": 0.455, + "2006": 0.465, + "2007": 0.478, + "2008": 0.488, + "2009": 0.496, + "2010": 0.509, + "2011": 0.52, + "2012": 0.528, + "2013": 0.539, + "2014": 0.549, + "2015": 0.56, + "2016": 0.569, + "2017": 0.58, + "2018": 0.586, + "2019": 0.595, + "2020": 0.601, + "2021": 0.607 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr108", + "Region": "Gambela", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.307, + "2001": 0.312, + "2002": 0.307, + "2003": 0.296, + "2004": 0.308, + "2005": 0.318, + "2006": 0.334, + "2007": 0.352, + "2008": 0.369, + "2009": 0.382, + "2010": 0.402, + "2011": 0.419, + "2012": 0.428, + "2013": 0.44, + "2014": 0.451, + "2015": 0.462, + "2016": 0.473, + "2017": 0.482, + "2018": 0.489, + "2019": 0.497, + "2020": 0.502, + "2021": 0.507 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr109", + "Region": "Harari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.375, + "2001": 0.389, + "2002": 0.393, + "2003": 0.391, + "2004": 0.413, + "2005": 0.433, + "2006": 0.445, + "2007": 0.458, + "2008": 0.469, + "2009": 0.478, + "2010": 0.492, + "2011": 0.504, + "2012": 0.515, + "2013": 0.53, + "2014": 0.544, + "2015": 0.558, + "2016": 0.571, + "2017": 0.581, + "2018": 0.588, + "2019": 0.597, + "2020": 0.603, + "2021": 0.609 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr104", + "Region": "Oromiya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.296, + "2001": 0.303, + "2002": 0.301, + "2003": 0.293, + "2004": 0.308, + "2005": 0.321, + "2006": 0.331, + "2007": 0.342, + "2008": 0.352, + "2009": 0.359, + "2010": 0.371, + "2011": 0.381, + "2012": 0.39, + "2013": 0.401, + "2014": 0.412, + "2015": 0.424, + "2016": 0.434, + "2017": 0.443, + "2018": 0.449, + "2019": 0.457, + "2020": 0.462, + "2021": 0.467 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr107", + "Region": "SNNP", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.295, + "2001": 0.301, + "2002": 0.299, + "2003": 0.29, + "2004": 0.304, + "2005": 0.317, + "2006": 0.328, + "2007": 0.34, + "2008": 0.351, + "2009": 0.358, + "2010": 0.371, + "2011": 0.383, + "2012": 0.389, + "2013": 0.398, + "2014": 0.407, + "2015": 0.416, + "2016": 0.424, + "2017": 0.433, + "2018": 0.439, + "2019": 0.447, + "2020": 0.452, + "2021": 0.457 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr105", + "Region": "Somali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.294, + "2001": 0.299, + "2002": 0.295, + "2003": 0.285, + "2004": 0.298, + "2005": 0.309, + "2006": 0.323, + "2007": 0.339, + "2008": 0.353, + "2009": 0.365, + "2010": 0.382, + "2011": 0.397, + "2012": 0.401, + "2013": 0.408, + "2014": 0.414, + "2015": 0.421, + "2016": 0.426, + "2017": 0.435, + "2018": 0.441, + "2019": 0.449, + "2020": 0.454, + "2021": 0.459 + }, + { + "Country": "Ethiopia", + "Continent": "Africa", + "ISO_Code": "ETH", + "Level": "Subnat", + "GDLCODE": "ETHr101", + "Region": "Tigray", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.307, + "2001": 0.314, + "2002": 0.311, + "2003": 0.303, + "2004": 0.318, + "2005": 0.331, + "2006": 0.343, + "2007": 0.356, + "2008": 0.369, + "2009": 0.378, + "2010": 0.392, + "2011": 0.405, + "2012": 0.414, + "2013": 0.426, + "2014": 0.438, + "2015": 0.45, + "2016": 0.461, + "2017": 0.47, + "2018": 0.476, + "2019": 0.484, + "2020": 0.489, + "2021": 0.495 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "National", + "GDLCODE": "FJIt", + "Region": "Total", + "1990": 0.671, + "1991": 0.67, + "1992": 0.669, + "1993": 0.667, + "1994": 0.671, + "1995": 0.677, + "1996": 0.682, + "1997": 0.677, + "1998": 0.675, + "1999": 0.686, + "2000": 0.689, + "2001": 0.699, + "2002": 0.702, + "2003": 0.706, + "2004": 0.716, + "2005": 0.702, + "2006": 0.701, + "2007": 0.699, + "2008": 0.7, + "2009": 0.699, + "2010": 0.698, + "2011": 0.702, + "2012": 0.703, + "2013": 0.712, + "2014": 0.716, + "2015": 0.721, + "2016": 0.724, + "2017": 0.728, + "2018": 0.734, + "2019": 0.73, + "2020": 0.702, + "2021": 0.695 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr108", + "Region": "Ba", + "1990": 0.713, + "1991": 0.713, + "1992": 0.711, + "1993": 0.71, + "1994": 0.713, + "1995": 0.719, + "1996": 0.725, + "1997": 0.719, + "1998": 0.717, + "1999": 0.729, + "2000": 0.733, + "2001": 0.742, + "2002": 0.746, + "2003": 0.749, + "2004": 0.76, + "2005": 0.745, + "2006": 0.745, + "2007": 0.743, + "2008": 0.741, + "2009": 0.739, + "2010": 0.737, + "2011": 0.739, + "2012": 0.738, + "2013": 0.746, + "2014": 0.748, + "2015": 0.751, + "2016": 0.753, + "2017": 0.755, + "2018": 0.76, + "2019": 0.754, + "2020": 0.724, + "2021": 0.716 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr106", + "Region": "Cakaudrove, Bua", + "1990": 0.559, + "1991": 0.559, + "1992": 0.558, + "1993": 0.556, + "1994": 0.559, + "1995": 0.565, + "1996": 0.57, + "1997": 0.565, + "1998": 0.563, + "1999": 0.574, + "2000": 0.577, + "2001": 0.585, + "2002": 0.589, + "2003": 0.591, + "2004": 0.601, + "2005": 0.588, + "2006": 0.587, + "2007": 0.586, + "2008": 0.591, + "2009": 0.596, + "2010": 0.6, + "2011": 0.608, + "2012": 0.614, + "2013": 0.628, + "2014": 0.636, + "2015": 0.645, + "2016": 0.654, + "2017": 0.662, + "2018": 0.674, + "2019": 0.674, + "2020": 0.653, + "2021": 0.651 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr105", + "Region": "Kadavu, Lau, Lomaiviti, Rotuma", + "1990": 0.555, + "1991": 0.555, + "1992": 0.553, + "1993": 0.552, + "1994": 0.555, + "1995": 0.56, + "1996": 0.566, + "1997": 0.56, + "1998": 0.559, + "1999": 0.569, + "2000": 0.572, + "2001": 0.581, + "2002": 0.584, + "2003": 0.587, + "2004": 0.597, + "2005": 0.583, + "2006": 0.583, + "2007": 0.581, + "2008": 0.586, + "2009": 0.589, + "2010": 0.593, + "2011": 0.6, + "2012": 0.605, + "2013": 0.618, + "2014": 0.626, + "2015": 0.634, + "2016": 0.642, + "2017": 0.649, + "2018": 0.66, + "2019": 0.659, + "2020": 0.637, + "2021": 0.635 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr107", + "Region": "Macuata", + "1990": 0.65, + "1991": 0.649, + "1992": 0.648, + "1993": 0.646, + "1994": 0.649, + "1995": 0.655, + "1996": 0.661, + "1997": 0.655, + "1998": 0.653, + "1999": 0.665, + "2000": 0.668, + "2001": 0.677, + "2002": 0.681, + "2003": 0.684, + "2004": 0.695, + "2005": 0.68, + "2006": 0.679, + "2007": 0.678, + "2008": 0.681, + "2009": 0.683, + "2010": 0.684, + "2011": 0.69, + "2012": 0.694, + "2013": 0.706, + "2014": 0.712, + "2015": 0.719, + "2016": 0.725, + "2017": 0.731, + "2018": 0.74, + "2019": 0.738, + "2020": 0.713, + "2021": 0.708 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr109", + "Region": "Nadroga or Navosa", + "1990": 0.634, + "1991": 0.634, + "1992": 0.632, + "1993": 0.631, + "1994": 0.634, + "1995": 0.64, + "1996": 0.645, + "1997": 0.64, + "1998": 0.638, + "1999": 0.649, + "2000": 0.652, + "2001": 0.661, + "2002": 0.665, + "2003": 0.668, + "2004": 0.679, + "2005": 0.664, + "2006": 0.664, + "2007": 0.662, + "2008": 0.663, + "2009": 0.663, + "2010": 0.662, + "2011": 0.666, + "2012": 0.667, + "2013": 0.677, + "2014": 0.681, + "2015": 0.685, + "2016": 0.689, + "2017": 0.693, + "2018": 0.7, + "2019": 0.695, + "2020": 0.669, + "2021": 0.663 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr101", + "Region": "Naitasiri", + "1990": 0.705, + "1991": 0.705, + "1992": 0.704, + "1993": 0.702, + "1994": 0.705, + "1995": 0.712, + "1996": 0.717, + "1997": 0.712, + "1998": 0.71, + "1999": 0.721, + "2000": 0.725, + "2001": 0.734, + "2002": 0.738, + "2003": 0.741, + "2004": 0.753, + "2005": 0.737, + "2006": 0.737, + "2007": 0.735, + "2008": 0.734, + "2009": 0.732, + "2010": 0.73, + "2011": 0.732, + "2012": 0.732, + "2013": 0.74, + "2014": 0.743, + "2015": 0.745, + "2016": 0.748, + "2017": 0.75, + "2018": 0.755, + "2019": 0.749, + "2020": 0.72, + "2021": 0.712 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr110", + "Region": "Ra", + "1990": 0.582, + "1991": 0.582, + "1992": 0.58, + "1993": 0.579, + "1994": 0.582, + "1995": 0.587, + "1996": 0.593, + "1997": 0.587, + "1998": 0.586, + "1999": 0.596, + "2000": 0.599, + "2001": 0.608, + "2002": 0.612, + "2003": 0.614, + "2004": 0.625, + "2005": 0.611, + "2006": 0.61, + "2007": 0.609, + "2008": 0.612, + "2009": 0.614, + "2010": 0.616, + "2011": 0.623, + "2012": 0.626, + "2013": 0.638, + "2014": 0.645, + "2015": 0.652, + "2016": 0.658, + "2017": 0.664, + "2018": 0.673, + "2019": 0.672, + "2020": 0.648, + "2021": 0.644 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr102", + "Region": "Rewa", + "1990": 0.718, + "1991": 0.718, + "1992": 0.717, + "1993": 0.715, + "1994": 0.718, + "1995": 0.725, + "1996": 0.73, + "1997": 0.724, + "1998": 0.722, + "1999": 0.734, + "2000": 0.738, + "2001": 0.747, + "2002": 0.751, + "2003": 0.754, + "2004": 0.766, + "2005": 0.75, + "2006": 0.75, + "2007": 0.748, + "2008": 0.745, + "2009": 0.741, + "2010": 0.737, + "2011": 0.737, + "2012": 0.735, + "2013": 0.741, + "2014": 0.742, + "2015": 0.743, + "2016": 0.743, + "2017": 0.743, + "2018": 0.746, + "2019": 0.738, + "2020": 0.708, + "2021": 0.697 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr103", + "Region": "Serua, Namosi", + "1990": 0.664, + "1991": 0.664, + "1992": 0.662, + "1993": 0.661, + "1994": 0.664, + "1995": 0.67, + "1996": 0.675, + "1997": 0.67, + "1998": 0.668, + "1999": 0.679, + "2000": 0.683, + "2001": 0.692, + "2002": 0.695, + "2003": 0.699, + "2004": 0.709, + "2005": 0.695, + "2006": 0.694, + "2007": 0.693, + "2008": 0.692, + "2009": 0.691, + "2010": 0.689, + "2011": 0.691, + "2012": 0.691, + "2013": 0.7, + "2014": 0.703, + "2015": 0.706, + "2016": 0.709, + "2017": 0.711, + "2018": 0.717, + "2019": 0.711, + "2020": 0.683, + "2021": 0.676 + }, + { + "Country": "Fiji", + "Continent": "Asia/Pacific", + "ISO_Code": "FJI", + "Level": "Subnat", + "GDLCODE": "FJIr104", + "Region": "Tailevu", + "1990": 0.642, + "1991": 0.642, + "1992": 0.64, + "1993": 0.639, + "1994": 0.642, + "1995": 0.648, + "1996": 0.653, + "1997": 0.648, + "1998": 0.646, + "1999": 0.657, + "2000": 0.66, + "2001": 0.669, + "2002": 0.673, + "2003": 0.676, + "2004": 0.687, + "2005": 0.672, + "2006": 0.672, + "2007": 0.67, + "2008": 0.671, + "2009": 0.672, + "2010": 0.672, + "2011": 0.676, + "2012": 0.678, + "2013": 0.688, + "2014": 0.693, + "2015": 0.698, + "2016": 0.703, + "2017": 0.707, + "2018": 0.714, + "2019": 0.711, + "2020": 0.685, + "2021": 0.679 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "National", + "GDLCODE": "FINt", + "Region": "Total", + "1990": 0.883, + "1991": 0.872, + "1992": 0.864, + "1993": 0.862, + "1994": 0.869, + "1995": 0.876, + "1996": 0.881, + "1997": 0.891, + "1998": 0.9, + "1999": 0.906, + "2000": 0.912, + "2001": 0.917, + "2002": 0.919, + "2003": 0.918, + "2004": 0.924, + "2005": 0.926, + "2006": 0.93, + "2007": 0.936, + "2008": 0.935, + "2009": 0.923, + "2010": 0.927, + "2011": 0.927, + "2012": 0.924, + "2013": 0.922, + "2014": 0.923, + "2015": 0.925, + "2016": 0.928, + "2017": 0.931, + "2018": 0.934, + "2019": 0.935, + "2020": 0.932, + "2021": 0.937 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr105", + "Region": "Aland", + "1990": 0.911, + "1991": 0.899, + "1992": 0.891, + "1993": 0.888, + "1994": 0.896, + "1995": 0.903, + "1996": 0.908, + "1997": 0.918, + "1998": 0.927, + "1999": 0.934, + "2000": 0.94, + "2001": 0.962, + "2002": 0.961, + "2003": 0.959, + "2004": 0.963, + "2005": 0.962, + "2006": 0.962, + "2007": 0.958, + "2008": 0.948, + "2009": 0.955, + "2010": 0.953, + "2011": 0.95, + "2012": 0.957, + "2013": 0.957, + "2014": 0.953, + "2015": 0.958, + "2016": 0.954, + "2017": 0.953, + "2018": 0.94, + "2019": 0.942, + "2020": 0.939, + "2021": 0.944 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr103", + "Region": "Etela-Suomi", + "1990": 0.872, + "1991": 0.861, + "1992": 0.853, + "1993": 0.85, + "1994": 0.857, + "1995": 0.865, + "1996": 0.869, + "1997": 0.88, + "1998": 0.888, + "1999": 0.895, + "2000": 0.901, + "2001": 0.903, + "2002": 0.907, + "2003": 0.906, + "2004": 0.913, + "2005": 0.913, + "2006": 0.915, + "2007": 0.92, + "2008": 0.917, + "2009": 0.902, + "2010": 0.902, + "2011": 0.907, + "2012": 0.905, + "2013": 0.902, + "2014": 0.904, + "2015": 0.905, + "2016": 0.908, + "2017": 0.914, + "2018": 0.916, + "2019": 0.918, + "2020": 0.915, + "2021": 0.92 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr102", + "Region": "Helsinki-Uusimaa", + "1990": 0.933, + "1991": 0.921, + "1992": 0.914, + "1993": 0.911, + "1994": 0.918, + "1995": 0.926, + "1996": 0.93, + "1997": 0.941, + "1998": 0.95, + "1999": 0.956, + "2000": 0.963, + "2001": 0.968, + "2002": 0.966, + "2003": 0.963, + "2004": 0.969, + "2005": 0.971, + "2006": 0.976, + "2007": 0.982, + "2008": 0.98, + "2009": 0.972, + "2010": 0.975, + "2011": 0.971, + "2012": 0.965, + "2013": 0.966, + "2014": 0.964, + "2015": 0.968, + "2016": 0.97, + "2017": 0.972, + "2018": 0.974, + "2019": 0.975, + "2020": 0.972, + "2021": 0.977 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr101", + "Region": "Lansi-Suomi", + "1990": 0.862, + "1991": 0.851, + "1992": 0.844, + "1993": 0.841, + "1994": 0.848, + "1995": 0.855, + "1996": 0.859, + "1997": 0.87, + "1998": 0.878, + "1999": 0.885, + "2000": 0.891, + "2001": 0.899, + "2002": 0.9, + "2003": 0.901, + "2004": 0.905, + "2005": 0.908, + "2006": 0.911, + "2007": 0.919, + "2008": 0.918, + "2009": 0.906, + "2010": 0.91, + "2011": 0.913, + "2012": 0.91, + "2013": 0.905, + "2014": 0.906, + "2015": 0.907, + "2016": 0.909, + "2017": 0.912, + "2018": 0.915, + "2019": 0.916, + "2020": 0.913, + "2021": 0.918 + }, + { + "Country": "Finland", + "Continent": "Europe", + "ISO_Code": "FIN", + "Level": "Subnat", + "GDLCODE": "FINr104", + "Region": "Pohjois-ja Ita-Suomi", + "1990": 0.845, + "1991": 0.834, + "1992": 0.827, + "1993": 0.824, + "1994": 0.831, + "1995": 0.838, + "1996": 0.842, + "1997": 0.853, + "1998": 0.861, + "1999": 0.867, + "2000": 0.874, + "2001": 0.875, + "2002": 0.881, + "2003": 0.885, + "2004": 0.891, + "2005": 0.893, + "2006": 0.898, + "2007": 0.902, + "2008": 0.902, + "2009": 0.886, + "2010": 0.893, + "2011": 0.896, + "2012": 0.893, + "2013": 0.892, + "2014": 0.894, + "2015": 0.893, + "2016": 0.899, + "2017": 0.903, + "2018": 0.906, + "2019": 0.907, + "2020": 0.904, + "2021": 0.909 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "National", + "GDLCODE": "FRAt", + "Region": "Total", + "1990": 0.88, + "1991": 0.881, + "1992": 0.883, + "1993": 0.882, + "1994": 0.884, + "1995": 0.886, + "1996": 0.888, + "1997": 0.892, + "1998": 0.897, + "1999": 0.902, + "2000": 0.905, + "2001": 0.908, + "2002": 0.908, + "2003": 0.908, + "2004": 0.911, + "2005": 0.912, + "2006": 0.915, + "2007": 0.918, + "2008": 0.917, + "2009": 0.914, + "2010": 0.915, + "2011": 0.917, + "2012": 0.916, + "2013": 0.917, + "2014": 0.918, + "2015": 0.921, + "2016": 0.922, + "2017": 0.925, + "2018": 0.927, + "2019": 0.929, + "2020": 0.916, + "2021": 0.926 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr110", + "Region": "Alsace", + "1990": 0.875, + "1991": 0.875, + "1992": 0.877, + "1993": 0.876, + "1994": 0.878, + "1995": 0.881, + "1996": 0.883, + "1997": 0.886, + "1998": 0.891, + "1999": 0.897, + "2000": 0.9, + "2001": 0.902, + "2002": 0.902, + "2003": 0.903, + "2004": 0.905, + "2005": 0.904, + "2006": 0.905, + "2007": 0.91, + "2008": 0.908, + "2009": 0.905, + "2010": 0.902, + "2011": 0.906, + "2012": 0.902, + "2013": 0.904, + "2014": 0.907, + "2015": 0.908, + "2016": 0.91, + "2017": 0.911, + "2018": 0.915, + "2019": 0.919, + "2020": 0.906, + "2021": 0.915 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr115", + "Region": "Aquitaine", + "1990": 0.864, + "1991": 0.864, + "1992": 0.866, + "1993": 0.865, + "1994": 0.868, + "1995": 0.87, + "1996": 0.872, + "1997": 0.875, + "1998": 0.88, + "1999": 0.886, + "2000": 0.889, + "2001": 0.891, + "2002": 0.891, + "2003": 0.892, + "2004": 0.894, + "2005": 0.896, + "2006": 0.9, + "2007": 0.902, + "2008": 0.896, + "2009": 0.894, + "2010": 0.895, + "2011": 0.899, + "2012": 0.897, + "2013": 0.895, + "2014": 0.901, + "2015": 0.9, + "2016": 0.902, + "2017": 0.904, + "2018": 0.907, + "2019": 0.912, + "2020": 0.899, + "2021": 0.908 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr119", + "Region": "Auvergne", + "1990": 0.855, + "1991": 0.856, + "1992": 0.858, + "1993": 0.856, + "1994": 0.859, + "1995": 0.861, + "1996": 0.863, + "1997": 0.866, + "1998": 0.872, + "1999": 0.877, + "2000": 0.88, + "2001": 0.882, + "2002": 0.882, + "2003": 0.883, + "2004": 0.886, + "2005": 0.886, + "2006": 0.888, + "2007": 0.892, + "2008": 0.884, + "2009": 0.88, + "2010": 0.881, + "2011": 0.885, + "2012": 0.883, + "2013": 0.884, + "2014": 0.891, + "2015": 0.885, + "2016": 0.886, + "2017": 0.887, + "2018": 0.894, + "2019": 0.9, + "2020": 0.887, + "2021": 0.896 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr106", + "Region": "Basse-Normandie", + "1990": 0.855, + "1991": 0.856, + "1992": 0.858, + "1993": 0.856, + "1994": 0.859, + "1995": 0.861, + "1996": 0.863, + "1997": 0.866, + "1998": 0.872, + "1999": 0.877, + "2000": 0.88, + "2001": 0.882, + "2002": 0.882, + "2003": 0.883, + "2004": 0.886, + "2005": 0.885, + "2006": 0.887, + "2007": 0.889, + "2008": 0.884, + "2009": 0.881, + "2010": 0.881, + "2011": 0.885, + "2012": 0.881, + "2013": 0.882, + "2014": 0.881, + "2015": 0.885, + "2016": 0.886, + "2017": 0.884, + "2018": 0.887, + "2019": 0.888, + "2020": 0.875, + "2021": 0.885 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr107", + "Region": "Bourgogne", + "1990": 0.861, + "1991": 0.861, + "1992": 0.863, + "1993": 0.862, + "1994": 0.865, + "1995": 0.867, + "1996": 0.869, + "1997": 0.872, + "1998": 0.878, + "1999": 0.883, + "2000": 0.886, + "2001": 0.888, + "2002": 0.888, + "2003": 0.889, + "2004": 0.891, + "2005": 0.89, + "2006": 0.893, + "2007": 0.897, + "2008": 0.894, + "2009": 0.888, + "2010": 0.885, + "2011": 0.889, + "2012": 0.887, + "2013": 0.887, + "2014": 0.888, + "2015": 0.892, + "2016": 0.89, + "2017": 0.894, + "2018": 0.898, + "2019": 0.898, + "2020": 0.885, + "2021": 0.895 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr113", + "Region": "Bretagne", + "1990": 0.863, + "1991": 0.863, + "1992": 0.865, + "1993": 0.864, + "1994": 0.866, + "1995": 0.868, + "1996": 0.87, + "1997": 0.874, + "1998": 0.879, + "1999": 0.884, + "2000": 0.887, + "2001": 0.89, + "2002": 0.89, + "2003": 0.89, + "2004": 0.893, + "2005": 0.895, + "2006": 0.897, + "2007": 0.897, + "2008": 0.89, + "2009": 0.886, + "2010": 0.885, + "2011": 0.889, + "2012": 0.887, + "2013": 0.888, + "2014": 0.891, + "2015": 0.893, + "2016": 0.895, + "2017": 0.899, + "2018": 0.9, + "2019": 0.903, + "2020": 0.89, + "2021": 0.899 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr105", + "Region": "Centre", + "1990": 0.863, + "1991": 0.864, + "1992": 0.865, + "1993": 0.864, + "1994": 0.867, + "1995": 0.869, + "1996": 0.871, + "1997": 0.874, + "1998": 0.88, + "1999": 0.885, + "2000": 0.888, + "2001": 0.89, + "2002": 0.89, + "2003": 0.891, + "2004": 0.894, + "2005": 0.894, + "2006": 0.895, + "2007": 0.898, + "2008": 0.89, + "2009": 0.887, + "2010": 0.887, + "2011": 0.889, + "2012": 0.888, + "2013": 0.888, + "2014": 0.888, + "2015": 0.892, + "2016": 0.892, + "2017": 0.895, + "2018": 0.896, + "2019": 0.896, + "2020": 0.883, + "2021": 0.893 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr102", + "Region": "Champagne-Ardenne", + "1990": 0.871, + "1991": 0.871, + "1992": 0.873, + "1993": 0.872, + "1994": 0.874, + "1995": 0.877, + "1996": 0.879, + "1997": 0.882, + "1998": 0.887, + "1999": 0.893, + "2000": 0.896, + "2001": 0.898, + "2002": 0.898, + "2003": 0.899, + "2004": 0.901, + "2005": 0.9, + "2006": 0.901, + "2007": 0.905, + "2008": 0.9, + "2009": 0.892, + "2010": 0.892, + "2011": 0.9, + "2012": 0.893, + "2013": 0.894, + "2014": 0.886, + "2015": 0.894, + "2016": 0.893, + "2017": 0.895, + "2018": 0.9, + "2019": 0.901, + "2020": 0.888, + "2021": 0.897 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr122", + "Region": "Corse", + "1990": 0.838, + "1991": 0.838, + "1992": 0.84, + "1993": 0.839, + "1994": 0.842, + "1995": 0.844, + "1996": 0.846, + "1997": 0.849, + "1998": 0.854, + "1999": 0.859, + "2000": 0.862, + "2001": 0.865, + "2002": 0.865, + "2003": 0.865, + "2004": 0.868, + "2005": 0.872, + "2006": 0.876, + "2007": 0.876, + "2008": 0.88, + "2009": 0.885, + "2010": 0.885, + "2011": 0.887, + "2012": 0.885, + "2013": 0.886, + "2014": 0.885, + "2015": 0.885, + "2016": 0.884, + "2017": 0.886, + "2018": 0.89, + "2019": 0.898, + "2020": 0.885, + "2021": 0.894 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr111", + "Region": "Franche-Comte", + "1990": 0.858, + "1991": 0.858, + "1992": 0.86, + "1993": 0.859, + "1994": 0.862, + "1995": 0.864, + "1996": 0.866, + "1997": 0.869, + "1998": 0.875, + "1999": 0.88, + "2000": 0.883, + "2001": 0.885, + "2002": 0.885, + "2003": 0.886, + "2004": 0.889, + "2005": 0.887, + "2006": 0.887, + "2007": 0.889, + "2008": 0.884, + "2009": 0.879, + "2010": 0.877, + "2011": 0.88, + "2012": 0.871, + "2013": 0.871, + "2014": 0.88, + "2015": 0.877, + "2016": 0.88, + "2017": 0.877, + "2018": 0.881, + "2019": 0.886, + "2020": 0.873, + "2021": 0.883 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr127", + "Region": "French Guyana", + "1990": 0.769, + "1991": 0.77, + "1992": 0.771, + "1993": 0.77, + "1994": 0.773, + "1995": 0.775, + "1996": 0.777, + "1997": 0.78, + "1998": 0.785, + "1999": 0.79, + "2000": 0.793, + "2001": 0.795, + "2002": 0.795, + "2003": 0.795, + "2004": 0.798, + "2005": 0.8, + "2006": 0.813, + "2007": 0.806, + "2008": 0.803, + "2009": 0.807, + "2010": 0.802, + "2011": 0.801, + "2012": 0.811, + "2013": 0.806, + "2014": 0.806, + "2015": 0.799, + "2016": 0.801, + "2017": 0.792, + "2018": 0.793, + "2019": 0.808, + "2020": 0.796, + "2021": 0.805 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr125", + "Region": "Guadeloupe", + "1990": 0.803, + "1991": 0.803, + "1992": 0.805, + "1993": 0.804, + "1994": 0.806, + "1995": 0.808, + "1996": 0.81, + "1997": 0.814, + "1998": 0.819, + "1999": 0.824, + "2000": 0.827, + "2001": 0.829, + "2002": 0.829, + "2003": 0.829, + "2004": 0.832, + "2005": 0.838, + "2006": 0.845, + "2007": 0.848, + "2008": 0.852, + "2009": 0.852, + "2010": 0.854, + "2011": 0.855, + "2012": 0.854, + "2013": 0.841, + "2014": 0.845, + "2015": 0.841, + "2016": 0.845, + "2017": 0.853, + "2018": 0.856, + "2019": 0.851, + "2020": 0.839, + "2021": 0.848 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr104", + "Region": "Haute-Normandie", + "1990": 0.865, + "1991": 0.866, + "1992": 0.868, + "1993": 0.866, + "1994": 0.869, + "1995": 0.871, + "1996": 0.873, + "1997": 0.877, + "1998": 0.882, + "1999": 0.887, + "2000": 0.89, + "2001": 0.892, + "2002": 0.893, + "2003": 0.893, + "2004": 0.896, + "2005": 0.896, + "2006": 0.897, + "2007": 0.902, + "2008": 0.896, + "2009": 0.89, + "2010": 0.893, + "2011": 0.896, + "2012": 0.894, + "2013": 0.895, + "2014": 0.895, + "2015": 0.898, + "2016": 0.899, + "2017": 0.898, + "2018": 0.9, + "2019": 0.901, + "2020": 0.888, + "2021": 0.897 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr101", + "Region": "Ile de France", + "1990": 0.947, + "1991": 0.947, + "1992": 0.949, + "1993": 0.948, + "1994": 0.951, + "1995": 0.953, + "1996": 0.955, + "1997": 0.959, + "1998": 0.964, + "1999": 0.97, + "2000": 0.973, + "2001": 0.975, + "2002": 0.975, + "2003": 0.976, + "2004": 0.979, + "2005": 0.981, + "2006": 0.982, + "2007": 0.988, + "2008": 0.996, + "2009": 0.991, + "2010": 0.997, + "2011": 0.995, + "2012": 0.996, + "2013": 0.997, + "2014": 0.998, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 0.995, + "2021": 1 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr120", + "Region": "Languedoc-Roussillon", + "1990": 0.842, + "1991": 0.842, + "1992": 0.844, + "1993": 0.843, + "1994": 0.846, + "1995": 0.848, + "1996": 0.85, + "1997": 0.853, + "1998": 0.858, + "1999": 0.864, + "2000": 0.867, + "2001": 0.869, + "2002": 0.869, + "2003": 0.869, + "2004": 0.872, + "2005": 0.873, + "2006": 0.876, + "2007": 0.878, + "2008": 0.877, + "2009": 0.876, + "2010": 0.874, + "2011": 0.876, + "2012": 0.873, + "2013": 0.871, + "2014": 0.871, + "2015": 0.876, + "2016": 0.877, + "2017": 0.88, + "2018": 0.88, + "2019": 0.885, + "2020": 0.873, + "2021": 0.882 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr117", + "Region": "Limousin", + "1990": 0.848, + "1991": 0.849, + "1992": 0.851, + "1993": 0.85, + "1994": 0.852, + "1995": 0.854, + "1996": 0.856, + "1997": 0.86, + "1998": 0.865, + "1999": 0.87, + "2000": 0.873, + "2001": 0.875, + "2002": 0.875, + "2003": 0.876, + "2004": 0.879, + "2005": 0.882, + "2006": 0.884, + "2007": 0.885, + "2008": 0.876, + "2009": 0.873, + "2010": 0.869, + "2011": 0.87, + "2012": 0.87, + "2013": 0.873, + "2014": 0.884, + "2015": 0.876, + "2016": 0.875, + "2017": 0.884, + "2018": 0.879, + "2019": 0.872, + "2020": 0.859, + "2021": 0.869 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr109", + "Region": "Lorraine", + "1990": 0.853, + "1991": 0.853, + "1992": 0.855, + "1993": 0.854, + "1994": 0.857, + "1995": 0.859, + "1996": 0.861, + "1997": 0.864, + "1998": 0.869, + "1999": 0.875, + "2000": 0.878, + "2001": 0.88, + "2002": 0.88, + "2003": 0.88, + "2004": 0.883, + "2005": 0.883, + "2006": 0.884, + "2007": 0.886, + "2008": 0.879, + "2009": 0.876, + "2010": 0.873, + "2011": 0.875, + "2012": 0.871, + "2013": 0.872, + "2014": 0.88, + "2015": 0.876, + "2016": 0.875, + "2017": 0.877, + "2018": 0.878, + "2019": 0.877, + "2020": 0.865, + "2021": 0.874 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr126", + "Region": "Martinique", + "1990": 0.817, + "1991": 0.817, + "1992": 0.819, + "1993": 0.818, + "1994": 0.82, + "1995": 0.822, + "1996": 0.824, + "1997": 0.828, + "1998": 0.833, + "1999": 0.838, + "2000": 0.841, + "2001": 0.843, + "2002": 0.843, + "2003": 0.844, + "2004": 0.846, + "2005": 0.852, + "2006": 0.857, + "2007": 0.86, + "2008": 0.855, + "2009": 0.856, + "2010": 0.857, + "2011": 0.857, + "2012": 0.86, + "2013": 0.862, + "2014": 0.866, + "2015": 0.864, + "2016": 0.865, + "2017": 0.866, + "2018": 0.868, + "2019": 0.865, + "2020": 0.852, + "2021": 0.862 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr129", + "Region": "Mayotte", + "1990": 0.628, + "1991": 0.629, + "1992": 0.63, + "1993": 0.629, + "1994": 0.632, + "1995": 0.633, + "1996": 0.635, + "1997": 0.638, + "1998": 0.642, + "1999": 0.647, + "2000": 0.65, + "2001": 0.651, + "2002": 0.652, + "2003": 0.652, + "2004": 0.654, + "2005": 0.667, + "2006": 0.681, + "2007": 0.685, + "2008": 0.7, + "2009": 0.697, + "2010": 0.704, + "2011": 0.704, + "2012": 0.706, + "2013": 0.713, + "2014": 0.724, + "2015": 0.715, + "2016": 0.718, + "2017": 0.722, + "2018": 0.719, + "2019": 0.744, + "2020": 0.733, + "2021": 0.741 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr116", + "Region": "Midi-Pyrenees", + "1990": 0.863, + "1991": 0.863, + "1992": 0.865, + "1993": 0.864, + "1994": 0.866, + "1995": 0.868, + "1996": 0.87, + "1997": 0.874, + "1998": 0.879, + "1999": 0.884, + "2000": 0.887, + "2001": 0.89, + "2002": 0.89, + "2003": 0.89, + "2004": 0.893, + "2005": 0.897, + "2006": 0.903, + "2007": 0.9, + "2008": 0.898, + "2009": 0.896, + "2010": 0.893, + "2011": 0.897, + "2012": 0.899, + "2013": 0.901, + "2014": 0.903, + "2015": 0.906, + "2016": 0.909, + "2017": 0.91, + "2018": 0.914, + "2019": 0.921, + "2020": 0.908, + "2021": 0.918 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr108", + "Region": "Nord", + "1990": 0.846, + "1991": 0.846, + "1992": 0.848, + "1993": 0.847, + "1994": 0.85, + "1995": 0.852, + "1996": 0.854, + "1997": 0.857, + "1998": 0.862, + "1999": 0.868, + "2000": 0.871, + "2001": 0.873, + "2002": 0.873, + "2003": 0.873, + "2004": 0.876, + "2005": 0.878, + "2006": 0.882, + "2007": 0.886, + "2008": 0.886, + "2009": 0.882, + "2010": 0.881, + "2011": 0.885, + "2012": 0.881, + "2013": 0.883, + "2014": 0.883, + "2015": 0.888, + "2016": 0.89, + "2017": 0.891, + "2018": 0.895, + "2019": 0.898, + "2020": 0.885, + "2021": 0.894 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr112", + "Region": "Pays de la Loire", + "1990": 0.866, + "1991": 0.866, + "1992": 0.868, + "1993": 0.867, + "1994": 0.87, + "1995": 0.872, + "1996": 0.874, + "1997": 0.877, + "1998": 0.883, + "1999": 0.888, + "2000": 0.891, + "2001": 0.893, + "2002": 0.893, + "2003": 0.894, + "2004": 0.896, + "2005": 0.898, + "2006": 0.899, + "2007": 0.902, + "2008": 0.9, + "2009": 0.896, + "2010": 0.894, + "2011": 0.9, + "2012": 0.898, + "2013": 0.898, + "2014": 0.898, + "2015": 0.902, + "2016": 0.903, + "2017": 0.905, + "2018": 0.908, + "2019": 0.912, + "2020": 0.899, + "2021": 0.908 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr103", + "Region": "Picardie", + "1990": 0.848, + "1991": 0.848, + "1992": 0.85, + "1993": 0.849, + "1994": 0.851, + "1995": 0.853, + "1996": 0.855, + "1997": 0.859, + "1998": 0.864, + "1999": 0.869, + "2000": 0.872, + "2001": 0.874, + "2002": 0.875, + "2003": 0.875, + "2004": 0.878, + "2005": 0.878, + "2006": 0.878, + "2007": 0.882, + "2008": 0.877, + "2009": 0.872, + "2010": 0.873, + "2011": 0.876, + "2012": 0.874, + "2013": 0.874, + "2014": 0.871, + "2015": 0.878, + "2016": 0.875, + "2017": 0.879, + "2018": 0.879, + "2019": 0.878, + "2020": 0.866, + "2021": 0.875 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr114", + "Region": "Poitou-Charentes", + "1990": 0.855, + "1991": 0.855, + "1992": 0.857, + "1993": 0.856, + "1994": 0.858, + "1995": 0.86, + "1996": 0.862, + "1997": 0.866, + "1998": 0.871, + "1999": 0.876, + "2000": 0.879, + "2001": 0.881, + "2002": 0.882, + "2003": 0.882, + "2004": 0.885, + "2005": 0.884, + "2006": 0.885, + "2007": 0.889, + "2008": 0.881, + "2009": 0.879, + "2010": 0.879, + "2011": 0.883, + "2012": 0.883, + "2013": 0.884, + "2014": 0.883, + "2015": 0.887, + "2016": 0.887, + "2017": 0.89, + "2018": 0.893, + "2019": 0.897, + "2020": 0.884, + "2021": 0.893 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr121", + "Region": "Provence-Alpes-Cote dAzur", + "1990": 0.871, + "1991": 0.872, + "1992": 0.874, + "1993": 0.873, + "1994": 0.875, + "1995": 0.877, + "1996": 0.879, + "1997": 0.883, + "1998": 0.888, + "1999": 0.893, + "2000": 0.896, + "2001": 0.899, + "2002": 0.899, + "2003": 0.899, + "2004": 0.902, + "2005": 0.905, + "2006": 0.908, + "2007": 0.908, + "2008": 0.904, + "2009": 0.903, + "2010": 0.907, + "2011": 0.908, + "2012": 0.909, + "2013": 0.907, + "2014": 0.907, + "2015": 0.91, + "2016": 0.912, + "2017": 0.915, + "2018": 0.916, + "2019": 0.919, + "2020": 0.906, + "2021": 0.915 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr128", + "Region": "Reunion", + "1990": 0.801, + "1991": 0.801, + "1992": 0.803, + "1993": 0.802, + "1994": 0.804, + "1995": 0.806, + "1996": 0.808, + "1997": 0.812, + "1998": 0.817, + "1999": 0.822, + "2000": 0.825, + "2001": 0.827, + "2002": 0.827, + "2003": 0.827, + "2004": 0.83, + "2005": 0.836, + "2006": 0.84, + "2007": 0.845, + "2008": 0.846, + "2009": 0.841, + "2010": 0.84, + "2011": 0.838, + "2012": 0.847, + "2013": 0.849, + "2014": 0.852, + "2015": 0.847, + "2016": 0.851, + "2017": 0.855, + "2018": 0.856, + "2019": 0.859, + "2020": 0.847, + "2021": 0.856 + }, + { + "Country": "France", + "Continent": "Europe", + "ISO_Code": "FRA", + "Level": "Subnat", + "GDLCODE": "FRAr118", + "Region": "Rhone-Alpes", + "1990": 0.883, + "1991": 0.883, + "1992": 0.885, + "1993": 0.884, + "1994": 0.887, + "1995": 0.889, + "1996": 0.891, + "1997": 0.894, + "1998": 0.9, + "1999": 0.905, + "2000": 0.908, + "2001": 0.91, + "2002": 0.911, + "2003": 0.911, + "2004": 0.914, + "2005": 0.914, + "2006": 0.918, + "2007": 0.919, + "2008": 0.919, + "2009": 0.914, + "2010": 0.914, + "2011": 0.918, + "2012": 0.916, + "2013": 0.916, + "2014": 0.917, + "2015": 0.92, + "2016": 0.922, + "2017": 0.925, + "2018": 0.928, + "2019": 0.933, + "2020": 0.92, + "2021": 0.93 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "National", + "GDLCODE": "GABt", + "Region": "Total", + "1990": 0.774, + "1991": 0.779, + "1992": 0.767, + "1993": 0.767, + "1994": 0.772, + "1995": 0.774, + "1996": 0.775, + "1997": 0.778, + "1998": 0.785, + "1999": 0.764, + "2000": 0.746, + "2001": 0.754, + "2002": 0.756, + "2003": 0.753, + "2004": 0.741, + "2005": 0.748, + "2006": 0.732, + "2007": 0.732, + "2008": 0.72, + "2009": 0.727, + "2010": 0.725, + "2011": 0.723, + "2012": 0.735, + "2013": 0.741, + "2014": 0.753, + "2015": 0.748, + "2016": 0.748, + "2017": 0.747, + "2018": 0.739, + "2019": 0.736, + "2020": 0.74, + "2021": 0.739 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr101", + "Region": "Estuaire", + "1990": 0.72, + "1991": 0.725, + "1992": 0.713, + "1993": 0.714, + "1994": 0.718, + "1995": 0.72, + "1996": 0.721, + "1997": 0.724, + "1998": 0.731, + "1999": 0.711, + "2000": 0.693, + "2001": 0.704, + "2002": 0.709, + "2003": 0.709, + "2004": 0.7, + "2005": 0.711, + "2006": 0.697, + "2007": 0.701, + "2008": 0.692, + "2009": 0.702, + "2010": 0.702, + "2011": 0.703, + "2012": 0.719, + "2013": 0.724, + "2014": 0.736, + "2015": 0.731, + "2016": 0.731, + "2017": 0.73, + "2018": 0.723, + "2019": 0.719, + "2020": 0.723, + "2021": 0.723 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr102", + "Region": "Haut Ogooue", + "1990": 0.762, + "1991": 0.768, + "1992": 0.755, + "1993": 0.756, + "1994": 0.76, + "1995": 0.762, + "1996": 0.763, + "1997": 0.767, + "1998": 0.774, + "1999": 0.753, + "2000": 0.735, + "2001": 0.741, + "2002": 0.741, + "2003": 0.737, + "2004": 0.723, + "2005": 0.729, + "2006": 0.711, + "2007": 0.711, + "2008": 0.697, + "2009": 0.702, + "2010": 0.698, + "2011": 0.695, + "2012": 0.706, + "2013": 0.711, + "2014": 0.724, + "2015": 0.719, + "2016": 0.719, + "2017": 0.718, + "2018": 0.71, + "2019": 0.707, + "2020": 0.711, + "2021": 0.71 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr110", + "Region": "Libreville-Port Gentil", + "1990": 0.846, + "1991": 0.851, + "1992": 0.839, + "1993": 0.839, + "1994": 0.844, + "1995": 0.845, + "1996": 0.847, + "1997": 0.85, + "1998": 0.858, + "1999": 0.836, + "2000": 0.817, + "2001": 0.823, + "2002": 0.823, + "2003": 0.818, + "2004": 0.803, + "2005": 0.809, + "2006": 0.789, + "2007": 0.788, + "2008": 0.773, + "2009": 0.779, + "2010": 0.774, + "2011": 0.77, + "2012": 0.781, + "2013": 0.787, + "2014": 0.8, + "2015": 0.795, + "2016": 0.795, + "2017": 0.793, + "2018": 0.786, + "2019": 0.782, + "2020": 0.786, + "2021": 0.786 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr103", + "Region": "Moyen Ogooue", + "1990": 0.722, + "1991": 0.727, + "1992": 0.715, + "1993": 0.715, + "1994": 0.72, + "1995": 0.722, + "1996": 0.723, + "1997": 0.726, + "1998": 0.733, + "1999": 0.713, + "2000": 0.695, + "2001": 0.7, + "2002": 0.699, + "2003": 0.693, + "2004": 0.679, + "2005": 0.683, + "2006": 0.664, + "2007": 0.662, + "2008": 0.648, + "2009": 0.652, + "2010": 0.647, + "2011": 0.643, + "2012": 0.652, + "2013": 0.657, + "2014": 0.669, + "2015": 0.664, + "2016": 0.664, + "2017": 0.663, + "2018": 0.655, + "2019": 0.652, + "2020": 0.656, + "2021": 0.656 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr104", + "Region": "Ngounie", + "1990": 0.659, + "1991": 0.663, + "1992": 0.652, + "1993": 0.652, + "1994": 0.657, + "1995": 0.658, + "1996": 0.659, + "1997": 0.662, + "1998": 0.669, + "1999": 0.65, + "2000": 0.633, + "2001": 0.642, + "2002": 0.645, + "2003": 0.644, + "2004": 0.634, + "2005": 0.643, + "2006": 0.629, + "2007": 0.631, + "2008": 0.621, + "2009": 0.629, + "2010": 0.628, + "2011": 0.628, + "2012": 0.641, + "2013": 0.646, + "2014": 0.658, + "2015": 0.653, + "2016": 0.653, + "2017": 0.652, + "2018": 0.645, + "2019": 0.641, + "2020": 0.645, + "2021": 0.645 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr105", + "Region": "Nyanga", + "1990": 0.664, + "1991": 0.668, + "1992": 0.657, + "1993": 0.657, + "1994": 0.662, + "1995": 0.663, + "1996": 0.664, + "1997": 0.667, + "1998": 0.674, + "1999": 0.655, + "2000": 0.638, + "2001": 0.647, + "2002": 0.649, + "2003": 0.648, + "2004": 0.637, + "2005": 0.645, + "2006": 0.631, + "2007": 0.633, + "2008": 0.622, + "2009": 0.63, + "2010": 0.628, + "2011": 0.628, + "2012": 0.641, + "2013": 0.645, + "2014": 0.657, + "2015": 0.653, + "2016": 0.653, + "2017": 0.651, + "2018": 0.644, + "2019": 0.641, + "2020": 0.645, + "2021": 0.644 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr106", + "Region": "Ogooue Ivindo", + "1990": 0.653, + "1991": 0.658, + "1992": 0.646, + "1993": 0.647, + "1994": 0.651, + "1995": 0.652, + "1996": 0.653, + "1997": 0.657, + "1998": 0.663, + "1999": 0.644, + "2000": 0.627, + "2001": 0.634, + "2002": 0.635, + "2003": 0.632, + "2004": 0.62, + "2005": 0.626, + "2006": 0.611, + "2007": 0.611, + "2008": 0.599, + "2009": 0.605, + "2010": 0.602, + "2011": 0.6, + "2012": 0.611, + "2013": 0.616, + "2014": 0.627, + "2015": 0.623, + "2016": 0.623, + "2017": 0.622, + "2018": 0.615, + "2019": 0.612, + "2020": 0.615, + "2021": 0.615 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr107", + "Region": "Ogooue Lolo", + "1990": 0.691, + "1991": 0.696, + "1992": 0.684, + "1993": 0.684, + "1994": 0.689, + "1995": 0.69, + "1996": 0.691, + "1997": 0.695, + "1998": 0.701, + "1999": 0.682, + "2000": 0.665, + "2001": 0.671, + "2002": 0.672, + "2003": 0.668, + "2004": 0.656, + "2005": 0.662, + "2006": 0.646, + "2007": 0.646, + "2008": 0.633, + "2009": 0.639, + "2010": 0.636, + "2011": 0.634, + "2012": 0.645, + "2013": 0.649, + "2014": 0.661, + "2015": 0.657, + "2016": 0.657, + "2017": 0.656, + "2018": 0.648, + "2019": 0.645, + "2020": 0.649, + "2021": 0.648 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr108", + "Region": "Ogooue Maritime", + "1990": 0.716, + "1991": 0.721, + "1992": 0.709, + "1993": 0.71, + "1994": 0.714, + "1995": 0.716, + "1996": 0.717, + "1997": 0.72, + "1998": 0.727, + "1999": 0.707, + "2000": 0.69, + "2001": 0.698, + "2002": 0.701, + "2003": 0.699, + "2004": 0.688, + "2005": 0.696, + "2006": 0.681, + "2007": 0.683, + "2008": 0.672, + "2009": 0.679, + "2010": 0.678, + "2011": 0.677, + "2012": 0.69, + "2013": 0.695, + "2014": 0.708, + "2015": 0.703, + "2016": 0.703, + "2017": 0.701, + "2018": 0.694, + "2019": 0.691, + "2020": 0.695, + "2021": 0.694 + }, + { + "Country": "Gabon", + "Continent": "Africa", + "ISO_Code": "GAB", + "Level": "Subnat", + "GDLCODE": "GABr109", + "Region": "Woleu Ntem", + "1990": 0.68, + "1991": 0.685, + "1992": 0.674, + "1993": 0.674, + "1994": 0.678, + "1995": 0.68, + "1996": 0.681, + "1997": 0.684, + "1998": 0.691, + "1999": 0.671, + "2000": 0.654, + "2001": 0.663, + "2002": 0.665, + "2003": 0.663, + "2004": 0.652, + "2005": 0.66, + "2006": 0.645, + "2007": 0.647, + "2008": 0.636, + "2009": 0.643, + "2010": 0.641, + "2011": 0.641, + "2012": 0.653, + "2013": 0.658, + "2014": 0.67, + "2015": 0.665, + "2016": 0.665, + "2017": 0.664, + "2018": 0.657, + "2019": 0.654, + "2020": 0.657, + "2021": 0.657 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "National", + "GDLCODE": "GMBt", + "Region": "Total", + "1990": 0.469, + "1991": 0.468, + "1992": 0.468, + "1993": 0.466, + "1994": 0.462, + "1995": 0.459, + "1996": 0.461, + "1997": 0.455, + "1998": 0.456, + "1999": 0.46, + "2000": 0.464, + "2001": 0.467, + "2002": 0.461, + "2003": 0.461, + "2004": 0.474, + "2005": 0.465, + "2006": 0.459, + "2007": 0.46, + "2008": 0.465, + "2009": 0.47, + "2010": 0.474, + "2011": 0.456, + "2012": 0.459, + "2013": 0.459, + "2014": 0.452, + "2015": 0.453, + "2016": 0.452, + "2017": 0.455, + "2018": 0.461, + "2019": 0.466, + "2020": 0.461, + "2021": 0.465 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr101", + "Region": "Banjul", + "1990": 0.572, + "1991": 0.571, + "1992": 0.571, + "1993": 0.569, + "1994": 0.564, + "1995": 0.561, + "1996": 0.563, + "1997": 0.557, + "1998": 0.558, + "1999": 0.563, + "2000": 0.567, + "2001": 0.569, + "2002": 0.562, + "2003": 0.562, + "2004": 0.575, + "2005": 0.566, + "2006": 0.559, + "2007": 0.56, + "2008": 0.567, + "2009": 0.573, + "2010": 0.578, + "2011": 0.559, + "2012": 0.564, + "2013": 0.564, + "2014": 0.55, + "2015": 0.545, + "2016": 0.538, + "2017": 0.535, + "2018": 0.536, + "2019": 0.528, + "2020": 0.51, + "2021": 0.514 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr108", + "Region": "Basse", + "1990": 0.431, + "1991": 0.43, + "1992": 0.43, + "1993": 0.428, + "1994": 0.424, + "1995": 0.422, + "1996": 0.423, + "1997": 0.418, + "1998": 0.418, + "1999": 0.423, + "2000": 0.426, + "2001": 0.429, + "2002": 0.422, + "2003": 0.422, + "2004": 0.434, + "2005": 0.426, + "2006": 0.42, + "2007": 0.417, + "2008": 0.419, + "2009": 0.42, + "2010": 0.42, + "2011": 0.4, + "2012": 0.4, + "2013": 0.396, + "2014": 0.392, + "2015": 0.395, + "2016": 0.396, + "2017": 0.401, + "2018": 0.409, + "2019": 0.412, + "2020": 0.406, + "2021": 0.409 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr103", + "Region": "Brikama", + "1990": 0.434, + "1991": 0.433, + "1992": 0.433, + "1993": 0.431, + "1994": 0.427, + "1995": 0.424, + "1996": 0.426, + "1997": 0.421, + "1998": 0.421, + "1999": 0.426, + "2000": 0.429, + "2001": 0.435, + "2002": 0.431, + "2003": 0.434, + "2004": 0.449, + "2005": 0.444, + "2006": 0.441, + "2007": 0.446, + "2008": 0.456, + "2009": 0.465, + "2010": 0.474, + "2011": 0.46, + "2012": 0.468, + "2013": 0.472, + "2014": 0.464, + "2015": 0.465, + "2016": 0.464, + "2017": 0.466, + "2018": 0.472, + "2019": 0.479, + "2020": 0.476, + "2021": 0.48 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr107", + "Region": "Janjabureh", + "1990": 0.396, + "1991": 0.395, + "1992": 0.396, + "1993": 0.394, + "1994": 0.39, + "1995": 0.387, + "1996": 0.389, + "1997": 0.383, + "1998": 0.384, + "1999": 0.388, + "2000": 0.392, + "2001": 0.392, + "2002": 0.384, + "2003": 0.382, + "2004": 0.392, + "2005": 0.382, + "2006": 0.374, + "2007": 0.376, + "2008": 0.383, + "2009": 0.389, + "2010": 0.394, + "2011": 0.379, + "2012": 0.384, + "2013": 0.385, + "2014": 0.374, + "2015": 0.371, + "2016": 0.365, + "2017": 0.364, + "2018": 0.365, + "2019": 0.364, + "2020": 0.354, + "2021": 0.357 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr102", + "Region": "Kanifing", + "1990": 0.536, + "1991": 0.536, + "1992": 0.536, + "1993": 0.534, + "1994": 0.529, + "1995": 0.526, + "1996": 0.528, + "1997": 0.522, + "1998": 0.523, + "1999": 0.528, + "2000": 0.532, + "2001": 0.536, + "2002": 0.532, + "2003": 0.534, + "2004": 0.55, + "2005": 0.543, + "2006": 0.538, + "2007": 0.539, + "2008": 0.544, + "2009": 0.549, + "2010": 0.554, + "2011": 0.534, + "2012": 0.537, + "2013": 0.537, + "2014": 0.527, + "2015": 0.527, + "2016": 0.524, + "2017": 0.525, + "2018": 0.529, + "2019": 0.527, + "2020": 0.515, + "2021": 0.518 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr105", + "Region": "Kerewan", + "1990": 0.414, + "1991": 0.413, + "1992": 0.413, + "1993": 0.411, + "1994": 0.407, + "1995": 0.405, + "1996": 0.406, + "1997": 0.401, + "1998": 0.402, + "1999": 0.406, + "2000": 0.409, + "2001": 0.41, + "2002": 0.403, + "2003": 0.401, + "2004": 0.411, + "2005": 0.401, + "2006": 0.394, + "2007": 0.395, + "2008": 0.4, + "2009": 0.406, + "2010": 0.41, + "2011": 0.394, + "2012": 0.397, + "2013": 0.397, + "2014": 0.391, + "2015": 0.391, + "2016": 0.39, + "2017": 0.392, + "2018": 0.398, + "2019": 0.41, + "2020": 0.414, + "2021": 0.417 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr106", + "Region": "Kuntaur", + "1990": 0.388, + "1991": 0.388, + "1992": 0.388, + "1993": 0.386, + "1994": 0.382, + "1995": 0.38, + "1996": 0.381, + "1997": 0.376, + "1998": 0.376, + "1999": 0.381, + "2000": 0.384, + "2001": 0.386, + "2002": 0.38, + "2003": 0.38, + "2004": 0.391, + "2005": 0.383, + "2006": 0.377, + "2007": 0.375, + "2008": 0.376, + "2009": 0.378, + "2010": 0.378, + "2011": 0.359, + "2012": 0.358, + "2013": 0.355, + "2014": 0.346, + "2015": 0.344, + "2016": 0.341, + "2017": 0.34, + "2018": 0.343, + "2019": 0.35, + "2020": 0.348, + "2021": 0.351 + }, + { + "Country": "Gambia", + "Continent": "Africa", + "ISO_Code": "GMB", + "Level": "Subnat", + "GDLCODE": "GMBr104", + "Region": "Mansakonko", + "1990": 0.41, + "1991": 0.41, + "1992": 0.41, + "1993": 0.408, + "1994": 0.404, + "1995": 0.401, + "1996": 0.403, + "1997": 0.398, + "1998": 0.398, + "1999": 0.402, + "2000": 0.406, + "2001": 0.406, + "2002": 0.398, + "2003": 0.396, + "2004": 0.405, + "2005": 0.395, + "2006": 0.388, + "2007": 0.388, + "2008": 0.393, + "2009": 0.398, + "2010": 0.402, + "2011": 0.385, + "2012": 0.389, + "2013": 0.389, + "2014": 0.382, + "2015": 0.384, + "2016": 0.383, + "2017": 0.386, + "2018": 0.392, + "2019": 0.398, + "2020": 0.395, + "2021": 0.398 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "National", + "GDLCODE": "GEOt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.596, + "2001": 0.601, + "2002": 0.611, + "2003": 0.627, + "2004": 0.638, + "2005": 0.651, + "2006": 0.667, + "2007": 0.683, + "2008": 0.685, + "2009": 0.68, + "2010": 0.689, + "2011": 0.7, + "2012": 0.713, + "2013": 0.717, + "2014": 0.725, + "2015": 0.727, + "2016": 0.728, + "2017": 0.734, + "2018": 0.743, + "2019": 0.75, + "2020": 0.739, + "2021": 0.753 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr102", + "Region": "Ajaria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.618, + "2001": 0.623, + "2002": 0.633, + "2003": 0.649, + "2004": 0.66, + "2005": 0.674, + "2006": 0.69, + "2007": 0.706, + "2008": 0.707, + "2009": 0.702, + "2010": 0.711, + "2011": 0.722, + "2012": 0.735, + "2013": 0.739, + "2014": 0.746, + "2015": 0.749, + "2016": 0.749, + "2017": 0.755, + "2018": 0.764, + "2019": 0.771, + "2020": 0.76, + "2021": 0.774 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr103", + "Region": "Guria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.549, + "2001": 0.554, + "2002": 0.563, + "2003": 0.579, + "2004": 0.589, + "2005": 0.602, + "2006": 0.619, + "2007": 0.637, + "2008": 0.641, + "2009": 0.639, + "2010": 0.65, + "2011": 0.662, + "2012": 0.677, + "2013": 0.683, + "2014": 0.693, + "2015": 0.698, + "2016": 0.7, + "2017": 0.709, + "2018": 0.72, + "2019": 0.726, + "2020": 0.716, + "2021": 0.73 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr104", + "Region": "Imereti Racha-Lochkhumi Kvemo Svaneti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.579, + "2001": 0.584, + "2002": 0.593, + "2003": 0.609, + "2004": 0.62, + "2005": 0.633, + "2006": 0.65, + "2007": 0.666, + "2008": 0.669, + "2009": 0.666, + "2010": 0.676, + "2011": 0.687, + "2012": 0.701, + "2013": 0.706, + "2014": 0.714, + "2015": 0.718, + "2016": 0.72, + "2017": 0.727, + "2018": 0.737, + "2019": 0.743, + "2020": 0.732, + "2021": 0.747 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr105", + "Region": "Kakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.558, + "2001": 0.563, + "2002": 0.572, + "2003": 0.588, + "2004": 0.598, + "2005": 0.611, + "2006": 0.626, + "2007": 0.641, + "2008": 0.643, + "2009": 0.639, + "2010": 0.647, + "2011": 0.657, + "2012": 0.67, + "2013": 0.674, + "2014": 0.681, + "2015": 0.683, + "2016": 0.684, + "2017": 0.69, + "2018": 0.698, + "2019": 0.705, + "2020": 0.694, + "2021": 0.708 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr106", + "Region": "Kvemo Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.576, + "2001": 0.581, + "2002": 0.59, + "2003": 0.606, + "2004": 0.617, + "2005": 0.63, + "2006": 0.647, + "2007": 0.663, + "2008": 0.666, + "2009": 0.662, + "2010": 0.672, + "2011": 0.683, + "2012": 0.697, + "2013": 0.703, + "2014": 0.711, + "2015": 0.714, + "2016": 0.716, + "2017": 0.723, + "2018": 0.732, + "2019": 0.739, + "2020": 0.728, + "2021": 0.743 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr107", + "Region": "Mtskheta-Mtianeti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.582, + "2001": 0.587, + "2002": 0.597, + "2003": 0.613, + "2004": 0.623, + "2005": 0.637, + "2006": 0.652, + "2007": 0.667, + "2008": 0.669, + "2009": 0.664, + "2010": 0.672, + "2011": 0.682, + "2012": 0.695, + "2013": 0.699, + "2014": 0.706, + "2015": 0.708, + "2016": 0.708, + "2017": 0.714, + "2018": 0.723, + "2019": 0.729, + "2020": 0.719, + "2021": 0.733 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr108", + "Region": "Samegrelo-Zemo Svateni", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.543, + "2001": 0.548, + "2002": 0.557, + "2003": 0.573, + "2004": 0.583, + "2005": 0.596, + "2006": 0.613, + "2007": 0.629, + "2008": 0.633, + "2009": 0.63, + "2010": 0.64, + "2011": 0.651, + "2012": 0.666, + "2013": 0.671, + "2014": 0.68, + "2015": 0.684, + "2016": 0.686, + "2017": 0.694, + "2018": 0.704, + "2019": 0.71, + "2020": 0.7, + "2021": 0.714 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr109", + "Region": "Samtskhe-Javakheti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.568, + "2001": 0.573, + "2002": 0.583, + "2003": 0.598, + "2004": 0.609, + "2005": 0.622, + "2006": 0.638, + "2007": 0.654, + "2008": 0.657, + "2009": 0.653, + "2010": 0.663, + "2011": 0.674, + "2012": 0.687, + "2013": 0.692, + "2014": 0.7, + "2015": 0.703, + "2016": 0.705, + "2017": 0.712, + "2018": 0.721, + "2019": 0.727, + "2020": 0.717, + "2021": 0.731 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr110", + "Region": "Shida Kartli", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.545, + "2001": 0.55, + "2002": 0.559, + "2003": 0.575, + "2004": 0.585, + "2005": 0.598, + "2006": 0.615, + "2007": 0.632, + "2008": 0.636, + "2009": 0.633, + "2010": 0.644, + "2011": 0.655, + "2012": 0.67, + "2013": 0.676, + "2014": 0.685, + "2015": 0.69, + "2016": 0.692, + "2017": 0.7, + "2018": 0.711, + "2019": 0.717, + "2020": 0.707, + "2021": 0.721 + }, + { + "Country": "Georgia", + "Continent": "Europe", + "ISO_Code": "GEO", + "Level": "Subnat", + "GDLCODE": "GEOr111", + "Region": "Tbilisi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.673, + "2001": 0.678, + "2002": 0.688, + "2003": 0.705, + "2004": 0.716, + "2005": 0.731, + "2006": 0.744, + "2007": 0.757, + "2008": 0.755, + "2009": 0.746, + "2010": 0.752, + "2011": 0.759, + "2012": 0.769, + "2013": 0.77, + "2014": 0.774, + "2015": 0.773, + "2016": 0.769, + "2017": 0.772, + "2018": 0.778, + "2019": 0.784, + "2020": 0.773, + "2021": 0.788 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "National", + "GDLCODE": "DEUt", + "Region": "Total", + "1990": 0.892, + "1991": 0.896, + "1992": 0.899, + "1993": 0.898, + "1994": 0.9, + "1995": 0.903, + "1996": 0.904, + "1997": 0.905, + "1998": 0.909, + "1999": 0.911, + "2000": 0.914, + "2001": 0.916, + "2002": 0.916, + "2003": 0.915, + "2004": 0.919, + "2005": 0.92, + "2006": 0.926, + "2007": 0.931, + "2008": 0.931, + "2009": 0.926, + "2010": 0.931, + "2011": 0.939, + "2012": 0.939, + "2013": 0.94, + "2014": 0.943, + "2015": 0.945, + "2016": 0.949, + "2017": 0.951, + "2018": 0.953, + "2019": 0.955, + "2020": 0.948, + "2021": 0.952 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr101", + "Region": "Baden-Wurttemberg", + "1990": 0.914, + "1991": 0.918, + "1992": 0.921, + "1993": 0.92, + "1994": 0.922, + "1995": 0.925, + "1996": 0.926, + "1997": 0.927, + "1998": 0.931, + "1999": 0.934, + "2000": 0.936, + "2001": 0.94, + "2002": 0.938, + "2003": 0.938, + "2004": 0.94, + "2005": 0.94, + "2006": 0.949, + "2007": 0.954, + "2008": 0.953, + "2009": 0.943, + "2010": 0.952, + "2011": 0.961, + "2012": 0.961, + "2013": 0.962, + "2014": 0.964, + "2015": 0.968, + "2016": 0.969, + "2017": 0.973, + "2018": 0.975, + "2019": 0.975, + "2020": 0.968, + "2021": 0.972 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr102", + "Region": "Bayern", + "1990": 0.912, + "1991": 0.917, + "1992": 0.92, + "1993": 0.918, + "1994": 0.921, + "1995": 0.924, + "1996": 0.925, + "1997": 0.926, + "1998": 0.929, + "1999": 0.932, + "2000": 0.935, + "2001": 0.937, + "2002": 0.938, + "2003": 0.935, + "2004": 0.94, + "2005": 0.941, + "2006": 0.947, + "2007": 0.951, + "2008": 0.949, + "2009": 0.947, + "2010": 0.952, + "2011": 0.963, + "2012": 0.963, + "2013": 0.964, + "2014": 0.967, + "2015": 0.97, + "2016": 0.974, + "2017": 0.977, + "2018": 0.978, + "2019": 0.979, + "2020": 0.972, + "2021": 0.976 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr103", + "Region": "Berlin", + "1990": 0.892, + "1991": 0.896, + "1992": 0.899, + "1993": 0.898, + "1994": 0.9, + "1995": 0.903, + "1996": 0.904, + "1997": 0.905, + "1998": 0.909, + "1999": 0.911, + "2000": 0.914, + "2001": 0.913, + "2002": 0.911, + "2003": 0.909, + "2004": 0.91, + "2005": 0.912, + "2006": 0.918, + "2007": 0.921, + "2008": 0.925, + "2009": 0.926, + "2010": 0.929, + "2011": 0.935, + "2012": 0.933, + "2013": 0.932, + "2014": 0.935, + "2015": 0.939, + "2016": 0.946, + "2017": 0.949, + "2018": 0.953, + "2019": 0.958, + "2020": 0.951, + "2021": 0.955 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr104", + "Region": "Brandenburg", + "1990": 0.829, + "1991": 0.833, + "1992": 0.836, + "1993": 0.834, + "1994": 0.837, + "1995": 0.839, + "1996": 0.84, + "1997": 0.842, + "1998": 0.845, + "1999": 0.848, + "2000": 0.85, + "2001": 0.852, + "2002": 0.853, + "2003": 0.853, + "2004": 0.858, + "2005": 0.859, + "2006": 0.866, + "2007": 0.871, + "2008": 0.874, + "2009": 0.872, + "2010": 0.877, + "2011": 0.883, + "2012": 0.884, + "2013": 0.886, + "2014": 0.891, + "2015": 0.893, + "2016": 0.896, + "2017": 0.899, + "2018": 0.901, + "2019": 0.903, + "2020": 0.896, + "2021": 0.9 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr105", + "Region": "Bremen", + "1990": 0.934, + "1991": 0.938, + "1992": 0.942, + "1993": 0.94, + "1994": 0.943, + "1995": 0.945, + "1996": 0.946, + "1997": 0.948, + "1998": 0.951, + "1999": 0.954, + "2000": 0.957, + "2001": 0.96, + "2002": 0.962, + "2003": 0.964, + "2004": 0.966, + "2005": 0.967, + "2006": 0.974, + "2007": 0.976, + "2008": 0.975, + "2009": 0.962, + "2010": 0.968, + "2011": 0.974, + "2012": 0.977, + "2013": 0.976, + "2014": 0.977, + "2015": 0.978, + "2016": 0.98, + "2017": 0.981, + "2018": 0.981, + "2019": 0.982, + "2020": 0.975, + "2021": 0.979 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr106", + "Region": "Hamburg", + "1990": 0.983, + "1991": 0.988, + "1992": 0.991, + "1993": 0.989, + "1994": 0.992, + "1995": 0.995, + "1996": 0.996, + "1997": 0.998, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr107", + "Region": "Hessen", + "1990": 0.926, + "1991": 0.93, + "1992": 0.934, + "1993": 0.932, + "1994": 0.935, + "1995": 0.937, + "1996": 0.938, + "1997": 0.94, + "1998": 0.943, + "1999": 0.946, + "2000": 0.948, + "2001": 0.951, + "2002": 0.949, + "2003": 0.952, + "2004": 0.955, + "2005": 0.955, + "2006": 0.96, + "2007": 0.962, + "2008": 0.961, + "2009": 0.956, + "2010": 0.958, + "2011": 0.965, + "2012": 0.963, + "2013": 0.963, + "2014": 0.965, + "2015": 0.967, + "2016": 0.97, + "2017": 0.971, + "2018": 0.973, + "2019": 0.974, + "2020": 0.967, + "2021": 0.971 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr108", + "Region": "Mecklenburg-Vorpommern", + "1990": 0.821, + "1991": 0.826, + "1992": 0.829, + "1993": 0.827, + "1994": 0.83, + "1995": 0.832, + "1996": 0.833, + "1997": 0.834, + "1998": 0.837, + "1999": 0.84, + "2000": 0.842, + "2001": 0.844, + "2002": 0.845, + "2003": 0.846, + "2004": 0.849, + "2005": 0.85, + "2006": 0.855, + "2007": 0.862, + "2008": 0.864, + "2009": 0.865, + "2010": 0.868, + "2011": 0.876, + "2012": 0.875, + "2013": 0.878, + "2014": 0.883, + "2015": 0.884, + "2016": 0.886, + "2017": 0.894, + "2018": 0.895, + "2019": 0.899, + "2020": 0.892, + "2021": 0.896 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr109", + "Region": "Niedersachsen", + "1990": 0.876, + "1991": 0.88, + "1992": 0.884, + "1993": 0.882, + "1994": 0.884, + "1995": 0.887, + "1996": 0.888, + "1997": 0.889, + "1998": 0.893, + "1999": 0.895, + "2000": 0.898, + "2001": 0.898, + "2002": 0.895, + "2003": 0.894, + "2004": 0.899, + "2005": 0.902, + "2006": 0.909, + "2007": 0.913, + "2008": 0.914, + "2009": 0.909, + "2010": 0.916, + "2011": 0.926, + "2012": 0.926, + "2013": 0.925, + "2014": 0.929, + "2015": 0.928, + "2016": 0.937, + "2017": 0.938, + "2018": 0.941, + "2019": 0.943, + "2020": 0.936, + "2021": 0.94 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr110", + "Region": "Nordrhein-Westfalen", + "1990": 0.893, + "1991": 0.897, + "1992": 0.9, + "1993": 0.899, + "1994": 0.901, + "1995": 0.904, + "1996": 0.905, + "1997": 0.906, + "1998": 0.91, + "1999": 0.912, + "2000": 0.915, + "2001": 0.916, + "2002": 0.916, + "2003": 0.915, + "2004": 0.919, + "2005": 0.92, + "2006": 0.925, + "2007": 0.931, + "2008": 0.932, + "2009": 0.928, + "2010": 0.929, + "2011": 0.936, + "2012": 0.935, + "2013": 0.935, + "2014": 0.938, + "2015": 0.94, + "2016": 0.942, + "2017": 0.945, + "2018": 0.947, + "2019": 0.949, + "2020": 0.942, + "2021": 0.946 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr111", + "Region": "Rheinland-Pfalz", + "1990": 0.875, + "1991": 0.879, + "1992": 0.882, + "1993": 0.881, + "1994": 0.883, + "1995": 0.886, + "1996": 0.887, + "1997": 0.888, + "1998": 0.891, + "1999": 0.894, + "2000": 0.897, + "2001": 0.894, + "2002": 0.895, + "2003": 0.894, + "2004": 0.9, + "2005": 0.899, + "2006": 0.904, + "2007": 0.908, + "2008": 0.907, + "2009": 0.905, + "2010": 0.911, + "2011": 0.918, + "2012": 0.92, + "2013": 0.92, + "2014": 0.923, + "2015": 0.927, + "2016": 0.929, + "2017": 0.93, + "2018": 0.932, + "2019": 0.93, + "2020": 0.924, + "2021": 0.928 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr112", + "Region": "Saarland", + "1990": 0.879, + "1991": 0.884, + "1992": 0.887, + "1993": 0.885, + "1994": 0.888, + "1995": 0.89, + "1996": 0.891, + "1997": 0.893, + "1998": 0.896, + "1999": 0.899, + "2000": 0.901, + "2001": 0.903, + "2002": 0.901, + "2003": 0.901, + "2004": 0.909, + "2005": 0.916, + "2006": 0.923, + "2007": 0.928, + "2008": 0.928, + "2009": 0.915, + "2010": 0.921, + "2011": 0.931, + "2012": 0.929, + "2013": 0.926, + "2014": 0.931, + "2015": 0.933, + "2016": 0.933, + "2017": 0.935, + "2018": 0.935, + "2019": 0.936, + "2020": 0.929, + "2021": 0.933 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr113", + "Region": "Sachsen", + "1990": 0.828, + "1991": 0.832, + "1992": 0.835, + "1993": 0.833, + "1994": 0.836, + "1995": 0.838, + "1996": 0.839, + "1997": 0.841, + "1998": 0.844, + "1999": 0.847, + "2000": 0.849, + "2001": 0.853, + "2002": 0.858, + "2003": 0.861, + "2004": 0.867, + "2005": 0.866, + "2006": 0.874, + "2007": 0.879, + "2008": 0.879, + "2009": 0.877, + "2010": 0.881, + "2011": 0.89, + "2012": 0.89, + "2013": 0.892, + "2014": 0.897, + "2015": 0.901, + "2016": 0.904, + "2017": 0.908, + "2018": 0.91, + "2019": 0.912, + "2020": 0.906, + "2021": 0.91 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr114", + "Region": "Sachsen-Anhalt", + "1990": 0.818, + "1991": 0.823, + "1992": 0.826, + "1993": 0.824, + "1994": 0.827, + "1995": 0.829, + "1996": 0.83, + "1997": 0.831, + "1998": 0.835, + "1999": 0.837, + "2000": 0.84, + "2001": 0.842, + "2002": 0.847, + "2003": 0.849, + "2004": 0.854, + "2005": 0.855, + "2006": 0.863, + "2007": 0.869, + "2008": 0.87, + "2009": 0.866, + "2010": 0.873, + "2011": 0.878, + "2012": 0.883, + "2013": 0.884, + "2014": 0.886, + "2015": 0.888, + "2016": 0.892, + "2017": 0.894, + "2018": 0.896, + "2019": 0.899, + "2020": 0.892, + "2021": 0.896 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr115", + "Region": "Schleswig-Holstein", + "1990": 0.874, + "1991": 0.878, + "1992": 0.882, + "1993": 0.88, + "1994": 0.882, + "1995": 0.885, + "1996": 0.886, + "1997": 0.887, + "1998": 0.891, + "1999": 0.893, + "2000": 0.896, + "2001": 0.897, + "2002": 0.892, + "2003": 0.892, + "2004": 0.896, + "2005": 0.895, + "2006": 0.899, + "2007": 0.899, + "2008": 0.901, + "2009": 0.898, + "2010": 0.899, + "2011": 0.906, + "2012": 0.909, + "2013": 0.908, + "2014": 0.91, + "2015": 0.911, + "2016": 0.914, + "2017": 0.919, + "2018": 0.921, + "2019": 0.923, + "2020": 0.916, + "2021": 0.921 + }, + { + "Country": "Germany", + "Continent": "Europe", + "ISO_Code": "DEU", + "Level": "Subnat", + "GDLCODE": "DEUr116", + "Region": "Thuringen", + "1990": 0.819, + "1991": 0.824, + "1992": 0.827, + "1993": 0.825, + "1994": 0.828, + "1995": 0.83, + "1996": 0.831, + "1997": 0.832, + "1998": 0.836, + "1999": 0.838, + "2000": 0.841, + "2001": 0.844, + "2002": 0.846, + "2003": 0.849, + "2004": 0.854, + "2005": 0.854, + "2006": 0.862, + "2007": 0.866, + "2008": 0.867, + "2009": 0.863, + "2010": 0.871, + "2011": 0.881, + "2012": 0.881, + "2013": 0.886, + "2014": 0.891, + "2015": 0.894, + "2016": 0.897, + "2017": 0.9, + "2018": 0.901, + "2019": 0.904, + "2020": 0.897, + "2021": 0.901 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "National", + "GDLCODE": "GHAt", + "Region": "Total", + "1990": 0.478, + "1991": 0.481, + "1992": 0.483, + "1993": 0.485, + "1994": 0.486, + "1995": 0.488, + "1996": 0.491, + "1997": 0.493, + "1998": 0.496, + "1999": 0.499, + "2000": 0.5, + "2001": 0.505, + "2002": 0.508, + "2003": 0.512, + "2004": 0.516, + "2005": 0.523, + "2006": 0.526, + "2007": 0.529, + "2008": 0.539, + "2009": 0.542, + "2010": 0.548, + "2011": 0.562, + "2012": 0.568, + "2013": 0.579, + "2014": 0.576, + "2015": 0.58, + "2016": 0.58, + "2017": 0.587, + "2018": 0.593, + "2019": 0.6, + "2020": 0.608, + "2021": 0.612 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr106", + "Region": "Ashanti", + "1990": 0.485, + "1991": 0.489, + "1992": 0.49, + "1993": 0.493, + "1994": 0.493, + "1995": 0.495, + "1996": 0.498, + "1997": 0.5, + "1998": 0.503, + "1999": 0.507, + "2000": 0.51, + "2001": 0.515, + "2002": 0.52, + "2003": 0.525, + "2004": 0.531, + "2005": 0.541, + "2006": 0.547, + "2007": 0.55, + "2008": 0.56, + "2009": 0.561, + "2010": 0.565, + "2011": 0.577, + "2012": 0.585, + "2013": 0.598, + "2014": 0.597, + "2015": 0.598, + "2016": 0.597, + "2017": 0.602, + "2018": 0.609, + "2019": 0.616, + "2020": 0.624, + "2021": 0.628 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr107", + "Region": "Brong Ahafo", + "1990": 0.446, + "1991": 0.45, + "1992": 0.451, + "1993": 0.454, + "1994": 0.454, + "1995": 0.456, + "1996": 0.459, + "1997": 0.461, + "1998": 0.464, + "1999": 0.468, + "2000": 0.47, + "2001": 0.476, + "2002": 0.48, + "2003": 0.485, + "2004": 0.491, + "2005": 0.5, + "2006": 0.506, + "2007": 0.502, + "2008": 0.505, + "2009": 0.512, + "2010": 0.52, + "2011": 0.537, + "2012": 0.539, + "2013": 0.546, + "2014": 0.539, + "2015": 0.552, + "2016": 0.562, + "2017": 0.579, + "2018": 0.585, + "2019": 0.592, + "2020": 0.6, + "2021": 0.604 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr102", + "Region": "Central", + "1990": 0.468, + "1991": 0.472, + "1992": 0.473, + "1993": 0.475, + "1994": 0.476, + "1995": 0.478, + "1996": 0.481, + "1997": 0.483, + "1998": 0.486, + "1999": 0.485, + "2000": 0.483, + "2001": 0.484, + "2002": 0.483, + "2003": 0.484, + "2004": 0.486, + "2005": 0.491, + "2006": 0.494, + "2007": 0.507, + "2008": 0.527, + "2009": 0.529, + "2010": 0.533, + "2011": 0.545, + "2012": 0.554, + "2013": 0.567, + "2014": 0.566, + "2015": 0.57, + "2016": 0.57, + "2017": 0.577, + "2018": 0.583, + "2019": 0.59, + "2020": 0.598, + "2021": 0.602 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr105", + "Region": "Eastern", + "1990": 0.467, + "1991": 0.47, + "1992": 0.472, + "1993": 0.474, + "1994": 0.475, + "1995": 0.476, + "1996": 0.479, + "1997": 0.482, + "1998": 0.485, + "1999": 0.486, + "2000": 0.487, + "2001": 0.49, + "2002": 0.492, + "2003": 0.495, + "2004": 0.495, + "2005": 0.497, + "2006": 0.497, + "2007": 0.502, + "2008": 0.514, + "2009": 0.522, + "2010": 0.532, + "2011": 0.55, + "2012": 0.552, + "2013": 0.558, + "2014": 0.551, + "2015": 0.562, + "2016": 0.571, + "2017": 0.587, + "2018": 0.593, + "2019": 0.6, + "2020": 0.608, + "2021": 0.612 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr103", + "Region": "Greater Accra", + "1990": 0.585, + "1991": 0.589, + "1992": 0.591, + "1993": 0.593, + "1994": 0.594, + "1995": 0.596, + "1996": 0.599, + "1997": 0.602, + "1998": 0.605, + "1999": 0.609, + "2000": 0.611, + "2001": 0.617, + "2002": 0.621, + "2003": 0.627, + "2004": 0.629, + "2005": 0.635, + "2006": 0.637, + "2007": 0.634, + "2008": 0.638, + "2009": 0.635, + "2010": 0.635, + "2011": 0.644, + "2012": 0.646, + "2013": 0.653, + "2014": 0.645, + "2015": 0.645, + "2016": 0.642, + "2017": 0.646, + "2018": 0.652, + "2019": 0.659, + "2020": 0.668, + "2021": 0.672 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr108", + "Region": "Northern", + "1990": 0.44, + "1991": 0.443, + "1992": 0.445, + "1993": 0.447, + "1994": 0.447, + "1995": 0.449, + "1996": 0.452, + "1997": 0.454, + "1998": 0.457, + "1999": 0.459, + "2000": 0.46, + "2001": 0.463, + "2002": 0.465, + "2003": 0.468, + "2004": 0.473, + "2005": 0.48, + "2006": 0.484, + "2007": 0.475, + "2008": 0.474, + "2009": 0.482, + "2010": 0.493, + "2011": 0.512, + "2012": 0.516, + "2013": 0.524, + "2014": 0.519, + "2015": 0.529, + "2016": 0.537, + "2017": 0.551, + "2018": 0.557, + "2019": 0.564, + "2020": 0.572, + "2021": 0.576 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr110", + "Region": "Upper East", + "1990": 0.439, + "1991": 0.442, + "1992": 0.444, + "1993": 0.446, + "1994": 0.446, + "1995": 0.448, + "1996": 0.451, + "1997": 0.453, + "1998": 0.456, + "1999": 0.457, + "2000": 0.456, + "2001": 0.458, + "2002": 0.46, + "2003": 0.461, + "2004": 0.457, + "2005": 0.456, + "2006": 0.451, + "2007": 0.452, + "2008": 0.459, + "2009": 0.459, + "2010": 0.461, + "2011": 0.47, + "2012": 0.481, + "2013": 0.496, + "2014": 0.499, + "2015": 0.508, + "2016": 0.513, + "2017": 0.526, + "2018": 0.532, + "2019": 0.538, + "2020": 0.546, + "2021": 0.55 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr109", + "Region": "Upper West", + "1990": 0.431, + "1991": 0.434, + "1992": 0.436, + "1993": 0.438, + "1994": 0.438, + "1995": 0.44, + "1996": 0.443, + "1997": 0.445, + "1998": 0.448, + "1999": 0.448, + "2000": 0.447, + "2001": 0.449, + "2002": 0.449, + "2003": 0.451, + "2004": 0.453, + "2005": 0.458, + "2006": 0.461, + "2007": 0.467, + "2008": 0.48, + "2009": 0.479, + "2010": 0.481, + "2011": 0.49, + "2012": 0.499, + "2013": 0.511, + "2014": 0.51, + "2015": 0.517, + "2016": 0.521, + "2017": 0.532, + "2018": 0.538, + "2019": 0.544, + "2020": 0.552, + "2021": 0.556 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr104", + "Region": "Volta", + "1990": 0.432, + "1991": 0.436, + "1992": 0.437, + "1993": 0.439, + "1994": 0.44, + "1995": 0.442, + "1996": 0.445, + "1997": 0.447, + "1998": 0.45, + "1999": 0.453, + "2000": 0.455, + "2001": 0.461, + "2002": 0.465, + "2003": 0.469, + "2004": 0.472, + "2005": 0.477, + "2006": 0.479, + "2007": 0.486, + "2008": 0.5, + "2009": 0.5, + "2010": 0.502, + "2011": 0.512, + "2012": 0.521, + "2013": 0.533, + "2014": 0.533, + "2015": 0.538, + "2016": 0.541, + "2017": 0.55, + "2018": 0.557, + "2019": 0.563, + "2020": 0.571, + "2021": 0.575 + }, + { + "Country": "Ghana", + "Continent": "Africa", + "ISO_Code": "GHA", + "Level": "Subnat", + "GDLCODE": "GHAr101", + "Region": "Western", + "1990": 0.462, + "1991": 0.466, + "1992": 0.468, + "1993": 0.47, + "1994": 0.47, + "1995": 0.472, + "1996": 0.475, + "1997": 0.477, + "1998": 0.48, + "1999": 0.485, + "2000": 0.487, + "2001": 0.493, + "2002": 0.498, + "2003": 0.503, + "2004": 0.507, + "2005": 0.514, + "2006": 0.517, + "2007": 0.523, + "2008": 0.535, + "2009": 0.533, + "2010": 0.534, + "2011": 0.543, + "2012": 0.556, + "2013": 0.573, + "2014": 0.577, + "2015": 0.578, + "2016": 0.576, + "2017": 0.582, + "2018": 0.588, + "2019": 0.595, + "2020": 0.603, + "2021": 0.607 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "National", + "GDLCODE": "GRCt", + "Region": "Total", + "1990": 0.831, + "1991": 0.835, + "1992": 0.835, + "1993": 0.831, + "1994": 0.832, + "1995": 0.834, + "1996": 0.835, + "1997": 0.84, + "1998": 0.844, + "1999": 0.845, + "2000": 0.853, + "2001": 0.859, + "2002": 0.863, + "2003": 0.87, + "2004": 0.876, + "2005": 0.879, + "2006": 0.885, + "2007": 0.889, + "2008": 0.887, + "2009": 0.881, + "2010": 0.873, + "2011": 0.856, + "2012": 0.85, + "2013": 0.847, + "2014": 0.85, + "2015": 0.852, + "2016": 0.852, + "2017": 0.854, + "2018": 0.854, + "2019": 0.857, + "2020": 0.844, + "2021": 0.856 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr105", + "Region": "Anatoliki Makedonia, Thraki", + "1990": 0.79, + "1991": 0.793, + "1992": 0.793, + "1993": 0.789, + "1994": 0.79, + "1995": 0.792, + "1996": 0.793, + "1997": 0.798, + "1998": 0.802, + "1999": 0.803, + "2000": 0.811, + "2001": 0.815, + "2002": 0.817, + "2003": 0.821, + "2004": 0.824, + "2005": 0.827, + "2006": 0.824, + "2007": 0.831, + "2008": 0.833, + "2009": 0.828, + "2010": 0.826, + "2011": 0.803, + "2012": 0.797, + "2013": 0.789, + "2014": 0.791, + "2015": 0.792, + "2016": 0.795, + "2017": 0.793, + "2018": 0.793, + "2019": 0.795, + "2020": 0.782, + "2021": 0.795 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr101", + "Region": "Attiki", + "1990": 0.869, + "1991": 0.873, + "1992": 0.873, + "1993": 0.868, + "1994": 0.87, + "1995": 0.871, + "1996": 0.873, + "1997": 0.878, + "1998": 0.882, + "1999": 0.883, + "2000": 0.891, + "2001": 0.897, + "2002": 0.903, + "2003": 0.91, + "2004": 0.918, + "2005": 0.922, + "2006": 0.93, + "2007": 0.934, + "2008": 0.933, + "2009": 0.929, + "2010": 0.921, + "2011": 0.904, + "2012": 0.897, + "2013": 0.894, + "2014": 0.898, + "2015": 0.9, + "2016": 0.901, + "2017": 0.903, + "2018": 0.904, + "2019": 0.908, + "2020": 0.894, + "2021": 0.907 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr111", + "Region": "Dytiki Ellada", + "1990": 0.785, + "1991": 0.789, + "1992": 0.788, + "1993": 0.784, + "1994": 0.785, + "1995": 0.787, + "1996": 0.788, + "1997": 0.793, + "1998": 0.797, + "1999": 0.798, + "2000": 0.806, + "2001": 0.812, + "2002": 0.818, + "2003": 0.827, + "2004": 0.834, + "2005": 0.838, + "2006": 0.845, + "2007": 0.847, + "2008": 0.841, + "2009": 0.832, + "2010": 0.829, + "2011": 0.809, + "2012": 0.804, + "2013": 0.799, + "2014": 0.802, + "2015": 0.803, + "2016": 0.801, + "2017": 0.802, + "2018": 0.803, + "2019": 0.806, + "2020": 0.793, + "2021": 0.805 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr107", + "Region": "Dytiki Makedonia", + "1990": 0.809, + "1991": 0.813, + "1992": 0.813, + "1993": 0.808, + "1994": 0.81, + "1995": 0.811, + "1996": 0.813, + "1997": 0.817, + "1998": 0.821, + "1999": 0.823, + "2000": 0.83, + "2001": 0.837, + "2002": 0.846, + "2003": 0.856, + "2004": 0.859, + "2005": 0.865, + "2006": 0.863, + "2007": 0.858, + "2008": 0.844, + "2009": 0.85, + "2010": 0.854, + "2011": 0.849, + "2012": 0.866, + "2013": 0.862, + "2014": 0.865, + "2015": 0.86, + "2016": 0.849, + "2017": 0.848, + "2018": 0.84, + "2019": 0.827, + "2020": 0.814, + "2021": 0.827 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr110", + "Region": "Ionia Nisia", + "1990": 0.832, + "1991": 0.836, + "1992": 0.836, + "1993": 0.832, + "1994": 0.833, + "1995": 0.835, + "1996": 0.836, + "1997": 0.841, + "1998": 0.845, + "1999": 0.846, + "2000": 0.854, + "2001": 0.861, + "2002": 0.855, + "2003": 0.871, + "2004": 0.874, + "2005": 0.881, + "2006": 0.883, + "2007": 0.886, + "2008": 0.886, + "2009": 0.872, + "2010": 0.864, + "2011": 0.838, + "2012": 0.834, + "2013": 0.831, + "2014": 0.84, + "2015": 0.838, + "2016": 0.837, + "2017": 0.838, + "2018": 0.843, + "2019": 0.849, + "2020": 0.836, + "2021": 0.849 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr108", + "Region": "Ipeiros", + "1990": 0.788, + "1991": 0.792, + "1992": 0.792, + "1993": 0.787, + "1994": 0.789, + "1995": 0.79, + "1996": 0.792, + "1997": 0.796, + "1998": 0.8, + "1999": 0.802, + "2000": 0.809, + "2001": 0.815, + "2002": 0.821, + "2003": 0.828, + "2004": 0.825, + "2005": 0.828, + "2006": 0.829, + "2007": 0.83, + "2008": 0.827, + "2009": 0.82, + "2010": 0.819, + "2011": 0.803, + "2012": 0.795, + "2013": 0.795, + "2014": 0.798, + "2015": 0.798, + "2016": 0.799, + "2017": 0.798, + "2018": 0.799, + "2019": 0.8, + "2020": 0.788, + "2021": 0.8 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr106", + "Region": "Kentriki Makedonia", + "1990": 0.8, + "1991": 0.804, + "1992": 0.804, + "1993": 0.8, + "1994": 0.801, + "1995": 0.803, + "1996": 0.804, + "1997": 0.809, + "1998": 0.813, + "1999": 0.814, + "2000": 0.822, + "2001": 0.828, + "2002": 0.829, + "2003": 0.834, + "2004": 0.841, + "2005": 0.841, + "2006": 0.847, + "2007": 0.853, + "2008": 0.851, + "2009": 0.844, + "2010": 0.834, + "2011": 0.817, + "2012": 0.81, + "2013": 0.804, + "2014": 0.806, + "2015": 0.811, + "2016": 0.812, + "2017": 0.813, + "2018": 0.815, + "2019": 0.818, + "2020": 0.805, + "2021": 0.818 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr104", + "Region": "Kriti", + "1990": 0.817, + "1991": 0.821, + "1992": 0.821, + "1993": 0.816, + "1994": 0.818, + "1995": 0.819, + "1996": 0.821, + "1997": 0.825, + "1998": 0.83, + "1999": 0.831, + "2000": 0.839, + "2001": 0.845, + "2002": 0.848, + "2003": 0.854, + "2004": 0.862, + "2005": 0.863, + "2006": 0.866, + "2007": 0.866, + "2008": 0.866, + "2009": 0.858, + "2010": 0.85, + "2011": 0.827, + "2012": 0.817, + "2013": 0.817, + "2014": 0.826, + "2015": 0.828, + "2016": 0.825, + "2017": 0.828, + "2018": 0.829, + "2019": 0.832, + "2020": 0.819, + "2021": 0.831 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr103", + "Region": "Notio Aigaio", + "1990": 0.859, + "1991": 0.863, + "1992": 0.863, + "1993": 0.858, + "1994": 0.86, + "1995": 0.861, + "1996": 0.863, + "1997": 0.868, + "1998": 0.872, + "1999": 0.873, + "2000": 0.881, + "2001": 0.882, + "2002": 0.876, + "2003": 0.887, + "2004": 0.893, + "2005": 0.9, + "2006": 0.902, + "2007": 0.905, + "2008": 0.906, + "2009": 0.892, + "2010": 0.884, + "2011": 0.866, + "2012": 0.86, + "2013": 0.864, + "2014": 0.87, + "2015": 0.87, + "2016": 0.864, + "2017": 0.863, + "2018": 0.867, + "2019": 0.869, + "2020": 0.856, + "2021": 0.869 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr113", + "Region": "Peloponnisos", + "1990": 0.802, + "1991": 0.806, + "1992": 0.805, + "1993": 0.801, + "1994": 0.802, + "1995": 0.804, + "1996": 0.805, + "1997": 0.81, + "1998": 0.814, + "1999": 0.815, + "2000": 0.823, + "2001": 0.829, + "2002": 0.83, + "2003": 0.835, + "2004": 0.836, + "2005": 0.841, + "2006": 0.847, + "2007": 0.852, + "2008": 0.849, + "2009": 0.844, + "2010": 0.839, + "2011": 0.823, + "2012": 0.821, + "2013": 0.817, + "2014": 0.819, + "2015": 0.825, + "2016": 0.826, + "2017": 0.828, + "2018": 0.825, + "2019": 0.83, + "2020": 0.817, + "2021": 0.829 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr112", + "Region": "Sterea Ellada", + "1990": 0.842, + "1991": 0.846, + "1992": 0.846, + "1993": 0.841, + "1994": 0.842, + "1995": 0.844, + "1996": 0.845, + "1997": 0.85, + "1998": 0.854, + "1999": 0.856, + "2000": 0.864, + "2001": 0.868, + "2002": 0.865, + "2003": 0.871, + "2004": 0.869, + "2005": 0.874, + "2006": 0.872, + "2007": 0.872, + "2008": 0.87, + "2009": 0.859, + "2010": 0.854, + "2011": 0.838, + "2012": 0.834, + "2013": 0.829, + "2014": 0.829, + "2015": 0.833, + "2016": 0.836, + "2017": 0.839, + "2018": 0.837, + "2019": 0.84, + "2020": 0.827, + "2021": 0.84 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr109", + "Region": "Thessalia", + "1990": 0.79, + "1991": 0.793, + "1992": 0.793, + "1993": 0.789, + "1994": 0.79, + "1995": 0.792, + "1996": 0.793, + "1997": 0.798, + "1998": 0.802, + "1999": 0.803, + "2000": 0.811, + "2001": 0.818, + "2002": 0.822, + "2003": 0.837, + "2004": 0.839, + "2005": 0.835, + "2006": 0.842, + "2007": 0.843, + "2008": 0.841, + "2009": 0.833, + "2010": 0.82, + "2011": 0.802, + "2012": 0.801, + "2013": 0.799, + "2014": 0.803, + "2015": 0.807, + "2016": 0.806, + "2017": 0.807, + "2018": 0.809, + "2019": 0.813, + "2020": 0.8, + "2021": 0.813 + }, + { + "Country": "Greece", + "Continent": "Europe", + "ISO_Code": "GRC", + "Level": "Subnat", + "GDLCODE": "GRCr102", + "Region": "Voreio Aigaio", + "1990": 0.783, + "1991": 0.787, + "1992": 0.787, + "1993": 0.782, + "1994": 0.784, + "1995": 0.785, + "1996": 0.787, + "1997": 0.791, + "1998": 0.795, + "1999": 0.797, + "2000": 0.804, + "2001": 0.809, + "2002": 0.806, + "2003": 0.827, + "2004": 0.829, + "2005": 0.838, + "2006": 0.844, + "2007": 0.852, + "2008": 0.852, + "2009": 0.845, + "2010": 0.835, + "2011": 0.818, + "2012": 0.813, + "2013": 0.809, + "2014": 0.813, + "2015": 0.811, + "2016": 0.806, + "2017": 0.799, + "2018": 0.793, + "2019": 0.789, + "2020": 0.777, + "2021": 0.789 + }, + { + "Country": "Grenada", + "Continent": "America", + "ISO_Code": "GRD", + "Level": "National", + "GDLCODE": "GRDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.703, + "2003": 0.716, + "2004": 0.711, + "2005": 0.74, + "2006": 0.734, + "2007": 0.74, + "2008": 0.742, + "2009": 0.726, + "2010": 0.729, + "2011": 0.731, + "2012": 0.728, + "2013": 0.732, + "2014": 0.733, + "2015": 0.738, + "2016": 0.746, + "2017": 0.751, + "2018": 0.757, + "2019": 0.757, + "2020": 0.733, + "2021": 0.741 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "National", + "GDLCODE": "GTMt", + "Region": "Total", + "1990": 0.603, + "1991": 0.607, + "1992": 0.61, + "1993": 0.612, + "1994": 0.614, + "1995": 0.618, + "1996": 0.618, + "1997": 0.621, + "1998": 0.625, + "1999": 0.627, + "2000": 0.629, + "2001": 0.63, + "2002": 0.63, + "2003": 0.631, + "2004": 0.632, + "2005": 0.634, + "2006": 0.638, + "2007": 0.644, + "2008": 0.647, + "2009": 0.644, + "2010": 0.645, + "2011": 0.648, + "2012": 0.651, + "2013": 0.653, + "2014": 0.657, + "2015": 0.661, + "2016": 0.662, + "2017": 0.665, + "2018": 0.667, + "2019": 0.671, + "2020": 0.666, + "2021": 0.675 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr105", + "Region": "Central", + "1990": 0.614, + "1991": 0.617, + "1992": 0.62, + "1993": 0.623, + "1994": 0.625, + "1995": 0.628, + "1996": 0.629, + "1997": 0.632, + "1998": 0.637, + "1999": 0.639, + "2000": 0.639, + "2001": 0.638, + "2002": 0.636, + "2003": 0.635, + "2004": 0.634, + "2005": 0.634, + "2006": 0.636, + "2007": 0.64, + "2008": 0.642, + "2009": 0.637, + "2010": 0.636, + "2011": 0.637, + "2012": 0.638, + "2013": 0.652, + "2014": 0.666, + "2015": 0.681, + "2016": 0.682, + "2017": 0.685, + "2018": 0.687, + "2019": 0.691, + "2020": 0.686, + "2021": 0.695 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr101", + "Region": "Metropolitan", + "1990": 0.708, + "1991": 0.712, + "1992": 0.715, + "1993": 0.717, + "1994": 0.72, + "1995": 0.724, + "1996": 0.721, + "1997": 0.722, + "1998": 0.724, + "1999": 0.723, + "2000": 0.727, + "2001": 0.73, + "2002": 0.732, + "2003": 0.735, + "2004": 0.737, + "2005": 0.741, + "2006": 0.747, + "2007": 0.755, + "2008": 0.753, + "2009": 0.745, + "2010": 0.74, + "2011": 0.737, + "2012": 0.735, + "2013": 0.735, + "2014": 0.737, + "2015": 0.738, + "2016": 0.74, + "2017": 0.743, + "2018": 0.745, + "2019": 0.749, + "2020": 0.745, + "2021": 0.754 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr102", + "Region": "North", + "1990": 0.505, + "1991": 0.509, + "1992": 0.511, + "1993": 0.513, + "1994": 0.515, + "1995": 0.519, + "1996": 0.518, + "1997": 0.52, + "1998": 0.523, + "1999": 0.524, + "2000": 0.525, + "2001": 0.526, + "2002": 0.526, + "2003": 0.526, + "2004": 0.527, + "2005": 0.528, + "2006": 0.531, + "2007": 0.537, + "2008": 0.542, + "2009": 0.541, + "2010": 0.544, + "2011": 0.548, + "2012": 0.553, + "2013": 0.553, + "2014": 0.554, + "2015": 0.556, + "2016": 0.558, + "2017": 0.56, + "2018": 0.562, + "2019": 0.566, + "2020": 0.561, + "2021": 0.569 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr107", + "Region": "North-Occidental", + "1990": 0.515, + "1991": 0.518, + "1992": 0.521, + "1993": 0.523, + "1994": 0.525, + "1995": 0.529, + "1996": 0.526, + "1997": 0.526, + "1998": 0.527, + "1999": 0.526, + "2000": 0.531, + "2001": 0.536, + "2002": 0.54, + "2003": 0.544, + "2004": 0.549, + "2005": 0.554, + "2006": 0.561, + "2007": 0.57, + "2008": 0.58, + "2009": 0.584, + "2010": 0.591, + "2011": 0.601, + "2012": 0.61, + "2013": 0.61, + "2014": 0.612, + "2015": 0.614, + "2016": 0.615, + "2017": 0.618, + "2018": 0.62, + "2019": 0.624, + "2020": 0.619, + "2021": 0.628 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr103", + "Region": "North-Oriental", + "1990": 0.566, + "1991": 0.57, + "1992": 0.573, + "1993": 0.575, + "1994": 0.577, + "1995": 0.581, + "1996": 0.579, + "1997": 0.579, + "1998": 0.581, + "1999": 0.581, + "2000": 0.588, + "2001": 0.594, + "2002": 0.599, + "2003": 0.605, + "2004": 0.611, + "2005": 0.618, + "2006": 0.626, + "2007": 0.637, + "2008": 0.633, + "2009": 0.623, + "2010": 0.617, + "2011": 0.613, + "2012": 0.609, + "2013": 0.624, + "2014": 0.64, + "2015": 0.657, + "2016": 0.659, + "2017": 0.661, + "2018": 0.664, + "2019": 0.667, + "2020": 0.663, + "2021": 0.671 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr108", + "Region": "Peten", + "1990": 0.511, + "1991": 0.514, + "1992": 0.517, + "1993": 0.519, + "1994": 0.521, + "1995": 0.525, + "1996": 0.52, + "1997": 0.519, + "1998": 0.518, + "1999": 0.516, + "2000": 0.53, + "2001": 0.543, + "2002": 0.556, + "2003": 0.569, + "2004": 0.582, + "2005": 0.595, + "2006": 0.611, + "2007": 0.628, + "2008": 0.627, + "2009": 0.619, + "2010": 0.615, + "2011": 0.613, + "2012": 0.611, + "2013": 0.609, + "2014": 0.608, + "2015": 0.607, + "2016": 0.608, + "2017": 0.611, + "2018": 0.613, + "2019": 0.617, + "2020": 0.612, + "2021": 0.621 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr106", + "Region": "South-Occidental", + "1990": 0.557, + "1991": 0.56, + "1992": 0.563, + "1993": 0.565, + "1994": 0.568, + "1995": 0.571, + "1996": 0.573, + "1997": 0.579, + "1998": 0.586, + "1999": 0.59, + "2000": 0.593, + "2001": 0.595, + "2002": 0.597, + "2003": 0.599, + "2004": 0.601, + "2005": 0.604, + "2006": 0.609, + "2007": 0.616, + "2008": 0.626, + "2009": 0.631, + "2010": 0.638, + "2011": 0.648, + "2012": 0.658, + "2013": 0.656, + "2014": 0.656, + "2015": 0.655, + "2016": 0.657, + "2017": 0.659, + "2018": 0.662, + "2019": 0.665, + "2020": 0.661, + "2021": 0.669 + }, + { + "Country": "Guatemala", + "Continent": "America", + "ISO_Code": "GTM", + "Level": "Subnat", + "GDLCODE": "GTMr104", + "Region": "South-Oriental", + "1990": 0.54, + "1991": 0.544, + "1992": 0.547, + "1993": 0.549, + "1994": 0.551, + "1995": 0.554, + "1996": 0.566, + "1997": 0.58, + "1998": 0.595, + "1999": 0.608, + "2000": 0.609, + "2001": 0.61, + "2002": 0.61, + "2003": 0.611, + "2004": 0.612, + "2005": 0.614, + "2006": 0.618, + "2007": 0.623, + "2008": 0.625, + "2009": 0.62, + "2010": 0.619, + "2011": 0.62, + "2012": 0.621, + "2013": 0.63, + "2014": 0.64, + "2015": 0.65, + "2016": 0.652, + "2017": 0.654, + "2018": 0.657, + "2019": 0.661, + "2020": 0.656, + "2021": 0.665 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "National", + "GDLCODE": "GINt", + "Region": "Total", + "1990": 0.399, + "1991": 0.399, + "1992": 0.401, + "1993": 0.407, + "1994": 0.41, + "1995": 0.413, + "1996": 0.416, + "1997": 0.419, + "1998": 0.421, + "1999": 0.426, + "2000": 0.426, + "2001": 0.428, + "2002": 0.435, + "2003": 0.438, + "2004": 0.438, + "2005": 0.439, + "2006": 0.433, + "2007": 0.44, + "2008": 0.442, + "2009": 0.435, + "2010": 0.441, + "2011": 0.444, + "2012": 0.45, + "2013": 0.447, + "2014": 0.452, + "2015": 0.457, + "2016": 0.468, + "2017": 0.48, + "2018": 0.481, + "2019": 0.482, + "2020": 0.483, + "2021": 0.485 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr101", + "Region": "Boke", + "1990": 0.376, + "1991": 0.375, + "1992": 0.378, + "1993": 0.384, + "1994": 0.386, + "1995": 0.389, + "1996": 0.393, + "1997": 0.395, + "1998": 0.397, + "1999": 0.402, + "2000": 0.403, + "2001": 0.404, + "2002": 0.411, + "2003": 0.414, + "2004": 0.413, + "2005": 0.415, + "2006": 0.412, + "2007": 0.422, + "2008": 0.427, + "2009": 0.423, + "2010": 0.431, + "2011": 0.438, + "2012": 0.446, + "2013": 0.442, + "2014": 0.446, + "2015": 0.449, + "2016": 0.459, + "2017": 0.47, + "2018": 0.469, + "2019": 0.471, + "2020": 0.471, + "2021": 0.474 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr102", + "Region": "Conakry", + "1990": 0.564, + "1991": 0.564, + "1992": 0.567, + "1993": 0.574, + "1994": 0.577, + "1995": 0.58, + "1996": 0.584, + "1997": 0.587, + "1998": 0.59, + "1999": 0.595, + "2000": 0.596, + "2001": 0.597, + "2002": 0.606, + "2003": 0.609, + "2004": 0.609, + "2005": 0.61, + "2006": 0.604, + "2007": 0.612, + "2008": 0.614, + "2009": 0.606, + "2010": 0.613, + "2011": 0.617, + "2012": 0.624, + "2013": 0.617, + "2014": 0.619, + "2015": 0.621, + "2016": 0.63, + "2017": 0.641, + "2018": 0.638, + "2019": 0.64, + "2020": 0.64, + "2021": 0.643 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr103", + "Region": "Faranah", + "1990": 0.364, + "1991": 0.363, + "1992": 0.366, + "1993": 0.372, + "1994": 0.374, + "1995": 0.377, + "1996": 0.38, + "1997": 0.383, + "1998": 0.385, + "1999": 0.39, + "2000": 0.39, + "2001": 0.391, + "2002": 0.399, + "2003": 0.401, + "2004": 0.401, + "2005": 0.402, + "2006": 0.393, + "2007": 0.396, + "2008": 0.395, + "2009": 0.386, + "2010": 0.388, + "2011": 0.388, + "2012": 0.391, + "2013": 0.391, + "2014": 0.398, + "2015": 0.404, + "2016": 0.418, + "2017": 0.432, + "2018": 0.435, + "2019": 0.437, + "2020": 0.437, + "2021": 0.439 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr104", + "Region": "Kankan", + "1990": 0.377, + "1991": 0.377, + "1992": 0.38, + "1993": 0.386, + "1994": 0.388, + "1995": 0.391, + "1996": 0.394, + "1997": 0.397, + "1998": 0.399, + "1999": 0.404, + "2000": 0.404, + "2001": 0.406, + "2002": 0.413, + "2003": 0.415, + "2004": 0.415, + "2005": 0.416, + "2006": 0.41, + "2007": 0.415, + "2008": 0.417, + "2009": 0.409, + "2010": 0.413, + "2011": 0.416, + "2012": 0.421, + "2013": 0.422, + "2014": 0.43, + "2015": 0.439, + "2016": 0.454, + "2017": 0.47, + "2018": 0.474, + "2019": 0.476, + "2020": 0.476, + "2021": 0.479 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr105", + "Region": "Kindia", + "1990": 0.384, + "1991": 0.384, + "1992": 0.387, + "1993": 0.393, + "1994": 0.395, + "1995": 0.398, + "1996": 0.401, + "1997": 0.404, + "1998": 0.406, + "1999": 0.411, + "2000": 0.411, + "2001": 0.413, + "2002": 0.42, + "2003": 0.423, + "2004": 0.422, + "2005": 0.424, + "2006": 0.418, + "2007": 0.424, + "2008": 0.425, + "2009": 0.418, + "2010": 0.423, + "2011": 0.426, + "2012": 0.432, + "2013": 0.431, + "2014": 0.437, + "2015": 0.444, + "2016": 0.457, + "2017": 0.471, + "2018": 0.473, + "2019": 0.475, + "2020": 0.475, + "2021": 0.478 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr106", + "Region": "Labe", + "1990": 0.365, + "1991": 0.365, + "1992": 0.367, + "1993": 0.373, + "1994": 0.376, + "1995": 0.379, + "1996": 0.382, + "1997": 0.385, + "1998": 0.387, + "1999": 0.391, + "2000": 0.392, + "2001": 0.393, + "2002": 0.401, + "2003": 0.403, + "2004": 0.403, + "2005": 0.404, + "2006": 0.395, + "2007": 0.398, + "2008": 0.396, + "2009": 0.386, + "2010": 0.388, + "2011": 0.388, + "2012": 0.39, + "2013": 0.388, + "2014": 0.393, + "2015": 0.398, + "2016": 0.41, + "2017": 0.422, + "2018": 0.423, + "2019": 0.425, + "2020": 0.425, + "2021": 0.428 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr107", + "Region": "Mamou", + "1990": 0.367, + "1991": 0.367, + "1992": 0.369, + "1993": 0.375, + "1994": 0.378, + "1995": 0.38, + "1996": 0.384, + "1997": 0.386, + "1998": 0.389, + "1999": 0.393, + "2000": 0.394, + "2001": 0.395, + "2002": 0.402, + "2003": 0.405, + "2004": 0.404, + "2005": 0.406, + "2006": 0.398, + "2007": 0.402, + "2008": 0.402, + "2009": 0.393, + "2010": 0.396, + "2011": 0.397, + "2012": 0.4, + "2013": 0.402, + "2014": 0.41, + "2015": 0.418, + "2016": 0.433, + "2017": 0.448, + "2018": 0.452, + "2019": 0.454, + "2020": 0.454, + "2021": 0.457 + }, + { + "Country": "Guinea", + "Continent": "Africa", + "ISO_Code": "GIN", + "Level": "Subnat", + "GDLCODE": "GINr108", + "Region": "N Zerekore", + "1990": 0.365, + "1991": 0.365, + "1992": 0.367, + "1993": 0.373, + "1994": 0.376, + "1995": 0.378, + "1996": 0.382, + "1997": 0.384, + "1998": 0.386, + "1999": 0.391, + "2000": 0.392, + "2001": 0.393, + "2002": 0.4, + "2003": 0.402, + "2004": 0.402, + "2005": 0.404, + "2006": 0.396, + "2007": 0.4, + "2008": 0.399, + "2009": 0.39, + "2010": 0.393, + "2011": 0.395, + "2012": 0.398, + "2013": 0.395, + "2014": 0.399, + "2015": 0.402, + "2016": 0.413, + "2017": 0.424, + "2018": 0.424, + "2019": 0.425, + "2020": 0.425, + "2021": 0.428 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "National", + "GDLCODE": "GNBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.423, + "2006": 0.424, + "2007": 0.426, + "2008": 0.425, + "2009": 0.427, + "2010": 0.431, + "2011": 0.441, + "2012": 0.434, + "2013": 0.431, + "2014": 0.437, + "2015": 0.441, + "2016": 0.446, + "2017": 0.447, + "2018": 0.439, + "2019": 0.451, + "2020": 0.443, + "2021": 0.445 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr106", + "Region": "Bafata", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.398, + "2006": 0.4, + "2007": 0.401, + "2008": 0.399, + "2009": 0.4, + "2010": 0.403, + "2011": 0.412, + "2012": 0.404, + "2013": 0.401, + "2014": 0.406, + "2015": 0.413, + "2016": 0.422, + "2017": 0.427, + "2018": 0.423, + "2019": 0.438, + "2020": 0.43, + "2021": 0.433 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr104", + "Region": "Biombo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.37, + "2006": 0.372, + "2007": 0.374, + "2008": 0.374, + "2009": 0.376, + "2010": 0.38, + "2011": 0.389, + "2012": 0.383, + "2013": 0.381, + "2014": 0.387, + "2015": 0.394, + "2016": 0.402, + "2017": 0.407, + "2018": 0.402, + "2019": 0.417, + "2020": 0.41, + "2021": 0.412 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr109", + "Region": "Bissau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.531, + "2006": 0.533, + "2007": 0.531, + "2008": 0.527, + "2009": 0.525, + "2010": 0.526, + "2011": 0.532, + "2012": 0.522, + "2013": 0.515, + "2014": 0.517, + "2015": 0.526, + "2016": 0.536, + "2017": 0.542, + "2018": 0.538, + "2019": 0.556, + "2020": 0.547, + "2021": 0.549 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr105", + "Region": "Bolama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.373, + "2006": 0.375, + "2007": 0.375, + "2008": 0.373, + "2009": 0.373, + "2010": 0.376, + "2011": 0.383, + "2012": 0.376, + "2013": 0.371, + "2014": 0.375, + "2015": 0.376, + "2016": 0.378, + "2017": 0.376, + "2018": 0.366, + "2019": 0.374, + "2020": 0.367, + "2021": 0.369 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr108", + "Region": "Cacheu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.396, + "2006": 0.397, + "2007": 0.399, + "2008": 0.398, + "2009": 0.399, + "2010": 0.402, + "2011": 0.411, + "2012": 0.404, + "2013": 0.401, + "2014": 0.406, + "2015": 0.408, + "2016": 0.412, + "2017": 0.411, + "2018": 0.402, + "2019": 0.412, + "2020": 0.404, + "2021": 0.406 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr107", + "Region": "Gabu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.397, + "2006": 0.398, + "2007": 0.399, + "2008": 0.399, + "2009": 0.4, + "2010": 0.404, + "2011": 0.413, + "2012": 0.406, + "2013": 0.403, + "2014": 0.408, + "2015": 0.413, + "2016": 0.419, + "2017": 0.422, + "2018": 0.415, + "2019": 0.428, + "2020": 0.42, + "2021": 0.423 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr103", + "Region": "Oio", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.37, + "2006": 0.371, + "2007": 0.374, + "2008": 0.374, + "2009": 0.377, + "2010": 0.381, + "2011": 0.391, + "2012": 0.386, + "2013": 0.384, + "2014": 0.39, + "2015": 0.395, + "2016": 0.401, + "2017": 0.402, + "2018": 0.396, + "2019": 0.408, + "2020": 0.4, + "2021": 0.402 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr102", + "Region": "Quinara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.383, + "2006": 0.384, + "2007": 0.386, + "2008": 0.386, + "2009": 0.388, + "2010": 0.392, + "2011": 0.401, + "2012": 0.395, + "2013": 0.392, + "2014": 0.398, + "2015": 0.4, + "2016": 0.404, + "2017": 0.403, + "2018": 0.395, + "2019": 0.405, + "2020": 0.397, + "2021": 0.399 + }, + { + "Country": "Guinea Bissau", + "Continent": "Africa", + "ISO_Code": "GNB", + "Level": "Subnat", + "GDLCODE": "GNBr101", + "Region": "Tombali", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.38, + "2006": 0.381, + "2007": 0.384, + "2008": 0.384, + "2009": 0.386, + "2010": 0.391, + "2011": 0.401, + "2012": 0.396, + "2013": 0.394, + "2014": 0.4, + "2015": 0.401, + "2016": 0.404, + "2017": 0.403, + "2018": 0.393, + "2019": 0.402, + "2020": 0.394, + "2021": 0.396 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "National", + "GDLCODE": "GUYt", + "Region": "Total", + "1990": 0.456, + "1991": 0.438, + "1992": 0.47, + "1993": 0.5, + "1994": 0.52, + "1995": 0.53, + "1996": 0.552, + "1997": 0.558, + "1998": 0.559, + "1999": 0.561, + "2000": 0.563, + "2001": 0.577, + "2002": 0.591, + "2003": 0.604, + "2004": 0.624, + "2005": 0.636, + "2006": 0.655, + "2007": 0.667, + "2008": 0.671, + "2009": 0.676, + "2010": 0.684, + "2011": 0.69, + "2012": 0.698, + "2013": 0.701, + "2014": 0.711, + "2015": 0.71, + "2016": 0.72, + "2017": 0.723, + "2018": 0.73, + "2019": 0.742, + "2020": 0.791, + "2021": 0.818 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr101", + "Region": "Barima-Waini", + "1990": 0.299, + "1991": 0.283, + "1992": 0.311, + "1993": 0.336, + "1994": 0.354, + "1995": 0.362, + "1996": 0.381, + "1997": 0.386, + "1998": 0.388, + "1999": 0.389, + "2000": 0.391, + "2001": 0.403, + "2002": 0.415, + "2003": 0.427, + "2004": 0.444, + "2005": 0.454, + "2006": 0.47, + "2007": 0.492, + "2008": 0.507, + "2009": 0.522, + "2010": 0.535, + "2011": 0.547, + "2012": 0.559, + "2013": 0.568, + "2014": 0.584, + "2015": 0.582, + "2016": 0.59, + "2017": 0.591, + "2018": 0.597, + "2019": 0.607, + "2020": 0.651, + "2021": 0.675 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr107", + "Region": "Cuyuni-Mazaruni", + "1990": 0.359, + "1991": 0.343, + "1992": 0.372, + "1993": 0.399, + "1994": 0.418, + "1995": 0.426, + "1996": 0.447, + "1997": 0.452, + "1998": 0.453, + "1999": 0.455, + "2000": 0.457, + "2001": 0.47, + "2002": 0.482, + "2003": 0.495, + "2004": 0.513, + "2005": 0.524, + "2006": 0.541, + "2007": 0.557, + "2008": 0.567, + "2009": 0.577, + "2010": 0.588, + "2011": 0.597, + "2012": 0.607, + "2013": 0.614, + "2014": 0.627, + "2015": 0.625, + "2016": 0.634, + "2017": 0.636, + "2018": 0.643, + "2019": 0.653, + "2020": 0.699, + "2021": 0.724 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr104", + "Region": "Demerara-Mahaica", + "1990": 0.489, + "1991": 0.471, + "1992": 0.503, + "1993": 0.534, + "1994": 0.555, + "1995": 0.564, + "1996": 0.587, + "1997": 0.593, + "1998": 0.595, + "1999": 0.597, + "2000": 0.598, + "2001": 0.613, + "2002": 0.627, + "2003": 0.641, + "2004": 0.661, + "2005": 0.673, + "2006": 0.693, + "2007": 0.703, + "2008": 0.706, + "2009": 0.709, + "2010": 0.715, + "2011": 0.719, + "2012": 0.725, + "2013": 0.727, + "2014": 0.736, + "2015": 0.733, + "2016": 0.741, + "2017": 0.742, + "2018": 0.747, + "2019": 0.757, + "2020": 0.806, + "2021": 0.834 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr106", + "Region": "East Berbice-Corentyne", + "1990": 0.46, + "1991": 0.442, + "1992": 0.474, + "1993": 0.504, + "1994": 0.524, + "1995": 0.533, + "1996": 0.556, + "1997": 0.562, + "1998": 0.563, + "1999": 0.565, + "2000": 0.567, + "2001": 0.581, + "2002": 0.595, + "2003": 0.608, + "2004": 0.628, + "2005": 0.64, + "2006": 0.659, + "2007": 0.677, + "2008": 0.687, + "2009": 0.699, + "2010": 0.703, + "2011": 0.705, + "2012": 0.709, + "2013": 0.709, + "2014": 0.715, + "2015": 0.714, + "2016": 0.724, + "2017": 0.727, + "2018": 0.734, + "2019": 0.746, + "2020": 0.795, + "2021": 0.822 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr103", + "Region": "Essequibo Islands-West Demerara", + "1990": 0.448, + "1991": 0.43, + "1992": 0.462, + "1993": 0.491, + "1994": 0.511, + "1995": 0.521, + "1996": 0.543, + "1997": 0.549, + "1998": 0.55, + "1999": 0.552, + "2000": 0.554, + "2001": 0.568, + "2002": 0.581, + "2003": 0.595, + "2004": 0.614, + "2005": 0.626, + "2006": 0.645, + "2007": 0.657, + "2008": 0.662, + "2009": 0.667, + "2010": 0.678, + "2011": 0.686, + "2012": 0.696, + "2013": 0.702, + "2014": 0.714, + "2015": 0.717, + "2016": 0.73, + "2017": 0.737, + "2018": 0.748, + "2019": 0.763, + "2020": 0.813, + "2021": 0.84 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr105", + "Region": "Mahaica-Berbice", + "1990": 0.463, + "1991": 0.446, + "1992": 0.477, + "1993": 0.507, + "1994": 0.528, + "1995": 0.537, + "1996": 0.56, + "1997": 0.566, + "1998": 0.567, + "1999": 0.569, + "2000": 0.571, + "2001": 0.585, + "2002": 0.599, + "2003": 0.612, + "2004": 0.632, + "2005": 0.644, + "2006": 0.663, + "2007": 0.672, + "2008": 0.672, + "2009": 0.674, + "2010": 0.68, + "2011": 0.685, + "2012": 0.691, + "2013": 0.693, + "2014": 0.702, + "2015": 0.703, + "2016": 0.714, + "2017": 0.719, + "2018": 0.728, + "2019": 0.741, + "2020": 0.79, + "2021": 0.817 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr102", + "Region": "Pomeroon-Supenaam", + "1990": 0.401, + "1991": 0.384, + "1992": 0.414, + "1993": 0.442, + "1994": 0.462, + "1995": 0.47, + "1996": 0.492, + "1997": 0.497, + "1998": 0.499, + "1999": 0.5, + "2000": 0.502, + "2001": 0.516, + "2002": 0.528, + "2003": 0.541, + "2004": 0.56, + "2005": 0.571, + "2006": 0.59, + "2007": 0.604, + "2008": 0.611, + "2009": 0.618, + "2010": 0.629, + "2011": 0.637, + "2012": 0.648, + "2013": 0.654, + "2014": 0.667, + "2015": 0.666, + "2016": 0.677, + "2017": 0.681, + "2018": 0.688, + "2019": 0.701, + "2020": 0.748, + "2021": 0.774 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr108", + "Region": "Potaro-Siparuni", + "1990": 0.25, + "1991": 0.235, + "1992": 0.261, + "1993": 0.286, + "1994": 0.302, + "1995": 0.31, + "1996": 0.328, + "1997": 0.333, + "1998": 0.334, + "1999": 0.336, + "2000": 0.337, + "2001": 0.349, + "2002": 0.36, + "2003": 0.371, + "2004": 0.388, + "2005": 0.397, + "2006": 0.413, + "2007": 0.449, + "2008": 0.478, + "2009": 0.509, + "2010": 0.502, + "2011": 0.493, + "2012": 0.486, + "2013": 0.475, + "2014": 0.47, + "2015": 0.488, + "2016": 0.514, + "2017": 0.536, + "2018": 0.561, + "2019": 0.591, + "2020": 0.635, + "2021": 0.659 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr110", + "Region": "Upper Demerara-Berbice", + "1990": 0.466, + "1991": 0.448, + "1992": 0.48, + "1993": 0.51, + "1994": 0.531, + "1995": 0.54, + "1996": 0.563, + "1997": 0.569, + "1998": 0.57, + "1999": 0.572, + "2000": 0.574, + "2001": 0.588, + "2002": 0.602, + "2003": 0.615, + "2004": 0.636, + "2005": 0.647, + "2006": 0.666, + "2007": 0.682, + "2008": 0.69, + "2009": 0.698, + "2010": 0.703, + "2011": 0.705, + "2012": 0.71, + "2013": 0.71, + "2014": 0.717, + "2015": 0.719, + "2016": 0.732, + "2017": 0.739, + "2018": 0.75, + "2019": 0.765, + "2020": 0.814, + "2021": 0.842 + }, + { + "Country": "Guyana", + "Continent": "America", + "ISO_Code": "GUY", + "Level": "Subnat", + "GDLCODE": "GUYr109", + "Region": "Upper Takutu-Upper Essequibo", + "1990": 0.285, + "1991": 0.27, + "1992": 0.297, + "1993": 0.322, + "1994": 0.339, + "1995": 0.347, + "1996": 0.366, + "1997": 0.371, + "1998": 0.372, + "1999": 0.374, + "2000": 0.376, + "2001": 0.388, + "2002": 0.399, + "2003": 0.411, + "2004": 0.428, + "2005": 0.438, + "2006": 0.454, + "2007": 0.469, + "2008": 0.478, + "2009": 0.487, + "2010": 0.492, + "2011": 0.496, + "2012": 0.501, + "2013": 0.502, + "2014": 0.51, + "2015": 0.52, + "2016": 0.539, + "2017": 0.552, + "2018": 0.57, + "2019": 0.592, + "2020": 0.635, + "2021": 0.659 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "National", + "GDLCODE": "HTIt", + "Region": "Total", + "1990": 0.538, + "1991": 0.538, + "1992": 0.527, + "1993": 0.516, + "1994": 0.494, + "1995": 0.506, + "1996": 0.509, + "1997": 0.511, + "1998": 0.511, + "1999": 0.512, + "2000": 0.511, + "2001": 0.508, + "2002": 0.506, + "2003": 0.509, + "2004": 0.505, + "2005": 0.506, + "2006": 0.508, + "2007": 0.512, + "2008": 0.514, + "2009": 0.52, + "2010": 0.509, + "2011": 0.514, + "2012": 0.513, + "2013": 0.517, + "2014": 0.518, + "2015": 0.519, + "2016": 0.52, + "2017": 0.522, + "2018": 0.522, + "2019": 0.518, + "2020": 0.511, + "2021": 0.506 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr105", + "Region": "Artibonite", + "1990": 0.478, + "1991": 0.478, + "1992": 0.467, + "1993": 0.457, + "1994": 0.436, + "1995": 0.448, + "1996": 0.453, + "1997": 0.455, + "1998": 0.456, + "1999": 0.458, + "2000": 0.457, + "2001": 0.457, + "2002": 0.458, + "2003": 0.462, + "2004": 0.46, + "2005": 0.464, + "2006": 0.466, + "2007": 0.471, + "2008": 0.474, + "2009": 0.481, + "2010": 0.471, + "2011": 0.478, + "2012": 0.477, + "2013": 0.48, + "2014": 0.48, + "2015": 0.481, + "2016": 0.481, + "2017": 0.481, + "2018": 0.482, + "2019": 0.478, + "2020": 0.471, + "2021": 0.466 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr106", + "Region": "Centre", + "1990": 0.458, + "1991": 0.458, + "1992": 0.447, + "1993": 0.437, + "1994": 0.417, + "1995": 0.432, + "1996": 0.44, + "1997": 0.446, + "1998": 0.451, + "1999": 0.457, + "2000": 0.46, + "2001": 0.452, + "2002": 0.447, + "2003": 0.445, + "2004": 0.436, + "2005": 0.433, + "2006": 0.435, + "2007": 0.44, + "2008": 0.442, + "2009": 0.449, + "2010": 0.439, + "2011": 0.445, + "2012": 0.445, + "2013": 0.451, + "2014": 0.454, + "2015": 0.458, + "2016": 0.461, + "2017": 0.465, + "2018": 0.465, + "2019": 0.461, + "2020": 0.454, + "2021": 0.45 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr108", + "Region": "Grande-Anse, Nippes", + "1990": 0.47, + "1991": 0.47, + "1992": 0.459, + "1993": 0.449, + "1994": 0.428, + "1995": 0.441, + "1996": 0.447, + "1997": 0.449, + "1998": 0.452, + "1999": 0.455, + "2000": 0.455, + "2001": 0.452, + "2002": 0.45, + "2003": 0.452, + "2004": 0.448, + "2005": 0.449, + "2006": 0.45, + "2007": 0.455, + "2008": 0.456, + "2009": 0.462, + "2010": 0.452, + "2011": 0.457, + "2012": 0.456, + "2013": 0.459, + "2014": 0.458, + "2015": 0.458, + "2016": 0.458, + "2017": 0.458, + "2018": 0.459, + "2019": 0.455, + "2020": 0.448, + "2021": 0.443 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr103", + "Region": "North", + "1990": 0.491, + "1991": 0.491, + "1992": 0.48, + "1993": 0.469, + "1994": 0.448, + "1995": 0.463, + "1996": 0.469, + "1997": 0.473, + "1998": 0.476, + "1999": 0.48, + "2000": 0.481, + "2001": 0.48, + "2002": 0.481, + "2003": 0.485, + "2004": 0.483, + "2005": 0.487, + "2006": 0.492, + "2007": 0.5, + "2008": 0.506, + "2009": 0.516, + "2010": 0.509, + "2011": 0.518, + "2012": 0.52, + "2013": 0.523, + "2014": 0.523, + "2015": 0.524, + "2016": 0.524, + "2017": 0.525, + "2018": 0.526, + "2019": 0.521, + "2020": 0.514, + "2021": 0.509 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr104", + "Region": "North-East", + "1990": 0.48, + "1991": 0.48, + "1992": 0.47, + "1993": 0.459, + "1994": 0.438, + "1995": 0.449, + "1996": 0.452, + "1997": 0.453, + "1998": 0.453, + "1999": 0.454, + "2000": 0.453, + "2001": 0.452, + "2002": 0.453, + "2003": 0.457, + "2004": 0.455, + "2005": 0.458, + "2006": 0.461, + "2007": 0.466, + "2008": 0.469, + "2009": 0.476, + "2010": 0.467, + "2011": 0.474, + "2012": 0.474, + "2013": 0.483, + "2014": 0.488, + "2015": 0.495, + "2016": 0.501, + "2017": 0.508, + "2018": 0.508, + "2019": 0.504, + "2020": 0.497, + "2021": 0.492 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr109", + "Region": "North-West", + "1990": 0.489, + "1991": 0.489, + "1992": 0.479, + "1993": 0.468, + "1994": 0.447, + "1995": 0.458, + "1996": 0.461, + "1997": 0.462, + "1998": 0.462, + "1999": 0.463, + "2000": 0.461, + "2001": 0.46, + "2002": 0.461, + "2003": 0.465, + "2004": 0.462, + "2005": 0.466, + "2006": 0.468, + "2007": 0.472, + "2008": 0.474, + "2009": 0.481, + "2010": 0.471, + "2011": 0.477, + "2012": 0.476, + "2013": 0.479, + "2014": 0.478, + "2015": 0.479, + "2016": 0.478, + "2017": 0.479, + "2018": 0.479, + "2019": 0.475, + "2020": 0.468, + "2021": 0.463 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr107", + "Region": "South", + "1990": 0.513, + "1991": 0.513, + "1992": 0.502, + "1993": 0.491, + "1994": 0.47, + "1995": 0.479, + "1996": 0.48, + "1997": 0.479, + "1998": 0.477, + "1999": 0.475, + "2000": 0.471, + "2001": 0.471, + "2002": 0.473, + "2003": 0.478, + "2004": 0.476, + "2005": 0.481, + "2006": 0.485, + "2007": 0.492, + "2008": 0.497, + "2009": 0.506, + "2010": 0.498, + "2011": 0.506, + "2012": 0.508, + "2013": 0.505, + "2014": 0.5, + "2015": 0.495, + "2016": 0.489, + "2017": 0.485, + "2018": 0.485, + "2019": 0.481, + "2020": 0.474, + "2021": 0.469 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr102", + "Region": "South-East", + "1990": 0.503, + "1991": 0.503, + "1992": 0.492, + "1993": 0.481, + "1994": 0.46, + "1995": 0.47, + "1996": 0.472, + "1997": 0.471, + "1998": 0.47, + "1999": 0.469, + "2000": 0.466, + "2001": 0.463, + "2002": 0.461, + "2003": 0.463, + "2004": 0.458, + "2005": 0.459, + "2006": 0.461, + "2007": 0.466, + "2008": 0.468, + "2009": 0.474, + "2010": 0.464, + "2011": 0.47, + "2012": 0.469, + "2013": 0.475, + "2014": 0.478, + "2015": 0.482, + "2016": 0.485, + "2017": 0.489, + "2018": 0.49, + "2019": 0.485, + "2020": 0.478, + "2021": 0.474 + }, + { + "Country": "Haiti", + "Continent": "America", + "ISO_Code": "HTI", + "Level": "Subnat", + "GDLCODE": "HTIr101", + "Region": "West (incl Metropolitain area)", + "1990": 0.627, + "1991": 0.627, + "1992": 0.615, + "1993": 0.603, + "1994": 0.58, + "1995": 0.59, + "1996": 0.591, + "1997": 0.589, + "1998": 0.587, + "1999": 0.586, + "2000": 0.581, + "2001": 0.578, + "2002": 0.577, + "2003": 0.579, + "2004": 0.575, + "2005": 0.577, + "2006": 0.575, + "2007": 0.578, + "2008": 0.577, + "2009": 0.582, + "2010": 0.568, + "2011": 0.571, + "2012": 0.568, + "2013": 0.572, + "2014": 0.573, + "2015": 0.575, + "2016": 0.577, + "2017": 0.579, + "2018": 0.58, + "2019": 0.575, + "2020": 0.567, + "2021": 0.562 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "National", + "GDLCODE": "HNDt", + "Region": "Total", + "1990": 0.548, + "1991": 0.538, + "1992": 0.541, + "1993": 0.55, + "1994": 0.546, + "1995": 0.55, + "1996": 0.549, + "1997": 0.553, + "1998": 0.555, + "1999": 0.55, + "2000": 0.556, + "2001": 0.556, + "2002": 0.557, + "2003": 0.559, + "2004": 0.563, + "2005": 0.569, + "2006": 0.575, + "2007": 0.583, + "2008": 0.587, + "2009": 0.581, + "2010": 0.58, + "2011": 0.582, + "2012": 0.583, + "2013": 0.584, + "2014": 0.584, + "2015": 0.589, + "2016": 0.592, + "2017": 0.597, + "2018": 0.598, + "2019": 0.6, + "2020": 0.585, + "2021": 0.6 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr101", + "Region": "Atlantida", + "1990": 0.596, + "1991": 0.585, + "1992": 0.589, + "1993": 0.598, + "1994": 0.593, + "1995": 0.598, + "1996": 0.597, + "1997": 0.601, + "1998": 0.603, + "1999": 0.599, + "2000": 0.604, + "2001": 0.604, + "2002": 0.605, + "2003": 0.607, + "2004": 0.612, + "2005": 0.618, + "2006": 0.62, + "2007": 0.625, + "2008": 0.624, + "2009": 0.615, + "2010": 0.61, + "2011": 0.607, + "2012": 0.608, + "2013": 0.608, + "2014": 0.608, + "2015": 0.611, + "2016": 0.613, + "2017": 0.619, + "2018": 0.619, + "2019": 0.62, + "2020": 0.604, + "2021": 0.619 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr106", + "Region": "Choluteca", + "1990": 0.484, + "1991": 0.474, + "1992": 0.477, + "1993": 0.485, + "1994": 0.481, + "1995": 0.486, + "1996": 0.484, + "1997": 0.489, + "1998": 0.49, + "1999": 0.486, + "2000": 0.491, + "2001": 0.491, + "2002": 0.492, + "2003": 0.494, + "2004": 0.498, + "2005": 0.504, + "2006": 0.51, + "2007": 0.518, + "2008": 0.522, + "2009": 0.518, + "2010": 0.517, + "2011": 0.519, + "2012": 0.522, + "2013": 0.526, + "2014": 0.528, + "2015": 0.534, + "2016": 0.539, + "2017": 0.547, + "2018": 0.55, + "2019": 0.554, + "2020": 0.539, + "2021": 0.553 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr102", + "Region": "Colon", + "1990": 0.551, + "1991": 0.541, + "1992": 0.544, + "1993": 0.553, + "1994": 0.548, + "1995": 0.553, + "1996": 0.551, + "1997": 0.556, + "1998": 0.558, + "1999": 0.553, + "2000": 0.559, + "2001": 0.559, + "2002": 0.56, + "2003": 0.562, + "2004": 0.566, + "2005": 0.572, + "2006": 0.579, + "2007": 0.588, + "2008": 0.593, + "2009": 0.588, + "2010": 0.587, + "2011": 0.59, + "2012": 0.59, + "2013": 0.591, + "2014": 0.59, + "2015": 0.594, + "2016": 0.596, + "2017": 0.601, + "2018": 0.601, + "2019": 0.602, + "2020": 0.586, + "2021": 0.601 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr103", + "Region": "Comayagua", + "1990": 0.523, + "1991": 0.513, + "1992": 0.516, + "1993": 0.525, + "1994": 0.52, + "1995": 0.525, + "1996": 0.523, + "1997": 0.528, + "1998": 0.529, + "1999": 0.525, + "2000": 0.531, + "2001": 0.53, + "2002": 0.531, + "2003": 0.533, + "2004": 0.538, + "2005": 0.544, + "2006": 0.555, + "2007": 0.568, + "2008": 0.577, + "2009": 0.577, + "2010": 0.581, + "2011": 0.588, + "2012": 0.588, + "2013": 0.589, + "2014": 0.588, + "2015": 0.591, + "2016": 0.593, + "2017": 0.598, + "2018": 0.598, + "2019": 0.599, + "2020": 0.584, + "2021": 0.599 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr104", + "Region": "Copan", + "1990": 0.498, + "1991": 0.488, + "1992": 0.491, + "1993": 0.499, + "1994": 0.495, + "1995": 0.499, + "1996": 0.498, + "1997": 0.502, + "1998": 0.504, + "1999": 0.5, + "2000": 0.505, + "2001": 0.505, + "2002": 0.506, + "2003": 0.508, + "2004": 0.512, + "2005": 0.518, + "2006": 0.527, + "2007": 0.539, + "2008": 0.546, + "2009": 0.544, + "2010": 0.546, + "2011": 0.551, + "2012": 0.554, + "2013": 0.558, + "2014": 0.561, + "2015": 0.567, + "2016": 0.573, + "2017": 0.581, + "2018": 0.584, + "2019": 0.588, + "2020": 0.573, + "2021": 0.588 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr105", + "Region": "Cortes", + "1990": 0.625, + "1991": 0.614, + "1992": 0.618, + "1993": 0.627, + "1994": 0.622, + "1995": 0.627, + "1996": 0.625, + "1997": 0.63, + "1998": 0.632, + "1999": 0.627, + "2000": 0.633, + "2001": 0.633, + "2002": 0.634, + "2003": 0.636, + "2004": 0.641, + "2005": 0.647, + "2006": 0.649, + "2007": 0.653, + "2008": 0.652, + "2009": 0.642, + "2010": 0.636, + "2011": 0.634, + "2012": 0.633, + "2013": 0.634, + "2014": 0.632, + "2015": 0.636, + "2016": 0.637, + "2017": 0.642, + "2018": 0.641, + "2019": 0.642, + "2020": 0.626, + "2021": 0.641 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr107", + "Region": "El Paraiso", + "1990": 0.467, + "1991": 0.458, + "1992": 0.461, + "1993": 0.469, + "1994": 0.465, + "1995": 0.469, + "1996": 0.468, + "1997": 0.472, + "1998": 0.473, + "1999": 0.469, + "2000": 0.475, + "2001": 0.474, + "2002": 0.475, + "2003": 0.477, + "2004": 0.481, + "2005": 0.487, + "2006": 0.496, + "2007": 0.508, + "2008": 0.515, + "2009": 0.513, + "2010": 0.516, + "2011": 0.521, + "2012": 0.526, + "2013": 0.53, + "2014": 0.534, + "2015": 0.542, + "2016": 0.548, + "2017": 0.557, + "2018": 0.561, + "2019": 0.566, + "2020": 0.551, + "2021": 0.566 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr108", + "Region": "Francisco Morazan", + "1990": 0.596, + "1991": 0.585, + "1992": 0.589, + "1993": 0.598, + "1994": 0.593, + "1995": 0.598, + "1996": 0.596, + "1997": 0.601, + "1998": 0.603, + "1999": 0.598, + "2000": 0.604, + "2001": 0.604, + "2002": 0.605, + "2003": 0.607, + "2004": 0.612, + "2005": 0.618, + "2006": 0.622, + "2007": 0.629, + "2008": 0.631, + "2009": 0.624, + "2010": 0.621, + "2011": 0.621, + "2012": 0.62, + "2013": 0.62, + "2014": 0.619, + "2015": 0.622, + "2016": 0.623, + "2017": 0.628, + "2018": 0.627, + "2019": 0.627, + "2020": 0.611, + "2021": 0.627 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr109", + "Region": "Gracias a Dios", + "1990": 0.432, + "1991": 0.422, + "1992": 0.426, + "1993": 0.433, + "1994": 0.429, + "1995": 0.433, + "1996": 0.432, + "1997": 0.436, + "1998": 0.438, + "1999": 0.434, + "2000": 0.439, + "2001": 0.439, + "2002": 0.44, + "2003": 0.441, + "2004": 0.445, + "2005": 0.451, + "2006": 0.451, + "2007": 0.453, + "2008": 0.451, + "2009": 0.441, + "2010": 0.434, + "2011": 0.43, + "2012": 0.431, + "2013": 0.432, + "2014": 0.433, + "2015": 0.436, + "2016": 0.439, + "2017": 0.444, + "2018": 0.444, + "2019": 0.446, + "2020": 0.432, + "2021": 0.445 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr110", + "Region": "Intibuca", + "1990": 0.454, + "1991": 0.444, + "1992": 0.447, + "1993": 0.455, + "1994": 0.451, + "1995": 0.455, + "1996": 0.454, + "1997": 0.458, + "1998": 0.46, + "1999": 0.456, + "2000": 0.461, + "2001": 0.461, + "2002": 0.462, + "2003": 0.463, + "2004": 0.468, + "2005": 0.473, + "2006": 0.481, + "2007": 0.491, + "2008": 0.497, + "2009": 0.494, + "2010": 0.495, + "2011": 0.499, + "2012": 0.505, + "2013": 0.51, + "2014": 0.515, + "2015": 0.523, + "2016": 0.53, + "2017": 0.54, + "2018": 0.546, + "2019": 0.552, + "2020": 0.537, + "2021": 0.551 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr111", + "Region": "Islas de la Bahia", + "1990": 0.635, + "1991": 0.623, + "1992": 0.627, + "1993": 0.636, + "1994": 0.632, + "1995": 0.636, + "1996": 0.635, + "1997": 0.64, + "1998": 0.641, + "1999": 0.637, + "2000": 0.643, + "2001": 0.643, + "2002": 0.644, + "2003": 0.646, + "2004": 0.651, + "2005": 0.657, + "2006": 0.657, + "2007": 0.659, + "2008": 0.657, + "2009": 0.645, + "2010": 0.637, + "2011": 0.633, + "2012": 0.63, + "2013": 0.627, + "2014": 0.623, + "2015": 0.623, + "2016": 0.622, + "2017": 0.623, + "2018": 0.62, + "2019": 0.617, + "2020": 0.602, + "2021": 0.617 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr112", + "Region": "La Paz", + "1990": 0.461, + "1991": 0.452, + "1992": 0.455, + "1993": 0.463, + "1994": 0.459, + "1995": 0.463, + "1996": 0.462, + "1997": 0.466, + "1998": 0.467, + "1999": 0.463, + "2000": 0.469, + "2001": 0.468, + "2002": 0.469, + "2003": 0.471, + "2004": 0.475, + "2005": 0.481, + "2006": 0.492, + "2007": 0.505, + "2008": 0.514, + "2009": 0.514, + "2010": 0.518, + "2011": 0.524, + "2012": 0.527, + "2013": 0.531, + "2014": 0.533, + "2015": 0.539, + "2016": 0.544, + "2017": 0.551, + "2018": 0.554, + "2019": 0.558, + "2020": 0.543, + "2021": 0.557 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr113", + "Region": "Lempira", + "1990": 0.427, + "1991": 0.418, + "1992": 0.421, + "1993": 0.429, + "1994": 0.425, + "1995": 0.429, + "1996": 0.428, + "1997": 0.432, + "1998": 0.433, + "1999": 0.429, + "2000": 0.435, + "2001": 0.434, + "2002": 0.435, + "2003": 0.437, + "2004": 0.441, + "2005": 0.446, + "2006": 0.456, + "2007": 0.468, + "2008": 0.476, + "2009": 0.475, + "2010": 0.478, + "2011": 0.484, + "2012": 0.491, + "2013": 0.499, + "2014": 0.505, + "2015": 0.515, + "2016": 0.524, + "2017": 0.535, + "2018": 0.542, + "2019": 0.55, + "2020": 0.535, + "2021": 0.549 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr114", + "Region": "Ocotepeque", + "1990": 0.492, + "1991": 0.482, + "1992": 0.486, + "1993": 0.494, + "1994": 0.49, + "1995": 0.494, + "1996": 0.493, + "1997": 0.497, + "1998": 0.498, + "1999": 0.494, + "2000": 0.5, + "2001": 0.499, + "2002": 0.501, + "2003": 0.502, + "2004": 0.507, + "2005": 0.512, + "2006": 0.525, + "2007": 0.54, + "2008": 0.55, + "2009": 0.552, + "2010": 0.557, + "2011": 0.566, + "2012": 0.569, + "2013": 0.573, + "2014": 0.576, + "2015": 0.582, + "2016": 0.588, + "2017": 0.596, + "2018": 0.599, + "2019": 0.603, + "2020": 0.588, + "2021": 0.603 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr115", + "Region": "Olancho", + "1990": 0.472, + "1991": 0.462, + "1992": 0.465, + "1993": 0.473, + "1994": 0.469, + "1995": 0.473, + "1996": 0.472, + "1997": 0.476, + "1998": 0.478, + "1999": 0.474, + "2000": 0.479, + "2001": 0.479, + "2002": 0.48, + "2003": 0.481, + "2004": 0.486, + "2005": 0.491, + "2006": 0.504, + "2007": 0.519, + "2008": 0.53, + "2009": 0.531, + "2010": 0.537, + "2011": 0.546, + "2012": 0.547, + "2013": 0.549, + "2014": 0.549, + "2015": 0.554, + "2016": 0.557, + "2017": 0.563, + "2018": 0.564, + "2019": 0.566, + "2020": 0.551, + "2021": 0.566 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr116", + "Region": "Santa Barbara", + "1990": 0.495, + "1991": 0.485, + "1992": 0.489, + "1993": 0.497, + "1994": 0.493, + "1995": 0.497, + "1996": 0.495, + "1997": 0.5, + "1998": 0.501, + "1999": 0.497, + "2000": 0.503, + "2001": 0.502, + "2002": 0.503, + "2003": 0.505, + "2004": 0.51, + "2005": 0.515, + "2006": 0.527, + "2007": 0.541, + "2008": 0.55, + "2009": 0.551, + "2010": 0.555, + "2011": 0.563, + "2012": 0.565, + "2013": 0.568, + "2014": 0.57, + "2015": 0.576, + "2016": 0.58, + "2017": 0.587, + "2018": 0.59, + "2019": 0.593, + "2020": 0.577, + "2021": 0.592 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr117", + "Region": "Valle", + "1990": 0.495, + "1991": 0.485, + "1992": 0.488, + "1993": 0.497, + "1994": 0.492, + "1995": 0.497, + "1996": 0.495, + "1997": 0.5, + "1998": 0.501, + "1999": 0.497, + "2000": 0.503, + "2001": 0.502, + "2002": 0.503, + "2003": 0.505, + "2004": 0.509, + "2005": 0.515, + "2006": 0.523, + "2007": 0.533, + "2008": 0.539, + "2009": 0.536, + "2010": 0.537, + "2011": 0.541, + "2012": 0.543, + "2013": 0.546, + "2014": 0.548, + "2015": 0.554, + "2016": 0.558, + "2017": 0.565, + "2018": 0.567, + "2019": 0.57, + "2020": 0.555, + "2021": 0.57 + }, + { + "Country": "Honduras", + "Continent": "America", + "ISO_Code": "HND", + "Level": "Subnat", + "GDLCODE": "HNDr118", + "Region": "Yoro", + "1990": 0.573, + "1991": 0.562, + "1992": 0.566, + "1993": 0.575, + "1994": 0.57, + "1995": 0.575, + "1996": 0.573, + "1997": 0.578, + "1998": 0.58, + "1999": 0.575, + "2000": 0.581, + "2001": 0.581, + "2002": 0.582, + "2003": 0.584, + "2004": 0.588, + "2005": 0.594, + "2006": 0.596, + "2007": 0.6, + "2008": 0.599, + "2009": 0.589, + "2010": 0.583, + "2011": 0.58, + "2012": 0.581, + "2013": 0.582, + "2014": 0.582, + "2015": 0.586, + "2016": 0.588, + "2017": 0.594, + "2018": 0.594, + "2019": 0.595, + "2020": 0.58, + "2021": 0.595 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "National", + "GDLCODE": "HUNt", + "Region": "Total", + "1990": 0.787, + "1991": 0.766, + "1992": 0.762, + "1993": 0.766, + "1994": 0.77, + "1995": 0.77, + "1996": 0.77, + "1997": 0.772, + "1998": 0.778, + "1999": 0.783, + "2000": 0.789, + "2001": 0.796, + "2002": 0.805, + "2003": 0.812, + "2004": 0.819, + "2005": 0.824, + "2006": 0.828, + "2007": 0.827, + "2008": 0.83, + "2009": 0.824, + "2010": 0.825, + "2011": 0.827, + "2012": 0.825, + "2013": 0.831, + "2014": 0.836, + "2015": 0.842, + "2016": 0.849, + "2017": 0.853, + "2018": 0.86, + "2019": 0.869, + "2020": 0.864, + "2021": 0.875 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr107", + "Region": "Del-Alfold", + "1990": 0.76, + "1991": 0.739, + "1992": 0.735, + "1993": 0.739, + "1994": 0.743, + "1995": 0.743, + "1996": 0.743, + "1997": 0.745, + "1998": 0.751, + "1999": 0.756, + "2000": 0.762, + "2001": 0.768, + "2002": 0.777, + "2003": 0.781, + "2004": 0.789, + "2005": 0.791, + "2006": 0.794, + "2007": 0.792, + "2008": 0.797, + "2009": 0.791, + "2010": 0.789, + "2011": 0.793, + "2012": 0.794, + "2013": 0.804, + "2014": 0.808, + "2015": 0.816, + "2016": 0.821, + "2017": 0.825, + "2018": 0.836, + "2019": 0.845, + "2020": 0.84, + "2021": 0.851 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr104", + "Region": "Del-Dunantul", + "1990": 0.76, + "1991": 0.739, + "1992": 0.735, + "1993": 0.739, + "1994": 0.743, + "1995": 0.743, + "1996": 0.743, + "1997": 0.745, + "1998": 0.751, + "1999": 0.756, + "2000": 0.762, + "2001": 0.768, + "2002": 0.781, + "2003": 0.781, + "2004": 0.786, + "2005": 0.788, + "2006": 0.791, + "2007": 0.792, + "2008": 0.797, + "2009": 0.794, + "2010": 0.792, + "2011": 0.79, + "2012": 0.794, + "2013": 0.799, + "2014": 0.796, + "2015": 0.801, + "2016": 0.809, + "2017": 0.816, + "2018": 0.826, + "2019": 0.836, + "2020": 0.831, + "2021": 0.842 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr106", + "Region": "Eszak-Alfold", + "1990": 0.74, + "1991": 0.719, + "1992": 0.715, + "1993": 0.719, + "1994": 0.723, + "1995": 0.723, + "1996": 0.723, + "1997": 0.725, + "1998": 0.731, + "1999": 0.735, + "2000": 0.741, + "2001": 0.759, + "2002": 0.767, + "2003": 0.775, + "2004": 0.777, + "2005": 0.782, + "2006": 0.786, + "2007": 0.779, + "2008": 0.782, + "2009": 0.783, + "2010": 0.781, + "2011": 0.788, + "2012": 0.784, + "2013": 0.787, + "2014": 0.791, + "2015": 0.794, + "2016": 0.8, + "2017": 0.806, + "2018": 0.813, + "2019": 0.826, + "2020": 0.821, + "2021": 0.832 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr105", + "Region": "Eszak-Magyarorszag", + "1990": 0.734, + "1991": 0.714, + "1992": 0.71, + "1993": 0.714, + "1994": 0.717, + "1995": 0.717, + "1996": 0.717, + "1997": 0.72, + "1998": 0.726, + "1999": 0.73, + "2000": 0.736, + "2001": 0.746, + "2002": 0.756, + "2003": 0.761, + "2004": 0.771, + "2005": 0.779, + "2006": 0.783, + "2007": 0.781, + "2008": 0.78, + "2009": 0.771, + "2010": 0.77, + "2011": 0.772, + "2012": 0.767, + "2013": 0.779, + "2014": 0.787, + "2015": 0.801, + "2016": 0.809, + "2017": 0.817, + "2018": 0.826, + "2019": 0.831, + "2020": 0.826, + "2021": 0.837 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr102", + "Region": "Kozep-Dunantul", + "1990": 0.806, + "1991": 0.784, + "1992": 0.781, + "1993": 0.784, + "1994": 0.788, + "1995": 0.788, + "1996": 0.788, + "1997": 0.791, + "1998": 0.797, + "1999": 0.802, + "2000": 0.808, + "2001": 0.811, + "2002": 0.814, + "2003": 0.827, + "2004": 0.837, + "2005": 0.844, + "2006": 0.844, + "2007": 0.846, + "2008": 0.846, + "2009": 0.83, + "2010": 0.834, + "2011": 0.838, + "2012": 0.835, + "2013": 0.844, + "2014": 0.849, + "2015": 0.858, + "2016": 0.869, + "2017": 0.869, + "2018": 0.876, + "2019": 0.884, + "2020": 0.879, + "2021": 0.891 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr101", + "Region": "Kozep-Magyarorszag", + "1990": 0.89, + "1991": 0.867, + "1992": 0.863, + "1993": 0.867, + "1994": 0.871, + "1995": 0.871, + "1996": 0.871, + "1997": 0.874, + "1998": 0.88, + "1999": 0.885, + "2000": 0.891, + "2001": 0.901, + "2002": 0.915, + "2003": 0.918, + "2004": 0.927, + "2005": 0.936, + "2006": 0.944, + "2007": 0.944, + "2008": 0.945, + "2009": 0.947, + "2010": 0.942, + "2011": 0.94, + "2012": 0.939, + "2013": 0.94, + "2014": 0.942, + "2015": 0.94, + "2016": 0.946, + "2017": 0.949, + "2018": 0.955, + "2019": 0.967, + "2020": 0.962, + "2021": 0.974 + }, + { + "Country": "Hungary", + "Continent": "Europe", + "ISO_Code": "HUN", + "Level": "Subnat", + "GDLCODE": "HUNr103", + "Region": "Nyugat-Dunantul", + "1990": 0.836, + "1991": 0.814, + "1992": 0.811, + "1993": 0.814, + "1994": 0.818, + "1995": 0.818, + "1996": 0.818, + "1997": 0.821, + "1998": 0.827, + "1999": 0.832, + "2000": 0.838, + "2001": 0.835, + "2002": 0.842, + "2003": 0.857, + "2004": 0.856, + "2005": 0.854, + "2006": 0.865, + "2007": 0.86, + "2008": 0.862, + "2009": 0.852, + "2010": 0.863, + "2011": 0.864, + "2012": 0.861, + "2013": 0.867, + "2014": 0.876, + "2015": 0.883, + "2016": 0.891, + "2017": 0.888, + "2018": 0.889, + "2019": 0.892, + "2020": 0.888, + "2021": 0.899 + }, + { + "Country": "Iceland", + "Continent": "Europe", + "ISO_Code": "ISL", + "Level": "National", + "GDLCODE": "ISLt", + "Region": "Total", + "1990": 0.87, + "1991": 0.869, + "1992": 0.863, + "1993": 0.863, + "1994": 0.866, + "1995": 0.865, + "1996": 0.87, + "1997": 0.878, + "1998": 0.887, + "1999": 0.892, + "2000": 0.897, + "2001": 0.901, + "2002": 0.905, + "2003": 0.905, + "2004": 0.911, + "2005": 0.918, + "2006": 0.922, + "2007": 0.933, + "2008": 0.908, + "2009": 0.897, + "2010": 0.895, + "2011": 0.902, + "2012": 0.908, + "2013": 0.926, + "2014": 0.928, + "2015": 0.935, + "2016": 0.947, + "2017": 0.95, + "2018": 0.957, + "2019": 0.961, + "2020": 0.951, + "2021": 0.955 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "National", + "GDLCODE": "INDt", + "Region": "Total", + "1990": 0.436, + "1991": 0.434, + "1992": 0.439, + "1993": 0.443, + "1994": 0.45, + "1995": 0.459, + "1996": 0.467, + "1997": 0.47, + "1998": 0.477, + "1999": 0.487, + "2000": 0.489, + "2001": 0.494, + "2002": 0.498, + "2003": 0.506, + "2004": 0.515, + "2005": 0.525, + "2006": 0.534, + "2007": 0.543, + "2008": 0.545, + "2009": 0.555, + "2010": 0.564, + "2011": 0.57, + "2012": 0.576, + "2013": 0.583, + "2014": 0.593, + "2015": 0.603, + "2016": 0.612, + "2017": 0.621, + "2018": 0.629, + "2019": 0.634, + "2020": 0.621, + "2021": 0.633 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr136", + "Region": "Andaman and Nicobar Islands", + "1990": 0.611, + "1991": 0.609, + "1992": 0.615, + "1993": 0.619, + "1994": 0.626, + "1995": 0.635, + "1996": 0.644, + "1997": 0.647, + "1998": 0.654, + "1999": 0.665, + "2000": 0.664, + "2001": 0.666, + "2002": 0.666, + "2003": 0.672, + "2004": 0.679, + "2005": 0.685, + "2006": 0.692, + "2007": 0.696, + "2008": 0.693, + "2009": 0.697, + "2010": 0.701, + "2011": 0.702, + "2012": 0.702, + "2013": 0.7, + "2014": 0.701, + "2015": 0.702, + "2016": 0.702, + "2017": 0.706, + "2018": 0.709, + "2019": 0.707, + "2020": 0.694, + "2021": 0.706 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr101", + "Region": "Andhra Pradesh", + "1990": 0.425, + "1991": 0.423, + "1992": 0.428, + "1993": 0.432, + "1994": 0.439, + "1995": 0.448, + "1996": 0.457, + "1997": 0.46, + "1998": 0.467, + "1999": 0.477, + "2000": 0.482, + "2001": 0.49, + "2002": 0.496, + "2003": 0.507, + "2004": 0.519, + "2005": 0.531, + "2006": 0.543, + "2007": 0.555, + "2008": 0.56, + "2009": 0.573, + "2010": 0.585, + "2011": 0.594, + "2012": 0.603, + "2013": 0.61, + "2014": 0.619, + "2015": 0.629, + "2016": 0.638, + "2017": 0.648, + "2018": 0.656, + "2019": 0.661, + "2020": 0.648, + "2021": 0.66 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr125", + "Region": "Arunachal Pradesh", + "1990": 0.435, + "1991": 0.433, + "1992": 0.438, + "1993": 0.441, + "1994": 0.447, + "1995": 0.454, + "1996": 0.461, + "1997": 0.463, + "1998": 0.468, + "1999": 0.477, + "2000": 0.486, + "2001": 0.496, + "2002": 0.505, + "2003": 0.52, + "2004": 0.535, + "2005": 0.55, + "2006": 0.565, + "2007": 0.581, + "2008": 0.59, + "2009": 0.606, + "2010": 0.622, + "2011": 0.635, + "2012": 0.647, + "2013": 0.641, + "2014": 0.637, + "2015": 0.634, + "2016": 0.63, + "2017": 0.644, + "2018": 0.657, + "2019": 0.667, + "2020": 0.654, + "2021": 0.665 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr102", + "Region": "Assam", + "1990": 0.388, + "1991": 0.386, + "1992": 0.391, + "1993": 0.394, + "1994": 0.399, + "1995": 0.406, + "1996": 0.413, + "1997": 0.415, + "1998": 0.42, + "1999": 0.428, + "2000": 0.432, + "2001": 0.438, + "2002": 0.443, + "2003": 0.453, + "2004": 0.463, + "2005": 0.473, + "2006": 0.483, + "2007": 0.495, + "2008": 0.499, + "2009": 0.51, + "2010": 0.521, + "2011": 0.529, + "2012": 0.536, + "2013": 0.537, + "2014": 0.54, + "2015": 0.543, + "2016": 0.545, + "2017": 0.554, + "2018": 0.561, + "2019": 0.565, + "2020": 0.553, + "2021": 0.564 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr103", + "Region": "Bihar", + "1990": 0.385, + "1991": 0.383, + "1992": 0.388, + "1993": 0.389, + "1994": 0.393, + "1995": 0.399, + "1996": 0.404, + "1997": 0.405, + "1998": 0.408, + "1999": 0.415, + "2000": 0.417, + "2001": 0.421, + "2002": 0.424, + "2003": 0.432, + "2004": 0.44, + "2005": 0.448, + "2006": 0.456, + "2007": 0.461, + "2008": 0.46, + "2009": 0.466, + "2010": 0.471, + "2011": 0.474, + "2012": 0.476, + "2013": 0.482, + "2014": 0.489, + "2015": 0.497, + "2016": 0.504, + "2017": 0.52, + "2018": 0.534, + "2019": 0.545, + "2020": 0.533, + "2021": 0.544 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr131", + "Region": "Chandigarth", + "1990": 0.562, + "1991": 0.56, + "1992": 0.565, + "1993": 0.569, + "1994": 0.576, + "1995": 0.585, + "1996": 0.593, + "1997": 0.596, + "1998": 0.603, + "1999": 0.613, + "2000": 0.612, + "2001": 0.614, + "2002": 0.614, + "2003": 0.62, + "2004": 0.627, + "2005": 0.633, + "2006": 0.64, + "2007": 0.644, + "2008": 0.64, + "2009": 0.644, + "2010": 0.648, + "2011": 0.649, + "2012": 0.649, + "2013": 0.675, + "2014": 0.703, + "2015": 0.732, + "2016": 0.759, + "2017": 0.759, + "2018": 0.758, + "2019": 0.752, + "2020": 0.738, + "2021": 0.751 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr129", + "Region": "Chhattisgarh", + "1990": 0.452, + "1991": 0.45, + "1992": 0.455, + "1993": 0.458, + "1994": 0.465, + "1995": 0.473, + "1996": 0.48, + "1997": 0.483, + "1998": 0.489, + "1999": 0.498, + "2000": 0.498, + "2001": 0.499, + "2002": 0.499, + "2003": 0.505, + "2004": 0.511, + "2005": 0.517, + "2006": 0.523, + "2007": 0.526, + "2008": 0.523, + "2009": 0.526, + "2010": 0.53, + "2011": 0.531, + "2012": 0.531, + "2013": 0.539, + "2014": 0.55, + "2015": 0.561, + "2016": 0.571, + "2017": 0.586, + "2018": 0.6, + "2019": 0.61, + "2020": 0.598, + "2021": 0.609 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr132", + "Region": "Dadra and Nagar Haveli", + "1990": 0.555, + "1991": 0.553, + "1992": 0.559, + "1993": 0.563, + "1994": 0.57, + "1995": 0.578, + "1996": 0.587, + "1997": 0.59, + "1998": 0.596, + "1999": 0.606, + "2000": 0.606, + "2001": 0.607, + "2002": 0.607, + "2003": 0.613, + "2004": 0.62, + "2005": 0.626, + "2006": 0.633, + "2007": 0.637, + "2008": 0.633, + "2009": 0.637, + "2010": 0.641, + "2011": 0.642, + "2012": 0.642, + "2013": 0.634, + "2014": 0.627, + "2015": 0.622, + "2016": 0.615, + "2017": 0.617, + "2018": 0.618, + "2019": 0.615, + "2020": 0.602, + "2021": 0.613 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr134", + "Region": "Daman and Diu", + "1990": 0.602, + "1991": 0.6, + "1992": 0.606, + "1993": 0.61, + "1994": 0.617, + "1995": 0.626, + "1996": 0.635, + "1997": 0.638, + "1998": 0.644, + "1999": 0.655, + "2000": 0.654, + "2001": 0.656, + "2002": 0.656, + "2003": 0.662, + "2004": 0.669, + "2005": 0.676, + "2006": 0.682, + "2007": 0.687, + "2008": 0.683, + "2009": 0.687, + "2010": 0.691, + "2011": 0.692, + "2012": 0.692, + "2013": 0.69, + "2014": 0.691, + "2015": 0.692, + "2016": 0.692, + "2017": 0.689, + "2018": 0.684, + "2019": 0.676, + "2020": 0.663, + "2021": 0.675 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr104", + "Region": "Goa", + "1990": 0.518, + "1991": 0.516, + "1992": 0.521, + "1993": 0.528, + "1994": 0.539, + "1995": 0.551, + "1996": 0.563, + "1997": 0.57, + "1998": 0.58, + "1999": 0.594, + "2000": 0.601, + "2001": 0.611, + "2002": 0.619, + "2003": 0.633, + "2004": 0.648, + "2005": 0.662, + "2006": 0.677, + "2007": 0.693, + "2008": 0.701, + "2009": 0.716, + "2010": 0.732, + "2011": 0.744, + "2012": 0.756, + "2013": 0.751, + "2014": 0.747, + "2015": 0.745, + "2016": 0.742, + "2017": 0.748, + "2018": 0.753, + "2019": 0.754, + "2020": 0.74, + "2021": 0.752 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr105", + "Region": "Gujarat", + "1990": 0.49, + "1991": 0.488, + "1992": 0.493, + "1993": 0.498, + "1994": 0.506, + "1995": 0.515, + "1996": 0.524, + "1997": 0.528, + "1998": 0.535, + "1999": 0.546, + "2000": 0.55, + "2001": 0.556, + "2002": 0.561, + "2003": 0.571, + "2004": 0.582, + "2005": 0.592, + "2006": 0.603, + "2007": 0.611, + "2008": 0.611, + "2009": 0.618, + "2010": 0.626, + "2011": 0.63, + "2012": 0.633, + "2013": 0.642, + "2014": 0.652, + "2015": 0.663, + "2016": 0.673, + "2017": 0.675, + "2018": 0.675, + "2019": 0.671, + "2020": 0.658, + "2021": 0.669 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr106", + "Region": "Haryana", + "1990": 0.471, + "1991": 0.47, + "1992": 0.475, + "1993": 0.484, + "1994": 0.496, + "1995": 0.509, + "1996": 0.523, + "1997": 0.531, + "1998": 0.542, + "1999": 0.558, + "2000": 0.561, + "2001": 0.566, + "2002": 0.57, + "2003": 0.579, + "2004": 0.589, + "2005": 0.599, + "2006": 0.609, + "2007": 0.618, + "2008": 0.62, + "2009": 0.629, + "2010": 0.639, + "2011": 0.645, + "2012": 0.65, + "2013": 0.663, + "2014": 0.678, + "2015": 0.694, + "2016": 0.709, + "2017": 0.713, + "2018": 0.715, + "2019": 0.714, + "2020": 0.701, + "2021": 0.713 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr107", + "Region": "Himachal Pradesh", + "1990": 0.445, + "1991": 0.443, + "1992": 0.448, + "1993": 0.46, + "1994": 0.475, + "1995": 0.491, + "1996": 0.507, + "1997": 0.518, + "1998": 0.533, + "1999": 0.551, + "2000": 0.557, + "2001": 0.566, + "2002": 0.573, + "2003": 0.585, + "2004": 0.599, + "2005": 0.612, + "2006": 0.625, + "2007": 0.633, + "2008": 0.633, + "2009": 0.641, + "2010": 0.649, + "2011": 0.654, + "2012": 0.658, + "2013": 0.669, + "2014": 0.682, + "2015": 0.696, + "2016": 0.71, + "2017": 0.712, + "2018": 0.713, + "2019": 0.71, + "2020": 0.697, + "2021": 0.709 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr108", + "Region": "Jammu and Kashmir", + "1990": 0.465, + "1991": 0.463, + "1992": 0.468, + "1993": 0.475, + "1994": 0.484, + "1995": 0.495, + "1996": 0.505, + "1997": 0.511, + "1998": 0.519, + "1999": 0.532, + "2000": 0.536, + "2001": 0.542, + "2002": 0.547, + "2003": 0.557, + "2004": 0.568, + "2005": 0.578, + "2006": 0.589, + "2007": 0.6, + "2008": 0.604, + "2009": 0.614, + "2010": 0.626, + "2011": 0.633, + "2012": 0.64, + "2013": 0.646, + "2014": 0.654, + "2015": 0.663, + "2016": 0.67, + "2017": 0.682, + "2018": 0.691, + "2019": 0.698, + "2020": 0.684, + "2021": 0.696 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr128", + "Region": "Jharkhand", + "1990": 0.432, + "1991": 0.43, + "1992": 0.435, + "1993": 0.439, + "1994": 0.445, + "1995": 0.453, + "1996": 0.46, + "1997": 0.463, + "1998": 0.469, + "1999": 0.478, + "2000": 0.477, + "2001": 0.479, + "2002": 0.479, + "2003": 0.485, + "2004": 0.49, + "2005": 0.496, + "2006": 0.502, + "2007": 0.506, + "2008": 0.502, + "2009": 0.506, + "2010": 0.509, + "2011": 0.51, + "2012": 0.51, + "2013": 0.514, + "2014": 0.52, + "2015": 0.527, + "2016": 0.533, + "2017": 0.543, + "2018": 0.553, + "2019": 0.559, + "2020": 0.547, + "2021": 0.557 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr109", + "Region": "Karnataka", + "1990": 0.444, + "1991": 0.442, + "1992": 0.447, + "1993": 0.453, + "1994": 0.462, + "1995": 0.472, + "1996": 0.482, + "1997": 0.487, + "1998": 0.495, + "1999": 0.508, + "2000": 0.511, + "2001": 0.516, + "2002": 0.52, + "2003": 0.529, + "2004": 0.539, + "2005": 0.549, + "2006": 0.559, + "2007": 0.571, + "2008": 0.576, + "2009": 0.588, + "2010": 0.601, + "2011": 0.61, + "2012": 0.619, + "2013": 0.624, + "2014": 0.631, + "2015": 0.638, + "2016": 0.645, + "2017": 0.657, + "2018": 0.667, + "2019": 0.674, + "2020": 0.661, + "2021": 0.673 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr110", + "Region": "Kerala", + "1990": 0.485, + "1991": 0.483, + "1992": 0.488, + "1993": 0.485, + "1994": 0.484, + "1995": 0.484, + "1996": 0.484, + "1997": 0.479, + "1998": 0.477, + "1999": 0.479, + "2000": 0.498, + "2001": 0.52, + "2002": 0.54, + "2003": 0.566, + "2004": 0.593, + "2005": 0.62, + "2006": 0.647, + "2007": 0.653, + "2008": 0.652, + "2009": 0.659, + "2010": 0.665, + "2011": 0.668, + "2012": 0.671, + "2013": 0.683, + "2014": 0.698, + "2015": 0.713, + "2016": 0.727, + "2017": 0.726, + "2018": 0.723, + "2019": 0.717, + "2020": 0.704, + "2021": 0.716 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr135", + "Region": "Lakshadweep", + "1990": 0.635, + "1991": 0.633, + "1992": 0.638, + "1993": 0.643, + "1994": 0.65, + "1995": 0.659, + "1996": 0.668, + "1997": 0.671, + "1998": 0.678, + "1999": 0.689, + "2000": 0.688, + "2001": 0.69, + "2002": 0.69, + "2003": 0.697, + "2004": 0.703, + "2005": 0.71, + "2006": 0.717, + "2007": 0.721, + "2008": 0.717, + "2009": 0.722, + "2010": 0.726, + "2011": 0.727, + "2012": 0.727, + "2013": 0.725, + "2014": 0.726, + "2015": 0.727, + "2016": 0.727, + "2017": 0.727, + "2018": 0.725, + "2019": 0.719, + "2020": 0.705, + "2021": 0.718 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr111", + "Region": "Madhya Pradesh", + "1990": 0.428, + "1991": 0.426, + "1992": 0.431, + "1993": 0.434, + "1994": 0.44, + "1995": 0.447, + "1996": 0.454, + "1997": 0.456, + "1998": 0.461, + "1999": 0.47, + "2000": 0.469, + "2001": 0.47, + "2002": 0.47, + "2003": 0.475, + "2004": 0.48, + "2005": 0.486, + "2006": 0.491, + "2007": 0.499, + "2008": 0.501, + "2009": 0.509, + "2010": 0.517, + "2011": 0.522, + "2012": 0.527, + "2013": 0.536, + "2014": 0.547, + "2015": 0.559, + "2016": 0.569, + "2017": 0.582, + "2018": 0.594, + "2019": 0.601, + "2020": 0.589, + "2021": 0.6 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr112", + "Region": "Maharashtra", + "1990": 0.488, + "1991": 0.486, + "1992": 0.492, + "1993": 0.497, + "1994": 0.504, + "1995": 0.513, + "1996": 0.522, + "1997": 0.526, + "1998": 0.533, + "1999": 0.544, + "2000": 0.546, + "2001": 0.55, + "2002": 0.552, + "2003": 0.561, + "2004": 0.569, + "2005": 0.578, + "2006": 0.586, + "2007": 0.595, + "2008": 0.597, + "2009": 0.605, + "2010": 0.614, + "2011": 0.62, + "2012": 0.625, + "2013": 0.631, + "2014": 0.638, + "2015": 0.646, + "2016": 0.654, + "2017": 0.664, + "2018": 0.672, + "2019": 0.677, + "2020": 0.664, + "2021": 0.676 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr113", + "Region": "Manipur", + "1990": 0.41, + "1991": 0.408, + "1992": 0.413, + "1993": 0.42, + "1994": 0.429, + "1995": 0.44, + "1996": 0.451, + "1997": 0.457, + "1998": 0.465, + "1999": 0.478, + "2000": 0.482, + "2001": 0.487, + "2002": 0.491, + "2003": 0.501, + "2004": 0.511, + "2005": 0.521, + "2006": 0.531, + "2007": 0.557, + "2008": 0.575, + "2009": 0.601, + "2010": 0.627, + "2011": 0.65, + "2012": 0.672, + "2013": 0.651, + "2014": 0.632, + "2015": 0.613, + "2016": 0.594, + "2017": 0.601, + "2018": 0.606, + "2019": 0.608, + "2020": 0.595, + "2021": 0.606 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr114", + "Region": "Meghalaya", + "1990": 0.414, + "1991": 0.413, + "1992": 0.418, + "1993": 0.418, + "1994": 0.42, + "1995": 0.424, + "1996": 0.428, + "1997": 0.427, + "1998": 0.428, + "1999": 0.434, + "2000": 0.444, + "2001": 0.456, + "2002": 0.466, + "2003": 0.482, + "2004": 0.499, + "2005": 0.515, + "2006": 0.532, + "2007": 0.554, + "2008": 0.569, + "2009": 0.591, + "2010": 0.614, + "2011": 0.633, + "2012": 0.651, + "2013": 0.637, + "2014": 0.625, + "2015": 0.613, + "2016": 0.6, + "2017": 0.608, + "2018": 0.615, + "2019": 0.618, + "2020": 0.605, + "2021": 0.616 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr115", + "Region": "Mizoram", + "1990": 0.44, + "1991": 0.438, + "1992": 0.443, + "1993": 0.45, + "1994": 0.46, + "1995": 0.472, + "1996": 0.483, + "1997": 0.489, + "1998": 0.498, + "1999": 0.512, + "2000": 0.525, + "2001": 0.54, + "2002": 0.554, + "2003": 0.573, + "2004": 0.593, + "2005": 0.613, + "2006": 0.634, + "2007": 0.656, + "2008": 0.67, + "2009": 0.693, + "2010": 0.715, + "2011": 0.734, + "2012": 0.753, + "2013": 0.737, + "2014": 0.724, + "2015": 0.712, + "2016": 0.698, + "2017": 0.703, + "2018": 0.707, + "2019": 0.706, + "2020": 0.693, + "2021": 0.705 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr116", + "Region": "Nagaland", + "1990": 0.47, + "1991": 0.468, + "1992": 0.473, + "1993": 0.469, + "1994": 0.468, + "1995": 0.469, + "1996": 0.469, + "1997": 0.464, + "1998": 0.462, + "1999": 0.464, + "2000": 0.471, + "2001": 0.48, + "2002": 0.488, + "2003": 0.501, + "2004": 0.515, + "2005": 0.529, + "2006": 0.543, + "2007": 0.573, + "2008": 0.597, + "2009": 0.628, + "2010": 0.659, + "2011": 0.687, + "2012": 0.714, + "2013": 0.691, + "2014": 0.669, + "2015": 0.648, + "2016": 0.627, + "2017": 0.633, + "2018": 0.639, + "2019": 0.64, + "2020": 0.627, + "2021": 0.639 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr124", + "Region": "New Delhi", + "1990": 0.627, + "1991": 0.625, + "1992": 0.63, + "1993": 0.639, + "1994": 0.651, + "1995": 0.665, + "1996": 0.678, + "1997": 0.686, + "1998": 0.697, + "1999": 0.713, + "2000": 0.708, + "2001": 0.705, + "2002": 0.7, + "2003": 0.702, + "2004": 0.704, + "2005": 0.705, + "2006": 0.707, + "2007": 0.711, + "2008": 0.706, + "2009": 0.71, + "2010": 0.714, + "2011": 0.714, + "2012": 0.713, + "2013": 0.716, + "2014": 0.721, + "2015": 0.727, + "2016": 0.732, + "2017": 0.735, + "2018": 0.737, + "2019": 0.735, + "2020": 0.721, + "2021": 0.733 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr117", + "Region": "Orissa", + "1990": 0.38, + "1991": 0.378, + "1992": 0.383, + "1993": 0.386, + "1994": 0.391, + "1995": 0.398, + "1996": 0.405, + "1997": 0.407, + "1998": 0.412, + "1999": 0.42, + "2000": 0.423, + "2001": 0.428, + "2002": 0.431, + "2003": 0.44, + "2004": 0.449, + "2005": 0.457, + "2006": 0.466, + "2007": 0.476, + "2008": 0.479, + "2009": 0.488, + "2010": 0.498, + "2011": 0.505, + "2012": 0.511, + "2013": 0.518, + "2014": 0.526, + "2015": 0.536, + "2016": 0.544, + "2017": 0.561, + "2018": 0.576, + "2019": 0.588, + "2020": 0.576, + "2021": 0.587 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr133", + "Region": "Puducherry", + "1990": 0.616, + "1991": 0.614, + "1992": 0.619, + "1993": 0.624, + "1994": 0.631, + "1995": 0.64, + "1996": 0.649, + "1997": 0.652, + "1998": 0.658, + "1999": 0.669, + "2000": 0.669, + "2001": 0.67, + "2002": 0.67, + "2003": 0.677, + "2004": 0.684, + "2005": 0.69, + "2006": 0.697, + "2007": 0.701, + "2008": 0.697, + "2009": 0.701, + "2010": 0.706, + "2011": 0.706, + "2012": 0.706, + "2013": 0.703, + "2014": 0.702, + "2015": 0.701, + "2016": 0.699, + "2017": 0.71, + "2018": 0.72, + "2019": 0.726, + "2020": 0.712, + "2021": 0.724 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr118", + "Region": "Punjab", + "1990": 0.511, + "1991": 0.509, + "1992": 0.514, + "1993": 0.524, + "1994": 0.536, + "1995": 0.55, + "1996": 0.564, + "1997": 0.573, + "1998": 0.585, + "1999": 0.601, + "2000": 0.604, + "2001": 0.609, + "2002": 0.613, + "2003": 0.622, + "2004": 0.632, + "2005": 0.642, + "2006": 0.652, + "2007": 0.661, + "2008": 0.661, + "2009": 0.669, + "2010": 0.677, + "2011": 0.682, + "2012": 0.686, + "2013": 0.696, + "2014": 0.708, + "2015": 0.721, + "2016": 0.733, + "2017": 0.734, + "2018": 0.734, + "2019": 0.731, + "2020": 0.717, + "2021": 0.729 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr119", + "Region": "Rajasthan", + "1990": 0.424, + "1991": 0.422, + "1992": 0.427, + "1993": 0.434, + "1994": 0.444, + "1995": 0.454, + "1996": 0.465, + "1997": 0.471, + "1998": 0.48, + "1999": 0.493, + "2000": 0.494, + "2001": 0.497, + "2002": 0.499, + "2003": 0.506, + "2004": 0.513, + "2005": 0.521, + "2006": 0.528, + "2007": 0.537, + "2008": 0.54, + "2009": 0.549, + "2010": 0.558, + "2011": 0.564, + "2012": 0.57, + "2013": 0.581, + "2014": 0.594, + "2015": 0.607, + "2016": 0.619, + "2017": 0.636, + "2018": 0.65, + "2019": 0.661, + "2020": 0.648, + "2021": 0.66 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr120", + "Region": "Sikkim", + "1990": 0.52, + "1991": 0.518, + "1992": 0.523, + "1993": 0.527, + "1994": 0.534, + "1995": 0.542, + "1996": 0.551, + "1997": 0.553, + "1998": 0.559, + "1999": 0.57, + "2000": 0.569, + "2001": 0.572, + "2002": 0.572, + "2003": 0.578, + "2004": 0.585, + "2005": 0.592, + "2006": 0.598, + "2007": 0.601, + "2008": 0.596, + "2009": 0.599, + "2010": 0.602, + "2011": 0.601, + "2012": 0.6, + "2013": 0.623, + "2014": 0.648, + "2015": 0.674, + "2016": 0.699, + "2017": 0.696, + "2018": 0.692, + "2019": 0.685, + "2020": 0.671, + "2021": 0.683 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr121", + "Region": "Tamil Nadu", + "1990": 0.445, + "1991": 0.443, + "1992": 0.448, + "1993": 0.453, + "1994": 0.462, + "1995": 0.471, + "1996": 0.481, + "1997": 0.486, + "1998": 0.493, + "1999": 0.505, + "2000": 0.508, + "2001": 0.513, + "2002": 0.517, + "2003": 0.527, + "2004": 0.537, + "2005": 0.547, + "2006": 0.557, + "2007": 0.574, + "2008": 0.583, + "2009": 0.6, + "2010": 0.617, + "2011": 0.631, + "2012": 0.644, + "2013": 0.646, + "2014": 0.651, + "2015": 0.656, + "2016": 0.659, + "2017": 0.666, + "2018": 0.671, + "2019": 0.672, + "2020": 0.659, + "2021": 0.671 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr130", + "Region": "Telangana", + "1990": 0.564, + "1991": 0.562, + "1992": 0.567, + "1993": 0.571, + "1994": 0.578, + "1995": 0.587, + "1996": 0.596, + "1997": 0.598, + "1998": 0.605, + "1999": 0.615, + "2000": 0.615, + "2001": 0.616, + "2002": 0.616, + "2003": 0.622, + "2004": 0.629, + "2005": 0.635, + "2006": 0.642, + "2007": 0.646, + "2008": 0.642, + "2009": 0.646, + "2010": 0.65, + "2011": 0.651, + "2012": 0.651, + "2013": 0.649, + "2014": 0.65, + "2015": 0.651, + "2016": 0.651, + "2017": 0.659, + "2018": 0.666, + "2019": 0.669, + "2020": 0.655, + "2021": 0.667 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr126", + "Region": "Tripura", + "1990": 0.408, + "1991": 0.406, + "1992": 0.411, + "1993": 0.416, + "1994": 0.424, + "1995": 0.433, + "1996": 0.442, + "1997": 0.447, + "1998": 0.454, + "1999": 0.465, + "2000": 0.468, + "2001": 0.473, + "2002": 0.477, + "2003": 0.486, + "2004": 0.495, + "2005": 0.505, + "2006": 0.514, + "2007": 0.524, + "2008": 0.526, + "2009": 0.536, + "2010": 0.545, + "2011": 0.552, + "2012": 0.558, + "2013": 0.56, + "2014": 0.563, + "2015": 0.567, + "2016": 0.571, + "2017": 0.578, + "2018": 0.585, + "2019": 0.588, + "2020": 0.575, + "2021": 0.586 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr123", + "Region": "Uttar Pradesh", + "1990": 0.412, + "1991": 0.411, + "1992": 0.416, + "1993": 0.418, + "1994": 0.423, + "1995": 0.43, + "1996": 0.436, + "1997": 0.438, + "1998": 0.442, + "1999": 0.45, + "2000": 0.453, + "2001": 0.457, + "2002": 0.461, + "2003": 0.469, + "2004": 0.478, + "2005": 0.487, + "2006": 0.496, + "2007": 0.5, + "2008": 0.498, + "2009": 0.502, + "2010": 0.506, + "2011": 0.507, + "2012": 0.508, + "2013": 0.519, + "2014": 0.531, + "2015": 0.545, + "2016": 0.557, + "2017": 0.571, + "2018": 0.583, + "2019": 0.593, + "2020": 0.58, + "2021": 0.591 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr127", + "Region": "Uttaranchal", + "1990": 0.518, + "1991": 0.516, + "1992": 0.521, + "1993": 0.525, + "1994": 0.532, + "1995": 0.54, + "1996": 0.548, + "1997": 0.551, + "1998": 0.557, + "1999": 0.567, + "2000": 0.567, + "2001": 0.568, + "2002": 0.568, + "2003": 0.574, + "2004": 0.58, + "2005": 0.587, + "2006": 0.593, + "2007": 0.597, + "2008": 0.593, + "2009": 0.597, + "2010": 0.601, + "2011": 0.602, + "2012": 0.602, + "2013": 0.613, + "2014": 0.627, + "2015": 0.641, + "2016": 0.654, + "2017": 0.665, + "2018": 0.674, + "2019": 0.679, + "2020": 0.666, + "2021": 0.678 + }, + { + "Country": "India", + "Continent": "Asia/Pacific", + "ISO_Code": "IND", + "Level": "Subnat", + "GDLCODE": "INDr122", + "Region": "West Bengal", + "1990": 0.429, + "1991": 0.427, + "1992": 0.432, + "1993": 0.435, + "1994": 0.441, + "1995": 0.448, + "1996": 0.455, + "1997": 0.457, + "1998": 0.462, + "1999": 0.471, + "2000": 0.472, + "2001": 0.476, + "2002": 0.477, + "2003": 0.485, + "2004": 0.492, + "2005": 0.499, + "2006": 0.507, + "2007": 0.514, + "2008": 0.514, + "2009": 0.521, + "2010": 0.528, + "2011": 0.532, + "2012": 0.535, + "2013": 0.545, + "2014": 0.556, + "2015": 0.569, + "2016": 0.58, + "2017": 0.589, + "2018": 0.596, + "2019": 0.6, + "2020": 0.587, + "2021": 0.598 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "National", + "GDLCODE": "IDNt", + "Region": "Total", + "1990": 0.565, + "1991": 0.575, + "1992": 0.583, + "1993": 0.592, + "1994": 0.603, + "1995": 0.612, + "1996": 0.621, + "1997": 0.626, + "1998": 0.598, + "1999": 0.594, + "2000": 0.6, + "2001": 0.608, + "2002": 0.614, + "2003": 0.618, + "2004": 0.622, + "2005": 0.628, + "2006": 0.635, + "2007": 0.642, + "2008": 0.65, + "2009": 0.655, + "2010": 0.663, + "2011": 0.67, + "2012": 0.677, + "2013": 0.683, + "2014": 0.687, + "2015": 0.693, + "2016": 0.699, + "2017": 0.704, + "2018": 0.71, + "2019": 0.716, + "2020": 0.712, + "2021": 0.716 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr116", + "Region": "Bali", + "1990": 0.615, + "1991": 0.626, + "1992": 0.634, + "1993": 0.644, + "1994": 0.654, + "1995": 0.664, + "1996": 0.674, + "1997": 0.678, + "1998": 0.655, + "1999": 0.657, + "2000": 0.669, + "2001": 0.683, + "2002": 0.695, + "2003": 0.704, + "2004": 0.702, + "2005": 0.702, + "2006": 0.702, + "2007": 0.704, + "2008": 0.708, + "2009": 0.71, + "2010": 0.714, + "2011": 0.718, + "2012": 0.721, + "2013": 0.727, + "2014": 0.731, + "2015": 0.736, + "2016": 0.741, + "2017": 0.746, + "2018": 0.753, + "2019": 0.759, + "2020": 0.754, + "2021": 0.759 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr109", + "Region": "Bangka Belitung", + "1990": 0.618, + "1991": 0.629, + "1992": 0.637, + "1993": 0.647, + "1994": 0.657, + "1995": 0.667, + "1996": 0.677, + "1997": 0.682, + "1998": 0.649, + "1999": 0.642, + "2000": 0.644, + "2001": 0.649, + "2002": 0.651, + "2003": 0.652, + "2004": 0.66, + "2005": 0.669, + "2006": 0.68, + "2007": 0.692, + "2008": 0.696, + "2009": 0.698, + "2010": 0.703, + "2011": 0.707, + "2012": 0.711, + "2013": 0.715, + "2014": 0.718, + "2015": 0.722, + "2016": 0.726, + "2017": 0.73, + "2018": 0.737, + "2019": 0.742, + "2020": 0.738, + "2021": 0.743 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr115", + "Region": "Banten", + "1990": 0.624, + "1991": 0.635, + "1992": 0.643, + "1993": 0.652, + "1994": 0.663, + "1995": 0.673, + "1996": 0.683, + "1997": 0.687, + "1998": 0.655, + "1999": 0.648, + "2000": 0.65, + "2001": 0.655, + "2002": 0.657, + "2003": 0.658, + "2004": 0.656, + "2005": 0.656, + "2006": 0.658, + "2007": 0.659, + "2008": 0.667, + "2009": 0.672, + "2010": 0.681, + "2011": 0.688, + "2012": 0.695, + "2013": 0.702, + "2014": 0.708, + "2015": 0.714, + "2016": 0.721, + "2017": 0.728, + "2018": 0.734, + "2019": 0.74, + "2020": 0.736, + "2021": 0.74 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr107", + "Region": "Bengkulu", + "1990": 0.545, + "1991": 0.556, + "1992": 0.563, + "1993": 0.572, + "1994": 0.583, + "1995": 0.592, + "1996": 0.601, + "1997": 0.605, + "1998": 0.578, + "1999": 0.575, + "2000": 0.581, + "2001": 0.589, + "2002": 0.595, + "2003": 0.599, + "2004": 0.6, + "2005": 0.604, + "2006": 0.608, + "2007": 0.613, + "2008": 0.623, + "2009": 0.631, + "2010": 0.641, + "2011": 0.651, + "2012": 0.66, + "2013": 0.668, + "2014": 0.675, + "2015": 0.683, + "2016": 0.691, + "2017": 0.699, + "2018": 0.705, + "2019": 0.711, + "2020": 0.707, + "2021": 0.711 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr112", + "Region": "Central Java", + "1990": 0.548, + "1991": 0.559, + "1992": 0.567, + "1993": 0.576, + "1994": 0.586, + "1995": 0.595, + "1996": 0.604, + "1997": 0.608, + "1998": 0.579, + "1999": 0.573, + "2000": 0.577, + "2001": 0.582, + "2002": 0.586, + "2003": 0.587, + "2004": 0.595, + "2005": 0.604, + "2006": 0.615, + "2007": 0.626, + "2008": 0.636, + "2009": 0.643, + "2010": 0.653, + "2011": 0.662, + "2012": 0.671, + "2013": 0.678, + "2014": 0.684, + "2015": 0.691, + "2016": 0.698, + "2017": 0.704, + "2018": 0.711, + "2019": 0.716, + "2020": 0.712, + "2021": 0.716 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr121", + "Region": "Central Kalimantan", + "1990": 0.552, + "1991": 0.563, + "1992": 0.571, + "1993": 0.58, + "1994": 0.59, + "1995": 0.599, + "1996": 0.608, + "1997": 0.613, + "1998": 0.583, + "1999": 0.577, + "2000": 0.58, + "2001": 0.585, + "2002": 0.588, + "2003": 0.589, + "2004": 0.594, + "2005": 0.601, + "2006": 0.609, + "2007": 0.618, + "2008": 0.627, + "2009": 0.633, + "2010": 0.642, + "2011": 0.65, + "2012": 0.658, + "2013": 0.66, + "2014": 0.661, + "2015": 0.662, + "2016": 0.664, + "2017": 0.666, + "2018": 0.672, + "2019": 0.678, + "2020": 0.674, + "2021": 0.678 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr125", + "Region": "Central Sulawesi", + "1990": 0.534, + "1991": 0.544, + "1992": 0.552, + "1993": 0.561, + "1994": 0.571, + "1995": 0.58, + "1996": 0.589, + "1997": 0.593, + "1998": 0.566, + "1999": 0.563, + "2000": 0.569, + "2001": 0.577, + "2002": 0.583, + "2003": 0.587, + "2004": 0.587, + "2005": 0.589, + "2006": 0.592, + "2007": 0.596, + "2008": 0.604, + "2009": 0.609, + "2010": 0.618, + "2011": 0.625, + "2012": 0.632, + "2013": 0.639, + "2014": 0.644, + "2015": 0.65, + "2016": 0.657, + "2017": 0.663, + "2018": 0.669, + "2019": 0.675, + "2020": 0.671, + "2021": 0.675 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr101", + "Region": "DI Aceh", + "1990": 0.536, + "1991": 0.547, + "1992": 0.554, + "1993": 0.563, + "1994": 0.573, + "1995": 0.582, + "1996": 0.592, + "1997": 0.596, + "1998": 0.571, + "1999": 0.569, + "2000": 0.576, + "2001": 0.586, + "2002": 0.593, + "2003": 0.599, + "2004": 0.601, + "2005": 0.606, + "2006": 0.611, + "2007": 0.617, + "2008": 0.626, + "2009": 0.632, + "2010": 0.641, + "2011": 0.649, + "2012": 0.657, + "2013": 0.662, + "2014": 0.665, + "2015": 0.67, + "2016": 0.674, + "2017": 0.679, + "2018": 0.685, + "2019": 0.691, + "2020": 0.687, + "2021": 0.691 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr113", + "Region": "DI Yogyakarta", + "1990": 0.596, + "1991": 0.607, + "1992": 0.615, + "1993": 0.624, + "1994": 0.635, + "1995": 0.644, + "1996": 0.654, + "1997": 0.659, + "1998": 0.629, + "1999": 0.623, + "2000": 0.627, + "2001": 0.634, + "2002": 0.638, + "2003": 0.64, + "2004": 0.648, + "2005": 0.658, + "2006": 0.668, + "2007": 0.679, + "2008": 0.684, + "2009": 0.685, + "2010": 0.69, + "2011": 0.694, + "2012": 0.697, + "2013": 0.702, + "2014": 0.705, + "2015": 0.709, + "2016": 0.714, + "2017": 0.718, + "2018": 0.724, + "2019": 0.73, + "2020": 0.726, + "2021": 0.73 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr110", + "Region": "DKI Jakarta", + "1990": 0.674, + "1991": 0.685, + "1992": 0.694, + "1993": 0.704, + "1994": 0.715, + "1995": 0.725, + "1996": 0.735, + "1997": 0.74, + "1998": 0.712, + "1999": 0.711, + "2000": 0.719, + "2001": 0.73, + "2002": 0.739, + "2003": 0.745, + "2004": 0.749, + "2005": 0.754, + "2006": 0.761, + "2007": 0.768, + "2008": 0.766, + "2009": 0.761, + "2010": 0.759, + "2011": 0.756, + "2012": 0.753, + "2013": 0.755, + "2014": 0.755, + "2015": 0.756, + "2016": 0.758, + "2017": 0.76, + "2018": 0.766, + "2019": 0.772, + "2020": 0.768, + "2021": 0.772 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr114", + "Region": "East Java", + "1990": 0.549, + "1991": 0.56, + "1992": 0.568, + "1993": 0.577, + "1994": 0.587, + "1995": 0.596, + "1996": 0.605, + "1997": 0.61, + "1998": 0.586, + "1999": 0.586, + "2000": 0.595, + "2001": 0.606, + "2002": 0.615, + "2003": 0.622, + "2004": 0.62, + "2005": 0.62, + "2006": 0.621, + "2007": 0.622, + "2008": 0.634, + "2009": 0.643, + "2010": 0.655, + "2011": 0.666, + "2012": 0.677, + "2013": 0.684, + "2014": 0.691, + "2015": 0.698, + "2016": 0.705, + "2017": 0.712, + "2018": 0.718, + "2019": 0.724, + "2020": 0.72, + "2021": 0.724 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr123", + "Region": "East Kalimantan", + "1990": 0.641, + "1991": 0.652, + "1992": 0.66, + "1993": 0.67, + "1994": 0.681, + "1995": 0.69, + "1996": 0.7, + "1997": 0.705, + "1998": 0.675, + "1999": 0.671, + "2000": 0.676, + "2001": 0.684, + "2002": 0.69, + "2003": 0.693, + "2004": 0.695, + "2005": 0.699, + "2006": 0.705, + "2007": 0.71, + "2008": 0.713, + "2009": 0.712, + "2010": 0.715, + "2011": 0.716, + "2012": 0.718, + "2013": 0.72, + "2014": 0.72, + "2015": 0.722, + "2016": 0.723, + "2017": 0.725, + "2018": 0.731, + "2019": 0.737, + "2020": 0.733, + "2021": 0.737 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr118", + "Region": "East Nusa Tenggara", + "1990": 0.497, + "1991": 0.507, + "1992": 0.515, + "1993": 0.523, + "1994": 0.533, + "1995": 0.542, + "1996": 0.551, + "1997": 0.555, + "1998": 0.517, + "1999": 0.503, + "2000": 0.497, + "2001": 0.493, + "2002": 0.487, + "2003": 0.48, + "2004": 0.489, + "2005": 0.499, + "2006": 0.51, + "2007": 0.522, + "2008": 0.531, + "2009": 0.538, + "2010": 0.547, + "2011": 0.556, + "2012": 0.564, + "2013": 0.571, + "2014": 0.577, + "2015": 0.583, + "2016": 0.59, + "2017": 0.597, + "2018": 0.603, + "2019": 0.608, + "2020": 0.604, + "2021": 0.608 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr119", + "Region": "East Timor", + "1990": 0.475, + "1991": 0.485, + "1992": 0.493, + "1993": 0.501, + "1994": 0.511, + "1995": 0.519, + "1996": 0.528, + "1997": 0.532, + "1998": 0.503, + "1999": 0.497, + "2000": 0.499, + "2001": 0.503, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": null, + "2011": null, + "2012": null, + "2013": null, + "2014": null, + "2015": null, + "2016": null, + "2017": null, + "2018": null, + "2019": null, + "2020": null, + "2021": null + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr128", + "Region": "Gorontalo", + "1990": 0.528, + "1991": 0.539, + "1992": 0.546, + "1993": 0.555, + "1994": 0.565, + "1995": 0.574, + "1996": 0.583, + "1997": 0.588, + "1998": 0.557, + "1999": 0.551, + "2000": 0.553, + "2001": 0.557, + "2002": 0.56, + "2003": 0.56, + "2004": 0.565, + "2005": 0.573, + "2006": 0.581, + "2007": 0.59, + "2008": 0.597, + "2009": 0.601, + "2010": 0.609, + "2011": 0.615, + "2012": 0.621, + "2013": 0.631, + "2014": 0.639, + "2015": 0.648, + "2016": 0.658, + "2017": 0.667, + "2018": 0.673, + "2019": 0.679, + "2020": 0.675, + "2021": 0.679 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr130", + "Region": "Irian Jaya (Papua and Papua Barat)", + "1990": 0.553, + "1991": 0.564, + "1992": 0.571, + "1993": 0.58, + "1994": 0.591, + "1995": 0.6, + "1996": 0.609, + "1997": 0.614, + "1998": 0.581, + "1999": 0.573, + "2000": 0.574, + "2001": 0.577, + "2002": 0.578, + "2003": 0.577, + "2004": 0.574, + "2005": 0.572, + "2006": 0.571, + "2007": 0.57, + "2008": 0.567, + "2009": 0.562, + "2010": 0.56, + "2011": 0.556, + "2012": 0.552, + "2013": 0.568, + "2014": 0.582, + "2015": 0.597, + "2016": 0.612, + "2017": 0.627, + "2018": 0.633, + "2019": 0.638, + "2020": 0.634, + "2021": 0.638 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr105", + "Region": "Jambi", + "1990": 0.539, + "1991": 0.55, + "1992": 0.557, + "1993": 0.566, + "1994": 0.576, + "1995": 0.585, + "1996": 0.595, + "1997": 0.599, + "1998": 0.574, + "1999": 0.573, + "2000": 0.581, + "2001": 0.592, + "2002": 0.6, + "2003": 0.606, + "2004": 0.614, + "2005": 0.624, + "2006": 0.635, + "2007": 0.646, + "2008": 0.65, + "2009": 0.651, + "2010": 0.655, + "2011": 0.658, + "2012": 0.661, + "2013": 0.67, + "2014": 0.679, + "2015": 0.687, + "2016": 0.696, + "2017": 0.706, + "2018": 0.712, + "2019": 0.717, + "2020": 0.713, + "2021": 0.718 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr108", + "Region": "Lampung", + "1990": 0.53, + "1991": 0.54, + "1992": 0.548, + "1993": 0.557, + "1994": 0.567, + "1995": 0.576, + "1996": 0.585, + "1997": 0.589, + "1998": 0.561, + "1999": 0.556, + "2000": 0.559, + "2001": 0.565, + "2002": 0.569, + "2003": 0.571, + "2004": 0.577, + "2005": 0.585, + "2006": 0.593, + "2007": 0.603, + "2008": 0.613, + "2009": 0.622, + "2010": 0.633, + "2011": 0.643, + "2012": 0.653, + "2013": 0.662, + "2014": 0.67, + "2015": 0.679, + "2016": 0.688, + "2017": 0.697, + "2018": 0.704, + "2019": 0.709, + "2020": 0.705, + "2021": 0.709 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr129", + "Region": "Maluku", + "1990": 0.527, + "1991": 0.538, + "1992": 0.545, + "1993": 0.554, + "1994": 0.564, + "1995": 0.573, + "1996": 0.582, + "1997": 0.586, + "1998": 0.561, + "1999": 0.559, + "2000": 0.565, + "2001": 0.574, + "2002": 0.581, + "2003": 0.586, + "2004": 0.588, + "2005": 0.592, + "2006": 0.597, + "2007": 0.602, + "2008": 0.609, + "2009": 0.612, + "2010": 0.619, + "2011": 0.625, + "2012": 0.631, + "2013": 0.636, + "2014": 0.64, + "2015": 0.645, + "2016": 0.65, + "2017": 0.655, + "2018": 0.661, + "2019": 0.666, + "2020": 0.662, + "2021": 0.667 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr124", + "Region": "North Sulawesi", + "1990": 0.56, + "1991": 0.571, + "1992": 0.578, + "1993": 0.587, + "1994": 0.598, + "1995": 0.607, + "1996": 0.616, + "1997": 0.621, + "1998": 0.598, + "1999": 0.6, + "2000": 0.611, + "2001": 0.624, + "2002": 0.635, + "2003": 0.643, + "2004": 0.645, + "2005": 0.648, + "2006": 0.653, + "2007": 0.658, + "2008": 0.661, + "2009": 0.662, + "2010": 0.666, + "2011": 0.668, + "2012": 0.671, + "2013": 0.677, + "2014": 0.683, + "2015": 0.689, + "2016": 0.696, + "2017": 0.702, + "2018": 0.708, + "2019": 0.714, + "2020": 0.71, + "2021": 0.714 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr102", + "Region": "North Sumatra", + "1990": 0.592, + "1991": 0.603, + "1992": 0.611, + "1993": 0.621, + "1994": 0.631, + "1995": 0.64, + "1996": 0.65, + "1997": 0.655, + "1998": 0.622, + "1999": 0.614, + "2000": 0.616, + "2001": 0.62, + "2002": 0.621, + "2003": 0.621, + "2004": 0.628, + "2005": 0.637, + "2006": 0.646, + "2007": 0.657, + "2008": 0.66, + "2009": 0.661, + "2010": 0.665, + "2011": 0.667, + "2012": 0.67, + "2013": 0.674, + "2014": 0.678, + "2015": 0.682, + "2016": 0.686, + "2017": 0.691, + "2018": 0.697, + "2019": 0.703, + "2020": 0.698, + "2021": 0.703 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr104", + "Region": "Riau (incl. Riau islands)", + "1990": 0.595, + "1991": 0.605, + "1992": 0.614, + "1993": 0.623, + "1994": 0.633, + "1995": 0.643, + "1996": 0.653, + "1997": 0.657, + "1998": 0.627, + "1999": 0.622, + "2000": 0.626, + "2001": 0.632, + "2002": 0.636, + "2003": 0.638, + "2004": 0.644, + "2005": 0.651, + "2006": 0.66, + "2007": 0.669, + "2008": 0.674, + "2009": 0.676, + "2010": 0.682, + "2011": 0.687, + "2012": 0.691, + "2013": 0.695, + "2014": 0.698, + "2015": 0.702, + "2016": 0.706, + "2017": 0.709, + "2018": 0.715, + "2019": 0.721, + "2020": 0.717, + "2021": 0.721 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr122", + "Region": "South Kalimantan", + "1990": 0.598, + "1991": 0.608, + "1992": 0.617, + "1993": 0.626, + "1994": 0.636, + "1995": 0.646, + "1996": 0.656, + "1997": 0.66, + "1998": 0.622, + "1999": 0.61, + "2000": 0.606, + "2001": 0.605, + "2002": 0.602, + "2003": 0.596, + "2004": 0.612, + "2005": 0.63, + "2006": 0.649, + "2007": 0.669, + "2008": 0.672, + "2009": 0.672, + "2010": 0.675, + "2011": 0.676, + "2012": 0.678, + "2013": 0.68, + "2014": 0.682, + "2015": 0.683, + "2016": 0.685, + "2017": 0.687, + "2018": 0.693, + "2019": 0.699, + "2020": 0.695, + "2021": 0.699 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr126", + "Region": "South Sulawesi (incl Sulawesi Barat)", + "1990": 0.579, + "1991": 0.589, + "1992": 0.597, + "1993": 0.606, + "1994": 0.617, + "1995": 0.626, + "1996": 0.636, + "1997": 0.64, + "1998": 0.612, + "1999": 0.608, + "2000": 0.614, + "2001": 0.621, + "2002": 0.627, + "2003": 0.63, + "2004": 0.629, + "2005": 0.629, + "2006": 0.631, + "2007": 0.633, + "2008": 0.641, + "2009": 0.645, + "2010": 0.653, + "2011": 0.66, + "2012": 0.666, + "2013": 0.671, + "2014": 0.675, + "2015": 0.68, + "2016": 0.684, + "2017": 0.689, + "2018": 0.695, + "2019": 0.701, + "2020": 0.697, + "2021": 0.701 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr106", + "Region": "South Sumatra", + "1990": 0.581, + "1991": 0.591, + "1992": 0.599, + "1993": 0.608, + "1994": 0.619, + "1995": 0.628, + "1996": 0.638, + "1997": 0.642, + "1998": 0.605, + "1999": 0.593, + "2000": 0.59, + "2001": 0.589, + "2002": 0.586, + "2003": 0.581, + "2004": 0.59, + "2005": 0.601, + "2006": 0.613, + "2007": 0.625, + "2008": 0.635, + "2009": 0.642, + "2010": 0.652, + "2011": 0.661, + "2012": 0.67, + "2013": 0.676, + "2014": 0.68, + "2015": 0.685, + "2016": 0.69, + "2017": 0.695, + "2018": 0.701, + "2019": 0.707, + "2020": 0.703, + "2021": 0.707 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr127", + "Region": "Southeast Sulawesi", + "1990": 0.547, + "1991": 0.557, + "1992": 0.565, + "1993": 0.574, + "1994": 0.584, + "1995": 0.593, + "1996": 0.603, + "1997": 0.607, + "1998": 0.573, + "1999": 0.563, + "2000": 0.562, + "2001": 0.563, + "2002": 0.562, + "2003": 0.559, + "2004": 0.568, + "2005": 0.578, + "2006": 0.589, + "2007": 0.601, + "2008": 0.609, + "2009": 0.614, + "2010": 0.623, + "2011": 0.63, + "2012": 0.637, + "2013": 0.646, + "2014": 0.654, + "2015": 0.662, + "2016": 0.67, + "2017": 0.679, + "2018": 0.685, + "2019": 0.691, + "2020": 0.687, + "2021": 0.691 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr111", + "Region": "West Java", + "1990": 0.569, + "1991": 0.58, + "1992": 0.588, + "1993": 0.597, + "1994": 0.607, + "1995": 0.617, + "1996": 0.626, + "1997": 0.631, + "1998": 0.603, + "1999": 0.6, + "2000": 0.606, + "2001": 0.615, + "2002": 0.621, + "2003": 0.625, + "2004": 0.634, + "2005": 0.644, + "2006": 0.655, + "2007": 0.667, + "2008": 0.674, + "2009": 0.678, + "2010": 0.685, + "2011": 0.691, + "2012": 0.697, + "2013": 0.702, + "2014": 0.705, + "2015": 0.708, + "2016": 0.713, + "2017": 0.717, + "2018": 0.723, + "2019": 0.728, + "2020": 0.724, + "2021": 0.729 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr120", + "Region": "West Kalimantan", + "1990": 0.59, + "1991": 0.601, + "1992": 0.609, + "1993": 0.618, + "1994": 0.628, + "1995": 0.638, + "1996": 0.647, + "1997": 0.652, + "1998": 0.612, + "1999": 0.598, + "2000": 0.592, + "2001": 0.589, + "2002": 0.584, + "2003": 0.576, + "2004": 0.586, + "2005": 0.597, + "2006": 0.61, + "2007": 0.623, + "2008": 0.631, + "2009": 0.636, + "2010": 0.644, + "2011": 0.65, + "2012": 0.657, + "2013": 0.66, + "2014": 0.662, + "2015": 0.664, + "2016": 0.666, + "2017": 0.669, + "2018": 0.675, + "2019": 0.68, + "2020": 0.676, + "2021": 0.68 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr117", + "Region": "West Nusa Tenggara", + "1990": 0.519, + "1991": 0.529, + "1992": 0.537, + "1993": 0.545, + "1994": 0.555, + "1995": 0.564, + "1996": 0.573, + "1997": 0.578, + "1998": 0.546, + "1999": 0.539, + "2000": 0.54, + "2001": 0.543, + "2002": 0.544, + "2003": 0.543, + "2004": 0.558, + "2005": 0.575, + "2006": 0.593, + "2007": 0.612, + "2008": 0.614, + "2009": 0.613, + "2010": 0.616, + "2011": 0.617, + "2012": 0.618, + "2013": 0.63, + "2014": 0.64, + "2015": 0.651, + "2016": 0.662, + "2017": 0.673, + "2018": 0.679, + "2019": 0.685, + "2020": 0.681, + "2021": 0.685 + }, + { + "Country": "Indonesia", + "Continent": "Asia/Pacific", + "ISO_Code": "IDN", + "Level": "Subnat", + "GDLCODE": "IDNr103", + "Region": "West Sumatra", + "1990": 0.561, + "1991": 0.571, + "1992": 0.579, + "1993": 0.588, + "1994": 0.598, + "1995": 0.608, + "1996": 0.617, + "1997": 0.621, + "1998": 0.597, + "1999": 0.596, + "2000": 0.605, + "2001": 0.616, + "2002": 0.624, + "2003": 0.631, + "2004": 0.628, + "2005": 0.628, + "2006": 0.628, + "2007": 0.629, + "2008": 0.64, + "2009": 0.649, + "2010": 0.66, + "2011": 0.67, + "2012": 0.68, + "2013": 0.684, + "2014": 0.686, + "2015": 0.689, + "2016": 0.693, + "2017": 0.696, + "2018": 0.702, + "2019": 0.708, + "2020": 0.703, + "2021": 0.708 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "National", + "GDLCODE": "IRNt", + "Region": "Total", + "1990": 0.673, + "1991": 0.688, + "1992": 0.689, + "1993": 0.688, + "1994": 0.683, + "1995": 0.684, + "1996": 0.69, + "1997": 0.689, + "1998": 0.691, + "1999": 0.69, + "2000": 0.697, + "2001": 0.696, + "2002": 0.705, + "2003": 0.716, + "2004": 0.72, + "2005": 0.723, + "2006": 0.729, + "2007": 0.739, + "2008": 0.738, + "2009": 0.738, + "2010": 0.744, + "2011": 0.747, + "2012": 0.734, + "2013": 0.732, + "2014": 0.736, + "2015": 0.732, + "2016": 0.749, + "2017": 0.752, + "2018": 0.741, + "2019": 0.728, + "2020": 0.731, + "2021": 0.735 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr125", + "Region": "Ardebil", + "1990": 0.658, + "1991": 0.672, + "1992": 0.673, + "1993": 0.672, + "1994": 0.667, + "1995": 0.669, + "1996": 0.674, + "1997": 0.673, + "1998": 0.675, + "1999": 0.674, + "2000": 0.681, + "2001": 0.68, + "2002": 0.689, + "2003": 0.7, + "2004": 0.704, + "2005": 0.707, + "2006": 0.713, + "2007": 0.723, + "2008": 0.722, + "2009": 0.721, + "2010": 0.728, + "2011": 0.73, + "2012": 0.718, + "2013": 0.716, + "2014": 0.72, + "2015": 0.716, + "2016": 0.733, + "2017": 0.736, + "2018": 0.725, + "2019": 0.712, + "2020": 0.714, + "2021": 0.719 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr119", + "Region": "Bushehr", + "1990": 0.692, + "1991": 0.706, + "1992": 0.708, + "1993": 0.707, + "1994": 0.702, + "1995": 0.703, + "1996": 0.709, + "1997": 0.708, + "1998": 0.709, + "1999": 0.709, + "2000": 0.716, + "2001": 0.715, + "2002": 0.724, + "2003": 0.735, + "2004": 0.739, + "2005": 0.742, + "2006": 0.748, + "2007": 0.759, + "2008": 0.758, + "2009": 0.757, + "2010": 0.764, + "2011": 0.766, + "2012": 0.753, + "2013": 0.751, + "2014": 0.755, + "2015": 0.751, + "2016": 0.769, + "2017": 0.772, + "2018": 0.761, + "2019": 0.747, + "2020": 0.75, + "2021": 0.755 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr115", + "Region": "Chaharmahal and Bakhtiyari", + "1990": 0.677, + "1991": 0.692, + "1992": 0.693, + "1993": 0.692, + "1994": 0.687, + "1995": 0.688, + "1996": 0.694, + "1997": 0.693, + "1998": 0.695, + "1999": 0.694, + "2000": 0.701, + "2001": 0.7, + "2002": 0.709, + "2003": 0.72, + "2004": 0.724, + "2005": 0.727, + "2006": 0.733, + "2007": 0.744, + "2008": 0.742, + "2009": 0.742, + "2010": 0.749, + "2011": 0.751, + "2012": 0.738, + "2013": 0.736, + "2014": 0.74, + "2015": 0.736, + "2016": 0.753, + "2017": 0.757, + "2018": 0.745, + "2019": 0.732, + "2020": 0.735, + "2021": 0.739 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr104", + "Region": "EastAzarbayejan", + "1990": 0.675, + "1991": 0.689, + "1992": 0.69, + "1993": 0.689, + "1994": 0.684, + "1995": 0.686, + "1996": 0.691, + "1997": 0.69, + "1998": 0.692, + "1999": 0.692, + "2000": 0.698, + "2001": 0.698, + "2002": 0.706, + "2003": 0.717, + "2004": 0.721, + "2005": 0.724, + "2006": 0.73, + "2007": 0.741, + "2008": 0.74, + "2009": 0.739, + "2010": 0.746, + "2011": 0.748, + "2012": 0.735, + "2013": 0.733, + "2014": 0.737, + "2015": 0.733, + "2016": 0.75, + "2017": 0.754, + "2018": 0.743, + "2019": 0.729, + "2020": 0.732, + "2021": 0.737 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr111", + "Region": "Esfahan", + "1990": 0.71, + "1991": 0.725, + "1992": 0.727, + "1993": 0.726, + "1994": 0.721, + "1995": 0.722, + "1996": 0.728, + "1997": 0.727, + "1998": 0.728, + "1999": 0.728, + "2000": 0.735, + "2001": 0.734, + "2002": 0.743, + "2003": 0.754, + "2004": 0.758, + "2005": 0.761, + "2006": 0.767, + "2007": 0.778, + "2008": 0.777, + "2009": 0.776, + "2010": 0.783, + "2011": 0.786, + "2012": 0.773, + "2013": 0.771, + "2014": 0.775, + "2015": 0.771, + "2016": 0.788, + "2017": 0.792, + "2018": 0.78, + "2019": 0.767, + "2020": 0.769, + "2021": 0.774 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr108", + "Region": "Fars", + "1990": 0.681, + "1991": 0.695, + "1992": 0.697, + "1993": 0.696, + "1994": 0.691, + "1995": 0.692, + "1996": 0.698, + "1997": 0.697, + "1998": 0.698, + "1999": 0.698, + "2000": 0.704, + "2001": 0.704, + "2002": 0.713, + "2003": 0.723, + "2004": 0.728, + "2005": 0.731, + "2006": 0.737, + "2007": 0.747, + "2008": 0.746, + "2009": 0.745, + "2010": 0.752, + "2011": 0.754, + "2012": 0.742, + "2013": 0.74, + "2014": 0.744, + "2015": 0.74, + "2016": 0.757, + "2017": 0.76, + "2018": 0.749, + "2019": 0.736, + "2020": 0.739, + "2021": 0.743 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr102", + "Region": "Gilan", + "1990": 0.655, + "1991": 0.669, + "1992": 0.67, + "1993": 0.669, + "1994": 0.664, + "1995": 0.666, + "1996": 0.671, + "1997": 0.67, + "1998": 0.672, + "1999": 0.671, + "2000": 0.678, + "2001": 0.677, + "2002": 0.686, + "2003": 0.697, + "2004": 0.701, + "2005": 0.704, + "2006": 0.71, + "2007": 0.72, + "2008": 0.719, + "2009": 0.718, + "2010": 0.725, + "2011": 0.727, + "2012": 0.715, + "2013": 0.712, + "2014": 0.717, + "2015": 0.713, + "2016": 0.729, + "2017": 0.733, + "2018": 0.722, + "2019": 0.709, + "2020": 0.711, + "2021": 0.716 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr128", + "Region": "Golestan", + "1990": 0.657, + "1991": 0.671, + "1992": 0.672, + "1993": 0.671, + "1994": 0.666, + "1995": 0.668, + "1996": 0.673, + "1997": 0.672, + "1998": 0.674, + "1999": 0.673, + "2000": 0.68, + "2001": 0.679, + "2002": 0.688, + "2003": 0.698, + "2004": 0.703, + "2005": 0.706, + "2006": 0.711, + "2007": 0.722, + "2008": 0.721, + "2009": 0.72, + "2010": 0.727, + "2011": 0.729, + "2012": 0.716, + "2013": 0.714, + "2014": 0.719, + "2015": 0.715, + "2016": 0.731, + "2017": 0.735, + "2018": 0.724, + "2019": 0.711, + "2020": 0.713, + "2021": 0.718 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr114", + "Region": "Hamedan", + "1990": 0.674, + "1991": 0.688, + "1992": 0.689, + "1993": 0.688, + "1994": 0.683, + "1995": 0.685, + "1996": 0.69, + "1997": 0.689, + "1998": 0.691, + "1999": 0.691, + "2000": 0.697, + "2001": 0.697, + "2002": 0.705, + "2003": 0.716, + "2004": 0.72, + "2005": 0.723, + "2006": 0.729, + "2007": 0.74, + "2008": 0.738, + "2009": 0.738, + "2010": 0.745, + "2011": 0.747, + "2012": 0.734, + "2013": 0.732, + "2014": 0.736, + "2015": 0.732, + "2016": 0.749, + "2017": 0.753, + "2018": 0.742, + "2019": 0.728, + "2020": 0.731, + "2021": 0.735 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr123", + "Region": "Hormozgan", + "1990": 0.65, + "1991": 0.664, + "1992": 0.665, + "1993": 0.664, + "1994": 0.659, + "1995": 0.661, + "1996": 0.666, + "1997": 0.665, + "1998": 0.667, + "1999": 0.666, + "2000": 0.673, + "2001": 0.672, + "2002": 0.681, + "2003": 0.691, + "2004": 0.696, + "2005": 0.698, + "2006": 0.704, + "2007": 0.715, + "2008": 0.713, + "2009": 0.713, + "2010": 0.72, + "2011": 0.722, + "2012": 0.709, + "2013": 0.707, + "2014": 0.711, + "2015": 0.707, + "2016": 0.724, + "2017": 0.727, + "2018": 0.717, + "2019": 0.704, + "2020": 0.706, + "2021": 0.711 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr117", + "Region": "Ilam", + "1990": 0.675, + "1991": 0.69, + "1992": 0.691, + "1993": 0.69, + "1994": 0.685, + "1995": 0.686, + "1996": 0.692, + "1997": 0.691, + "1998": 0.692, + "1999": 0.692, + "2000": 0.699, + "2001": 0.698, + "2002": 0.707, + "2003": 0.718, + "2004": 0.722, + "2005": 0.725, + "2006": 0.731, + "2007": 0.741, + "2008": 0.74, + "2009": 0.74, + "2010": 0.746, + "2011": 0.749, + "2012": 0.736, + "2013": 0.734, + "2014": 0.738, + "2015": 0.734, + "2016": 0.751, + "2017": 0.754, + "2018": 0.743, + "2019": 0.73, + "2020": 0.733, + "2021": 0.737 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr109", + "Region": "Kerman", + "1990": 0.647, + "1991": 0.661, + "1992": 0.662, + "1993": 0.661, + "1994": 0.656, + "1995": 0.658, + "1996": 0.663, + "1997": 0.662, + "1998": 0.664, + "1999": 0.663, + "2000": 0.67, + "2001": 0.669, + "2002": 0.678, + "2003": 0.688, + "2004": 0.693, + "2005": 0.695, + "2006": 0.701, + "2007": 0.712, + "2008": 0.71, + "2009": 0.71, + "2010": 0.716, + "2011": 0.719, + "2012": 0.706, + "2013": 0.704, + "2014": 0.708, + "2015": 0.704, + "2016": 0.721, + "2017": 0.724, + "2018": 0.714, + "2019": 0.701, + "2020": 0.703, + "2021": 0.708 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr106", + "Region": "Kermanshah", + "1990": 0.691, + "1991": 0.706, + "1992": 0.707, + "1993": 0.706, + "1994": 0.701, + "1995": 0.703, + "1996": 0.708, + "1997": 0.707, + "1998": 0.709, + "1999": 0.709, + "2000": 0.715, + "2001": 0.715, + "2002": 0.724, + "2003": 0.734, + "2004": 0.739, + "2005": 0.742, + "2006": 0.748, + "2007": 0.758, + "2008": 0.757, + "2009": 0.756, + "2010": 0.763, + "2011": 0.766, + "2012": 0.753, + "2013": 0.751, + "2014": 0.755, + "2015": 0.751, + "2016": 0.768, + "2017": 0.771, + "2018": 0.76, + "2019": 0.747, + "2020": 0.75, + "2021": 0.754 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr110", + "Region": "Khorasan-e-Razavi", + "1990": 0.673, + "1991": 0.687, + "1992": 0.688, + "1993": 0.687, + "1994": 0.682, + "1995": 0.684, + "1996": 0.689, + "1997": 0.688, + "1998": 0.69, + "1999": 0.689, + "2000": 0.696, + "2001": 0.696, + "2002": 0.704, + "2003": 0.715, + "2004": 0.719, + "2005": 0.722, + "2006": 0.728, + "2007": 0.739, + "2008": 0.737, + "2009": 0.737, + "2010": 0.744, + "2011": 0.746, + "2012": 0.733, + "2013": 0.731, + "2014": 0.735, + "2015": 0.731, + "2016": 0.748, + "2017": 0.752, + "2018": 0.74, + "2019": 0.727, + "2020": 0.73, + "2021": 0.734 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr107", + "Region": "Khuzestan", + "1990": 0.702, + "1991": 0.717, + "1992": 0.718, + "1993": 0.717, + "1994": 0.712, + "1995": 0.714, + "1996": 0.719, + "1997": 0.718, + "1998": 0.72, + "1999": 0.72, + "2000": 0.726, + "2001": 0.726, + "2002": 0.735, + "2003": 0.746, + "2004": 0.75, + "2005": 0.753, + "2006": 0.759, + "2007": 0.77, + "2008": 0.768, + "2009": 0.768, + "2010": 0.775, + "2011": 0.777, + "2012": 0.764, + "2013": 0.762, + "2014": 0.766, + "2015": 0.762, + "2016": 0.779, + "2017": 0.783, + "2018": 0.772, + "2019": 0.758, + "2020": 0.761, + "2021": 0.765 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr118", + "Region": "Kohgiluyeh and Boyerahmad", + "1990": 0.657, + "1991": 0.671, + "1992": 0.673, + "1993": 0.672, + "1994": 0.667, + "1995": 0.668, + "1996": 0.674, + "1997": 0.673, + "1998": 0.674, + "1999": 0.674, + "2000": 0.68, + "2001": 0.68, + "2002": 0.689, + "2003": 0.699, + "2004": 0.703, + "2005": 0.706, + "2006": 0.712, + "2007": 0.723, + "2008": 0.721, + "2009": 0.721, + "2010": 0.727, + "2011": 0.73, + "2012": 0.717, + "2013": 0.715, + "2014": 0.719, + "2015": 0.715, + "2016": 0.732, + "2017": 0.735, + "2018": 0.724, + "2019": 0.711, + "2020": 0.714, + "2021": 0.718 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr113", + "Region": "Kordestan", + "1990": 0.687, + "1991": 0.701, + "1992": 0.702, + "1993": 0.701, + "1994": 0.696, + "1995": 0.698, + "1996": 0.703, + "1997": 0.702, + "1998": 0.704, + "1999": 0.704, + "2000": 0.71, + "2001": 0.71, + "2002": 0.719, + "2003": 0.729, + "2004": 0.734, + "2005": 0.737, + "2006": 0.743, + "2007": 0.753, + "2008": 0.752, + "2009": 0.751, + "2010": 0.758, + "2011": 0.76, + "2012": 0.748, + "2013": 0.746, + "2014": 0.75, + "2015": 0.746, + "2016": 0.763, + "2017": 0.766, + "2018": 0.755, + "2019": 0.742, + "2020": 0.745, + "2021": 0.749 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr116", + "Region": "Lorestan", + "1990": 0.667, + "1991": 0.682, + "1992": 0.683, + "1993": 0.682, + "1994": 0.677, + "1995": 0.678, + "1996": 0.684, + "1997": 0.683, + "1998": 0.684, + "1999": 0.684, + "2000": 0.691, + "2001": 0.69, + "2002": 0.699, + "2003": 0.71, + "2004": 0.714, + "2005": 0.717, + "2006": 0.723, + "2007": 0.733, + "2008": 0.732, + "2009": 0.731, + "2010": 0.738, + "2011": 0.74, + "2012": 0.728, + "2013": 0.726, + "2014": 0.73, + "2015": 0.726, + "2016": 0.743, + "2017": 0.746, + "2018": 0.735, + "2019": 0.722, + "2020": 0.724, + "2021": 0.729 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr101", + "Region": "Markazi", + "1990": 0.671, + "1991": 0.685, + "1992": 0.687, + "1993": 0.686, + "1994": 0.681, + "1995": 0.682, + "1996": 0.688, + "1997": 0.687, + "1998": 0.688, + "1999": 0.688, + "2000": 0.694, + "2001": 0.694, + "2002": 0.703, + "2003": 0.713, + "2004": 0.718, + "2005": 0.72, + "2006": 0.726, + "2007": 0.737, + "2008": 0.736, + "2009": 0.735, + "2010": 0.742, + "2011": 0.744, + "2012": 0.732, + "2013": 0.729, + "2014": 0.734, + "2015": 0.73, + "2016": 0.747, + "2017": 0.75, + "2018": 0.739, + "2019": 0.726, + "2020": 0.728, + "2021": 0.733 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr103", + "Region": "Mazandaran", + "1990": 0.674, + "1991": 0.689, + "1992": 0.69, + "1993": 0.689, + "1994": 0.684, + "1995": 0.686, + "1996": 0.691, + "1997": 0.69, + "1998": 0.692, + "1999": 0.691, + "2000": 0.698, + "2001": 0.697, + "2002": 0.706, + "2003": 0.717, + "2004": 0.721, + "2005": 0.724, + "2006": 0.73, + "2007": 0.741, + "2008": 0.739, + "2009": 0.739, + "2010": 0.746, + "2011": 0.748, + "2012": 0.735, + "2013": 0.733, + "2014": 0.737, + "2015": 0.733, + "2016": 0.75, + "2017": 0.754, + "2018": 0.743, + "2019": 0.729, + "2020": 0.732, + "2021": 0.736 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr129", + "Region": "North Khorasan", + "1990": 0.639, + "1991": 0.653, + "1992": 0.654, + "1993": 0.653, + "1994": 0.648, + "1995": 0.649, + "1996": 0.655, + "1997": 0.654, + "1998": 0.655, + "1999": 0.655, + "2000": 0.661, + "2001": 0.661, + "2002": 0.67, + "2003": 0.68, + "2004": 0.684, + "2005": 0.687, + "2006": 0.693, + "2007": 0.703, + "2008": 0.702, + "2009": 0.701, + "2010": 0.708, + "2011": 0.71, + "2012": 0.698, + "2013": 0.696, + "2014": 0.7, + "2015": 0.696, + "2016": 0.712, + "2017": 0.716, + "2018": 0.705, + "2019": 0.692, + "2020": 0.695, + "2021": 0.699 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr127", + "Region": "Qazvin", + "1990": 0.68, + "1991": 0.695, + "1992": 0.696, + "1993": 0.695, + "1994": 0.69, + "1995": 0.691, + "1996": 0.697, + "1997": 0.696, + "1998": 0.697, + "1999": 0.697, + "2000": 0.704, + "2001": 0.703, + "2002": 0.712, + "2003": 0.723, + "2004": 0.727, + "2005": 0.73, + "2006": 0.736, + "2007": 0.746, + "2008": 0.745, + "2009": 0.745, + "2010": 0.751, + "2011": 0.754, + "2012": 0.741, + "2013": 0.739, + "2014": 0.743, + "2015": 0.739, + "2016": 0.756, + "2017": 0.759, + "2018": 0.748, + "2019": 0.735, + "2020": 0.738, + "2021": 0.742 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr126", + "Region": "Qom", + "1990": 0.682, + "1991": 0.697, + "1992": 0.698, + "1993": 0.697, + "1994": 0.692, + "1995": 0.693, + "1996": 0.699, + "1997": 0.698, + "1998": 0.7, + "1999": 0.699, + "2000": 0.706, + "2001": 0.705, + "2002": 0.714, + "2003": 0.725, + "2004": 0.729, + "2005": 0.732, + "2006": 0.738, + "2007": 0.749, + "2008": 0.748, + "2009": 0.747, + "2010": 0.754, + "2011": 0.756, + "2012": 0.743, + "2013": 0.741, + "2014": 0.746, + "2015": 0.741, + "2016": 0.758, + "2017": 0.762, + "2018": 0.751, + "2019": 0.737, + "2020": 0.74, + "2021": 0.745 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr121", + "Region": "Semnan", + "1990": 0.678, + "1991": 0.693, + "1992": 0.694, + "1993": 0.693, + "1994": 0.688, + "1995": 0.69, + "1996": 0.695, + "1997": 0.694, + "1998": 0.696, + "1999": 0.696, + "2000": 0.702, + "2001": 0.702, + "2002": 0.71, + "2003": 0.721, + "2004": 0.725, + "2005": 0.728, + "2006": 0.734, + "2007": 0.745, + "2008": 0.744, + "2009": 0.743, + "2010": 0.75, + "2011": 0.752, + "2012": 0.739, + "2013": 0.737, + "2014": 0.742, + "2015": 0.737, + "2016": 0.754, + "2017": 0.758, + "2018": 0.747, + "2019": 0.733, + "2020": 0.736, + "2021": 0.741 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr112", + "Region": "Sistanand Baluchestan", + "1990": 0.601, + "1991": 0.614, + "1992": 0.616, + "1993": 0.615, + "1994": 0.61, + "1995": 0.611, + "1996": 0.617, + "1997": 0.616, + "1998": 0.617, + "1999": 0.617, + "2000": 0.623, + "2001": 0.622, + "2002": 0.631, + "2003": 0.641, + "2004": 0.645, + "2005": 0.648, + "2006": 0.653, + "2007": 0.663, + "2008": 0.662, + "2009": 0.661, + "2010": 0.668, + "2011": 0.67, + "2012": 0.658, + "2013": 0.656, + "2014": 0.66, + "2015": 0.656, + "2016": 0.672, + "2017": 0.676, + "2018": 0.665, + "2019": 0.653, + "2020": 0.655, + "2021": 0.659 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr130", + "Region": "South Khorasan", + "1990": 0.645, + "1991": 0.659, + "1992": 0.661, + "1993": 0.66, + "1994": 0.655, + "1995": 0.656, + "1996": 0.662, + "1997": 0.661, + "1998": 0.662, + "1999": 0.662, + "2000": 0.668, + "2001": 0.668, + "2002": 0.676, + "2003": 0.687, + "2004": 0.691, + "2005": 0.694, + "2006": 0.7, + "2007": 0.71, + "2008": 0.709, + "2009": 0.708, + "2010": 0.715, + "2011": 0.717, + "2012": 0.705, + "2013": 0.702, + "2014": 0.707, + "2015": 0.703, + "2016": 0.719, + "2017": 0.723, + "2018": 0.712, + "2019": 0.699, + "2020": 0.701, + "2021": 0.706 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr124", + "Region": "Tehran and Alborz", + "1990": 0.671, + "1991": 0.685, + "1992": 0.686, + "1993": 0.685, + "1994": 0.68, + "1995": 0.682, + "1996": 0.687, + "1997": 0.686, + "1998": 0.688, + "1999": 0.688, + "2000": 0.694, + "2001": 0.694, + "2002": 0.702, + "2003": 0.713, + "2004": 0.717, + "2005": 0.72, + "2006": 0.726, + "2007": 0.737, + "2008": 0.735, + "2009": 0.735, + "2010": 0.741, + "2011": 0.744, + "2012": 0.731, + "2013": 0.729, + "2014": 0.733, + "2015": 0.729, + "2016": 0.746, + "2017": 0.749, + "2018": 0.738, + "2019": 0.725, + "2020": 0.728, + "2021": 0.732 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr105", + "Region": "WestAzarbayejan", + "1990": 0.674, + "1991": 0.689, + "1992": 0.69, + "1993": 0.689, + "1994": 0.684, + "1995": 0.685, + "1996": 0.691, + "1997": 0.69, + "1998": 0.692, + "1999": 0.691, + "2000": 0.698, + "2001": 0.697, + "2002": 0.706, + "2003": 0.717, + "2004": 0.721, + "2005": 0.724, + "2006": 0.73, + "2007": 0.74, + "2008": 0.739, + "2009": 0.739, + "2010": 0.745, + "2011": 0.748, + "2012": 0.735, + "2013": 0.733, + "2014": 0.737, + "2015": 0.733, + "2016": 0.75, + "2017": 0.753, + "2018": 0.742, + "2019": 0.729, + "2020": 0.732, + "2021": 0.736 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr122", + "Region": "Yazd", + "1990": 0.695, + "1991": 0.71, + "1992": 0.711, + "1993": 0.71, + "1994": 0.705, + "1995": 0.706, + "1996": 0.712, + "1997": 0.711, + "1998": 0.713, + "1999": 0.712, + "2000": 0.719, + "2001": 0.718, + "2002": 0.727, + "2003": 0.738, + "2004": 0.742, + "2005": 0.745, + "2006": 0.752, + "2007": 0.762, + "2008": 0.761, + "2009": 0.76, + "2010": 0.767, + "2011": 0.769, + "2012": 0.757, + "2013": 0.755, + "2014": 0.759, + "2015": 0.755, + "2016": 0.772, + "2017": 0.775, + "2018": 0.764, + "2019": 0.751, + "2020": 0.753, + "2021": 0.758 + }, + { + "Country": "Iran", + "Continent": "Asia/Pacific", + "ISO_Code": "IRN", + "Level": "Subnat", + "GDLCODE": "IRNr120", + "Region": "Zanjan", + "1990": 0.648, + "1991": 0.662, + "1992": 0.663, + "1993": 0.663, + "1994": 0.658, + "1995": 0.659, + "1996": 0.664, + "1997": 0.663, + "1998": 0.665, + "1999": 0.665, + "2000": 0.671, + "2001": 0.671, + "2002": 0.679, + "2003": 0.69, + "2004": 0.694, + "2005": 0.697, + "2006": 0.703, + "2007": 0.713, + "2008": 0.712, + "2009": 0.711, + "2010": 0.718, + "2011": 0.72, + "2012": 0.708, + "2013": 0.705, + "2014": 0.71, + "2015": 0.706, + "2016": 0.722, + "2017": 0.726, + "2018": 0.715, + "2019": 0.702, + "2020": 0.704, + "2021": 0.709 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "National", + "GDLCODE": "IRQt", + "Region": "Total", + "1990": 0.647, + "1991": 0.48, + "1992": 0.512, + "1993": 0.568, + "1994": 0.556, + "1995": 0.521, + "1996": 0.577, + "1997": 0.602, + "1998": 0.643, + "1999": 0.662, + "2000": 0.661, + "2001": 0.66, + "2002": 0.643, + "2003": 0.582, + "2004": 0.643, + "2005": 0.645, + "2006": 0.65, + "2007": 0.651, + "2008": 0.67, + "2009": 0.671, + "2010": 0.674, + "2011": 0.678, + "2012": 0.694, + "2013": 0.697, + "2014": 0.692, + "2015": 0.694, + "2016": 0.709, + "2017": 0.702, + "2018": 0.703, + "2019": 0.708, + "2020": 0.69, + "2021": 0.695 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr107", + "Region": "Anbar", + "1990": 0.681, + "1991": 0.509, + "1992": 0.543, + "1993": 0.599, + "1994": 0.587, + "1995": 0.551, + "1996": 0.609, + "1997": 0.634, + "1998": 0.676, + "1999": 0.696, + "2000": 0.695, + "2001": 0.694, + "2002": 0.677, + "2003": 0.614, + "2004": 0.677, + "2005": 0.678, + "2006": 0.683, + "2007": 0.676, + "2008": 0.687, + "2009": 0.679, + "2010": 0.675, + "2011": 0.67, + "2012": 0.684, + "2013": 0.687, + "2014": 0.68, + "2015": 0.681, + "2016": 0.695, + "2017": 0.687, + "2018": 0.686, + "2019": 0.692, + "2020": 0.674, + "2021": 0.679 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr109", + "Region": "Babylon", + "1990": 0.626, + "1991": 0.461, + "1992": 0.493, + "1993": 0.547, + "1994": 0.536, + "1995": 0.501, + "1996": 0.557, + "1997": 0.581, + "1998": 0.621, + "1999": 0.64, + "2000": 0.64, + "2001": 0.639, + "2002": 0.622, + "2003": 0.561, + "2004": 0.622, + "2005": 0.623, + "2006": 0.628, + "2007": 0.632, + "2008": 0.654, + "2009": 0.658, + "2010": 0.664, + "2011": 0.671, + "2012": 0.684, + "2013": 0.685, + "2014": 0.676, + "2015": 0.675, + "2016": 0.687, + "2017": 0.678, + "2018": 0.676, + "2019": 0.681, + "2020": 0.664, + "2021": 0.669 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr108", + "Region": "Baghdad", + "1990": 0.675, + "1991": 0.504, + "1992": 0.537, + "1993": 0.594, + "1994": 0.582, + "1995": 0.546, + "1996": 0.604, + "1997": 0.629, + "1998": 0.671, + "1999": 0.69, + "2000": 0.69, + "2001": 0.688, + "2002": 0.671, + "2003": 0.608, + "2004": 0.671, + "2005": 0.673, + "2006": 0.678, + "2007": 0.677, + "2008": 0.694, + "2009": 0.694, + "2010": 0.695, + "2011": 0.698, + "2012": 0.712, + "2013": 0.715, + "2014": 0.708, + "2015": 0.709, + "2016": 0.724, + "2017": 0.716, + "2018": 0.716, + "2019": 0.721, + "2020": 0.704, + "2021": 0.708 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr118", + "Region": "Basra", + "1990": 0.622, + "1991": 0.458, + "1992": 0.49, + "1993": 0.544, + "1994": 0.533, + "1995": 0.498, + "1996": 0.554, + "1997": 0.578, + "1998": 0.618, + "1999": 0.637, + "2000": 0.636, + "2001": 0.635, + "2002": 0.618, + "2003": 0.558, + "2004": 0.618, + "2005": 0.62, + "2006": 0.625, + "2007": 0.632, + "2008": 0.658, + "2009": 0.666, + "2010": 0.676, + "2011": 0.687, + "2012": 0.698, + "2013": 0.697, + "2014": 0.688, + "2015": 0.685, + "2016": 0.696, + "2017": 0.685, + "2018": 0.681, + "2019": 0.687, + "2020": 0.669, + "2021": 0.674 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr106", + "Region": "Diala", + "1990": 0.637, + "1991": 0.471, + "1992": 0.503, + "1993": 0.558, + "1994": 0.547, + "1995": 0.512, + "1996": 0.568, + "1997": 0.592, + "1998": 0.633, + "1999": 0.652, + "2000": 0.651, + "2001": 0.65, + "2002": 0.633, + "2003": 0.572, + "2004": 0.633, + "2005": 0.635, + "2006": 0.64, + "2007": 0.638, + "2008": 0.654, + "2009": 0.652, + "2010": 0.653, + "2011": 0.654, + "2012": 0.673, + "2013": 0.681, + "2014": 0.68, + "2015": 0.686, + "2016": 0.706, + "2017": 0.703, + "2018": 0.708, + "2019": 0.714, + "2020": 0.696, + "2021": 0.701 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr101", + "Region": "Dohouk", + "1990": 0.658, + "1991": 0.489, + "1992": 0.522, + "1993": 0.578, + "1994": 0.566, + "1995": 0.53, + "1996": 0.587, + "1997": 0.612, + "1998": 0.653, + "1999": 0.673, + "2000": 0.672, + "2001": 0.671, + "2002": 0.654, + "2003": 0.592, + "2004": 0.654, + "2005": 0.656, + "2006": 0.66, + "2007": 0.661, + "2008": 0.68, + "2009": 0.682, + "2010": 0.685, + "2011": 0.689, + "2012": 0.707, + "2013": 0.712, + "2014": 0.709, + "2015": 0.713, + "2016": 0.73, + "2017": 0.726, + "2018": 0.728, + "2019": 0.734, + "2020": 0.716, + "2021": 0.721 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr105", + "Region": "Erbil", + "1990": 0.67, + "1991": 0.499, + "1992": 0.532, + "1993": 0.589, + "1994": 0.577, + "1995": 0.541, + "1996": 0.599, + "1997": 0.623, + "1998": 0.665, + "1999": 0.685, + "2000": 0.684, + "2001": 0.683, + "2002": 0.666, + "2003": 0.603, + "2004": 0.665, + "2005": 0.667, + "2006": 0.672, + "2007": 0.668, + "2008": 0.681, + "2009": 0.677, + "2010": 0.675, + "2011": 0.674, + "2012": 0.693, + "2013": 0.701, + "2014": 0.7, + "2015": 0.706, + "2016": 0.725, + "2017": 0.723, + "2018": 0.727, + "2019": 0.733, + "2020": 0.715, + "2021": 0.72 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr110", + "Region": "Kerbela", + "1990": 0.644, + "1991": 0.477, + "1992": 0.509, + "1993": 0.565, + "1994": 0.553, + "1995": 0.518, + "1996": 0.574, + "1997": 0.598, + "1998": 0.639, + "1999": 0.659, + "2000": 0.658, + "2001": 0.657, + "2002": 0.64, + "2003": 0.578, + "2004": 0.64, + "2005": 0.642, + "2006": 0.646, + "2007": 0.648, + "2008": 0.667, + "2009": 0.668, + "2010": 0.672, + "2011": 0.677, + "2012": 0.689, + "2013": 0.691, + "2014": 0.683, + "2015": 0.682, + "2016": 0.695, + "2017": 0.686, + "2018": 0.683, + "2019": 0.689, + "2020": 0.671, + "2021": 0.676 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr117", + "Region": "Maysan", + "1990": 0.613, + "1991": 0.45, + "1992": 0.482, + "1993": 0.536, + "1994": 0.524, + "1995": 0.49, + "1996": 0.545, + "1997": 0.569, + "1998": 0.609, + "1999": 0.627, + "2000": 0.627, + "2001": 0.626, + "2002": 0.609, + "2003": 0.549, + "2004": 0.609, + "2005": 0.611, + "2006": 0.615, + "2007": 0.622, + "2008": 0.646, + "2009": 0.652, + "2010": 0.661, + "2011": 0.67, + "2012": 0.682, + "2013": 0.682, + "2014": 0.674, + "2015": 0.672, + "2016": 0.684, + "2017": 0.674, + "2018": 0.671, + "2019": 0.676, + "2020": 0.659, + "2021": 0.664 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr115", + "Region": "Muthanna", + "1990": 0.609, + "1991": 0.446, + "1992": 0.478, + "1993": 0.532, + "1994": 0.52, + "1995": 0.486, + "1996": 0.541, + "1997": 0.565, + "1998": 0.605, + "1999": 0.623, + "2000": 0.623, + "2001": 0.622, + "2002": 0.605, + "2003": 0.545, + "2004": 0.605, + "2005": 0.607, + "2006": 0.611, + "2007": 0.614, + "2008": 0.635, + "2009": 0.638, + "2010": 0.643, + "2011": 0.649, + "2012": 0.668, + "2013": 0.676, + "2014": 0.675, + "2015": 0.68, + "2016": 0.7, + "2017": 0.697, + "2018": 0.702, + "2019": 0.707, + "2020": 0.69, + "2021": 0.694 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr113", + "Region": "Najaf", + "1990": 0.647, + "1991": 0.48, + "1992": 0.513, + "1993": 0.568, + "1994": 0.556, + "1995": 0.521, + "1996": 0.578, + "1997": 0.602, + "1998": 0.643, + "1999": 0.662, + "2000": 0.662, + "2001": 0.661, + "2002": 0.643, + "2003": 0.582, + "2004": 0.643, + "2005": 0.645, + "2006": 0.65, + "2007": 0.652, + "2008": 0.672, + "2009": 0.675, + "2010": 0.68, + "2011": 0.685, + "2012": 0.693, + "2013": 0.688, + "2014": 0.675, + "2015": 0.669, + "2016": 0.676, + "2017": 0.662, + "2018": 0.655, + "2019": 0.66, + "2020": 0.643, + "2021": 0.648 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr102", + "Region": "Nenava", + "1990": 0.648, + "1991": 0.48, + "1992": 0.513, + "1993": 0.568, + "1994": 0.556, + "1995": 0.521, + "1996": 0.578, + "1997": 0.602, + "1998": 0.643, + "1999": 0.663, + "2000": 0.662, + "2001": 0.661, + "2002": 0.644, + "2003": 0.582, + "2004": 0.644, + "2005": 0.646, + "2006": 0.65, + "2007": 0.651, + "2008": 0.67, + "2009": 0.671, + "2010": 0.675, + "2011": 0.679, + "2012": 0.695, + "2013": 0.699, + "2014": 0.694, + "2015": 0.697, + "2016": 0.713, + "2017": 0.707, + "2018": 0.708, + "2019": 0.713, + "2020": 0.696, + "2021": 0.7 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr114", + "Region": "Qadisiya", + "1990": 0.595, + "1991": 0.434, + "1992": 0.466, + "1993": 0.519, + "1994": 0.508, + "1995": 0.474, + "1996": 0.528, + "1997": 0.552, + "1998": 0.591, + "1999": 0.61, + "2000": 0.609, + "2001": 0.608, + "2002": 0.592, + "2003": 0.532, + "2004": 0.592, + "2005": 0.593, + "2006": 0.598, + "2007": 0.604, + "2008": 0.627, + "2009": 0.633, + "2010": 0.642, + "2011": 0.651, + "2012": 0.669, + "2013": 0.676, + "2014": 0.674, + "2015": 0.68, + "2016": 0.698, + "2017": 0.696, + "2018": 0.7, + "2019": 0.705, + "2020": 0.688, + "2021": 0.692 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr112", + "Region": "Salaheldeen", + "1990": 0.64, + "1991": 0.474, + "1992": 0.506, + "1993": 0.561, + "1994": 0.55, + "1995": 0.515, + "1996": 0.571, + "1997": 0.595, + "1998": 0.636, + "1999": 0.655, + "2000": 0.655, + "2001": 0.653, + "2002": 0.636, + "2003": 0.575, + "2004": 0.636, + "2005": 0.638, + "2006": 0.643, + "2007": 0.644, + "2008": 0.664, + "2009": 0.666, + "2010": 0.67, + "2011": 0.674, + "2012": 0.692, + "2013": 0.698, + "2014": 0.695, + "2015": 0.699, + "2016": 0.717, + "2017": 0.713, + "2018": 0.716, + "2019": 0.722, + "2020": 0.704, + "2021": 0.709 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr103", + "Region": "Suleimaniya", + "1990": 0.641, + "1991": 0.474, + "1992": 0.507, + "1993": 0.562, + "1994": 0.55, + "1995": 0.515, + "1996": 0.571, + "1997": 0.596, + "1998": 0.637, + "1999": 0.656, + "2000": 0.655, + "2001": 0.654, + "2002": 0.637, + "2003": 0.576, + "2004": 0.637, + "2005": 0.639, + "2006": 0.644, + "2007": 0.645, + "2008": 0.664, + "2009": 0.665, + "2010": 0.669, + "2011": 0.674, + "2012": 0.691, + "2013": 0.698, + "2014": 0.695, + "2015": 0.699, + "2016": 0.717, + "2017": 0.714, + "2018": 0.717, + "2019": 0.722, + "2020": 0.704, + "2021": 0.709 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr104", + "Region": "Ta-amem-Karkuk", + "1990": 0.678, + "1991": 0.507, + "1992": 0.54, + "1993": 0.597, + "1994": 0.585, + "1995": 0.549, + "1996": 0.607, + "1997": 0.632, + "1998": 0.674, + "1999": 0.693, + "2000": 0.693, + "2001": 0.692, + "2002": 0.674, + "2003": 0.611, + "2004": 0.674, + "2005": 0.676, + "2006": 0.681, + "2007": 0.675, + "2008": 0.688, + "2009": 0.682, + "2010": 0.679, + "2011": 0.676, + "2012": 0.694, + "2013": 0.7, + "2014": 0.697, + "2015": 0.702, + "2016": 0.72, + "2017": 0.716, + "2018": 0.719, + "2019": 0.725, + "2020": 0.707, + "2021": 0.711 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr116", + "Region": "Thi-Qar", + "1990": 0.608, + "1991": 0.446, + "1992": 0.477, + "1993": 0.531, + "1994": 0.52, + "1995": 0.486, + "1996": 0.541, + "1997": 0.564, + "1998": 0.604, + "1999": 0.623, + "2000": 0.622, + "2001": 0.621, + "2002": 0.604, + "2003": 0.545, + "2004": 0.604, + "2005": 0.606, + "2006": 0.611, + "2007": 0.617, + "2008": 0.64, + "2009": 0.646, + "2010": 0.654, + "2011": 0.663, + "2012": 0.681, + "2013": 0.687, + "2014": 0.684, + "2015": 0.688, + "2016": 0.705, + "2017": 0.701, + "2018": 0.704, + "2019": 0.71, + "2020": 0.692, + "2021": 0.697 + }, + { + "Country": "Iraq", + "Continent": "Asia/Pacific", + "ISO_Code": "IRQ", + "Level": "Subnat", + "GDLCODE": "IRQr111", + "Region": "Wasit", + "1990": 0.616, + "1991": 0.453, + "1992": 0.485, + "1993": 0.539, + "1994": 0.527, + "1995": 0.493, + "1996": 0.548, + "1997": 0.572, + "1998": 0.612, + "1999": 0.631, + "2000": 0.63, + "2001": 0.629, + "2002": 0.613, + "2003": 0.552, + "2004": 0.613, + "2005": 0.614, + "2006": 0.619, + "2007": 0.623, + "2008": 0.644, + "2009": 0.648, + "2010": 0.654, + "2011": 0.661, + "2012": 0.673, + "2013": 0.673, + "2014": 0.665, + "2015": 0.663, + "2016": 0.675, + "2017": 0.666, + "2018": 0.663, + "2019": 0.668, + "2020": 0.651, + "2021": 0.656 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "National", + "GDLCODE": "IRLt", + "Region": "Total", + "1990": 0.824, + "1991": 0.827, + "1992": 0.83, + "1993": 0.834, + "1994": 0.842, + "1995": 0.852, + "1996": 0.862, + "1997": 0.873, + "1998": 0.885, + "1999": 0.894, + "2000": 0.907, + "2001": 0.911, + "2002": 0.914, + "2003": 0.919, + "2004": 0.922, + "2005": 0.929, + "2006": 0.933, + "2007": 0.934, + "2008": 0.924, + "2009": 0.91, + "2010": 0.911, + "2011": 0.909, + "2012": 0.909, + "2013": 0.917, + "2014": 0.928, + "2015": 0.954, + "2016": 0.965, + "2017": 0.971, + "2018": 0.976, + "2019": 0.984, + "2020": 0.985, + "2021": 1 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr101", + "Region": "Border", + "1990": 0.774, + "1991": 0.777, + "1992": 0.779, + "1993": 0.783, + "1994": 0.791, + "1995": 0.801, + "1996": 0.81, + "1997": 0.822, + "1998": 0.833, + "1999": 0.842, + "2000": 0.854, + "2001": 0.858, + "2002": 0.861, + "2003": 0.866, + "2004": 0.869, + "2005": 0.875, + "2006": 0.879, + "2007": 0.876, + "2008": 0.866, + "2009": 0.852, + "2010": 0.831, + "2011": 0.829, + "2012": 0.822, + "2013": 0.818, + "2014": 0.818, + "2015": 0.843, + "2016": 0.852, + "2017": 0.858, + "2018": 0.863, + "2019": 0.87, + "2020": 0.871, + "2021": 0.888 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr104", + "Region": "Dublin", + "1990": 0.872, + "1991": 0.876, + "1992": 0.878, + "1993": 0.882, + "1994": 0.891, + "1995": 0.902, + "1996": 0.911, + "1997": 0.923, + "1998": 0.936, + "1999": 0.945, + "2000": 0.958, + "2001": 0.962, + "2002": 0.965, + "2003": 0.971, + "2004": 0.974, + "2005": 0.98, + "2006": 0.985, + "2007": 0.985, + "2008": 0.98, + "2009": 0.967, + "2010": 0.975, + "2011": 0.968, + "2012": 0.969, + "2013": 0.986, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr105", + "Region": "Mid-East", + "1990": 0.8, + "1991": 0.803, + "1992": 0.805, + "1993": 0.809, + "1994": 0.817, + "1995": 0.828, + "1996": 0.837, + "1997": 0.848, + "1998": 0.86, + "1999": 0.869, + "2000": 0.881, + "2001": 0.885, + "2002": 0.888, + "2003": 0.894, + "2004": 0.896, + "2005": 0.902, + "2006": 0.907, + "2007": 0.907, + "2008": 0.892, + "2009": 0.874, + "2010": 0.865, + "2011": 0.852, + "2012": 0.851, + "2013": 0.866, + "2014": 0.878, + "2015": 0.904, + "2016": 0.913, + "2017": 0.919, + "2018": 0.925, + "2019": 0.932, + "2020": 0.933, + "2021": 0.95 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr106", + "Region": "Mid-West", + "1990": 0.801, + "1991": 0.804, + "1992": 0.807, + "1993": 0.811, + "1994": 0.819, + "1995": 0.829, + "1996": 0.838, + "1997": 0.85, + "1998": 0.861, + "1999": 0.87, + "2000": 0.882, + "2001": 0.886, + "2002": 0.89, + "2003": 0.895, + "2004": 0.897, + "2005": 0.904, + "2006": 0.909, + "2007": 0.913, + "2008": 0.899, + "2009": 0.882, + "2010": 0.887, + "2011": 0.875, + "2012": 0.878, + "2013": 0.888, + "2014": 0.886, + "2015": 0.912, + "2016": 0.922, + "2017": 0.928, + "2018": 0.934, + "2019": 0.941, + "2020": 0.942, + "2021": 0.959 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr102", + "Region": "Midland", + "1990": 0.774, + "1991": 0.777, + "1992": 0.779, + "1993": 0.783, + "1994": 0.791, + "1995": 0.801, + "1996": 0.81, + "1997": 0.822, + "1998": 0.833, + "1999": 0.841, + "2000": 0.854, + "2001": 0.858, + "2002": 0.861, + "2003": 0.866, + "2004": 0.868, + "2005": 0.875, + "2006": 0.879, + "2007": 0.871, + "2008": 0.852, + "2009": 0.827, + "2010": 0.813, + "2011": 0.809, + "2012": 0.808, + "2013": 0.815, + "2014": 0.818, + "2015": 0.843, + "2016": 0.853, + "2017": 0.858, + "2018": 0.864, + "2019": 0.87, + "2020": 0.871, + "2021": 0.888 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr107", + "Region": "South-East", + "1990": 0.783, + "1991": 0.786, + "1992": 0.788, + "1993": 0.792, + "1994": 0.8, + "1995": 0.81, + "1996": 0.819, + "1997": 0.831, + "1998": 0.842, + "1999": 0.851, + "2000": 0.863, + "2001": 0.867, + "2002": 0.87, + "2003": 0.876, + "2004": 0.878, + "2005": 0.884, + "2006": 0.889, + "2007": 0.891, + "2008": 0.885, + "2009": 0.855, + "2010": 0.852, + "2011": 0.856, + "2012": 0.853, + "2013": 0.873, + "2014": 0.868, + "2015": 0.893, + "2016": 0.903, + "2017": 0.909, + "2018": 0.914, + "2019": 0.921, + "2020": 0.922, + "2021": 0.94 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr108", + "Region": "South-West", + "1990": 0.843, + "1991": 0.846, + "1992": 0.848, + "1993": 0.852, + "1994": 0.861, + "1995": 0.871, + "1996": 0.881, + "1997": 0.893, + "1998": 0.905, + "1999": 0.914, + "2000": 0.926, + "2001": 0.93, + "2002": 0.934, + "2003": 0.939, + "2004": 0.942, + "2005": 0.948, + "2006": 0.953, + "2007": 0.957, + "2008": 0.941, + "2009": 0.937, + "2010": 0.937, + "2011": 0.949, + "2012": 0.947, + "2013": 0.941, + "2014": 0.956, + "2015": 0.983, + "2016": 0.993, + "2017": 0.999, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Ireland", + "Continent": "Europe", + "ISO_Code": "IRL", + "Level": "Subnat", + "GDLCODE": "IRLr103", + "Region": "West", + "1990": 0.779, + "1991": 0.782, + "1992": 0.785, + "1993": 0.788, + "1994": 0.796, + "1995": 0.807, + "1996": 0.816, + "1997": 0.827, + "1998": 0.838, + "1999": 0.847, + "2000": 0.859, + "2001": 0.863, + "2002": 0.866, + "2003": 0.872, + "2004": 0.874, + "2005": 0.88, + "2006": 0.885, + "2007": 0.882, + "2008": 0.875, + "2009": 0.862, + "2010": 0.873, + "2011": 0.881, + "2012": 0.88, + "2013": 0.868, + "2014": 0.877, + "2015": 0.903, + "2016": 0.913, + "2017": 0.918, + "2018": 0.924, + "2019": 0.931, + "2020": 0.932, + "2021": 0.949 + }, + { + "Country": "Israel", + "Continent": "Asia/Pacific", + "ISO_Code": "ISR", + "Level": "National", + "GDLCODE": "ISRt", + "Region": "Total", + "1990": 0.807, + "1991": 0.813, + "1992": 0.819, + "1993": 0.821, + "1994": 0.828, + "1995": 0.833, + "1996": 0.838, + "1997": 0.842, + "1998": 0.846, + "1999": 0.847, + "2000": 0.851, + "2001": 0.851, + "2002": 0.848, + "2003": 0.846, + "2004": 0.85, + "2005": 0.856, + "2006": 0.862, + "2007": 0.867, + "2008": 0.866, + "2009": 0.867, + "2010": 0.872, + "2011": 0.876, + "2012": 0.877, + "2013": 0.883, + "2014": 0.889, + "2015": 0.892, + "2016": 0.897, + "2017": 0.901, + "2018": 0.904, + "2019": 0.907, + "2020": 0.901, + "2021": 0.911 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "National", + "GDLCODE": "ITAt", + "Region": "Total", + "1990": 0.89, + "1991": 0.892, + "1992": 0.893, + "1993": 0.892, + "1994": 0.895, + "1995": 0.899, + "1996": 0.902, + "1997": 0.906, + "1998": 0.909, + "1999": 0.912, + "2000": 0.915, + "2001": 0.919, + "2002": 0.919, + "2003": 0.919, + "2004": 0.92, + "2005": 0.92, + "2006": 0.922, + "2007": 0.923, + "2008": 0.918, + "2009": 0.913, + "2010": 0.913, + "2011": 0.913, + "2012": 0.907, + "2013": 0.903, + "2014": 0.903, + "2015": 0.904, + "2016": 0.909, + "2017": 0.912, + "2018": 0.914, + "2019": 0.916, + "2020": 0.905, + "2021": 0.915 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr105", + "Region": "Abruzzo", + "1990": 0.869, + "1991": 0.871, + "1992": 0.872, + "1993": 0.871, + "1994": 0.874, + "1995": 0.878, + "1996": 0.881, + "1997": 0.885, + "1998": 0.888, + "1999": 0.891, + "2000": 0.894, + "2001": 0.897, + "2002": 0.896, + "2003": 0.893, + "2004": 0.888, + "2005": 0.892, + "2006": 0.895, + "2007": 0.897, + "2008": 0.893, + "2009": 0.888, + "2010": 0.89, + "2011": 0.893, + "2012": 0.891, + "2013": 0.886, + "2014": 0.885, + "2015": 0.884, + "2016": 0.886, + "2017": 0.89, + "2018": 0.89, + "2019": 0.892, + "2020": 0.88, + "2021": 0.891 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr109", + "Region": "Basilicata", + "1990": 0.845, + "1991": 0.847, + "1992": 0.848, + "1993": 0.846, + "1994": 0.849, + "1995": 0.854, + "1996": 0.857, + "1997": 0.86, + "1998": 0.864, + "1999": 0.866, + "2000": 0.869, + "2001": 0.87, + "2002": 0.871, + "2003": 0.867, + "2004": 0.868, + "2005": 0.867, + "2006": 0.873, + "2007": 0.877, + "2008": 0.871, + "2009": 0.864, + "2010": 0.86, + "2011": 0.862, + "2012": 0.86, + "2013": 0.862, + "2014": 0.855, + "2015": 0.867, + "2016": 0.868, + "2017": 0.87, + "2018": 0.877, + "2019": 0.879, + "2020": 0.868, + "2021": 0.878 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr110", + "Region": "Calabria", + "1990": 0.808, + "1991": 0.81, + "1992": 0.811, + "1993": 0.81, + "1994": 0.812, + "1995": 0.817, + "1996": 0.82, + "1997": 0.823, + "1998": 0.826, + "1999": 0.829, + "2000": 0.832, + "2001": 0.836, + "2002": 0.836, + "2003": 0.838, + "2004": 0.841, + "2005": 0.843, + "2006": 0.845, + "2007": 0.845, + "2008": 0.843, + "2009": 0.84, + "2010": 0.838, + "2011": 0.836, + "2012": 0.831, + "2013": 0.826, + "2014": 0.823, + "2015": 0.824, + "2016": 0.827, + "2017": 0.83, + "2018": 0.829, + "2019": 0.833, + "2020": 0.822, + "2021": 0.832 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr107", + "Region": "Campania", + "1990": 0.825, + "1991": 0.827, + "1992": 0.828, + "1993": 0.827, + "1994": 0.83, + "1995": 0.834, + "1996": 0.837, + "1997": 0.84, + "1998": 0.844, + "1999": 0.846, + "2000": 0.85, + "2001": 0.855, + "2002": 0.857, + "2003": 0.855, + "2004": 0.856, + "2005": 0.857, + "2006": 0.858, + "2007": 0.86, + "2008": 0.854, + "2009": 0.851, + "2010": 0.847, + "2011": 0.844, + "2012": 0.841, + "2013": 0.835, + "2014": 0.835, + "2015": 0.837, + "2016": 0.84, + "2017": 0.843, + "2018": 0.844, + "2019": 0.846, + "2020": 0.835, + "2021": 0.845 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr117", + "Region": "Emilia-Romagna", + "1990": 0.923, + "1991": 0.925, + "1992": 0.926, + "1993": 0.925, + "1994": 0.928, + "1995": 0.933, + "1996": 0.935, + "1997": 0.939, + "1998": 0.942, + "1999": 0.945, + "2000": 0.949, + "2001": 0.95, + "2002": 0.949, + "2003": 0.947, + "2004": 0.948, + "2005": 0.948, + "2006": 0.951, + "2007": 0.953, + "2008": 0.947, + "2009": 0.938, + "2010": 0.939, + "2011": 0.941, + "2012": 0.936, + "2013": 0.934, + "2014": 0.935, + "2015": 0.936, + "2016": 0.942, + "2017": 0.945, + "2018": 0.947, + "2019": 0.95, + "2020": 0.938, + "2021": 0.949 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr116", + "Region": "Friuli-Venezia Giulia", + "1990": 0.903, + "1991": 0.905, + "1992": 0.905, + "1993": 0.904, + "1994": 0.907, + "1995": 0.912, + "1996": 0.915, + "1997": 0.919, + "1998": 0.922, + "1999": 0.925, + "2000": 0.928, + "2001": 0.932, + "2002": 0.931, + "2003": 0.927, + "2004": 0.928, + "2005": 0.93, + "2006": 0.933, + "2007": 0.935, + "2008": 0.927, + "2009": 0.919, + "2010": 0.922, + "2011": 0.922, + "2012": 0.915, + "2013": 0.914, + "2014": 0.914, + "2015": 0.917, + "2016": 0.92, + "2017": 0.922, + "2018": 0.926, + "2019": 0.928, + "2020": 0.916, + "2021": 0.927 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr121", + "Region": "Lazio", + "1990": 0.924, + "1991": 0.926, + "1992": 0.927, + "1993": 0.926, + "1994": 0.929, + "1995": 0.934, + "1996": 0.937, + "1997": 0.94, + "1998": 0.944, + "1999": 0.947, + "2000": 0.95, + "2001": 0.955, + "2002": 0.958, + "2003": 0.957, + "2004": 0.962, + "2005": 0.961, + "2006": 0.961, + "2007": 0.962, + "2008": 0.954, + "2009": 0.951, + "2010": 0.949, + "2011": 0.948, + "2012": 0.938, + "2013": 0.931, + "2014": 0.929, + "2015": 0.927, + "2016": 0.934, + "2017": 0.935, + "2018": 0.937, + "2019": 0.939, + "2020": 0.927, + "2021": 0.938 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr103", + "Region": "Liguria", + "1990": 0.899, + "1991": 0.901, + "1992": 0.902, + "1993": 0.901, + "1994": 0.904, + "1995": 0.909, + "1996": 0.912, + "1997": 0.915, + "1998": 0.919, + "1999": 0.921, + "2000": 0.925, + "2001": 0.931, + "2002": 0.928, + "2003": 0.93, + "2004": 0.931, + "2005": 0.932, + "2006": 0.933, + "2007": 0.937, + "2008": 0.934, + "2009": 0.928, + "2010": 0.924, + "2011": 0.924, + "2012": 0.92, + "2013": 0.915, + "2014": 0.917, + "2015": 0.919, + "2016": 0.924, + "2017": 0.926, + "2018": 0.927, + "2019": 0.929, + "2020": 0.917, + "2021": 0.928 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr104", + "Region": "Lombardia", + "1990": 0.935, + "1991": 0.937, + "1992": 0.938, + "1993": 0.937, + "1994": 0.94, + "1995": 0.945, + "1996": 0.947, + "1997": 0.951, + "1998": 0.955, + "1999": 0.957, + "2000": 0.961, + "2001": 0.964, + "2002": 0.965, + "2003": 0.965, + "2004": 0.964, + "2005": 0.963, + "2006": 0.963, + "2007": 0.964, + "2008": 0.963, + "2009": 0.955, + "2010": 0.959, + "2011": 0.958, + "2012": 0.951, + "2013": 0.946, + "2014": 0.948, + "2015": 0.949, + "2016": 0.954, + "2017": 0.957, + "2018": 0.959, + "2019": 0.961, + "2020": 0.949, + "2021": 0.96 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr120", + "Region": "Marche", + "1990": 0.881, + "1991": 0.883, + "1992": 0.884, + "1993": 0.883, + "1994": 0.886, + "1995": 0.891, + "1996": 0.893, + "1997": 0.897, + "1998": 0.9, + "1999": 0.903, + "2000": 0.906, + "2001": 0.911, + "2002": 0.914, + "2003": 0.912, + "2004": 0.913, + "2005": 0.914, + "2006": 0.917, + "2007": 0.919, + "2008": 0.911, + "2009": 0.907, + "2010": 0.904, + "2011": 0.903, + "2012": 0.898, + "2013": 0.893, + "2014": 0.896, + "2015": 0.896, + "2016": 0.9, + "2017": 0.903, + "2018": 0.905, + "2019": 0.906, + "2020": 0.895, + "2021": 0.905 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr106", + "Region": "Molise", + "1990": 0.849, + "1991": 0.851, + "1992": 0.851, + "1993": 0.85, + "1994": 0.853, + "1995": 0.858, + "1996": 0.861, + "1997": 0.864, + "1998": 0.867, + "1999": 0.87, + "2000": 0.873, + "2001": 0.878, + "2002": 0.877, + "2003": 0.876, + "2004": 0.878, + "2005": 0.88, + "2006": 0.886, + "2007": 0.889, + "2008": 0.88, + "2009": 0.878, + "2010": 0.875, + "2011": 0.873, + "2012": 0.865, + "2013": 0.853, + "2014": 0.85, + "2015": 0.853, + "2016": 0.856, + "2017": 0.858, + "2018": 0.862, + "2019": 0.865, + "2020": 0.853, + "2021": 0.864 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr101", + "Region": "Piemonte", + "1990": 0.903, + "1991": 0.905, + "1992": 0.905, + "1993": 0.904, + "1994": 0.907, + "1995": 0.912, + "1996": 0.915, + "1997": 0.919, + "1998": 0.922, + "1999": 0.925, + "2000": 0.928, + "2001": 0.931, + "2002": 0.931, + "2003": 0.932, + "2004": 0.933, + "2005": 0.933, + "2006": 0.935, + "2007": 0.935, + "2008": 0.928, + "2009": 0.917, + "2010": 0.921, + "2011": 0.921, + "2012": 0.913, + "2013": 0.912, + "2014": 0.91, + "2015": 0.912, + "2016": 0.918, + "2017": 0.922, + "2018": 0.925, + "2019": 0.927, + "2020": 0.915, + "2021": 0.926 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr113", + "Region": "Provincia Autonoma di Bolzano", + "1990": 0.948, + "1991": 0.95, + "1992": 0.95, + "1993": 0.949, + "1994": 0.952, + "1995": 0.957, + "1996": 0.96, + "1997": 0.964, + "1998": 0.967, + "1999": 0.97, + "2000": 0.974, + "2001": 0.974, + "2002": 0.97, + "2003": 0.971, + "2004": 0.975, + "2005": 0.972, + "2006": 0.975, + "2007": 0.977, + "2008": 0.974, + "2009": 0.973, + "2010": 0.975, + "2011": 0.975, + "2012": 0.978, + "2013": 0.977, + "2014": 0.977, + "2015": 0.978, + "2016": 0.981, + "2017": 0.984, + "2018": 0.988, + "2019": 0.992, + "2020": 0.979, + "2021": 0.991 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr114", + "Region": "Provincia Autonoma di Trento", + "1990": 0.938, + "1991": 0.94, + "1992": 0.94, + "1993": 0.939, + "1994": 0.942, + "1995": 0.947, + "1996": 0.95, + "1997": 0.954, + "1998": 0.957, + "1999": 0.96, + "2000": 0.964, + "2001": 0.966, + "2002": 0.964, + "2003": 0.963, + "2004": 0.962, + "2005": 0.96, + "2006": 0.96, + "2007": 0.963, + "2008": 0.957, + "2009": 0.955, + "2010": 0.955, + "2011": 0.954, + "2012": 0.951, + "2013": 0.952, + "2014": 0.95, + "2015": 0.948, + "2016": 0.951, + "2017": 0.953, + "2018": 0.957, + "2019": 0.958, + "2020": 0.946, + "2021": 0.957 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr108", + "Region": "Puglia", + "1990": 0.823, + "1991": 0.825, + "1992": 0.826, + "1993": 0.825, + "1994": 0.828, + "1995": 0.832, + "1996": 0.835, + "1997": 0.838, + "1998": 0.841, + "1999": 0.844, + "2000": 0.847, + "2001": 0.851, + "2002": 0.851, + "2003": 0.849, + "2004": 0.851, + "2005": 0.85, + "2006": 0.853, + "2007": 0.852, + "2008": 0.844, + "2009": 0.842, + "2010": 0.841, + "2011": 0.842, + "2012": 0.841, + "2013": 0.835, + "2014": 0.835, + "2015": 0.837, + "2016": 0.841, + "2017": 0.842, + "2018": 0.846, + "2019": 0.849, + "2020": 0.838, + "2021": 0.848 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr112", + "Region": "Sardegna", + "1990": 0.834, + "1991": 0.836, + "1992": 0.837, + "1993": 0.835, + "1994": 0.838, + "1995": 0.843, + "1996": 0.846, + "1997": 0.849, + "1998": 0.852, + "1999": 0.855, + "2000": 0.858, + "2001": 0.863, + "2002": 0.863, + "2003": 0.865, + "2004": 0.868, + "2005": 0.868, + "2006": 0.87, + "2007": 0.871, + "2008": 0.87, + "2009": 0.866, + "2010": 0.865, + "2011": 0.864, + "2012": 0.861, + "2013": 0.855, + "2014": 0.853, + "2015": 0.858, + "2016": 0.858, + "2017": 0.861, + "2018": 0.863, + "2019": 0.867, + "2020": 0.855, + "2021": 0.866 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr111", + "Region": "Sicilia", + "1990": 0.819, + "1991": 0.82, + "1992": 0.821, + "1993": 0.82, + "1994": 0.823, + "1995": 0.828, + "1996": 0.83, + "1997": 0.834, + "1998": 0.837, + "1999": 0.84, + "2000": 0.843, + "2001": 0.848, + "2002": 0.848, + "2003": 0.849, + "2004": 0.85, + "2005": 0.853, + "2006": 0.855, + "2007": 0.855, + "2008": 0.851, + "2009": 0.847, + "2010": 0.845, + "2011": 0.841, + "2012": 0.838, + "2013": 0.833, + "2014": 0.829, + "2015": 0.83, + "2016": 0.832, + "2017": 0.834, + "2018": 0.835, + "2019": 0.837, + "2020": 0.826, + "2021": 0.836 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr118", + "Region": "Toscana", + "1990": 0.899, + "1991": 0.901, + "1992": 0.902, + "1993": 0.901, + "1994": 0.904, + "1995": 0.909, + "1996": 0.912, + "1997": 0.915, + "1998": 0.919, + "1999": 0.921, + "2000": 0.925, + "2001": 0.928, + "2002": 0.928, + "2003": 0.928, + "2004": 0.929, + "2005": 0.928, + "2006": 0.929, + "2007": 0.931, + "2008": 0.925, + "2009": 0.922, + "2010": 0.921, + "2011": 0.921, + "2012": 0.917, + "2013": 0.914, + "2014": 0.916, + "2015": 0.916, + "2016": 0.92, + "2017": 0.922, + "2018": 0.925, + "2019": 0.928, + "2020": 0.916, + "2021": 0.927 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr119", + "Region": "Umbria", + "1990": 0.888, + "1991": 0.89, + "1992": 0.891, + "1993": 0.89, + "1994": 0.892, + "1995": 0.897, + "1996": 0.9, + "1997": 0.904, + "1998": 0.907, + "1999": 0.91, + "2000": 0.913, + "2001": 0.917, + "2002": 0.915, + "2003": 0.914, + "2004": 0.915, + "2005": 0.914, + "2006": 0.916, + "2007": 0.917, + "2008": 0.912, + "2009": 0.902, + "2010": 0.901, + "2011": 0.899, + "2012": 0.892, + "2013": 0.887, + "2014": 0.883, + "2015": 0.886, + "2016": 0.888, + "2017": 0.891, + "2018": 0.895, + "2019": 0.898, + "2020": 0.887, + "2021": 0.897 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr102", + "Region": "Valle dAosta", + "1990": 0.935, + "1991": 0.937, + "1992": 0.938, + "1993": 0.937, + "1994": 0.94, + "1995": 0.945, + "1996": 0.947, + "1997": 0.951, + "1998": 0.955, + "1999": 0.957, + "2000": 0.961, + "2001": 0.964, + "2002": 0.964, + "2003": 0.97, + "2004": 0.969, + "2005": 0.969, + "2006": 0.969, + "2007": 0.968, + "2008": 0.967, + "2009": 0.96, + "2010": 0.964, + "2011": 0.964, + "2012": 0.962, + "2013": 0.953, + "2014": 0.95, + "2015": 0.95, + "2016": 0.95, + "2017": 0.955, + "2018": 0.956, + "2019": 0.958, + "2020": 0.946, + "2021": 0.957 + }, + { + "Country": "Italy", + "Continent": "Europe", + "ISO_Code": "ITA", + "Level": "Subnat", + "GDLCODE": "ITAr115", + "Region": "Veneto", + "1990": 0.911, + "1991": 0.913, + "1992": 0.913, + "1993": 0.912, + "1994": 0.915, + "1995": 0.92, + "1996": 0.923, + "1997": 0.927, + "1998": 0.93, + "1999": 0.933, + "2000": 0.936, + "2001": 0.937, + "2002": 0.935, + "2003": 0.937, + "2004": 0.938, + "2005": 0.938, + "2006": 0.938, + "2007": 0.94, + "2008": 0.932, + "2009": 0.927, + "2010": 0.927, + "2011": 0.928, + "2012": 0.923, + "2013": 0.92, + "2014": 0.921, + "2015": 0.923, + "2016": 0.929, + "2017": 0.932, + "2018": 0.934, + "2019": 0.936, + "2020": 0.924, + "2021": 0.935 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "National", + "GDLCODE": "JAMt", + "Region": "Total", + "1990": 0.665, + "1991": 0.671, + "1992": 0.672, + "1993": 0.684, + "1994": 0.685, + "1995": 0.687, + "1996": 0.685, + "1997": 0.682, + "1998": 0.677, + "1999": 0.677, + "2000": 0.677, + "2001": 0.678, + "2002": 0.68, + "2003": 0.685, + "2004": 0.686, + "2005": 0.686, + "2006": 0.69, + "2007": 0.691, + "2008": 0.691, + "2009": 0.682, + "2010": 0.681, + "2011": 0.683, + "2012": 0.685, + "2013": 0.683, + "2014": 0.684, + "2015": 0.683, + "2016": 0.682, + "2017": 0.685, + "2018": 0.686, + "2019": 0.688, + "2020": 0.671, + "2021": 0.677 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr101", + "Region": "Kingston, St Andrew", + "1990": 0.705, + "1991": 0.711, + "1992": 0.713, + "1993": 0.725, + "1994": 0.726, + "1995": 0.728, + "1996": 0.726, + "1997": 0.723, + "1998": 0.718, + "1999": 0.718, + "2000": 0.718, + "2001": 0.719, + "2002": 0.721, + "2003": 0.726, + "2004": 0.727, + "2005": 0.727, + "2006": 0.731, + "2007": 0.732, + "2008": 0.732, + "2009": 0.722, + "2010": 0.722, + "2011": 0.724, + "2012": 0.726, + "2013": 0.724, + "2014": 0.725, + "2015": 0.724, + "2016": 0.723, + "2017": 0.726, + "2018": 0.727, + "2019": 0.729, + "2020": 0.711, + "2021": 0.718 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr106", + "Region": "Manchester, Clarendon", + "1990": 0.652, + "1991": 0.658, + "1992": 0.66, + "1993": 0.672, + "1994": 0.673, + "1995": 0.675, + "1996": 0.673, + "1997": 0.67, + "1998": 0.665, + "1999": 0.665, + "2000": 0.665, + "2001": 0.666, + "2002": 0.668, + "2003": 0.672, + "2004": 0.673, + "2005": 0.674, + "2006": 0.677, + "2007": 0.679, + "2008": 0.679, + "2009": 0.669, + "2010": 0.669, + "2011": 0.671, + "2012": 0.672, + "2013": 0.671, + "2014": 0.671, + "2015": 0.67, + "2016": 0.67, + "2017": 0.673, + "2018": 0.673, + "2019": 0.676, + "2020": 0.658, + "2021": 0.665 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr103", + "Region": "St Ann, St Catherine", + "1990": 0.668, + "1991": 0.674, + "1992": 0.676, + "1993": 0.688, + "1994": 0.689, + "1995": 0.691, + "1996": 0.689, + "1997": 0.686, + "1998": 0.681, + "1999": 0.681, + "2000": 0.681, + "2001": 0.682, + "2002": 0.684, + "2003": 0.689, + "2004": 0.69, + "2005": 0.69, + "2006": 0.694, + "2007": 0.695, + "2008": 0.695, + "2009": 0.685, + "2010": 0.685, + "2011": 0.687, + "2012": 0.689, + "2013": 0.687, + "2014": 0.688, + "2015": 0.687, + "2016": 0.686, + "2017": 0.689, + "2018": 0.69, + "2019": 0.692, + "2020": 0.675, + "2021": 0.681 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr105", + "Region": "St James, Hanover, Westmoreland", + "1990": 0.655, + "1991": 0.661, + "1992": 0.662, + "1993": 0.674, + "1994": 0.675, + "1995": 0.677, + "1996": 0.675, + "1997": 0.672, + "1998": 0.667, + "1999": 0.667, + "2000": 0.667, + "2001": 0.668, + "2002": 0.67, + "2003": 0.675, + "2004": 0.676, + "2005": 0.676, + "2006": 0.68, + "2007": 0.681, + "2008": 0.681, + "2009": 0.671, + "2010": 0.671, + "2011": 0.673, + "2012": 0.675, + "2013": 0.673, + "2014": 0.674, + "2015": 0.673, + "2016": 0.672, + "2017": 0.675, + "2018": 0.676, + "2019": 0.678, + "2020": 0.661, + "2021": 0.667 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr102", + "Region": "St Thomas, Portland, St Mary", + "1990": 0.637, + "1991": 0.643, + "1992": 0.644, + "1993": 0.656, + "1994": 0.657, + "1995": 0.659, + "1996": 0.657, + "1997": 0.654, + "1998": 0.649, + "1999": 0.649, + "2000": 0.649, + "2001": 0.65, + "2002": 0.652, + "2003": 0.657, + "2004": 0.658, + "2005": 0.658, + "2006": 0.662, + "2007": 0.663, + "2008": 0.663, + "2009": 0.653, + "2010": 0.653, + "2011": 0.655, + "2012": 0.657, + "2013": 0.655, + "2014": 0.656, + "2015": 0.655, + "2016": 0.654, + "2017": 0.657, + "2018": 0.658, + "2019": 0.66, + "2020": 0.643, + "2021": 0.649 + }, + { + "Country": "Jamaica", + "Continent": "America", + "ISO_Code": "JAM", + "Level": "Subnat", + "GDLCODE": "JAMr104", + "Region": "Trelawny, St Elizabeth", + "1990": 0.61, + "1991": 0.616, + "1992": 0.617, + "1993": 0.629, + "1994": 0.63, + "1995": 0.632, + "1996": 0.63, + "1997": 0.627, + "1998": 0.622, + "1999": 0.622, + "2000": 0.622, + "2001": 0.623, + "2002": 0.625, + "2003": 0.629, + "2004": 0.631, + "2005": 0.631, + "2006": 0.634, + "2007": 0.636, + "2008": 0.636, + "2009": 0.626, + "2010": 0.626, + "2011": 0.628, + "2012": 0.63, + "2013": 0.628, + "2014": 0.629, + "2015": 0.628, + "2016": 0.627, + "2017": 0.63, + "2018": 0.631, + "2019": 0.633, + "2020": 0.616, + "2021": 0.622 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "National", + "GDLCODE": "JPNt", + "Region": "Total", + "1990": 0.887, + "1991": 0.892, + "1992": 0.893, + "1993": 0.892, + "1994": 0.89, + "1995": 0.893, + "1996": 0.898, + "1997": 0.898, + "1998": 0.896, + "1999": 0.895, + "2000": 0.899, + "2001": 0.899, + "2002": 0.899, + "2003": 0.9, + "2004": 0.903, + "2005": 0.905, + "2006": 0.907, + "2007": 0.908, + "2008": 0.903, + "2009": 0.897, + "2010": 0.902, + "2011": 0.901, + "2012": 0.902, + "2013": 0.906, + "2014": 0.907, + "2015": 0.912, + "2016": 0.914, + "2017": 0.916, + "2018": 0.916, + "2019": 0.917, + "2020": 0.911, + "2021": 0.913 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr108", + "Region": "Chugoku (Tottori, Shimane, Okayama, Hiroshima, Yamaguchi)", + "1990": 0.875, + "1991": 0.879, + "1992": 0.88, + "1993": 0.879, + "1994": 0.877, + "1995": 0.881, + "1996": 0.885, + "1997": 0.886, + "1998": 0.884, + "1999": 0.883, + "2000": 0.886, + "2001": 0.887, + "2002": 0.886, + "2003": 0.889, + "2004": 0.891, + "2005": 0.895, + "2006": 0.897, + "2007": 0.901, + "2008": 0.893, + "2009": 0.887, + "2010": 0.891, + "2011": 0.893, + "2012": 0.892, + "2013": 0.896, + "2014": 0.897, + "2015": 0.902, + "2016": 0.904, + "2017": 0.906, + "2018": 0.907, + "2019": 0.908, + "2020": 0.901, + "2021": 0.904 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr101", + "Region": "Hokkaido", + "1990": 0.868, + "1991": 0.872, + "1992": 0.873, + "1993": 0.872, + "1994": 0.871, + "1995": 0.874, + "1996": 0.878, + "1997": 0.879, + "1998": 0.877, + "1999": 0.876, + "2000": 0.879, + "2001": 0.879, + "2002": 0.877, + "2003": 0.878, + "2004": 0.881, + "2005": 0.879, + "2006": 0.876, + "2007": 0.876, + "2008": 0.874, + "2009": 0.873, + "2010": 0.877, + "2011": 0.875, + "2012": 0.876, + "2013": 0.88, + "2014": 0.881, + "2015": 0.886, + "2016": 0.888, + "2017": 0.89, + "2018": 0.89, + "2019": 0.891, + "2020": 0.884, + "2021": 0.887 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr105", + "Region": "Hokuriku (Niigata, Toyama, Ishikawa, Fukui)", + "1990": 0.885, + "1991": 0.89, + "1992": 0.891, + "1993": 0.889, + "1994": 0.888, + "1995": 0.891, + "1996": 0.895, + "1997": 0.896, + "1998": 0.894, + "1999": 0.893, + "2000": 0.897, + "2001": 0.897, + "2002": 0.896, + "2003": 0.897, + "2004": 0.899, + "2005": 0.902, + "2006": 0.901, + "2007": 0.902, + "2008": 0.898, + "2009": 0.891, + "2010": 0.899, + "2011": 0.898, + "2012": 0.899, + "2013": 0.902, + "2014": 0.903, + "2015": 0.908, + "2016": 0.91, + "2017": 0.912, + "2018": 0.912, + "2019": 0.913, + "2020": 0.907, + "2021": 0.909 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr107", + "Region": "Kansai region (Shiga, Kyoto, Osaka, Hyogo, Nara, Wakayama)", + "1990": 0.884, + "1991": 0.889, + "1992": 0.89, + "1993": 0.888, + "1994": 0.887, + "1995": 0.89, + "1996": 0.894, + "1997": 0.895, + "1998": 0.893, + "1999": 0.892, + "2000": 0.896, + "2001": 0.895, + "2002": 0.894, + "2003": 0.895, + "2004": 0.898, + "2005": 0.899, + "2006": 0.9, + "2007": 0.902, + "2008": 0.9, + "2009": 0.891, + "2010": 0.898, + "2011": 0.895, + "2012": 0.896, + "2013": 0.899, + "2014": 0.9, + "2015": 0.905, + "2016": 0.907, + "2017": 0.909, + "2018": 0.909, + "2019": 0.91, + "2020": 0.904, + "2021": 0.906 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr110", + "Region": "Kyushu (Fukuoka, Saga, Nagasaki, Kumamoto, Oita, Miyazaki, Kagoshima, Okinawa)", + "1990": 0.853, + "1991": 0.857, + "1992": 0.858, + "1993": 0.857, + "1994": 0.855, + "1995": 0.859, + "1996": 0.863, + "1997": 0.863, + "1998": 0.862, + "1999": 0.861, + "2000": 0.864, + "2001": 0.865, + "2002": 0.864, + "2003": 0.867, + "2004": 0.869, + "2005": 0.87, + "2006": 0.87, + "2007": 0.874, + "2008": 0.871, + "2009": 0.868, + "2010": 0.874, + "2011": 0.872, + "2012": 0.873, + "2013": 0.877, + "2014": 0.877, + "2015": 0.882, + "2016": 0.884, + "2017": 0.886, + "2018": 0.887, + "2019": 0.888, + "2020": 0.881, + "2021": 0.884 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr103", + "Region": "Northern-Kanto, Koshin (Ibaraki, Tochigi, Gunma)", + "1990": 0.876, + "1991": 0.881, + "1992": 0.882, + "1993": 0.88, + "1994": 0.879, + "1995": 0.882, + "1996": 0.886, + "1997": 0.887, + "1998": 0.885, + "1999": 0.884, + "2000": 0.888, + "2001": 0.889, + "2002": 0.889, + "2003": 0.891, + "2004": 0.892, + "2005": 0.895, + "2006": 0.896, + "2007": 0.9, + "2008": 0.895, + "2009": 0.888, + "2010": 0.896, + "2011": 0.895, + "2012": 0.897, + "2013": 0.902, + "2014": 0.903, + "2015": 0.908, + "2016": 0.91, + "2017": 0.912, + "2018": 0.912, + "2019": 0.913, + "2020": 0.907, + "2021": 0.91 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr109", + "Region": "Shikoku (Tokushima, Kagawa, Ehime, Kochi)", + "1990": 0.866, + "1991": 0.871, + "1992": 0.872, + "1993": 0.871, + "1994": 0.869, + "1995": 0.872, + "1996": 0.877, + "1997": 0.877, + "1998": 0.875, + "1999": 0.874, + "2000": 0.878, + "2001": 0.877, + "2002": 0.876, + "2003": 0.877, + "2004": 0.879, + "2005": 0.877, + "2006": 0.88, + "2007": 0.881, + "2008": 0.877, + "2009": 0.874, + "2010": 0.882, + "2011": 0.883, + "2012": 0.882, + "2013": 0.885, + "2014": 0.886, + "2015": 0.891, + "2016": 0.893, + "2017": 0.895, + "2018": 0.895, + "2019": 0.896, + "2020": 0.89, + "2021": 0.893 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr104", + "Region": "Southern-Kanto (Saitama, Chiba, Tokyo, Kanagawa, Yamanashi, Nagano)", + "1990": 0.916, + "1991": 0.921, + "1992": 0.922, + "1993": 0.921, + "1994": 0.919, + "1995": 0.922, + "1996": 0.927, + "1997": 0.927, + "1998": 0.925, + "1999": 0.924, + "2000": 0.928, + "2001": 0.927, + "2002": 0.926, + "2003": 0.928, + "2004": 0.932, + "2005": 0.934, + "2006": 0.934, + "2007": 0.935, + "2008": 0.931, + "2009": 0.923, + "2010": 0.925, + "2011": 0.924, + "2012": 0.924, + "2013": 0.927, + "2014": 0.928, + "2015": 0.933, + "2016": 0.935, + "2017": 0.937, + "2018": 0.937, + "2019": 0.938, + "2020": 0.931, + "2021": 0.934 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr102", + "Region": "Tohoku (Aomori, Iwate, Miyagi, Akita, Yamagata, Fukushima)", + "1990": 0.864, + "1991": 0.868, + "1992": 0.869, + "1993": 0.868, + "1994": 0.866, + "1995": 0.87, + "1996": 0.874, + "1997": 0.875, + "1998": 0.873, + "1999": 0.872, + "2000": 0.875, + "2001": 0.874, + "2002": 0.873, + "2003": 0.873, + "2004": 0.876, + "2005": 0.876, + "2006": 0.88, + "2007": 0.88, + "2008": 0.875, + "2009": 0.87, + "2010": 0.875, + "2011": 0.871, + "2012": 0.881, + "2013": 0.888, + "2014": 0.889, + "2015": 0.894, + "2016": 0.896, + "2017": 0.898, + "2018": 0.898, + "2019": 0.899, + "2020": 0.892, + "2021": 0.895 + }, + { + "Country": "Japan", + "Continent": "Asia/Pacific", + "ISO_Code": "JPN", + "Level": "Subnat", + "GDLCODE": "JPNr106", + "Region": "Toukai (Gifu, Shizuoka, Aichi, Mie)", + "1990": 0.892, + "1991": 0.897, + "1992": 0.898, + "1993": 0.897, + "1994": 0.895, + "1995": 0.899, + "1996": 0.903, + "1997": 0.904, + "1998": 0.902, + "1999": 0.901, + "2000": 0.904, + "2001": 0.908, + "2002": 0.911, + "2003": 0.912, + "2004": 0.915, + "2005": 0.92, + "2006": 0.923, + "2007": 0.925, + "2008": 0.912, + "2009": 0.905, + "2010": 0.911, + "2011": 0.91, + "2012": 0.916, + "2013": 0.921, + "2014": 0.921, + "2015": 0.926, + "2016": 0.928, + "2017": 0.931, + "2018": 0.931, + "2019": 0.932, + "2020": 0.925, + "2021": 0.928 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "National", + "GDLCODE": "JORt", + "Region": "Total", + "1990": 0.654, + "1991": 0.643, + "1992": 0.658, + "1993": 0.658, + "1994": 0.658, + "1995": 0.663, + "1996": 0.661, + "1997": 0.664, + "1998": 0.667, + "1999": 0.669, + "2000": 0.677, + "2001": 0.683, + "2002": 0.687, + "2003": 0.69, + "2004": 0.7, + "2005": 0.707, + "2006": 0.714, + "2007": 0.72, + "2008": 0.721, + "2009": 0.721, + "2010": 0.713, + "2011": 0.709, + "2012": 0.704, + "2013": 0.7, + "2014": 0.698, + "2015": 0.696, + "2016": 0.695, + "2017": 0.695, + "2018": 0.695, + "2019": 0.697, + "2020": 0.692, + "2021": 0.694 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr108", + "Region": "Aljoun", + "1990": 0.64, + "1991": 0.63, + "1992": 0.645, + "1993": 0.644, + "1994": 0.645, + "1995": 0.649, + "1996": 0.648, + "1997": 0.651, + "1998": 0.654, + "1999": 0.656, + "2000": 0.663, + "2001": 0.669, + "2002": 0.673, + "2003": 0.676, + "2004": 0.684, + "2005": 0.689, + "2006": 0.694, + "2007": 0.699, + "2008": 0.702, + "2009": 0.702, + "2010": 0.696, + "2011": 0.693, + "2012": 0.689, + "2013": 0.686, + "2014": 0.685, + "2015": 0.684, + "2016": 0.684, + "2017": 0.685, + "2018": 0.685, + "2019": 0.687, + "2020": 0.683, + "2021": 0.685 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr101", + "Region": "Amman", + "1990": 0.667, + "1991": 0.657, + "1992": 0.671, + "1993": 0.671, + "1994": 0.671, + "1995": 0.676, + "1996": 0.674, + "1997": 0.677, + "1998": 0.68, + "1999": 0.683, + "2000": 0.69, + "2001": 0.696, + "2002": 0.7, + "2003": 0.703, + "2004": 0.713, + "2005": 0.719, + "2006": 0.725, + "2007": 0.73, + "2008": 0.731, + "2009": 0.73, + "2010": 0.722, + "2011": 0.717, + "2012": 0.711, + "2013": 0.708, + "2014": 0.707, + "2015": 0.705, + "2016": 0.704, + "2017": 0.705, + "2018": 0.705, + "2019": 0.707, + "2020": 0.702, + "2021": 0.705 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr112", + "Region": "Aqaba", + "1990": 0.636, + "1991": 0.626, + "1992": 0.64, + "1993": 0.64, + "1994": 0.64, + "1995": 0.645, + "1996": 0.643, + "1997": 0.646, + "1998": 0.649, + "1999": 0.651, + "2000": 0.659, + "2001": 0.664, + "2002": 0.669, + "2003": 0.675, + "2004": 0.687, + "2005": 0.697, + "2006": 0.706, + "2007": 0.714, + "2008": 0.718, + "2009": 0.72, + "2010": 0.715, + "2011": 0.713, + "2012": 0.71, + "2013": 0.706, + "2014": 0.703, + "2015": 0.701, + "2016": 0.699, + "2017": 0.699, + "2018": 0.699, + "2019": 0.701, + "2020": 0.696, + "2021": 0.698 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr102", + "Region": "Balqa", + "1990": 0.638, + "1991": 0.628, + "1992": 0.642, + "1993": 0.642, + "1994": 0.643, + "1995": 0.647, + "1996": 0.645, + "1997": 0.649, + "1998": 0.652, + "1999": 0.654, + "2000": 0.661, + "2001": 0.667, + "2002": 0.671, + "2003": 0.677, + "2004": 0.689, + "2005": 0.698, + "2006": 0.707, + "2007": 0.715, + "2008": 0.717, + "2009": 0.717, + "2010": 0.71, + "2011": 0.706, + "2012": 0.701, + "2013": 0.697, + "2014": 0.694, + "2015": 0.691, + "2016": 0.689, + "2017": 0.688, + "2018": 0.689, + "2019": 0.69, + "2020": 0.686, + "2021": 0.688 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr105", + "Region": "Irbid", + "1990": 0.648, + "1991": 0.638, + "1992": 0.652, + "1993": 0.652, + "1994": 0.653, + "1995": 0.657, + "1996": 0.655, + "1997": 0.659, + "1998": 0.662, + "1999": 0.664, + "2000": 0.671, + "2001": 0.677, + "2002": 0.681, + "2003": 0.683, + "2004": 0.691, + "2005": 0.696, + "2006": 0.7, + "2007": 0.704, + "2008": 0.706, + "2009": 0.706, + "2010": 0.699, + "2011": 0.696, + "2012": 0.691, + "2013": 0.688, + "2014": 0.687, + "2015": 0.686, + "2016": 0.685, + "2017": 0.686, + "2018": 0.686, + "2019": 0.688, + "2020": 0.684, + "2021": 0.686 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr107", + "Region": "Jarash", + "1990": 0.639, + "1991": 0.629, + "1992": 0.643, + "1993": 0.643, + "1994": 0.643, + "1995": 0.648, + "1996": 0.646, + "1997": 0.649, + "1998": 0.652, + "1999": 0.654, + "2000": 0.662, + "2001": 0.668, + "2002": 0.672, + "2003": 0.676, + "2004": 0.686, + "2005": 0.693, + "2006": 0.7, + "2007": 0.706, + "2008": 0.709, + "2009": 0.71, + "2010": 0.704, + "2011": 0.701, + "2012": 0.698, + "2013": 0.694, + "2014": 0.691, + "2015": 0.689, + "2016": 0.687, + "2017": 0.687, + "2018": 0.687, + "2019": 0.688, + "2020": 0.684, + "2021": 0.686 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr109", + "Region": "Karak", + "1990": 0.631, + "1991": 0.621, + "1992": 0.635, + "1993": 0.635, + "1994": 0.635, + "1995": 0.64, + "1996": 0.638, + "1997": 0.641, + "1998": 0.644, + "1999": 0.646, + "2000": 0.654, + "2001": 0.659, + "2002": 0.663, + "2003": 0.669, + "2004": 0.681, + "2005": 0.691, + "2006": 0.699, + "2007": 0.708, + "2008": 0.712, + "2009": 0.714, + "2010": 0.709, + "2011": 0.708, + "2012": 0.705, + "2013": 0.702, + "2014": 0.701, + "2015": 0.699, + "2016": 0.699, + "2017": 0.699, + "2018": 0.699, + "2019": 0.701, + "2020": 0.697, + "2021": 0.699 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr111", + "Region": "Maan", + "1990": 0.634, + "1991": 0.624, + "1992": 0.638, + "1993": 0.638, + "1994": 0.638, + "1995": 0.643, + "1996": 0.641, + "1997": 0.644, + "1998": 0.647, + "1999": 0.649, + "2000": 0.657, + "2001": 0.663, + "2002": 0.667, + "2003": 0.672, + "2004": 0.683, + "2005": 0.692, + "2006": 0.7, + "2007": 0.707, + "2008": 0.711, + "2009": 0.713, + "2010": 0.708, + "2011": 0.706, + "2012": 0.703, + "2013": 0.699, + "2014": 0.697, + "2015": 0.695, + "2016": 0.694, + "2017": 0.693, + "2018": 0.694, + "2019": 0.695, + "2020": 0.691, + "2021": 0.693 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr104", + "Region": "Madaba", + "1990": 0.645, + "1991": 0.635, + "1992": 0.649, + "1993": 0.649, + "1994": 0.65, + "1995": 0.654, + "1996": 0.653, + "1997": 0.656, + "1998": 0.659, + "1999": 0.661, + "2000": 0.668, + "2001": 0.674, + "2002": 0.678, + "2003": 0.685, + "2004": 0.697, + "2005": 0.707, + "2006": 0.716, + "2007": 0.725, + "2008": 0.726, + "2009": 0.724, + "2010": 0.716, + "2011": 0.71, + "2012": 0.704, + "2013": 0.7, + "2014": 0.698, + "2015": 0.695, + "2016": 0.693, + "2017": 0.693, + "2018": 0.693, + "2019": 0.695, + "2020": 0.69, + "2021": 0.692 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr106", + "Region": "Mafraq", + "1990": 0.632, + "1991": 0.622, + "1992": 0.636, + "1993": 0.636, + "1994": 0.637, + "1995": 0.641, + "1996": 0.639, + "1997": 0.642, + "1998": 0.645, + "1999": 0.647, + "2000": 0.655, + "2001": 0.661, + "2002": 0.665, + "2003": 0.67, + "2004": 0.681, + "2005": 0.69, + "2006": 0.698, + "2007": 0.705, + "2008": 0.71, + "2009": 0.712, + "2010": 0.707, + "2011": 0.705, + "2012": 0.703, + "2013": 0.694, + "2014": 0.686, + "2015": 0.679, + "2016": 0.672, + "2017": 0.666, + "2018": 0.667, + "2019": 0.668, + "2020": 0.664, + "2021": 0.666 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr110", + "Region": "Tafiela", + "1990": 0.636, + "1991": 0.626, + "1992": 0.64, + "1993": 0.64, + "1994": 0.64, + "1995": 0.645, + "1996": 0.643, + "1997": 0.646, + "1998": 0.649, + "1999": 0.651, + "2000": 0.659, + "2001": 0.665, + "2002": 0.669, + "2003": 0.675, + "2004": 0.687, + "2005": 0.697, + "2006": 0.706, + "2007": 0.714, + "2008": 0.717, + "2009": 0.718, + "2010": 0.712, + "2011": 0.709, + "2012": 0.706, + "2013": 0.702, + "2014": 0.7, + "2015": 0.698, + "2016": 0.697, + "2017": 0.697, + "2018": 0.697, + "2019": 0.699, + "2020": 0.695, + "2021": 0.697 + }, + { + "Country": "Jordan", + "Continent": "Asia/Pacific", + "ISO_Code": "JOR", + "Level": "Subnat", + "GDLCODE": "JORr103", + "Region": "Zarqa", + "1990": 0.654, + "1991": 0.644, + "1992": 0.658, + "1993": 0.658, + "1994": 0.659, + "1995": 0.663, + "1996": 0.662, + "1997": 0.665, + "1998": 0.668, + "1999": 0.67, + "2000": 0.677, + "2001": 0.683, + "2002": 0.687, + "2003": 0.692, + "2004": 0.703, + "2005": 0.711, + "2006": 0.719, + "2007": 0.726, + "2008": 0.726, + "2009": 0.724, + "2010": 0.715, + "2011": 0.709, + "2012": 0.703, + "2013": 0.699, + "2014": 0.696, + "2015": 0.693, + "2016": 0.691, + "2017": 0.691, + "2018": 0.691, + "2019": 0.692, + "2020": 0.688, + "2021": 0.69 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "National", + "GDLCODE": "KAZt", + "Region": "Total", + "1990": 0.743, + "1991": 0.726, + "1992": 0.718, + "1993": 0.704, + "1994": 0.686, + "1995": 0.676, + "1996": 0.678, + "1997": 0.683, + "1998": 0.683, + "1999": 0.685, + "2000": 0.696, + "2001": 0.717, + "2002": 0.733, + "2003": 0.744, + "2004": 0.754, + "2005": 0.761, + "2006": 0.77, + "2007": 0.778, + "2008": 0.774, + "2009": 0.782, + "2010": 0.784, + "2011": 0.787, + "2012": 0.794, + "2013": 0.808, + "2014": 0.813, + "2015": 0.822, + "2016": 0.815, + "2017": 0.816, + "2018": 0.816, + "2019": 0.82, + "2020": 0.824, + "2021": 0.828 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr101", + "Region": "Almaty city", + "1990": 0.819, + "1991": 0.801, + "1992": 0.793, + "1993": 0.778, + "1994": 0.758, + "1995": 0.748, + "1996": 0.752, + "1997": 0.758, + "1998": 0.759, + "1999": 0.763, + "2000": 0.771, + "2001": 0.791, + "2002": 0.805, + "2003": 0.814, + "2004": 0.822, + "2005": 0.826, + "2006": 0.832, + "2007": 0.841, + "2008": 0.836, + "2009": 0.845, + "2010": 0.846, + "2011": 0.843, + "2012": 0.845, + "2013": 0.853, + "2014": 0.852, + "2015": 0.856, + "2016": 0.848, + "2017": 0.849, + "2018": 0.849, + "2019": 0.853, + "2020": 0.857, + "2021": 0.861 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr104", + "Region": "Central region (Karagandinskaya)", + "1990": 0.751, + "1991": 0.733, + "1992": 0.726, + "1993": 0.712, + "1994": 0.693, + "1995": 0.683, + "1996": 0.698, + "1997": 0.715, + "1998": 0.727, + "1999": 0.742, + "2000": 0.749, + "2001": 0.767, + "2002": 0.779, + "2003": 0.787, + "2004": 0.794, + "2005": 0.797, + "2006": 0.802, + "2007": 0.81, + "2008": 0.804, + "2009": 0.812, + "2010": 0.813, + "2011": 0.812, + "2012": 0.816, + "2013": 0.827, + "2014": 0.828, + "2015": 0.834, + "2016": 0.826, + "2017": 0.827, + "2018": 0.827, + "2019": 0.831, + "2020": 0.835, + "2021": 0.839 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr106", + "Region": "East region (East-Kazakhstanskaya)", + "1990": 0.76, + "1991": 0.742, + "1992": 0.734, + "1993": 0.72, + "1994": 0.702, + "1995": 0.691, + "1996": 0.696, + "1997": 0.702, + "1998": 0.703, + "1999": 0.708, + "2000": 0.715, + "2001": 0.733, + "2002": 0.745, + "2003": 0.753, + "2004": 0.761, + "2005": 0.764, + "2006": 0.769, + "2007": 0.775, + "2008": 0.768, + "2009": 0.774, + "2010": 0.774, + "2011": 0.777, + "2012": 0.786, + "2013": 0.8, + "2014": 0.806, + "2015": 0.816, + "2016": 0.809, + "2017": 0.81, + "2018": 0.81, + "2019": 0.814, + "2020": 0.817, + "2021": 0.821 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr105", + "Region": "North region (Akmolinskaya (incl Astana city), Kostnaiskaya, Pavlodarskaya, North-Kazakhstanskaya)", + "1990": 0.761, + "1991": 0.744, + "1992": 0.736, + "1993": 0.722, + "1994": 0.703, + "1995": 0.693, + "1996": 0.69, + "1997": 0.689, + "1998": 0.684, + "1999": 0.681, + "2000": 0.691, + "2001": 0.713, + "2002": 0.729, + "2003": 0.741, + "2004": 0.752, + "2005": 0.759, + "2006": 0.768, + "2007": 0.778, + "2008": 0.775, + "2009": 0.785, + "2010": 0.788, + "2011": 0.79, + "2012": 0.797, + "2013": 0.81, + "2014": 0.814, + "2015": 0.822, + "2016": 0.814, + "2017": 0.816, + "2018": 0.816, + "2019": 0.82, + "2020": 0.823, + "2021": 0.827 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr102", + "Region": "South region (Almatinskaya, Zhambylskaya, Kyzylordinskaya, South-Kazakhstanskaya)", + "1990": 0.704, + "1991": 0.687, + "1992": 0.68, + "1993": 0.666, + "1994": 0.648, + "1995": 0.639, + "1996": 0.641, + "1997": 0.645, + "1998": 0.644, + "1999": 0.647, + "2000": 0.658, + "2001": 0.68, + "2002": 0.697, + "2003": 0.709, + "2004": 0.721, + "2005": 0.729, + "2006": 0.738, + "2007": 0.748, + "2008": 0.744, + "2009": 0.753, + "2010": 0.755, + "2011": 0.762, + "2012": 0.774, + "2013": 0.792, + "2014": 0.801, + "2015": 0.815, + "2016": 0.807, + "2017": 0.808, + "2018": 0.808, + "2019": 0.812, + "2020": 0.816, + "2021": 0.82 + }, + { + "Country": "Kazakhstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KAZ", + "Level": "Subnat", + "GDLCODE": "KAZr103", + "Region": "West region (Aktyubinskaya, Atyrauskaya, Mangistauskaya, West-Kazakhstanskaya)", + "1990": 0.739, + "1991": 0.722, + "1992": 0.715, + "1993": 0.701, + "1994": 0.682, + "1995": 0.672, + "1996": 0.674, + "1997": 0.678, + "1998": 0.677, + "1999": 0.68, + "2000": 0.69, + "2001": 0.712, + "2002": 0.728, + "2003": 0.74, + "2004": 0.751, + "2005": 0.758, + "2006": 0.768, + "2007": 0.776, + "2008": 0.772, + "2009": 0.78, + "2010": 0.782, + "2011": 0.783, + "2012": 0.79, + "2013": 0.803, + "2014": 0.806, + "2015": 0.815, + "2016": 0.807, + "2017": 0.808, + "2018": 0.808, + "2019": 0.812, + "2020": 0.816, + "2021": 0.82 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "National", + "GDLCODE": "KENt", + "Region": "Total", + "1990": 0.535, + "1991": 0.531, + "1992": 0.525, + "1993": 0.518, + "1994": 0.519, + "1995": 0.523, + "1996": 0.527, + "1997": 0.524, + "1998": 0.526, + "1999": 0.524, + "2000": 0.522, + "2001": 0.523, + "2002": 0.52, + "2003": 0.52, + "2004": 0.524, + "2005": 0.529, + "2006": 0.534, + "2007": 0.54, + "2008": 0.537, + "2009": 0.517, + "2010": 0.526, + "2011": 0.533, + "2012": 0.534, + "2013": 0.535, + "2014": 0.539, + "2015": 0.544, + "2016": 0.561, + "2017": 0.562, + "2018": 0.567, + "2019": 0.571, + "2020": 0.567, + "2021": 0.574 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr102", + "Region": "Central", + "1990": 0.541, + "1991": 0.537, + "1992": 0.531, + "1993": 0.524, + "1994": 0.524, + "1995": 0.527, + "1996": 0.53, + "1997": 0.526, + "1998": 0.526, + "1999": 0.529, + "2000": 0.53, + "2001": 0.535, + "2002": 0.536, + "2003": 0.54, + "2004": 0.543, + "2005": 0.549, + "2006": 0.554, + "2007": 0.559, + "2008": 0.555, + "2009": 0.539, + "2010": 0.552, + "2011": 0.564, + "2012": 0.569, + "2013": 0.574, + "2014": 0.582, + "2015": 0.588, + "2016": 0.604, + "2017": 0.606, + "2018": 0.611, + "2019": 0.615, + "2020": 0.611, + "2021": 0.618 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr103", + "Region": "Coast", + "1990": 0.567, + "1991": 0.563, + "1992": 0.557, + "1993": 0.55, + "1994": 0.55, + "1995": 0.555, + "1996": 0.559, + "1997": 0.556, + "1998": 0.557, + "1999": 0.55, + "2000": 0.542, + "2001": 0.539, + "2002": 0.53, + "2003": 0.525, + "2004": 0.532, + "2005": 0.54, + "2006": 0.548, + "2007": 0.556, + "2008": 0.556, + "2009": 0.535, + "2010": 0.544, + "2011": 0.551, + "2012": 0.552, + "2013": 0.552, + "2014": 0.556, + "2015": 0.562, + "2016": 0.578, + "2017": 0.579, + "2018": 0.585, + "2019": 0.589, + "2020": 0.585, + "2021": 0.592 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr104", + "Region": "Eastern", + "1990": 0.514, + "1991": 0.511, + "1992": 0.505, + "1993": 0.498, + "1994": 0.499, + "1995": 0.504, + "1996": 0.508, + "1997": 0.506, + "1998": 0.507, + "1999": 0.508, + "2000": 0.507, + "2001": 0.51, + "2002": 0.508, + "2003": 0.51, + "2004": 0.51, + "2005": 0.513, + "2006": 0.514, + "2007": 0.516, + "2008": 0.51, + "2009": 0.491, + "2010": 0.5, + "2011": 0.508, + "2012": 0.509, + "2013": 0.51, + "2014": 0.515, + "2015": 0.521, + "2016": 0.536, + "2017": 0.538, + "2018": 0.543, + "2019": 0.547, + "2020": 0.543, + "2021": 0.55 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr101", + "Region": "Nairobi", + "1990": 0.703, + "1991": 0.699, + "1992": 0.692, + "1993": 0.684, + "1994": 0.682, + "1995": 0.685, + "1996": 0.687, + "1997": 0.681, + "1998": 0.68, + "1999": 0.681, + "2000": 0.68, + "2001": 0.684, + "2002": 0.684, + "2003": 0.686, + "2004": 0.691, + "2005": 0.698, + "2006": 0.705, + "2007": 0.712, + "2008": 0.709, + "2009": 0.679, + "2010": 0.682, + "2011": 0.682, + "2012": 0.677, + "2013": 0.67, + "2014": 0.668, + "2015": 0.674, + "2016": 0.692, + "2017": 0.693, + "2018": 0.699, + "2019": 0.703, + "2020": 0.699, + "2021": 0.706 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr108", + "Region": "North Eastern", + "1990": 0.417, + "1991": 0.414, + "1992": 0.409, + "1993": 0.402, + "1994": 0.406, + "1995": 0.413, + "1996": 0.419, + "1997": 0.42, + "1998": 0.424, + "1999": 0.424, + "2000": 0.423, + "2001": 0.426, + "2002": 0.425, + "2003": 0.426, + "2004": 0.431, + "2005": 0.438, + "2006": 0.444, + "2007": 0.451, + "2008": 0.45, + "2009": 0.43, + "2010": 0.438, + "2011": 0.444, + "2012": 0.444, + "2013": 0.444, + "2014": 0.447, + "2015": 0.452, + "2016": 0.467, + "2017": 0.469, + "2018": 0.473, + "2019": 0.477, + "2020": 0.473, + "2021": 0.48 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr105", + "Region": "Nyanza", + "1990": 0.485, + "1991": 0.482, + "1992": 0.476, + "1993": 0.469, + "1994": 0.471, + "1995": 0.476, + "1996": 0.481, + "1997": 0.479, + "1998": 0.481, + "1999": 0.48, + "2000": 0.478, + "2001": 0.481, + "2002": 0.479, + "2003": 0.479, + "2004": 0.485, + "2005": 0.492, + "2006": 0.499, + "2007": 0.506, + "2008": 0.505, + "2009": 0.484, + "2010": 0.491, + "2011": 0.496, + "2012": 0.495, + "2013": 0.494, + "2014": 0.496, + "2015": 0.501, + "2016": 0.517, + "2017": 0.518, + "2018": 0.523, + "2019": 0.527, + "2020": 0.523, + "2021": 0.53 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr106", + "Region": "Rift Valley", + "1990": 0.522, + "1991": 0.518, + "1992": 0.512, + "1993": 0.505, + "1994": 0.506, + "1995": 0.51, + "1996": 0.514, + "1997": 0.511, + "1998": 0.512, + "1999": 0.508, + "2000": 0.504, + "2001": 0.503, + "2002": 0.498, + "2003": 0.496, + "2004": 0.501, + "2005": 0.509, + "2006": 0.515, + "2007": 0.523, + "2008": 0.521, + "2009": 0.5, + "2010": 0.508, + "2011": 0.513, + "2012": 0.513, + "2013": 0.513, + "2014": 0.515, + "2015": 0.521, + "2016": 0.537, + "2017": 0.538, + "2018": 0.543, + "2019": 0.547, + "2020": 0.543, + "2021": 0.55 + }, + { + "Country": "Kenya", + "Continent": "Africa", + "ISO_Code": "KEN", + "Level": "Subnat", + "GDLCODE": "KENr107", + "Region": "Western", + "1990": 0.511, + "1991": 0.507, + "1992": 0.502, + "1993": 0.494, + "1994": 0.494, + "1995": 0.497, + "1996": 0.5, + "1997": 0.496, + "1998": 0.496, + "1999": 0.493, + "2000": 0.487, + "2001": 0.486, + "2002": 0.48, + "2003": 0.478, + "2004": 0.483, + "2005": 0.49, + "2006": 0.496, + "2007": 0.503, + "2008": 0.501, + "2009": 0.477, + "2010": 0.48, + "2011": 0.481, + "2012": 0.477, + "2013": 0.472, + "2014": 0.471, + "2015": 0.476, + "2016": 0.491, + "2017": 0.492, + "2018": 0.497, + "2019": 0.501, + "2020": 0.497, + "2021": 0.504 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "National", + "GDLCODE": "KIRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.469, + "2001": 0.538, + "2002": 0.529, + "2003": 0.518, + "2004": 0.513, + "2005": 0.512, + "2006": 0.507, + "2007": 0.51, + "2008": 0.506, + "2009": 0.494, + "2010": 0.499, + "2011": 0.492, + "2012": 0.51, + "2013": 0.526, + "2014": 0.546, + "2015": 0.575, + "2016": 0.557, + "2017": 0.567, + "2018": 0.566, + "2019": 0.581, + "2020": 0.56, + "2021": 0.56 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr103", + "Region": "Central Gibert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.402, + "2001": 0.467, + "2002": 0.458, + "2003": 0.448, + "2004": 0.443, + "2005": 0.443, + "2006": 0.438, + "2007": 0.44, + "2008": 0.437, + "2009": 0.426, + "2010": 0.43, + "2011": 0.423, + "2012": 0.44, + "2013": 0.456, + "2014": 0.474, + "2015": 0.501, + "2016": 0.485, + "2017": 0.495, + "2018": 0.494, + "2019": 0.507, + "2020": 0.488, + "2021": 0.487 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr105", + "Region": "Line and Phoenix Group", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.444, + "2001": 0.512, + "2002": 0.502, + "2003": 0.492, + "2004": 0.487, + "2005": 0.486, + "2006": 0.482, + "2007": 0.484, + "2008": 0.48, + "2009": 0.469, + "2010": 0.473, + "2011": 0.466, + "2012": 0.484, + "2013": 0.5, + "2014": 0.519, + "2015": 0.547, + "2016": 0.53, + "2017": 0.54, + "2018": 0.539, + "2019": 0.553, + "2020": 0.533, + "2021": 0.533 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr102", + "Region": "Northern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.411, + "2001": 0.477, + "2002": 0.468, + "2003": 0.458, + "2004": 0.452, + "2005": 0.452, + "2006": 0.448, + "2007": 0.45, + "2008": 0.446, + "2009": 0.435, + "2010": 0.44, + "2011": 0.433, + "2012": 0.45, + "2013": 0.465, + "2014": 0.484, + "2015": 0.511, + "2016": 0.495, + "2017": 0.504, + "2018": 0.504, + "2019": 0.517, + "2020": 0.497, + "2021": 0.497 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr104", + "Region": "Southern Gilbert", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.404, + "2001": 0.469, + "2002": 0.46, + "2003": 0.45, + "2004": 0.445, + "2005": 0.445, + "2006": 0.44, + "2007": 0.442, + "2008": 0.438, + "2009": 0.427, + "2010": 0.432, + "2011": 0.425, + "2012": 0.442, + "2013": 0.458, + "2014": 0.476, + "2015": 0.503, + "2016": 0.487, + "2017": 0.496, + "2018": 0.495, + "2019": 0.509, + "2020": 0.489, + "2021": 0.489 + }, + { + "Country": "Kiribati", + "Continent": "Asia/Pacific", + "ISO_Code": "KIR", + "Level": "Subnat", + "GDLCODE": "KIRr101", + "Region": "Souyth Tarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.532, + "2001": 0.605, + "2002": 0.595, + "2003": 0.584, + "2004": 0.578, + "2005": 0.578, + "2006": 0.572, + "2007": 0.575, + "2008": 0.571, + "2009": 0.558, + "2010": 0.564, + "2011": 0.556, + "2012": 0.575, + "2013": 0.592, + "2014": 0.613, + "2015": 0.643, + "2016": 0.625, + "2017": 0.635, + "2018": 0.634, + "2019": 0.649, + "2020": 0.628, + "2021": 0.627 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "National", + "GDLCODE": "KSVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.663, + "2011": 0.67, + "2012": 0.674, + "2013": 0.676, + "2014": 0.678, + "2015": 0.685, + "2016": 0.689, + "2017": 0.696, + "2018": 0.699, + "2019": 0.7, + "2020": 0.702, + "2021": 0.703 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr107", + "Region": "Ferizaj", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.663, + "2011": 0.67, + "2012": 0.674, + "2013": 0.676, + "2014": 0.678, + "2015": 0.685, + "2016": 0.688, + "2017": 0.694, + "2018": 0.698, + "2019": 0.698, + "2020": 0.699, + "2021": 0.7 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr101", + "Region": "Gjakova", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.668, + "2011": 0.675, + "2012": 0.679, + "2013": 0.681, + "2014": 0.683, + "2015": 0.69, + "2016": 0.694, + "2017": 0.701, + "2018": 0.705, + "2019": 0.705, + "2020": 0.707, + "2021": 0.708 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr102", + "Region": "Gjilan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.65, + "2011": 0.656, + "2012": 0.661, + "2013": 0.663, + "2014": 0.665, + "2015": 0.671, + "2016": 0.675, + "2017": 0.68, + "2018": 0.683, + "2019": 0.683, + "2020": 0.684, + "2021": 0.686 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr103", + "Region": "Mitrovica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.661, + "2011": 0.667, + "2012": 0.671, + "2013": 0.674, + "2014": 0.675, + "2015": 0.683, + "2016": 0.687, + "2017": 0.694, + "2018": 0.698, + "2019": 0.7, + "2020": 0.701, + "2021": 0.703 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr104", + "Region": "Peja", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.66, + "2011": 0.666, + "2012": 0.671, + "2013": 0.673, + "2014": 0.675, + "2015": 0.683, + "2016": 0.689, + "2017": 0.696, + "2018": 0.702, + "2019": 0.704, + "2020": 0.707, + "2021": 0.708 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr106", + "Region": "Pristina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.672, + "2011": 0.678, + "2012": 0.683, + "2013": 0.685, + "2014": 0.687, + "2015": 0.693, + "2016": 0.696, + "2017": 0.701, + "2018": 0.704, + "2019": 0.703, + "2020": 0.704, + "2021": 0.705 + }, + { + "Country": "Kosovo", + "Continent": "Europe", + "ISO_Code": "XKO", + "Level": "Subnat", + "GDLCODE": "KSVr105", + "Region": "Prizren", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.659, + "2011": 0.666, + "2012": 0.67, + "2013": 0.672, + "2014": 0.674, + "2015": 0.682, + "2016": 0.688, + "2017": 0.695, + "2018": 0.7, + "2019": 0.702, + "2020": 0.705, + "2021": 0.706 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "National", + "GDLCODE": "KWTt", + "Region": "Total", + "1990": 0.918, + "1991": 0.852, + "1992": 0.927, + "1993": 0.968, + "1994": 0.985, + "1995": 1, + "1996": 1, + "1997": 1, + "1998": 1, + "1999": 0.981, + "2000": 0.982, + "2001": 0.974, + "2002": 0.968, + "2003": 0.988, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.99, + "2010": 0.98, + "2011": 0.983, + "2012": 0.983, + "2013": 0.981, + "2014": 0.977, + "2015": 0.969, + "2016": 0.969, + "2017": 0.963, + "2018": 0.961, + "2019": 0.959, + "2020": 0.947, + "2021": 0.947 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr102", + "Region": "Ahmadi", + "1990": 0.916, + "1991": 0.85, + "1992": 0.925, + "1993": 0.966, + "1994": 0.983, + "1995": 1, + "1996": 1, + "1997": 1, + "1998": 0.999, + "1999": 0.979, + "2000": 0.98, + "2001": 0.971, + "2002": 0.966, + "2003": 0.986, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.988, + "2010": 0.977, + "2011": 0.981, + "2012": 0.981, + "2013": 0.979, + "2014": 0.974, + "2015": 0.967, + "2016": 0.966, + "2017": 0.961, + "2018": 0.959, + "2019": 0.957, + "2020": 0.945, + "2021": 0.945 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr101", + "Region": "Al Asimah, Hawalli, Al-Farwaniyah, Mubarak al-Sabah", + "1990": 0.92, + "1991": 0.853, + "1992": 0.928, + "1993": 0.969, + "1994": 0.987, + "1995": 1, + "1996": 1, + "1997": 1, + "1998": 1, + "1999": 0.983, + "2000": 0.984, + "2001": 0.975, + "2002": 0.97, + "2003": 0.99, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.991, + "2010": 0.981, + "2011": 0.984, + "2012": 0.985, + "2013": 0.982, + "2014": 0.978, + "2015": 0.971, + "2016": 0.97, + "2017": 0.965, + "2018": 0.963, + "2019": 0.961, + "2020": 0.949, + "2021": 0.949 + }, + { + "Country": "Kuwait", + "Continent": "Asia/Pacific", + "ISO_Code": "KWT", + "Level": "Subnat", + "GDLCODE": "KWTr103", + "Region": "Al-Jahra", + "1990": 0.914, + "1991": 0.847, + "1992": 0.922, + "1993": 0.963, + "1994": 0.981, + "1995": 0.997, + "1996": 0.997, + "1997": 0.999, + "1998": 0.996, + "1999": 0.977, + "2000": 0.977, + "2001": 0.969, + "2002": 0.964, + "2003": 0.984, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.985, + "2010": 0.975, + "2011": 0.978, + "2012": 0.979, + "2013": 0.976, + "2014": 0.972, + "2015": 0.965, + "2016": 0.964, + "2017": 0.958, + "2018": 0.957, + "2019": 0.955, + "2020": 0.943, + "2021": 0.943 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "National", + "GDLCODE": "KGZt", + "Region": "Total", + "1990": 0.595, + "1991": 0.581, + "1992": 0.557, + "1993": 0.531, + "1994": 0.494, + "1995": 0.483, + "1996": 0.492, + "1997": 0.502, + "1998": 0.502, + "1999": 0.502, + "2000": 0.508, + "2001": 0.518, + "2002": 0.517, + "2003": 0.526, + "2004": 0.533, + "2005": 0.532, + "2006": 0.538, + "2007": 0.55, + "2008": 0.556, + "2009": 0.559, + "2010": 0.553, + "2011": 0.552, + "2012": 0.563, + "2013": 0.571, + "2014": 0.576, + "2015": 0.579, + "2016": 0.58, + "2017": 0.585, + "2018": 0.59, + "2019": 0.583, + "2020": 0.575, + "2021": 0.577 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr108", + "Region": "Batken", + "1990": 0.539, + "1991": 0.525, + "1992": 0.502, + "1993": 0.478, + "1994": 0.442, + "1995": 0.432, + "1996": 0.441, + "1997": 0.45, + "1998": 0.45, + "1999": 0.45, + "2000": 0.456, + "2001": 0.465, + "2002": 0.465, + "2003": 0.473, + "2004": 0.479, + "2005": 0.479, + "2006": 0.485, + "2007": 0.498, + "2008": 0.507, + "2009": 0.512, + "2010": 0.508, + "2011": 0.51, + "2012": 0.523, + "2013": 0.531, + "2014": 0.537, + "2015": 0.548, + "2016": 0.558, + "2017": 0.571, + "2018": 0.585, + "2019": 0.578, + "2020": 0.569, + "2021": 0.572 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr101", + "Region": "Bishkek", + "1990": 0.665, + "1991": 0.65, + "1992": 0.624, + "1993": 0.597, + "1994": 0.558, + "1995": 0.547, + "1996": 0.556, + "1997": 0.567, + "1998": 0.566, + "1999": 0.567, + "2000": 0.573, + "2001": 0.583, + "2002": 0.583, + "2003": 0.592, + "2004": 0.599, + "2005": 0.599, + "2006": 0.605, + "2007": 0.611, + "2008": 0.612, + "2009": 0.609, + "2010": 0.597, + "2011": 0.591, + "2012": 0.596, + "2013": 0.606, + "2014": 0.614, + "2015": 0.616, + "2016": 0.616, + "2017": 0.619, + "2018": 0.623, + "2019": 0.616, + "2020": 0.608, + "2021": 0.61 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr103", + "Region": "Chuy", + "1990": 0.618, + "1991": 0.604, + "1992": 0.579, + "1993": 0.553, + "1994": 0.515, + "1995": 0.504, + "1996": 0.513, + "1997": 0.523, + "1998": 0.523, + "1999": 0.524, + "2000": 0.529, + "2001": 0.54, + "2002": 0.539, + "2003": 0.548, + "2004": 0.554, + "2005": 0.554, + "2006": 0.56, + "2007": 0.574, + "2008": 0.582, + "2009": 0.586, + "2010": 0.582, + "2011": 0.582, + "2012": 0.595, + "2013": 0.597, + "2014": 0.596, + "2015": 0.596, + "2016": 0.595, + "2017": 0.597, + "2018": 0.6, + "2019": 0.593, + "2020": 0.585, + "2021": 0.587 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr102", + "Region": "Issyk-Kul", + "1990": 0.585, + "1991": 0.571, + "1992": 0.547, + "1993": 0.521, + "1994": 0.484, + "1995": 0.474, + "1996": 0.483, + "1997": 0.492, + "1998": 0.492, + "1999": 0.493, + "2000": 0.498, + "2001": 0.508, + "2002": 0.507, + "2003": 0.517, + "2004": 0.523, + "2005": 0.523, + "2006": 0.529, + "2007": 0.54, + "2008": 0.547, + "2009": 0.55, + "2010": 0.544, + "2011": 0.544, + "2012": 0.555, + "2013": 0.563, + "2014": 0.568, + "2015": 0.575, + "2016": 0.579, + "2017": 0.587, + "2018": 0.596, + "2019": 0.589, + "2020": 0.581, + "2021": 0.583 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr105", + "Region": "Jalal-Abad", + "1990": 0.571, + "1991": 0.557, + "1992": 0.533, + "1993": 0.508, + "1994": 0.471, + "1995": 0.461, + "1996": 0.47, + "1997": 0.479, + "1998": 0.479, + "1999": 0.48, + "2000": 0.485, + "2001": 0.495, + "2002": 0.494, + "2003": 0.503, + "2004": 0.509, + "2005": 0.509, + "2006": 0.515, + "2007": 0.525, + "2008": 0.529, + "2009": 0.53, + "2010": 0.523, + "2011": 0.52, + "2012": 0.529, + "2013": 0.544, + "2014": 0.556, + "2015": 0.559, + "2016": 0.559, + "2017": 0.563, + "2018": 0.567, + "2019": 0.56, + "2020": 0.552, + "2021": 0.554 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr107", + "Region": "Naryn", + "1990": 0.543, + "1991": 0.529, + "1992": 0.506, + "1993": 0.481, + "1994": 0.446, + "1995": 0.436, + "1996": 0.444, + "1997": 0.453, + "1998": 0.453, + "1999": 0.454, + "2000": 0.459, + "2001": 0.469, + "2002": 0.468, + "2003": 0.477, + "2004": 0.483, + "2005": 0.483, + "2006": 0.488, + "2007": 0.504, + "2008": 0.515, + "2009": 0.522, + "2010": 0.52, + "2011": 0.523, + "2012": 0.538, + "2013": 0.534, + "2014": 0.527, + "2015": 0.535, + "2016": 0.542, + "2017": 0.552, + "2018": 0.562, + "2019": 0.555, + "2020": 0.547, + "2021": 0.55 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr106", + "Region": "Osh", + "1990": 0.571, + "1991": 0.557, + "1992": 0.534, + "1993": 0.508, + "1994": 0.472, + "1995": 0.462, + "1996": 0.47, + "1997": 0.48, + "1998": 0.479, + "1999": 0.48, + "2000": 0.486, + "2001": 0.496, + "2002": 0.495, + "2003": 0.504, + "2004": 0.51, + "2005": 0.51, + "2006": 0.516, + "2007": 0.53, + "2008": 0.539, + "2009": 0.545, + "2010": 0.541, + "2011": 0.543, + "2012": 0.557, + "2013": 0.566, + "2014": 0.573, + "2015": 0.57, + "2016": 0.566, + "2017": 0.565, + "2018": 0.564, + "2019": 0.557, + "2020": 0.549, + "2021": 0.552 + }, + { + "Country": "Kyrgyzstan", + "Continent": "Asia/Pacific", + "ISO_Code": "KGZ", + "Level": "Subnat", + "GDLCODE": "KGZr104", + "Region": "Talas", + "1990": 0.554, + "1991": 0.54, + "1992": 0.517, + "1993": 0.492, + "1994": 0.456, + "1995": 0.446, + "1996": 0.455, + "1997": 0.464, + "1998": 0.464, + "1999": 0.464, + "2000": 0.47, + "2001": 0.48, + "2002": 0.479, + "2003": 0.488, + "2004": 0.494, + "2005": 0.493, + "2006": 0.499, + "2007": 0.511, + "2008": 0.517, + "2009": 0.52, + "2010": 0.515, + "2011": 0.514, + "2012": 0.525, + "2013": 0.547, + "2014": 0.567, + "2015": 0.569, + "2016": 0.57, + "2017": 0.574, + "2018": 0.579, + "2019": 0.572, + "2020": 0.564, + "2021": 0.566 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "National", + "GDLCODE": "LAOt", + "Region": "Total", + "1990": 0.448, + "1991": 0.45, + "1992": 0.454, + "1993": 0.459, + "1994": 0.466, + "1995": 0.473, + "1996": 0.48, + "1997": 0.484, + "1998": 0.487, + "1999": 0.497, + "2000": 0.499, + "2001": 0.505, + "2002": 0.513, + "2003": 0.517, + "2004": 0.527, + "2005": 0.537, + "2006": 0.529, + "2007": 0.555, + "2008": 0.561, + "2009": 0.573, + "2010": 0.577, + "2011": 0.585, + "2012": 0.596, + "2013": 0.606, + "2014": 0.616, + "2015": 0.625, + "2016": 0.633, + "2017": 0.639, + "2018": 0.647, + "2019": 0.653, + "2020": 0.655, + "2021": 0.656 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr117", + "Region": "Attapeu", + "1990": 0.404, + "1991": 0.406, + "1992": 0.41, + "1993": 0.415, + "1994": 0.422, + "1995": 0.428, + "1996": 0.435, + "1997": 0.439, + "1998": 0.441, + "1999": 0.451, + "2000": 0.453, + "2001": 0.459, + "2002": 0.467, + "2003": 0.47, + "2004": 0.48, + "2005": 0.49, + "2006": 0.481, + "2007": 0.506, + "2008": 0.513, + "2009": 0.524, + "2010": 0.528, + "2011": 0.536, + "2012": 0.546, + "2013": 0.561, + "2014": 0.575, + "2015": 0.588, + "2016": 0.6, + "2017": 0.611, + "2018": 0.618, + "2019": 0.624, + "2020": 0.627, + "2021": 0.627 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr105", + "Region": "Bokeo", + "1990": 0.437, + "1991": 0.44, + "1992": 0.444, + "1993": 0.448, + "1994": 0.455, + "1995": 0.462, + "1996": 0.469, + "1997": 0.473, + "1998": 0.475, + "1999": 0.485, + "2000": 0.487, + "2001": 0.494, + "2002": 0.502, + "2003": 0.505, + "2004": 0.516, + "2005": 0.526, + "2006": 0.517, + "2007": 0.543, + "2008": 0.55, + "2009": 0.561, + "2010": 0.565, + "2011": 0.573, + "2012": 0.584, + "2013": 0.597, + "2014": 0.61, + "2015": 0.621, + "2016": 0.632, + "2017": 0.641, + "2018": 0.649, + "2019": 0.654, + "2020": 0.657, + "2021": 0.658 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr111", + "Region": "Borikhamxay", + "1990": 0.505, + "1991": 0.507, + "1992": 0.512, + "1993": 0.516, + "1994": 0.524, + "1995": 0.532, + "1996": 0.539, + "1997": 0.543, + "1998": 0.545, + "1999": 0.556, + "2000": 0.558, + "2001": 0.565, + "2002": 0.573, + "2003": 0.577, + "2004": 0.588, + "2005": 0.599, + "2006": 0.59, + "2007": 0.617, + "2008": 0.624, + "2009": 0.636, + "2010": 0.64, + "2011": 0.649, + "2012": 0.66, + "2013": 0.668, + "2014": 0.677, + "2015": 0.683, + "2016": 0.69, + "2017": 0.694, + "2018": 0.702, + "2019": 0.708, + "2020": 0.711, + "2021": 0.712 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr116", + "Region": "Champasack", + "1990": 0.445, + "1991": 0.448, + "1992": 0.452, + "1993": 0.456, + "1994": 0.464, + "1995": 0.471, + "1996": 0.477, + "1997": 0.481, + "1998": 0.484, + "1999": 0.494, + "2000": 0.496, + "2001": 0.502, + "2002": 0.51, + "2003": 0.514, + "2004": 0.524, + "2005": 0.534, + "2006": 0.526, + "2007": 0.552, + "2008": 0.558, + "2009": 0.57, + "2010": 0.574, + "2011": 0.582, + "2012": 0.593, + "2013": 0.606, + "2014": 0.62, + "2015": 0.632, + "2016": 0.643, + "2017": 0.653, + "2018": 0.661, + "2019": 0.666, + "2020": 0.669, + "2021": 0.67 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr107", + "Region": "Huaphanh", + "1990": 0.406, + "1991": 0.408, + "1992": 0.412, + "1993": 0.416, + "1994": 0.423, + "1995": 0.43, + "1996": 0.437, + "1997": 0.441, + "1998": 0.443, + "1999": 0.453, + "2000": 0.455, + "2001": 0.461, + "2002": 0.468, + "2003": 0.472, + "2004": 0.482, + "2005": 0.492, + "2006": 0.483, + "2007": 0.508, + "2008": 0.515, + "2009": 0.526, + "2010": 0.53, + "2011": 0.538, + "2012": 0.548, + "2013": 0.556, + "2014": 0.564, + "2015": 0.57, + "2016": 0.575, + "2017": 0.579, + "2018": 0.587, + "2019": 0.592, + "2020": 0.595, + "2021": 0.595 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr112", + "Region": "Khammuane", + "1990": 0.443, + "1991": 0.445, + "1992": 0.449, + "1993": 0.454, + "1994": 0.461, + "1995": 0.468, + "1996": 0.475, + "1997": 0.479, + "1998": 0.481, + "1999": 0.491, + "2000": 0.493, + "2001": 0.499, + "2002": 0.507, + "2003": 0.511, + "2004": 0.521, + "2005": 0.532, + "2006": 0.523, + "2007": 0.549, + "2008": 0.556, + "2009": 0.567, + "2010": 0.571, + "2011": 0.579, + "2012": 0.59, + "2013": 0.6, + "2014": 0.611, + "2015": 0.62, + "2016": 0.628, + "2017": 0.635, + "2018": 0.642, + "2019": 0.648, + "2020": 0.651, + "2021": 0.652 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr103", + "Region": "Luangnamtha", + "1990": 0.441, + "1991": 0.443, + "1992": 0.447, + "1993": 0.452, + "1994": 0.459, + "1995": 0.466, + "1996": 0.473, + "1997": 0.477, + "1998": 0.479, + "1999": 0.489, + "2000": 0.491, + "2001": 0.498, + "2002": 0.506, + "2003": 0.509, + "2004": 0.52, + "2005": 0.53, + "2006": 0.521, + "2007": 0.547, + "2008": 0.554, + "2009": 0.565, + "2010": 0.569, + "2011": 0.577, + "2012": 0.588, + "2013": 0.596, + "2014": 0.605, + "2015": 0.611, + "2016": 0.617, + "2017": 0.621, + "2018": 0.629, + "2019": 0.635, + "2020": 0.637, + "2021": 0.638 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr106", + "Region": "Luangprabang", + "1990": 0.417, + "1991": 0.419, + "1992": 0.423, + "1993": 0.427, + "1994": 0.435, + "1995": 0.441, + "1996": 0.448, + "1997": 0.452, + "1998": 0.454, + "1999": 0.464, + "2000": 0.466, + "2001": 0.472, + "2002": 0.48, + "2003": 0.484, + "2004": 0.494, + "2005": 0.504, + "2006": 0.495, + "2007": 0.52, + "2008": 0.527, + "2009": 0.538, + "2010": 0.542, + "2011": 0.55, + "2012": 0.56, + "2013": 0.569, + "2014": 0.578, + "2015": 0.584, + "2016": 0.591, + "2017": 0.596, + "2018": 0.603, + "2019": 0.609, + "2020": 0.611, + "2021": 0.612 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr104", + "Region": "Oudomxay", + "1990": 0.377, + "1991": 0.379, + "1992": 0.382, + "1993": 0.387, + "1994": 0.394, + "1995": 0.4, + "1996": 0.407, + "1997": 0.41, + "1998": 0.413, + "1999": 0.422, + "2000": 0.424, + "2001": 0.43, + "2002": 0.437, + "2003": 0.441, + "2004": 0.451, + "2005": 0.46, + "2006": 0.452, + "2007": 0.476, + "2008": 0.483, + "2009": 0.493, + "2010": 0.497, + "2011": 0.505, + "2012": 0.515, + "2013": 0.532, + "2014": 0.548, + "2015": 0.563, + "2016": 0.578, + "2017": 0.591, + "2018": 0.598, + "2019": 0.604, + "2020": 0.606, + "2021": 0.607 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr102", + "Region": "Phongsaly", + "1990": 0.354, + "1991": 0.356, + "1992": 0.36, + "1993": 0.364, + "1994": 0.371, + "1995": 0.377, + "1996": 0.384, + "1997": 0.387, + "1998": 0.389, + "1999": 0.399, + "2000": 0.4, + "2001": 0.406, + "2002": 0.414, + "2003": 0.417, + "2004": 0.427, + "2005": 0.436, + "2006": 0.428, + "2007": 0.452, + "2008": 0.458, + "2009": 0.468, + "2010": 0.472, + "2011": 0.48, + "2012": 0.49, + "2013": 0.506, + "2014": 0.522, + "2015": 0.536, + "2016": 0.551, + "2017": 0.563, + "2018": 0.57, + "2019": 0.576, + "2020": 0.578, + "2021": 0.579 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr114", + "Region": "Saravane", + "1990": 0.388, + "1991": 0.39, + "1992": 0.394, + "1993": 0.399, + "1994": 0.406, + "1995": 0.412, + "1996": 0.419, + "1997": 0.423, + "1998": 0.425, + "1999": 0.434, + "2000": 0.436, + "2001": 0.442, + "2002": 0.45, + "2003": 0.453, + "2004": 0.463, + "2005": 0.473, + "2006": 0.465, + "2007": 0.489, + "2008": 0.496, + "2009": 0.507, + "2010": 0.51, + "2011": 0.518, + "2012": 0.528, + "2013": 0.536, + "2014": 0.544, + "2015": 0.55, + "2016": 0.556, + "2017": 0.56, + "2018": 0.567, + "2019": 0.573, + "2020": 0.575, + "2021": 0.576 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr113", + "Region": "Savannakhet", + "1990": 0.418, + "1991": 0.42, + "1992": 0.424, + "1993": 0.429, + "1994": 0.436, + "1995": 0.443, + "1996": 0.449, + "1997": 0.453, + "1998": 0.456, + "1999": 0.465, + "2000": 0.467, + "2001": 0.474, + "2002": 0.481, + "2003": 0.485, + "2004": 0.495, + "2005": 0.505, + "2006": 0.497, + "2007": 0.522, + "2008": 0.528, + "2009": 0.54, + "2010": 0.543, + "2011": 0.552, + "2012": 0.562, + "2013": 0.575, + "2014": 0.587, + "2015": 0.598, + "2016": 0.609, + "2017": 0.617, + "2018": 0.625, + "2019": 0.631, + "2020": 0.633, + "2021": 0.634 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr108", + "Region": "Sayabury", + "1990": 0.46, + "1991": 0.462, + "1992": 0.466, + "1993": 0.471, + "1994": 0.478, + "1995": 0.485, + "1996": 0.492, + "1997": 0.496, + "1998": 0.498, + "1999": 0.508, + "2000": 0.511, + "2001": 0.517, + "2002": 0.525, + "2003": 0.529, + "2004": 0.539, + "2005": 0.55, + "2006": 0.541, + "2007": 0.567, + "2008": 0.574, + "2009": 0.585, + "2010": 0.589, + "2011": 0.598, + "2012": 0.609, + "2013": 0.622, + "2014": 0.636, + "2015": 0.647, + "2016": 0.658, + "2017": 0.668, + "2018": 0.675, + "2019": 0.681, + "2020": 0.684, + "2021": 0.685 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr115", + "Region": "Sekong", + "1990": 0.381, + "1991": 0.383, + "1992": 0.387, + "1993": 0.391, + "1994": 0.398, + "1995": 0.405, + "1996": 0.411, + "1997": 0.415, + "1998": 0.417, + "1999": 0.427, + "2000": 0.429, + "2001": 0.435, + "2002": 0.442, + "2003": 0.446, + "2004": 0.455, + "2005": 0.465, + "2006": 0.457, + "2007": 0.481, + "2008": 0.488, + "2009": 0.498, + "2010": 0.502, + "2011": 0.51, + "2012": 0.52, + "2013": 0.535, + "2014": 0.549, + "2015": 0.562, + "2016": 0.574, + "2017": 0.585, + "2018": 0.592, + "2019": 0.598, + "2020": 0.6, + "2021": 0.601 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr101", + "Region": "Vientiane Municipality", + "1990": 0.563, + "1991": 0.565, + "1992": 0.569, + "1993": 0.575, + "1994": 0.583, + "1995": 0.59, + "1996": 0.598, + "1997": 0.602, + "1998": 0.605, + "1999": 0.616, + "2000": 0.618, + "2001": 0.625, + "2002": 0.634, + "2003": 0.638, + "2004": 0.65, + "2005": 0.661, + "2006": 0.651, + "2007": 0.68, + "2008": 0.687, + "2009": 0.7, + "2010": 0.704, + "2011": 0.713, + "2012": 0.725, + "2013": 0.728, + "2014": 0.732, + "2015": 0.733, + "2016": 0.734, + "2017": 0.733, + "2018": 0.741, + "2019": 0.747, + "2020": 0.75, + "2021": 0.751 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr110", + "Region": "Vientiane Province", + "1990": 0.502, + "1991": 0.504, + "1992": 0.509, + "1993": 0.513, + "1994": 0.521, + "1995": 0.529, + "1996": 0.536, + "1997": 0.54, + "1998": 0.542, + "1999": 0.553, + "2000": 0.555, + "2001": 0.562, + "2002": 0.57, + "2003": 0.574, + "2004": 0.585, + "2005": 0.595, + "2006": 0.586, + "2007": 0.614, + "2008": 0.621, + "2009": 0.633, + "2010": 0.637, + "2011": 0.646, + "2012": 0.657, + "2013": 0.66, + "2014": 0.663, + "2015": 0.664, + "2016": 0.665, + "2017": 0.664, + "2018": 0.672, + "2019": 0.678, + "2020": 0.68, + "2021": 0.681 + }, + { + "Country": "Lao", + "Continent": "Asia/Pacific", + "ISO_Code": "LAO", + "Level": "Subnat", + "GDLCODE": "LAOr109", + "Region": "Xiengkhuang", + "1990": 0.418, + "1991": 0.42, + "1992": 0.424, + "1993": 0.429, + "1994": 0.436, + "1995": 0.443, + "1996": 0.449, + "1997": 0.453, + "1998": 0.455, + "1999": 0.465, + "2000": 0.467, + "2001": 0.473, + "2002": 0.481, + "2003": 0.485, + "2004": 0.495, + "2005": 0.505, + "2006": 0.496, + "2007": 0.522, + "2008": 0.528, + "2009": 0.539, + "2010": 0.543, + "2011": 0.552, + "2012": 0.562, + "2013": 0.58, + "2014": 0.599, + "2015": 0.615, + "2016": 0.632, + "2017": 0.646, + "2018": 0.654, + "2019": 0.66, + "2020": 0.663, + "2021": 0.664 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "National", + "GDLCODE": "LVAt", + "Region": "Total", + "1990": 0.781, + "1991": 0.765, + "1992": 0.699, + "1993": 0.677, + "1994": 0.68, + "1995": 0.684, + "1996": 0.689, + "1997": 0.699, + "1998": 0.712, + "1999": 0.718, + "2000": 0.725, + "2001": 0.738, + "2002": 0.749, + "2003": 0.762, + "2004": 0.775, + "2005": 0.793, + "2006": 0.809, + "2007": 0.83, + "2008": 0.828, + "2009": 0.819, + "2010": 0.807, + "2011": 0.815, + "2012": 0.823, + "2013": 0.829, + "2014": 0.833, + "2015": 0.84, + "2016": 0.848, + "2017": 0.854, + "2018": 0.861, + "2019": 0.867, + "2020": 0.867, + "2021": 0.875 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr104", + "Region": "Kurzeme region", + "1990": 0.761, + "1991": 0.745, + "1992": 0.681, + "1993": 0.659, + "1994": 0.662, + "1995": 0.666, + "1996": 0.671, + "1997": 0.68, + "1998": 0.694, + "1999": 0.699, + "2000": 0.707, + "2001": 0.719, + "2002": 0.731, + "2003": 0.747, + "2004": 0.76, + "2005": 0.777, + "2006": 0.769, + "2007": 0.793, + "2008": 0.793, + "2009": 0.786, + "2010": 0.77, + "2011": 0.793, + "2012": 0.788, + "2013": 0.788, + "2014": 0.789, + "2015": 0.793, + "2016": 0.8, + "2017": 0.807, + "2018": 0.813, + "2019": 0.819, + "2020": 0.819, + "2021": 0.827 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr106", + "Region": "Latgale region", + "1990": 0.668, + "1991": 0.654, + "1992": 0.593, + "1993": 0.573, + "1994": 0.576, + "1995": 0.579, + "1996": 0.584, + "1997": 0.593, + "1998": 0.605, + "1999": 0.61, + "2000": 0.617, + "2001": 0.629, + "2002": 0.639, + "2003": 0.652, + "2004": 0.669, + "2005": 0.683, + "2006": 0.691, + "2007": 0.728, + "2008": 0.733, + "2009": 0.731, + "2010": 0.712, + "2011": 0.728, + "2012": 0.738, + "2013": 0.733, + "2014": 0.734, + "2015": 0.75, + "2016": 0.757, + "2017": 0.764, + "2018": 0.77, + "2019": 0.775, + "2020": 0.776, + "2021": 0.783 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr102", + "Region": "Pieriga region", + "1990": 0.741, + "1991": 0.726, + "1992": 0.662, + "1993": 0.64, + "1994": 0.643, + "1995": 0.647, + "1996": 0.652, + "1997": 0.661, + "1998": 0.675, + "1999": 0.68, + "2000": 0.688, + "2001": 0.697, + "2002": 0.706, + "2003": 0.717, + "2004": 0.729, + "2005": 0.743, + "2006": 0.766, + "2007": 0.792, + "2008": 0.789, + "2009": 0.776, + "2010": 0.77, + "2011": 0.784, + "2012": 0.79, + "2013": 0.799, + "2014": 0.797, + "2015": 0.805, + "2016": 0.813, + "2017": 0.82, + "2018": 0.826, + "2019": 0.832, + "2020": 0.832, + "2021": 0.84 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr101", + "Region": "Riga region", + "1990": 0.862, + "1991": 0.846, + "1992": 0.777, + "1993": 0.753, + "1994": 0.756, + "1995": 0.761, + "1996": 0.766, + "1997": 0.776, + "1998": 0.79, + "1999": 0.796, + "2000": 0.804, + "2001": 0.819, + "2002": 0.829, + "2003": 0.843, + "2004": 0.856, + "2005": 0.875, + "2006": 0.896, + "2007": 0.91, + "2008": 0.909, + "2009": 0.897, + "2010": 0.884, + "2011": 0.886, + "2012": 0.898, + "2013": 0.907, + "2014": 0.911, + "2015": 0.918, + "2016": 0.927, + "2017": 0.933, + "2018": 0.94, + "2019": 0.946, + "2020": 0.947, + "2021": 0.955 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr103", + "Region": "Vidzeme region", + "1990": 0.704, + "1991": 0.689, + "1992": 0.627, + "1993": 0.606, + "1994": 0.609, + "1995": 0.613, + "1996": 0.617, + "1997": 0.627, + "1998": 0.64, + "1999": 0.645, + "2000": 0.652, + "2001": 0.665, + "2002": 0.676, + "2003": 0.685, + "2004": 0.7, + "2005": 0.717, + "2006": 0.733, + "2007": 0.764, + "2008": 0.753, + "2009": 0.756, + "2010": 0.742, + "2011": 0.745, + "2012": 0.746, + "2013": 0.754, + "2014": 0.772, + "2015": 0.775, + "2016": 0.783, + "2017": 0.789, + "2018": 0.795, + "2019": 0.801, + "2020": 0.801, + "2021": 0.809 + }, + { + "Country": "Latvia", + "Continent": "Europe", + "ISO_Code": "LVA", + "Level": "Subnat", + "GDLCODE": "LVAr105", + "Region": "Zemgale region", + "1990": 0.708, + "1991": 0.693, + "1992": 0.631, + "1993": 0.609, + "1994": 0.612, + "1995": 0.616, + "1996": 0.621, + "1997": 0.63, + "1998": 0.643, + "1999": 0.648, + "2000": 0.655, + "2001": 0.662, + "2002": 0.677, + "2003": 0.692, + "2004": 0.7, + "2005": 0.715, + "2006": 0.734, + "2007": 0.756, + "2008": 0.758, + "2009": 0.754, + "2010": 0.746, + "2011": 0.752, + "2012": 0.764, + "2013": 0.757, + "2014": 0.764, + "2015": 0.759, + "2016": 0.767, + "2017": 0.773, + "2018": 0.779, + "2019": 0.785, + "2020": 0.785, + "2021": 0.793 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "National", + "GDLCODE": "LBNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.748, + "2006": 0.751, + "2007": 0.767, + "2008": 0.778, + "2009": 0.788, + "2010": 0.795, + "2011": 0.79, + "2012": 0.784, + "2013": 0.78, + "2014": 0.774, + "2015": 0.768, + "2016": 0.766, + "2017": 0.766, + "2018": 0.763, + "2019": 0.75, + "2020": 0.713, + "2021": 0.688 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr101", + "Region": "Beirut", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.744, + "2006": 0.747, + "2007": 0.763, + "2008": 0.774, + "2009": 0.784, + "2010": 0.79, + "2011": 0.786, + "2012": 0.78, + "2013": 0.776, + "2014": 0.77, + "2015": 0.764, + "2016": 0.762, + "2017": 0.762, + "2018": 0.759, + "2019": 0.746, + "2020": 0.709, + "2021": 0.684 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr104", + "Region": "Beqaa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.792, + "2006": 0.795, + "2007": 0.812, + "2008": 0.823, + "2009": 0.833, + "2010": 0.84, + "2011": 0.835, + "2012": 0.829, + "2013": 0.825, + "2014": 0.819, + "2015": 0.813, + "2016": 0.81, + "2017": 0.811, + "2018": 0.807, + "2019": 0.794, + "2020": 0.756, + "2021": 0.73 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr102", + "Region": "Mount Lebanon", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.771, + "2006": 0.774, + "2007": 0.79, + "2008": 0.801, + "2009": 0.812, + "2010": 0.818, + "2011": 0.813, + "2012": 0.807, + "2013": 0.803, + "2014": 0.797, + "2015": 0.791, + "2016": 0.789, + "2017": 0.79, + "2018": 0.786, + "2019": 0.773, + "2020": 0.735, + "2021": 0.71 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr103", + "Region": "Northern", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.666, + "2006": 0.669, + "2007": 0.684, + "2008": 0.695, + "2009": 0.704, + "2010": 0.71, + "2011": 0.705, + "2012": 0.7, + "2013": 0.696, + "2014": 0.691, + "2015": 0.685, + "2016": 0.683, + "2017": 0.684, + "2018": 0.68, + "2019": 0.669, + "2020": 0.633, + "2021": 0.61 + }, + { + "Country": "Lebanon", + "Continent": "Asia/Pacific", + "ISO_Code": "LBN", + "Level": "Subnat", + "GDLCODE": "LBNr105", + "Region": "Southern, Nabtieh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.771, + "2006": 0.773, + "2007": 0.79, + "2008": 0.801, + "2009": 0.812, + "2010": 0.818, + "2011": 0.813, + "2012": 0.807, + "2013": 0.803, + "2014": 0.797, + "2015": 0.791, + "2016": 0.789, + "2017": 0.789, + "2018": 0.786, + "2019": 0.773, + "2020": 0.735, + "2021": 0.71 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "National", + "GDLCODE": "LSOt", + "Region": "Total", + "1990": 0.48, + "1991": 0.473, + "1992": 0.472, + "1993": 0.472, + "1994": 0.469, + "1995": 0.469, + "1996": 0.473, + "1997": 0.48, + "1998": 0.5, + "1999": 0.5, + "2000": 0.497, + "2001": 0.495, + "2002": 0.497, + "2003": 0.503, + "2004": 0.502, + "2005": 0.496, + "2006": 0.497, + "2007": 0.513, + "2008": 0.517, + "2009": 0.509, + "2010": 0.514, + "2011": 0.511, + "2012": 0.514, + "2013": 0.514, + "2014": 0.511, + "2015": 0.516, + "2016": 0.522, + "2017": 0.515, + "2018": 0.514, + "2019": 0.512, + "2020": 0.497, + "2021": 0.498 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr103", + "Region": "Berea", + "1990": 0.471, + "1991": 0.465, + "1992": 0.464, + "1993": 0.463, + "1994": 0.461, + "1995": 0.46, + "1996": 0.465, + "1997": 0.471, + "1998": 0.492, + "1999": 0.492, + "2000": 0.488, + "2001": 0.486, + "2002": 0.488, + "2003": 0.494, + "2004": 0.494, + "2005": 0.496, + "2006": 0.505, + "2007": 0.529, + "2008": 0.543, + "2009": 0.543, + "2010": 0.555, + "2011": 0.549, + "2012": 0.549, + "2013": 0.546, + "2014": 0.541, + "2015": 0.543, + "2016": 0.545, + "2017": 0.535, + "2018": 0.53, + "2019": 0.528, + "2020": 0.513, + "2021": 0.514 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr101", + "Region": "Butha-Buthe", + "1990": 0.473, + "1991": 0.466, + "1992": 0.465, + "1993": 0.465, + "1994": 0.462, + "1995": 0.462, + "1996": 0.467, + "1997": 0.473, + "1998": 0.494, + "1999": 0.494, + "2000": 0.49, + "2001": 0.488, + "2002": 0.49, + "2003": 0.496, + "2004": 0.496, + "2005": 0.489, + "2006": 0.49, + "2007": 0.506, + "2008": 0.511, + "2009": 0.503, + "2010": 0.507, + "2011": 0.501, + "2012": 0.501, + "2013": 0.498, + "2014": 0.493, + "2015": 0.493, + "2016": 0.494, + "2017": 0.483, + "2018": 0.477, + "2019": 0.475, + "2020": 0.461, + "2021": 0.462 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr102", + "Region": "Leribe", + "1990": 0.484, + "1991": 0.478, + "1992": 0.477, + "1993": 0.476, + "1994": 0.474, + "1995": 0.473, + "1996": 0.478, + "1997": 0.484, + "1998": 0.505, + "1999": 0.505, + "2000": 0.501, + "2001": 0.5, + "2002": 0.502, + "2003": 0.508, + "2004": 0.507, + "2005": 0.5, + "2006": 0.501, + "2007": 0.515, + "2008": 0.52, + "2009": 0.511, + "2010": 0.515, + "2011": 0.512, + "2012": 0.516, + "2013": 0.517, + "2014": 0.515, + "2015": 0.52, + "2016": 0.526, + "2017": 0.52, + "2018": 0.519, + "2019": 0.517, + "2020": 0.502, + "2021": 0.503 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr105", + "Region": "Mafeteng", + "1990": 0.482, + "1991": 0.475, + "1992": 0.474, + "1993": 0.474, + "1994": 0.471, + "1995": 0.471, + "1996": 0.475, + "1997": 0.482, + "1998": 0.503, + "1999": 0.503, + "2000": 0.499, + "2001": 0.497, + "2002": 0.499, + "2003": 0.505, + "2004": 0.505, + "2005": 0.498, + "2006": 0.498, + "2007": 0.513, + "2008": 0.518, + "2009": 0.509, + "2010": 0.513, + "2011": 0.511, + "2012": 0.515, + "2013": 0.516, + "2014": 0.515, + "2015": 0.516, + "2016": 0.519, + "2017": 0.509, + "2018": 0.504, + "2019": 0.502, + "2020": 0.487, + "2021": 0.488 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr104", + "Region": "Maseru", + "1990": 0.535, + "1991": 0.528, + "1992": 0.527, + "1993": 0.527, + "1994": 0.524, + "1995": 0.524, + "1996": 0.528, + "1997": 0.535, + "1998": 0.557, + "1999": 0.557, + "2000": 0.553, + "2001": 0.551, + "2002": 0.553, + "2003": 0.559, + "2004": 0.559, + "2005": 0.549, + "2006": 0.546, + "2007": 0.558, + "2008": 0.56, + "2009": 0.548, + "2010": 0.549, + "2011": 0.549, + "2012": 0.556, + "2013": 0.56, + "2014": 0.561, + "2015": 0.565, + "2016": 0.57, + "2017": 0.562, + "2018": 0.56, + "2019": 0.558, + "2020": 0.542, + "2021": 0.543 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr106", + "Region": "Mohale s Hoek", + "1990": 0.465, + "1991": 0.458, + "1992": 0.457, + "1993": 0.457, + "1994": 0.454, + "1995": 0.454, + "1996": 0.458, + "1997": 0.465, + "1998": 0.485, + "1999": 0.485, + "2000": 0.482, + "2001": 0.48, + "2002": 0.482, + "2003": 0.488, + "2004": 0.487, + "2005": 0.481, + "2006": 0.481, + "2007": 0.496, + "2008": 0.5, + "2009": 0.491, + "2010": 0.495, + "2011": 0.487, + "2012": 0.486, + "2013": 0.481, + "2014": 0.474, + "2015": 0.478, + "2016": 0.484, + "2017": 0.478, + "2018": 0.476, + "2019": 0.475, + "2020": 0.46, + "2021": 0.461 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr109", + "Region": "Mokhotlong", + "1990": 0.406, + "1991": 0.4, + "1992": 0.399, + "1993": 0.399, + "1994": 0.396, + "1995": 0.396, + "1996": 0.4, + "1997": 0.406, + "1998": 0.426, + "1999": 0.426, + "2000": 0.422, + "2001": 0.42, + "2002": 0.422, + "2003": 0.428, + "2004": 0.427, + "2005": 0.422, + "2006": 0.424, + "2007": 0.439, + "2008": 0.445, + "2009": 0.438, + "2010": 0.443, + "2011": 0.438, + "2012": 0.439, + "2013": 0.437, + "2014": 0.433, + "2015": 0.438, + "2016": 0.443, + "2017": 0.438, + "2018": 0.437, + "2019": 0.435, + "2020": 0.421, + "2021": 0.422 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr108", + "Region": "Qasha s Nek", + "1990": 0.421, + "1991": 0.415, + "1992": 0.414, + "1993": 0.414, + "1994": 0.411, + "1995": 0.411, + "1996": 0.415, + "1997": 0.421, + "1998": 0.441, + "1999": 0.441, + "2000": 0.437, + "2001": 0.436, + "2002": 0.437, + "2003": 0.443, + "2004": 0.443, + "2005": 0.44, + "2006": 0.445, + "2007": 0.463, + "2008": 0.471, + "2009": 0.467, + "2010": 0.475, + "2011": 0.472, + "2012": 0.476, + "2013": 0.477, + "2014": 0.475, + "2015": 0.48, + "2016": 0.486, + "2017": 0.48, + "2018": 0.479, + "2019": 0.477, + "2020": 0.462, + "2021": 0.464 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr107", + "Region": "Quthing", + "1990": 0.437, + "1991": 0.43, + "1992": 0.429, + "1993": 0.429, + "1994": 0.426, + "1995": 0.426, + "1996": 0.43, + "1997": 0.437, + "1998": 0.457, + "1999": 0.457, + "2000": 0.453, + "2001": 0.451, + "2002": 0.453, + "2003": 0.459, + "2004": 0.459, + "2005": 0.453, + "2006": 0.455, + "2007": 0.471, + "2008": 0.477, + "2009": 0.47, + "2010": 0.475, + "2011": 0.476, + "2012": 0.484, + "2013": 0.489, + "2014": 0.491, + "2015": 0.49, + "2016": 0.49, + "2017": 0.478, + "2018": 0.471, + "2019": 0.47, + "2020": 0.455, + "2021": 0.456 + }, + { + "Country": "Lesotho", + "Continent": "Africa", + "ISO_Code": "LSO", + "Level": "Subnat", + "GDLCODE": "LSOr110", + "Region": "Thaba-Tseka", + "1990": 0.4, + "1991": 0.394, + "1992": 0.393, + "1993": 0.393, + "1994": 0.39, + "1995": 0.39, + "1996": 0.394, + "1997": 0.4, + "1998": 0.42, + "1999": 0.42, + "2000": 0.416, + "2001": 0.415, + "2002": 0.416, + "2003": 0.422, + "2004": 0.422, + "2005": 0.417, + "2006": 0.418, + "2007": 0.434, + "2008": 0.439, + "2009": 0.432, + "2010": 0.437, + "2011": 0.432, + "2012": 0.434, + "2013": 0.432, + "2014": 0.428, + "2015": 0.43, + "2016": 0.434, + "2017": 0.426, + "2018": 0.423, + "2019": 0.421, + "2020": 0.407, + "2021": 0.408 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "National", + "GDLCODE": "LBRt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.379, + "2000": 0.419, + "2001": 0.417, + "2002": 0.419, + "2003": 0.363, + "2004": 0.364, + "2005": 0.368, + "2006": 0.374, + "2007": 0.382, + "2008": 0.386, + "2009": 0.388, + "2010": 0.391, + "2011": 0.399, + "2012": 0.406, + "2013": 0.414, + "2014": 0.411, + "2015": 0.408, + "2016": 0.401, + "2017": 0.401, + "2018": 0.399, + "2019": 0.392, + "2020": 0.384, + "2021": 0.386 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr101", + "Region": "Bomi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.339, + "2000": 0.377, + "2001": 0.376, + "2002": 0.378, + "2003": 0.323, + "2004": 0.324, + "2005": 0.328, + "2006": 0.334, + "2007": 0.342, + "2008": 0.346, + "2009": 0.348, + "2010": 0.351, + "2011": 0.358, + "2012": 0.365, + "2013": 0.373, + "2014": 0.372, + "2015": 0.369, + "2016": 0.364, + "2017": 0.366, + "2018": 0.365, + "2019": 0.359, + "2020": 0.352, + "2021": 0.355 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr102", + "Region": "Bong", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.324, + "2000": 0.362, + "2001": 0.361, + "2002": 0.363, + "2003": 0.309, + "2004": 0.31, + "2005": 0.314, + "2006": 0.32, + "2007": 0.327, + "2008": 0.331, + "2009": 0.333, + "2010": 0.336, + "2011": 0.343, + "2012": 0.35, + "2013": 0.358, + "2014": 0.357, + "2015": 0.355, + "2016": 0.35, + "2017": 0.352, + "2018": 0.352, + "2019": 0.346, + "2020": 0.34, + "2021": 0.342 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr103", + "Region": "Gbarpolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.321, + "2000": 0.359, + "2001": 0.358, + "2002": 0.36, + "2003": 0.306, + "2004": 0.307, + "2005": 0.311, + "2006": 0.317, + "2007": 0.324, + "2008": 0.328, + "2009": 0.33, + "2010": 0.333, + "2011": 0.34, + "2012": 0.347, + "2013": 0.355, + "2014": 0.351, + "2015": 0.346, + "2016": 0.338, + "2017": 0.337, + "2018": 0.333, + "2019": 0.325, + "2020": 0.316, + "2021": 0.318 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr104", + "Region": "Grand Bassa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.331, + "2000": 0.369, + "2001": 0.368, + "2002": 0.37, + "2003": 0.315, + "2004": 0.316, + "2005": 0.32, + "2006": 0.326, + "2007": 0.334, + "2008": 0.338, + "2009": 0.34, + "2010": 0.343, + "2011": 0.35, + "2012": 0.357, + "2013": 0.365, + "2014": 0.363, + "2015": 0.361, + "2016": 0.356, + "2017": 0.357, + "2018": 0.356, + "2019": 0.35, + "2020": 0.343, + "2021": 0.345 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr105", + "Region": "Grand Cape Mount", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.334, + "2000": 0.372, + "2001": 0.371, + "2002": 0.373, + "2003": 0.319, + "2004": 0.32, + "2005": 0.324, + "2006": 0.33, + "2007": 0.337, + "2008": 0.341, + "2009": 0.343, + "2010": 0.346, + "2011": 0.353, + "2012": 0.36, + "2013": 0.368, + "2014": 0.366, + "2015": 0.362, + "2016": 0.357, + "2017": 0.357, + "2018": 0.355, + "2019": 0.348, + "2020": 0.34, + "2021": 0.343 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr106", + "Region": "Grand Gedeh", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.341, + "2000": 0.379, + "2001": 0.378, + "2002": 0.38, + "2003": 0.325, + "2004": 0.326, + "2005": 0.33, + "2006": 0.336, + "2007": 0.344, + "2008": 0.348, + "2009": 0.35, + "2010": 0.353, + "2011": 0.36, + "2012": 0.367, + "2013": 0.375, + "2014": 0.375, + "2015": 0.373, + "2016": 0.37, + "2017": 0.372, + "2018": 0.372, + "2019": 0.367, + "2020": 0.361, + "2021": 0.364 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr107", + "Region": "Grand Kru", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.317, + "2000": 0.355, + "2001": 0.354, + "2002": 0.356, + "2003": 0.302, + "2004": 0.303, + "2005": 0.307, + "2006": 0.313, + "2007": 0.32, + "2008": 0.324, + "2009": 0.326, + "2010": 0.329, + "2011": 0.336, + "2012": 0.343, + "2013": 0.351, + "2014": 0.348, + "2015": 0.344, + "2016": 0.339, + "2017": 0.338, + "2018": 0.337, + "2019": 0.329, + "2020": 0.322, + "2021": 0.324 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr108", + "Region": "Lofa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.334, + "2000": 0.372, + "2001": 0.371, + "2002": 0.373, + "2003": 0.318, + "2004": 0.319, + "2005": 0.323, + "2006": 0.329, + "2007": 0.337, + "2008": 0.341, + "2009": 0.342, + "2010": 0.346, + "2011": 0.353, + "2012": 0.36, + "2013": 0.368, + "2014": 0.366, + "2015": 0.362, + "2016": 0.357, + "2017": 0.357, + "2018": 0.356, + "2019": 0.349, + "2020": 0.342, + "2021": 0.344 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr109", + "Region": "Margibi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.381, + "2000": 0.421, + "2001": 0.42, + "2002": 0.422, + "2003": 0.365, + "2004": 0.366, + "2005": 0.37, + "2006": 0.377, + "2007": 0.385, + "2008": 0.389, + "2009": 0.391, + "2010": 0.394, + "2011": 0.401, + "2012": 0.409, + "2013": 0.417, + "2014": 0.412, + "2015": 0.407, + "2016": 0.399, + "2017": 0.397, + "2018": 0.393, + "2019": 0.384, + "2020": 0.374, + "2021": 0.376 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr110", + "Region": "Maryland", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.356, + "2000": 0.395, + "2001": 0.394, + "2002": 0.396, + "2003": 0.34, + "2004": 0.341, + "2005": 0.345, + "2006": 0.351, + "2007": 0.359, + "2008": 0.363, + "2009": 0.365, + "2010": 0.368, + "2011": 0.375, + "2012": 0.382, + "2013": 0.391, + "2014": 0.389, + "2015": 0.386, + "2016": 0.38, + "2017": 0.381, + "2018": 0.38, + "2019": 0.373, + "2020": 0.366, + "2021": 0.368 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr111", + "Region": "Montserrado", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.448, + "2000": 0.49, + "2001": 0.489, + "2002": 0.491, + "2003": 0.431, + "2004": 0.432, + "2005": 0.436, + "2006": 0.443, + "2007": 0.451, + "2008": 0.456, + "2009": 0.458, + "2010": 0.461, + "2011": 0.469, + "2012": 0.477, + "2013": 0.486, + "2014": 0.482, + "2015": 0.477, + "2016": 0.47, + "2017": 0.469, + "2018": 0.466, + "2019": 0.457, + "2020": 0.448, + "2021": 0.451 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr112", + "Region": "Nimba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.355, + "2000": 0.393, + "2001": 0.392, + "2002": 0.394, + "2003": 0.339, + "2004": 0.34, + "2005": 0.344, + "2006": 0.35, + "2007": 0.358, + "2008": 0.362, + "2009": 0.364, + "2010": 0.367, + "2011": 0.374, + "2012": 0.381, + "2013": 0.389, + "2014": 0.386, + "2015": 0.381, + "2016": 0.374, + "2017": 0.373, + "2018": 0.37, + "2019": 0.361, + "2020": 0.352, + "2021": 0.355 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr113", + "Region": "River Cess", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.305, + "2000": 0.342, + "2001": 0.341, + "2002": 0.343, + "2003": 0.29, + "2004": 0.291, + "2005": 0.294, + "2006": 0.3, + "2007": 0.308, + "2008": 0.312, + "2009": 0.313, + "2010": 0.317, + "2011": 0.323, + "2012": 0.33, + "2013": 0.338, + "2014": 0.337, + "2015": 0.335, + "2016": 0.331, + "2017": 0.333, + "2018": 0.333, + "2019": 0.327, + "2020": 0.321, + "2021": 0.324 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr114", + "Region": "River Gee", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.334, + "2000": 0.372, + "2001": 0.371, + "2002": 0.373, + "2003": 0.318, + "2004": 0.319, + "2005": 0.323, + "2006": 0.329, + "2007": 0.337, + "2008": 0.341, + "2009": 0.342, + "2010": 0.346, + "2011": 0.353, + "2012": 0.36, + "2013": 0.368, + "2014": 0.368, + "2015": 0.367, + "2016": 0.363, + "2017": 0.366, + "2018": 0.366, + "2019": 0.362, + "2020": 0.356, + "2021": 0.359 + }, + { + "Country": "Liberia", + "Continent": "Africa", + "ISO_Code": "LBR", + "Level": "Subnat", + "GDLCODE": "LBRr115", + "Region": "Sinoe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.316, + "2000": 0.353, + "2001": 0.352, + "2002": 0.354, + "2003": 0.3, + "2004": 0.301, + "2005": 0.305, + "2006": 0.311, + "2007": 0.319, + "2008": 0.323, + "2009": 0.324, + "2010": 0.328, + "2011": 0.334, + "2012": 0.341, + "2013": 0.349, + "2014": 0.35, + "2015": 0.35, + "2016": 0.348, + "2017": 0.351, + "2018": 0.353, + "2019": 0.349, + "2020": 0.345, + "2021": 0.348 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "National", + "GDLCODE": "LBYt", + "Region": "Total", + "1990": 0.752, + "1991": 0.77, + "1992": 0.762, + "1993": 0.753, + "1994": 0.753, + "1995": 0.747, + "1996": 0.747, + "1997": 0.752, + "1998": 0.745, + "1999": 0.743, + "2000": 0.744, + "2001": 0.743, + "2002": 0.742, + "2003": 0.762, + "2004": 0.765, + "2005": 0.78, + "2006": 0.791, + "2007": 0.797, + "2008": 0.794, + "2009": 0.785, + "2010": 0.79, + "2011": 0.684, + "2012": 0.773, + "2013": 0.744, + "2014": 0.707, + "2015": 0.708, + "2016": 0.702, + "2017": 0.743, + "2018": 0.762, + "2019": 0.764, + "2020": 0.705, + "2021": 0.76 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr101", + "Region": "Cyrenaica", + "1990": 0.735, + "1991": 0.753, + "1992": 0.745, + "1993": 0.736, + "1994": 0.736, + "1995": 0.73, + "1996": 0.73, + "1997": 0.735, + "1998": 0.728, + "1999": 0.726, + "2000": 0.727, + "2001": 0.726, + "2002": 0.725, + "2003": 0.745, + "2004": 0.747, + "2005": 0.763, + "2006": 0.773, + "2007": 0.779, + "2008": 0.777, + "2009": 0.768, + "2010": 0.772, + "2011": 0.667, + "2012": 0.756, + "2013": 0.727, + "2014": 0.69, + "2015": 0.692, + "2016": 0.686, + "2017": 0.726, + "2018": 0.745, + "2019": 0.747, + "2020": 0.688, + "2021": 0.743 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr103", + "Region": "Fezzan", + "1990": 0.728, + "1991": 0.746, + "1992": 0.738, + "1993": 0.729, + "1994": 0.729, + "1995": 0.723, + "1996": 0.723, + "1997": 0.729, + "1998": 0.721, + "1999": 0.72, + "2000": 0.72, + "2001": 0.719, + "2002": 0.718, + "2003": 0.738, + "2004": 0.741, + "2005": 0.756, + "2006": 0.766, + "2007": 0.772, + "2008": 0.77, + "2009": 0.761, + "2010": 0.765, + "2011": 0.661, + "2012": 0.749, + "2013": 0.721, + "2014": 0.683, + "2015": 0.685, + "2016": 0.679, + "2017": 0.719, + "2018": 0.738, + "2019": 0.74, + "2020": 0.682, + "2021": 0.736 + }, + { + "Country": "Libya", + "Continent": "Africa", + "ISO_Code": "LBY", + "Level": "Subnat", + "GDLCODE": "LBYr102", + "Region": "Tripolitania", + "1990": 0.764, + "1991": 0.782, + "1992": 0.775, + "1993": 0.765, + "1994": 0.765, + "1995": 0.759, + "1996": 0.759, + "1997": 0.765, + "1998": 0.757, + "1999": 0.756, + "2000": 0.756, + "2001": 0.755, + "2002": 0.754, + "2003": 0.774, + "2004": 0.777, + "2005": 0.792, + "2006": 0.803, + "2007": 0.81, + "2008": 0.807, + "2009": 0.798, + "2010": 0.802, + "2011": 0.695, + "2012": 0.785, + "2013": 0.757, + "2014": 0.719, + "2015": 0.72, + "2016": 0.714, + "2017": 0.755, + "2018": 0.774, + "2019": 0.776, + "2020": 0.717, + "2021": 0.773 + }, + { + "Country": "Liechtenstein", + "Continent": "Europe", + "ISO_Code": "LIE", + "Level": "National", + "GDLCODE": "LIEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "National", + "GDLCODE": "LTUt", + "Region": "Total", + "1990": 0.761, + "1991": 0.752, + "1992": 0.716, + "1993": 0.69, + "1994": 0.675, + "1995": 0.681, + "1996": 0.695, + "1997": 0.711, + "1998": 0.722, + "1999": 0.723, + "2000": 0.733, + "2001": 0.744, + "2002": 0.757, + "2003": 0.771, + "2004": 0.788, + "2005": 0.804, + "2006": 0.814, + "2007": 0.83, + "2008": 0.84, + "2009": 0.822, + "2010": 0.824, + "2011": 0.831, + "2012": 0.838, + "2013": 0.845, + "2014": 0.854, + "2015": 0.858, + "2016": 0.865, + "2017": 0.874, + "2018": 0.88, + "2019": 0.888, + "2020": 0.889, + "2021": 0.897 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr101", + "Region": "Alytus County", + "1990": 0.724, + "1991": 0.716, + "1992": 0.681, + "1993": 0.655, + "1994": 0.641, + "1995": 0.646, + "1996": 0.66, + "1997": 0.676, + "1998": 0.686, + "1999": 0.688, + "2000": 0.697, + "2001": 0.707, + "2002": 0.708, + "2003": 0.72, + "2004": 0.731, + "2005": 0.746, + "2006": 0.748, + "2007": 0.763, + "2008": 0.778, + "2009": 0.758, + "2010": 0.762, + "2011": 0.77, + "2012": 0.77, + "2013": 0.779, + "2014": 0.788, + "2015": 0.791, + "2016": 0.795, + "2017": 0.803, + "2018": 0.809, + "2019": 0.816, + "2020": 0.818, + "2021": 0.825 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr102", + "Region": "Kaunas County", + "1990": 0.739, + "1991": 0.73, + "1992": 0.695, + "1993": 0.669, + "1994": 0.655, + "1995": 0.66, + "1996": 0.674, + "1997": 0.69, + "1998": 0.701, + "1999": 0.702, + "2000": 0.712, + "2001": 0.733, + "2002": 0.734, + "2003": 0.758, + "2004": 0.78, + "2005": 0.799, + "2006": 0.808, + "2007": 0.823, + "2008": 0.835, + "2009": 0.815, + "2010": 0.818, + "2011": 0.828, + "2012": 0.835, + "2013": 0.843, + "2014": 0.852, + "2015": 0.857, + "2016": 0.865, + "2017": 0.874, + "2018": 0.88, + "2019": 0.888, + "2020": 0.889, + "2021": 0.897 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr103", + "Region": "Klaipeda County", + "1990": 0.772, + "1991": 0.764, + "1992": 0.728, + "1993": 0.701, + "1994": 0.687, + "1995": 0.692, + "1996": 0.706, + "1997": 0.722, + "1998": 0.733, + "1999": 0.735, + "2000": 0.745, + "2001": 0.752, + "2002": 0.76, + "2003": 0.771, + "2004": 0.794, + "2005": 0.813, + "2006": 0.82, + "2007": 0.835, + "2008": 0.845, + "2009": 0.839, + "2010": 0.84, + "2011": 0.845, + "2012": 0.849, + "2013": 0.855, + "2014": 0.862, + "2015": 0.863, + "2016": 0.863, + "2017": 0.872, + "2018": 0.878, + "2019": 0.886, + "2020": 0.887, + "2021": 0.895 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr104", + "Region": "Marijampole County", + "1990": 0.702, + "1991": 0.694, + "1992": 0.659, + "1993": 0.634, + "1994": 0.62, + "1995": 0.625, + "1996": 0.639, + "1997": 0.654, + "1998": 0.665, + "1999": 0.666, + "2000": 0.675, + "2001": 0.669, + "2002": 0.677, + "2003": 0.691, + "2004": 0.718, + "2005": 0.735, + "2006": 0.742, + "2007": 0.752, + "2008": 0.768, + "2009": 0.744, + "2010": 0.756, + "2011": 0.761, + "2012": 0.773, + "2013": 0.779, + "2014": 0.785, + "2015": 0.785, + "2016": 0.786, + "2017": 0.794, + "2018": 0.8, + "2019": 0.807, + "2020": 0.808, + "2021": 0.816 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr105", + "Region": "Panevezys County", + "1990": 0.739, + "1991": 0.73, + "1992": 0.695, + "1993": 0.669, + "1994": 0.655, + "1995": 0.66, + "1996": 0.674, + "1997": 0.69, + "1998": 0.701, + "1999": 0.702, + "2000": 0.712, + "2001": 0.72, + "2002": 0.73, + "2003": 0.736, + "2004": 0.761, + "2005": 0.772, + "2006": 0.769, + "2007": 0.776, + "2008": 0.793, + "2009": 0.774, + "2010": 0.776, + "2011": 0.787, + "2012": 0.794, + "2013": 0.801, + "2014": 0.809, + "2015": 0.815, + "2016": 0.818, + "2017": 0.826, + "2018": 0.833, + "2019": 0.84, + "2020": 0.841, + "2021": 0.849 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr106", + "Region": "Siauliai County", + "1990": 0.724, + "1991": 0.716, + "1992": 0.681, + "1993": 0.655, + "1994": 0.641, + "1995": 0.646, + "1996": 0.66, + "1997": 0.676, + "1998": 0.686, + "1999": 0.688, + "2000": 0.697, + "2001": 0.697, + "2002": 0.703, + "2003": 0.724, + "2004": 0.746, + "2005": 0.759, + "2006": 0.766, + "2007": 0.781, + "2008": 0.791, + "2009": 0.769, + "2010": 0.779, + "2011": 0.789, + "2012": 0.796, + "2013": 0.803, + "2014": 0.809, + "2015": 0.815, + "2016": 0.82, + "2017": 0.828, + "2018": 0.834, + "2019": 0.841, + "2020": 0.843, + "2021": 0.85 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr107", + "Region": "Taurage County", + "1990": 0.653, + "1991": 0.645, + "1992": 0.612, + "1993": 0.588, + "1994": 0.574, + "1995": 0.579, + "1996": 0.593, + "1997": 0.607, + "1998": 0.618, + "1999": 0.619, + "2000": 0.628, + "2001": 0.635, + "2002": 0.644, + "2003": 0.663, + "2004": 0.688, + "2005": 0.691, + "2006": 0.696, + "2007": 0.71, + "2008": 0.737, + "2009": 0.725, + "2010": 0.734, + "2011": 0.749, + "2012": 0.753, + "2013": 0.757, + "2014": 0.766, + "2015": 0.769, + "2016": 0.774, + "2017": 0.782, + "2018": 0.788, + "2019": 0.795, + "2020": 0.796, + "2021": 0.803 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr108", + "Region": "Telsiai County", + "1990": 0.734, + "1991": 0.725, + "1992": 0.691, + "1993": 0.665, + "1994": 0.65, + "1995": 0.656, + "1996": 0.67, + "1997": 0.685, + "1998": 0.696, + "1999": 0.697, + "2000": 0.707, + "2001": 0.716, + "2002": 0.717, + "2003": 0.736, + "2004": 0.77, + "2005": 0.783, + "2006": 0.785, + "2007": 0.802, + "2008": 0.815, + "2009": 0.79, + "2010": 0.798, + "2011": 0.807, + "2012": 0.804, + "2013": 0.808, + "2014": 0.806, + "2015": 0.808, + "2016": 0.81, + "2017": 0.818, + "2018": 0.825, + "2019": 0.832, + "2020": 0.833, + "2021": 0.841 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr109", + "Region": "Utena County", + "1990": 0.734, + "1991": 0.725, + "1992": 0.691, + "1993": 0.665, + "1994": 0.65, + "1995": 0.656, + "1996": 0.67, + "1997": 0.685, + "1998": 0.696, + "1999": 0.697, + "2000": 0.707, + "2001": 0.716, + "2002": 0.726, + "2003": 0.751, + "2004": 0.767, + "2005": 0.777, + "2006": 0.78, + "2007": 0.792, + "2008": 0.808, + "2009": 0.797, + "2010": 0.769, + "2011": 0.777, + "2012": 0.777, + "2013": 0.782, + "2014": 0.79, + "2015": 0.791, + "2016": 0.793, + "2017": 0.801, + "2018": 0.807, + "2019": 0.814, + "2020": 0.816, + "2021": 0.823 + }, + { + "Country": "Lithuania", + "Continent": "Europe", + "ISO_Code": "LTU", + "Level": "Subnat", + "GDLCODE": "LTUr110", + "Region": "Vilnius County", + "1990": 0.821, + "1991": 0.812, + "1992": 0.775, + "1993": 0.747, + "1994": 0.732, + "1995": 0.737, + "1996": 0.752, + "1997": 0.769, + "1998": 0.78, + "1999": 0.782, + "2000": 0.792, + "2001": 0.805, + "2002": 0.829, + "2003": 0.836, + "2004": 0.846, + "2005": 0.863, + "2006": 0.876, + "2007": 0.895, + "2008": 0.9, + "2009": 0.882, + "2010": 0.882, + "2011": 0.885, + "2012": 0.891, + "2013": 0.902, + "2014": 0.911, + "2015": 0.915, + "2016": 0.925, + "2017": 0.934, + "2018": 0.941, + "2019": 0.949, + "2020": 0.95, + "2021": 0.958 + }, + { + "Country": "Luxembourg", + "Continent": "Europe", + "ISO_Code": "LUX", + "Level": "National", + "GDLCODE": "LUXt", + "Region": "Total", + "1990": 0.968, + "1991": 0.978, + "1992": 0.976, + "1993": 0.981, + "1994": 0.981, + "1995": 0.985, + "1996": 0.988, + "1997": 0.994, + "1998": 0.993, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 0.997, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.985, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 0.998, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "National", + "GDLCODE": "MDGt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.417, + "2001": 0.422, + "2002": 0.397, + "2003": 0.407, + "2004": 0.41, + "2005": 0.412, + "2006": 0.415, + "2007": 0.421, + "2008": 0.427, + "2009": 0.416, + "2010": 0.412, + "2011": 0.411, + "2012": 0.409, + "2013": 0.408, + "2014": 0.41, + "2015": 0.409, + "2016": 0.41, + "2017": 0.413, + "2018": 0.414, + "2019": 0.415, + "2020": 0.401, + "2021": 0.407 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr112", + "Region": "Alaotra Mangoro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.42, + "2001": 0.425, + "2002": 0.4, + "2003": 0.41, + "2004": 0.413, + "2005": 0.415, + "2006": 0.418, + "2007": 0.424, + "2008": 0.43, + "2009": 0.419, + "2010": 0.415, + "2011": 0.413, + "2012": 0.41, + "2013": 0.409, + "2014": 0.41, + "2015": 0.409, + "2016": 0.409, + "2017": 0.412, + "2018": 0.413, + "2019": 0.414, + "2020": 0.399, + "2021": 0.406 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr101", + "Region": "Analamanga", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.484, + "2001": 0.489, + "2002": 0.463, + "2003": 0.473, + "2004": 0.477, + "2005": 0.479, + "2006": 0.482, + "2007": 0.489, + "2008": 0.495, + "2009": 0.483, + "2010": 0.48, + "2011": 0.48, + "2012": 0.479, + "2013": 0.479, + "2014": 0.483, + "2015": 0.483, + "2016": 0.485, + "2017": 0.49, + "2018": 0.492, + "2019": 0.493, + "2020": 0.478, + "2021": 0.485 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr111", + "Region": "Analanjirofo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.39, + "2001": 0.395, + "2002": 0.371, + "2003": 0.38, + "2004": 0.384, + "2005": 0.385, + "2006": 0.388, + "2007": 0.395, + "2008": 0.4, + "2009": 0.389, + "2010": 0.391, + "2011": 0.394, + "2012": 0.398, + "2013": 0.402, + "2014": 0.409, + "2015": 0.413, + "2016": 0.419, + "2017": 0.428, + "2018": 0.433, + "2019": 0.434, + "2020": 0.42, + "2021": 0.427 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr106", + "Region": "Anamoroni Mania", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.391, + "2001": 0.395, + "2002": 0.371, + "2003": 0.381, + "2004": 0.384, + "2005": 0.386, + "2006": 0.389, + "2007": 0.395, + "2008": 0.401, + "2009": 0.39, + "2010": 0.385, + "2011": 0.383, + "2012": 0.38, + "2013": 0.378, + "2014": 0.378, + "2015": 0.376, + "2016": 0.376, + "2017": 0.379, + "2018": 0.378, + "2019": 0.379, + "2020": 0.366, + "2021": 0.372 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr118", + "Region": "Androy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.387, + "2001": 0.391, + "2002": 0.367, + "2003": 0.377, + "2004": 0.38, + "2005": 0.382, + "2006": 0.385, + "2007": 0.391, + "2008": 0.396, + "2009": 0.386, + "2010": 0.379, + "2011": 0.374, + "2012": 0.37, + "2013": 0.366, + "2014": 0.365, + "2015": 0.361, + "2016": 0.359, + "2017": 0.359, + "2018": 0.357, + "2019": 0.358, + "2020": 0.344, + "2021": 0.351 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr119", + "Region": "Anosy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.404, + "2001": 0.408, + "2002": 0.384, + "2003": 0.393, + "2004": 0.397, + "2005": 0.399, + "2006": 0.402, + "2007": 0.408, + "2008": 0.414, + "2009": 0.403, + "2010": 0.396, + "2011": 0.39, + "2012": 0.385, + "2013": 0.381, + "2014": 0.379, + "2015": 0.374, + "2016": 0.372, + "2017": 0.372, + "2018": 0.369, + "2019": 0.37, + "2020": 0.357, + "2021": 0.363 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr117", + "Region": "Atsimo Andrefana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.408, + "2001": 0.412, + "2002": 0.388, + "2003": 0.398, + "2004": 0.401, + "2005": 0.403, + "2006": 0.406, + "2007": 0.412, + "2008": 0.418, + "2009": 0.407, + "2010": 0.399, + "2011": 0.394, + "2012": 0.388, + "2013": 0.383, + "2014": 0.381, + "2015": 0.376, + "2016": 0.373, + "2017": 0.373, + "2018": 0.369, + "2019": 0.37, + "2020": 0.357, + "2021": 0.363 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr109", + "Region": "Atsimo Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.391, + "2001": 0.396, + "2002": 0.372, + "2003": 0.381, + "2004": 0.385, + "2005": 0.386, + "2006": 0.389, + "2007": 0.395, + "2008": 0.401, + "2009": 0.39, + "2010": 0.383, + "2011": 0.378, + "2012": 0.373, + "2013": 0.369, + "2014": 0.367, + "2015": 0.363, + "2016": 0.361, + "2017": 0.361, + "2018": 0.358, + "2019": 0.359, + "2020": 0.345, + "2021": 0.352 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr110", + "Region": "Atsinanana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.432, + "2001": 0.436, + "2002": 0.412, + "2003": 0.421, + "2004": 0.425, + "2005": 0.427, + "2006": 0.43, + "2007": 0.436, + "2008": 0.442, + "2009": 0.431, + "2010": 0.427, + "2011": 0.426, + "2012": 0.424, + "2013": 0.423, + "2014": 0.425, + "2015": 0.424, + "2016": 0.426, + "2017": 0.429, + "2018": 0.43, + "2019": 0.431, + "2020": 0.417, + "2021": 0.424 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr115", + "Region": "Betsiboka", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.403, + "2001": 0.407, + "2002": 0.383, + "2003": 0.393, + "2004": 0.396, + "2005": 0.398, + "2006": 0.401, + "2007": 0.407, + "2008": 0.413, + "2009": 0.402, + "2010": 0.398, + "2011": 0.397, + "2012": 0.395, + "2013": 0.394, + "2014": 0.396, + "2015": 0.394, + "2016": 0.396, + "2017": 0.399, + "2018": 0.4, + "2019": 0.401, + "2020": 0.387, + "2021": 0.393 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr113", + "Region": "Boeny", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.441, + "2001": 0.446, + "2002": 0.421, + "2003": 0.431, + "2004": 0.434, + "2005": 0.436, + "2006": 0.439, + "2007": 0.446, + "2008": 0.451, + "2009": 0.44, + "2010": 0.434, + "2011": 0.429, + "2012": 0.425, + "2013": 0.421, + "2014": 0.42, + "2015": 0.416, + "2016": 0.415, + "2017": 0.415, + "2018": 0.413, + "2019": 0.415, + "2020": 0.4, + "2021": 0.407 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr104", + "Region": "Bongolava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.404, + "2001": 0.409, + "2002": 0.384, + "2003": 0.394, + "2004": 0.398, + "2005": 0.399, + "2006": 0.402, + "2007": 0.408, + "2008": 0.414, + "2009": 0.403, + "2010": 0.4, + "2011": 0.399, + "2012": 0.397, + "2013": 0.396, + "2014": 0.399, + "2015": 0.398, + "2016": 0.4, + "2017": 0.403, + "2018": 0.404, + "2019": 0.405, + "2020": 0.391, + "2021": 0.398 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr121", + "Region": "Diana", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.417, + "2001": 0.421, + "2002": 0.397, + "2003": 0.406, + "2004": 0.41, + "2005": 0.411, + "2006": 0.415, + "2007": 0.421, + "2008": 0.426, + "2009": 0.416, + "2010": 0.416, + "2011": 0.418, + "2012": 0.42, + "2013": 0.423, + "2014": 0.429, + "2015": 0.432, + "2016": 0.438, + "2017": 0.445, + "2018": 0.45, + "2019": 0.451, + "2020": 0.436, + "2021": 0.443 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr105", + "Region": "Haute Matsiatra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.403, + "2001": 0.407, + "2002": 0.383, + "2003": 0.393, + "2004": 0.396, + "2005": 0.398, + "2006": 0.401, + "2007": 0.407, + "2008": 0.413, + "2009": 0.402, + "2010": 0.396, + "2011": 0.393, + "2012": 0.389, + "2013": 0.386, + "2014": 0.386, + "2015": 0.383, + "2016": 0.382, + "2017": 0.383, + "2018": 0.382, + "2019": 0.383, + "2020": 0.369, + "2021": 0.375 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr108", + "Region": "Ihorombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.41, + "2001": 0.414, + "2002": 0.39, + "2003": 0.4, + "2004": 0.403, + "2005": 0.405, + "2006": 0.408, + "2007": 0.414, + "2008": 0.42, + "2009": 0.409, + "2010": 0.402, + "2011": 0.398, + "2012": 0.393, + "2013": 0.389, + "2014": 0.389, + "2015": 0.385, + "2016": 0.383, + "2017": 0.384, + "2018": 0.382, + "2019": 0.383, + "2020": 0.369, + "2021": 0.375 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr103", + "Region": "Itasy", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.4, + "2001": 0.405, + "2002": 0.38, + "2003": 0.39, + "2004": 0.394, + "2005": 0.395, + "2006": 0.398, + "2007": 0.404, + "2008": 0.41, + "2009": 0.399, + "2010": 0.395, + "2011": 0.394, + "2012": 0.392, + "2013": 0.391, + "2014": 0.393, + "2015": 0.392, + "2016": 0.394, + "2017": 0.397, + "2018": 0.398, + "2019": 0.399, + "2020": 0.385, + "2021": 0.391 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr116", + "Region": "Melaky", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.377, + "2001": 0.381, + "2002": 0.357, + "2003": 0.367, + "2004": 0.37, + "2005": 0.372, + "2006": 0.375, + "2007": 0.381, + "2008": 0.386, + "2009": 0.376, + "2010": 0.372, + "2011": 0.371, + "2012": 0.369, + "2013": 0.368, + "2014": 0.371, + "2015": 0.37, + "2016": 0.371, + "2017": 0.375, + "2018": 0.376, + "2019": 0.377, + "2020": 0.363, + "2021": 0.369 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr120", + "Region": "Menabe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.413, + "2001": 0.417, + "2002": 0.393, + "2003": 0.402, + "2004": 0.406, + "2005": 0.408, + "2006": 0.411, + "2007": 0.417, + "2008": 0.423, + "2009": 0.412, + "2010": 0.404, + "2011": 0.399, + "2012": 0.393, + "2013": 0.388, + "2014": 0.386, + "2015": 0.381, + "2016": 0.378, + "2017": 0.378, + "2018": 0.375, + "2019": 0.376, + "2020": 0.362, + "2021": 0.368 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr122", + "Region": "Sava", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.38, + "2001": 0.384, + "2002": 0.361, + "2003": 0.37, + "2004": 0.374, + "2005": 0.375, + "2006": 0.378, + "2007": 0.384, + "2008": 0.39, + "2009": 0.379, + "2010": 0.382, + "2011": 0.387, + "2012": 0.392, + "2013": 0.398, + "2014": 0.406, + "2015": 0.412, + "2016": 0.42, + "2017": 0.43, + "2018": 0.437, + "2019": 0.438, + "2020": 0.424, + "2021": 0.431 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr114", + "Region": "Sofia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.408, + "2001": 0.413, + "2002": 0.388, + "2003": 0.398, + "2004": 0.402, + "2005": 0.403, + "2006": 0.406, + "2007": 0.412, + "2008": 0.418, + "2009": 0.407, + "2010": 0.405, + "2011": 0.406, + "2012": 0.406, + "2013": 0.406, + "2014": 0.41, + "2015": 0.411, + "2016": 0.414, + "2017": 0.419, + "2018": 0.422, + "2019": 0.423, + "2020": 0.409, + "2021": 0.416 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr102", + "Region": "Vakinankaratra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.406, + "2001": 0.41, + "2002": 0.386, + "2003": 0.395, + "2004": 0.399, + "2005": 0.401, + "2006": 0.404, + "2007": 0.41, + "2008": 0.416, + "2009": 0.405, + "2010": 0.402, + "2011": 0.401, + "2012": 0.399, + "2013": 0.399, + "2014": 0.402, + "2015": 0.401, + "2016": 0.403, + "2017": 0.407, + "2018": 0.408, + "2019": 0.409, + "2020": 0.395, + "2021": 0.402 + }, + { + "Country": "Madagascar", + "Continent": "Africa", + "ISO_Code": "MDG", + "Level": "Subnat", + "GDLCODE": "MDGr107", + "Region": "Vatovavy Fitovinany", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.386, + "2001": 0.39, + "2002": 0.366, + "2003": 0.376, + "2004": 0.379, + "2005": 0.381, + "2006": 0.384, + "2007": 0.39, + "2008": 0.395, + "2009": 0.385, + "2010": 0.38, + "2011": 0.377, + "2012": 0.374, + "2013": 0.372, + "2014": 0.373, + "2015": 0.37, + "2016": 0.371, + "2017": 0.373, + "2018": 0.372, + "2019": 0.373, + "2020": 0.36, + "2021": 0.366 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "National", + "GDLCODE": "MWIt", + "Region": "Total", + "1990": 0.337, + "1991": 0.347, + "1992": 0.334, + "1993": 0.347, + "1994": 0.331, + "1995": 0.352, + "1996": 0.36, + "1997": 0.362, + "1998": 0.364, + "1999": 0.364, + "2000": 0.363, + "2001": 0.351, + "2002": 0.35, + "2003": 0.355, + "2004": 0.359, + "2005": 0.36, + "2006": 0.363, + "2007": 0.372, + "2008": 0.379, + "2009": 0.387, + "2010": 0.392, + "2011": 0.395, + "2012": 0.394, + "2013": 0.397, + "2014": 0.401, + "2015": 0.401, + "2016": 0.401, + "2017": 0.403, + "2018": 0.405, + "2019": 0.409, + "2020": 0.407, + "2021": 0.406 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr101", + "Region": "Blantyre", + "1990": 0.386, + "1991": 0.396, + "1992": 0.383, + "1993": 0.401, + "1994": 0.387, + "1995": 0.414, + "1996": 0.426, + "1997": 0.432, + "1998": 0.438, + "1999": 0.442, + "2000": 0.444, + "2001": 0.422, + "2002": 0.411, + "2003": 0.406, + "2004": 0.4, + "2005": 0.406, + "2006": 0.413, + "2007": 0.428, + "2008": 0.44, + "2009": 0.453, + "2010": 0.463, + "2011": 0.465, + "2012": 0.461, + "2013": 0.463, + "2014": 0.466, + "2015": 0.465, + "2016": 0.463, + "2017": 0.469, + "2018": 0.476, + "2019": 0.485, + "2020": 0.486, + "2021": 0.485 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr102", + "Region": "Kasungu", + "1990": 0.334, + "1991": 0.343, + "1992": 0.331, + "1993": 0.344, + "1994": 0.328, + "1995": 0.35, + "1996": 0.358, + "1997": 0.361, + "1998": 0.362, + "1999": 0.363, + "2000": 0.362, + "2001": 0.347, + "2002": 0.342, + "2003": 0.344, + "2004": 0.345, + "2005": 0.347, + "2006": 0.351, + "2007": 0.362, + "2008": 0.37, + "2009": 0.379, + "2010": 0.386, + "2011": 0.387, + "2012": 0.385, + "2013": 0.387, + "2014": 0.389, + "2015": 0.388, + "2016": 0.386, + "2017": 0.393, + "2018": 0.4, + "2019": 0.409, + "2020": 0.41, + "2021": 0.409 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr109", + "Region": "Lilongwe", + "1990": 0.341, + "1991": 0.351, + "1992": 0.338, + "1993": 0.353, + "1994": 0.337, + "1995": 0.36, + "1996": 0.369, + "1997": 0.372, + "1998": 0.374, + "1999": 0.375, + "2000": 0.375, + "2001": 0.366, + "2002": 0.368, + "2003": 0.376, + "2004": 0.383, + "2005": 0.383, + "2006": 0.385, + "2007": 0.394, + "2008": 0.4, + "2009": 0.407, + "2010": 0.412, + "2011": 0.416, + "2012": 0.416, + "2013": 0.42, + "2014": 0.425, + "2015": 0.427, + "2016": 0.427, + "2017": 0.425, + "2018": 0.424, + "2019": 0.424, + "2020": 0.417, + "2021": 0.416 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr103", + "Region": "Machinga", + "1990": 0.329, + "1991": 0.339, + "1992": 0.326, + "1993": 0.339, + "1994": 0.322, + "1995": 0.343, + "1996": 0.35, + "1997": 0.352, + "1998": 0.353, + "1999": 0.353, + "2000": 0.351, + "2001": 0.339, + "2002": 0.337, + "2003": 0.341, + "2004": 0.345, + "2005": 0.347, + "2006": 0.351, + "2007": 0.361, + "2008": 0.369, + "2009": 0.377, + "2010": 0.384, + "2011": 0.383, + "2012": 0.378, + "2013": 0.378, + "2014": 0.379, + "2015": 0.376, + "2016": 0.372, + "2017": 0.375, + "2018": 0.379, + "2019": 0.384, + "2020": 0.382, + "2021": 0.381 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr104", + "Region": "Mangochi", + "1990": 0.323, + "1991": 0.333, + "1992": 0.32, + "1993": 0.334, + "1994": 0.317, + "1995": 0.339, + "1996": 0.347, + "1997": 0.349, + "1998": 0.351, + "1999": 0.352, + "2000": 0.35, + "2001": 0.338, + "2002": 0.336, + "2003": 0.34, + "2004": 0.343, + "2005": 0.345, + "2006": 0.348, + "2007": 0.358, + "2008": 0.366, + "2009": 0.374, + "2010": 0.38, + "2011": 0.383, + "2012": 0.381, + "2013": 0.384, + "2014": 0.388, + "2015": 0.387, + "2016": 0.387, + "2017": 0.384, + "2018": 0.382, + "2019": 0.382, + "2020": 0.375, + "2021": 0.374 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr110", + "Region": "Mulanje", + "1990": 0.335, + "1991": 0.345, + "1992": 0.332, + "1993": 0.345, + "1994": 0.327, + "1995": 0.347, + "1996": 0.354, + "1997": 0.355, + "1998": 0.355, + "1999": 0.354, + "2000": 0.352, + "2001": 0.341, + "2002": 0.34, + "2003": 0.346, + "2004": 0.351, + "2005": 0.352, + "2006": 0.355, + "2007": 0.365, + "2008": 0.373, + "2009": 0.381, + "2010": 0.387, + "2011": 0.389, + "2012": 0.387, + "2013": 0.39, + "2014": 0.394, + "2015": 0.393, + "2016": 0.392, + "2017": 0.395, + "2018": 0.397, + "2019": 0.401, + "2020": 0.399, + "2021": 0.398 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr105", + "Region": "Mzimba", + "1990": 0.344, + "1991": 0.354, + "1992": 0.341, + "1993": 0.353, + "1994": 0.335, + "1995": 0.356, + "1996": 0.362, + "1997": 0.363, + "1998": 0.364, + "1999": 0.363, + "2000": 0.36, + "2001": 0.352, + "2002": 0.354, + "2003": 0.362, + "2004": 0.369, + "2005": 0.369, + "2006": 0.371, + "2007": 0.38, + "2008": 0.386, + "2009": 0.393, + "2010": 0.397, + "2011": 0.403, + "2012": 0.405, + "2013": 0.411, + "2014": 0.418, + "2015": 0.421, + "2016": 0.423, + "2017": 0.428, + "2018": 0.433, + "2019": 0.44, + "2020": 0.44, + "2021": 0.439 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr112", + "Region": "Other central (Nkhota Kota, Mchinji, Dowa, Ntchisi, Dedza, Ntcheu)", + "1990": 0.327, + "1991": 0.337, + "1992": 0.324, + "1993": 0.337, + "1994": 0.319, + "1995": 0.34, + "1996": 0.347, + "1997": 0.348, + "1998": 0.348, + "1999": 0.348, + "2000": 0.345, + "2001": 0.333, + "2002": 0.332, + "2003": 0.336, + "2004": 0.34, + "2005": 0.34, + "2006": 0.343, + "2007": 0.352, + "2008": 0.358, + "2009": 0.366, + "2010": 0.371, + "2011": 0.374, + "2012": 0.372, + "2013": 0.376, + "2014": 0.38, + "2015": 0.38, + "2016": 0.379, + "2017": 0.381, + "2018": 0.384, + "2019": 0.388, + "2020": 0.386, + "2021": 0.385 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr111", + "Region": "Other northern (Chitipa, Karonga, Rumphi, Nkhata Bay)", + "1990": 0.344, + "1991": 0.354, + "1992": 0.341, + "1993": 0.353, + "1994": 0.335, + "1995": 0.356, + "1996": 0.362, + "1997": 0.363, + "1998": 0.364, + "1999": 0.362, + "2000": 0.359, + "2001": 0.351, + "2002": 0.352, + "2003": 0.36, + "2004": 0.367, + "2005": 0.367, + "2006": 0.369, + "2007": 0.377, + "2008": 0.383, + "2009": 0.39, + "2010": 0.395, + "2011": 0.4, + "2012": 0.401, + "2013": 0.406, + "2014": 0.413, + "2015": 0.415, + "2016": 0.417, + "2017": 0.419, + "2018": 0.422, + "2019": 0.426, + "2020": 0.423, + "2021": 0.422 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr113", + "Region": "Other southern (Balaka, Mwanza, Phalombe, Chiradzulu, Chikwawa, Nsanje, neno)", + "1990": 0.325, + "1991": 0.335, + "1992": 0.322, + "1993": 0.336, + "1994": 0.319, + "1995": 0.341, + "1996": 0.349, + "1997": 0.351, + "1998": 0.353, + "1999": 0.353, + "2000": 0.352, + "2001": 0.341, + "2002": 0.339, + "2003": 0.344, + "2004": 0.348, + "2005": 0.348, + "2006": 0.351, + "2007": 0.36, + "2008": 0.366, + "2009": 0.373, + "2010": 0.378, + "2011": 0.381, + "2012": 0.379, + "2013": 0.382, + "2014": 0.386, + "2015": 0.386, + "2016": 0.386, + "2017": 0.388, + "2018": 0.39, + "2019": 0.395, + "2020": 0.392, + "2021": 0.391 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr106", + "Region": "Salima", + "1990": 0.329, + "1991": 0.338, + "1992": 0.325, + "1993": 0.339, + "1994": 0.322, + "1995": 0.344, + "1996": 0.352, + "1997": 0.354, + "1998": 0.356, + "1999": 0.356, + "2000": 0.354, + "2001": 0.339, + "2002": 0.335, + "2003": 0.336, + "2004": 0.336, + "2005": 0.341, + "2006": 0.347, + "2007": 0.36, + "2008": 0.37, + "2009": 0.382, + "2010": 0.391, + "2011": 0.391, + "2012": 0.387, + "2013": 0.387, + "2014": 0.389, + "2015": 0.386, + "2016": 0.383, + "2017": 0.386, + "2018": 0.39, + "2019": 0.395, + "2020": 0.394, + "2021": 0.393 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr107", + "Region": "Thyolo", + "1990": 0.334, + "1991": 0.344, + "1992": 0.331, + "1993": 0.342, + "1994": 0.324, + "1995": 0.344, + "1996": 0.349, + "1997": 0.349, + "1998": 0.349, + "1999": 0.347, + "2000": 0.344, + "2001": 0.334, + "2002": 0.334, + "2003": 0.34, + "2004": 0.346, + "2005": 0.346, + "2006": 0.349, + "2007": 0.358, + "2008": 0.365, + "2009": 0.372, + "2010": 0.377, + "2011": 0.379, + "2012": 0.377, + "2013": 0.38, + "2014": 0.383, + "2015": 0.382, + "2016": 0.381, + "2017": 0.383, + "2018": 0.385, + "2019": 0.389, + "2020": 0.386, + "2021": 0.385 + }, + { + "Country": "Malawi", + "Continent": "Africa", + "ISO_Code": "MWI", + "Level": "Subnat", + "GDLCODE": "MWIr108", + "Region": "Zomba", + "1990": 0.346, + "1991": 0.355, + "1992": 0.342, + "1993": 0.354, + "1994": 0.335, + "1995": 0.355, + "1996": 0.361, + "1997": 0.361, + "1998": 0.36, + "1999": 0.358, + "2000": 0.354, + "2001": 0.348, + "2002": 0.351, + "2003": 0.361, + "2004": 0.37, + "2005": 0.371, + "2006": 0.374, + "2007": 0.383, + "2008": 0.39, + "2009": 0.398, + "2010": 0.403, + "2011": 0.404, + "2012": 0.401, + "2013": 0.402, + "2014": 0.405, + "2015": 0.403, + "2016": 0.401, + "2017": 0.403, + "2018": 0.406, + "2019": 0.411, + "2020": 0.409, + "2021": 0.408 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "National", + "GDLCODE": "MYSt", + "Region": "Total", + "1990": 0.695, + "1991": 0.703, + "1992": 0.712, + "1993": 0.723, + "1994": 0.732, + "1995": 0.743, + "1996": 0.753, + "1997": 0.759, + "1998": 0.743, + "1999": 0.746, + "2000": 0.754, + "2001": 0.753, + "2002": 0.759, + "2003": 0.766, + "2004": 0.773, + "2005": 0.779, + "2006": 0.786, + "2007": 0.794, + "2008": 0.796, + "2009": 0.793, + "2010": 0.799, + "2011": 0.806, + "2012": 0.81, + "2013": 0.815, + "2014": 0.822, + "2015": 0.829, + "2016": 0.833, + "2017": 0.839, + "2018": 0.844, + "2019": 0.849, + "2020": 0.84, + "2021": 0.844 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr101", + "Region": "Johor", + "1990": 0.725, + "1991": 0.733, + "1992": 0.742, + "1993": 0.753, + "1994": 0.763, + "1995": 0.774, + "1996": 0.784, + "1997": 0.79, + "1998": 0.774, + "1999": 0.777, + "2000": 0.785, + "2001": 0.784, + "2002": 0.79, + "2003": 0.797, + "2004": 0.804, + "2005": 0.81, + "2006": 0.818, + "2007": 0.826, + "2008": 0.828, + "2009": 0.825, + "2010": 0.832, + "2011": 0.838, + "2012": 0.842, + "2013": 0.848, + "2014": 0.855, + "2015": 0.861, + "2016": 0.866, + "2017": 0.873, + "2018": 0.877, + "2019": 0.883, + "2020": 0.873, + "2021": 0.877 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr102", + "Region": "Kedah", + "1990": 0.698, + "1991": 0.707, + "1992": 0.715, + "1993": 0.726, + "1994": 0.736, + "1995": 0.746, + "1996": 0.757, + "1997": 0.762, + "1998": 0.747, + "1999": 0.75, + "2000": 0.757, + "2001": 0.756, + "2002": 0.762, + "2003": 0.769, + "2004": 0.776, + "2005": 0.782, + "2006": 0.79, + "2007": 0.797, + "2008": 0.8, + "2009": 0.796, + "2010": 0.803, + "2011": 0.81, + "2012": 0.813, + "2013": 0.819, + "2014": 0.826, + "2015": 0.832, + "2016": 0.837, + "2017": 0.843, + "2018": 0.848, + "2019": 0.853, + "2020": 0.843, + "2021": 0.847 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr103", + "Region": "Kelantan", + "1990": 0.637, + "1991": 0.645, + "1992": 0.653, + "1993": 0.664, + "1994": 0.673, + "1995": 0.683, + "1996": 0.693, + "1997": 0.698, + "1998": 0.683, + "1999": 0.686, + "2000": 0.693, + "2001": 0.692, + "2002": 0.698, + "2003": 0.705, + "2004": 0.712, + "2005": 0.717, + "2006": 0.724, + "2007": 0.732, + "2008": 0.734, + "2009": 0.731, + "2010": 0.737, + "2011": 0.744, + "2012": 0.747, + "2013": 0.752, + "2014": 0.759, + "2015": 0.765, + "2016": 0.769, + "2017": 0.776, + "2018": 0.78, + "2019": 0.785, + "2020": 0.776, + "2021": 0.78 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr114", + "Region": "Kuala Lumpur Federal Territory", + "1990": 0.735, + "1991": 0.744, + "1992": 0.752, + "1993": 0.764, + "1994": 0.774, + "1995": 0.784, + "1996": 0.795, + "1997": 0.801, + "1998": 0.785, + "1999": 0.788, + "2000": 0.796, + "2001": 0.795, + "2002": 0.801, + "2003": 0.808, + "2004": 0.815, + "2005": 0.821, + "2006": 0.829, + "2007": 0.837, + "2008": 0.839, + "2009": 0.836, + "2010": 0.843, + "2011": 0.849, + "2012": 0.853, + "2013": 0.859, + "2014": 0.866, + "2015": 0.873, + "2016": 0.877, + "2017": 0.884, + "2018": 0.889, + "2019": 0.894, + "2020": 0.884, + "2021": 0.888 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr115", + "Region": "Labuan Federal Territory", + "1990": 0.677, + "1991": 0.685, + "1992": 0.694, + "1993": 0.705, + "1994": 0.714, + "1995": 0.724, + "1996": 0.735, + "1997": 0.741, + "1998": 0.725, + "1999": 0.728, + "2000": 0.735, + "2001": 0.734, + "2002": 0.74, + "2003": 0.747, + "2004": 0.754, + "2005": 0.76, + "2006": 0.767, + "2007": 0.775, + "2008": 0.777, + "2009": 0.774, + "2010": 0.78, + "2011": 0.787, + "2012": 0.791, + "2013": 0.796, + "2014": 0.803, + "2015": 0.809, + "2016": 0.814, + "2017": 0.82, + "2018": 0.825, + "2019": 0.83, + "2020": 0.82, + "2021": 0.824 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr104", + "Region": "Melaka", + "1990": 0.731, + "1991": 0.74, + "1992": 0.748, + "1993": 0.76, + "1994": 0.77, + "1995": 0.78, + "1996": 0.791, + "1997": 0.797, + "1998": 0.781, + "1999": 0.784, + "2000": 0.792, + "2001": 0.791, + "2002": 0.796, + "2003": 0.804, + "2004": 0.811, + "2005": 0.817, + "2006": 0.825, + "2007": 0.832, + "2008": 0.835, + "2009": 0.832, + "2010": 0.838, + "2011": 0.845, + "2012": 0.849, + "2013": 0.855, + "2014": 0.862, + "2015": 0.868, + "2016": 0.873, + "2017": 0.879, + "2018": 0.884, + "2019": 0.89, + "2020": 0.88, + "2021": 0.884 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr105", + "Region": "Negeri Sembilan", + "1990": 0.732, + "1991": 0.741, + "1992": 0.75, + "1993": 0.761, + "1994": 0.771, + "1995": 0.781, + "1996": 0.792, + "1997": 0.798, + "1998": 0.782, + "1999": 0.785, + "2000": 0.793, + "2001": 0.792, + "2002": 0.798, + "2003": 0.805, + "2004": 0.812, + "2005": 0.818, + "2006": 0.826, + "2007": 0.834, + "2008": 0.836, + "2009": 0.833, + "2010": 0.84, + "2011": 0.846, + "2012": 0.85, + "2013": 0.856, + "2014": 0.863, + "2015": 0.87, + "2016": 0.874, + "2017": 0.881, + "2018": 0.885, + "2019": 0.891, + "2020": 0.881, + "2021": 0.885 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr106", + "Region": "Pahang", + "1990": 0.698, + "1991": 0.706, + "1992": 0.715, + "1993": 0.726, + "1994": 0.736, + "1995": 0.746, + "1996": 0.756, + "1997": 0.762, + "1998": 0.746, + "1999": 0.749, + "2000": 0.757, + "2001": 0.756, + "2002": 0.762, + "2003": 0.769, + "2004": 0.776, + "2005": 0.782, + "2006": 0.789, + "2007": 0.797, + "2008": 0.8, + "2009": 0.796, + "2010": 0.803, + "2011": 0.809, + "2012": 0.813, + "2013": 0.819, + "2014": 0.826, + "2015": 0.832, + "2016": 0.836, + "2017": 0.843, + "2018": 0.847, + "2019": 0.853, + "2020": 0.843, + "2021": 0.847 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr108", + "Region": "Perak", + "1990": 0.718, + "1991": 0.727, + "1992": 0.736, + "1993": 0.747, + "1994": 0.757, + "1995": 0.767, + "1996": 0.778, + "1997": 0.784, + "1998": 0.768, + "1999": 0.771, + "2000": 0.779, + "2001": 0.778, + "2002": 0.784, + "2003": 0.791, + "2004": 0.798, + "2005": 0.804, + "2006": 0.812, + "2007": 0.819, + "2008": 0.822, + "2009": 0.819, + "2010": 0.825, + "2011": 0.832, + "2012": 0.836, + "2013": 0.841, + "2014": 0.848, + "2015": 0.855, + "2016": 0.859, + "2017": 0.866, + "2018": 0.871, + "2019": 0.876, + "2020": 0.866, + "2021": 0.87 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr109", + "Region": "Perlis", + "1990": 0.696, + "1991": 0.705, + "1992": 0.714, + "1993": 0.725, + "1994": 0.734, + "1995": 0.745, + "1996": 0.755, + "1997": 0.761, + "1998": 0.745, + "1999": 0.748, + "2000": 0.756, + "2001": 0.755, + "2002": 0.761, + "2003": 0.768, + "2004": 0.775, + "2005": 0.781, + "2006": 0.788, + "2007": 0.796, + "2008": 0.798, + "2009": 0.795, + "2010": 0.801, + "2011": 0.808, + "2012": 0.812, + "2013": 0.817, + "2014": 0.824, + "2015": 0.831, + "2016": 0.835, + "2017": 0.842, + "2018": 0.846, + "2019": 0.851, + "2020": 0.842, + "2021": 0.846 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr107", + "Region": "Pulau Pinang", + "1990": 0.735, + "1991": 0.744, + "1992": 0.753, + "1993": 0.765, + "1994": 0.774, + "1995": 0.785, + "1996": 0.796, + "1997": 0.802, + "1998": 0.786, + "1999": 0.789, + "2000": 0.796, + "2001": 0.795, + "2002": 0.801, + "2003": 0.809, + "2004": 0.816, + "2005": 0.822, + "2006": 0.83, + "2007": 0.837, + "2008": 0.84, + "2009": 0.837, + "2010": 0.843, + "2011": 0.85, + "2012": 0.854, + "2013": 0.86, + "2014": 0.867, + "2015": 0.873, + "2016": 0.878, + "2017": 0.885, + "2018": 0.889, + "2019": 0.895, + "2020": 0.885, + "2021": 0.889 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr112", + "Region": "Sabah", + "1990": 0.578, + "1991": 0.586, + "1992": 0.594, + "1993": 0.604, + "1994": 0.613, + "1995": 0.623, + "1996": 0.632, + "1997": 0.638, + "1998": 0.623, + "1999": 0.626, + "2000": 0.633, + "2001": 0.632, + "2002": 0.637, + "2003": 0.644, + "2004": 0.65, + "2005": 0.656, + "2006": 0.662, + "2007": 0.669, + "2008": 0.672, + "2009": 0.669, + "2010": 0.675, + "2011": 0.681, + "2012": 0.684, + "2013": 0.689, + "2014": 0.695, + "2015": 0.701, + "2016": 0.705, + "2017": 0.711, + "2018": 0.716, + "2019": 0.72, + "2020": 0.711, + "2021": 0.715 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr113", + "Region": "Sarawak", + "1990": 0.62, + "1991": 0.628, + "1992": 0.636, + "1993": 0.647, + "1994": 0.656, + "1995": 0.665, + "1996": 0.675, + "1997": 0.681, + "1998": 0.666, + "1999": 0.669, + "2000": 0.676, + "2001": 0.675, + "2002": 0.68, + "2003": 0.687, + "2004": 0.694, + "2005": 0.699, + "2006": 0.707, + "2007": 0.714, + "2008": 0.716, + "2009": 0.713, + "2010": 0.719, + "2011": 0.725, + "2012": 0.729, + "2013": 0.734, + "2014": 0.741, + "2015": 0.747, + "2016": 0.751, + "2017": 0.757, + "2018": 0.761, + "2019": 0.766, + "2020": 0.757, + "2021": 0.761 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr110", + "Region": "Selangor", + "1990": 0.739, + "1991": 0.748, + "1992": 0.757, + "1993": 0.768, + "1994": 0.778, + "1995": 0.789, + "1996": 0.799, + "1997": 0.805, + "1998": 0.789, + "1999": 0.792, + "2000": 0.8, + "2001": 0.799, + "2002": 0.805, + "2003": 0.812, + "2004": 0.82, + "2005": 0.826, + "2006": 0.833, + "2007": 0.841, + "2008": 0.844, + "2009": 0.84, + "2010": 0.847, + "2011": 0.854, + "2012": 0.858, + "2013": 0.864, + "2014": 0.871, + "2015": 0.877, + "2016": 0.882, + "2017": 0.888, + "2018": 0.893, + "2019": 0.899, + "2020": 0.889, + "2021": 0.893 + }, + { + "Country": "Malaysia", + "Continent": "Asia/Pacific", + "ISO_Code": "MYS", + "Level": "Subnat", + "GDLCODE": "MYSr111", + "Region": "Terengganu", + "1990": 0.678, + "1991": 0.687, + "1992": 0.695, + "1993": 0.706, + "1994": 0.716, + "1995": 0.726, + "1996": 0.736, + "1997": 0.742, + "1998": 0.727, + "1999": 0.729, + "2000": 0.737, + "2001": 0.736, + "2002": 0.742, + "2003": 0.749, + "2004": 0.756, + "2005": 0.761, + "2006": 0.769, + "2007": 0.776, + "2008": 0.779, + "2009": 0.776, + "2010": 0.782, + "2011": 0.789, + "2012": 0.792, + "2013": 0.798, + "2014": 0.804, + "2015": 0.811, + "2016": 0.815, + "2017": 0.822, + "2018": 0.826, + "2019": 0.831, + "2020": 0.822, + "2021": 0.826 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "National", + "GDLCODE": "MDVt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.695, + "1996": 0.709, + "1997": 0.72, + "1998": 0.724, + "1999": 0.732, + "2000": 0.738, + "2001": 0.727, + "2002": 0.736, + "2003": 0.749, + "2004": 0.755, + "2005": 0.734, + "2006": 0.764, + "2007": 0.744, + "2008": 0.758, + "2009": 0.745, + "2010": 0.749, + "2011": 0.757, + "2012": 0.757, + "2013": 0.758, + "2014": 0.764, + "2015": 0.764, + "2016": 0.768, + "2017": 0.772, + "2018": 0.777, + "2019": 0.782, + "2020": 0.72, + "2021": 0.761 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr104", + "Region": "Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.681, + "1996": 0.695, + "1997": 0.705, + "1998": 0.71, + "1999": 0.718, + "2000": 0.723, + "2001": 0.713, + "2002": 0.721, + "2003": 0.735, + "2004": 0.741, + "2005": 0.719, + "2006": 0.749, + "2007": 0.729, + "2008": 0.743, + "2009": 0.731, + "2010": 0.734, + "2011": 0.742, + "2012": 0.741, + "2013": 0.741, + "2014": 0.747, + "2015": 0.747, + "2016": 0.75, + "2017": 0.754, + "2018": 0.759, + "2019": 0.764, + "2020": 0.703, + "2021": 0.743 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr101", + "Region": "Male", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.742, + "1996": 0.757, + "1997": 0.767, + "1998": 0.772, + "1999": 0.78, + "2000": 0.786, + "2001": 0.775, + "2002": 0.784, + "2003": 0.798, + "2004": 0.804, + "2005": 0.782, + "2006": 0.813, + "2007": 0.792, + "2008": 0.807, + "2009": 0.794, + "2010": 0.794, + "2011": 0.8, + "2012": 0.796, + "2013": 0.794, + "2014": 0.797, + "2015": 0.794, + "2016": 0.795, + "2017": 0.796, + "2018": 0.801, + "2019": 0.806, + "2020": 0.743, + "2021": 0.785 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr102", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.671, + "1996": 0.685, + "1997": 0.695, + "1998": 0.699, + "1999": 0.707, + "2000": 0.713, + "2001": 0.703, + "2002": 0.711, + "2003": 0.724, + "2004": 0.73, + "2005": 0.709, + "2006": 0.739, + "2007": 0.719, + "2008": 0.733, + "2009": 0.72, + "2010": 0.725, + "2011": 0.734, + "2012": 0.735, + "2013": 0.737, + "2014": 0.744, + "2015": 0.745, + "2016": 0.75, + "2017": 0.755, + "2018": 0.76, + "2019": 0.765, + "2020": 0.704, + "2021": 0.744 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr103", + "Region": "North Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.673, + "1996": 0.687, + "1997": 0.698, + "1998": 0.702, + "1999": 0.71, + "2000": 0.715, + "2001": 0.705, + "2002": 0.714, + "2003": 0.727, + "2004": 0.733, + "2005": 0.711, + "2006": 0.741, + "2007": 0.721, + "2008": 0.736, + "2009": 0.723, + "2010": 0.727, + "2011": 0.736, + "2012": 0.736, + "2013": 0.738, + "2014": 0.745, + "2015": 0.746, + "2016": 0.75, + "2017": 0.755, + "2018": 0.76, + "2019": 0.765, + "2020": 0.704, + "2021": 0.744 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr106", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.676, + "1996": 0.69, + "1997": 0.7, + "1998": 0.704, + "1999": 0.712, + "2000": 0.718, + "2001": 0.707, + "2002": 0.716, + "2003": 0.729, + "2004": 0.735, + "2005": 0.714, + "2006": 0.744, + "2007": 0.724, + "2008": 0.738, + "2009": 0.725, + "2010": 0.73, + "2011": 0.74, + "2012": 0.74, + "2013": 0.743, + "2014": 0.75, + "2015": 0.752, + "2016": 0.757, + "2017": 0.763, + "2018": 0.767, + "2019": 0.772, + "2020": 0.711, + "2021": 0.752 + }, + { + "Country": "Maldives", + "Continent": "Asia/Pacific", + "ISO_Code": "MDV", + "Level": "Subnat", + "GDLCODE": "MDVr105", + "Region": "South Central", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.672, + "1996": 0.686, + "1997": 0.697, + "1998": 0.701, + "1999": 0.709, + "2000": 0.714, + "2001": 0.704, + "2002": 0.713, + "2003": 0.726, + "2004": 0.732, + "2005": 0.71, + "2006": 0.74, + "2007": 0.72, + "2008": 0.734, + "2009": 0.722, + "2010": 0.726, + "2011": 0.736, + "2012": 0.737, + "2013": 0.739, + "2014": 0.746, + "2015": 0.747, + "2016": 0.753, + "2017": 0.758, + "2018": 0.763, + "2019": 0.768, + "2020": 0.707, + "2021": 0.747 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "National", + "GDLCODE": "MLIt", + "Region": "Total", + "1990": 0.4, + "1991": 0.414, + "1992": 0.405, + "1993": 0.406, + "1994": 0.406, + "1995": 0.402, + "1996": 0.409, + "1997": 0.412, + "1998": 0.419, + "1999": 0.424, + "2000": 0.42, + "2001": 0.432, + "2002": 0.43, + "2003": 0.442, + "2004": 0.44, + "2005": 0.445, + "2006": 0.446, + "2007": 0.446, + "2008": 0.449, + "2009": 0.449, + "2010": 0.453, + "2011": 0.453, + "2012": 0.447, + "2013": 0.447, + "2014": 0.454, + "2015": 0.459, + "2016": 0.463, + "2017": 0.465, + "2018": 0.468, + "2019": 0.47, + "2020": 0.462, + "2021": 0.462 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr108", + "Region": "Bamako", + "1990": 0.496, + "1991": 0.512, + "1992": 0.502, + "1993": 0.503, + "1994": 0.503, + "1995": 0.499, + "1996": 0.514, + "1997": 0.525, + "1998": 0.541, + "1999": 0.555, + "2000": 0.559, + "2001": 0.58, + "2002": 0.582, + "2003": 0.6, + "2004": 0.601, + "2005": 0.611, + "2006": 0.616, + "2007": 0.611, + "2008": 0.609, + "2009": 0.604, + "2010": 0.603, + "2011": 0.599, + "2012": 0.587, + "2013": 0.583, + "2014": 0.588, + "2015": 0.592, + "2016": 0.593, + "2017": 0.594, + "2018": 0.595, + "2019": 0.597, + "2020": 0.588, + "2021": 0.588 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr107", + "Region": "Gao and Kidal", + "1990": 0.422, + "1991": 0.436, + "1992": 0.427, + "1993": 0.429, + "1994": 0.428, + "1995": 0.425, + "1996": 0.425, + "1997": 0.421, + "1998": 0.422, + "1999": 0.421, + "2000": 0.41, + "2001": 0.415, + "2002": 0.413, + "2003": 0.426, + "2004": 0.423, + "2005": 0.428, + "2006": 0.429, + "2007": 0.424, + "2008": 0.421, + "2009": 0.415, + "2010": 0.414, + "2011": 0.409, + "2012": 0.398, + "2013": 0.393, + "2014": 0.397, + "2015": 0.399, + "2016": 0.399, + "2017": 0.399, + "2018": 0.399, + "2019": 0.4, + "2020": 0.393, + "2021": 0.393 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr101", + "Region": "Kayes", + "1990": 0.386, + "1991": 0.4, + "1992": 0.391, + "1993": 0.392, + "1994": 0.392, + "1995": 0.389, + "1996": 0.396, + "1997": 0.4, + "1998": 0.409, + "1999": 0.415, + "2000": 0.412, + "2001": 0.425, + "2002": 0.422, + "2003": 0.435, + "2004": 0.432, + "2005": 0.437, + "2006": 0.437, + "2007": 0.437, + "2008": 0.44, + "2009": 0.439, + "2010": 0.443, + "2011": 0.444, + "2012": 0.437, + "2013": 0.437, + "2014": 0.442, + "2015": 0.445, + "2016": 0.446, + "2017": 0.447, + "2018": 0.448, + "2019": 0.449, + "2020": 0.442, + "2021": 0.442 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr102", + "Region": "Koulikoro", + "1990": 0.39, + "1991": 0.404, + "1992": 0.395, + "1993": 0.396, + "1994": 0.396, + "1995": 0.393, + "1996": 0.397, + "1997": 0.398, + "1998": 0.404, + "1999": 0.407, + "2000": 0.401, + "2001": 0.411, + "2002": 0.407, + "2003": 0.418, + "2004": 0.414, + "2005": 0.418, + "2006": 0.417, + "2007": 0.42, + "2008": 0.426, + "2009": 0.429, + "2010": 0.436, + "2011": 0.439, + "2012": 0.436, + "2013": 0.439, + "2014": 0.446, + "2015": 0.452, + "2016": 0.456, + "2017": 0.459, + "2018": 0.462, + "2019": 0.464, + "2020": 0.456, + "2021": 0.456 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr105", + "Region": "Mopti", + "1990": 0.36, + "1991": 0.374, + "1992": 0.365, + "1993": 0.367, + "1994": 0.366, + "1995": 0.363, + "1996": 0.37, + "1997": 0.374, + "1998": 0.382, + "1999": 0.388, + "2000": 0.385, + "2001": 0.397, + "2002": 0.394, + "2003": 0.405, + "2004": 0.401, + "2005": 0.404, + "2006": 0.404, + "2007": 0.404, + "2008": 0.407, + "2009": 0.407, + "2010": 0.411, + "2011": 0.412, + "2012": 0.406, + "2013": 0.406, + "2014": 0.412, + "2015": 0.416, + "2016": 0.418, + "2017": 0.42, + "2018": 0.422, + "2019": 0.424, + "2020": 0.416, + "2021": 0.416 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr104", + "Region": "Segou", + "1990": 0.398, + "1991": 0.413, + "1992": 0.404, + "1993": 0.405, + "1994": 0.405, + "1995": 0.401, + "1996": 0.404, + "1997": 0.404, + "1998": 0.408, + "1999": 0.409, + "2000": 0.402, + "2001": 0.41, + "2002": 0.41, + "2003": 0.425, + "2004": 0.425, + "2005": 0.431, + "2006": 0.435, + "2007": 0.433, + "2008": 0.434, + "2009": 0.432, + "2010": 0.435, + "2011": 0.434, + "2012": 0.426, + "2013": 0.424, + "2014": 0.433, + "2015": 0.439, + "2016": 0.444, + "2017": 0.448, + "2018": 0.452, + "2019": 0.454, + "2020": 0.447, + "2021": 0.447 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr103", + "Region": "Sikasso", + "1990": 0.406, + "1991": 0.42, + "1992": 0.411, + "1993": 0.413, + "1994": 0.412, + "1995": 0.409, + "1996": 0.413, + "1997": 0.415, + "1998": 0.42, + "1999": 0.424, + "2000": 0.418, + "2001": 0.428, + "2002": 0.424, + "2003": 0.435, + "2004": 0.43, + "2005": 0.433, + "2006": 0.432, + "2007": 0.433, + "2008": 0.436, + "2009": 0.437, + "2010": 0.441, + "2011": 0.443, + "2012": 0.437, + "2013": 0.438, + "2014": 0.446, + "2015": 0.453, + "2016": 0.457, + "2017": 0.461, + "2018": 0.465, + "2019": 0.467, + "2020": 0.459, + "2021": 0.459 + }, + { + "Country": "Mali", + "Continent": "Africa", + "ISO_Code": "MLI", + "Level": "Subnat", + "GDLCODE": "MLIr106", + "Region": "Tombouctou", + "1990": 0.38, + "1991": 0.394, + "1992": 0.386, + "1993": 0.387, + "1994": 0.387, + "1995": 0.383, + "1996": 0.385, + "1997": 0.384, + "1998": 0.388, + "1999": 0.389, + "2000": 0.381, + "2001": 0.388, + "2002": 0.386, + "2003": 0.398, + "2004": 0.395, + "2005": 0.4, + "2006": 0.4, + "2007": 0.398, + "2008": 0.399, + "2009": 0.396, + "2010": 0.397, + "2011": 0.396, + "2012": 0.387, + "2013": 0.385, + "2014": 0.392, + "2015": 0.397, + "2016": 0.4, + "2017": 0.402, + "2018": 0.405, + "2019": 0.407, + "2020": 0.4, + "2021": 0.4 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "National", + "GDLCODE": "MRTt", + "Region": "Total", + "1990": 0.571, + "1991": 0.572, + "1992": 0.571, + "1993": 0.575, + "1994": 0.566, + "1995": 0.576, + "1996": 0.587, + "1997": 0.576, + "1998": 0.577, + "1999": 0.579, + "2000": 0.568, + "2001": 0.56, + "2002": 0.564, + "2003": 0.57, + "2004": 0.572, + "2005": 0.58, + "2006": 0.595, + "2007": 0.588, + "2008": 0.585, + "2009": 0.583, + "2010": 0.579, + "2011": 0.578, + "2012": 0.58, + "2013": 0.582, + "2014": 0.582, + "2015": 0.587, + "2016": 0.586, + "2017": 0.592, + "2018": 0.596, + "2019": 0.599, + "2020": 0.592, + "2021": 0.593 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr107", + "Region": "Adrar", + "1990": 0.544, + "1991": 0.544, + "1992": 0.544, + "1993": 0.547, + "1994": 0.539, + "1995": 0.549, + "1996": 0.559, + "1997": 0.549, + "1998": 0.55, + "1999": 0.552, + "2000": 0.541, + "2001": 0.533, + "2002": 0.543, + "2003": 0.554, + "2004": 0.563, + "2005": 0.576, + "2006": 0.597, + "2007": 0.596, + "2008": 0.592, + "2009": 0.589, + "2010": 0.585, + "2011": 0.584, + "2012": 0.584, + "2013": 0.586, + "2014": 0.586, + "2015": 0.59, + "2016": 0.59, + "2017": 0.596, + "2018": 0.601, + "2019": 0.605, + "2020": 0.599, + "2021": 0.6 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr103", + "Region": "Assaba", + "1990": 0.512, + "1991": 0.513, + "1992": 0.512, + "1993": 0.516, + "1994": 0.507, + "1995": 0.517, + "1996": 0.527, + "1997": 0.518, + "1998": 0.518, + "1999": 0.52, + "2000": 0.51, + "2001": 0.501, + "2002": 0.504, + "2003": 0.507, + "2004": 0.508, + "2005": 0.513, + "2006": 0.525, + "2007": 0.517, + "2008": 0.521, + "2009": 0.526, + "2010": 0.529, + "2011": 0.536, + "2012": 0.533, + "2013": 0.53, + "2014": 0.527, + "2015": 0.528, + "2016": 0.527, + "2017": 0.532, + "2018": 0.535, + "2019": 0.538, + "2020": 0.531, + "2021": 0.532 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr105", + "Region": "Brakna", + "1990": 0.536, + "1991": 0.537, + "1992": 0.536, + "1993": 0.54, + "1994": 0.531, + "1995": 0.541, + "1996": 0.552, + "1997": 0.541, + "1998": 0.542, + "1999": 0.544, + "2000": 0.534, + "2001": 0.525, + "2002": 0.527, + "2003": 0.53, + "2004": 0.529, + "2005": 0.534, + "2006": 0.546, + "2007": 0.537, + "2008": 0.542, + "2009": 0.547, + "2010": 0.551, + "2011": 0.558, + "2012": 0.557, + "2013": 0.556, + "2014": 0.554, + "2015": 0.556, + "2016": 0.558, + "2017": 0.566, + "2018": 0.573, + "2019": 0.579, + "2020": 0.574, + "2021": 0.575 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr104", + "Region": "Gorgol", + "1990": 0.532, + "1991": 0.532, + "1992": 0.531, + "1993": 0.535, + "1994": 0.526, + "1995": 0.536, + "1996": 0.547, + "1997": 0.537, + "1998": 0.538, + "1999": 0.539, + "2000": 0.529, + "2001": 0.52, + "2002": 0.518, + "2003": 0.517, + "2004": 0.514, + "2005": 0.514, + "2006": 0.523, + "2007": 0.51, + "2008": 0.512, + "2009": 0.516, + "2010": 0.517, + "2011": 0.522, + "2012": 0.522, + "2013": 0.524, + "2014": 0.524, + "2015": 0.529, + "2016": 0.523, + "2017": 0.524, + "2018": 0.523, + "2019": 0.521, + "2020": 0.51, + "2021": 0.511 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr110", + "Region": "Guidimagha", + "1990": 0.53, + "1991": 0.531, + "1992": 0.53, + "1993": 0.534, + "1994": 0.525, + "1995": 0.535, + "1996": 0.545, + "1997": 0.535, + "1998": 0.536, + "1999": 0.538, + "2000": 0.527, + "2001": 0.519, + "2002": 0.516, + "2003": 0.515, + "2004": 0.511, + "2005": 0.511, + "2006": 0.519, + "2007": 0.506, + "2008": 0.508, + "2009": 0.511, + "2010": 0.512, + "2011": 0.517, + "2012": 0.515, + "2013": 0.515, + "2014": 0.513, + "2015": 0.515, + "2016": 0.51, + "2017": 0.512, + "2018": 0.512, + "2019": 0.511, + "2020": 0.501, + "2021": 0.502 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr101", + "Region": "Hodh Charghi", + "1990": 0.499, + "1991": 0.499, + "1992": 0.499, + "1993": 0.502, + "1994": 0.494, + "1995": 0.504, + "1996": 0.514, + "1997": 0.504, + "1998": 0.505, + "1999": 0.507, + "2000": 0.496, + "2001": 0.488, + "2002": 0.484, + "2003": 0.482, + "2004": 0.476, + "2005": 0.475, + "2006": 0.481, + "2007": 0.467, + "2008": 0.476, + "2009": 0.486, + "2010": 0.493, + "2011": 0.504, + "2012": 0.498, + "2013": 0.492, + "2014": 0.485, + "2015": 0.483, + "2016": 0.477, + "2017": 0.478, + "2018": 0.477, + "2019": 0.476, + "2020": 0.465, + "2021": 0.466 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr102", + "Region": "Hodh Gharbi", + "1990": 0.508, + "1991": 0.508, + "1992": 0.508, + "1993": 0.511, + "1994": 0.503, + "1995": 0.513, + "1996": 0.523, + "1997": 0.513, + "1998": 0.514, + "1999": 0.516, + "2000": 0.505, + "2001": 0.497, + "2002": 0.498, + "2003": 0.499, + "2004": 0.498, + "2005": 0.501, + "2006": 0.512, + "2007": 0.502, + "2008": 0.498, + "2009": 0.495, + "2010": 0.491, + "2011": 0.489, + "2012": 0.496, + "2013": 0.504, + "2014": 0.51, + "2015": 0.521, + "2016": 0.521, + "2017": 0.527, + "2018": 0.531, + "2019": 0.535, + "2020": 0.53, + "2021": 0.531 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr112", + "Region": "Inchiri", + "1990": 0.652, + "1991": 0.653, + "1992": 0.652, + "1993": 0.656, + "1994": 0.647, + "1995": 0.658, + "1996": 0.669, + "1997": 0.658, + "1998": 0.659, + "1999": 0.661, + "2000": 0.649, + "2001": 0.64, + "2002": 0.642, + "2003": 0.645, + "2004": 0.645, + "2005": 0.649, + "2006": 0.662, + "2007": 0.653, + "2008": 0.66, + "2009": 0.669, + "2010": 0.676, + "2011": 0.687, + "2012": 0.694, + "2013": 0.702, + "2014": 0.709, + "2015": 0.72, + "2016": 0.707, + "2017": 0.702, + "2018": 0.695, + "2019": 0.687, + "2020": 0.668, + "2021": 0.669 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr108", + "Region": "Nouadhibou", + "1990": 0.714, + "1991": 0.714, + "1992": 0.713, + "1993": 0.718, + "1994": 0.708, + "1995": 0.719, + "1996": 0.732, + "1997": 0.72, + "1998": 0.721, + "1999": 0.723, + "2000": 0.711, + "2001": 0.701, + "2002": 0.71, + "2003": 0.72, + "2004": 0.727, + "2005": 0.739, + "2006": 0.76, + "2007": 0.756, + "2008": 0.747, + "2009": 0.74, + "2010": 0.731, + "2011": 0.725, + "2012": 0.736, + "2013": 0.748, + "2014": 0.758, + "2015": 0.772, + "2016": 0.763, + "2017": 0.76, + "2018": 0.756, + "2019": 0.751, + "2020": 0.735, + "2021": 0.736 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr109", + "Region": "Tagant", + "1990": 0.501, + "1991": 0.501, + "1992": 0.501, + "1993": 0.504, + "1994": 0.496, + "1995": 0.506, + "1996": 0.516, + "1997": 0.506, + "1998": 0.507, + "1999": 0.509, + "2000": 0.498, + "2001": 0.49, + "2002": 0.502, + "2003": 0.515, + "2004": 0.525, + "2005": 0.54, + "2006": 0.562, + "2007": 0.563, + "2008": 0.559, + "2009": 0.556, + "2010": 0.552, + "2011": 0.551, + "2012": 0.556, + "2013": 0.562, + "2014": 0.566, + "2015": 0.575, + "2016": 0.565, + "2017": 0.562, + "2018": 0.557, + "2019": 0.551, + "2020": 0.536, + "2021": 0.537 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr111", + "Region": "Tiris-Zemmour", + "1990": 0.672, + "1991": 0.673, + "1992": 0.672, + "1993": 0.676, + "1994": 0.666, + "1995": 0.678, + "1996": 0.689, + "1997": 0.678, + "1998": 0.679, + "1999": 0.681, + "2000": 0.669, + "2001": 0.66, + "2002": 0.665, + "2003": 0.671, + "2004": 0.674, + "2005": 0.682, + "2006": 0.699, + "2007": 0.692, + "2008": 0.69, + "2009": 0.691, + "2010": 0.688, + "2011": 0.69, + "2012": 0.703, + "2013": 0.717, + "2014": 0.73, + "2015": 0.747, + "2016": 0.737, + "2017": 0.735, + "2018": 0.73, + "2019": 0.725, + "2020": 0.709, + "2021": 0.71 + }, + { + "Country": "Mauritania", + "Continent": "Africa", + "ISO_Code": "MRT", + "Level": "Subnat", + "GDLCODE": "MRTr106", + "Region": "Trarza incl Nouakchott", + "1990": 0.637, + "1991": 0.637, + "1992": 0.636, + "1993": 0.64, + "1994": 0.631, + "1995": 0.642, + "1996": 0.653, + "1997": 0.642, + "1998": 0.643, + "1999": 0.645, + "2000": 0.634, + "2001": 0.624, + "2002": 0.635, + "2003": 0.646, + "2004": 0.654, + "2005": 0.668, + "2006": 0.689, + "2007": 0.688, + "2008": 0.675, + "2009": 0.664, + "2010": 0.65, + "2011": 0.641, + "2012": 0.649, + "2013": 0.657, + "2014": 0.665, + "2015": 0.677, + "2016": 0.678, + "2017": 0.687, + "2018": 0.694, + "2019": 0.7, + "2020": 0.695, + "2021": 0.696 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "National", + "GDLCODE": "MUSt", + "Region": "Total", + "1990": 0.664, + "1991": 0.67, + "1992": 0.677, + "1993": 0.682, + "1994": 0.685, + "1995": 0.69, + "1996": 0.695, + "1997": 0.702, + "1998": 0.71, + "1999": 0.712, + "2000": 0.723, + "2001": 0.728, + "2002": 0.73, + "2003": 0.736, + "2004": 0.742, + "2005": 0.744, + "2006": 0.752, + "2007": 0.762, + "2008": 0.768, + "2009": 0.771, + "2010": 0.775, + "2011": 0.78, + "2012": 0.792, + "2013": 0.801, + "2014": 0.807, + "2015": 0.812, + "2016": 0.818, + "2017": 0.825, + "2018": 0.833, + "2019": 0.838, + "2020": 0.809, + "2021": 0.815 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr101", + "Region": "North (Port Louis, Pamplemousses, Riviere du Rempart, Flacq, Moka)", + "1990": 0.661, + "1991": 0.666, + "1992": 0.674, + "1993": 0.678, + "1994": 0.681, + "1995": 0.686, + "1996": 0.691, + "1997": 0.699, + "1998": 0.706, + "1999": 0.709, + "2000": 0.719, + "2001": 0.725, + "2002": 0.726, + "2003": 0.732, + "2004": 0.738, + "2005": 0.74, + "2006": 0.748, + "2007": 0.759, + "2008": 0.765, + "2009": 0.768, + "2010": 0.772, + "2011": 0.776, + "2012": 0.788, + "2013": 0.798, + "2014": 0.803, + "2015": 0.809, + "2016": 0.814, + "2017": 0.821, + "2018": 0.829, + "2019": 0.834, + "2020": 0.805, + "2021": 0.811 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr103", + "Region": "Rodrigues", + "1990": 0.611, + "1991": 0.617, + "1992": 0.624, + "1993": 0.628, + "1994": 0.631, + "1995": 0.636, + "1996": 0.641, + "1997": 0.648, + "1998": 0.655, + "1999": 0.658, + "2000": 0.668, + "2001": 0.673, + "2002": 0.674, + "2003": 0.68, + "2004": 0.686, + "2005": 0.688, + "2006": 0.696, + "2007": 0.706, + "2008": 0.712, + "2009": 0.714, + "2010": 0.718, + "2011": 0.723, + "2012": 0.734, + "2013": 0.743, + "2014": 0.748, + "2015": 0.754, + "2016": 0.759, + "2017": 0.766, + "2018": 0.773, + "2019": 0.778, + "2020": 0.751, + "2021": 0.756 + }, + { + "Country": "Mauritius", + "Continent": "Africa", + "ISO_Code": "MUS", + "Level": "Subnat", + "GDLCODE": "MUSr102", + "Region": "South (Grand Port, Savanne, Plaines Wilhems, Black River)", + "1990": 0.67, + "1991": 0.676, + "1992": 0.683, + "1993": 0.688, + "1994": 0.691, + "1995": 0.696, + "1996": 0.701, + "1997": 0.709, + "1998": 0.716, + "1999": 0.719, + "2000": 0.729, + "2001": 0.735, + "2002": 0.736, + "2003": 0.742, + "2004": 0.749, + "2005": 0.75, + "2006": 0.759, + "2007": 0.769, + "2008": 0.775, + "2009": 0.778, + "2010": 0.782, + "2011": 0.787, + "2012": 0.798, + "2013": 0.808, + "2014": 0.813, + "2015": 0.819, + "2016": 0.825, + "2017": 0.832, + "2018": 0.84, + "2019": 0.845, + "2020": 0.816, + "2021": 0.822 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "National", + "GDLCODE": "MEXt", + "Region": "Total", + "1990": 0.752, + "1991": 0.756, + "1992": 0.758, + "1993": 0.759, + "1994": 0.764, + "1995": 0.749, + "1996": 0.757, + "1997": 0.766, + "1998": 0.772, + "1999": 0.774, + "2000": 0.779, + "2001": 0.777, + "2002": 0.775, + "2003": 0.775, + "2004": 0.779, + "2005": 0.779, + "2006": 0.785, + "2007": 0.786, + "2008": 0.786, + "2009": 0.775, + "2010": 0.781, + "2011": 0.784, + "2012": 0.786, + "2013": 0.785, + "2014": 0.788, + "2015": 0.791, + "2016": 0.793, + "2017": 0.794, + "2018": 0.796, + "2019": 0.793, + "2020": 0.778, + "2021": 0.784 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr101", + "Region": "Aguascalientes", + "1990": 0.781, + "1991": 0.785, + "1992": 0.788, + "1993": 0.789, + "1994": 0.793, + "1995": 0.779, + "1996": 0.787, + "1997": 0.796, + "1998": 0.801, + "1999": 0.804, + "2000": 0.809, + "2001": 0.809, + "2002": 0.81, + "2003": 0.813, + "2004": 0.82, + "2005": 0.823, + "2006": 0.831, + "2007": 0.835, + "2008": 0.837, + "2009": 0.829, + "2010": 0.838, + "2011": 0.837, + "2012": 0.836, + "2013": 0.831, + "2014": 0.831, + "2015": 0.83, + "2016": 0.802, + "2017": 0.804, + "2018": 0.805, + "2019": 0.803, + "2020": 0.787, + "2021": 0.793 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr102", + "Region": "Baja California", + "1990": 0.779, + "1991": 0.784, + "1992": 0.786, + "1993": 0.787, + "1994": 0.792, + "1995": 0.777, + "1996": 0.785, + "1997": 0.794, + "1998": 0.8, + "1999": 0.802, + "2000": 0.808, + "2001": 0.808, + "2002": 0.809, + "2003": 0.811, + "2004": 0.818, + "2005": 0.821, + "2006": 0.829, + "2007": 0.833, + "2008": 0.835, + "2009": 0.827, + "2010": 0.836, + "2011": 0.834, + "2012": 0.832, + "2013": 0.825, + "2014": 0.824, + "2015": 0.822, + "2016": 0.794, + "2017": 0.796, + "2018": 0.797, + "2019": 0.795, + "2020": 0.779, + "2021": 0.785 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr103", + "Region": "Baja California Sur", + "1990": 0.768, + "1991": 0.773, + "1992": 0.775, + "1993": 0.776, + "1994": 0.781, + "1995": 0.766, + "1996": 0.774, + "1997": 0.783, + "1998": 0.789, + "1999": 0.791, + "2000": 0.796, + "2001": 0.794, + "2002": 0.792, + "2003": 0.793, + "2004": 0.797, + "2005": 0.798, + "2006": 0.804, + "2007": 0.805, + "2008": 0.805, + "2009": 0.794, + "2010": 0.801, + "2011": 0.804, + "2012": 0.808, + "2013": 0.807, + "2014": 0.81, + "2015": 0.814, + "2016": 0.787, + "2017": 0.788, + "2018": 0.789, + "2019": 0.787, + "2020": 0.772, + "2021": 0.777 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr104", + "Region": "Campeche", + "1990": 0.727, + "1991": 0.731, + "1992": 0.733, + "1993": 0.734, + "1994": 0.739, + "1995": 0.724, + "1996": 0.732, + "1997": 0.741, + "1998": 0.746, + "1999": 0.749, + "2000": 0.754, + "2001": 0.752, + "2002": 0.751, + "2003": 0.752, + "2004": 0.757, + "2005": 0.758, + "2006": 0.764, + "2007": 0.766, + "2008": 0.766, + "2009": 0.756, + "2010": 0.763, + "2011": 0.765, + "2012": 0.767, + "2013": 0.764, + "2014": 0.766, + "2015": 0.768, + "2016": 0.742, + "2017": 0.743, + "2018": 0.744, + "2019": 0.742, + "2020": 0.727, + "2021": 0.733 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr107", + "Region": "Chiapas", + "1990": 0.71, + "1991": 0.715, + "1992": 0.717, + "1993": 0.718, + "1994": 0.722, + "1995": 0.708, + "1996": 0.716, + "1997": 0.725, + "1998": 0.73, + "1999": 0.732, + "2000": 0.737, + "2001": 0.728, + "2002": 0.719, + "2003": 0.712, + "2004": 0.709, + "2005": 0.702, + "2006": 0.7, + "2007": 0.694, + "2008": 0.687, + "2009": 0.67, + "2010": 0.668, + "2011": 0.675, + "2012": 0.683, + "2013": 0.686, + "2014": 0.694, + "2015": 0.701, + "2016": 0.676, + "2017": 0.677, + "2018": 0.678, + "2019": 0.676, + "2020": 0.662, + "2021": 0.667 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr108", + "Region": "Chihuahua", + "1990": 0.772, + "1991": 0.776, + "1992": 0.779, + "1993": 0.78, + "1994": 0.784, + "1995": 0.77, + "1996": 0.778, + "1997": 0.787, + "1998": 0.792, + "1999": 0.795, + "2000": 0.8, + "2001": 0.8, + "2002": 0.801, + "2003": 0.804, + "2004": 0.812, + "2005": 0.815, + "2006": 0.823, + "2007": 0.827, + "2008": 0.83, + "2009": 0.822, + "2010": 0.831, + "2011": 0.831, + "2012": 0.83, + "2013": 0.825, + "2014": 0.825, + "2015": 0.824, + "2016": 0.797, + "2017": 0.798, + "2018": 0.8, + "2019": 0.797, + "2020": 0.782, + "2021": 0.788 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr105", + "Region": "Coahuila", + "1990": 0.774, + "1991": 0.778, + "1992": 0.781, + "1993": 0.782, + "1994": 0.786, + "1995": 0.772, + "1996": 0.78, + "1997": 0.789, + "1998": 0.794, + "1999": 0.797, + "2000": 0.802, + "2001": 0.802, + "2002": 0.802, + "2003": 0.804, + "2004": 0.81, + "2005": 0.813, + "2006": 0.82, + "2007": 0.823, + "2008": 0.825, + "2009": 0.816, + "2010": 0.824, + "2011": 0.826, + "2012": 0.827, + "2013": 0.825, + "2014": 0.826, + "2015": 0.828, + "2016": 0.8, + "2017": 0.802, + "2018": 0.803, + "2019": 0.801, + "2020": 0.785, + "2021": 0.791 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr106", + "Region": "Colima", + "1990": 0.753, + "1991": 0.757, + "1992": 0.76, + "1993": 0.761, + "1994": 0.765, + "1995": 0.751, + "1996": 0.759, + "1997": 0.768, + "1998": 0.773, + "1999": 0.776, + "2000": 0.781, + "2001": 0.782, + "2002": 0.783, + "2003": 0.787, + "2004": 0.794, + "2005": 0.798, + "2006": 0.807, + "2007": 0.811, + "2008": 0.814, + "2009": 0.807, + "2010": 0.816, + "2011": 0.816, + "2012": 0.816, + "2013": 0.811, + "2014": 0.811, + "2015": 0.811, + "2016": 0.784, + "2017": 0.785, + "2018": 0.787, + "2019": 0.785, + "2020": 0.769, + "2021": 0.775 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr109", + "Region": "Distrito Federal", + "1990": 0.771, + "1991": 0.775, + "1992": 0.778, + "1993": 0.779, + "1994": 0.783, + "1995": 0.769, + "1996": 0.777, + "1997": 0.786, + "1998": 0.791, + "1999": 0.794, + "2000": 0.799, + "2001": 0.8, + "2002": 0.801, + "2003": 0.804, + "2004": 0.812, + "2005": 0.815, + "2006": 0.824, + "2007": 0.828, + "2008": 0.831, + "2009": 0.823, + "2010": 0.833, + "2011": 0.834, + "2012": 0.836, + "2013": 0.833, + "2014": 0.835, + "2015": 0.836, + "2016": 0.809, + "2017": 0.81, + "2018": 0.812, + "2019": 0.809, + "2020": 0.794, + "2021": 0.799 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr110", + "Region": "Durango", + "1990": 0.759, + "1991": 0.763, + "1992": 0.765, + "1993": 0.766, + "1994": 0.771, + "1995": 0.756, + "1996": 0.764, + "1997": 0.773, + "1998": 0.779, + "1999": 0.781, + "2000": 0.786, + "2001": 0.785, + "2002": 0.785, + "2003": 0.787, + "2004": 0.792, + "2005": 0.794, + "2006": 0.801, + "2007": 0.803, + "2008": 0.805, + "2009": 0.795, + "2010": 0.803, + "2011": 0.803, + "2012": 0.804, + "2013": 0.8, + "2014": 0.801, + "2015": 0.801, + "2016": 0.774, + "2017": 0.776, + "2018": 0.777, + "2019": 0.775, + "2020": 0.759, + "2021": 0.765 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr111", + "Region": "Guanajuato", + "1990": 0.756, + "1991": 0.76, + "1992": 0.763, + "1993": 0.764, + "1994": 0.768, + "1995": 0.754, + "1996": 0.762, + "1997": 0.771, + "1998": 0.776, + "1999": 0.778, + "2000": 0.784, + "2001": 0.783, + "2002": 0.782, + "2003": 0.784, + "2004": 0.789, + "2005": 0.791, + "2006": 0.797, + "2007": 0.8, + "2008": 0.801, + "2009": 0.791, + "2010": 0.799, + "2011": 0.8, + "2012": 0.801, + "2013": 0.798, + "2014": 0.8, + "2015": 0.801, + "2016": 0.774, + "2017": 0.775, + "2018": 0.777, + "2019": 0.774, + "2020": 0.759, + "2021": 0.765 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr112", + "Region": "Guerrero", + "1990": 0.697, + "1991": 0.701, + "1992": 0.704, + "1993": 0.704, + "1994": 0.709, + "1995": 0.695, + "1996": 0.703, + "1997": 0.711, + "1998": 0.716, + "1999": 0.719, + "2000": 0.724, + "2001": 0.717, + "2002": 0.71, + "2003": 0.705, + "2004": 0.704, + "2005": 0.7, + "2006": 0.7, + "2007": 0.696, + "2008": 0.691, + "2009": 0.677, + "2010": 0.678, + "2011": 0.687, + "2012": 0.696, + "2013": 0.7, + "2014": 0.71, + "2015": 0.719, + "2016": 0.693, + "2017": 0.695, + "2018": 0.696, + "2019": 0.694, + "2020": 0.679, + "2021": 0.685 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr113", + "Region": "Hidalgo", + "1990": 0.739, + "1991": 0.744, + "1992": 0.746, + "1993": 0.747, + "1994": 0.751, + "1995": 0.737, + "1996": 0.745, + "1997": 0.754, + "1998": 0.759, + "1999": 0.762, + "2000": 0.767, + "2001": 0.761, + "2002": 0.756, + "2003": 0.754, + "2004": 0.755, + "2005": 0.752, + "2006": 0.754, + "2007": 0.752, + "2008": 0.749, + "2009": 0.736, + "2010": 0.739, + "2011": 0.745, + "2012": 0.751, + "2013": 0.752, + "2014": 0.759, + "2015": 0.765, + "2016": 0.738, + "2017": 0.74, + "2018": 0.741, + "2019": 0.739, + "2020": 0.724, + "2021": 0.729 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr114", + "Region": "Jalisco", + "1990": 0.774, + "1991": 0.779, + "1992": 0.781, + "1993": 0.782, + "1994": 0.787, + "1995": 0.772, + "1996": 0.78, + "1997": 0.789, + "1998": 0.795, + "1999": 0.797, + "2000": 0.802, + "2001": 0.803, + "2002": 0.804, + "2003": 0.807, + "2004": 0.814, + "2005": 0.817, + "2006": 0.826, + "2007": 0.83, + "2008": 0.832, + "2009": 0.824, + "2010": 0.833, + "2011": 0.834, + "2012": 0.835, + "2013": 0.832, + "2014": 0.833, + "2015": 0.834, + "2016": 0.806, + "2017": 0.807, + "2018": 0.809, + "2019": 0.806, + "2020": 0.791, + "2021": 0.797 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr115", + "Region": "Mexico", + "1990": 0.757, + "1991": 0.761, + "1992": 0.764, + "1993": 0.765, + "1994": 0.769, + "1995": 0.755, + "1996": 0.763, + "1997": 0.772, + "1998": 0.777, + "1999": 0.78, + "2000": 0.785, + "2001": 0.782, + "2002": 0.779, + "2003": 0.779, + "2004": 0.782, + "2005": 0.782, + "2006": 0.786, + "2007": 0.787, + "2008": 0.786, + "2009": 0.774, + "2010": 0.78, + "2011": 0.784, + "2012": 0.788, + "2013": 0.788, + "2014": 0.792, + "2015": 0.796, + "2016": 0.769, + "2017": 0.77, + "2018": 0.772, + "2019": 0.77, + "2020": 0.754, + "2021": 0.76 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr116", + "Region": "Michoacan de Ocampo", + "1990": 0.745, + "1991": 0.749, + "1992": 0.752, + "1993": 0.753, + "1994": 0.757, + "1995": 0.743, + "1996": 0.751, + "1997": 0.76, + "1998": 0.765, + "1999": 0.767, + "2000": 0.772, + "2001": 0.769, + "2002": 0.767, + "2003": 0.766, + "2004": 0.77, + "2005": 0.769, + "2006": 0.774, + "2007": 0.774, + "2008": 0.773, + "2009": 0.762, + "2010": 0.767, + "2011": 0.771, + "2012": 0.776, + "2013": 0.776, + "2014": 0.78, + "2015": 0.784, + "2016": 0.758, + "2017": 0.759, + "2018": 0.76, + "2019": 0.758, + "2020": 0.743, + "2021": 0.749 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr117", + "Region": "Morelos", + "1990": 0.742, + "1991": 0.746, + "1992": 0.749, + "1993": 0.749, + "1994": 0.754, + "1995": 0.739, + "1996": 0.747, + "1997": 0.756, + "1998": 0.762, + "1999": 0.764, + "2000": 0.769, + "2001": 0.767, + "2002": 0.765, + "2003": 0.765, + "2004": 0.769, + "2005": 0.769, + "2006": 0.774, + "2007": 0.775, + "2008": 0.775, + "2009": 0.764, + "2010": 0.77, + "2011": 0.774, + "2012": 0.778, + "2013": 0.777, + "2014": 0.782, + "2015": 0.786, + "2016": 0.759, + "2017": 0.76, + "2018": 0.762, + "2019": 0.759, + "2020": 0.744, + "2021": 0.75 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr118", + "Region": "Nayarit", + "1990": 0.742, + "1991": 0.746, + "1992": 0.749, + "1993": 0.75, + "1994": 0.754, + "1995": 0.74, + "1996": 0.748, + "1997": 0.757, + "1998": 0.762, + "1999": 0.764, + "2000": 0.77, + "2001": 0.768, + "2002": 0.767, + "2003": 0.767, + "2004": 0.772, + "2005": 0.773, + "2006": 0.779, + "2007": 0.781, + "2008": 0.781, + "2009": 0.771, + "2010": 0.778, + "2011": 0.782, + "2012": 0.787, + "2013": 0.787, + "2014": 0.792, + "2015": 0.796, + "2016": 0.769, + "2017": 0.771, + "2018": 0.772, + "2019": 0.77, + "2020": 0.754, + "2021": 0.76 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr119", + "Region": "Nuevo Leon", + "1990": 0.777, + "1991": 0.781, + "1992": 0.784, + "1993": 0.784, + "1994": 0.789, + "1995": 0.774, + "1996": 0.783, + "1997": 0.792, + "1998": 0.797, + "1999": 0.8, + "2000": 0.805, + "2001": 0.806, + "2002": 0.808, + "2003": 0.812, + "2004": 0.82, + "2005": 0.824, + "2006": 0.833, + "2007": 0.838, + "2008": 0.841, + "2009": 0.834, + "2010": 0.844, + "2011": 0.843, + "2012": 0.843, + "2013": 0.838, + "2014": 0.838, + "2015": 0.838, + "2016": 0.81, + "2017": 0.812, + "2018": 0.813, + "2019": 0.811, + "2020": 0.795, + "2021": 0.801 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr120", + "Region": "Oaxaca", + "1990": 0.704, + "1991": 0.708, + "1992": 0.711, + "1993": 0.711, + "1994": 0.716, + "1995": 0.702, + "1996": 0.71, + "1997": 0.718, + "1998": 0.723, + "1999": 0.726, + "2000": 0.731, + "2001": 0.722, + "2002": 0.713, + "2003": 0.706, + "2004": 0.703, + "2005": 0.697, + "2006": 0.695, + "2007": 0.689, + "2008": 0.682, + "2009": 0.665, + "2010": 0.664, + "2011": 0.672, + "2012": 0.68, + "2013": 0.684, + "2014": 0.693, + "2015": 0.701, + "2016": 0.676, + "2017": 0.677, + "2018": 0.679, + "2019": 0.676, + "2020": 0.662, + "2021": 0.667 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr121", + "Region": "Puebla", + "1990": 0.742, + "1991": 0.746, + "1992": 0.749, + "1993": 0.75, + "1994": 0.754, + "1995": 0.74, + "1996": 0.748, + "1997": 0.757, + "1998": 0.762, + "1999": 0.765, + "2000": 0.77, + "2001": 0.763, + "2002": 0.756, + "2003": 0.751, + "2004": 0.75, + "2005": 0.746, + "2006": 0.746, + "2007": 0.742, + "2008": 0.738, + "2009": 0.722, + "2010": 0.724, + "2011": 0.73, + "2012": 0.737, + "2013": 0.74, + "2014": 0.747, + "2015": 0.754, + "2016": 0.728, + "2017": 0.729, + "2018": 0.73, + "2019": 0.728, + "2020": 0.713, + "2021": 0.719 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr122", + "Region": "Queretaro", + "1990": 0.756, + "1991": 0.76, + "1992": 0.763, + "1993": 0.764, + "1994": 0.768, + "1995": 0.754, + "1996": 0.762, + "1997": 0.771, + "1998": 0.776, + "1999": 0.778, + "2000": 0.784, + "2001": 0.783, + "2002": 0.782, + "2003": 0.783, + "2004": 0.788, + "2005": 0.79, + "2006": 0.797, + "2007": 0.799, + "2008": 0.8, + "2009": 0.79, + "2010": 0.797, + "2011": 0.8, + "2012": 0.803, + "2013": 0.801, + "2014": 0.804, + "2015": 0.806, + "2016": 0.779, + "2017": 0.781, + "2018": 0.782, + "2019": 0.78, + "2020": 0.764, + "2021": 0.77 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr123", + "Region": "Quintana Roo", + "1990": 0.73, + "1991": 0.734, + "1992": 0.737, + "1993": 0.738, + "1994": 0.742, + "1995": 0.728, + "1996": 0.736, + "1997": 0.745, + "1998": 0.75, + "1999": 0.752, + "2000": 0.757, + "2001": 0.759, + "2002": 0.762, + "2003": 0.766, + "2004": 0.775, + "2005": 0.779, + "2006": 0.789, + "2007": 0.794, + "2008": 0.799, + "2009": 0.792, + "2010": 0.802, + "2011": 0.801, + "2012": 0.8, + "2013": 0.794, + "2014": 0.793, + "2015": 0.792, + "2016": 0.765, + "2017": 0.766, + "2018": 0.767, + "2019": 0.765, + "2020": 0.75, + "2021": 0.756 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr124", + "Region": "San Luis Potosi", + "1990": 0.743, + "1991": 0.747, + "1992": 0.749, + "1993": 0.75, + "1994": 0.755, + "1995": 0.74, + "1996": 0.748, + "1997": 0.757, + "1998": 0.762, + "1999": 0.765, + "2000": 0.77, + "2001": 0.766, + "2002": 0.763, + "2003": 0.762, + "2004": 0.765, + "2005": 0.764, + "2006": 0.768, + "2007": 0.767, + "2008": 0.766, + "2009": 0.754, + "2010": 0.759, + "2011": 0.762, + "2012": 0.766, + "2013": 0.765, + "2014": 0.769, + "2015": 0.772, + "2016": 0.746, + "2017": 0.747, + "2018": 0.748, + "2019": 0.746, + "2020": 0.731, + "2021": 0.737 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr125", + "Region": "Sinaloa", + "1990": 0.755, + "1991": 0.759, + "1992": 0.762, + "1993": 0.763, + "1994": 0.767, + "1995": 0.753, + "1996": 0.761, + "1997": 0.77, + "1998": 0.775, + "1999": 0.778, + "2000": 0.783, + "2001": 0.784, + "2002": 0.785, + "2003": 0.788, + "2004": 0.795, + "2005": 0.799, + "2006": 0.807, + "2007": 0.811, + "2008": 0.814, + "2009": 0.806, + "2010": 0.816, + "2011": 0.815, + "2012": 0.814, + "2013": 0.809, + "2014": 0.808, + "2015": 0.808, + "2016": 0.781, + "2017": 0.782, + "2018": 0.783, + "2019": 0.781, + "2020": 0.766, + "2021": 0.771 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr126", + "Region": "Sonora", + "1990": 0.767, + "1991": 0.771, + "1992": 0.774, + "1993": 0.775, + "1994": 0.779, + "1995": 0.765, + "1996": 0.773, + "1997": 0.782, + "1998": 0.787, + "1999": 0.79, + "2000": 0.795, + "2001": 0.795, + "2002": 0.796, + "2003": 0.799, + "2004": 0.806, + "2005": 0.809, + "2006": 0.817, + "2007": 0.821, + "2008": 0.824, + "2009": 0.815, + "2010": 0.824, + "2011": 0.823, + "2012": 0.822, + "2013": 0.817, + "2014": 0.816, + "2015": 0.815, + "2016": 0.788, + "2017": 0.79, + "2018": 0.791, + "2019": 0.789, + "2020": 0.773, + "2021": 0.779 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr127", + "Region": "Tabasco", + "1990": 0.73, + "1991": 0.735, + "1992": 0.737, + "1993": 0.738, + "1994": 0.742, + "1995": 0.728, + "1996": 0.736, + "1997": 0.745, + "1998": 0.75, + "1999": 0.753, + "2000": 0.758, + "2001": 0.755, + "2002": 0.753, + "2003": 0.753, + "2004": 0.757, + "2005": 0.757, + "2006": 0.763, + "2007": 0.763, + "2008": 0.763, + "2009": 0.752, + "2010": 0.758, + "2011": 0.76, + "2012": 0.761, + "2013": 0.759, + "2014": 0.76, + "2015": 0.762, + "2016": 0.736, + "2017": 0.737, + "2018": 0.738, + "2019": 0.736, + "2020": 0.721, + "2021": 0.727 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr128", + "Region": "Tamaulipas", + "1990": 0.768, + "1991": 0.772, + "1992": 0.775, + "1993": 0.775, + "1994": 0.78, + "1995": 0.765, + "1996": 0.774, + "1997": 0.783, + "1998": 0.788, + "1999": 0.79, + "2000": 0.796, + "2001": 0.795, + "2002": 0.795, + "2003": 0.797, + "2004": 0.803, + "2005": 0.806, + "2006": 0.813, + "2007": 0.816, + "2008": 0.818, + "2009": 0.809, + "2010": 0.817, + "2011": 0.816, + "2012": 0.814, + "2013": 0.809, + "2014": 0.808, + "2015": 0.806, + "2016": 0.779, + "2017": 0.781, + "2018": 0.782, + "2019": 0.78, + "2020": 0.765, + "2021": 0.77 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr129", + "Region": "Tlaxcala", + "1990": 0.762, + "1991": 0.766, + "1992": 0.769, + "1993": 0.77, + "1994": 0.774, + "1995": 0.76, + "1996": 0.768, + "1997": 0.777, + "1998": 0.782, + "1999": 0.785, + "2000": 0.79, + "2001": 0.783, + "2002": 0.778, + "2003": 0.774, + "2004": 0.774, + "2005": 0.77, + "2006": 0.772, + "2007": 0.769, + "2008": 0.765, + "2009": 0.75, + "2010": 0.752, + "2011": 0.757, + "2012": 0.762, + "2013": 0.763, + "2014": 0.768, + "2015": 0.773, + "2016": 0.747, + "2017": 0.748, + "2018": 0.75, + "2019": 0.747, + "2020": 0.732, + "2021": 0.738 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr130", + "Region": "Veracruz", + "1990": 0.727, + "1991": 0.731, + "1992": 0.734, + "1993": 0.734, + "1994": 0.739, + "1995": 0.725, + "1996": 0.733, + "1997": 0.741, + "1998": 0.747, + "1999": 0.749, + "2000": 0.754, + "2001": 0.749, + "2002": 0.745, + "2003": 0.742, + "2004": 0.744, + "2005": 0.741, + "2006": 0.744, + "2007": 0.742, + "2008": 0.74, + "2009": 0.727, + "2010": 0.73, + "2011": 0.734, + "2012": 0.739, + "2013": 0.739, + "2014": 0.744, + "2015": 0.749, + "2016": 0.722, + "2017": 0.724, + "2018": 0.725, + "2019": 0.723, + "2020": 0.708, + "2021": 0.714 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr131", + "Region": "Yucatan", + "1990": 0.753, + "1991": 0.757, + "1992": 0.76, + "1993": 0.761, + "1994": 0.765, + "1995": 0.751, + "1996": 0.759, + "1997": 0.768, + "1998": 0.773, + "1999": 0.776, + "2000": 0.781, + "2001": 0.779, + "2002": 0.777, + "2003": 0.778, + "2004": 0.782, + "2005": 0.783, + "2006": 0.789, + "2007": 0.79, + "2008": 0.791, + "2009": 0.78, + "2010": 0.787, + "2011": 0.788, + "2012": 0.789, + "2013": 0.785, + "2014": 0.786, + "2015": 0.788, + "2016": 0.761, + "2017": 0.762, + "2018": 0.763, + "2019": 0.761, + "2020": 0.746, + "2021": 0.752 + }, + { + "Country": "Mexico", + "Continent": "America", + "ISO_Code": "MEX", + "Level": "Subnat", + "GDLCODE": "MEXr132", + "Region": "Zacatecas", + "1990": 0.757, + "1991": 0.761, + "1992": 0.764, + "1993": 0.764, + "1994": 0.769, + "1995": 0.755, + "1996": 0.763, + "1997": 0.772, + "1998": 0.777, + "1999": 0.779, + "2000": 0.785, + "2001": 0.782, + "2002": 0.781, + "2003": 0.781, + "2004": 0.785, + "2005": 0.786, + "2006": 0.791, + "2007": 0.792, + "2008": 0.793, + "2009": 0.782, + "2010": 0.788, + "2011": 0.793, + "2012": 0.797, + "2013": 0.797, + "2014": 0.802, + "2015": 0.807, + "2016": 0.78, + "2017": 0.781, + "2018": 0.782, + "2019": 0.78, + "2020": 0.765, + "2021": 0.77 + }, + { + "Country": "Micronesia (Federated States of)", + "Continent": "Asia/Pacific", + "ISO_Code": "FSM", + "Level": "National", + "GDLCODE": "FSMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.553, + "2001": 0.557, + "2002": 0.558, + "2003": 0.561, + "2004": 0.556, + "2005": 0.56, + "2006": 0.561, + "2007": 0.56, + "2008": 0.557, + "2009": 0.56, + "2010": 0.563, + "2011": 0.567, + "2012": 0.563, + "2013": 0.555, + "2014": 0.549, + "2015": 0.554, + "2016": 0.554, + "2017": 0.556, + "2018": 0.555, + "2019": 0.555, + "2020": 0.551, + "2021": 0.545 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "National", + "GDLCODE": "MDAt", + "Region": "Total", + "1990": 0.749, + "1991": 0.72, + "1992": 0.666, + "1993": 0.665, + "1994": 0.61, + "1995": 0.609, + "1996": 0.606, + "1997": 0.609, + "1998": 0.597, + "1999": 0.593, + "2000": 0.6, + "2001": 0.613, + "2002": 0.628, + "2003": 0.64, + "2004": 0.654, + "2005": 0.665, + "2006": 0.67, + "2007": 0.672, + "2008": 0.683, + "2009": 0.669, + "2010": 0.682, + "2011": 0.69, + "2012": 0.693, + "2013": 0.706, + "2014": 0.713, + "2015": 0.709, + "2016": 0.717, + "2017": 0.727, + "2018": 0.735, + "2019": 0.743, + "2020": 0.733, + "2021": 0.756 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr102", + "Region": "Center", + "1990": 0.709, + "1991": 0.68, + "1992": 0.628, + "1993": 0.627, + "1994": 0.574, + "1995": 0.573, + "1996": 0.57, + "1997": 0.573, + "1998": 0.561, + "1999": 0.557, + "2000": 0.564, + "2001": 0.576, + "2002": 0.591, + "2003": 0.603, + "2004": 0.616, + "2005": 0.627, + "2006": 0.634, + "2007": 0.638, + "2008": 0.652, + "2009": 0.64, + "2010": 0.655, + "2011": 0.665, + "2012": 0.67, + "2013": 0.683, + "2014": 0.689, + "2015": 0.686, + "2016": 0.694, + "2017": 0.703, + "2018": 0.711, + "2019": 0.719, + "2020": 0.709, + "2021": 0.731 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr104", + "Region": "Chisinau", + "1990": 0.853, + "1991": 0.822, + "1992": 0.765, + "1993": 0.764, + "1994": 0.704, + "1995": 0.704, + "1996": 0.7, + "1997": 0.703, + "1998": 0.69, + "1999": 0.687, + "2000": 0.693, + "2001": 0.707, + "2002": 0.723, + "2003": 0.737, + "2004": 0.751, + "2005": 0.763, + "2006": 0.766, + "2007": 0.765, + "2008": 0.774, + "2009": 0.756, + "2010": 0.767, + "2011": 0.773, + "2012": 0.773, + "2013": 0.787, + "2014": 0.794, + "2015": 0.79, + "2016": 0.799, + "2017": 0.809, + "2018": 0.817, + "2019": 0.826, + "2020": 0.815, + "2021": 0.839 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr101", + "Region": "North", + "1990": 0.72, + "1991": 0.691, + "1992": 0.639, + "1993": 0.638, + "1994": 0.584, + "1995": 0.583, + "1996": 0.58, + "1997": 0.583, + "1998": 0.571, + "1999": 0.568, + "2000": 0.574, + "2001": 0.587, + "2002": 0.601, + "2003": 0.613, + "2004": 0.627, + "2005": 0.637, + "2006": 0.643, + "2007": 0.645, + "2008": 0.657, + "2009": 0.644, + "2010": 0.657, + "2011": 0.666, + "2012": 0.669, + "2013": 0.682, + "2014": 0.688, + "2015": 0.685, + "2016": 0.693, + "2017": 0.702, + "2018": 0.71, + "2019": 0.718, + "2020": 0.708, + "2021": 0.73 + }, + { + "Country": "Moldova", + "Continent": "Europe", + "ISO_Code": "MDA", + "Level": "Subnat", + "GDLCODE": "MDAr103", + "Region": "South", + "1990": 0.733, + "1991": 0.704, + "1992": 0.651, + "1993": 0.65, + "1994": 0.595, + "1995": 0.595, + "1996": 0.592, + "1997": 0.594, + "1998": 0.582, + "1999": 0.579, + "2000": 0.585, + "2001": 0.598, + "2002": 0.613, + "2003": 0.625, + "2004": 0.639, + "2005": 0.649, + "2006": 0.656, + "2007": 0.66, + "2008": 0.673, + "2009": 0.661, + "2010": 0.676, + "2011": 0.686, + "2012": 0.69, + "2013": 0.703, + "2014": 0.71, + "2015": 0.706, + "2016": 0.714, + "2017": 0.724, + "2018": 0.732, + "2019": 0.74, + "2020": 0.73, + "2021": 0.752 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "National", + "GDLCODE": "MNGt", + "Region": "Total", + "1990": 0.575, + "1991": 0.569, + "1992": 0.555, + "1993": 0.544, + "1994": 0.55, + "1995": 0.563, + "1996": 0.565, + "1997": 0.569, + "1998": 0.574, + "1999": 0.577, + "2000": 0.577, + "2001": 0.579, + "2002": 0.586, + "2003": 0.593, + "2004": 0.612, + "2005": 0.616, + "2006": 0.627, + "2007": 0.639, + "2008": 0.648, + "2009": 0.642, + "2010": 0.641, + "2011": 0.662, + "2012": 0.677, + "2013": 0.694, + "2014": 0.698, + "2015": 0.699, + "2016": 0.698, + "2017": 0.692, + "2018": 0.709, + "2019": 0.711, + "2020": 0.705, + "2021": 0.704 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr103", + "Region": "Central (Dornogovi, Dundgovi, Umnugovi, Selenge, Tuv, Darkhan-Uul, Govisumber)", + "1990": 0.568, + "1991": 0.562, + "1992": 0.549, + "1993": 0.537, + "1994": 0.544, + "1995": 0.556, + "1996": 0.558, + "1997": 0.562, + "1998": 0.568, + "1999": 0.57, + "2000": 0.571, + "2001": 0.572, + "2002": 0.579, + "2003": 0.587, + "2004": 0.605, + "2005": 0.609, + "2006": 0.622, + "2007": 0.634, + "2008": 0.644, + "2009": 0.639, + "2010": 0.64, + "2011": 0.66, + "2012": 0.674, + "2013": 0.691, + "2014": 0.695, + "2015": 0.695, + "2016": 0.693, + "2017": 0.686, + "2018": 0.703, + "2019": 0.705, + "2020": 0.698, + "2021": 0.698 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr104", + "Region": "Eastern (Dornod, Sukhbaatar, Khentii)", + "1990": 0.55, + "1991": 0.544, + "1992": 0.53, + "1993": 0.519, + "1994": 0.526, + "1995": 0.538, + "1996": 0.539, + "1997": 0.544, + "1998": 0.549, + "1999": 0.552, + "2000": 0.552, + "2001": 0.554, + "2002": 0.56, + "2003": 0.568, + "2004": 0.586, + "2005": 0.59, + "2006": 0.598, + "2007": 0.606, + "2008": 0.613, + "2009": 0.604, + "2010": 0.601, + "2011": 0.621, + "2012": 0.636, + "2013": 0.653, + "2014": 0.658, + "2015": 0.659, + "2016": 0.658, + "2017": 0.653, + "2018": 0.67, + "2019": 0.672, + "2020": 0.665, + "2021": 0.665 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr102", + "Region": "Khangai (Arkhangai, Bayankhongor, Bulgan, Uvurkhangai, Khuvsgul, Orkhon)", + "1990": 0.513, + "1991": 0.507, + "1992": 0.494, + "1993": 0.483, + "1994": 0.49, + "1995": 0.501, + "1996": 0.503, + "1997": 0.507, + "1998": 0.513, + "1999": 0.515, + "2000": 0.515, + "2001": 0.517, + "2002": 0.523, + "2003": 0.531, + "2004": 0.548, + "2005": 0.552, + "2006": 0.563, + "2007": 0.573, + "2008": 0.582, + "2009": 0.576, + "2010": 0.575, + "2011": 0.597, + "2012": 0.614, + "2013": 0.633, + "2014": 0.639, + "2015": 0.642, + "2016": 0.644, + "2017": 0.64, + "2018": 0.659, + "2019": 0.661, + "2020": 0.655, + "2021": 0.654 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr105", + "Region": "Ulaanbaatar", + "1990": 0.658, + "1991": 0.651, + "1992": 0.637, + "1993": 0.624, + "1994": 0.631, + "1995": 0.644, + "1996": 0.646, + "1997": 0.651, + "1998": 0.657, + "1999": 0.66, + "2000": 0.66, + "2001": 0.662, + "2002": 0.669, + "2003": 0.677, + "2004": 0.697, + "2005": 0.701, + "2006": 0.711, + "2007": 0.72, + "2008": 0.728, + "2009": 0.719, + "2010": 0.715, + "2011": 0.734, + "2012": 0.746, + "2013": 0.76, + "2014": 0.761, + "2015": 0.758, + "2016": 0.754, + "2017": 0.744, + "2018": 0.758, + "2019": 0.76, + "2020": 0.753, + "2021": 0.753 + }, + { + "Country": "Mongolia", + "Continent": "Asia/Pacific", + "ISO_Code": "MNG", + "Level": "Subnat", + "GDLCODE": "MNGr101", + "Region": "Western (Bayan-Ulgii, Govi-Altai, Zavkhan, Uvs, Khovd)", + "1990": 0.506, + "1991": 0.501, + "1992": 0.488, + "1993": 0.476, + "1994": 0.483, + "1995": 0.495, + "1996": 0.496, + "1997": 0.501, + "1998": 0.506, + "1999": 0.508, + "2000": 0.508, + "2001": 0.51, + "2002": 0.517, + "2003": 0.524, + "2004": 0.541, + "2005": 0.545, + "2006": 0.555, + "2007": 0.565, + "2008": 0.573, + "2009": 0.566, + "2010": 0.565, + "2011": 0.584, + "2012": 0.598, + "2013": 0.614, + "2014": 0.618, + "2015": 0.618, + "2016": 0.617, + "2017": 0.61, + "2018": 0.626, + "2019": 0.628, + "2020": 0.622, + "2021": 0.622 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "National", + "GDLCODE": "MNEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.761, + "2007": 0.771, + "2008": 0.781, + "2009": 0.77, + "2010": 0.772, + "2011": 0.779, + "2012": 0.776, + "2013": 0.782, + "2014": 0.784, + "2015": 0.79, + "2016": 0.792, + "2017": 0.801, + "2018": 0.807, + "2019": 0.813, + "2020": 0.789, + "2021": 0.807 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr102", + "Region": "Centre", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.769, + "2007": 0.778, + "2008": 0.789, + "2009": 0.777, + "2010": 0.779, + "2011": 0.786, + "2012": 0.782, + "2013": 0.787, + "2014": 0.789, + "2015": 0.795, + "2016": 0.797, + "2017": 0.805, + "2018": 0.811, + "2019": 0.817, + "2020": 0.793, + "2021": 0.811 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr101", + "Region": "North", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.778, + "2007": 0.782, + "2008": 0.787, + "2009": 0.771, + "2010": 0.768, + "2011": 0.769, + "2012": 0.761, + "2013": 0.761, + "2014": 0.768, + "2015": 0.779, + "2016": 0.787, + "2017": 0.801, + "2018": 0.812, + "2019": 0.818, + "2020": 0.794, + "2021": 0.811 + }, + { + "Country": "Monte Negro", + "Continent": "Europe", + "ISO_Code": "MNE", + "Level": "Subnat", + "GDLCODE": "MNEr103", + "Region": "South", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.735, + "2007": 0.75, + "2008": 0.766, + "2009": 0.76, + "2010": 0.768, + "2011": 0.781, + "2012": 0.783, + "2013": 0.794, + "2014": 0.791, + "2015": 0.792, + "2016": 0.789, + "2017": 0.793, + "2018": 0.794, + "2019": 0.8, + "2020": 0.776, + "2021": 0.793 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "National", + "GDLCODE": "MARt", + "Region": "Total", + "1990": 0.546, + "1991": 0.553, + "1992": 0.548, + "1993": 0.543, + "1994": 0.557, + "1995": 0.545, + "1996": 0.562, + "1997": 0.557, + "1998": 0.567, + "1999": 0.567, + "2000": 0.568, + "2001": 0.577, + "2002": 0.58, + "2003": 0.587, + "2004": 0.593, + "2005": 0.597, + "2006": 0.606, + "2007": 0.61, + "2008": 0.617, + "2009": 0.62, + "2010": 0.623, + "2011": 0.629, + "2012": 0.63, + "2013": 0.636, + "2014": 0.636, + "2015": 0.642, + "2016": 0.641, + "2017": 0.645, + "2018": 0.648, + "2019": 0.65, + "2020": 0.639, + "2021": 0.648 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr103", + "Region": "Centre", + "1990": 0.563, + "1991": 0.57, + "1992": 0.565, + "1993": 0.561, + "1994": 0.577, + "1995": 0.566, + "1996": 0.585, + "1997": 0.581, + "1998": 0.592, + "1999": 0.593, + "2000": 0.596, + "2001": 0.606, + "2002": 0.611, + "2003": 0.619, + "2004": 0.623, + "2005": 0.625, + "2006": 0.632, + "2007": 0.634, + "2008": 0.639, + "2009": 0.639, + "2010": 0.641, + "2011": 0.644, + "2012": 0.644, + "2013": 0.647, + "2014": 0.646, + "2015": 0.651, + "2016": 0.65, + "2017": 0.655, + "2018": 0.658, + "2019": 0.66, + "2020": 0.649, + "2021": 0.658 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr102", + "Region": "Centre north", + "1990": 0.503, + "1991": 0.511, + "1992": 0.505, + "1993": 0.503, + "1994": 0.518, + "1995": 0.508, + "1996": 0.526, + "1997": 0.524, + "1998": 0.535, + "1999": 0.537, + "2000": 0.539, + "2001": 0.55, + "2002": 0.555, + "2003": 0.564, + "2004": 0.571, + "2005": 0.577, + "2006": 0.587, + "2007": 0.592, + "2008": 0.601, + "2009": 0.605, + "2010": 0.61, + "2011": 0.617, + "2012": 0.62, + "2013": 0.627, + "2014": 0.629, + "2015": 0.634, + "2016": 0.634, + "2017": 0.638, + "2018": 0.641, + "2019": 0.642, + "2020": 0.632, + "2021": 0.641 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr105", + "Region": "Centre south", + "1990": 0.561, + "1991": 0.568, + "1992": 0.563, + "1993": 0.556, + "1994": 0.567, + "1995": 0.554, + "1996": 0.568, + "1997": 0.561, + "1998": 0.569, + "1999": 0.566, + "2000": 0.565, + "2001": 0.572, + "2002": 0.573, + "2003": 0.578, + "2004": 0.584, + "2005": 0.588, + "2006": 0.597, + "2007": 0.601, + "2008": 0.608, + "2009": 0.611, + "2010": 0.615, + "2011": 0.621, + "2012": 0.623, + "2013": 0.629, + "2014": 0.629, + "2015": 0.634, + "2016": 0.634, + "2017": 0.638, + "2018": 0.641, + "2019": 0.643, + "2020": 0.632, + "2021": 0.641 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr104", + "Region": "Eastern", + "1990": 0.596, + "1991": 0.603, + "1992": 0.598, + "1993": 0.59, + "1994": 0.602, + "1995": 0.587, + "1996": 0.602, + "1997": 0.595, + "1998": 0.602, + "1999": 0.599, + "2000": 0.598, + "2001": 0.604, + "2002": 0.605, + "2003": 0.61, + "2004": 0.612, + "2005": 0.612, + "2006": 0.618, + "2007": 0.618, + "2008": 0.621, + "2009": 0.62, + "2010": 0.62, + "2011": 0.622, + "2012": 0.62, + "2013": 0.622, + "2014": 0.619, + "2015": 0.624, + "2016": 0.624, + "2017": 0.628, + "2018": 0.631, + "2019": 0.633, + "2020": 0.622, + "2021": 0.631 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr101", + "Region": "North west", + "1990": 0.57, + "1991": 0.578, + "1992": 0.572, + "1993": 0.567, + "1994": 0.579, + "1995": 0.567, + "1996": 0.583, + "1997": 0.577, + "1998": 0.586, + "1999": 0.585, + "2000": 0.584, + "2001": 0.592, + "2002": 0.595, + "2003": 0.601, + "2004": 0.606, + "2005": 0.61, + "2006": 0.618, + "2007": 0.621, + "2008": 0.627, + "2009": 0.629, + "2010": 0.632, + "2011": 0.637, + "2012": 0.638, + "2013": 0.643, + "2014": 0.643, + "2015": 0.648, + "2016": 0.647, + "2017": 0.652, + "2018": 0.654, + "2019": 0.656, + "2020": 0.645, + "2021": 0.654 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr107", + "Region": "South", + "1990": 0.532, + "1991": 0.54, + "1992": 0.534, + "1993": 0.531, + "1994": 0.546, + "1995": 0.536, + "1996": 0.554, + "1997": 0.55, + "1998": 0.561, + "1999": 0.562, + "2000": 0.564, + "2001": 0.575, + "2002": 0.579, + "2003": 0.588, + "2004": 0.593, + "2005": 0.597, + "2006": 0.606, + "2007": 0.61, + "2008": 0.617, + "2009": 0.62, + "2010": 0.624, + "2011": 0.629, + "2012": 0.631, + "2013": 0.636, + "2014": 0.637, + "2015": 0.642, + "2016": 0.641, + "2017": 0.646, + "2018": 0.648, + "2019": 0.65, + "2020": 0.639, + "2021": 0.648 + }, + { + "Country": "Morocco", + "Continent": "Africa", + "ISO_Code": "MAR", + "Level": "Subnat", + "GDLCODE": "MARr106", + "Region": "Tensift", + "1990": 0.486, + "1991": 0.493, + "1992": 0.488, + "1993": 0.484, + "1994": 0.498, + "1995": 0.488, + "1996": 0.504, + "1997": 0.5, + "1998": 0.51, + "1999": 0.511, + "2000": 0.512, + "2001": 0.521, + "2002": 0.525, + "2003": 0.533, + "2004": 0.543, + "2005": 0.552, + "2006": 0.566, + "2007": 0.574, + "2008": 0.586, + "2009": 0.594, + "2010": 0.602, + "2011": 0.612, + "2012": 0.618, + "2013": 0.628, + "2014": 0.633, + "2015": 0.639, + "2016": 0.638, + "2017": 0.642, + "2018": 0.645, + "2019": 0.647, + "2020": 0.636, + "2021": 0.645 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "National", + "GDLCODE": "MOZt", + "Region": "Total", + "1990": 0.229, + "1991": 0.233, + "1992": 0.215, + "1993": 0.225, + "1994": 0.229, + "1995": 0.228, + "1996": 0.242, + "1997": 0.255, + "1998": 0.264, + "1999": 0.278, + "2000": 0.273, + "2001": 0.285, + "2002": 0.284, + "2003": 0.302, + "2004": 0.31, + "2005": 0.312, + "2006": 0.317, + "2007": 0.326, + "2008": 0.333, + "2009": 0.343, + "2010": 0.347, + "2011": 0.356, + "2012": 0.365, + "2013": 0.371, + "2014": 0.376, + "2015": 0.38, + "2016": 0.381, + "2017": 0.381, + "2018": 0.383, + "2019": 0.382, + "2020": 0.376, + "2021": 0.375 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr102", + "Region": "Cabo delgado", + "1990": 0.216, + "1991": 0.221, + "1992": 0.203, + "1993": 0.212, + "1994": 0.216, + "1995": 0.216, + "1996": 0.229, + "1997": 0.242, + "1998": 0.25, + "1999": 0.262, + "2000": 0.256, + "2001": 0.266, + "2002": 0.264, + "2003": 0.28, + "2004": 0.286, + "2005": 0.286, + "2006": 0.29, + "2007": 0.297, + "2008": 0.303, + "2009": 0.31, + "2010": 0.313, + "2011": 0.32, + "2012": 0.328, + "2013": 0.334, + "2014": 0.339, + "2015": 0.343, + "2016": 0.344, + "2017": 0.344, + "2018": 0.346, + "2019": 0.345, + "2020": 0.339, + "2021": 0.338 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr109", + "Region": "Gaza", + "1990": 0.245, + "1991": 0.25, + "1992": 0.232, + "1993": 0.241, + "1994": 0.245, + "1995": 0.245, + "1996": 0.258, + "1997": 0.272, + "1998": 0.279, + "1999": 0.29, + "2000": 0.283, + "2001": 0.292, + "2002": 0.289, + "2003": 0.304, + "2004": 0.311, + "2005": 0.312, + "2006": 0.316, + "2007": 0.324, + "2008": 0.33, + "2009": 0.338, + "2010": 0.341, + "2011": 0.349, + "2012": 0.357, + "2013": 0.363, + "2014": 0.369, + "2015": 0.373, + "2016": 0.374, + "2017": 0.374, + "2018": 0.376, + "2019": 0.375, + "2020": 0.369, + "2021": 0.368 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr108", + "Region": "Inhambane", + "1990": 0.24, + "1991": 0.245, + "1992": 0.227, + "1993": 0.236, + "1994": 0.24, + "1995": 0.24, + "1996": 0.253, + "1997": 0.266, + "1998": 0.273, + "1999": 0.283, + "2000": 0.276, + "2001": 0.284, + "2002": 0.28, + "2003": 0.294, + "2004": 0.3, + "2005": 0.3, + "2006": 0.303, + "2007": 0.309, + "2008": 0.314, + "2009": 0.322, + "2010": 0.323, + "2011": 0.33, + "2012": 0.338, + "2013": 0.344, + "2014": 0.35, + "2015": 0.354, + "2016": 0.355, + "2017": 0.354, + "2018": 0.357, + "2019": 0.356, + "2020": 0.35, + "2021": 0.349 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr106", + "Region": "Manica", + "1990": 0.222, + "1991": 0.226, + "1992": 0.208, + "1993": 0.218, + "1994": 0.221, + "1995": 0.221, + "1996": 0.234, + "1997": 0.247, + "1998": 0.257, + "1999": 0.27, + "2000": 0.266, + "2001": 0.278, + "2002": 0.277, + "2003": 0.295, + "2004": 0.307, + "2005": 0.313, + "2006": 0.322, + "2007": 0.335, + "2008": 0.346, + "2009": 0.36, + "2010": 0.369, + "2011": 0.382, + "2012": 0.39, + "2013": 0.397, + "2014": 0.402, + "2015": 0.407, + "2016": 0.408, + "2017": 0.407, + "2018": 0.41, + "2019": 0.409, + "2020": 0.402, + "2021": 0.401 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr111", + "Region": "Maputo Cidade", + "1990": 0.332, + "1991": 0.337, + "1992": 0.317, + "1993": 0.327, + "1994": 0.331, + "1995": 0.331, + "1996": 0.346, + "1997": 0.36, + "1998": 0.379, + "1999": 0.402, + "2000": 0.405, + "2001": 0.426, + "2002": 0.433, + "2003": 0.461, + "2004": 0.469, + "2005": 0.47, + "2006": 0.474, + "2007": 0.483, + "2008": 0.49, + "2009": 0.5, + "2010": 0.504, + "2011": 0.512, + "2012": 0.522, + "2013": 0.529, + "2014": 0.535, + "2015": 0.54, + "2016": 0.541, + "2017": 0.541, + "2018": 0.544, + "2019": 0.543, + "2020": 0.536, + "2021": 0.534 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr110", + "Region": "Maputo Provincia", + "1990": 0.297, + "1991": 0.302, + "1992": 0.283, + "1993": 0.293, + "1994": 0.297, + "1995": 0.297, + "1996": 0.311, + "1997": 0.325, + "1998": 0.335, + "1999": 0.349, + "2000": 0.344, + "2001": 0.356, + "2002": 0.354, + "2003": 0.373, + "2004": 0.38, + "2005": 0.382, + "2006": 0.387, + "2007": 0.396, + "2008": 0.404, + "2009": 0.414, + "2010": 0.418, + "2011": 0.427, + "2012": 0.436, + "2013": 0.442, + "2014": 0.448, + "2015": 0.453, + "2016": 0.453, + "2017": 0.453, + "2018": 0.456, + "2019": 0.455, + "2020": 0.448, + "2021": 0.447 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr103", + "Region": "Nampula", + "1990": 0.209, + "1991": 0.213, + "1992": 0.196, + "1993": 0.205, + "1994": 0.209, + "1995": 0.208, + "1996": 0.221, + "1997": 0.234, + "1998": 0.245, + "1999": 0.26, + "2000": 0.257, + "2001": 0.271, + "2002": 0.271, + "2003": 0.291, + "2004": 0.297, + "2005": 0.299, + "2006": 0.303, + "2007": 0.311, + "2008": 0.317, + "2009": 0.326, + "2010": 0.329, + "2011": 0.337, + "2012": 0.346, + "2013": 0.352, + "2014": 0.357, + "2015": 0.361, + "2016": 0.362, + "2017": 0.362, + "2018": 0.364, + "2019": 0.363, + "2020": 0.357, + "2021": 0.356 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr101", + "Region": "Niassa", + "1990": 0.214, + "1991": 0.218, + "1992": 0.2, + "1993": 0.21, + "1994": 0.213, + "1995": 0.213, + "1996": 0.226, + "1997": 0.239, + "1998": 0.247, + "1999": 0.258, + "2000": 0.253, + "2001": 0.263, + "2002": 0.26, + "2003": 0.276, + "2004": 0.283, + "2005": 0.286, + "2006": 0.291, + "2007": 0.3, + "2008": 0.307, + "2009": 0.317, + "2010": 0.321, + "2011": 0.33, + "2012": 0.338, + "2013": 0.344, + "2014": 0.349, + "2015": 0.354, + "2016": 0.354, + "2017": 0.354, + "2018": 0.357, + "2019": 0.356, + "2020": 0.35, + "2021": 0.348 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr107", + "Region": "Sofala", + "1990": 0.226, + "1991": 0.23, + "1992": 0.212, + "1993": 0.222, + "1994": 0.225, + "1995": 0.225, + "1996": 0.239, + "1997": 0.251, + "1998": 0.263, + "1999": 0.28, + "2000": 0.278, + "2001": 0.293, + "2002": 0.294, + "2003": 0.315, + "2004": 0.325, + "2005": 0.329, + "2006": 0.336, + "2007": 0.347, + "2008": 0.357, + "2009": 0.369, + "2010": 0.375, + "2011": 0.386, + "2012": 0.395, + "2013": 0.401, + "2014": 0.407, + "2015": 0.411, + "2016": 0.412, + "2017": 0.412, + "2018": 0.414, + "2019": 0.413, + "2020": 0.407, + "2021": 0.406 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr105", + "Region": "Tete", + "1990": 0.216, + "1991": 0.221, + "1992": 0.203, + "1993": 0.213, + "1994": 0.216, + "1995": 0.216, + "1996": 0.229, + "1997": 0.242, + "1998": 0.25, + "1999": 0.262, + "2000": 0.257, + "2001": 0.268, + "2002": 0.265, + "2003": 0.282, + "2004": 0.288, + "2005": 0.289, + "2006": 0.293, + "2007": 0.301, + "2008": 0.307, + "2009": 0.315, + "2010": 0.318, + "2011": 0.326, + "2012": 0.334, + "2013": 0.34, + "2014": 0.345, + "2015": 0.349, + "2016": 0.35, + "2017": 0.35, + "2018": 0.352, + "2019": 0.352, + "2020": 0.345, + "2021": 0.344 + }, + { + "Country": "Mozambique", + "Continent": "Africa", + "ISO_Code": "MOZ", + "Level": "Subnat", + "GDLCODE": "MOZr104", + "Region": "Zambezia", + "1990": 0.205, + "1991": 0.21, + "1992": 0.192, + "1993": 0.202, + "1994": 0.205, + "1995": 0.205, + "1996": 0.218, + "1997": 0.231, + "1998": 0.239, + "1999": 0.252, + "2000": 0.247, + "2001": 0.258, + "2002": 0.257, + "2003": 0.274, + "2004": 0.283, + "2005": 0.287, + "2006": 0.294, + "2007": 0.305, + "2008": 0.314, + "2009": 0.326, + "2010": 0.332, + "2011": 0.343, + "2012": 0.351, + "2013": 0.357, + "2014": 0.362, + "2015": 0.367, + "2016": 0.368, + "2017": 0.367, + "2018": 0.37, + "2019": 0.369, + "2020": 0.363, + "2021": 0.361 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "National", + "GDLCODE": "MMRt", + "Region": "Total", + "1990": 0.254, + "1991": 0.258, + "1992": 0.268, + "1993": 0.276, + "1994": 0.285, + "1995": 0.293, + "1996": 0.3, + "1997": 0.303, + "1998": 0.31, + "1999": 0.326, + "2000": 0.342, + "2001": 0.357, + "2002": 0.374, + "2003": 0.392, + "2004": 0.41, + "2005": 0.428, + "2006": 0.445, + "2007": 0.459, + "2008": 0.474, + "2009": 0.487, + "2010": 0.498, + "2011": 0.506, + "2012": 0.514, + "2013": 0.524, + "2014": 0.534, + "2015": 0.537, + "2016": 0.553, + "2017": 0.561, + "2018": 0.569, + "2019": 0.578, + "2020": 0.582, + "2021": 0.551 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr114", + "Region": "Ayeyarwaddy", + "1990": 0.232, + "1991": 0.236, + "1992": 0.245, + "1993": 0.253, + "1994": 0.262, + "1995": 0.27, + "1996": 0.277, + "1997": 0.28, + "1998": 0.287, + "1999": 0.303, + "2000": 0.318, + "2001": 0.332, + "2002": 0.347, + "2003": 0.362, + "2004": 0.378, + "2005": 0.394, + "2006": 0.408, + "2007": 0.421, + "2008": 0.433, + "2009": 0.445, + "2010": 0.453, + "2011": 0.459, + "2012": 0.464, + "2013": 0.473, + "2014": 0.48, + "2015": 0.482, + "2016": 0.495, + "2017": 0.503, + "2018": 0.51, + "2019": 0.518, + "2020": 0.523, + "2021": 0.493 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr107", + "Region": "Bago", + "1990": 0.266, + "1991": 0.27, + "1992": 0.28, + "1993": 0.288, + "1994": 0.297, + "1995": 0.305, + "1996": 0.312, + "1997": 0.316, + "1998": 0.323, + "1999": 0.339, + "2000": 0.356, + "2001": 0.369, + "2002": 0.384, + "2003": 0.401, + "2004": 0.417, + "2005": 0.433, + "2006": 0.448, + "2007": 0.46, + "2008": 0.472, + "2009": 0.484, + "2010": 0.492, + "2011": 0.498, + "2012": 0.504, + "2013": 0.512, + "2014": 0.52, + "2015": 0.521, + "2016": 0.534, + "2017": 0.542, + "2018": 0.55, + "2019": 0.559, + "2020": 0.563, + "2021": 0.533 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr104", + "Region": "Chin", + "1990": 0.261, + "1991": 0.266, + "1992": 0.276, + "1993": 0.284, + "1994": 0.293, + "1995": 0.301, + "1996": 0.308, + "1997": 0.311, + "1998": 0.319, + "1999": 0.335, + "2000": 0.351, + "2001": 0.366, + "2002": 0.382, + "2003": 0.4, + "2004": 0.417, + "2005": 0.434, + "2006": 0.451, + "2007": 0.465, + "2008": 0.479, + "2009": 0.492, + "2010": 0.501, + "2011": 0.509, + "2012": 0.516, + "2013": 0.526, + "2014": 0.535, + "2015": 0.538, + "2016": 0.553, + "2017": 0.562, + "2018": 0.57, + "2019": 0.578, + "2020": 0.583, + "2021": 0.552 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr101", + "Region": "Kachin", + "1990": 0.283, + "1991": 0.288, + "1992": 0.298, + "1993": 0.306, + "1994": 0.315, + "1995": 0.324, + "1996": 0.331, + "1997": 0.334, + "1998": 0.342, + "1999": 0.358, + "2000": 0.375, + "2001": 0.391, + "2002": 0.409, + "2003": 0.428, + "2004": 0.447, + "2005": 0.466, + "2006": 0.484, + "2007": 0.499, + "2008": 0.515, + "2009": 0.529, + "2010": 0.541, + "2011": 0.55, + "2012": 0.558, + "2013": 0.57, + "2014": 0.581, + "2015": 0.585, + "2016": 0.602, + "2017": 0.61, + "2018": 0.619, + "2019": 0.627, + "2020": 0.632, + "2021": 0.6 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr102", + "Region": "Kayah", + "1990": 0.286, + "1991": 0.29, + "1992": 0.3, + "1993": 0.309, + "1994": 0.318, + "1995": 0.326, + "1996": 0.333, + "1997": 0.337, + "1998": 0.345, + "1999": 0.361, + "2000": 0.377, + "2001": 0.392, + "2002": 0.408, + "2003": 0.426, + "2004": 0.443, + "2005": 0.46, + "2006": 0.476, + "2007": 0.49, + "2008": 0.503, + "2009": 0.516, + "2010": 0.526, + "2011": 0.533, + "2012": 0.539, + "2013": 0.549, + "2014": 0.558, + "2015": 0.56, + "2016": 0.574, + "2017": 0.583, + "2018": 0.591, + "2019": 0.6, + "2020": 0.604, + "2021": 0.573 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr103", + "Region": "Kayin", + "1990": 0.25, + "1991": 0.254, + "1992": 0.264, + "1993": 0.272, + "1994": 0.281, + "1995": 0.289, + "1996": 0.296, + "1997": 0.299, + "1998": 0.307, + "1999": 0.322, + "2000": 0.338, + "2001": 0.354, + "2002": 0.371, + "2003": 0.389, + "2004": 0.408, + "2005": 0.426, + "2006": 0.443, + "2007": 0.459, + "2008": 0.473, + "2009": 0.488, + "2010": 0.498, + "2011": 0.507, + "2012": 0.515, + "2013": 0.526, + "2014": 0.537, + "2015": 0.541, + "2016": 0.557, + "2017": 0.566, + "2018": 0.574, + "2019": 0.582, + "2020": 0.587, + "2021": 0.556 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr108", + "Region": "Magway", + "1990": 0.212, + "1991": 0.217, + "1992": 0.226, + "1993": 0.234, + "1994": 0.242, + "1995": 0.25, + "1996": 0.257, + "1997": 0.259, + "1998": 0.267, + "1999": 0.282, + "2000": 0.297, + "2001": 0.314, + "2002": 0.332, + "2003": 0.351, + "2004": 0.371, + "2005": 0.39, + "2006": 0.408, + "2007": 0.425, + "2008": 0.441, + "2009": 0.457, + "2010": 0.469, + "2011": 0.48, + "2012": 0.49, + "2013": 0.502, + "2014": 0.514, + "2015": 0.52, + "2016": 0.538, + "2017": 0.546, + "2018": 0.554, + "2019": 0.563, + "2020": 0.567, + "2021": 0.537 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr109", + "Region": "Mandalay, NayPyitaw", + "1990": 0.261, + "1991": 0.266, + "1992": 0.275, + "1993": 0.283, + "1994": 0.292, + "1995": 0.3, + "1996": 0.307, + "1997": 0.31, + "1998": 0.318, + "1999": 0.334, + "2000": 0.35, + "2001": 0.366, + "2002": 0.383, + "2003": 0.402, + "2004": 0.42, + "2005": 0.438, + "2006": 0.455, + "2007": 0.471, + "2008": 0.485, + "2009": 0.499, + "2010": 0.51, + "2011": 0.519, + "2012": 0.527, + "2013": 0.538, + "2014": 0.548, + "2015": 0.552, + "2016": 0.568, + "2017": 0.577, + "2018": 0.585, + "2019": 0.593, + "2020": 0.598, + "2021": 0.567 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr110", + "Region": "Mon", + "1990": 0.266, + "1991": 0.271, + "1992": 0.28, + "1993": 0.288, + "1994": 0.297, + "1995": 0.305, + "1996": 0.313, + "1997": 0.316, + "1998": 0.324, + "1999": 0.34, + "2000": 0.356, + "2001": 0.372, + "2002": 0.389, + "2003": 0.408, + "2004": 0.427, + "2005": 0.446, + "2006": 0.463, + "2007": 0.479, + "2008": 0.494, + "2009": 0.509, + "2010": 0.52, + "2011": 0.529, + "2012": 0.538, + "2013": 0.549, + "2014": 0.56, + "2015": 0.564, + "2016": 0.581, + "2017": 0.59, + "2018": 0.598, + "2019": 0.606, + "2020": 0.611, + "2021": 0.579 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr111", + "Region": "Rakhine", + "1990": 0.192, + "1991": 0.196, + "1992": 0.205, + "1993": 0.212, + "1994": 0.221, + "1995": 0.228, + "1996": 0.235, + "1997": 0.238, + "1998": 0.245, + "1999": 0.26, + "2000": 0.274, + "2001": 0.29, + "2002": 0.307, + "2003": 0.325, + "2004": 0.343, + "2005": 0.361, + "2006": 0.378, + "2007": 0.393, + "2008": 0.407, + "2009": 0.422, + "2010": 0.433, + "2011": 0.442, + "2012": 0.451, + "2013": 0.462, + "2014": 0.473, + "2015": 0.477, + "2016": 0.494, + "2017": 0.501, + "2018": 0.509, + "2019": 0.517, + "2020": 0.521, + "2021": 0.492 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr105", + "Region": "Sagaing", + "1990": 0.236, + "1991": 0.24, + "1992": 0.25, + "1993": 0.258, + "1994": 0.266, + "1995": 0.274, + "1996": 0.281, + "1997": 0.284, + "1998": 0.292, + "1999": 0.307, + "2000": 0.323, + "2001": 0.338, + "2002": 0.355, + "2003": 0.372, + "2004": 0.39, + "2005": 0.407, + "2006": 0.424, + "2007": 0.439, + "2008": 0.453, + "2009": 0.466, + "2010": 0.476, + "2011": 0.485, + "2012": 0.492, + "2013": 0.503, + "2014": 0.512, + "2015": 0.516, + "2016": 0.532, + "2017": 0.54, + "2018": 0.548, + "2019": 0.556, + "2020": 0.56, + "2021": 0.53 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr113", + "Region": "Shan", + "1990": 0.267, + "1991": 0.271, + "1992": 0.281, + "1993": 0.289, + "1994": 0.298, + "1995": 0.306, + "1996": 0.313, + "1997": 0.316, + "1998": 0.324, + "1999": 0.34, + "2000": 0.357, + "2001": 0.372, + "2002": 0.388, + "2003": 0.406, + "2004": 0.424, + "2005": 0.442, + "2006": 0.458, + "2007": 0.473, + "2008": 0.487, + "2009": 0.501, + "2010": 0.511, + "2011": 0.519, + "2012": 0.526, + "2013": 0.536, + "2014": 0.546, + "2015": 0.549, + "2016": 0.564, + "2017": 0.573, + "2018": 0.581, + "2019": 0.589, + "2020": 0.594, + "2021": 0.563 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr106", + "Region": "Taninthayi", + "1990": 0.262, + "1991": 0.266, + "1992": 0.276, + "1993": 0.284, + "1994": 0.293, + "1995": 0.301, + "1996": 0.308, + "1997": 0.311, + "1998": 0.319, + "1999": 0.335, + "2000": 0.351, + "2001": 0.366, + "2002": 0.382, + "2003": 0.4, + "2004": 0.418, + "2005": 0.435, + "2006": 0.451, + "2007": 0.466, + "2008": 0.479, + "2009": 0.493, + "2010": 0.502, + "2011": 0.51, + "2012": 0.517, + "2013": 0.527, + "2014": 0.536, + "2015": 0.539, + "2016": 0.554, + "2017": 0.563, + "2018": 0.571, + "2019": 0.579, + "2020": 0.584, + "2021": 0.553 + }, + { + "Country": "Myanmar", + "Continent": "Asia/Pacific", + "ISO_Code": "MMR", + "Level": "Subnat", + "GDLCODE": "MMRr112", + "Region": "Yangon", + "1990": 0.315, + "1991": 0.32, + "1992": 0.33, + "1993": 0.339, + "1994": 0.348, + "1995": 0.357, + "1996": 0.364, + "1997": 0.367, + "1998": 0.376, + "1999": 0.392, + "2000": 0.409, + "2001": 0.425, + "2002": 0.443, + "2003": 0.462, + "2004": 0.481, + "2005": 0.499, + "2006": 0.517, + "2007": 0.533, + "2008": 0.547, + "2009": 0.562, + "2010": 0.572, + "2011": 0.581, + "2012": 0.589, + "2013": 0.599, + "2014": 0.61, + "2015": 0.613, + "2016": 0.629, + "2017": 0.638, + "2018": 0.647, + "2019": 0.656, + "2020": 0.661, + "2021": 0.628 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "National", + "GDLCODE": "NAMt", + "Region": "Total", + "1990": 0.62, + "1991": 0.629, + "1992": 0.632, + "1993": 0.626, + "1994": 0.625, + "1995": 0.63, + "1996": 0.629, + "1997": 0.631, + "1998": 0.634, + "1999": 0.633, + "2000": 0.638, + "2001": 0.637, + "2002": 0.644, + "2003": 0.652, + "2004": 0.663, + "2005": 0.66, + "2006": 0.669, + "2007": 0.671, + "2008": 0.672, + "2009": 0.67, + "2010": 0.673, + "2011": 0.679, + "2012": 0.684, + "2013": 0.695, + "2014": 0.701, + "2015": 0.705, + "2016": 0.7, + "2017": 0.695, + "2018": 0.691, + "2019": 0.689, + "2020": 0.675, + "2021": 0.673 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr101", + "Region": "Caprivi", + "1990": 0.487, + "1991": 0.496, + "1992": 0.498, + "1993": 0.493, + "1994": 0.492, + "1995": 0.497, + "1996": 0.495, + "1997": 0.498, + "1998": 0.5, + "1999": 0.499, + "2000": 0.504, + "2001": 0.502, + "2002": 0.509, + "2003": 0.516, + "2004": 0.526, + "2005": 0.524, + "2006": 0.532, + "2007": 0.539, + "2008": 0.545, + "2009": 0.548, + "2010": 0.556, + "2011": 0.567, + "2012": 0.577, + "2013": 0.592, + "2014": 0.598, + "2015": 0.602, + "2016": 0.596, + "2017": 0.592, + "2018": 0.588, + "2019": 0.586, + "2020": 0.573, + "2021": 0.572 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr102", + "Region": "Erongo", + "1990": 0.824, + "1991": 0.835, + "1992": 0.838, + "1993": 0.831, + "1994": 0.83, + "1995": 0.836, + "1996": 0.834, + "1997": 0.837, + "1998": 0.841, + "1999": 0.839, + "2000": 0.845, + "2001": 0.827, + "2002": 0.818, + "2003": 0.812, + "2004": 0.807, + "2005": 0.788, + "2006": 0.782, + "2007": 0.782, + "2008": 0.782, + "2009": 0.777, + "2010": 0.779, + "2011": 0.784, + "2012": 0.788, + "2013": 0.798, + "2014": 0.805, + "2015": 0.809, + "2016": 0.803, + "2017": 0.799, + "2018": 0.794, + "2019": 0.792, + "2020": 0.776, + "2021": 0.775 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr103", + "Region": "Hardap", + "1990": 0.696, + "1991": 0.706, + "1992": 0.709, + "1993": 0.702, + "1994": 0.701, + "1995": 0.707, + "1996": 0.705, + "1997": 0.708, + "1998": 0.711, + "1999": 0.709, + "2000": 0.715, + "2001": 0.707, + "2002": 0.708, + "2003": 0.711, + "2004": 0.715, + "2005": 0.707, + "2006": 0.709, + "2007": 0.716, + "2008": 0.721, + "2009": 0.723, + "2010": 0.73, + "2011": 0.741, + "2012": 0.75, + "2013": 0.766, + "2014": 0.772, + "2015": 0.776, + "2016": 0.77, + "2017": 0.766, + "2018": 0.761, + "2019": 0.759, + "2020": 0.744, + "2021": 0.743 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr104", + "Region": "Karas", + "1990": 0.785, + "1991": 0.796, + "1992": 0.799, + "1993": 0.792, + "1994": 0.79, + "1995": 0.797, + "1996": 0.795, + "1997": 0.798, + "1998": 0.801, + "1999": 0.799, + "2000": 0.806, + "2001": 0.787, + "2002": 0.779, + "2003": 0.772, + "2004": 0.767, + "2005": 0.748, + "2006": 0.742, + "2007": 0.742, + "2008": 0.742, + "2009": 0.737, + "2010": 0.739, + "2011": 0.744, + "2012": 0.748, + "2013": 0.758, + "2014": 0.764, + "2015": 0.768, + "2016": 0.762, + "2017": 0.758, + "2018": 0.753, + "2019": 0.751, + "2020": 0.736, + "2021": 0.735 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr108", + "Region": "Kavango", + "1990": 0.533, + "1991": 0.542, + "1992": 0.545, + "1993": 0.539, + "1994": 0.538, + "1995": 0.543, + "1996": 0.541, + "1997": 0.544, + "1998": 0.547, + "1999": 0.545, + "2000": 0.55, + "2001": 0.546, + "2002": 0.549, + "2003": 0.554, + "2004": 0.561, + "2005": 0.555, + "2006": 0.56, + "2007": 0.563, + "2008": 0.564, + "2009": 0.562, + "2010": 0.565, + "2011": 0.571, + "2012": 0.576, + "2013": 0.587, + "2014": 0.592, + "2015": 0.596, + "2016": 0.591, + "2017": 0.587, + "2018": 0.583, + "2019": 0.581, + "2020": 0.568, + "2021": 0.566 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr105", + "Region": "Khomas", + "1990": 0.746, + "1991": 0.757, + "1992": 0.76, + "1993": 0.753, + "1994": 0.752, + "1995": 0.758, + "1996": 0.756, + "1997": 0.759, + "1998": 0.762, + "1999": 0.761, + "2000": 0.767, + "2001": 0.768, + "2002": 0.779, + "2003": 0.791, + "2004": 0.805, + "2005": 0.805, + "2006": 0.818, + "2007": 0.814, + "2008": 0.81, + "2009": 0.801, + "2010": 0.799, + "2011": 0.8, + "2012": 0.8, + "2013": 0.806, + "2014": 0.812, + "2015": 0.817, + "2016": 0.811, + "2017": 0.806, + "2018": 0.801, + "2019": 0.799, + "2020": 0.784, + "2021": 0.782 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr106", + "Region": "Kunene", + "1990": 0.602, + "1991": 0.612, + "1992": 0.615, + "1993": 0.608, + "1994": 0.607, + "1995": 0.613, + "1996": 0.611, + "1997": 0.614, + "1998": 0.617, + "1999": 0.615, + "2000": 0.621, + "2001": 0.61, + "2002": 0.609, + "2003": 0.608, + "2004": 0.61, + "2005": 0.599, + "2006": 0.599, + "2007": 0.604, + "2008": 0.609, + "2009": 0.61, + "2010": 0.616, + "2011": 0.625, + "2012": 0.634, + "2013": 0.648, + "2014": 0.653, + "2015": 0.657, + "2016": 0.652, + "2017": 0.648, + "2018": 0.644, + "2019": 0.642, + "2020": 0.628, + "2021": 0.627 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr107", + "Region": "Ohangwena", + "1990": 0.475, + "1991": 0.484, + "1992": 0.486, + "1993": 0.481, + "1994": 0.48, + "1995": 0.485, + "1996": 0.483, + "1997": 0.486, + "1998": 0.488, + "1999": 0.487, + "2000": 0.492, + "2001": 0.494, + "2002": 0.504, + "2003": 0.515, + "2004": 0.528, + "2005": 0.529, + "2006": 0.54, + "2007": 0.544, + "2008": 0.548, + "2009": 0.548, + "2010": 0.553, + "2011": 0.561, + "2012": 0.568, + "2013": 0.581, + "2014": 0.586, + "2015": 0.59, + "2016": 0.585, + "2017": 0.581, + "2018": 0.577, + "2019": 0.575, + "2020": 0.562, + "2021": 0.561 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr109", + "Region": "Omaheke", + "1990": 0.584, + "1991": 0.594, + "1992": 0.597, + "1993": 0.59, + "1994": 0.589, + "1995": 0.595, + "1996": 0.593, + "1997": 0.596, + "1998": 0.599, + "1999": 0.597, + "2000": 0.603, + "2001": 0.601, + "2002": 0.609, + "2003": 0.618, + "2004": 0.629, + "2005": 0.627, + "2006": 0.636, + "2007": 0.64, + "2008": 0.642, + "2009": 0.641, + "2010": 0.646, + "2011": 0.653, + "2012": 0.66, + "2013": 0.672, + "2014": 0.678, + "2015": 0.682, + "2016": 0.677, + "2017": 0.672, + "2018": 0.668, + "2019": 0.666, + "2020": 0.652, + "2021": 0.651 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr110", + "Region": "Omusati", + "1990": 0.49, + "1991": 0.498, + "1992": 0.501, + "1993": 0.495, + "1994": 0.494, + "1995": 0.499, + "1996": 0.498, + "1997": 0.5, + "1998": 0.503, + "1999": 0.501, + "2000": 0.506, + "2001": 0.509, + "2002": 0.519, + "2003": 0.531, + "2004": 0.545, + "2005": 0.546, + "2006": 0.558, + "2007": 0.563, + "2008": 0.568, + "2009": 0.568, + "2010": 0.574, + "2011": 0.583, + "2012": 0.591, + "2013": 0.605, + "2014": 0.61, + "2015": 0.614, + "2016": 0.609, + "2017": 0.605, + "2018": 0.601, + "2019": 0.599, + "2020": 0.586, + "2021": 0.584 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr111", + "Region": "Oshana", + "1990": 0.568, + "1991": 0.577, + "1992": 0.58, + "1993": 0.574, + "1994": 0.572, + "1995": 0.578, + "1996": 0.576, + "1997": 0.579, + "1998": 0.582, + "1999": 0.58, + "2000": 0.586, + "2001": 0.588, + "2002": 0.599, + "2003": 0.612, + "2004": 0.626, + "2005": 0.628, + "2006": 0.641, + "2007": 0.645, + "2008": 0.648, + "2009": 0.647, + "2010": 0.652, + "2011": 0.66, + "2012": 0.667, + "2013": 0.68, + "2014": 0.686, + "2015": 0.69, + "2016": 0.684, + "2017": 0.68, + "2018": 0.676, + "2019": 0.674, + "2020": 0.66, + "2021": 0.658 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr112", + "Region": "Oshikoto", + "1990": 0.567, + "1991": 0.576, + "1992": 0.579, + "1993": 0.573, + "1994": 0.572, + "1995": 0.577, + "1996": 0.576, + "1997": 0.578, + "1998": 0.581, + "1999": 0.579, + "2000": 0.585, + "2001": 0.585, + "2002": 0.594, + "2003": 0.605, + "2004": 0.617, + "2005": 0.617, + "2006": 0.627, + "2007": 0.628, + "2008": 0.628, + "2009": 0.624, + "2010": 0.626, + "2011": 0.631, + "2012": 0.634, + "2013": 0.644, + "2014": 0.649, + "2015": 0.653, + "2016": 0.648, + "2017": 0.644, + "2018": 0.64, + "2019": 0.637, + "2020": 0.624, + "2021": 0.623 + }, + { + "Country": "Namibia", + "Continent": "Africa", + "ISO_Code": "NAM", + "Level": "Subnat", + "GDLCODE": "NAMr113", + "Region": "Otjozondjupa", + "1990": 0.683, + "1991": 0.694, + "1992": 0.697, + "1993": 0.69, + "1994": 0.689, + "1995": 0.694, + "1996": 0.693, + "1997": 0.696, + "1998": 0.699, + "1999": 0.697, + "2000": 0.703, + "2001": 0.694, + "2002": 0.694, + "2003": 0.695, + "2004": 0.699, + "2005": 0.689, + "2006": 0.691, + "2007": 0.697, + "2008": 0.703, + "2009": 0.704, + "2010": 0.711, + "2011": 0.722, + "2012": 0.731, + "2013": 0.746, + "2014": 0.752, + "2015": 0.757, + "2016": 0.751, + "2017": 0.746, + "2018": 0.742, + "2019": 0.74, + "2020": 0.725, + "2021": 0.724 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "National", + "GDLCODE": "NPLt", + "Region": "Total", + "1990": 0.417, + "1991": 0.422, + "1992": 0.424, + "1993": 0.425, + "1994": 0.433, + "1995": 0.435, + "1996": 0.438, + "1997": 0.443, + "1998": 0.445, + "1999": 0.45, + "2000": 0.457, + "2001": 0.463, + "2002": 0.46, + "2003": 0.464, + "2004": 0.469, + "2005": 0.473, + "2006": 0.477, + "2007": 0.48, + "2008": 0.488, + "2009": 0.493, + "2010": 0.499, + "2011": 0.504, + "2012": 0.511, + "2013": 0.516, + "2014": 0.526, + "2015": 0.532, + "2016": 0.531, + "2017": 0.541, + "2018": 0.549, + "2019": 0.557, + "2020": 0.551, + "2021": 0.553 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr102", + "Region": "Central", + "1990": 0.437, + "1991": 0.443, + "1992": 0.445, + "1993": 0.447, + "1994": 0.455, + "1995": 0.457, + "1996": 0.46, + "1997": 0.465, + "1998": 0.468, + "1999": 0.474, + "2000": 0.482, + "2001": 0.489, + "2002": 0.487, + "2003": 0.491, + "2004": 0.497, + "2005": 0.502, + "2006": 0.507, + "2007": 0.508, + "2008": 0.513, + "2009": 0.516, + "2010": 0.52, + "2011": 0.523, + "2012": 0.528, + "2013": 0.531, + "2014": 0.539, + "2015": 0.542, + "2016": 0.539, + "2017": 0.538, + "2018": 0.535, + "2019": 0.531, + "2020": 0.525, + "2021": 0.526 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr101", + "Region": "Eastern", + "1990": 0.414, + "1991": 0.419, + "1992": 0.421, + "1993": 0.423, + "1994": 0.431, + "1995": 0.433, + "1996": 0.436, + "1997": 0.439, + "1998": 0.44, + "1999": 0.444, + "2000": 0.45, + "2001": 0.455, + "2002": 0.451, + "2003": 0.453, + "2004": 0.457, + "2005": 0.46, + "2006": 0.462, + "2007": 0.469, + "2008": 0.48, + "2009": 0.489, + "2010": 0.498, + "2011": 0.506, + "2012": 0.511, + "2013": 0.515, + "2014": 0.524, + "2015": 0.527, + "2016": 0.524, + "2017": 0.536, + "2018": 0.544, + "2019": 0.553, + "2020": 0.547, + "2021": 0.548 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr105", + "Region": "Far-western", + "1990": 0.396, + "1991": 0.401, + "1992": 0.403, + "1993": 0.405, + "1994": 0.413, + "1995": 0.415, + "1996": 0.418, + "1997": 0.419, + "1998": 0.418, + "1999": 0.42, + "2000": 0.423, + "2001": 0.427, + "2002": 0.421, + "2003": 0.421, + "2004": 0.423, + "2005": 0.424, + "2006": 0.424, + "2007": 0.426, + "2008": 0.43, + "2009": 0.434, + "2010": 0.437, + "2011": 0.44, + "2012": 0.454, + "2013": 0.466, + "2014": 0.483, + "2015": 0.495, + "2016": 0.501, + "2017": 0.52, + "2018": 0.537, + "2019": 0.553, + "2020": 0.547, + "2021": 0.548 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr106", + "Region": "Karnali Province", + "1990": 0.506, + "1991": 0.512, + "1992": 0.514, + "1993": 0.516, + "1994": 0.525, + "1995": 0.527, + "1996": 0.53, + "1997": 0.531, + "1998": 0.528, + "1999": 0.529, + "2000": 0.531, + "2001": 0.533, + "2002": 0.526, + "2003": 0.525, + "2004": 0.525, + "2005": 0.525, + "2006": 0.524, + "2007": 0.513, + "2008": 0.505, + "2009": 0.496, + "2010": 0.487, + "2011": 0.477, + "2012": 0.479, + "2013": 0.48, + "2014": 0.485, + "2015": 0.486, + "2016": 0.48, + "2017": 0.483, + "2018": 0.484, + "2019": 0.485, + "2020": 0.479, + "2021": 0.48 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr104", + "Region": "Mid-western", + "1990": 0.393, + "1991": 0.398, + "1992": 0.4, + "1993": 0.402, + "1994": 0.409, + "1995": 0.411, + "1996": 0.414, + "1997": 0.418, + "1998": 0.419, + "1999": 0.424, + "2000": 0.429, + "2001": 0.435, + "2002": 0.431, + "2003": 0.434, + "2004": 0.438, + "2005": 0.441, + "2006": 0.444, + "2007": 0.444, + "2008": 0.448, + "2009": 0.45, + "2010": 0.452, + "2011": 0.454, + "2012": 0.464, + "2013": 0.472, + "2014": 0.485, + "2015": 0.494, + "2016": 0.496, + "2017": 0.527, + "2018": 0.556, + "2019": 0.585, + "2020": 0.579, + "2021": 0.581 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr107", + "Region": "Sudoorpaschim Province", + "1990": 0.535, + "1991": 0.541, + "1992": 0.543, + "1993": 0.545, + "1994": 0.554, + "1995": 0.556, + "1996": 0.559, + "1997": 0.56, + "1998": 0.557, + "1999": 0.558, + "2000": 0.561, + "2001": 0.563, + "2002": 0.555, + "2003": 0.554, + "2004": 0.554, + "2005": 0.554, + "2006": 0.553, + "2007": 0.541, + "2008": 0.533, + "2009": 0.524, + "2010": 0.515, + "2011": 0.505, + "2012": 0.507, + "2013": 0.508, + "2014": 0.513, + "2015": 0.514, + "2016": 0.508, + "2017": 0.512, + "2018": 0.512, + "2019": 0.513, + "2020": 0.507, + "2021": 0.508 + }, + { + "Country": "Nepal", + "Continent": "Asia/Pacific", + "ISO_Code": "NPL", + "Level": "Subnat", + "GDLCODE": "NPLr103", + "Region": "Western", + "1990": 0.409, + "1991": 0.414, + "1992": 0.417, + "1993": 0.418, + "1994": 0.426, + "1995": 0.428, + "1996": 0.431, + "1997": 0.438, + "1998": 0.442, + "1999": 0.449, + "2000": 0.458, + "2001": 0.466, + "2002": 0.465, + "2003": 0.471, + "2004": 0.477, + "2005": 0.483, + "2006": 0.489, + "2007": 0.495, + "2008": 0.504, + "2009": 0.511, + "2010": 0.519, + "2011": 0.525, + "2012": 0.533, + "2013": 0.54, + "2014": 0.551, + "2015": 0.557, + "2016": 0.557, + "2017": 0.572, + "2018": 0.585, + "2019": 0.597, + "2020": 0.591, + "2021": 0.592 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "National", + "GDLCODE": "NLDt", + "Region": "Total", + "1990": 0.89, + "1991": 0.893, + "1992": 0.894, + "1993": 0.895, + "1994": 0.9, + "1995": 0.905, + "1996": 0.91, + "1997": 0.915, + "1998": 0.92, + "1999": 0.928, + "2000": 0.934, + "2001": 0.934, + "2002": 0.934, + "2003": 0.935, + "2004": 0.936, + "2005": 0.936, + "2006": 0.945, + "2007": 0.948, + "2008": 0.947, + "2009": 0.943, + "2010": 0.945, + "2011": 0.948, + "2012": 0.946, + "2013": 0.945, + "2014": 0.944, + "2015": 0.948, + "2016": 0.948, + "2017": 0.955, + "2018": 0.958, + "2019": 0.959, + "2020": 0.949, + "2021": 0.956 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr103", + "Region": "Drenthe", + "1990": 0.841, + "1991": 0.844, + "1992": 0.845, + "1993": 0.846, + "1994": 0.85, + "1995": 0.856, + "1996": 0.86, + "1997": 0.866, + "1998": 0.87, + "1999": 0.878, + "2000": 0.884, + "2001": 0.886, + "2002": 0.887, + "2003": 0.888, + "2004": 0.887, + "2005": 0.888, + "2006": 0.899, + "2007": 0.902, + "2008": 0.904, + "2009": 0.895, + "2010": 0.894, + "2011": 0.898, + "2012": 0.898, + "2013": 0.896, + "2014": 0.893, + "2015": 0.892, + "2016": 0.889, + "2017": 0.895, + "2018": 0.9, + "2019": 0.9, + "2020": 0.89, + "2021": 0.897 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr106", + "Region": "Flevoland", + "1990": 0.847, + "1991": 0.85, + "1992": 0.85, + "1993": 0.852, + "1994": 0.856, + "1995": 0.862, + "1996": 0.866, + "1997": 0.872, + "1998": 0.876, + "1999": 0.884, + "2000": 0.89, + "2001": 0.891, + "2002": 0.889, + "2003": 0.894, + "2004": 0.896, + "2005": 0.896, + "2006": 0.908, + "2007": 0.914, + "2008": 0.907, + "2009": 0.9, + "2010": 0.905, + "2011": 0.905, + "2012": 0.903, + "2013": 0.898, + "2014": 0.897, + "2015": 0.901, + "2016": 0.903, + "2017": 0.91, + "2018": 0.912, + "2019": 0.915, + "2020": 0.906, + "2021": 0.912 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr102", + "Region": "Friesland", + "1990": 0.833, + "1991": 0.836, + "1992": 0.836, + "1993": 0.837, + "1994": 0.842, + "1995": 0.847, + "1996": 0.852, + "1997": 0.857, + "1998": 0.862, + "1999": 0.869, + "2000": 0.875, + "2001": 0.878, + "2002": 0.875, + "2003": 0.879, + "2004": 0.879, + "2005": 0.881, + "2006": 0.89, + "2007": 0.894, + "2008": 0.894, + "2009": 0.89, + "2010": 0.892, + "2011": 0.898, + "2012": 0.896, + "2013": 0.893, + "2014": 0.892, + "2015": 0.891, + "2016": 0.89, + "2017": 0.896, + "2018": 0.9, + "2019": 0.9, + "2020": 0.891, + "2021": 0.898 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr105", + "Region": "Gelderland", + "1990": 0.864, + "1991": 0.867, + "1992": 0.867, + "1993": 0.868, + "1994": 0.873, + "1995": 0.878, + "1996": 0.883, + "1997": 0.888, + "1998": 0.893, + "1999": 0.901, + "2000": 0.907, + "2001": 0.906, + "2002": 0.906, + "2003": 0.907, + "2004": 0.908, + "2005": 0.906, + "2006": 0.917, + "2007": 0.92, + "2008": 0.918, + "2009": 0.917, + "2010": 0.917, + "2011": 0.923, + "2012": 0.918, + "2013": 0.917, + "2014": 0.917, + "2015": 0.92, + "2016": 0.921, + "2017": 0.928, + "2018": 0.931, + "2019": 0.932, + "2020": 0.923, + "2021": 0.93 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr101", + "Region": "Groningen", + "1990": 0.901, + "1991": 0.904, + "1992": 0.904, + "1993": 0.906, + "1994": 0.91, + "1995": 0.916, + "1996": 0.921, + "1997": 0.926, + "1998": 0.931, + "1999": 0.939, + "2000": 0.945, + "2001": 0.951, + "2002": 0.946, + "2003": 0.948, + "2004": 0.948, + "2005": 0.953, + "2006": 0.967, + "2007": 0.966, + "2008": 0.977, + "2009": 0.962, + "2010": 0.965, + "2011": 0.97, + "2012": 0.975, + "2013": 0.977, + "2014": 0.963, + "2015": 0.955, + "2016": 0.943, + "2017": 0.948, + "2018": 0.948, + "2019": 0.943, + "2020": 0.934, + "2021": 0.941 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr112", + "Region": "Limburg", + "1990": 0.862, + "1991": 0.865, + "1992": 0.865, + "1993": 0.866, + "1994": 0.871, + "1995": 0.876, + "1996": 0.881, + "1997": 0.886, + "1998": 0.891, + "1999": 0.899, + "2000": 0.905, + "2001": 0.905, + "2002": 0.905, + "2003": 0.906, + "2004": 0.91, + "2005": 0.907, + "2006": 0.915, + "2007": 0.921, + "2008": 0.918, + "2009": 0.913, + "2010": 0.916, + "2011": 0.921, + "2012": 0.918, + "2013": 0.919, + "2014": 0.917, + "2015": 0.924, + "2016": 0.929, + "2017": 0.936, + "2018": 0.938, + "2019": 0.939, + "2020": 0.929, + "2021": 0.936 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr111", + "Region": "Noord-Brabant", + "1990": 0.888, + "1991": 0.891, + "1992": 0.891, + "1993": 0.892, + "1994": 0.897, + "1995": 0.902, + "1996": 0.907, + "1997": 0.913, + "1998": 0.917, + "1999": 0.925, + "2000": 0.931, + "2001": 0.931, + "2002": 0.928, + "2003": 0.929, + "2004": 0.931, + "2005": 0.932, + "2006": 0.94, + "2007": 0.943, + "2008": 0.941, + "2009": 0.938, + "2010": 0.941, + "2011": 0.946, + "2012": 0.944, + "2013": 0.942, + "2014": 0.942, + "2015": 0.948, + "2016": 0.949, + "2017": 0.957, + "2018": 0.96, + "2019": 0.961, + "2020": 0.951, + "2021": 0.958 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr108", + "Region": "Noord-Holland", + "1990": 0.927, + "1991": 0.93, + "1992": 0.93, + "1993": 0.932, + "1994": 0.936, + "1995": 0.942, + "1996": 0.947, + "1997": 0.952, + "1998": 0.957, + "1999": 0.966, + "2000": 0.972, + "2001": 0.968, + "2002": 0.974, + "2003": 0.974, + "2004": 0.976, + "2005": 0.975, + "2006": 0.982, + "2007": 0.984, + "2008": 0.981, + "2009": 0.978, + "2010": 0.981, + "2011": 0.982, + "2012": 0.981, + "2013": 0.981, + "2014": 0.983, + "2015": 0.989, + "2016": 0.99, + "2017": 0.997, + "2018": 1, + "2019": 1, + "2020": 0.993, + "2021": 1 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr104", + "Region": "Overijssel", + "1990": 0.857, + "1991": 0.86, + "1992": 0.86, + "1993": 0.862, + "1994": 0.866, + "1995": 0.872, + "1996": 0.876, + "1997": 0.882, + "1998": 0.886, + "1999": 0.894, + "2000": 0.9, + "2001": 0.901, + "2002": 0.899, + "2003": 0.901, + "2004": 0.902, + "2005": 0.902, + "2006": 0.91, + "2007": 0.915, + "2008": 0.916, + "2009": 0.915, + "2010": 0.915, + "2011": 0.919, + "2012": 0.914, + "2013": 0.913, + "2014": 0.913, + "2015": 0.916, + "2016": 0.919, + "2017": 0.926, + "2018": 0.931, + "2019": 0.932, + "2020": 0.923, + "2021": 0.93 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr107", + "Region": "Utrecht", + "1990": 0.932, + "1991": 0.935, + "1992": 0.935, + "1993": 0.937, + "1994": 0.942, + "1995": 0.947, + "1996": 0.952, + "1997": 0.958, + "1998": 0.963, + "1999": 0.971, + "2000": 0.977, + "2001": 0.979, + "2002": 0.977, + "2003": 0.974, + "2004": 0.974, + "2005": 0.973, + "2006": 0.979, + "2007": 0.983, + "2008": 0.979, + "2009": 0.982, + "2010": 0.982, + "2011": 0.982, + "2012": 0.98, + "2013": 0.979, + "2014": 0.977, + "2015": 0.979, + "2016": 0.978, + "2017": 0.987, + "2018": 0.99, + "2019": 0.992, + "2020": 0.982, + "2021": 0.989 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr110", + "Region": "Zeeland", + "1990": 0.842, + "1991": 0.845, + "1992": 0.845, + "1993": 0.847, + "1994": 0.851, + "1995": 0.856, + "1996": 0.861, + "1997": 0.866, + "1998": 0.871, + "1999": 0.879, + "2000": 0.885, + "2001": 0.883, + "2002": 0.889, + "2003": 0.894, + "2004": 0.894, + "2005": 0.891, + "2006": 0.896, + "2007": 0.907, + "2008": 0.908, + "2009": 0.9, + "2010": 0.908, + "2011": 0.913, + "2012": 0.91, + "2013": 0.908, + "2014": 0.908, + "2015": 0.913, + "2016": 0.913, + "2017": 0.918, + "2018": 0.924, + "2019": 0.926, + "2020": 0.916, + "2021": 0.923 + }, + { + "Country": "Netherlands", + "Continent": "Europe", + "ISO_Code": "NLD", + "Level": "Subnat", + "GDLCODE": "NLDr109", + "Region": "Zuid-Holland", + "1990": 0.898, + "1991": 0.901, + "1992": 0.901, + "1993": 0.903, + "1994": 0.907, + "1995": 0.913, + "1996": 0.917, + "1997": 0.923, + "1998": 0.928, + "1999": 0.936, + "2000": 0.942, + "2001": 0.942, + "2002": 0.941, + "2003": 0.943, + "2004": 0.944, + "2005": 0.946, + "2006": 0.954, + "2007": 0.959, + "2008": 0.957, + "2009": 0.952, + "2010": 0.952, + "2011": 0.951, + "2012": 0.951, + "2013": 0.948, + "2014": 0.945, + "2015": 0.949, + "2016": 0.949, + "2017": 0.953, + "2018": 0.954, + "2019": 0.956, + "2020": 0.946, + "2021": 0.953 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "National", + "GDLCODE": "NZLt", + "Region": "Total", + "1990": 0.829, + "1991": 0.814, + "1992": 0.815, + "1993": 0.823, + "1994": 0.83, + "1995": 0.835, + "1996": 0.835, + "1997": 0.839, + "1998": 0.841, + "1999": 0.845, + "2000": 0.849, + "2001": 0.857, + "2002": 0.86, + "2003": 0.867, + "2004": 0.87, + "2005": 0.872, + "2006": 0.873, + "2007": 0.88, + "2008": 0.875, + "2009": 0.879, + "2010": 0.881, + "2011": 0.885, + "2012": 0.887, + "2013": 0.894, + "2014": 0.897, + "2015": 0.9, + "2016": 0.903, + "2017": 0.908, + "2018": 0.91, + "2019": 0.914, + "2020": 0.912, + "2021": 0.92 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr102", + "Region": "Auckland", + "1990": 0.851, + "1991": 0.836, + "1992": 0.837, + "1993": 0.844, + "1994": 0.851, + "1995": 0.856, + "1996": 0.857, + "1997": 0.861, + "1998": 0.863, + "1999": 0.866, + "2000": 0.871, + "2001": 0.873, + "2002": 0.875, + "2003": 0.887, + "2004": 0.89, + "2005": 0.892, + "2006": 0.891, + "2007": 0.895, + "2008": 0.888, + "2009": 0.887, + "2010": 0.891, + "2011": 0.894, + "2012": 0.895, + "2013": 0.903, + "2014": 0.903, + "2015": 0.91, + "2016": 0.916, + "2017": 0.92, + "2018": 0.923, + "2019": 0.926, + "2020": 0.925, + "2021": 0.932 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr104", + "Region": "Bay of Plenty", + "1990": 0.798, + "1991": 0.784, + "1992": 0.785, + "1993": 0.792, + "1994": 0.799, + "1995": 0.804, + "1996": 0.805, + "1997": 0.808, + "1998": 0.81, + "1999": 0.814, + "2000": 0.818, + "2001": 0.827, + "2002": 0.83, + "2003": 0.834, + "2004": 0.837, + "2005": 0.839, + "2006": 0.839, + "2007": 0.851, + "2008": 0.846, + "2009": 0.847, + "2010": 0.851, + "2011": 0.857, + "2012": 0.858, + "2013": 0.866, + "2014": 0.866, + "2015": 0.866, + "2016": 0.875, + "2017": 0.879, + "2018": 0.882, + "2019": 0.885, + "2020": 0.884, + "2021": 0.891 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr113", + "Region": "Canterbury", + "1990": 0.814, + "1991": 0.8, + "1992": 0.801, + "1993": 0.808, + "1994": 0.815, + "1995": 0.819, + "1996": 0.82, + "1997": 0.824, + "1998": 0.826, + "1999": 0.83, + "2000": 0.834, + "2001": 0.84, + "2002": 0.844, + "2003": 0.853, + "2004": 0.858, + "2005": 0.862, + "2006": 0.863, + "2007": 0.871, + "2008": 0.864, + "2009": 0.87, + "2010": 0.872, + "2011": 0.878, + "2012": 0.883, + "2013": 0.895, + "2014": 0.902, + "2015": 0.905, + "2016": 0.908, + "2017": 0.912, + "2018": 0.915, + "2019": 0.918, + "2020": 0.917, + "2021": 0.924 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr105", + "Region": "Gisborne", + "1990": 0.778, + "1991": 0.764, + "1992": 0.765, + "1993": 0.772, + "1994": 0.779, + "1995": 0.784, + "1996": 0.785, + "1997": 0.788, + "1998": 0.79, + "1999": 0.794, + "2000": 0.798, + "2001": 0.806, + "2002": 0.808, + "2003": 0.813, + "2004": 0.81, + "2005": 0.812, + "2006": 0.808, + "2007": 0.823, + "2008": 0.812, + "2009": 0.823, + "2010": 0.826, + "2011": 0.832, + "2012": 0.831, + "2013": 0.837, + "2014": 0.836, + "2015": 0.842, + "2016": 0.845, + "2017": 0.849, + "2018": 0.852, + "2019": 0.855, + "2020": 0.853, + "2021": 0.861 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr106", + "Region": "Hawkes Bay", + "1990": 0.803, + "1991": 0.789, + "1992": 0.79, + "1993": 0.797, + "1994": 0.804, + "1995": 0.808, + "1996": 0.809, + "1997": 0.813, + "1998": 0.815, + "1999": 0.819, + "2000": 0.823, + "2001": 0.833, + "2002": 0.837, + "2003": 0.846, + "2004": 0.851, + "2005": 0.855, + "2006": 0.852, + "2007": 0.857, + "2008": 0.838, + "2009": 0.846, + "2010": 0.847, + "2011": 0.853, + "2012": 0.852, + "2013": 0.861, + "2014": 0.863, + "2015": 0.863, + "2016": 0.866, + "2017": 0.87, + "2018": 0.872, + "2019": 0.876, + "2020": 0.874, + "2021": 0.882 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr108", + "Region": "Manawatu-Wanganui", + "1990": 0.787, + "1991": 0.772, + "1992": 0.773, + "1993": 0.78, + "1994": 0.787, + "1995": 0.792, + "1996": 0.793, + "1997": 0.796, + "1998": 0.798, + "1999": 0.802, + "2000": 0.806, + "2001": 0.817, + "2002": 0.822, + "2003": 0.825, + "2004": 0.83, + "2005": 0.832, + "2006": 0.838, + "2007": 0.841, + "2008": 0.838, + "2009": 0.839, + "2010": 0.845, + "2011": 0.85, + "2012": 0.847, + "2013": 0.852, + "2014": 0.855, + "2015": 0.856, + "2016": 0.859, + "2017": 0.864, + "2018": 0.866, + "2019": 0.87, + "2020": 0.868, + "2021": 0.875 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr111", + "Region": "Marlborough", + "1990": 0.804, + "1991": 0.79, + "1992": 0.791, + "1993": 0.798, + "1994": 0.805, + "1995": 0.809, + "1996": 0.81, + "1997": 0.814, + "1998": 0.816, + "1999": 0.82, + "2000": 0.824, + "2001": 0.837, + "2002": 0.845, + "2003": 0.849, + "2004": 0.857, + "2005": 0.857, + "2006": 0.858, + "2007": 0.873, + "2008": 0.874, + "2009": 0.882, + "2010": 0.876, + "2011": 0.876, + "2012": 0.881, + "2013": 0.893, + "2014": 0.903, + "2015": 0.909, + "2016": 0.911, + "2017": 0.916, + "2018": 0.918, + "2019": 0.922, + "2020": 0.92, + "2021": 0.928 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr101", + "Region": "Northland", + "1990": 0.77, + "1991": 0.756, + "1992": 0.757, + "1993": 0.764, + "1994": 0.771, + "1995": 0.775, + "1996": 0.776, + "1997": 0.78, + "1998": 0.782, + "1999": 0.785, + "2000": 0.79, + "2001": 0.805, + "2002": 0.81, + "2003": 0.806, + "2004": 0.811, + "2005": 0.818, + "2006": 0.823, + "2007": 0.836, + "2008": 0.827, + "2009": 0.832, + "2010": 0.823, + "2011": 0.83, + "2012": 0.828, + "2013": 0.831, + "2014": 0.837, + "2015": 0.839, + "2016": 0.843, + "2017": 0.847, + "2018": 0.85, + "2019": 0.853, + "2020": 0.852, + "2021": 0.859 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr114", + "Region": "Otago", + "1990": 0.801, + "1991": 0.786, + "1992": 0.787, + "1993": 0.795, + "1994": 0.802, + "1995": 0.806, + "1996": 0.807, + "1997": 0.811, + "1998": 0.813, + "1999": 0.816, + "2000": 0.821, + "2001": 0.832, + "2002": 0.839, + "2003": 0.848, + "2004": 0.853, + "2005": 0.856, + "2006": 0.856, + "2007": 0.863, + "2008": 0.856, + "2009": 0.864, + "2010": 0.869, + "2011": 0.872, + "2012": 0.872, + "2013": 0.88, + "2014": 0.883, + "2015": 0.884, + "2016": 0.889, + "2017": 0.894, + "2018": 0.896, + "2019": 0.9, + "2020": 0.898, + "2021": 0.905 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr115", + "Region": "Southland", + "1990": 0.817, + "1991": 0.802, + "1992": 0.803, + "1993": 0.811, + "1994": 0.818, + "1995": 0.822, + "1996": 0.823, + "1997": 0.827, + "1998": 0.829, + "1999": 0.833, + "2000": 0.837, + "2001": 0.86, + "2002": 0.866, + "2003": 0.863, + "2004": 0.864, + "2005": 0.857, + "2006": 0.862, + "2007": 0.873, + "2008": 0.878, + "2009": 0.89, + "2010": 0.891, + "2011": 0.902, + "2012": 0.899, + "2013": 0.898, + "2014": 0.911, + "2015": 0.901, + "2016": 0.899, + "2017": 0.903, + "2018": 0.905, + "2019": 0.909, + "2020": 0.907, + "2021": 0.915 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr107", + "Region": "Taranaki", + "1990": 0.86, + "1991": 0.844, + "1992": 0.845, + "1993": 0.853, + "1994": 0.86, + "1995": 0.865, + "1996": 0.866, + "1997": 0.87, + "1998": 0.872, + "1999": 0.876, + "2000": 0.88, + "2001": 0.911, + "2002": 0.909, + "2003": 0.907, + "2004": 0.901, + "2005": 0.895, + "2006": 0.895, + "2007": 0.921, + "2008": 0.959, + "2009": 0.967, + "2010": 0.959, + "2011": 0.963, + "2012": 0.957, + "2013": 0.963, + "2014": 0.964, + "2015": 0.96, + "2016": 0.945, + "2017": 0.95, + "2018": 0.952, + "2019": 0.956, + "2020": 0.954, + "2021": 0.962 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr110", + "Region": "Tasman - Nelson", + "1990": 0.801, + "1991": 0.787, + "1992": 0.788, + "1993": 0.795, + "1994": 0.802, + "1995": 0.807, + "1996": 0.808, + "1997": 0.811, + "1998": 0.813, + "1999": 0.817, + "2000": 0.821, + "2001": 0.829, + "2002": 0.835, + "2003": 0.841, + "2004": 0.846, + "2005": 0.848, + "2006": 0.841, + "2007": 0.853, + "2008": 0.845, + "2009": 0.852, + "2010": 0.855, + "2011": 0.858, + "2012": 0.855, + "2013": 0.862, + "2014": 0.866, + "2015": 0.869, + "2016": 0.871, + "2017": 0.876, + "2018": 0.878, + "2019": 0.882, + "2020": 0.88, + "2021": 0.887 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr103", + "Region": "Waikato", + "1990": 0.806, + "1991": 0.791, + "1992": 0.792, + "1993": 0.799, + "1994": 0.806, + "1995": 0.811, + "1996": 0.812, + "1997": 0.815, + "1998": 0.817, + "1999": 0.821, + "2000": 0.825, + "2001": 0.843, + "2002": 0.85, + "2003": 0.844, + "2004": 0.85, + "2005": 0.85, + "2006": 0.854, + "2007": 0.868, + "2008": 0.86, + "2009": 0.869, + "2010": 0.863, + "2011": 0.869, + "2012": 0.873, + "2013": 0.873, + "2014": 0.882, + "2015": 0.879, + "2016": 0.882, + "2017": 0.886, + "2018": 0.889, + "2019": 0.892, + "2020": 0.891, + "2021": 0.898 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr109", + "Region": "Wellington", + "1990": 0.873, + "1991": 0.857, + "1992": 0.859, + "1993": 0.866, + "1994": 0.873, + "1995": 0.878, + "1996": 0.879, + "1997": 0.883, + "1998": 0.885, + "1999": 0.889, + "2000": 0.893, + "2001": 0.894, + "2002": 0.898, + "2003": 0.905, + "2004": 0.906, + "2005": 0.905, + "2006": 0.907, + "2007": 0.912, + "2008": 0.906, + "2009": 0.912, + "2010": 0.917, + "2011": 0.919, + "2012": 0.922, + "2013": 0.929, + "2014": 0.929, + "2015": 0.934, + "2016": 0.938, + "2017": 0.942, + "2018": 0.945, + "2019": 0.949, + "2020": 0.947, + "2021": 0.954 + }, + { + "Country": "New Zealand", + "Continent": "Asia/Pacific", + "ISO_Code": "NZL", + "Level": "Subnat", + "GDLCODE": "NZLr112", + "Region": "West Coast", + "1990": 0.786, + "1991": 0.771, + "1992": 0.772, + "1993": 0.779, + "1994": 0.786, + "1995": 0.791, + "1996": 0.792, + "1997": 0.795, + "1998": 0.797, + "1999": 0.801, + "2000": 0.805, + "2001": 0.825, + "2002": 0.829, + "2003": 0.825, + "2004": 0.834, + "2005": 0.834, + "2006": 0.851, + "2007": 0.861, + "2008": 0.868, + "2009": 0.885, + "2010": 0.879, + "2011": 0.887, + "2012": 0.892, + "2013": 0.891, + "2014": 0.896, + "2015": 0.888, + "2016": 0.885, + "2017": 0.89, + "2018": 0.892, + "2019": 0.896, + "2020": 0.894, + "2021": 0.901 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "National", + "GDLCODE": "NICt", + "Region": "Total", + "1990": 0.515, + "1991": 0.511, + "1992": 0.511, + "1993": 0.505, + "1994": 0.505, + "1995": 0.517, + "1996": 0.526, + "1997": 0.532, + "1998": 0.538, + "1999": 0.546, + "2000": 0.55, + "2001": 0.551, + "2002": 0.551, + "2003": 0.554, + "2004": 0.56, + "2005": 0.566, + "2006": 0.569, + "2007": 0.575, + "2008": 0.578, + "2009": 0.57, + "2010": 0.575, + "2011": 0.582, + "2012": 0.588, + "2013": 0.592, + "2014": 0.599, + "2015": 0.603, + "2016": 0.606, + "2017": 0.611, + "2018": 0.604, + "2019": 0.599, + "2020": 0.595, + "2021": 0.609 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr103", + "Region": "Atlantico (Rio San Juan, Atlantico Norte (Raan), Atlantico Sur (Raas))", + "1990": 0.434, + "1991": 0.431, + "1992": 0.431, + "1993": 0.425, + "1994": 0.424, + "1995": 0.436, + "1996": 0.444, + "1997": 0.45, + "1998": 0.456, + "1999": 0.462, + "2000": 0.464, + "2001": 0.464, + "2002": 0.466, + "2003": 0.47, + "2004": 0.478, + "2005": 0.486, + "2006": 0.49, + "2007": 0.498, + "2008": 0.496, + "2009": 0.483, + "2010": 0.482, + "2011": 0.483, + "2012": 0.482, + "2013": 0.486, + "2014": 0.492, + "2015": 0.496, + "2016": 0.499, + "2017": 0.503, + "2018": 0.497, + "2019": 0.492, + "2020": 0.489, + "2021": 0.501 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr102", + "Region": "Central-Norte (Boaco, Chontales, Jinotega, Matagalpa, Esteli, Madriz, Nueva Segovia)", + "1990": 0.457, + "1991": 0.454, + "1992": 0.454, + "1993": 0.448, + "1994": 0.448, + "1995": 0.459, + "1996": 0.468, + "1997": 0.473, + "1998": 0.48, + "1999": 0.486, + "2000": 0.489, + "2001": 0.49, + "2002": 0.502, + "2003": 0.516, + "2004": 0.535, + "2005": 0.552, + "2006": 0.567, + "2007": 0.586, + "2008": 0.58, + "2009": 0.563, + "2010": 0.558, + "2011": 0.556, + "2012": 0.553, + "2013": 0.557, + "2014": 0.563, + "2015": 0.568, + "2016": 0.571, + "2017": 0.575, + "2018": 0.568, + "2019": 0.563, + "2020": 0.56, + "2021": 0.573 + }, + { + "Country": "Nicaragua", + "Continent": "America", + "ISO_Code": "NIC", + "Level": "Subnat", + "GDLCODE": "NICr101", + "Region": "Pacifico (Chinandega, Leon, Managua, Masaya, Granada, Carazo, Rivas)", + "1990": 0.554, + "1991": 0.55, + "1992": 0.55, + "1993": 0.544, + "1994": 0.544, + "1995": 0.556, + "1996": 0.565, + "1997": 0.572, + "1998": 0.578, + "1999": 0.59, + "2000": 0.597, + "2001": 0.602, + "2002": 0.595, + "2003": 0.591, + "2004": 0.591, + "2005": 0.59, + "2006": 0.586, + "2007": 0.586, + "2008": 0.595, + "2009": 0.593, + "2010": 0.603, + "2011": 0.617, + "2012": 0.628, + "2013": 0.632, + "2014": 0.639, + "2015": 0.644, + "2016": 0.647, + "2017": 0.651, + "2018": 0.645, + "2019": 0.639, + "2020": 0.635, + "2021": 0.65 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "National", + "GDLCODE": "NERt", + "Region": "Total", + "1990": 0.367, + "1991": 0.361, + "1992": 0.359, + "1993": 0.355, + "1994": 0.352, + "1995": 0.351, + "1996": 0.348, + "1997": 0.345, + "1998": 0.356, + "1999": 0.351, + "2000": 0.344, + "2001": 0.349, + "2002": 0.352, + "2003": 0.349, + "2004": 0.346, + "2005": 0.351, + "2006": 0.354, + "2007": 0.353, + "2008": 0.357, + "2009": 0.355, + "2010": 0.361, + "2011": 0.36, + "2012": 0.365, + "2013": 0.368, + "2014": 0.373, + "2015": 0.374, + "2016": 0.374, + "2017": 0.376, + "2018": 0.382, + "2019": 0.385, + "2020": 0.384, + "2021": 0.38 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr101", + "Region": "Agadez", + "1990": 0.479, + "1991": 0.473, + "1992": 0.471, + "1993": 0.466, + "1994": 0.463, + "1995": 0.462, + "1996": 0.458, + "1997": 0.455, + "1998": 0.467, + "1999": 0.454, + "2000": 0.438, + "2001": 0.437, + "2002": 0.431, + "2003": 0.42, + "2004": 0.409, + "2005": 0.407, + "2006": 0.402, + "2007": 0.401, + "2008": 0.408, + "2009": 0.406, + "2010": 0.415, + "2011": 0.415, + "2012": 0.422, + "2013": 0.424, + "2014": 0.429, + "2015": 0.431, + "2016": 0.431, + "2017": 0.433, + "2018": 0.44, + "2019": 0.442, + "2020": 0.441, + "2021": 0.437 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr102", + "Region": "Diffa", + "1990": 0.366, + "1991": 0.36, + "1992": 0.358, + "1993": 0.354, + "1994": 0.351, + "1995": 0.35, + "1996": 0.347, + "1997": 0.344, + "1998": 0.355, + "1999": 0.35, + "2000": 0.342, + "2001": 0.347, + "2002": 0.349, + "2003": 0.346, + "2004": 0.343, + "2005": 0.347, + "2006": 0.35, + "2007": 0.353, + "2008": 0.362, + "2009": 0.364, + "2010": 0.375, + "2011": 0.379, + "2012": 0.388, + "2013": 0.391, + "2014": 0.396, + "2015": 0.397, + "2016": 0.397, + "2017": 0.399, + "2018": 0.406, + "2019": 0.408, + "2020": 0.407, + "2021": 0.404 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr103", + "Region": "Dosso", + "1990": 0.352, + "1991": 0.347, + "1992": 0.345, + "1993": 0.341, + "1994": 0.338, + "1995": 0.337, + "1996": 0.334, + "1997": 0.331, + "1998": 0.342, + "1999": 0.337, + "2000": 0.331, + "2001": 0.337, + "2002": 0.34, + "2003": 0.338, + "2004": 0.335, + "2005": 0.341, + "2006": 0.344, + "2007": 0.341, + "2008": 0.345, + "2009": 0.342, + "2010": 0.347, + "2011": 0.345, + "2012": 0.349, + "2013": 0.351, + "2014": 0.356, + "2015": 0.357, + "2016": 0.357, + "2017": 0.36, + "2018": 0.366, + "2019": 0.368, + "2020": 0.367, + "2021": 0.364 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr104", + "Region": "Maradi", + "1990": 0.365, + "1991": 0.36, + "1992": 0.358, + "1993": 0.353, + "1994": 0.35, + "1995": 0.349, + "1996": 0.346, + "1997": 0.344, + "1998": 0.355, + "1999": 0.349, + "2000": 0.341, + "2001": 0.346, + "2002": 0.348, + "2003": 0.344, + "2004": 0.341, + "2005": 0.345, + "2006": 0.347, + "2007": 0.346, + "2008": 0.351, + "2009": 0.348, + "2010": 0.355, + "2011": 0.354, + "2012": 0.359, + "2013": 0.362, + "2014": 0.366, + "2015": 0.368, + "2016": 0.368, + "2017": 0.37, + "2018": 0.376, + "2019": 0.379, + "2020": 0.378, + "2021": 0.374 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr106", + "Region": "Tahoua", + "1990": 0.344, + "1991": 0.338, + "1992": 0.336, + "1993": 0.332, + "1994": 0.329, + "1995": 0.328, + "1996": 0.325, + "1997": 0.323, + "1998": 0.333, + "1999": 0.329, + "2000": 0.322, + "2001": 0.328, + "2002": 0.331, + "2003": 0.329, + "2004": 0.326, + "2005": 0.331, + "2006": 0.335, + "2007": 0.334, + "2008": 0.339, + "2009": 0.337, + "2010": 0.344, + "2011": 0.343, + "2012": 0.349, + "2013": 0.351, + "2014": 0.356, + "2015": 0.357, + "2016": 0.357, + "2017": 0.359, + "2018": 0.365, + "2019": 0.368, + "2020": 0.367, + "2021": 0.363 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr105", + "Region": "Tillabery (incl Niamey)", + "1990": 0.399, + "1991": 0.394, + "1992": 0.392, + "1993": 0.387, + "1994": 0.384, + "1995": 0.383, + "1996": 0.38, + "1997": 0.377, + "1998": 0.388, + "1999": 0.384, + "2000": 0.378, + "2001": 0.386, + "2002": 0.389, + "2003": 0.388, + "2004": 0.386, + "2005": 0.393, + "2006": 0.397, + "2007": 0.398, + "2008": 0.405, + "2009": 0.404, + "2010": 0.413, + "2011": 0.414, + "2012": 0.421, + "2013": 0.424, + "2014": 0.429, + "2015": 0.43, + "2016": 0.43, + "2017": 0.433, + "2018": 0.439, + "2019": 0.442, + "2020": 0.441, + "2021": 0.437 + }, + { + "Country": "Niger", + "Continent": "Africa", + "ISO_Code": "NER", + "Level": "Subnat", + "GDLCODE": "NERr107", + "Region": "Zinder", + "1990": 0.355, + "1991": 0.35, + "1992": 0.348, + "1993": 0.343, + "1994": 0.34, + "1995": 0.339, + "1996": 0.336, + "1997": 0.334, + "1998": 0.345, + "1999": 0.339, + "2000": 0.332, + "2001": 0.338, + "2002": 0.34, + "2003": 0.337, + "2004": 0.333, + "2005": 0.338, + "2006": 0.341, + "2007": 0.337, + "2008": 0.34, + "2009": 0.335, + "2010": 0.34, + "2011": 0.337, + "2012": 0.339, + "2013": 0.342, + "2014": 0.347, + "2015": 0.348, + "2016": 0.348, + "2017": 0.35, + "2018": 0.356, + "2019": 0.359, + "2020": 0.358, + "2021": 0.354 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "National", + "GDLCODE": "NGAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.528, + "2004": 0.538, + "2005": 0.543, + "2006": 0.558, + "2007": 0.559, + "2008": 0.566, + "2009": 0.573, + "2010": 0.58, + "2011": 0.583, + "2012": 0.586, + "2013": 0.592, + "2014": 0.6, + "2015": 0.601, + "2016": 0.596, + "2017": 0.592, + "2018": 0.589, + "2019": 0.59, + "2020": 0.583, + "2021": 0.584 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr122", + "Region": "Abia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.545, + "2004": 0.567, + "2005": 0.582, + "2006": 0.609, + "2007": 0.622, + "2008": 0.641, + "2009": 0.641, + "2010": 0.641, + "2011": 0.638, + "2012": 0.634, + "2013": 0.633, + "2014": 0.649, + "2015": 0.658, + "2016": 0.661, + "2017": 0.664, + "2018": 0.669, + "2019": 0.67, + "2020": 0.663, + "2021": 0.665 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr137", + "Region": "Abuja FCT", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.628, + "2004": 0.642, + "2005": 0.65, + "2006": 0.669, + "2007": 0.673, + "2008": 0.683, + "2009": 0.69, + "2010": 0.697, + "2011": 0.701, + "2012": 0.703, + "2013": 0.709, + "2014": 0.711, + "2015": 0.705, + "2016": 0.693, + "2017": 0.682, + "2018": 0.672, + "2019": 0.673, + "2020": 0.666, + "2021": 0.667 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr108", + "Region": "Adamawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.47, + "2004": 0.478, + "2005": 0.48, + "2006": 0.492, + "2007": 0.491, + "2008": 0.495, + "2009": 0.512, + "2010": 0.529, + "2011": 0.543, + "2012": 0.556, + "2013": 0.573, + "2014": 0.577, + "2015": 0.574, + "2016": 0.565, + "2017": 0.558, + "2018": 0.551, + "2019": 0.553, + "2020": 0.546, + "2021": 0.547 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr101", + "Region": "Akwa Ibom", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.52, + "2004": 0.536, + "2005": 0.547, + "2006": 0.568, + "2007": 0.576, + "2008": 0.589, + "2009": 0.599, + "2010": 0.608, + "2011": 0.615, + "2012": 0.621, + "2013": 0.63, + "2014": 0.638, + "2015": 0.639, + "2016": 0.633, + "2017": 0.629, + "2018": 0.626, + "2019": 0.627, + "2020": 0.62, + "2021": 0.622 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr102", + "Region": "Anambra", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.6, + "2004": 0.612, + "2005": 0.617, + "2006": 0.634, + "2007": 0.637, + "2008": 0.644, + "2009": 0.656, + "2010": 0.667, + "2011": 0.675, + "2012": 0.682, + "2013": 0.693, + "2014": 0.697, + "2015": 0.694, + "2016": 0.684, + "2017": 0.676, + "2018": 0.668, + "2019": 0.67, + "2020": 0.662, + "2021": 0.664 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr103", + "Region": "Bauchi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.45, + "2004": 0.457, + "2005": 0.458, + "2006": 0.468, + "2007": 0.466, + "2008": 0.469, + "2009": 0.478, + "2010": 0.486, + "2011": 0.492, + "2012": 0.496, + "2013": 0.504, + "2014": 0.514, + "2015": 0.518, + "2016": 0.516, + "2017": 0.515, + "2018": 0.515, + "2019": 0.516, + "2020": 0.509, + "2021": 0.511 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr131", + "Region": "Bayelsa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.43, + "2004": 0.455, + "2005": 0.473, + "2006": 0.503, + "2007": 0.519, + "2008": 0.54, + "2009": 0.557, + "2010": 0.574, + "2011": 0.587, + "2012": 0.6, + "2013": 0.616, + "2014": 0.617, + "2015": 0.612, + "2016": 0.6, + "2017": 0.589, + "2018": 0.58, + "2019": 0.581, + "2020": 0.574, + "2021": 0.575 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr105", + "Region": "Benue", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.489, + "2004": 0.493, + "2005": 0.491, + "2006": 0.499, + "2007": 0.494, + "2008": 0.493, + "2009": 0.502, + "2010": 0.51, + "2011": 0.516, + "2012": 0.521, + "2013": 0.529, + "2014": 0.546, + "2015": 0.557, + "2016": 0.561, + "2017": 0.567, + "2018": 0.573, + "2019": 0.575, + "2020": 0.568, + "2021": 0.569 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr106", + "Region": "Borno", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.538, + "2004": 0.532, + "2005": 0.521, + "2006": 0.519, + "2007": 0.505, + "2008": 0.495, + "2009": 0.509, + "2010": 0.523, + "2011": 0.534, + "2012": 0.544, + "2013": 0.558, + "2014": 0.568, + "2015": 0.573, + "2016": 0.57, + "2017": 0.569, + "2018": 0.569, + "2019": 0.57, + "2020": 0.563, + "2021": 0.565 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr107", + "Region": "Cross River", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.511, + "2004": 0.515, + "2005": 0.512, + "2006": 0.52, + "2007": 0.515, + "2008": 0.515, + "2009": 0.529, + "2010": 0.542, + "2011": 0.552, + "2012": 0.562, + "2013": 0.575, + "2014": 0.583, + "2015": 0.585, + "2016": 0.581, + "2017": 0.578, + "2018": 0.575, + "2019": 0.577, + "2020": 0.57, + "2021": 0.571 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr123", + "Region": "Delta", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.546, + "2004": 0.561, + "2005": 0.57, + "2006": 0.589, + "2007": 0.596, + "2008": 0.607, + "2009": 0.614, + "2010": 0.62, + "2011": 0.624, + "2012": 0.627, + "2013": 0.632, + "2014": 0.643, + "2015": 0.647, + "2016": 0.643, + "2017": 0.642, + "2018": 0.641, + "2019": 0.642, + "2020": 0.635, + "2021": 0.637 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr132", + "Region": "Ebonyi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.431, + "2004": 0.451, + "2005": 0.465, + "2006": 0.49, + "2007": 0.502, + "2008": 0.519, + "2009": 0.525, + "2010": 0.531, + "2011": 0.534, + "2012": 0.537, + "2013": 0.542, + "2014": 0.55, + "2015": 0.553, + "2016": 0.549, + "2017": 0.546, + "2018": 0.544, + "2019": 0.545, + "2020": 0.538, + "2021": 0.54 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr104", + "Region": "Edo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.544, + "2004": 0.565, + "2005": 0.58, + "2006": 0.606, + "2007": 0.618, + "2008": 0.635, + "2009": 0.642, + "2010": 0.648, + "2011": 0.651, + "2012": 0.652, + "2013": 0.658, + "2014": 0.66, + "2015": 0.656, + "2016": 0.645, + "2017": 0.636, + "2018": 0.627, + "2019": 0.629, + "2020": 0.621, + "2021": 0.623 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr133", + "Region": "Ekiti", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.536, + "2004": 0.546, + "2005": 0.551, + "2006": 0.567, + "2007": 0.568, + "2008": 0.575, + "2009": 0.593, + "2010": 0.611, + "2011": 0.626, + "2012": 0.64, + "2013": 0.657, + "2014": 0.652, + "2015": 0.641, + "2016": 0.622, + "2017": 0.606, + "2018": 0.59, + "2019": 0.591, + "2020": 0.584, + "2021": 0.586 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr124", + "Region": "Enugu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.571, + "2004": 0.571, + "2005": 0.565, + "2006": 0.569, + "2007": 0.559, + "2008": 0.555, + "2009": 0.566, + "2010": 0.577, + "2011": 0.586, + "2012": 0.593, + "2013": 0.604, + "2014": 0.614, + "2015": 0.618, + "2016": 0.616, + "2017": 0.614, + "2018": 0.614, + "2019": 0.615, + "2020": 0.608, + "2021": 0.61 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr134", + "Region": "Gombe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.475, + "2004": 0.481, + "2005": 0.481, + "2006": 0.492, + "2007": 0.489, + "2008": 0.491, + "2009": 0.505, + "2010": 0.518, + "2011": 0.529, + "2012": 0.539, + "2013": 0.552, + "2014": 0.557, + "2015": 0.555, + "2016": 0.547, + "2017": 0.54, + "2018": 0.534, + "2019": 0.536, + "2020": 0.529, + "2021": 0.53 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr109", + "Region": "Imo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.665, + "2004": 0.659, + "2005": 0.646, + "2006": 0.645, + "2007": 0.629, + "2008": 0.618, + "2009": 0.625, + "2010": 0.631, + "2011": 0.634, + "2012": 0.636, + "2013": 0.641, + "2014": 0.654, + "2015": 0.661, + "2016": 0.66, + "2017": 0.661, + "2018": 0.663, + "2019": 0.665, + "2020": 0.657, + "2021": 0.659 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr125", + "Region": "Jigawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.416, + "2004": 0.429, + "2005": 0.436, + "2006": 0.453, + "2007": 0.458, + "2008": 0.468, + "2009": 0.479, + "2010": 0.49, + "2011": 0.499, + "2012": 0.506, + "2013": 0.516, + "2014": 0.521, + "2015": 0.519, + "2016": 0.511, + "2017": 0.505, + "2018": 0.499, + "2019": 0.501, + "2020": 0.494, + "2021": 0.495 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr110", + "Region": "Kaduna", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.571, + "2004": 0.576, + "2005": 0.575, + "2006": 0.585, + "2007": 0.581, + "2008": 0.582, + "2009": 0.589, + "2010": 0.596, + "2011": 0.601, + "2012": 0.604, + "2013": 0.61, + "2014": 0.616, + "2015": 0.615, + "2016": 0.606, + "2017": 0.6, + "2018": 0.594, + "2019": 0.596, + "2020": 0.588, + "2021": 0.59 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr111", + "Region": "Kano", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.558, + "2004": 0.558, + "2005": 0.552, + "2006": 0.556, + "2007": 0.547, + "2008": 0.543, + "2009": 0.55, + "2010": 0.557, + "2011": 0.562, + "2012": 0.565, + "2013": 0.571, + "2014": 0.577, + "2015": 0.576, + "2016": 0.569, + "2017": 0.563, + "2018": 0.558, + "2019": 0.559, + "2020": 0.552, + "2021": 0.553 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr112", + "Region": "Katsina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.527, + "2004": 0.526, + "2005": 0.519, + "2006": 0.522, + "2007": 0.512, + "2008": 0.506, + "2009": 0.514, + "2010": 0.522, + "2011": 0.527, + "2012": 0.531, + "2013": 0.537, + "2014": 0.546, + "2015": 0.548, + "2016": 0.543, + "2017": 0.541, + "2018": 0.539, + "2019": 0.54, + "2020": 0.533, + "2021": 0.535 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr126", + "Region": "Kebbi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.464, + "2004": 0.474, + "2005": 0.478, + "2006": 0.493, + "2007": 0.494, + "2008": 0.501, + "2009": 0.506, + "2010": 0.51, + "2011": 0.512, + "2012": 0.513, + "2013": 0.517, + "2014": 0.524, + "2015": 0.525, + "2016": 0.519, + "2017": 0.516, + "2018": 0.513, + "2019": 0.514, + "2020": 0.507, + "2021": 0.509 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr127", + "Region": "Kogi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.548, + "2004": 0.556, + "2005": 0.558, + "2006": 0.57, + "2007": 0.569, + "2008": 0.573, + "2009": 0.58, + "2010": 0.587, + "2011": 0.592, + "2012": 0.595, + "2013": 0.601, + "2014": 0.605, + "2015": 0.603, + "2016": 0.594, + "2017": 0.587, + "2018": 0.581, + "2019": 0.582, + "2020": 0.575, + "2021": 0.576 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr113", + "Region": "Kwara", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.57, + "2004": 0.571, + "2005": 0.566, + "2006": 0.572, + "2007": 0.563, + "2008": 0.56, + "2009": 0.582, + "2010": 0.604, + "2011": 0.623, + "2012": 0.64, + "2013": 0.662, + "2014": 0.658, + "2015": 0.647, + "2016": 0.629, + "2017": 0.613, + "2018": 0.598, + "2019": 0.6, + "2020": 0.592, + "2021": 0.594 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr114", + "Region": "Lagos", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.645, + "2004": 0.66, + "2005": 0.669, + "2006": 0.69, + "2007": 0.696, + "2008": 0.708, + "2009": 0.709, + "2010": 0.711, + "2011": 0.709, + "2012": 0.706, + "2013": 0.706, + "2014": 0.71, + "2015": 0.706, + "2016": 0.694, + "2017": 0.685, + "2018": 0.676, + "2019": 0.678, + "2020": 0.67, + "2021": 0.672 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr135", + "Region": "Nassarawa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.505, + "2004": 0.516, + "2005": 0.52, + "2006": 0.534, + "2007": 0.536, + "2008": 0.542, + "2009": 0.553, + "2010": 0.564, + "2011": 0.573, + "2012": 0.58, + "2013": 0.59, + "2014": 0.603, + "2015": 0.609, + "2016": 0.609, + "2017": 0.61, + "2018": 0.612, + "2019": 0.613, + "2020": 0.606, + "2021": 0.608 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr115", + "Region": "Niger", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.498, + "2004": 0.512, + "2005": 0.521, + "2006": 0.54, + "2007": 0.546, + "2008": 0.557, + "2009": 0.563, + "2010": 0.568, + "2011": 0.571, + "2012": 0.573, + "2013": 0.578, + "2014": 0.586, + "2015": 0.588, + "2016": 0.583, + "2017": 0.58, + "2018": 0.577, + "2019": 0.578, + "2020": 0.571, + "2021": 0.573 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr116", + "Region": "Ogun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.542, + "2004": 0.549, + "2005": 0.55, + "2006": 0.561, + "2007": 0.559, + "2008": 0.561, + "2009": 0.57, + "2010": 0.579, + "2011": 0.585, + "2012": 0.59, + "2013": 0.598, + "2014": 0.616, + "2015": 0.628, + "2016": 0.633, + "2017": 0.639, + "2018": 0.646, + "2019": 0.647, + "2020": 0.64, + "2021": 0.641 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr117", + "Region": "Ondo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.498, + "2004": 0.514, + "2005": 0.524, + "2006": 0.545, + "2007": 0.553, + "2008": 0.566, + "2009": 0.579, + "2010": 0.592, + "2011": 0.602, + "2012": 0.611, + "2013": 0.623, + "2014": 0.627, + "2015": 0.623, + "2016": 0.613, + "2017": 0.605, + "2018": 0.597, + "2019": 0.599, + "2020": 0.591, + "2021": 0.593 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr128", + "Region": "Osun", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.54, + "2004": 0.551, + "2005": 0.556, + "2006": 0.572, + "2007": 0.574, + "2008": 0.581, + "2009": 0.595, + "2010": 0.609, + "2011": 0.62, + "2012": 0.63, + "2013": 0.644, + "2014": 0.641, + "2015": 0.631, + "2016": 0.615, + "2017": 0.6, + "2018": 0.587, + "2019": 0.588, + "2020": 0.581, + "2021": 0.582 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr118", + "Region": "Oyo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.536, + "2004": 0.548, + "2005": 0.555, + "2006": 0.572, + "2007": 0.575, + "2008": 0.584, + "2009": 0.593, + "2010": 0.603, + "2011": 0.609, + "2012": 0.615, + "2013": 0.623, + "2014": 0.631, + "2015": 0.632, + "2016": 0.626, + "2017": 0.622, + "2018": 0.619, + "2019": 0.62, + "2020": 0.613, + "2021": 0.614 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr119", + "Region": "Plateau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.525, + "2004": 0.524, + "2005": 0.516, + "2006": 0.518, + "2007": 0.507, + "2008": 0.501, + "2009": 0.515, + "2010": 0.53, + "2011": 0.541, + "2012": 0.552, + "2013": 0.566, + "2014": 0.574, + "2015": 0.575, + "2016": 0.57, + "2017": 0.567, + "2018": 0.565, + "2019": 0.566, + "2020": 0.559, + "2021": 0.56 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr120", + "Region": "Rivers", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.581, + "2004": 0.589, + "2005": 0.59, + "2006": 0.602, + "2007": 0.6, + "2008": 0.603, + "2009": 0.612, + "2010": 0.621, + "2011": 0.626, + "2012": 0.631, + "2013": 0.639, + "2014": 0.65, + "2015": 0.655, + "2016": 0.652, + "2017": 0.651, + "2018": 0.651, + "2019": 0.653, + "2020": 0.645, + "2021": 0.647 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr121", + "Region": "Sokoto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.41, + "2004": 0.427, + "2005": 0.439, + "2006": 0.46, + "2007": 0.47, + "2008": 0.483, + "2009": 0.493, + "2010": 0.503, + "2011": 0.51, + "2012": 0.516, + "2013": 0.524, + "2014": 0.528, + "2015": 0.525, + "2016": 0.516, + "2017": 0.508, + "2018": 0.501, + "2019": 0.502, + "2020": 0.495, + "2021": 0.497 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr129", + "Region": "Taraba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.464, + "2004": 0.47, + "2005": 0.471, + "2006": 0.482, + "2007": 0.48, + "2008": 0.483, + "2009": 0.49, + "2010": 0.498, + "2011": 0.503, + "2012": 0.507, + "2013": 0.514, + "2014": 0.523, + "2015": 0.527, + "2016": 0.523, + "2017": 0.522, + "2018": 0.521, + "2019": 0.522, + "2020": 0.515, + "2021": 0.517 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr130", + "Region": "Yobe", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.553, + "2004": 0.54, + "2005": 0.52, + "2006": 0.511, + "2007": 0.488, + "2008": 0.469, + "2009": 0.478, + "2010": 0.486, + "2011": 0.491, + "2012": 0.495, + "2013": 0.502, + "2014": 0.505, + "2015": 0.502, + "2016": 0.493, + "2017": 0.485, + "2018": 0.478, + "2019": 0.48, + "2020": 0.473, + "2021": 0.474 + }, + { + "Country": "Nigeria", + "Continent": "Africa", + "ISO_Code": "NGA", + "Level": "Subnat", + "GDLCODE": "NGAr136", + "Region": "Zamfora", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": 0.487, + "2004": 0.488, + "2005": 0.482, + "2006": 0.486, + "2007": 0.478, + "2008": 0.474, + "2009": 0.481, + "2010": 0.488, + "2011": 0.492, + "2012": 0.495, + "2013": 0.501, + "2014": 0.511, + "2015": 0.516, + "2016": 0.514, + "2017": 0.514, + "2018": 0.514, + "2019": 0.515, + "2020": 0.508, + "2021": 0.51 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "National", + "GDLCODE": "MKDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.697, + "2001": 0.693, + "2002": 0.696, + "2003": 0.698, + "2004": 0.706, + "2005": 0.711, + "2006": 0.72, + "2007": 0.723, + "2008": 0.736, + "2009": 0.736, + "2010": 0.739, + "2011": 0.742, + "2012": 0.741, + "2013": 0.744, + "2014": 0.75, + "2015": 0.754, + "2016": 0.756, + "2017": 0.758, + "2018": 0.761, + "2019": 0.766, + "2020": 0.76, + "2021": 0.766 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr108", + "Region": "East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.707, + "2001": 0.703, + "2002": 0.706, + "2003": 0.709, + "2004": 0.716, + "2005": 0.721, + "2006": 0.723, + "2007": 0.719, + "2008": 0.724, + "2009": 0.717, + "2010": 0.713, + "2011": 0.709, + "2012": 0.709, + "2013": 0.715, + "2014": 0.723, + "2015": 0.728, + "2016": 0.733, + "2017": 0.737, + "2018": 0.742, + "2019": 0.75, + "2020": 0.743, + "2021": 0.749 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr104", + "Region": "North East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.679, + "2001": 0.675, + "2002": 0.678, + "2003": 0.681, + "2004": 0.688, + "2005": 0.693, + "2006": 0.702, + "2007": 0.704, + "2008": 0.717, + "2009": 0.717, + "2010": 0.72, + "2011": 0.722, + "2012": 0.721, + "2013": 0.725, + "2014": 0.731, + "2015": 0.734, + "2016": 0.737, + "2017": 0.739, + "2018": 0.742, + "2019": 0.747, + "2020": 0.741, + "2021": 0.747 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr102", + "Region": "Pelagoniski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.691, + "2001": 0.687, + "2002": 0.69, + "2003": 0.693, + "2004": 0.7, + "2005": 0.705, + "2006": 0.716, + "2007": 0.72, + "2008": 0.734, + "2009": 0.735, + "2010": 0.74, + "2011": 0.745, + "2012": 0.743, + "2013": 0.747, + "2014": 0.752, + "2015": 0.756, + "2016": 0.758, + "2017": 0.76, + "2018": 0.763, + "2019": 0.768, + "2020": 0.762, + "2021": 0.767 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr107", + "Region": "Poloski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.7, + "2001": 0.696, + "2002": 0.699, + "2003": 0.702, + "2004": 0.709, + "2005": 0.714, + "2006": 0.725, + "2007": 0.73, + "2008": 0.745, + "2009": 0.746, + "2010": 0.752, + "2011": 0.757, + "2012": 0.754, + "2013": 0.757, + "2014": 0.763, + "2015": 0.765, + "2016": 0.767, + "2017": 0.768, + "2018": 0.771, + "2019": 0.775, + "2020": 0.769, + "2021": 0.775 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr101", + "Region": "Skopski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.71, + "2001": 0.706, + "2002": 0.709, + "2003": 0.712, + "2004": 0.719, + "2005": 0.724, + "2006": 0.734, + "2007": 0.737, + "2008": 0.751, + "2009": 0.751, + "2010": 0.755, + "2011": 0.758, + "2012": 0.755, + "2013": 0.758, + "2014": 0.763, + "2015": 0.765, + "2016": 0.766, + "2017": 0.767, + "2018": 0.769, + "2019": 0.773, + "2020": 0.767, + "2021": 0.772 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr106", + "Region": "South East", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.65, + "2001": 0.647, + "2002": 0.649, + "2003": 0.652, + "2004": 0.659, + "2005": 0.664, + "2006": 0.681, + "2007": 0.691, + "2008": 0.711, + "2009": 0.719, + "2010": 0.73, + "2011": 0.74, + "2012": 0.737, + "2013": 0.739, + "2014": 0.744, + "2015": 0.746, + "2016": 0.747, + "2017": 0.747, + "2018": 0.749, + "2019": 0.752, + "2020": 0.746, + "2021": 0.751 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr105", + "Region": "South West", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.699, + "2001": 0.695, + "2002": 0.698, + "2003": 0.7, + "2004": 0.708, + "2005": 0.713, + "2006": 0.723, + "2007": 0.727, + "2008": 0.742, + "2009": 0.743, + "2010": 0.748, + "2011": 0.752, + "2012": 0.75, + "2013": 0.754, + "2014": 0.759, + "2015": 0.762, + "2016": 0.764, + "2017": 0.765, + "2018": 0.769, + "2019": 0.773, + "2020": 0.767, + "2021": 0.773 + }, + { + "Country": "North Macedonia", + "Continent": "Europe", + "ISO_Code": "MKD", + "Level": "Subnat", + "GDLCODE": "MKDr103", + "Region": "Vardarski", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.697, + "2001": 0.694, + "2002": 0.696, + "2003": 0.699, + "2004": 0.706, + "2005": 0.711, + "2006": 0.717, + "2007": 0.716, + "2008": 0.725, + "2009": 0.721, + "2010": 0.721, + "2011": 0.72, + "2012": 0.721, + "2013": 0.728, + "2014": 0.737, + "2015": 0.743, + "2016": 0.749, + "2017": 0.753, + "2018": 0.76, + "2019": 0.768, + "2020": 0.761, + "2021": 0.767 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "National", + "GDLCODE": "NORt", + "Region": "Total", + "1990": 0.889, + "1991": 0.892, + "1992": 0.894, + "1993": 0.898, + "1994": 0.903, + "1995": 0.91, + "1996": 0.92, + "1997": 0.928, + "1998": 0.925, + "1999": 0.934, + "2000": 0.953, + "2001": 0.955, + "2002": 0.951, + "2003": 0.952, + "2004": 0.962, + "2005": 0.975, + "2006": 0.983, + "2007": 0.984, + "2008": 0.99, + "2009": 0.975, + "2010": 0.978, + "2011": 0.983, + "2012": 0.986, + "2013": 0.986, + "2014": 0.987, + "2015": 0.982, + "2016": 0.978, + "2017": 0.982, + "2018": 0.987, + "2019": 0.982, + "2020": 0.973, + "2021": 0.978 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr104", + "Region": "Agder og Rogaland", + "1990": 0.874, + "1991": 0.876, + "1992": 0.879, + "1993": 0.882, + "1994": 0.888, + "1995": 0.894, + "1996": 0.904, + "1997": 0.912, + "1998": 0.909, + "1999": 0.918, + "2000": 0.936, + "2001": 0.939, + "2002": 0.935, + "2003": 0.936, + "2004": 0.946, + "2005": 0.959, + "2006": 0.967, + "2007": 0.967, + "2008": 0.974, + "2009": 0.967, + "2010": 0.971, + "2011": 0.968, + "2012": 0.971, + "2013": 0.973, + "2014": 0.975, + "2015": 0.975, + "2016": 0.962, + "2017": 0.96, + "2018": 0.965, + "2019": 0.959, + "2020": 0.95, + "2021": 0.955 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr102", + "Region": "Hedmark og Oppland", + "1990": 0.82, + "1991": 0.822, + "1992": 0.824, + "1993": 0.827, + "1994": 0.833, + "1995": 0.839, + "1996": 0.849, + "1997": 0.856, + "1998": 0.854, + "1999": 0.862, + "2000": 0.88, + "2001": 0.882, + "2002": 0.879, + "2003": 0.88, + "2004": 0.889, + "2005": 0.901, + "2006": 0.909, + "2007": 0.91, + "2008": 0.916, + "2009": 0.908, + "2010": 0.909, + "2011": 0.913, + "2012": 0.915, + "2013": 0.916, + "2014": 0.921, + "2015": 0.925, + "2016": 0.926, + "2017": 0.928, + "2018": 0.933, + "2019": 0.927, + "2020": 0.918, + "2021": 0.923 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr107", + "Region": "Nord-Norge", + "1990": 0.833, + "1991": 0.835, + "1992": 0.838, + "1993": 0.841, + "1994": 0.846, + "1995": 0.852, + "1996": 0.862, + "1997": 0.87, + "1998": 0.867, + "1999": 0.875, + "2000": 0.894, + "2001": 0.896, + "2002": 0.892, + "2003": 0.893, + "2004": 0.903, + "2005": 0.915, + "2006": 0.923, + "2007": 0.924, + "2008": 0.93, + "2009": 0.927, + "2010": 0.934, + "2011": 0.934, + "2012": 0.936, + "2013": 0.94, + "2014": 0.946, + "2015": 0.945, + "2016": 0.954, + "2017": 0.956, + "2018": 0.962, + "2019": 0.956, + "2020": 0.947, + "2021": 0.952 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr101", + "Region": "Oslo og Akershus", + "1990": 0.909, + "1991": 0.911, + "1992": 0.914, + "1993": 0.917, + "1994": 0.923, + "1995": 0.929, + "1996": 0.94, + "1997": 0.948, + "1998": 0.945, + "1999": 0.954, + "2000": 0.973, + "2001": 0.975, + "2002": 0.971, + "2003": 0.973, + "2004": 0.982, + "2005": 0.995, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr103", + "Region": "Sor-Ostlandet", + "1990": 0.833, + "1991": 0.836, + "1992": 0.838, + "1993": 0.842, + "1994": 0.847, + "1995": 0.853, + "1996": 0.863, + "1997": 0.87, + "1998": 0.868, + "1999": 0.876, + "2000": 0.894, + "2001": 0.897, + "2002": 0.893, + "2003": 0.894, + "2004": 0.903, + "2005": 0.916, + "2006": 0.924, + "2007": 0.925, + "2008": 0.931, + "2009": 0.921, + "2010": 0.921, + "2011": 0.921, + "2012": 0.924, + "2013": 0.923, + "2014": 0.925, + "2015": 0.928, + "2016": 0.927, + "2017": 0.928, + "2018": 0.933, + "2019": 0.928, + "2020": 0.919, + "2021": 0.924 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr106", + "Region": "Trondelag", + "1990": 0.842, + "1991": 0.844, + "1992": 0.847, + "1993": 0.85, + "1994": 0.855, + "1995": 0.861, + "1996": 0.871, + "1997": 0.879, + "1998": 0.876, + "1999": 0.885, + "2000": 0.903, + "2001": 0.905, + "2002": 0.902, + "2003": 0.903, + "2004": 0.912, + "2005": 0.925, + "2006": 0.933, + "2007": 0.933, + "2008": 0.94, + "2009": 0.933, + "2010": 0.94, + "2011": 0.941, + "2012": 0.947, + "2013": 0.949, + "2014": 0.952, + "2015": 0.954, + "2016": 0.956, + "2017": 0.96, + "2018": 0.965, + "2019": 0.959, + "2020": 0.95, + "2021": 0.955 + }, + { + "Country": "Norway", + "Continent": "Europe", + "ISO_Code": "NOR", + "Level": "Subnat", + "GDLCODE": "NORr105", + "Region": "Vestlandet", + "1990": 0.866, + "1991": 0.868, + "1992": 0.871, + "1993": 0.874, + "1994": 0.879, + "1995": 0.886, + "1996": 0.896, + "1997": 0.904, + "1998": 0.901, + "1999": 0.909, + "2000": 0.928, + "2001": 0.93, + "2002": 0.927, + "2003": 0.928, + "2004": 0.937, + "2005": 0.95, + "2006": 0.958, + "2007": 0.959, + "2008": 0.965, + "2009": 0.959, + "2010": 0.96, + "2011": 0.964, + "2012": 0.967, + "2013": 0.97, + "2014": 0.973, + "2015": 0.97, + "2016": 0.966, + "2017": 0.966, + "2018": 0.966, + "2019": 0.96, + "2020": 0.951, + "2021": 0.956 + }, + { + "Country": "Oman", + "Continent": "Asia/Pacific", + "ISO_Code": "OMN", + "Level": "National", + "GDLCODE": "OMNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.895, + "2001": 0.9, + "2002": 0.895, + "2003": 0.89, + "2004": 0.889, + "2005": 0.887, + "2006": 0.892, + "2007": 0.894, + "2008": 0.895, + "2009": 0.896, + "2010": 0.889, + "2011": 0.884, + "2012": 0.886, + "2013": 0.886, + "2014": 0.876, + "2015": 0.879, + "2016": 0.879, + "2017": 0.871, + "2018": 0.865, + "2019": 0.857, + "2020": 0.847, + "2021": 0.846 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "National", + "GDLCODE": "PAKt", + "Region": "Total", + "1990": 0.506, + "1991": 0.509, + "1992": 0.515, + "1993": 0.513, + "1994": 0.515, + "1995": 0.518, + "1996": 0.52, + "1997": 0.517, + "1998": 0.516, + "1999": 0.519, + "2000": 0.522, + "2001": 0.523, + "2002": 0.523, + "2003": 0.528, + "2004": 0.536, + "2005": 0.543, + "2006": 0.548, + "2007": 0.551, + "2008": 0.55, + "2009": 0.551, + "2010": 0.551, + "2011": 0.552, + "2012": 0.554, + "2013": 0.557, + "2014": 0.561, + "2015": 0.565, + "2016": 0.569, + "2017": 0.575, + "2018": 0.58, + "2019": 0.578, + "2020": 0.574, + "2021": 0.579 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr107", + "Region": "AJK", + "1990": 0.555, + "1991": 0.558, + "1992": 0.566, + "1993": 0.563, + "1994": 0.565, + "1995": 0.568, + "1996": 0.571, + "1997": 0.567, + "1998": 0.566, + "1999": 0.569, + "2000": 0.572, + "2001": 0.573, + "2002": 0.573, + "2003": 0.579, + "2004": 0.587, + "2005": 0.594, + "2006": 0.599, + "2007": 0.603, + "2008": 0.597, + "2009": 0.593, + "2010": 0.589, + "2011": 0.587, + "2012": 0.584, + "2013": 0.585, + "2014": 0.587, + "2015": 0.589, + "2016": 0.591, + "2017": 0.594, + "2018": 0.598, + "2019": 0.596, + "2020": 0.591, + "2021": 0.597 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr104", + "Region": "Balochistan", + "1990": 0.468, + "1991": 0.47, + "1992": 0.477, + "1993": 0.475, + "1994": 0.476, + "1995": 0.479, + "1996": 0.482, + "1997": 0.479, + "1998": 0.477, + "1999": 0.48, + "2000": 0.483, + "2001": 0.484, + "2002": 0.484, + "2003": 0.49, + "2004": 0.497, + "2005": 0.503, + "2006": 0.509, + "2007": 0.512, + "2008": 0.505, + "2009": 0.5, + "2010": 0.494, + "2011": 0.49, + "2012": 0.487, + "2013": 0.498, + "2014": 0.51, + "2015": 0.522, + "2016": 0.535, + "2017": 0.549, + "2018": 0.563, + "2019": 0.561, + "2020": 0.557, + "2021": 0.562 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr108", + "Region": "FATA", + "1990": 0.433, + "1991": 0.436, + "1992": 0.443, + "1993": 0.441, + "1994": 0.442, + "1995": 0.445, + "1996": 0.447, + "1997": 0.444, + "1998": 0.443, + "1999": 0.446, + "2000": 0.449, + "2001": 0.45, + "2002": 0.449, + "2003": 0.455, + "2004": 0.463, + "2005": 0.468, + "2006": 0.473, + "2007": 0.476, + "2008": 0.472, + "2009": 0.468, + "2010": 0.464, + "2011": 0.462, + "2012": 0.46, + "2013": 0.461, + "2014": 0.462, + "2015": 0.464, + "2016": 0.466, + "2017": 0.469, + "2018": 0.472, + "2019": 0.47, + "2020": 0.466, + "2021": 0.471 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr106", + "Region": "Gilgit Baltistan", + "1990": 0.5, + "1991": 0.503, + "1992": 0.51, + "1993": 0.508, + "1994": 0.509, + "1995": 0.512, + "1996": 0.515, + "1997": 0.511, + "1998": 0.51, + "1999": 0.513, + "2000": 0.516, + "2001": 0.517, + "2002": 0.517, + "2003": 0.523, + "2004": 0.531, + "2005": 0.537, + "2006": 0.542, + "2007": 0.545, + "2008": 0.54, + "2009": 0.536, + "2010": 0.533, + "2011": 0.53, + "2012": 0.528, + "2013": 0.542, + "2014": 0.557, + "2015": 0.572, + "2016": 0.588, + "2017": 0.605, + "2018": 0.622, + "2019": 0.62, + "2020": 0.615, + "2021": 0.62 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr105", + "Region": "Islamabad (ICT)", + "1990": 0.633, + "1991": 0.636, + "1992": 0.644, + "1993": 0.641, + "1994": 0.643, + "1995": 0.646, + "1996": 0.649, + "1997": 0.645, + "1998": 0.644, + "1999": 0.647, + "2000": 0.65, + "2001": 0.652, + "2002": 0.651, + "2003": 0.658, + "2004": 0.667, + "2005": 0.674, + "2006": 0.679, + "2007": 0.683, + "2008": 0.677, + "2009": 0.673, + "2010": 0.669, + "2011": 0.666, + "2012": 0.664, + "2013": 0.661, + "2014": 0.659, + "2015": 0.656, + "2016": 0.655, + "2017": 0.655, + "2018": 0.654, + "2019": 0.652, + "2020": 0.648, + "2021": 0.653 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr103", + "Region": "Khyber Pakhtunkhwa (NWFrontier)", + "1990": 0.481, + "1991": 0.484, + "1992": 0.49, + "1993": 0.488, + "1994": 0.49, + "1995": 0.493, + "1996": 0.495, + "1997": 0.492, + "1998": 0.491, + "1999": 0.494, + "2000": 0.497, + "2001": 0.498, + "2002": 0.497, + "2003": 0.503, + "2004": 0.511, + "2005": 0.517, + "2006": 0.522, + "2007": 0.525, + "2008": 0.524, + "2009": 0.523, + "2010": 0.522, + "2011": 0.523, + "2012": 0.524, + "2013": 0.528, + "2014": 0.532, + "2015": 0.536, + "2016": 0.541, + "2017": 0.547, + "2018": 0.553, + "2019": 0.551, + "2020": 0.547, + "2021": 0.552 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr101", + "Region": "Punjab", + "1990": 0.491, + "1991": 0.494, + "1992": 0.501, + "1993": 0.499, + "1994": 0.5, + "1995": 0.503, + "1996": 0.506, + "1997": 0.502, + "1998": 0.501, + "1999": 0.504, + "2000": 0.507, + "2001": 0.508, + "2002": 0.508, + "2003": 0.513, + "2004": 0.522, + "2005": 0.528, + "2006": 0.533, + "2007": 0.536, + "2008": 0.541, + "2009": 0.547, + "2010": 0.553, + "2011": 0.56, + "2012": 0.568, + "2013": 0.57, + "2014": 0.573, + "2015": 0.576, + "2016": 0.58, + "2017": 0.584, + "2018": 0.589, + "2019": 0.587, + "2020": 0.583, + "2021": 0.588 + }, + { + "Country": "Pakistan", + "Continent": "Asia/Pacific", + "ISO_Code": "PAK", + "Level": "Subnat", + "GDLCODE": "PAKr102", + "Region": "Sindh", + "1990": 0.502, + "1991": 0.505, + "1992": 0.512, + "1993": 0.51, + "1994": 0.511, + "1995": 0.514, + "1996": 0.517, + "1997": 0.513, + "1998": 0.512, + "1999": 0.515, + "2000": 0.518, + "2001": 0.519, + "2002": 0.519, + "2003": 0.525, + "2004": 0.533, + "2005": 0.539, + "2006": 0.544, + "2007": 0.547, + "2008": 0.546, + "2009": 0.545, + "2010": 0.544, + "2011": 0.545, + "2012": 0.546, + "2013": 0.547, + "2014": 0.548, + "2015": 0.55, + "2016": 0.552, + "2017": 0.555, + "2018": 0.558, + "2019": 0.557, + "2020": 0.552, + "2021": 0.557 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "National", + "GDLCODE": "PSEt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.582, + "2005": 0.596, + "2006": 0.592, + "2007": 0.596, + "2008": 0.602, + "2009": 0.608, + "2010": 0.612, + "2011": 0.623, + "2012": 0.629, + "2013": 0.634, + "2014": 0.633, + "2015": 0.638, + "2016": 0.647, + "2017": 0.647, + "2018": 0.65, + "2019": 0.649, + "2020": 0.625, + "2021": 0.632 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr104", + "Region": "Bethlehem, Hebron", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.58, + "2005": 0.595, + "2006": 0.59, + "2007": 0.594, + "2008": 0.601, + "2009": 0.606, + "2010": 0.61, + "2011": 0.626, + "2012": 0.637, + "2013": 0.646, + "2014": 0.65, + "2015": 0.655, + "2016": 0.665, + "2017": 0.665, + "2018": 0.669, + "2019": 0.669, + "2020": 0.644, + "2021": 0.652 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr106", + "Region": "Deir El-Balah, Khan Yunis, Rafah", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.568, + "2005": 0.582, + "2006": 0.578, + "2007": 0.582, + "2008": 0.588, + "2009": 0.594, + "2010": 0.598, + "2011": 0.602, + "2012": 0.601, + "2013": 0.599, + "2014": 0.591, + "2015": 0.595, + "2016": 0.603, + "2017": 0.602, + "2018": 0.604, + "2019": 0.602, + "2020": 0.579, + "2021": 0.586 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr101", + "Region": "Jenin, Tubas, Tulkarm, Nablus, Qalqiliya", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.587, + "2005": 0.601, + "2006": 0.597, + "2007": 0.601, + "2008": 0.607, + "2009": 0.613, + "2010": 0.617, + "2011": 0.632, + "2012": 0.642, + "2013": 0.651, + "2014": 0.654, + "2015": 0.659, + "2016": 0.669, + "2017": 0.669, + "2018": 0.672, + "2019": 0.672, + "2020": 0.647, + "2021": 0.655 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr103", + "Region": "Jerusalem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.6, + "2005": 0.615, + "2006": 0.611, + "2007": 0.614, + "2008": 0.621, + "2009": 0.626, + "2010": 0.631, + "2011": 0.646, + "2012": 0.657, + "2013": 0.666, + "2014": 0.67, + "2015": 0.674, + "2016": 0.683, + "2017": 0.682, + "2018": 0.684, + "2019": 0.682, + "2020": 0.658, + "2021": 0.665 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr105", + "Region": "North Gaza, Gaza", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.574, + "2005": 0.588, + "2006": 0.584, + "2007": 0.587, + "2008": 0.594, + "2009": 0.599, + "2010": 0.603, + "2011": 0.607, + "2012": 0.605, + "2013": 0.601, + "2014": 0.592, + "2015": 0.597, + "2016": 0.607, + "2017": 0.607, + "2018": 0.61, + "2019": 0.61, + "2020": 0.587, + "2021": 0.594 + }, + { + "Country": "Palestine", + "Continent": "Asia/Pacific", + "ISO_Code": "PSE", + "Level": "Subnat", + "GDLCODE": "PSEr102", + "Region": "Salfit, Ramallah, Al-Bireh, Jericho, Al Aghwar", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.59, + "2005": 0.604, + "2006": 0.6, + "2007": 0.604, + "2008": 0.61, + "2009": 0.615, + "2010": 0.62, + "2011": 0.638, + "2012": 0.651, + "2013": 0.662, + "2014": 0.668, + "2015": 0.672, + "2016": 0.681, + "2017": 0.679, + "2018": 0.681, + "2019": 0.679, + "2020": 0.655, + "2021": 0.662 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "National", + "GDLCODE": "PANt", + "Region": "Total", + "1990": 0.701, + "1991": 0.708, + "1992": 0.718, + "1993": 0.726, + "1994": 0.728, + "1995": 0.724, + "1996": 0.731, + "1997": 0.735, + "1998": 0.742, + "1999": 0.743, + "2000": 0.746, + "2001": 0.743, + "2002": 0.748, + "2003": 0.745, + "2004": 0.752, + "2005": 0.758, + "2006": 0.768, + "2007": 0.785, + "2008": 0.796, + "2009": 0.796, + "2010": 0.798, + "2011": 0.816, + "2012": 0.825, + "2013": 0.833, + "2014": 0.834, + "2015": 0.843, + "2016": 0.847, + "2017": 0.854, + "2018": 0.856, + "2019": 0.858, + "2020": 0.826, + "2021": 0.845 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr101", + "Region": "Bocas del Toro", + "1990": 0.634, + "1991": 0.64, + "1992": 0.65, + "1993": 0.657, + "1994": 0.66, + "1995": 0.656, + "1996": 0.662, + "1997": 0.666, + "1998": 0.672, + "1999": 0.673, + "2000": 0.676, + "2001": 0.674, + "2002": 0.678, + "2003": 0.675, + "2004": 0.682, + "2005": 0.688, + "2006": 0.698, + "2007": 0.714, + "2008": 0.725, + "2009": 0.725, + "2010": 0.726, + "2011": 0.743, + "2012": 0.752, + "2013": 0.759, + "2014": 0.76, + "2015": 0.769, + "2016": 0.773, + "2017": 0.78, + "2018": 0.781, + "2019": 0.783, + "2020": 0.753, + "2021": 0.771 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr104", + "Region": "Chiriqui", + "1990": 0.708, + "1991": 0.715, + "1992": 0.725, + "1993": 0.733, + "1994": 0.735, + "1995": 0.731, + "1996": 0.738, + "1997": 0.742, + "1998": 0.749, + "1999": 0.75, + "2000": 0.753, + "2001": 0.75, + "2002": 0.755, + "2003": 0.752, + "2004": 0.759, + "2005": 0.766, + "2006": 0.776, + "2007": 0.792, + "2008": 0.804, + "2009": 0.804, + "2010": 0.805, + "2011": 0.823, + "2012": 0.833, + "2013": 0.841, + "2014": 0.841, + "2015": 0.851, + "2016": 0.854, + "2017": 0.862, + "2018": 0.863, + "2019": 0.866, + "2020": 0.833, + "2021": 0.853 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr102", + "Region": "Cocle", + "1990": 0.671, + "1991": 0.677, + "1992": 0.688, + "1993": 0.695, + "1994": 0.698, + "1995": 0.693, + "1996": 0.7, + "1997": 0.704, + "1998": 0.711, + "1999": 0.711, + "2000": 0.714, + "2001": 0.712, + "2002": 0.717, + "2003": 0.714, + "2004": 0.72, + "2005": 0.727, + "2006": 0.737, + "2007": 0.753, + "2008": 0.764, + "2009": 0.764, + "2010": 0.766, + "2011": 0.783, + "2012": 0.792, + "2013": 0.8, + "2014": 0.801, + "2015": 0.81, + "2016": 0.813, + "2017": 0.821, + "2018": 0.822, + "2019": 0.825, + "2020": 0.793, + "2021": 0.812 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr103", + "Region": "Colon", + "1990": 0.713, + "1991": 0.72, + "1992": 0.73, + "1993": 0.738, + "1994": 0.741, + "1995": 0.736, + "1996": 0.743, + "1997": 0.748, + "1998": 0.754, + "1999": 0.755, + "2000": 0.758, + "2001": 0.756, + "2002": 0.76, + "2003": 0.757, + "2004": 0.764, + "2005": 0.771, + "2006": 0.781, + "2007": 0.798, + "2008": 0.809, + "2009": 0.809, + "2010": 0.811, + "2011": 0.829, + "2012": 0.838, + "2013": 0.846, + "2014": 0.847, + "2015": 0.857, + "2016": 0.86, + "2017": 0.868, + "2018": 0.869, + "2019": 0.872, + "2020": 0.839, + "2021": 0.859 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr105", + "Region": "Darien", + "1990": 0.599, + "1991": 0.605, + "1992": 0.615, + "1993": 0.622, + "1994": 0.624, + "1995": 0.62, + "1996": 0.626, + "1997": 0.63, + "1998": 0.636, + "1999": 0.637, + "2000": 0.64, + "2001": 0.638, + "2002": 0.642, + "2003": 0.639, + "2004": 0.646, + "2005": 0.652, + "2006": 0.661, + "2007": 0.677, + "2008": 0.687, + "2009": 0.687, + "2010": 0.689, + "2011": 0.705, + "2012": 0.714, + "2013": 0.721, + "2014": 0.722, + "2015": 0.731, + "2016": 0.734, + "2017": 0.741, + "2018": 0.742, + "2019": 0.745, + "2020": 0.715, + "2021": 0.733 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr111", + "Region": "Embera Wounaan", + "1990": 0.467, + "1991": 0.473, + "1992": 0.482, + "1993": 0.488, + "1994": 0.49, + "1995": 0.487, + "1996": 0.492, + "1997": 0.496, + "1998": 0.501, + "1999": 0.502, + "2000": 0.504, + "2001": 0.502, + "2002": 0.506, + "2003": 0.504, + "2004": 0.51, + "2005": 0.515, + "2006": 0.523, + "2007": 0.537, + "2008": 0.547, + "2009": 0.547, + "2010": 0.548, + "2011": 0.563, + "2012": 0.571, + "2013": 0.577, + "2014": 0.578, + "2015": 0.586, + "2016": 0.589, + "2017": 0.595, + "2018": 0.596, + "2019": 0.598, + "2020": 0.571, + "2021": 0.588 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr106", + "Region": "Herrera", + "1990": 0.707, + "1991": 0.714, + "1992": 0.724, + "1993": 0.732, + "1994": 0.734, + "1995": 0.73, + "1996": 0.737, + "1997": 0.741, + "1998": 0.748, + "1999": 0.749, + "2000": 0.752, + "2001": 0.749, + "2002": 0.754, + "2003": 0.751, + "2004": 0.758, + "2005": 0.765, + "2006": 0.774, + "2007": 0.791, + "2008": 0.803, + "2009": 0.803, + "2010": 0.804, + "2011": 0.822, + "2012": 0.831, + "2013": 0.839, + "2014": 0.84, + "2015": 0.85, + "2016": 0.853, + "2017": 0.861, + "2018": 0.862, + "2019": 0.865, + "2020": 0.832, + "2021": 0.852 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr110", + "Region": "Kuna Yala", + "1990": 0.462, + "1991": 0.467, + "1992": 0.476, + "1993": 0.482, + "1994": 0.484, + "1995": 0.481, + "1996": 0.486, + "1997": 0.49, + "1998": 0.495, + "1999": 0.496, + "2000": 0.499, + "2001": 0.497, + "2002": 0.5, + "2003": 0.498, + "2004": 0.504, + "2005": 0.509, + "2006": 0.518, + "2007": 0.531, + "2008": 0.541, + "2009": 0.541, + "2010": 0.542, + "2011": 0.557, + "2012": 0.565, + "2013": 0.571, + "2014": 0.572, + "2015": 0.58, + "2016": 0.583, + "2017": 0.589, + "2018": 0.59, + "2019": 0.592, + "2020": 0.565, + "2021": 0.581 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr107", + "Region": "Los Santos", + "1990": 0.708, + "1991": 0.716, + "1992": 0.726, + "1993": 0.734, + "1994": 0.736, + "1995": 0.732, + "1996": 0.739, + "1997": 0.743, + "1998": 0.75, + "1999": 0.75, + "2000": 0.754, + "2001": 0.751, + "2002": 0.756, + "2003": 0.753, + "2004": 0.76, + "2005": 0.767, + "2006": 0.776, + "2007": 0.793, + "2008": 0.805, + "2009": 0.805, + "2010": 0.806, + "2011": 0.824, + "2012": 0.833, + "2013": 0.841, + "2014": 0.842, + "2015": 0.852, + "2016": 0.855, + "2017": 0.863, + "2018": 0.864, + "2019": 0.867, + "2020": 0.834, + "2021": 0.854 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr112", + "Region": "Ngobe Bugle", + "1990": 0.415, + "1991": 0.421, + "1992": 0.429, + "1993": 0.435, + "1994": 0.437, + "1995": 0.434, + "1996": 0.439, + "1997": 0.443, + "1998": 0.448, + "1999": 0.449, + "2000": 0.451, + "2001": 0.449, + "2002": 0.453, + "2003": 0.45, + "2004": 0.456, + "2005": 0.461, + "2006": 0.469, + "2007": 0.482, + "2008": 0.491, + "2009": 0.491, + "2010": 0.493, + "2011": 0.507, + "2012": 0.514, + "2013": 0.52, + "2014": 0.521, + "2015": 0.529, + "2016": 0.531, + "2017": 0.537, + "2018": 0.539, + "2019": 0.541, + "2020": 0.515, + "2021": 0.53 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr108", + "Region": "Panama", + "1990": 0.736, + "1991": 0.743, + "1992": 0.753, + "1993": 0.761, + "1994": 0.764, + "1995": 0.759, + "1996": 0.766, + "1997": 0.771, + "1998": 0.777, + "1999": 0.778, + "2000": 0.781, + "2001": 0.779, + "2002": 0.784, + "2003": 0.781, + "2004": 0.788, + "2005": 0.795, + "2006": 0.805, + "2007": 0.822, + "2008": 0.834, + "2009": 0.834, + "2010": 0.835, + "2011": 0.853, + "2012": 0.863, + "2013": 0.871, + "2014": 0.872, + "2015": 0.882, + "2016": 0.885, + "2017": 0.893, + "2018": 0.894, + "2019": 0.897, + "2020": 0.864, + "2021": 0.884 + }, + { + "Country": "Panama", + "Continent": "America", + "ISO_Code": "PAN", + "Level": "Subnat", + "GDLCODE": "PANr109", + "Region": "Veraguas", + "1990": 0.621, + "1991": 0.628, + "1992": 0.638, + "1993": 0.645, + "1994": 0.647, + "1995": 0.643, + "1996": 0.65, + "1997": 0.654, + "1998": 0.66, + "1999": 0.661, + "2000": 0.663, + "2001": 0.661, + "2002": 0.665, + "2003": 0.663, + "2004": 0.669, + "2005": 0.676, + "2006": 0.685, + "2007": 0.701, + "2008": 0.711, + "2009": 0.711, + "2010": 0.713, + "2011": 0.73, + "2012": 0.738, + "2013": 0.746, + "2014": 0.747, + "2015": 0.756, + "2016": 0.759, + "2017": 0.766, + "2018": 0.767, + "2019": 0.77, + "2020": 0.739, + "2021": 0.758 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "National", + "GDLCODE": "PNGt", + "Region": "Total", + "1990": 0.455, + "1991": 0.466, + "1992": 0.483, + "1993": 0.51, + "1994": 0.538, + "1995": 0.527, + "1996": 0.531, + "1997": 0.518, + "1998": 0.521, + "1999": 0.521, + "2000": 0.514, + "2001": 0.51, + "2002": 0.511, + "2003": 0.515, + "2004": 0.501, + "2005": 0.502, + "2006": 0.496, + "2007": 0.508, + "2008": 0.507, + "2009": 0.51, + "2010": 0.521, + "2011": 0.516, + "2012": 0.527, + "2013": 0.525, + "2014": 0.551, + "2015": 0.558, + "2016": 0.564, + "2017": 0.565, + "2018": 0.56, + "2019": 0.563, + "2020": 0.558, + "2021": 0.558 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr120", + "Region": "Autonomous Region of Bougainville", + "1990": 0.455, + "1991": 0.466, + "1992": 0.484, + "1993": 0.51, + "1994": 0.538, + "1995": 0.527, + "1996": 0.531, + "1997": 0.518, + "1998": 0.521, + "1999": 0.521, + "2000": 0.514, + "2001": 0.511, + "2002": 0.511, + "2003": 0.515, + "2004": 0.501, + "2005": 0.502, + "2006": 0.496, + "2007": 0.508, + "2008": 0.507, + "2009": 0.51, + "2010": 0.521, + "2011": 0.516, + "2012": 0.527, + "2013": 0.525, + "2014": 0.551, + "2015": 0.558, + "2016": 0.564, + "2017": 0.565, + "2018": 0.56, + "2019": 0.563, + "2020": 0.558, + "2021": 0.558 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr103", + "Region": "Central", + "1990": 0.475, + "1991": 0.487, + "1992": 0.504, + "1993": 0.531, + "1994": 0.56, + "1995": 0.548, + "1996": 0.553, + "1997": 0.539, + "1998": 0.542, + "1999": 0.542, + "2000": 0.535, + "2001": 0.531, + "2002": 0.532, + "2003": 0.536, + "2004": 0.522, + "2005": 0.523, + "2006": 0.517, + "2007": 0.529, + "2008": 0.528, + "2009": 0.531, + "2010": 0.542, + "2011": 0.537, + "2012": 0.548, + "2013": 0.546, + "2014": 0.573, + "2015": 0.579, + "2016": 0.586, + "2017": 0.587, + "2018": 0.582, + "2019": 0.585, + "2020": 0.58, + "2021": 0.579 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr110", + "Region": "Chimbu, Simbu", + "1990": 0.474, + "1991": 0.486, + "1992": 0.503, + "1993": 0.53, + "1994": 0.559, + "1995": 0.547, + "1996": 0.552, + "1997": 0.538, + "1998": 0.541, + "1999": 0.541, + "2000": 0.534, + "2001": 0.53, + "2002": 0.531, + "2003": 0.535, + "2004": 0.521, + "2005": 0.522, + "2006": 0.516, + "2007": 0.528, + "2008": 0.527, + "2009": 0.53, + "2010": 0.541, + "2011": 0.536, + "2012": 0.547, + "2013": 0.545, + "2014": 0.572, + "2015": 0.578, + "2016": 0.585, + "2017": 0.586, + "2018": 0.581, + "2019": 0.584, + "2020": 0.579, + "2021": 0.578 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr118", + "Region": "East New Britain", + "1990": 0.476, + "1991": 0.487, + "1992": 0.505, + "1993": 0.532, + "1994": 0.56, + "1995": 0.549, + "1996": 0.553, + "1997": 0.54, + "1998": 0.543, + "1999": 0.543, + "2000": 0.535, + "2001": 0.532, + "2002": 0.533, + "2003": 0.537, + "2004": 0.522, + "2005": 0.524, + "2006": 0.518, + "2007": 0.529, + "2008": 0.528, + "2009": 0.532, + "2010": 0.543, + "2011": 0.538, + "2012": 0.549, + "2013": 0.547, + "2014": 0.573, + "2015": 0.58, + "2016": 0.586, + "2017": 0.587, + "2018": 0.583, + "2019": 0.586, + "2020": 0.581, + "2021": 0.58 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr114", + "Region": "East Sepik", + "1990": 0.448, + "1991": 0.459, + "1992": 0.476, + "1993": 0.502, + "1994": 0.53, + "1995": 0.519, + "1996": 0.523, + "1997": 0.51, + "1998": 0.513, + "1999": 0.513, + "2000": 0.506, + "2001": 0.503, + "2002": 0.503, + "2003": 0.507, + "2004": 0.493, + "2005": 0.495, + "2006": 0.489, + "2007": 0.5, + "2008": 0.499, + "2009": 0.503, + "2010": 0.513, + "2011": 0.508, + "2012": 0.519, + "2013": 0.517, + "2014": 0.543, + "2015": 0.55, + "2016": 0.556, + "2017": 0.557, + "2018": 0.552, + "2019": 0.555, + "2020": 0.55, + "2021": 0.55 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr111", + "Region": "Eastern Highlands", + "1990": 0.429, + "1991": 0.44, + "1992": 0.457, + "1993": 0.482, + "1994": 0.51, + "1995": 0.499, + "1996": 0.503, + "1997": 0.49, + "1998": 0.493, + "1999": 0.493, + "2000": 0.486, + "2001": 0.483, + "2002": 0.484, + "2003": 0.487, + "2004": 0.474, + "2005": 0.475, + "2006": 0.469, + "2007": 0.48, + "2008": 0.48, + "2009": 0.483, + "2010": 0.493, + "2011": 0.489, + "2012": 0.499, + "2013": 0.497, + "2014": 0.523, + "2015": 0.529, + "2016": 0.535, + "2017": 0.536, + "2018": 0.532, + "2019": 0.535, + "2020": 0.529, + "2021": 0.529 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr108", + "Region": "Enga", + "1990": 0.428, + "1991": 0.439, + "1992": 0.456, + "1993": 0.482, + "1994": 0.509, + "1995": 0.498, + "1996": 0.502, + "1997": 0.489, + "1998": 0.493, + "1999": 0.492, + "2000": 0.485, + "2001": 0.482, + "2002": 0.483, + "2003": 0.487, + "2004": 0.473, + "2005": 0.474, + "2006": 0.468, + "2007": 0.48, + "2008": 0.479, + "2009": 0.482, + "2010": 0.493, + "2011": 0.488, + "2012": 0.498, + "2013": 0.496, + "2014": 0.522, + "2015": 0.528, + "2016": 0.534, + "2017": 0.535, + "2018": 0.531, + "2019": 0.534, + "2020": 0.529, + "2021": 0.528 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr102", + "Region": "Gulf", + "1990": 0.431, + "1991": 0.442, + "1992": 0.459, + "1993": 0.485, + "1994": 0.512, + "1995": 0.501, + "1996": 0.506, + "1997": 0.492, + "1998": 0.496, + "1999": 0.495, + "2000": 0.488, + "2001": 0.485, + "2002": 0.486, + "2003": 0.49, + "2004": 0.476, + "2005": 0.477, + "2006": 0.471, + "2007": 0.483, + "2008": 0.482, + "2009": 0.485, + "2010": 0.496, + "2011": 0.491, + "2012": 0.501, + "2013": 0.499, + "2014": 0.525, + "2015": 0.531, + "2016": 0.537, + "2017": 0.538, + "2018": 0.534, + "2019": 0.537, + "2020": 0.532, + "2021": 0.531 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr121", + "Region": "Hela", + "1990": 0.392, + "1991": 0.402, + "1992": 0.418, + "1993": 0.443, + "1994": 0.47, + "1995": 0.459, + "1996": 0.463, + "1997": 0.451, + "1998": 0.454, + "1999": 0.453, + "2000": 0.447, + "2001": 0.444, + "2002": 0.444, + "2003": 0.448, + "2004": 0.435, + "2005": 0.436, + "2006": 0.43, + "2007": 0.441, + "2008": 0.44, + "2009": 0.444, + "2010": 0.454, + "2011": 0.449, + "2012": 0.459, + "2013": 0.457, + "2014": 0.482, + "2015": 0.488, + "2016": 0.494, + "2017": 0.495, + "2018": 0.491, + "2019": 0.494, + "2020": 0.489, + "2021": 0.488 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr122", + "Region": "Jiwaka", + "1990": 0.431, + "1991": 0.442, + "1992": 0.459, + "1993": 0.485, + "1994": 0.512, + "1995": 0.502, + "1996": 0.506, + "1997": 0.493, + "1998": 0.496, + "1999": 0.495, + "2000": 0.488, + "2001": 0.485, + "2002": 0.486, + "2003": 0.49, + "2004": 0.476, + "2005": 0.477, + "2006": 0.471, + "2007": 0.483, + "2008": 0.482, + "2009": 0.485, + "2010": 0.496, + "2011": 0.491, + "2012": 0.502, + "2013": 0.499, + "2014": 0.525, + "2015": 0.531, + "2016": 0.538, + "2017": 0.538, + "2018": 0.534, + "2019": 0.537, + "2020": 0.532, + "2021": 0.531 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr113", + "Region": "Madang", + "1990": 0.445, + "1991": 0.456, + "1992": 0.473, + "1993": 0.499, + "1994": 0.527, + "1995": 0.516, + "1996": 0.52, + "1997": 0.507, + "1998": 0.51, + "1999": 0.51, + "2000": 0.503, + "2001": 0.5, + "2002": 0.5, + "2003": 0.504, + "2004": 0.49, + "2005": 0.492, + "2006": 0.486, + "2007": 0.497, + "2008": 0.496, + "2009": 0.5, + "2010": 0.511, + "2011": 0.506, + "2012": 0.516, + "2013": 0.514, + "2014": 0.54, + "2015": 0.547, + "2016": 0.553, + "2017": 0.554, + "2018": 0.549, + "2019": 0.552, + "2020": 0.547, + "2021": 0.547 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr116", + "Region": "Manus", + "1990": 0.481, + "1991": 0.492, + "1992": 0.509, + "1993": 0.537, + "1994": 0.565, + "1995": 0.554, + "1996": 0.558, + "1997": 0.545, + "1998": 0.548, + "1999": 0.548, + "2000": 0.54, + "2001": 0.537, + "2002": 0.538, + "2003": 0.542, + "2004": 0.527, + "2005": 0.529, + "2006": 0.523, + "2007": 0.534, + "2008": 0.533, + "2009": 0.537, + "2010": 0.548, + "2011": 0.543, + "2012": 0.554, + "2013": 0.552, + "2014": 0.579, + "2015": 0.585, + "2016": 0.591, + "2017": 0.592, + "2018": 0.588, + "2019": 0.591, + "2020": 0.586, + "2021": 0.585 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr105", + "Region": "Milne Bay", + "1990": 0.445, + "1991": 0.456, + "1992": 0.473, + "1993": 0.5, + "1994": 0.527, + "1995": 0.516, + "1996": 0.521, + "1997": 0.507, + "1998": 0.51, + "1999": 0.51, + "2000": 0.503, + "2001": 0.5, + "2002": 0.501, + "2003": 0.504, + "2004": 0.49, + "2005": 0.492, + "2006": 0.486, + "2007": 0.497, + "2008": 0.496, + "2009": 0.5, + "2010": 0.511, + "2011": 0.506, + "2012": 0.516, + "2013": 0.514, + "2014": 0.54, + "2015": 0.547, + "2016": 0.553, + "2017": 0.554, + "2018": 0.549, + "2019": 0.552, + "2020": 0.547, + "2021": 0.547 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr112", + "Region": "Morobe", + "1990": 0.509, + "1991": 0.521, + "1992": 0.539, + "1993": 0.567, + "1994": 0.596, + "1995": 0.585, + "1996": 0.589, + "1997": 0.575, + "1998": 0.578, + "1999": 0.578, + "2000": 0.571, + "2001": 0.567, + "2002": 0.568, + "2003": 0.572, + "2004": 0.557, + "2005": 0.559, + "2006": 0.552, + "2007": 0.564, + "2008": 0.564, + "2009": 0.567, + "2010": 0.578, + "2011": 0.573, + "2012": 0.585, + "2013": 0.582, + "2014": 0.61, + "2015": 0.617, + "2016": 0.623, + "2017": 0.624, + "2018": 0.619, + "2019": 0.623, + "2020": 0.617, + "2021": 0.617 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr104", + "Region": "National Capital District", + "1990": 0.716, + "1991": 0.729, + "1992": 0.75, + "1993": 0.783, + "1994": 0.817, + "1995": 0.804, + "1996": 0.809, + "1997": 0.793, + "1998": 0.797, + "1999": 0.796, + "2000": 0.787, + "2001": 0.784, + "2002": 0.784, + "2003": 0.789, + "2004": 0.772, + "2005": 0.774, + "2006": 0.766, + "2007": 0.78, + "2008": 0.779, + "2009": 0.783, + "2010": 0.797, + "2011": 0.791, + "2012": 0.804, + "2013": 0.801, + "2014": 0.833, + "2015": 0.841, + "2016": 0.849, + "2017": 0.85, + "2018": 0.845, + "2019": 0.848, + "2020": 0.842, + "2021": 0.841 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr117", + "Region": "New Ireland", + "1990": 0.453, + "1991": 0.464, + "1992": 0.481, + "1993": 0.507, + "1994": 0.535, + "1995": 0.524, + "1996": 0.528, + "1997": 0.515, + "1998": 0.518, + "1999": 0.518, + "2000": 0.511, + "2001": 0.508, + "2002": 0.508, + "2003": 0.512, + "2004": 0.498, + "2005": 0.5, + "2006": 0.493, + "2007": 0.505, + "2008": 0.504, + "2009": 0.507, + "2010": 0.518, + "2011": 0.513, + "2012": 0.524, + "2013": 0.522, + "2014": 0.548, + "2015": 0.555, + "2016": 0.561, + "2017": 0.562, + "2018": 0.557, + "2019": 0.56, + "2020": 0.555, + "2021": 0.555 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr106", + "Region": "Northern, Oro", + "1990": 0.454, + "1991": 0.465, + "1992": 0.482, + "1993": 0.509, + "1994": 0.537, + "1995": 0.526, + "1996": 0.53, + "1997": 0.517, + "1998": 0.52, + "1999": 0.519, + "2000": 0.512, + "2001": 0.509, + "2002": 0.51, + "2003": 0.514, + "2004": 0.5, + "2005": 0.501, + "2006": 0.495, + "2007": 0.506, + "2008": 0.506, + "2009": 0.509, + "2010": 0.52, + "2011": 0.515, + "2012": 0.526, + "2013": 0.524, + "2014": 0.55, + "2015": 0.556, + "2016": 0.562, + "2017": 0.563, + "2018": 0.559, + "2019": 0.562, + "2020": 0.557, + "2021": 0.556 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr107", + "Region": "Southern Highlands", + "1990": 0.416, + "1991": 0.426, + "1992": 0.443, + "1993": 0.468, + "1994": 0.496, + "1995": 0.485, + "1996": 0.489, + "1997": 0.476, + "1998": 0.479, + "1999": 0.479, + "2000": 0.472, + "2001": 0.469, + "2002": 0.469, + "2003": 0.473, + "2004": 0.46, + "2005": 0.461, + "2006": 0.455, + "2007": 0.466, + "2008": 0.466, + "2009": 0.469, + "2010": 0.479, + "2011": 0.474, + "2012": 0.485, + "2013": 0.483, + "2014": 0.508, + "2015": 0.514, + "2016": 0.52, + "2017": 0.521, + "2018": 0.517, + "2019": 0.52, + "2020": 0.515, + "2021": 0.514 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr119", + "Region": "West New Britain", + "1990": 0.485, + "1991": 0.497, + "1992": 0.514, + "1993": 0.542, + "1994": 0.57, + "1995": 0.559, + "1996": 0.563, + "1997": 0.55, + "1998": 0.553, + "1999": 0.553, + "2000": 0.545, + "2001": 0.542, + "2002": 0.543, + "2003": 0.547, + "2004": 0.532, + "2005": 0.534, + "2006": 0.527, + "2007": 0.539, + "2008": 0.538, + "2009": 0.542, + "2010": 0.553, + "2011": 0.548, + "2012": 0.559, + "2013": 0.557, + "2014": 0.584, + "2015": 0.59, + "2016": 0.597, + "2017": 0.598, + "2018": 0.593, + "2019": 0.596, + "2020": 0.591, + "2021": 0.59 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr115", + "Region": "West Sepik, Sandaun", + "1990": 0.426, + "1991": 0.436, + "1992": 0.453, + "1993": 0.479, + "1994": 0.506, + "1995": 0.496, + "1996": 0.5, + "1997": 0.487, + "1998": 0.49, + "1999": 0.489, + "2000": 0.483, + "2001": 0.479, + "2002": 0.48, + "2003": 0.484, + "2004": 0.47, + "2005": 0.472, + "2006": 0.466, + "2007": 0.477, + "2008": 0.476, + "2009": 0.479, + "2010": 0.49, + "2011": 0.485, + "2012": 0.496, + "2013": 0.493, + "2014": 0.519, + "2015": 0.525, + "2016": 0.531, + "2017": 0.532, + "2018": 0.528, + "2019": 0.531, + "2020": 0.526, + "2021": 0.525 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr101", + "Region": "Western", + "1990": 0.438, + "1991": 0.449, + "1992": 0.466, + "1993": 0.492, + "1994": 0.52, + "1995": 0.509, + "1996": 0.513, + "1997": 0.5, + "1998": 0.503, + "1999": 0.502, + "2000": 0.495, + "2001": 0.492, + "2002": 0.493, + "2003": 0.497, + "2004": 0.483, + "2005": 0.484, + "2006": 0.478, + "2007": 0.49, + "2008": 0.489, + "2009": 0.492, + "2010": 0.503, + "2011": 0.498, + "2012": 0.509, + "2013": 0.506, + "2014": 0.532, + "2015": 0.539, + "2016": 0.545, + "2017": 0.546, + "2018": 0.541, + "2019": 0.544, + "2020": 0.539, + "2021": 0.539 + }, + { + "Country": "Papua New Guinea", + "Continent": "Asia/Pacific", + "ISO_Code": "PNG", + "Level": "Subnat", + "GDLCODE": "PNGr109", + "Region": "Western Highlands", + "1990": 0.471, + "1991": 0.482, + "1992": 0.499, + "1993": 0.526, + "1994": 0.555, + "1995": 0.543, + "1996": 0.548, + "1997": 0.534, + "1998": 0.537, + "1999": 0.537, + "2000": 0.53, + "2001": 0.526, + "2002": 0.527, + "2003": 0.531, + "2004": 0.517, + "2005": 0.518, + "2006": 0.512, + "2007": 0.524, + "2008": 0.523, + "2009": 0.526, + "2010": 0.537, + "2011": 0.532, + "2012": 0.543, + "2013": 0.541, + "2014": 0.568, + "2015": 0.574, + "2016": 0.58, + "2017": 0.581, + "2018": 0.577, + "2019": 0.58, + "2020": 0.575, + "2021": 0.574 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "National", + "GDLCODE": "PRYt", + "Region": "Total", + "1990": 0.666, + "1991": 0.664, + "1992": 0.662, + "1993": 0.664, + "1994": 0.665, + "1995": 0.669, + "1996": 0.676, + "1997": 0.674, + "1998": 0.671, + "1999": 0.665, + "2000": 0.652, + "2001": 0.65, + "2002": 0.65, + "2003": 0.641, + "2004": 0.648, + "2005": 0.651, + "2006": 0.661, + "2007": 0.674, + "2008": 0.683, + "2009": 0.68, + "2010": 0.694, + "2011": 0.701, + "2012": 0.696, + "2013": 0.707, + "2014": 0.713, + "2015": 0.715, + "2016": 0.719, + "2017": 0.725, + "2018": 0.728, + "2019": 0.726, + "2020": 0.723, + "2021": 0.728 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr105", + "Region": "Central (Asuncion, Central)", + "1990": 0.737, + "1991": 0.735, + "1992": 0.732, + "1993": 0.735, + "1994": 0.736, + "1995": 0.739, + "1996": 0.748, + "1997": 0.745, + "1998": 0.742, + "1999": 0.736, + "2000": 0.722, + "2001": 0.719, + "2002": 0.72, + "2003": 0.706, + "2004": 0.709, + "2005": 0.707, + "2006": 0.713, + "2007": 0.722, + "2008": 0.73, + "2009": 0.726, + "2010": 0.739, + "2011": 0.744, + "2012": 0.739, + "2013": 0.749, + "2014": 0.756, + "2015": 0.758, + "2016": 0.762, + "2017": 0.769, + "2018": 0.772, + "2019": 0.77, + "2020": 0.767, + "2021": 0.771 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr102", + "Region": "North-East (Caaguazu, Alto Parana, Canideyu)", + "1990": 0.637, + "1991": 0.636, + "1992": 0.633, + "1993": 0.636, + "1994": 0.637, + "1995": 0.64, + "1996": 0.647, + "1997": 0.645, + "1998": 0.642, + "1999": 0.636, + "2000": 0.623, + "2001": 0.621, + "2002": 0.622, + "2003": 0.612, + "2004": 0.618, + "2005": 0.62, + "2006": 0.629, + "2007": 0.641, + "2008": 0.652, + "2009": 0.652, + "2010": 0.668, + "2011": 0.676, + "2012": 0.675, + "2013": 0.685, + "2014": 0.691, + "2015": 0.693, + "2016": 0.697, + "2017": 0.703, + "2018": 0.706, + "2019": 0.704, + "2020": 0.701, + "2021": 0.705 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr101", + "Region": "North-West (Boqueron, Alto Paraguay, Presidente Hayes, Conception, Amambay, San pedro, Cordillera)", + "1990": 0.605, + "1991": 0.604, + "1992": 0.601, + "1993": 0.604, + "1994": 0.605, + "1995": 0.608, + "1996": 0.615, + "1997": 0.613, + "1998": 0.61, + "1999": 0.605, + "2000": 0.592, + "2001": 0.59, + "2002": 0.59, + "2003": 0.583, + "2004": 0.591, + "2005": 0.594, + "2006": 0.605, + "2007": 0.618, + "2008": 0.631, + "2009": 0.631, + "2010": 0.647, + "2011": 0.657, + "2012": 0.656, + "2013": 0.666, + "2014": 0.672, + "2015": 0.674, + "2016": 0.678, + "2017": 0.684, + "2018": 0.687, + "2019": 0.685, + "2020": 0.682, + "2021": 0.686 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr104", + "Region": "South-East (Guaira, Misiones, Paraguari, Neembucu)", + "1990": 0.629, + "1991": 0.627, + "1992": 0.625, + "1993": 0.627, + "1994": 0.628, + "1995": 0.631, + "1996": 0.639, + "1997": 0.637, + "1998": 0.633, + "1999": 0.628, + "2000": 0.615, + "2001": 0.613, + "2002": 0.613, + "2003": 0.609, + "2004": 0.62, + "2005": 0.627, + "2006": 0.642, + "2007": 0.659, + "2008": 0.67, + "2009": 0.669, + "2010": 0.685, + "2011": 0.694, + "2012": 0.692, + "2013": 0.702, + "2014": 0.709, + "2015": 0.711, + "2016": 0.715, + "2017": 0.721, + "2018": 0.724, + "2019": 0.722, + "2020": 0.719, + "2021": 0.723 + }, + { + "Country": "Paraguay", + "Continent": "America", + "ISO_Code": "PRY", + "Level": "Subnat", + "GDLCODE": "PRYr103", + "Region": "South-West (Caazapa, Itapua)", + "1990": 0.618, + "1991": 0.616, + "1992": 0.613, + "1993": 0.616, + "1994": 0.617, + "1995": 0.62, + "1996": 0.628, + "1997": 0.626, + "1998": 0.622, + "1999": 0.617, + "2000": 0.604, + "2001": 0.602, + "2002": 0.602, + "2003": 0.602, + "2004": 0.618, + "2005": 0.629, + "2006": 0.648, + "2007": 0.669, + "2008": 0.676, + "2009": 0.67, + "2010": 0.681, + "2011": 0.684, + "2012": 0.677, + "2013": 0.688, + "2014": 0.694, + "2015": 0.696, + "2016": 0.7, + "2017": 0.706, + "2018": 0.709, + "2019": 0.707, + "2020": 0.704, + "2021": 0.708 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "National", + "GDLCODE": "PERt", + "Region": "Total", + "1990": 0.589, + "1991": 0.595, + "1992": 0.591, + "1993": 0.595, + "1994": 0.609, + "1995": 0.616, + "1996": 0.62, + "1997": 0.627, + "1998": 0.625, + "1999": 0.625, + "2000": 0.626, + "2001": 0.626, + "2002": 0.631, + "2003": 0.635, + "2004": 0.638, + "2005": 0.644, + "2006": 0.65, + "2007": 0.661, + "2008": 0.675, + "2009": 0.676, + "2010": 0.685, + "2011": 0.693, + "2012": 0.702, + "2013": 0.712, + "2014": 0.715, + "2015": 0.719, + "2016": 0.722, + "2017": 0.722, + "2018": 0.725, + "2019": 0.727, + "2020": 0.709, + "2021": 0.726 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr106", + "Region": "Central (Huancavelica, Huanuco, Junin, Pasco)", + "1990": 0.53, + "1991": 0.535, + "1992": 0.531, + "1993": 0.535, + "1994": 0.548, + "1995": 0.555, + "1996": 0.558, + "1997": 0.562, + "1998": 0.556, + "1999": 0.553, + "2000": 0.55, + "2001": 0.547, + "2002": 0.55, + "2003": 0.551, + "2004": 0.551, + "2005": 0.563, + "2006": 0.575, + "2007": 0.583, + "2008": 0.593, + "2009": 0.608, + "2010": 0.631, + "2011": 0.636, + "2012": 0.646, + "2013": 0.655, + "2014": 0.658, + "2015": 0.663, + "2016": 0.665, + "2017": 0.665, + "2018": 0.668, + "2019": 0.67, + "2020": 0.652, + "2021": 0.669 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr103", + "Region": "East (Madre de Dios, Cusco, Puno, Apurimac)", + "1990": 0.509, + "1991": 0.515, + "1992": 0.511, + "1993": 0.515, + "1994": 0.528, + "1995": 0.535, + "1996": 0.538, + "1997": 0.541, + "1998": 0.536, + "1999": 0.532, + "2000": 0.53, + "2001": 0.531, + "2002": 0.537, + "2003": 0.541, + "2004": 0.545, + "2005": 0.559, + "2006": 0.573, + "2007": 0.577, + "2008": 0.583, + "2009": 0.602, + "2010": 0.61, + "2011": 0.615, + "2012": 0.627, + "2013": 0.635, + "2014": 0.638, + "2015": 0.643, + "2016": 0.645, + "2017": 0.646, + "2018": 0.648, + "2019": 0.65, + "2020": 0.633, + "2021": 0.649 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr101", + "Region": "North (Tumbes, Piura, Lambayeque, Cajamarca, La Libertad)", + "1990": 0.552, + "1991": 0.557, + "1992": 0.553, + "1993": 0.557, + "1994": 0.571, + "1995": 0.578, + "1996": 0.581, + "1997": 0.59, + "1998": 0.59, + "1999": 0.591, + "2000": 0.594, + "2001": 0.596, + "2002": 0.604, + "2003": 0.609, + "2004": 0.615, + "2005": 0.612, + "2006": 0.609, + "2007": 0.625, + "2008": 0.643, + "2009": 0.654, + "2010": 0.666, + "2011": 0.668, + "2012": 0.675, + "2013": 0.684, + "2014": 0.687, + "2015": 0.692, + "2016": 0.695, + "2017": 0.695, + "2018": 0.698, + "2019": 0.699, + "2020": 0.682, + "2021": 0.699 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr102", + "Region": "North East (Amazonas, Loreto, San Martin, Ucayali)", + "1990": 0.531, + "1991": 0.536, + "1992": 0.532, + "1993": 0.536, + "1994": 0.55, + "1995": 0.557, + "1996": 0.56, + "1997": 0.563, + "1998": 0.558, + "1999": 0.554, + "2000": 0.551, + "2001": 0.554, + "2002": 0.561, + "2003": 0.566, + "2004": 0.571, + "2005": 0.571, + "2006": 0.571, + "2007": 0.591, + "2008": 0.613, + "2009": 0.61, + "2010": 0.619, + "2011": 0.631, + "2012": 0.645, + "2013": 0.654, + "2014": 0.657, + "2015": 0.662, + "2016": 0.664, + "2017": 0.665, + "2018": 0.667, + "2019": 0.669, + "2020": 0.652, + "2021": 0.668 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr104", + "Region": "South (Tacna, Moquegua, Arequipa, Ica, Ayacucho)", + "1990": 0.603, + "1991": 0.609, + "1992": 0.604, + "1993": 0.609, + "1994": 0.623, + "1995": 0.63, + "1996": 0.634, + "1997": 0.642, + "1998": 0.641, + "1999": 0.642, + "2000": 0.645, + "2001": 0.646, + "2002": 0.653, + "2003": 0.657, + "2004": 0.662, + "2005": 0.668, + "2006": 0.674, + "2007": 0.68, + "2008": 0.688, + "2009": 0.683, + "2010": 0.696, + "2011": 0.71, + "2012": 0.709, + "2013": 0.719, + "2014": 0.722, + "2015": 0.727, + "2016": 0.729, + "2017": 0.729, + "2018": 0.732, + "2019": 0.734, + "2020": 0.716, + "2021": 0.733 + }, + { + "Country": "Peru", + "Continent": "America", + "ISO_Code": "PER", + "Level": "Subnat", + "GDLCODE": "PERr105", + "Region": "West (Ancash, Lima, Callao)", + "1990": 0.667, + "1991": 0.673, + "1992": 0.668, + "1993": 0.673, + "1994": 0.688, + "1995": 0.696, + "1996": 0.699, + "1997": 0.708, + "1998": 0.708, + "1999": 0.709, + "2000": 0.712, + "2001": 0.71, + "2002": 0.715, + "2003": 0.718, + "2004": 0.72, + "2005": 0.729, + "2006": 0.737, + "2007": 0.75, + "2008": 0.766, + "2009": 0.753, + "2010": 0.753, + "2011": 0.762, + "2012": 0.772, + "2013": 0.781, + "2014": 0.785, + "2015": 0.79, + "2016": 0.792, + "2017": 0.793, + "2018": 0.795, + "2019": 0.797, + "2020": 0.779, + "2021": 0.797 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "National", + "GDLCODE": "PHLt", + "Region": "Total", + "1990": 0.562, + "1991": 0.56, + "1992": 0.559, + "1993": 0.559, + "1994": 0.564, + "1995": 0.567, + "1996": 0.574, + "1997": 0.58, + "1998": 0.589, + "1999": 0.59, + "2000": 0.588, + "2001": 0.589, + "2002": 0.591, + "2003": 0.596, + "2004": 0.602, + "2005": 0.607, + "2006": 0.611, + "2007": 0.618, + "2008": 0.622, + "2009": 0.625, + "2010": 0.633, + "2011": 0.635, + "2012": 0.643, + "2013": 0.651, + "2014": 0.658, + "2015": 0.665, + "2016": 0.672, + "2017": 0.68, + "2018": 0.687, + "2019": 0.692, + "2020": 0.672, + "2021": 0.678 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr117", + "Region": "ARMM", + "1990": 0.443, + "1991": 0.441, + "1992": 0.44, + "1993": 0.44, + "1994": 0.444, + "1995": 0.448, + "1996": 0.453, + "1997": 0.459, + "1998": 0.467, + "1999": 0.465, + "2000": 0.461, + "2001": 0.46, + "2002": 0.459, + "2003": 0.46, + "2004": 0.468, + "2005": 0.474, + "2006": 0.479, + "2007": 0.487, + "2008": 0.492, + "2009": 0.491, + "2010": 0.494, + "2011": 0.492, + "2012": 0.495, + "2013": 0.499, + "2014": 0.511, + "2015": 0.524, + "2016": 0.537, + "2017": 0.551, + "2018": 0.557, + "2019": 0.562, + "2020": 0.544, + "2021": 0.55 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr102", + "Region": "Cordillera Admin Region", + "1990": 0.527, + "1991": 0.524, + "1992": 0.523, + "1993": 0.523, + "1994": 0.528, + "1995": 0.531, + "1996": 0.537, + "1997": 0.544, + "1998": 0.552, + "1999": 0.561, + "2000": 0.567, + "2001": 0.577, + "2002": 0.587, + "2003": 0.599, + "2004": 0.607, + "2005": 0.613, + "2006": 0.619, + "2007": 0.627, + "2008": 0.633, + "2009": 0.637, + "2010": 0.645, + "2011": 0.649, + "2012": 0.658, + "2013": 0.667, + "2014": 0.671, + "2015": 0.676, + "2016": 0.681, + "2017": 0.686, + "2018": 0.693, + "2019": 0.699, + "2020": 0.679, + "2021": 0.685 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr103", + "Region": "I-Ilocos", + "1990": 0.587, + "1991": 0.584, + "1992": 0.583, + "1993": 0.584, + "1994": 0.588, + "1995": 0.592, + "1996": 0.598, + "1997": 0.605, + "1998": 0.614, + "1999": 0.613, + "2000": 0.61, + "2001": 0.61, + "2002": 0.611, + "2003": 0.614, + "2004": 0.619, + "2005": 0.623, + "2006": 0.627, + "2007": 0.632, + "2008": 0.636, + "2009": 0.636, + "2010": 0.641, + "2011": 0.641, + "2012": 0.646, + "2013": 0.652, + "2014": 0.662, + "2015": 0.672, + "2016": 0.684, + "2017": 0.696, + "2018": 0.702, + "2019": 0.708, + "2020": 0.688, + "2021": 0.694 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr104", + "Region": "II-Cagayan Valley", + "1990": 0.592, + "1991": 0.589, + "1992": 0.588, + "1993": 0.589, + "1994": 0.593, + "1995": 0.597, + "1996": 0.603, + "1997": 0.61, + "1998": 0.619, + "1999": 0.607, + "2000": 0.593, + "2001": 0.582, + "2002": 0.572, + "2003": 0.564, + "2004": 0.573, + "2005": 0.582, + "2006": 0.589, + "2007": 0.599, + "2008": 0.607, + "2009": 0.609, + "2010": 0.615, + "2011": 0.617, + "2012": 0.624, + "2013": 0.631, + "2014": 0.638, + "2015": 0.646, + "2016": 0.654, + "2017": 0.663, + "2018": 0.669, + "2019": 0.675, + "2020": 0.655, + "2021": 0.661 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr105", + "Region": "III-Central Luzon", + "1990": 0.515, + "1991": 0.513, + "1992": 0.512, + "1993": 0.512, + "1994": 0.517, + "1995": 0.52, + "1996": 0.526, + "1997": 0.532, + "1998": 0.541, + "1999": 0.56, + "2000": 0.575, + "2001": 0.594, + "2002": 0.614, + "2003": 0.636, + "2004": 0.64, + "2005": 0.642, + "2006": 0.644, + "2007": 0.649, + "2008": 0.65, + "2009": 0.654, + "2010": 0.663, + "2011": 0.665, + "2012": 0.674, + "2013": 0.683, + "2014": 0.69, + "2015": 0.698, + "2016": 0.706, + "2017": 0.715, + "2018": 0.722, + "2019": 0.728, + "2020": 0.707, + "2021": 0.713 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr106", + "Region": "IVA-CALABARZON", + "1990": 0.527, + "1991": 0.524, + "1992": 0.523, + "1993": 0.524, + "1994": 0.528, + "1995": 0.532, + "1996": 0.538, + "1997": 0.544, + "1998": 0.553, + "1999": 0.574, + "2000": 0.592, + "2001": 0.613, + "2002": 0.636, + "2003": 0.66, + "2004": 0.664, + "2005": 0.667, + "2006": 0.67, + "2007": 0.675, + "2008": 0.677, + "2009": 0.678, + "2010": 0.684, + "2011": 0.684, + "2012": 0.689, + "2013": 0.696, + "2014": 0.701, + "2015": 0.707, + "2016": 0.714, + "2017": 0.72, + "2018": 0.727, + "2019": 0.733, + "2020": 0.712, + "2021": 0.719 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr107", + "Region": "IVB-MIMAROPA", + "1990": 0.532, + "1991": 0.53, + "1992": 0.529, + "1993": 0.529, + "1994": 0.534, + "1995": 0.537, + "1996": 0.543, + "1997": 0.55, + "1998": 0.558, + "1999": 0.55, + "2000": 0.539, + "2001": 0.531, + "2002": 0.524, + "2003": 0.518, + "2004": 0.525, + "2005": 0.531, + "2006": 0.537, + "2007": 0.544, + "2008": 0.55, + "2009": 0.555, + "2010": 0.565, + "2011": 0.569, + "2012": 0.579, + "2013": 0.589, + "2014": 0.602, + "2015": 0.614, + "2016": 0.628, + "2017": 0.642, + "2018": 0.648, + "2019": 0.654, + "2020": 0.634, + "2021": 0.64 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr112", + "Region": "IX-Zamboanga Peninsula", + "1990": 0.528, + "1991": 0.525, + "1992": 0.524, + "1993": 0.525, + "1994": 0.529, + "1995": 0.533, + "1996": 0.539, + "1997": 0.545, + "1998": 0.553, + "1999": 0.546, + "2000": 0.536, + "2001": 0.528, + "2002": 0.522, + "2003": 0.518, + "2004": 0.532, + "2005": 0.546, + "2006": 0.558, + "2007": 0.573, + "2008": 0.586, + "2009": 0.589, + "2010": 0.597, + "2011": 0.6, + "2012": 0.608, + "2013": 0.616, + "2014": 0.62, + "2015": 0.624, + "2016": 0.629, + "2017": 0.634, + "2018": 0.64, + "2019": 0.646, + "2020": 0.626, + "2021": 0.632 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr101", + "Region": "National Capital Region", + "1990": 0.564, + "1991": 0.562, + "1992": 0.561, + "1993": 0.561, + "1994": 0.566, + "1995": 0.569, + "1996": 0.576, + "1997": 0.582, + "1998": 0.591, + "1999": 0.61, + "2000": 0.626, + "2001": 0.646, + "2002": 0.666, + "2003": 0.689, + "2004": 0.692, + "2005": 0.693, + "2006": 0.694, + "2007": 0.697, + "2008": 0.698, + "2009": 0.698, + "2010": 0.703, + "2011": 0.702, + "2012": 0.707, + "2013": 0.713, + "2014": 0.72, + "2015": 0.728, + "2016": 0.736, + "2017": 0.745, + "2018": 0.751, + "2019": 0.758, + "2020": 0.736, + "2021": 0.743 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr108", + "Region": "V-Bicol", + "1990": 0.504, + "1991": 0.501, + "1992": 0.5, + "1993": 0.501, + "1994": 0.505, + "1995": 0.509, + "1996": 0.515, + "1997": 0.521, + "1998": 0.529, + "1999": 0.531, + "2000": 0.53, + "2001": 0.532, + "2002": 0.535, + "2003": 0.54, + "2004": 0.549, + "2005": 0.557, + "2006": 0.564, + "2007": 0.573, + "2008": 0.58, + "2009": 0.583, + "2010": 0.591, + "2011": 0.594, + "2012": 0.601, + "2013": 0.61, + "2014": 0.616, + "2015": 0.623, + "2016": 0.63, + "2017": 0.638, + "2018": 0.644, + "2019": 0.65, + "2020": 0.63, + "2021": 0.636 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr109", + "Region": "VI-Western Visayas", + "1990": 0.508, + "1991": 0.506, + "1992": 0.505, + "1993": 0.505, + "1994": 0.51, + "1995": 0.513, + "1996": 0.519, + "1997": 0.525, + "1998": 0.534, + "1999": 0.533, + "2000": 0.53, + "2001": 0.53, + "2002": 0.531, + "2003": 0.534, + "2004": 0.547, + "2005": 0.558, + "2006": 0.569, + "2007": 0.582, + "2008": 0.592, + "2009": 0.593, + "2010": 0.599, + "2011": 0.6, + "2012": 0.606, + "2013": 0.613, + "2014": 0.621, + "2015": 0.629, + "2016": 0.638, + "2017": 0.647, + "2018": 0.654, + "2019": 0.659, + "2020": 0.64, + "2021": 0.646 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr110", + "Region": "VII-Central Visayas", + "1990": 0.52, + "1991": 0.518, + "1992": 0.517, + "1993": 0.517, + "1994": 0.521, + "1995": 0.525, + "1996": 0.531, + "1997": 0.537, + "1998": 0.546, + "1999": 0.552, + "2000": 0.555, + "2001": 0.562, + "2002": 0.57, + "2003": 0.579, + "2004": 0.586, + "2005": 0.591, + "2006": 0.596, + "2007": 0.603, + "2008": 0.608, + "2009": 0.611, + "2010": 0.619, + "2011": 0.621, + "2012": 0.629, + "2013": 0.637, + "2014": 0.644, + "2015": 0.652, + "2016": 0.66, + "2017": 0.668, + "2018": 0.675, + "2019": 0.681, + "2020": 0.66, + "2021": 0.667 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr111", + "Region": "VIII-Eastern Visayas", + "1990": 0.549, + "1991": 0.547, + "1992": 0.546, + "1993": 0.546, + "1994": 0.551, + "1995": 0.554, + "1996": 0.56, + "1997": 0.567, + "1998": 0.576, + "1999": 0.563, + "2000": 0.547, + "2001": 0.535, + "2002": 0.523, + "2003": 0.514, + "2004": 0.525, + "2005": 0.536, + "2006": 0.545, + "2007": 0.557, + "2008": 0.567, + "2009": 0.575, + "2010": 0.588, + "2011": 0.596, + "2012": 0.609, + "2013": 0.623, + "2014": 0.63, + "2015": 0.636, + "2016": 0.644, + "2017": 0.652, + "2018": 0.658, + "2019": 0.664, + "2020": 0.644, + "2021": 0.65 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr113", + "Region": "X-Northern Mindanao", + "1990": 0.663, + "1991": 0.66, + "1992": 0.659, + "1993": 0.66, + "1994": 0.665, + "1995": 0.669, + "1996": 0.675, + "1997": 0.682, + "1998": 0.692, + "1999": 0.669, + "2000": 0.642, + "2001": 0.62, + "2002": 0.598, + "2003": 0.578, + "2004": 0.584, + "2005": 0.588, + "2006": 0.591, + "2007": 0.597, + "2008": 0.6, + "2009": 0.602, + "2010": 0.609, + "2011": 0.61, + "2012": 0.617, + "2013": 0.624, + "2014": 0.631, + "2015": 0.638, + "2016": 0.646, + "2017": 0.654, + "2018": 0.66, + "2019": 0.666, + "2020": 0.646, + "2021": 0.652 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr114", + "Region": "XI-Davao", + "1990": 0.519, + "1991": 0.516, + "1992": 0.515, + "1993": 0.516, + "1994": 0.52, + "1995": 0.524, + "1996": 0.529, + "1997": 0.536, + "1998": 0.544, + "1999": 0.552, + "2000": 0.557, + "2001": 0.566, + "2002": 0.575, + "2003": 0.586, + "2004": 0.586, + "2005": 0.585, + "2006": 0.584, + "2007": 0.585, + "2008": 0.583, + "2009": 0.59, + "2010": 0.602, + "2011": 0.608, + "2012": 0.62, + "2013": 0.632, + "2014": 0.632, + "2015": 0.632, + "2016": 0.633, + "2017": 0.634, + "2018": 0.641, + "2019": 0.646, + "2020": 0.627, + "2021": 0.633 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr115", + "Region": "XII-SOCCSKSARGEN", + "1990": 0.442, + "1991": 0.44, + "1992": 0.439, + "1993": 0.439, + "1994": 0.443, + "1995": 0.447, + "1996": 0.452, + "1997": 0.458, + "1998": 0.466, + "1999": 0.479, + "2000": 0.489, + "2001": 0.502, + "2002": 0.516, + "2003": 0.532, + "2004": 0.538, + "2005": 0.544, + "2006": 0.548, + "2007": 0.555, + "2008": 0.56, + "2009": 0.568, + "2010": 0.58, + "2011": 0.588, + "2012": 0.6, + "2013": 0.614, + "2014": 0.617, + "2015": 0.62, + "2016": 0.624, + "2017": 0.628, + "2018": 0.634, + "2019": 0.64, + "2020": 0.621, + "2021": 0.627 + }, + { + "Country": "Philippines", + "Continent": "Asia/Pacific", + "ISO_Code": "PHL", + "Level": "Subnat", + "GDLCODE": "PHLr116", + "Region": "XIII-Caraga", + "1990": 0.549, + "1991": 0.547, + "1992": 0.546, + "1993": 0.546, + "1994": 0.551, + "1995": 0.554, + "1996": 0.561, + "1997": 0.567, + "1998": 0.576, + "1999": 0.573, + "2000": 0.568, + "2001": 0.566, + "2002": 0.565, + "2003": 0.566, + "2004": 0.573, + "2005": 0.578, + "2006": 0.583, + "2007": 0.59, + "2008": 0.595, + "2009": 0.599, + "2010": 0.607, + "2011": 0.61, + "2012": 0.618, + "2013": 0.627, + "2014": 0.636, + "2015": 0.645, + "2016": 0.655, + "2017": 0.665, + "2018": 0.672, + "2019": 0.677, + "2020": 0.657, + "2021": 0.664 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "National", + "GDLCODE": "POLt", + "Region": "Total", + "1990": 0.712, + "1991": 0.697, + "1992": 0.699, + "1993": 0.705, + "1994": 0.718, + "1995": 0.727, + "1996": 0.737, + "1997": 0.746, + "1998": 0.753, + "1999": 0.76, + "2000": 0.768, + "2001": 0.77, + "2002": 0.773, + "2003": 0.778, + "2004": 0.782, + "2005": 0.789, + "2006": 0.798, + "2007": 0.807, + "2008": 0.815, + "2009": 0.817, + "2010": 0.823, + "2011": 0.83, + "2012": 0.832, + "2013": 0.834, + "2014": 0.838, + "2015": 0.845, + "2016": 0.848, + "2017": 0.856, + "2018": 0.863, + "2019": 0.871, + "2020": 0.867, + "2021": 0.876 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr112", + "Region": "Dolnoslaskie", + "1990": 0.728, + "1991": 0.713, + "1992": 0.715, + "1993": 0.721, + "1994": 0.733, + "1995": 0.743, + "1996": 0.753, + "1997": 0.762, + "1998": 0.769, + "1999": 0.776, + "2000": 0.785, + "2001": 0.784, + "2002": 0.791, + "2003": 0.792, + "2004": 0.797, + "2005": 0.809, + "2006": 0.823, + "2007": 0.835, + "2008": 0.84, + "2009": 0.846, + "2010": 0.857, + "2011": 0.865, + "2012": 0.867, + "2013": 0.867, + "2014": 0.872, + "2015": 0.877, + "2016": 0.88, + "2017": 0.886, + "2018": 0.893, + "2019": 0.901, + "2020": 0.898, + "2021": 0.907 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr114", + "Region": "Kujawsko-Pomorskie", + "1990": 0.706, + "1991": 0.692, + "1992": 0.694, + "1993": 0.7, + "1994": 0.712, + "1995": 0.721, + "1996": 0.731, + "1997": 0.74, + "1998": 0.747, + "1999": 0.754, + "2000": 0.763, + "2001": 0.765, + "2002": 0.765, + "2003": 0.771, + "2004": 0.77, + "2005": 0.778, + "2006": 0.786, + "2007": 0.795, + "2008": 0.801, + "2009": 0.801, + "2010": 0.805, + "2011": 0.811, + "2012": 0.812, + "2013": 0.816, + "2014": 0.819, + "2015": 0.824, + "2016": 0.829, + "2017": 0.834, + "2018": 0.843, + "2019": 0.847, + "2020": 0.844, + "2021": 0.853 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr101", + "Region": "Lodzkie", + "1990": 0.702, + "1991": 0.688, + "1992": 0.69, + "1993": 0.696, + "1994": 0.708, + "1995": 0.717, + "1996": 0.727, + "1997": 0.736, + "1998": 0.743, + "1999": 0.75, + "2000": 0.759, + "2001": 0.765, + "2002": 0.769, + "2003": 0.778, + "2004": 0.781, + "2005": 0.79, + "2006": 0.796, + "2007": 0.807, + "2008": 0.815, + "2009": 0.815, + "2010": 0.824, + "2011": 0.83, + "2012": 0.834, + "2013": 0.837, + "2014": 0.843, + "2015": 0.848, + "2016": 0.851, + "2017": 0.858, + "2018": 0.867, + "2019": 0.876, + "2020": 0.873, + "2021": 0.882 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr105", + "Region": "Lubelskie", + "1990": 0.668, + "1991": 0.654, + "1992": 0.656, + "1993": 0.662, + "1994": 0.674, + "1995": 0.682, + "1996": 0.692, + "1997": 0.701, + "1998": 0.708, + "1999": 0.714, + "2000": 0.723, + "2001": 0.731, + "2002": 0.731, + "2003": 0.732, + "2004": 0.733, + "2005": 0.741, + "2006": 0.749, + "2007": 0.761, + "2008": 0.77, + "2009": 0.768, + "2010": 0.775, + "2011": 0.784, + "2012": 0.788, + "2013": 0.79, + "2014": 0.795, + "2015": 0.796, + "2016": 0.801, + "2017": 0.808, + "2018": 0.814, + "2019": 0.823, + "2020": 0.82, + "2021": 0.828 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr111", + "Region": "Lubuskie", + "1990": 0.706, + "1991": 0.692, + "1992": 0.694, + "1993": 0.7, + "1994": 0.712, + "1995": 0.721, + "1996": 0.731, + "1997": 0.74, + "1998": 0.747, + "1999": 0.754, + "2000": 0.763, + "2001": 0.761, + "2002": 0.762, + "2003": 0.767, + "2004": 0.774, + "2005": 0.784, + "2006": 0.794, + "2007": 0.8, + "2008": 0.803, + "2009": 0.803, + "2010": 0.81, + "2011": 0.813, + "2012": 0.816, + "2013": 0.818, + "2014": 0.825, + "2015": 0.83, + "2016": 0.833, + "2017": 0.839, + "2018": 0.846, + "2019": 0.852, + "2020": 0.849, + "2021": 0.857 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr103", + "Region": "Malopolskie", + "1990": 0.706, + "1991": 0.692, + "1992": 0.694, + "1993": 0.7, + "1994": 0.712, + "1995": 0.721, + "1996": 0.731, + "1997": 0.74, + "1998": 0.747, + "1999": 0.754, + "2000": 0.763, + "2001": 0.761, + "2002": 0.765, + "2003": 0.771, + "2004": 0.774, + "2005": 0.781, + "2006": 0.794, + "2007": 0.8, + "2008": 0.809, + "2009": 0.81, + "2010": 0.814, + "2011": 0.824, + "2012": 0.825, + "2013": 0.827, + "2014": 0.834, + "2015": 0.842, + "2016": 0.847, + "2017": 0.855, + "2018": 0.864, + "2019": 0.871, + "2020": 0.868, + "2021": 0.877 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr102", + "Region": "Mazowieckie", + "1990": 0.795, + "1991": 0.78, + "1992": 0.782, + "1993": 0.789, + "1994": 0.802, + "1995": 0.811, + "1996": 0.822, + "1997": 0.831, + "1998": 0.839, + "1999": 0.846, + "2000": 0.855, + "2001": 0.855, + "2002": 0.856, + "2003": 0.862, + "2004": 0.867, + "2005": 0.877, + "2006": 0.886, + "2007": 0.894, + "2008": 0.898, + "2009": 0.905, + "2010": 0.914, + "2011": 0.92, + "2012": 0.923, + "2013": 0.927, + "2014": 0.931, + "2015": 0.936, + "2016": 0.94, + "2017": 0.949, + "2018": 0.957, + "2019": 0.966, + "2020": 0.963, + "2021": 0.972 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr113", + "Region": "Opolskie", + "1990": 0.695, + "1991": 0.68, + "1992": 0.682, + "1993": 0.688, + "1994": 0.7, + "1995": 0.709, + "1996": 0.719, + "1997": 0.728, + "1998": 0.735, + "1999": 0.742, + "2000": 0.75, + "2001": 0.746, + "2002": 0.751, + "2003": 0.75, + "2004": 0.766, + "2005": 0.772, + "2006": 0.777, + "2007": 0.79, + "2008": 0.803, + "2009": 0.798, + "2010": 0.803, + "2011": 0.811, + "2012": 0.81, + "2013": 0.812, + "2014": 0.817, + "2015": 0.822, + "2016": 0.825, + "2017": 0.831, + "2018": 0.84, + "2019": 0.846, + "2020": 0.843, + "2021": 0.851 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr106", + "Region": "Podkarpackie", + "1990": 0.668, + "1991": 0.654, + "1992": 0.656, + "1993": 0.662, + "1994": 0.674, + "1995": 0.682, + "1996": 0.692, + "1997": 0.701, + "1998": 0.708, + "1999": 0.714, + "2000": 0.723, + "2001": 0.731, + "2002": 0.735, + "2003": 0.741, + "2004": 0.738, + "2005": 0.745, + "2006": 0.753, + "2007": 0.761, + "2008": 0.772, + "2009": 0.771, + "2010": 0.777, + "2011": 0.784, + "2012": 0.785, + "2013": 0.792, + "2014": 0.795, + "2015": 0.803, + "2016": 0.805, + "2017": 0.81, + "2018": 0.821, + "2019": 0.826, + "2020": 0.823, + "2021": 0.832 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr108", + "Region": "Podlaskie", + "1990": 0.673, + "1991": 0.659, + "1992": 0.66, + "1993": 0.666, + "1994": 0.678, + "1995": 0.687, + "1996": 0.697, + "1997": 0.706, + "1998": 0.713, + "1999": 0.719, + "2000": 0.728, + "2001": 0.739, + "2002": 0.739, + "2003": 0.741, + "2004": 0.742, + "2005": 0.752, + "2006": 0.756, + "2007": 0.77, + "2008": 0.775, + "2009": 0.78, + "2010": 0.785, + "2011": 0.791, + "2012": 0.79, + "2013": 0.797, + "2014": 0.801, + "2015": 0.803, + "2016": 0.805, + "2017": 0.816, + "2018": 0.823, + "2019": 0.831, + "2020": 0.828, + "2021": 0.837 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr116", + "Region": "Pomorskie", + "1990": 0.721, + "1991": 0.706, + "1992": 0.708, + "1993": 0.714, + "1994": 0.727, + "1995": 0.736, + "1996": 0.746, + "1997": 0.755, + "1998": 0.762, + "1999": 0.769, + "2000": 0.778, + "2001": 0.781, + "2002": 0.785, + "2003": 0.789, + "2004": 0.791, + "2005": 0.801, + "2006": 0.809, + "2007": 0.817, + "2008": 0.82, + "2009": 0.828, + "2010": 0.829, + "2011": 0.837, + "2012": 0.841, + "2013": 0.842, + "2014": 0.844, + "2015": 0.853, + "2016": 0.858, + "2017": 0.865, + "2018": 0.873, + "2019": 0.881, + "2020": 0.878, + "2021": 0.887 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr104", + "Region": "Slaskie", + "1990": 0.734, + "1991": 0.72, + "1992": 0.721, + "1993": 0.728, + "1994": 0.74, + "1995": 0.749, + "1996": 0.759, + "1997": 0.769, + "1998": 0.776, + "1999": 0.783, + "2000": 0.792, + "2001": 0.796, + "2002": 0.8, + "2003": 0.806, + "2004": 0.812, + "2005": 0.814, + "2006": 0.82, + "2007": 0.829, + "2008": 0.839, + "2009": 0.842, + "2010": 0.849, + "2011": 0.856, + "2012": 0.856, + "2013": 0.855, + "2014": 0.858, + "2015": 0.865, + "2016": 0.868, + "2017": 0.876, + "2018": 0.885, + "2019": 0.89, + "2020": 0.886, + "2021": 0.895 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr107", + "Region": "Swietokrzyskie", + "1990": 0.682, + "1991": 0.668, + "1992": 0.669, + "1993": 0.675, + "1994": 0.687, + "1995": 0.696, + "1996": 0.706, + "1997": 0.715, + "1998": 0.722, + "1999": 0.729, + "2000": 0.737, + "2001": 0.739, + "2002": 0.747, + "2003": 0.75, + "2004": 0.755, + "2005": 0.755, + "2006": 0.769, + "2007": 0.78, + "2008": 0.795, + "2009": 0.791, + "2010": 0.794, + "2011": 0.798, + "2012": 0.799, + "2013": 0.797, + "2014": 0.801, + "2015": 0.805, + "2016": 0.808, + "2017": 0.814, + "2018": 0.825, + "2019": 0.83, + "2020": 0.827, + "2021": 0.835 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr115", + "Region": "Warminsko-Mazurskie", + "1990": 0.682, + "1991": 0.668, + "1992": 0.669, + "1993": 0.675, + "1994": 0.687, + "1995": 0.696, + "1996": 0.706, + "1997": 0.715, + "1998": 0.722, + "1999": 0.729, + "2000": 0.737, + "2001": 0.735, + "2002": 0.739, + "2003": 0.746, + "2004": 0.746, + "2005": 0.755, + "2006": 0.762, + "2007": 0.77, + "2008": 0.777, + "2009": 0.78, + "2010": 0.782, + "2011": 0.789, + "2012": 0.79, + "2013": 0.792, + "2014": 0.797, + "2015": 0.803, + "2016": 0.805, + "2017": 0.81, + "2018": 0.816, + "2019": 0.823, + "2020": 0.82, + "2021": 0.828 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr109", + "Region": "Wielkopolskie", + "1990": 0.734, + "1991": 0.72, + "1992": 0.721, + "1993": 0.728, + "1994": 0.74, + "1995": 0.749, + "1996": 0.759, + "1997": 0.769, + "1998": 0.776, + "1999": 0.783, + "2000": 0.792, + "2001": 0.793, + "2002": 0.791, + "2003": 0.799, + "2004": 0.807, + "2005": 0.814, + "2006": 0.82, + "2007": 0.829, + "2008": 0.836, + "2009": 0.844, + "2010": 0.845, + "2011": 0.851, + "2012": 0.855, + "2013": 0.86, + "2014": 0.864, + "2015": 0.872, + "2016": 0.877, + "2017": 0.885, + "2018": 0.891, + "2019": 0.899, + "2020": 0.895, + "2021": 0.904 + }, + { + "Country": "Poland", + "Continent": "Europe", + "ISO_Code": "POL", + "Level": "Subnat", + "GDLCODE": "POLr110", + "Region": "Zachodniopomorskie", + "1990": 0.721, + "1991": 0.706, + "1992": 0.708, + "1993": 0.714, + "1994": 0.727, + "1995": 0.736, + "1996": 0.746, + "1997": 0.755, + "1998": 0.762, + "1999": 0.769, + "2000": 0.778, + "2001": 0.778, + "2002": 0.779, + "2003": 0.778, + "2004": 0.777, + "2005": 0.784, + "2006": 0.794, + "2007": 0.8, + "2008": 0.809, + "2009": 0.808, + "2010": 0.812, + "2011": 0.815, + "2012": 0.818, + "2013": 0.818, + "2014": 0.823, + "2015": 0.831, + "2016": 0.833, + "2017": 0.839, + "2018": 0.848, + "2019": 0.855, + "2020": 0.851, + "2021": 0.86 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "National", + "GDLCODE": "PRTt", + "Region": "Total", + "1990": 0.82, + "1991": 0.827, + "1992": 0.829, + "1993": 0.825, + "1994": 0.825, + "1995": 0.832, + "1996": 0.835, + "1997": 0.84, + "1998": 0.848, + "1999": 0.854, + "2000": 0.855, + "2001": 0.857, + "2002": 0.859, + "2003": 0.858, + "2004": 0.86, + "2005": 0.86, + "2006": 0.86, + "2007": 0.864, + "2008": 0.862, + "2009": 0.86, + "2010": 0.862, + "2011": 0.861, + "2012": 0.855, + "2013": 0.857, + "2014": 0.858, + "2015": 0.863, + "2016": 0.867, + "2017": 0.873, + "2018": 0.877, + "2019": 0.881, + "2020": 0.87, + "2021": 0.877 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr105", + "Region": "Alentejo", + "1990": 0.809, + "1991": 0.815, + "1992": 0.817, + "1993": 0.814, + "1994": 0.814, + "1995": 0.82, + "1996": 0.823, + "1997": 0.828, + "1998": 0.836, + "1999": 0.842, + "2000": 0.843, + "2001": 0.843, + "2002": 0.843, + "2003": 0.845, + "2004": 0.848, + "2005": 0.847, + "2006": 0.85, + "2007": 0.852, + "2008": 0.847, + "2009": 0.843, + "2010": 0.848, + "2011": 0.846, + "2012": 0.84, + "2013": 0.84, + "2014": 0.843, + "2015": 0.854, + "2016": 0.856, + "2017": 0.864, + "2018": 0.864, + "2019": 0.867, + "2020": 0.856, + "2021": 0.863 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr102", + "Region": "Algarve", + "1990": 0.826, + "1991": 0.833, + "1992": 0.834, + "1993": 0.831, + "1994": 0.831, + "1995": 0.837, + "1996": 0.841, + "1997": 0.846, + "1998": 0.854, + "1999": 0.86, + "2000": 0.861, + "2001": 0.866, + "2002": 0.869, + "2003": 0.87, + "2004": 0.87, + "2005": 0.871, + "2006": 0.871, + "2007": 0.876, + "2008": 0.873, + "2009": 0.863, + "2010": 0.862, + "2011": 0.858, + "2012": 0.856, + "2013": 0.857, + "2014": 0.862, + "2015": 0.867, + "2016": 0.878, + "2017": 0.888, + "2018": 0.894, + "2019": 0.899, + "2020": 0.887, + "2021": 0.895 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr104", + "Region": "Area Metropolitana de Lisboa", + "1990": 0.88, + "1991": 0.886, + "1992": 0.888, + "1993": 0.884, + "1994": 0.885, + "1995": 0.891, + "1996": 0.895, + "1997": 0.9, + "1998": 0.908, + "1999": 0.914, + "2000": 0.915, + "2001": 0.916, + "2002": 0.919, + "2003": 0.918, + "2004": 0.92, + "2005": 0.92, + "2006": 0.919, + "2007": 0.922, + "2008": 0.92, + "2009": 0.918, + "2010": 0.918, + "2011": 0.916, + "2012": 0.907, + "2013": 0.908, + "2014": 0.907, + "2015": 0.908, + "2016": 0.911, + "2017": 0.915, + "2018": 0.918, + "2019": 0.922, + "2020": 0.911, + "2021": 0.918 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr103", + "Region": "Centro", + "1990": 0.795, + "1991": 0.801, + "1992": 0.803, + "1993": 0.799, + "1994": 0.799, + "1995": 0.805, + "1996": 0.809, + "1997": 0.814, + "1998": 0.822, + "1999": 0.827, + "2000": 0.828, + "2001": 0.83, + "2002": 0.831, + "2003": 0.832, + "2004": 0.835, + "2005": 0.834, + "2006": 0.834, + "2007": 0.838, + "2008": 0.833, + "2009": 0.833, + "2010": 0.835, + "2011": 0.834, + "2012": 0.83, + "2013": 0.832, + "2014": 0.834, + "2015": 0.839, + "2016": 0.845, + "2017": 0.85, + "2018": 0.854, + "2019": 0.859, + "2020": 0.848, + "2021": 0.854 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr101", + "Region": "Norte", + "1990": 0.785, + "1991": 0.792, + "1992": 0.793, + "1993": 0.79, + "1994": 0.79, + "1995": 0.796, + "1996": 0.799, + "1997": 0.804, + "1998": 0.812, + "1999": 0.818, + "2000": 0.819, + "2001": 0.823, + "2002": 0.824, + "2003": 0.819, + "2004": 0.82, + "2005": 0.822, + "2006": 0.822, + "2007": 0.827, + "2008": 0.827, + "2009": 0.825, + "2010": 0.828, + "2011": 0.827, + "2012": 0.823, + "2013": 0.826, + "2014": 0.831, + "2015": 0.835, + "2016": 0.841, + "2017": 0.846, + "2018": 0.852, + "2019": 0.856, + "2020": 0.845, + "2021": 0.852 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr107", + "Region": "Regiao Autonoma da Madeira", + "1990": 0.803, + "1991": 0.81, + "1992": 0.812, + "1993": 0.808, + "1994": 0.808, + "1995": 0.814, + "1996": 0.818, + "1997": 0.823, + "1998": 0.831, + "1999": 0.836, + "2000": 0.837, + "2001": 0.836, + "2002": 0.85, + "2003": 0.852, + "2004": 0.859, + "2005": 0.86, + "2006": 0.861, + "2007": 0.862, + "2008": 0.862, + "2009": 0.858, + "2010": 0.859, + "2011": 0.861, + "2012": 0.848, + "2013": 0.852, + "2014": 0.854, + "2015": 0.856, + "2016": 0.862, + "2017": 0.871, + "2018": 0.873, + "2019": 0.875, + "2020": 0.864, + "2021": 0.871 + }, + { + "Country": "Portugal", + "Continent": "Europe", + "ISO_Code": "PRT", + "Level": "Subnat", + "GDLCODE": "PRTr106", + "Region": "Regiao Autonoma dos Acores", + "1990": 0.785, + "1991": 0.792, + "1992": 0.793, + "1993": 0.79, + "1994": 0.79, + "1995": 0.796, + "1996": 0.799, + "1997": 0.804, + "1998": 0.812, + "1999": 0.818, + "2000": 0.819, + "2001": 0.827, + "2002": 0.834, + "2003": 0.835, + "2004": 0.837, + "2005": 0.839, + "2006": 0.84, + "2007": 0.842, + "2008": 0.845, + "2009": 0.844, + "2010": 0.847, + "2011": 0.845, + "2012": 0.838, + "2013": 0.841, + "2014": 0.841, + "2015": 0.845, + "2016": 0.85, + "2017": 0.853, + "2018": 0.857, + "2019": 0.862, + "2020": 0.851, + "2021": 0.858 + }, + { + "Country": "Qatar", + "Continent": "Asia/Pacific", + "ISO_Code": "QAT", + "Level": "National", + "GDLCODE": "QATt", + "Region": "Total", + "1990": 0.966, + "1991": 0.96, + "1992": 0.973, + "1993": 0.97, + "1994": 0.97, + "1995": 0.972, + "1996": 0.97, + "1997": 1, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "National", + "GDLCODE": "ROUt", + "Region": "Total", + "1990": 0.739, + "1991": 0.72, + "1992": 0.707, + "1993": 0.709, + "1994": 0.715, + "1995": 0.724, + "1996": 0.73, + "1997": 0.723, + "1998": 0.72, + "1999": 0.719, + "2000": 0.724, + "2001": 0.734, + "2002": 0.744, + "2003": 0.747, + "2004": 0.76, + "2005": 0.77, + "2006": 0.781, + "2007": 0.791, + "2008": 0.812, + "2009": 0.806, + "2010": 0.801, + "2011": 0.804, + "2012": 0.807, + "2013": 0.814, + "2014": 0.821, + "2015": 0.826, + "2016": 0.833, + "2017": 0.844, + "2018": 0.851, + "2019": 0.859, + "2020": 0.853, + "2021": 0.862 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr108", + "Region": "Bucuresti", + "1990": 0.889, + "1991": 0.868, + "1992": 0.854, + "1993": 0.856, + "1994": 0.863, + "1995": 0.873, + "1996": 0.88, + "1997": 0.872, + "1998": 0.868, + "1999": 0.868, + "2000": 0.873, + "2001": 0.872, + "2002": 0.884, + "2003": 0.884, + "2004": 0.897, + "2005": 0.922, + "2006": 0.926, + "2007": 0.935, + "2008": 0.967, + "2009": 0.953, + "2010": 0.948, + "2011": 0.96, + "2012": 0.953, + "2013": 0.959, + "2014": 0.964, + "2015": 0.974, + "2016": 0.977, + "2017": 0.986, + "2018": 0.989, + "2019": 0.997, + "2020": 0.991, + "2021": 1 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr107", + "Region": "Centru", + "1990": 0.747, + "1991": 0.728, + "1992": 0.715, + "1993": 0.717, + "1994": 0.723, + "1995": 0.732, + "1996": 0.738, + "1997": 0.731, + "1998": 0.728, + "1999": 0.727, + "2000": 0.732, + "2001": 0.742, + "2002": 0.75, + "2003": 0.751, + "2004": 0.761, + "2005": 0.761, + "2006": 0.777, + "2007": 0.792, + "2008": 0.802, + "2009": 0.798, + "2010": 0.794, + "2011": 0.792, + "2012": 0.802, + "2013": 0.802, + "2014": 0.808, + "2015": 0.813, + "2016": 0.825, + "2017": 0.836, + "2018": 0.843, + "2019": 0.85, + "2020": 0.844, + "2021": 0.853 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr101", + "Region": "Nord-Est", + "1990": 0.674, + "1991": 0.656, + "1992": 0.644, + "1993": 0.646, + "1994": 0.652, + "1995": 0.66, + "1996": 0.666, + "1997": 0.659, + "1998": 0.656, + "1999": 0.656, + "2000": 0.66, + "2001": 0.666, + "2002": 0.683, + "2003": 0.676, + "2004": 0.689, + "2005": 0.686, + "2006": 0.697, + "2007": 0.71, + "2008": 0.728, + "2009": 0.721, + "2010": 0.715, + "2011": 0.71, + "2012": 0.73, + "2013": 0.734, + "2014": 0.741, + "2015": 0.741, + "2016": 0.751, + "2017": 0.766, + "2018": 0.774, + "2019": 0.781, + "2020": 0.775, + "2021": 0.784 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr106", + "Region": "Nord-Vest", + "1990": 0.714, + "1991": 0.695, + "1992": 0.682, + "1993": 0.685, + "1994": 0.691, + "1995": 0.7, + "1996": 0.706, + "1997": 0.699, + "1998": 0.695, + "1999": 0.695, + "2000": 0.7, + "2001": 0.713, + "2002": 0.733, + "2003": 0.735, + "2004": 0.747, + "2005": 0.756, + "2006": 0.769, + "2007": 0.78, + "2008": 0.791, + "2009": 0.788, + "2010": 0.782, + "2011": 0.776, + "2012": 0.785, + "2013": 0.789, + "2014": 0.801, + "2015": 0.804, + "2016": 0.816, + "2017": 0.832, + "2018": 0.836, + "2019": 0.843, + "2020": 0.838, + "2021": 0.846 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr103", + "Region": "Sud", + "1990": 0.702, + "1991": 0.683, + "1992": 0.67, + "1993": 0.673, + "1994": 0.679, + "1995": 0.688, + "1996": 0.693, + "1997": 0.686, + "1998": 0.683, + "1999": 0.683, + "2000": 0.687, + "2001": 0.702, + "2002": 0.705, + "2003": 0.707, + "2004": 0.725, + "2005": 0.734, + "2006": 0.746, + "2007": 0.754, + "2008": 0.777, + "2009": 0.778, + "2010": 0.765, + "2011": 0.776, + "2012": 0.763, + "2013": 0.775, + "2014": 0.793, + "2015": 0.786, + "2016": 0.795, + "2017": 0.801, + "2018": 0.81, + "2019": 0.816, + "2020": 0.81, + "2021": 0.819 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr102", + "Region": "Sud-Est", + "1990": 0.714, + "1991": 0.695, + "1992": 0.682, + "1993": 0.685, + "1994": 0.691, + "1995": 0.7, + "1996": 0.706, + "1997": 0.699, + "1998": 0.695, + "1999": 0.695, + "2000": 0.7, + "2001": 0.713, + "2002": 0.724, + "2003": 0.726, + "2004": 0.74, + "2005": 0.745, + "2006": 0.751, + "2007": 0.758, + "2008": 0.771, + "2009": 0.767, + "2010": 0.765, + "2011": 0.773, + "2012": 0.782, + "2013": 0.794, + "2014": 0.803, + "2015": 0.799, + "2016": 0.803, + "2017": 0.812, + "2018": 0.82, + "2019": 0.829, + "2020": 0.823, + "2021": 0.832 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr104", + "Region": "Sud-Vest Oltenia", + "1990": 0.702, + "1991": 0.683, + "1992": 0.67, + "1993": 0.673, + "1994": 0.679, + "1995": 0.688, + "1996": 0.693, + "1997": 0.686, + "1998": 0.683, + "1999": 0.683, + "2000": 0.687, + "2001": 0.702, + "2002": 0.694, + "2003": 0.707, + "2004": 0.725, + "2005": 0.722, + "2006": 0.737, + "2007": 0.743, + "2008": 0.757, + "2009": 0.756, + "2010": 0.754, + "2011": 0.748, + "2012": 0.76, + "2013": 0.762, + "2014": 0.764, + "2015": 0.772, + "2016": 0.777, + "2017": 0.794, + "2018": 0.808, + "2019": 0.816, + "2020": 0.81, + "2021": 0.819 + }, + { + "Country": "Romania", + "Continent": "Europe", + "ISO_Code": "ROU", + "Level": "Subnat", + "GDLCODE": "ROUr105", + "Region": "Vest", + "1990": 0.747, + "1991": 0.728, + "1992": 0.715, + "1993": 0.717, + "1994": 0.723, + "1995": 0.732, + "1996": 0.738, + "1997": 0.731, + "1998": 0.728, + "1999": 0.727, + "2000": 0.732, + "2001": 0.742, + "2002": 0.758, + "2003": 0.766, + "2004": 0.779, + "2005": 0.785, + "2006": 0.803, + "2007": 0.808, + "2008": 0.827, + "2009": 0.821, + "2010": 0.82, + "2011": 0.819, + "2012": 0.817, + "2013": 0.821, + "2014": 0.824, + "2015": 0.832, + "2016": 0.844, + "2017": 0.85, + "2018": 0.856, + "2019": 0.861, + "2020": 0.856, + "2021": 0.864 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "National", + "GDLCODE": "RUSt", + "Region": "Total", + "1990": 0.811, + "1991": 0.803, + "1992": 0.777, + "1993": 0.764, + "1994": 0.745, + "1995": 0.738, + "1996": 0.731, + "1997": 0.733, + "1998": 0.721, + "1999": 0.732, + "2000": 0.748, + "2001": 0.759, + "2002": 0.766, + "2003": 0.775, + "2004": 0.787, + "2005": 0.797, + "2006": 0.808, + "2007": 0.822, + "2008": 0.829, + "2009": 0.816, + "2010": 0.823, + "2011": 0.829, + "2012": 0.834, + "2013": 0.836, + "2014": 0.835, + "2015": 0.833, + "2016": 0.833, + "2017": 0.835, + "2018": 0.84, + "2019": 0.842, + "2020": 0.839, + "2021": 0.847 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr101", + "Region": "The Central Federal District", + "1990": 0.823, + "1991": 0.814, + "1992": 0.789, + "1993": 0.776, + "1994": 0.756, + "1995": 0.749, + "1996": 0.743, + "1997": 0.744, + "1998": 0.733, + "1999": 0.758, + "2000": 0.778, + "2001": 0.785, + "2002": 0.799, + "2003": 0.81, + "2004": 0.82, + "2005": 0.838, + "2006": 0.851, + "2007": 0.869, + "2008": 0.879, + "2009": 0.859, + "2010": 0.865, + "2011": 0.872, + "2012": 0.877, + "2013": 0.879, + "2014": 0.878, + "2015": 0.876, + "2016": 0.876, + "2017": 0.879, + "2018": 0.883, + "2019": 0.885, + "2020": 0.882, + "2021": 0.89 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr108", + "Region": "The Far East Federal District", + "1990": 0.856, + "1991": 0.847, + "1992": 0.821, + "1993": 0.808, + "1994": 0.788, + "1995": 0.781, + "1996": 0.774, + "1997": 0.775, + "1998": 0.764, + "1999": 0.77, + "2000": 0.768, + "2001": 0.782, + "2002": 0.788, + "2003": 0.793, + "2004": 0.796, + "2005": 0.799, + "2006": 0.807, + "2007": 0.825, + "2008": 0.831, + "2009": 0.846, + "2010": 0.859, + "2011": 0.865, + "2012": 0.871, + "2013": 0.872, + "2014": 0.871, + "2015": 0.869, + "2016": 0.869, + "2017": 0.872, + "2018": 0.876, + "2019": 0.878, + "2020": 0.875, + "2021": 0.883 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr102", + "Region": "The North West Federal District", + "1990": 0.823, + "1991": 0.815, + "1992": 0.789, + "1993": 0.776, + "1994": 0.756, + "1995": 0.749, + "1996": 0.743, + "1997": 0.744, + "1998": 0.733, + "1999": 0.742, + "2000": 0.752, + "2001": 0.761, + "2002": 0.772, + "2003": 0.782, + "2004": 0.801, + "2005": 0.803, + "2006": 0.812, + "2007": 0.827, + "2008": 0.836, + "2009": 0.833, + "2010": 0.837, + "2011": 0.843, + "2012": 0.849, + "2013": 0.85, + "2014": 0.849, + "2015": 0.847, + "2016": 0.847, + "2017": 0.85, + "2018": 0.854, + "2019": 0.856, + "2020": 0.853, + "2021": 0.861 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr104", + "Region": "The North-Caucasian Federal District", + "1990": 0.68, + "1991": 0.673, + "1992": 0.65, + "1993": 0.637, + "1994": 0.62, + "1995": 0.613, + "1996": 0.607, + "1997": 0.609, + "1998": 0.599, + "1999": 0.584, + "2000": 0.589, + "2001": 0.609, + "2002": 0.615, + "2003": 0.627, + "2004": 0.633, + "2005": 0.62, + "2006": 0.636, + "2007": 0.65, + "2008": 0.662, + "2009": 0.669, + "2010": 0.668, + "2011": 0.674, + "2012": 0.679, + "2013": 0.68, + "2014": 0.679, + "2015": 0.677, + "2016": 0.677, + "2017": 0.68, + "2018": 0.684, + "2019": 0.685, + "2020": 0.683, + "2021": 0.69 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr105", + "Region": "The Privolzhsky (Volga) Federal District", + "1990": 0.79, + "1991": 0.782, + "1992": 0.757, + "1993": 0.744, + "1994": 0.725, + "1995": 0.718, + "1996": 0.711, + "1997": 0.713, + "1998": 0.702, + "1999": 0.707, + "2000": 0.72, + "2001": 0.731, + "2002": 0.729, + "2003": 0.737, + "2004": 0.746, + "2005": 0.749, + "2006": 0.762, + "2007": 0.775, + "2008": 0.784, + "2009": 0.769, + "2010": 0.774, + "2011": 0.78, + "2012": 0.785, + "2013": 0.787, + "2014": 0.785, + "2015": 0.783, + "2016": 0.783, + "2017": 0.786, + "2018": 0.79, + "2019": 0.792, + "2020": 0.789, + "2021": 0.797 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr107", + "Region": "The Siberian Federal District", + "1990": 0.803, + "1991": 0.795, + "1992": 0.77, + "1993": 0.756, + "1994": 0.737, + "1995": 0.73, + "1996": 0.724, + "1997": 0.725, + "1998": 0.714, + "1999": 0.711, + "2000": 0.724, + "2001": 0.733, + "2002": 0.734, + "2003": 0.743, + "2004": 0.762, + "2005": 0.762, + "2006": 0.775, + "2007": 0.786, + "2008": 0.785, + "2009": 0.779, + "2010": 0.791, + "2011": 0.797, + "2012": 0.803, + "2013": 0.804, + "2014": 0.803, + "2015": 0.801, + "2016": 0.801, + "2017": 0.804, + "2018": 0.808, + "2019": 0.81, + "2020": 0.807, + "2021": 0.815 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr103", + "Region": "The South Federal District", + "1990": 0.734, + "1991": 0.726, + "1992": 0.702, + "1993": 0.69, + "1994": 0.671, + "1995": 0.665, + "1996": 0.659, + "1997": 0.66, + "1998": 0.649, + "1999": 0.66, + "2000": 0.669, + "2001": 0.685, + "2002": 0.691, + "2003": 0.696, + "2004": 0.702, + "2005": 0.704, + "2006": 0.719, + "2007": 0.741, + "2008": 0.755, + "2009": 0.75, + "2010": 0.755, + "2011": 0.761, + "2012": 0.766, + "2013": 0.768, + "2014": 0.767, + "2015": 0.765, + "2016": 0.765, + "2017": 0.767, + "2018": 0.772, + "2019": 0.773, + "2020": 0.771, + "2021": 0.778 + }, + { + "Country": "Russian Federation", + "Continent": "Europe", + "ISO_Code": "RUS", + "Level": "Subnat", + "GDLCODE": "RUSr106", + "Region": "The Urals Federal District", + "1990": 0.89, + "1991": 0.881, + "1992": 0.854, + "1993": 0.84, + "1994": 0.82, + "1995": 0.813, + "1996": 0.806, + "1997": 0.807, + "1998": 0.796, + "1999": 0.802, + "2000": 0.833, + "2001": 0.849, + "2002": 0.853, + "2003": 0.864, + "2004": 0.882, + "2005": 0.903, + "2006": 0.91, + "2007": 0.91, + "2008": 0.907, + "2009": 0.888, + "2010": 0.894, + "2011": 0.901, + "2012": 0.906, + "2013": 0.908, + "2014": 0.907, + "2015": 0.905, + "2016": 0.905, + "2017": 0.908, + "2018": 0.912, + "2019": 0.914, + "2020": 0.911, + "2021": 0.919 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "National", + "GDLCODE": "RWAt", + "Region": "Total", + "1990": 0.337, + "1991": 0.338, + "1992": 0.355, + "1993": 0.352, + "1994": 0.255, + "1995": 0.304, + "1996": 0.316, + "1997": 0.326, + "1998": 0.326, + "1999": 0.322, + "2000": 0.325, + "2001": 0.331, + "2002": 0.347, + "2003": 0.347, + "2004": 0.356, + "2005": 0.367, + "2006": 0.377, + "2007": 0.385, + "2008": 0.397, + "2009": 0.402, + "2010": 0.409, + "2011": 0.416, + "2012": 0.424, + "2013": 0.427, + "2014": 0.431, + "2015": 0.441, + "2016": 0.445, + "2017": 0.446, + "2018": 0.454, + "2019": 0.464, + "2020": 0.456, + "2021": 0.468 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr101", + "Region": "City of Kigali", + "1990": 0.361, + "1991": 0.361, + "1992": 0.379, + "1993": 0.387, + "1994": 0.297, + "1995": 0.359, + "1996": 0.382, + "1997": 0.404, + "1998": 0.416, + "1999": 0.422, + "2000": 0.437, + "2001": 0.438, + "2002": 0.449, + "2003": 0.443, + "2004": 0.446, + "2005": 0.453, + "2006": 0.467, + "2007": 0.48, + "2008": 0.497, + "2009": 0.506, + "2010": 0.517, + "2011": 0.526, + "2012": 0.534, + "2013": 0.537, + "2014": 0.541, + "2015": 0.552, + "2016": 0.553, + "2017": 0.552, + "2018": 0.558, + "2019": 0.566, + "2020": 0.556, + "2021": 0.568 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr105", + "Region": "East", + "1990": 0.327, + "1991": 0.327, + "1992": 0.344, + "1993": 0.342, + "1994": 0.247, + "1995": 0.297, + "1996": 0.31, + "1997": 0.321, + "1998": 0.322, + "1999": 0.319, + "2000": 0.324, + "2001": 0.328, + "2002": 0.342, + "2003": 0.341, + "2004": 0.349, + "2005": 0.359, + "2006": 0.369, + "2007": 0.377, + "2008": 0.389, + "2009": 0.395, + "2010": 0.402, + "2011": 0.41, + "2012": 0.418, + "2013": 0.421, + "2014": 0.425, + "2015": 0.435, + "2016": 0.438, + "2017": 0.439, + "2018": 0.446, + "2019": 0.456, + "2020": 0.448, + "2021": 0.459 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr104", + "Region": "North", + "1990": 0.336, + "1991": 0.336, + "1992": 0.353, + "1993": 0.35, + "1994": 0.252, + "1995": 0.301, + "1996": 0.312, + "1997": 0.321, + "1998": 0.321, + "1999": 0.317, + "2000": 0.319, + "2001": 0.325, + "2002": 0.339, + "2003": 0.338, + "2004": 0.346, + "2005": 0.356, + "2006": 0.366, + "2007": 0.373, + "2008": 0.384, + "2009": 0.388, + "2010": 0.394, + "2011": 0.402, + "2012": 0.41, + "2013": 0.413, + "2014": 0.417, + "2015": 0.427, + "2016": 0.428, + "2017": 0.428, + "2018": 0.434, + "2019": 0.442, + "2020": 0.433, + "2021": 0.444 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr102", + "Region": "South", + "1990": 0.333, + "1991": 0.334, + "1992": 0.351, + "1993": 0.347, + "1994": 0.25, + "1995": 0.298, + "1996": 0.309, + "1997": 0.318, + "1998": 0.318, + "1999": 0.312, + "2000": 0.315, + "2001": 0.322, + "2002": 0.338, + "2003": 0.34, + "2004": 0.35, + "2005": 0.362, + "2006": 0.37, + "2007": 0.376, + "2008": 0.385, + "2009": 0.388, + "2010": 0.393, + "2011": 0.399, + "2012": 0.405, + "2013": 0.406, + "2014": 0.408, + "2015": 0.416, + "2016": 0.419, + "2017": 0.42, + "2018": 0.427, + "2019": 0.437, + "2020": 0.43, + "2021": 0.441 + }, + { + "Country": "Rwanda", + "Continent": "Africa", + "ISO_Code": "RWA", + "Level": "Subnat", + "GDLCODE": "RWAr103", + "Region": "West", + "1990": 0.332, + "1991": 0.332, + "1992": 0.349, + "1993": 0.347, + "1994": 0.251, + "1995": 0.3, + "1996": 0.313, + "1997": 0.323, + "1998": 0.324, + "1999": 0.321, + "2000": 0.325, + "2001": 0.329, + "2002": 0.344, + "2003": 0.343, + "2004": 0.35, + "2005": 0.36, + "2006": 0.369, + "2007": 0.375, + "2008": 0.386, + "2009": 0.39, + "2010": 0.395, + "2011": 0.403, + "2012": 0.411, + "2013": 0.414, + "2014": 0.418, + "2015": 0.427, + "2016": 0.432, + "2017": 0.434, + "2018": 0.443, + "2019": 0.454, + "2020": 0.448, + "2021": 0.459 + }, + { + "Country": "Saint Kitts and Nevis", + "Continent": "America", + "ISO_Code": "KNA", + "Level": "National", + "GDLCODE": "KNAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.825, + "2006": 0.831, + "2007": 0.831, + "2008": 0.838, + "2009": 0.831, + "2010": 0.829, + "2011": 0.831, + "2012": 0.828, + "2013": 0.835, + "2014": 0.842, + "2015": 0.842, + "2016": 0.845, + "2017": 0.838, + "2018": 0.842, + "2019": 0.844, + "2020": 0.831, + "2021": 0.824 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "National", + "GDLCODE": "LCAt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.724, + "2001": 0.717, + "2002": 0.718, + "2003": 0.722, + "2004": 0.728, + "2005": 0.726, + "2006": 0.738, + "2007": 0.737, + "2008": 0.742, + "2009": 0.741, + "2010": 0.741, + "2011": 0.749, + "2012": 0.746, + "2013": 0.743, + "2014": 0.738, + "2015": 0.734, + "2016": 0.742, + "2017": 0.748, + "2018": 0.751, + "2019": 0.751, + "2020": 0.715, + "2021": 0.724 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr102", + "Region": "St Lucia rural", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.726, + "2001": 0.718, + "2002": 0.72, + "2003": 0.723, + "2004": 0.73, + "2005": 0.728, + "2006": 0.739, + "2007": 0.739, + "2008": 0.744, + "2009": 0.743, + "2010": 0.743, + "2011": 0.751, + "2012": 0.748, + "2013": 0.745, + "2014": 0.74, + "2015": 0.736, + "2016": 0.744, + "2017": 0.749, + "2018": 0.753, + "2019": 0.752, + "2020": 0.716, + "2021": 0.725 + }, + { + "Country": "Saint Lucia", + "Continent": "America", + "ISO_Code": "LCA", + "Level": "Subnat", + "GDLCODE": "LCAr101", + "Region": "St Lucia urban", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.718, + "2001": 0.71, + "2002": 0.712, + "2003": 0.715, + "2004": 0.722, + "2005": 0.72, + "2006": 0.732, + "2007": 0.731, + "2008": 0.736, + "2009": 0.735, + "2010": 0.735, + "2011": 0.743, + "2012": 0.74, + "2013": 0.737, + "2014": 0.732, + "2015": 0.728, + "2016": 0.736, + "2017": 0.742, + "2018": 0.745, + "2019": 0.744, + "2020": 0.709, + "2021": 0.718 + }, + { + "Country": "Saint Vincent and the Grenadines", + "Continent": "America", + "ISO_Code": "VCT", + "Level": "National", + "GDLCODE": "VCTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.665, + "2001": 0.669, + "2002": 0.678, + "2003": 0.687, + "2004": 0.692, + "2005": 0.696, + "2006": 0.709, + "2007": 0.715, + "2008": 0.718, + "2009": 0.717, + "2010": 0.712, + "2011": 0.711, + "2012": 0.715, + "2013": 0.718, + "2014": 0.716, + "2015": 0.719, + "2016": 0.72, + "2017": 0.726, + "2018": 0.731, + "2019": 0.727, + "2020": 0.724, + "2021": 0.723 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "National", + "GDLCODE": "WSMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.554, + "1996": 0.57, + "1997": 0.571, + "1998": 0.574, + "1999": 0.578, + "2000": 0.587, + "2001": 0.599, + "2002": 0.591, + "2003": 0.598, + "2004": 0.604, + "2005": 0.61, + "2006": 0.609, + "2007": 0.618, + "2008": 0.617, + "2009": 0.616, + "2010": 0.62, + "2011": 0.617, + "2012": 0.61, + "2013": 0.61, + "2014": 0.612, + "2015": 0.624, + "2016": 0.628, + "2017": 0.626, + "2018": 0.625, + "2019": 0.627, + "2020": 0.614, + "2021": 0.6 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr101", + "Region": "Apia Urban Area", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.638, + "1996": 0.688, + "1997": 0.688, + "1998": 0.688, + "1999": 0.688, + "2000": 0.638, + "2001": 0.688, + "2002": 0.688, + "2003": 0.688, + "2004": 0.688, + "2005": 0.639, + "2006": 0.688, + "2007": 0.688, + "2008": 0.688, + "2009": 0.688, + "2010": 0.644, + "2011": 0.644, + "2012": 0.644, + "2013": 0.644, + "2014": 0.643, + "2015": 0.644, + "2016": 0.644, + "2017": 0.657, + "2018": 0.648, + "2019": 0.657, + "2020": 0.643, + "2021": 0.629 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr102", + "Region": "North West Upolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.604, + "1996": 0.652, + "1997": 0.652, + "1998": 0.652, + "1999": 0.652, + "2000": 0.603, + "2001": 0.652, + "2002": 0.652, + "2003": 0.652, + "2004": 0.652, + "2005": 0.604, + "2006": 0.652, + "2007": 0.652, + "2008": 0.652, + "2009": 0.652, + "2010": 0.609, + "2011": 0.609, + "2012": 0.609, + "2013": 0.609, + "2014": 0.608, + "2015": 0.609, + "2016": 0.609, + "2017": 0.622, + "2018": 0.613, + "2019": 0.622, + "2020": 0.608, + "2021": 0.595 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr103", + "Region": "Rest of Upolu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.601, + "1996": 0.649, + "1997": 0.649, + "1998": 0.649, + "1999": 0.649, + "2000": 0.601, + "2001": 0.649, + "2002": 0.649, + "2003": 0.649, + "2004": 0.649, + "2005": 0.601, + "2006": 0.649, + "2007": 0.649, + "2008": 0.649, + "2009": 0.649, + "2010": 0.606, + "2011": 0.606, + "2012": 0.606, + "2013": 0.606, + "2014": 0.606, + "2015": 0.606, + "2016": 0.607, + "2017": 0.619, + "2018": 0.61, + "2019": 0.619, + "2020": 0.605, + "2021": 0.592 + }, + { + "Country": "Samoa", + "Continent": "Asia/Pacific", + "ISO_Code": "WSM", + "Level": "Subnat", + "GDLCODE": "WSMr104", + "Region": "Savaii", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.6, + "1996": 0.648, + "1997": 0.648, + "1998": 0.648, + "1999": 0.648, + "2000": 0.6, + "2001": 0.648, + "2002": 0.648, + "2003": 0.648, + "2004": 0.648, + "2005": 0.6, + "2006": 0.648, + "2007": 0.648, + "2008": 0.648, + "2009": 0.648, + "2010": 0.605, + "2011": 0.605, + "2012": 0.605, + "2013": 0.605, + "2014": 0.604, + "2015": 0.605, + "2016": 0.605, + "2017": 0.618, + "2018": 0.609, + "2019": 0.618, + "2020": 0.604, + "2021": 0.591 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "National", + "GDLCODE": "STPt", + "Region": "Total", + "1990": 0.48, + "1991": 0.474, + "1992": 0.472, + "1993": 0.47, + "1994": 0.471, + "1995": 0.47, + "1996": 0.473, + "1997": 0.471, + "1998": 0.47, + "1999": 0.476, + "2000": 0.476, + "2001": 0.485, + "2002": 0.485, + "2003": 0.495, + "2004": 0.497, + "2005": 0.504, + "2006": 0.521, + "2007": 0.522, + "2008": 0.525, + "2009": 0.525, + "2010": 0.531, + "2011": 0.534, + "2012": 0.533, + "2013": 0.541, + "2014": 0.549, + "2015": 0.549, + "2016": 0.553, + "2017": 0.555, + "2018": 0.557, + "2019": 0.557, + "2020": 0.559, + "2021": 0.558 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr101", + "Region": "Regiao Centro", + "1990": 0.507, + "1991": 0.502, + "1992": 0.5, + "1993": 0.498, + "1994": 0.499, + "1995": 0.498, + "1996": 0.5, + "1997": 0.498, + "1998": 0.498, + "1999": 0.503, + "2000": 0.504, + "2001": 0.513, + "2002": 0.513, + "2003": 0.523, + "2004": 0.525, + "2005": 0.533, + "2006": 0.549, + "2007": 0.551, + "2008": 0.554, + "2009": 0.553, + "2010": 0.559, + "2011": 0.561, + "2012": 0.557, + "2013": 0.564, + "2014": 0.571, + "2015": 0.57, + "2016": 0.573, + "2017": 0.574, + "2018": 0.574, + "2019": 0.573, + "2020": 0.575, + "2021": 0.574 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr104", + "Region": "Regiao do Principe", + "1990": 0.459, + "1991": 0.454, + "1992": 0.452, + "1993": 0.45, + "1994": 0.451, + "1995": 0.45, + "1996": 0.452, + "1997": 0.45, + "1998": 0.45, + "1999": 0.455, + "2000": 0.456, + "2001": 0.464, + "2002": 0.465, + "2003": 0.474, + "2004": 0.476, + "2005": 0.484, + "2006": 0.499, + "2007": 0.501, + "2008": 0.504, + "2009": 0.503, + "2010": 0.513, + "2011": 0.52, + "2012": 0.521, + "2013": 0.533, + "2014": 0.544, + "2015": 0.547, + "2016": 0.554, + "2017": 0.559, + "2018": 0.565, + "2019": 0.568, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr103", + "Region": "Regiao Norte", + "1990": 0.441, + "1991": 0.436, + "1992": 0.434, + "1993": 0.432, + "1994": 0.433, + "1995": 0.432, + "1996": 0.435, + "1997": 0.433, + "1998": 0.432, + "1999": 0.437, + "2000": 0.438, + "2001": 0.446, + "2002": 0.447, + "2003": 0.456, + "2004": 0.458, + "2005": 0.465, + "2006": 0.481, + "2007": 0.483, + "2008": 0.485, + "2009": 0.485, + "2010": 0.49, + "2011": 0.493, + "2012": 0.49, + "2013": 0.497, + "2014": 0.504, + "2015": 0.508, + "2016": 0.516, + "2017": 0.522, + "2018": 0.528, + "2019": 0.532, + "2020": 0.533, + "2021": 0.533 + }, + { + "Country": "Sao Tome & Principe", + "Continent": "Africa", + "ISO_Code": "STP", + "Level": "Subnat", + "GDLCODE": "STPr102", + "Region": "Regiao Sul", + "1990": 0.428, + "1991": 0.423, + "1992": 0.421, + "1993": 0.419, + "1994": 0.42, + "1995": 0.419, + "1996": 0.422, + "1997": 0.42, + "1998": 0.419, + "1999": 0.424, + "2000": 0.425, + "2001": 0.433, + "2002": 0.434, + "2003": 0.443, + "2004": 0.445, + "2005": 0.452, + "2006": 0.467, + "2007": 0.469, + "2008": 0.472, + "2009": 0.471, + "2010": 0.477, + "2011": 0.48, + "2012": 0.478, + "2013": 0.486, + "2014": 0.493, + "2015": 0.498, + "2016": 0.506, + "2017": 0.512, + "2018": 0.518, + "2019": 0.522, + "2020": 0.524, + "2021": 0.523 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "National", + "GDLCODE": "SAUt", + "Region": "Total", + "1990": 0.916, + "1991": 0.929, + "1992": 0.93, + "1993": 0.925, + "1994": 0.92, + "1995": 0.918, + "1996": 0.916, + "1997": 0.915, + "1998": 0.918, + "1999": 0.91, + "2000": 0.913, + "2001": 0.908, + "2002": 0.899, + "2003": 0.91, + "2004": 0.918, + "2005": 0.922, + "2006": 0.922, + "2007": 0.922, + "2008": 0.927, + "2009": 0.92, + "2010": 0.922, + "2011": 0.932, + "2012": 0.935, + "2013": 0.935, + "2014": 0.937, + "2015": 0.939, + "2016": 0.938, + "2017": 0.933, + "2018": 0.933, + "2019": 0.931, + "2020": 0.924, + "2021": 0.927 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr101", + "Region": "Center (Riadh, Qassim)", + "1990": 0.932, + "1991": 0.946, + "1992": 0.946, + "1993": 0.941, + "1994": 0.936, + "1995": 0.934, + "1996": 0.932, + "1997": 0.931, + "1998": 0.934, + "1999": 0.925, + "2000": 0.929, + "2001": 0.924, + "2002": 0.915, + "2003": 0.926, + "2004": 0.934, + "2005": 0.938, + "2006": 0.938, + "2007": 0.938, + "2008": 0.943, + "2009": 0.936, + "2010": 0.938, + "2011": 0.948, + "2012": 0.952, + "2013": 0.952, + "2014": 0.953, + "2015": 0.955, + "2016": 0.954, + "2017": 0.949, + "2018": 0.949, + "2019": 0.947, + "2020": 0.94, + "2021": 0.943 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr104", + "Region": "Eastern province", + "1990": 0.927, + "1991": 0.941, + "1992": 0.941, + "1993": 0.936, + "1994": 0.931, + "1995": 0.929, + "1996": 0.928, + "1997": 0.926, + "1998": 0.929, + "1999": 0.921, + "2000": 0.925, + "2001": 0.919, + "2002": 0.91, + "2003": 0.922, + "2004": 0.929, + "2005": 0.933, + "2006": 0.934, + "2007": 0.933, + "2008": 0.939, + "2009": 0.931, + "2010": 0.933, + "2011": 0.944, + "2012": 0.947, + "2013": 0.947, + "2014": 0.949, + "2015": 0.951, + "2016": 0.949, + "2017": 0.944, + "2018": 0.945, + "2019": 0.943, + "2020": 0.935, + "2021": 0.938 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr105", + "Region": "North (Northern Borders, Al Jawf, Hail)", + "1990": 0.961, + "1991": 0.975, + "1992": 0.975, + "1993": 0.97, + "1994": 0.965, + "1995": 0.963, + "1996": 0.961, + "1997": 0.96, + "1998": 0.963, + "1999": 0.954, + "2000": 0.958, + "2001": 0.952, + "2002": 0.943, + "2003": 0.955, + "2004": 0.963, + "2005": 0.967, + "2006": 0.967, + "2007": 0.967, + "2008": 0.972, + "2009": 0.965, + "2010": 0.967, + "2011": 0.977, + "2012": 0.981, + "2013": 0.981, + "2014": 0.982, + "2015": 0.985, + "2016": 0.983, + "2017": 0.978, + "2018": 0.978, + "2019": 0.976, + "2020": 0.969, + "2021": 0.972 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr103", + "Region": "South (Bahah, Jizan, Asir, Najran)", + "1990": 0.921, + "1991": 0.935, + "1992": 0.935, + "1993": 0.93, + "1994": 0.925, + "1995": 0.923, + "1996": 0.922, + "1997": 0.92, + "1998": 0.923, + "1999": 0.915, + "2000": 0.918, + "2001": 0.913, + "2002": 0.904, + "2003": 0.916, + "2004": 0.923, + "2005": 0.927, + "2006": 0.928, + "2007": 0.927, + "2008": 0.933, + "2009": 0.925, + "2010": 0.927, + "2011": 0.938, + "2012": 0.941, + "2013": 0.941, + "2014": 0.942, + "2015": 0.945, + "2016": 0.943, + "2017": 0.938, + "2018": 0.938, + "2019": 0.936, + "2020": 0.929, + "2021": 0.932 + }, + { + "Country": "Saudi Arabia", + "Continent": "Asia/Pacific", + "ISO_Code": "SAU", + "Level": "Subnat", + "GDLCODE": "SAUr102", + "Region": "West (Makka, Madinah, Tabuk)", + "1990": 0.893, + "1991": 0.906, + "1992": 0.906, + "1993": 0.902, + "1994": 0.897, + "1995": 0.895, + "1996": 0.893, + "1997": 0.892, + "1998": 0.895, + "1999": 0.887, + "2000": 0.89, + "2001": 0.885, + "2002": 0.876, + "2003": 0.888, + "2004": 0.895, + "2005": 0.899, + "2006": 0.899, + "2007": 0.899, + "2008": 0.904, + "2009": 0.897, + "2010": 0.899, + "2011": 0.909, + "2012": 0.912, + "2013": 0.912, + "2014": 0.914, + "2015": 0.916, + "2016": 0.915, + "2017": 0.91, + "2018": 0.91, + "2019": 0.908, + "2020": 0.901, + "2021": 0.903 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "National", + "GDLCODE": "SENt", + "Region": "Total", + "1990": 0.481, + "1991": 0.48, + "1992": 0.479, + "1993": 0.476, + "1994": 0.471, + "1995": 0.476, + "1996": 0.477, + "1997": 0.477, + "1998": 0.483, + "1999": 0.488, + "2000": 0.49, + "2001": 0.493, + "2002": 0.489, + "2003": 0.494, + "2004": 0.497, + "2005": 0.5, + "2006": 0.5, + "2007": 0.5, + "2008": 0.502, + "2009": 0.501, + "2010": 0.502, + "2011": 0.499, + "2012": 0.5, + "2013": 0.5, + "2014": 0.504, + "2015": 0.509, + "2016": 0.513, + "2017": 0.519, + "2018": 0.525, + "2019": 0.527, + "2020": 0.525, + "2021": 0.53 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr101", + "Region": "Dakar", + "1990": 0.588, + "1991": 0.587, + "1992": 0.586, + "1993": 0.583, + "1994": 0.58, + "1995": 0.587, + "1996": 0.589, + "1997": 0.592, + "1998": 0.6, + "1999": 0.606, + "2000": 0.61, + "2001": 0.615, + "2002": 0.613, + "2003": 0.62, + "2004": 0.625, + "2005": 0.63, + "2006": 0.626, + "2007": 0.622, + "2008": 0.62, + "2009": 0.614, + "2010": 0.612, + "2011": 0.604, + "2012": 0.597, + "2013": 0.585, + "2014": 0.579, + "2015": 0.591, + "2016": 0.596, + "2017": 0.609, + "2018": 0.608, + "2019": 0.601, + "2020": 0.599, + "2021": 0.604 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr103", + "Region": "Diourbel", + "1990": 0.448, + "1991": 0.448, + "1992": 0.447, + "1993": 0.445, + "1994": 0.442, + "1995": 0.447, + "1996": 0.45, + "1997": 0.452, + "1998": 0.459, + "1999": 0.465, + "2000": 0.469, + "2001": 0.473, + "2002": 0.471, + "2003": 0.477, + "2004": 0.482, + "2005": 0.486, + "2006": 0.489, + "2007": 0.493, + "2008": 0.498, + "2009": 0.5, + "2010": 0.505, + "2011": 0.505, + "2012": 0.485, + "2013": 0.473, + "2014": 0.465, + "2015": 0.507, + "2016": 0.512, + "2017": 0.502, + "2018": 0.5, + "2019": 0.504, + "2020": 0.503, + "2021": 0.508 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr109", + "Region": "Fatick", + "1990": 0.428, + "1991": 0.428, + "1992": 0.427, + "1993": 0.419, + "1994": 0.412, + "1995": 0.412, + "1996": 0.41, + "1997": 0.407, + "1998": 0.408, + "1999": 0.409, + "2000": 0.407, + "2001": 0.407, + "2002": 0.399, + "2003": 0.4, + "2004": 0.4, + "2005": 0.399, + "2006": 0.404, + "2007": 0.41, + "2008": 0.417, + "2009": 0.421, + "2010": 0.427, + "2011": 0.429, + "2012": 0.464, + "2013": 0.435, + "2014": 0.41, + "2015": 0.441, + "2016": 0.445, + "2017": 0.464, + "2018": 0.475, + "2019": 0.482, + "2020": 0.481, + "2021": 0.485 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr106", + "Region": "Kaolack", + "1990": 0.446, + "1991": 0.445, + "1992": 0.444, + "1993": 0.438, + "1994": 0.431, + "1995": 0.432, + "1996": 0.43, + "1997": 0.428, + "1998": 0.431, + "1999": 0.432, + "2000": 0.431, + "2001": 0.431, + "2002": 0.425, + "2003": 0.427, + "2004": 0.427, + "2005": 0.427, + "2006": 0.43, + "2007": 0.434, + "2008": 0.439, + "2009": 0.442, + "2010": 0.446, + "2011": 0.447, + "2012": 0.465, + "2013": 0.456, + "2014": 0.453, + "2015": 0.453, + "2016": 0.457, + "2017": 0.462, + "2018": 0.446, + "2019": 0.493, + "2020": 0.492, + "2021": 0.496 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr110", + "Region": "Kolda", + "1990": 0.433, + "1991": 0.432, + "1992": 0.431, + "1993": 0.421, + "1994": 0.411, + "1995": 0.408, + "1996": 0.403, + "1997": 0.397, + "1998": 0.396, + "1999": 0.394, + "2000": 0.39, + "2001": 0.386, + "2002": 0.376, + "2003": 0.374, + "2004": 0.371, + "2005": 0.367, + "2006": 0.371, + "2007": 0.376, + "2008": 0.382, + "2009": 0.386, + "2010": 0.391, + "2011": 0.393, + "2012": 0.39, + "2013": 0.381, + "2014": 0.377, + "2015": 0.399, + "2016": 0.403, + "2017": 0.399, + "2018": 0.401, + "2019": 0.424, + "2020": 0.423, + "2021": 0.427 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr108", + "Region": "Louga", + "1990": 0.458, + "1991": 0.457, + "1992": 0.456, + "1993": 0.452, + "1994": 0.447, + "1995": 0.451, + "1996": 0.452, + "1997": 0.452, + "1998": 0.457, + "1999": 0.461, + "2000": 0.463, + "2001": 0.465, + "2002": 0.461, + "2003": 0.466, + "2004": 0.468, + "2005": 0.47, + "2006": 0.469, + "2007": 0.468, + "2008": 0.469, + "2009": 0.466, + "2010": 0.466, + "2011": 0.462, + "2012": 0.465, + "2013": 0.495, + "2014": 0.531, + "2015": 0.467, + "2016": 0.471, + "2017": 0.488, + "2018": 0.497, + "2019": 0.502, + "2020": 0.501, + "2021": 0.505 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr104", + "Region": "Saint Louis", + "1990": 0.428, + "1991": 0.428, + "1992": 0.427, + "1993": 0.425, + "1994": 0.422, + "1995": 0.428, + "1996": 0.43, + "1997": 0.432, + "1998": 0.439, + "1999": 0.445, + "2000": 0.449, + "2001": 0.453, + "2002": 0.451, + "2003": 0.457, + "2004": 0.462, + "2005": 0.466, + "2006": 0.466, + "2007": 0.467, + "2008": 0.468, + "2009": 0.467, + "2010": 0.468, + "2011": 0.465, + "2012": 0.477, + "2013": 0.494, + "2014": 0.516, + "2015": 0.486, + "2016": 0.491, + "2017": 0.492, + "2018": 0.446, + "2019": 0.487, + "2020": 0.486, + "2021": 0.49 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr105", + "Region": "Tambacounda", + "1990": 0.428, + "1991": 0.427, + "1992": 0.426, + "1993": 0.419, + "1994": 0.411, + "1995": 0.412, + "1996": 0.409, + "1997": 0.407, + "1998": 0.408, + "1999": 0.409, + "2000": 0.408, + "2001": 0.407, + "2002": 0.4, + "2003": 0.401, + "2004": 0.401, + "2005": 0.4, + "2006": 0.398, + "2007": 0.397, + "2008": 0.398, + "2009": 0.396, + "2010": 0.395, + "2011": 0.391, + "2012": 0.393, + "2013": 0.398, + "2014": 0.408, + "2015": 0.412, + "2016": 0.416, + "2017": 0.431, + "2018": 0.404, + "2019": 0.463, + "2020": 0.462, + "2021": 0.466 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr107", + "Region": "Thies", + "1990": 0.485, + "1991": 0.485, + "1992": 0.484, + "1993": 0.481, + "1994": 0.478, + "1995": 0.484, + "1996": 0.486, + "1997": 0.488, + "1998": 0.494, + "1999": 0.5, + "2000": 0.504, + "2001": 0.508, + "2002": 0.505, + "2003": 0.512, + "2004": 0.516, + "2005": 0.52, + "2006": 0.519, + "2007": 0.519, + "2008": 0.52, + "2009": 0.518, + "2010": 0.519, + "2011": 0.515, + "2012": 0.51, + "2013": 0.524, + "2014": 0.544, + "2015": 0.551, + "2016": 0.556, + "2017": 0.538, + "2018": 0.564, + "2019": 0.568, + "2020": 0.566, + "2021": 0.571 + }, + { + "Country": "Senegal", + "Continent": "Africa", + "ISO_Code": "SEN", + "Level": "Subnat", + "GDLCODE": "SENr102", + "Region": "Ziguinchor", + "1990": 0.45, + "1991": 0.45, + "1992": 0.449, + "1993": 0.44, + "1994": 0.431, + "1995": 0.431, + "1996": 0.427, + "1997": 0.423, + "1998": 0.423, + "1999": 0.423, + "2000": 0.42, + "2001": 0.418, + "2002": 0.41, + "2003": 0.409, + "2004": 0.408, + "2005": 0.405, + "2006": 0.414, + "2007": 0.422, + "2008": 0.432, + "2009": 0.439, + "2010": 0.448, + "2011": 0.453, + "2012": 0.454, + "2013": 0.454, + "2014": 0.458, + "2015": 0.458, + "2016": 0.462, + "2017": 0.479, + "2018": 0.475, + "2019": 0.502, + "2020": 0.501, + "2021": 0.505 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "National", + "GDLCODE": "SRBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.656, + "1996": 0.666, + "1997": 0.678, + "1998": 0.683, + "1999": 0.669, + "2000": 0.678, + "2001": 0.688, + "2002": 0.697, + "2003": 0.704, + "2004": 0.717, + "2005": 0.725, + "2006": 0.733, + "2007": 0.74, + "2008": 0.749, + "2009": 0.748, + "2010": 0.749, + "2011": 0.75, + "2012": 0.751, + "2013": 0.755, + "2014": 0.753, + "2015": 0.755, + "2016": 0.76, + "2017": 0.762, + "2018": 0.772, + "2019": 0.779, + "2020": 0.782, + "2021": 0.794 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr101", + "Region": "Belgrade", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.672, + "1996": 0.682, + "1997": 0.694, + "1998": 0.699, + "1999": 0.685, + "2000": 0.694, + "2001": 0.705, + "2002": 0.714, + "2003": 0.72, + "2004": 0.733, + "2005": 0.742, + "2006": 0.748, + "2007": 0.754, + "2008": 0.762, + "2009": 0.759, + "2010": 0.759, + "2011": 0.759, + "2012": 0.759, + "2013": 0.761, + "2014": 0.758, + "2015": 0.76, + "2016": 0.764, + "2017": 0.766, + "2018": 0.775, + "2019": 0.782, + "2020": 0.785, + "2021": 0.797 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr104", + "Region": "South and East Serbia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.646, + "1996": 0.656, + "1997": 0.667, + "1998": 0.673, + "1999": 0.658, + "2000": 0.668, + "2001": 0.678, + "2002": 0.687, + "2003": 0.693, + "2004": 0.706, + "2005": 0.714, + "2006": 0.723, + "2007": 0.732, + "2008": 0.743, + "2009": 0.742, + "2010": 0.745, + "2011": 0.746, + "2012": 0.747, + "2013": 0.75, + "2014": 0.749, + "2015": 0.751, + "2016": 0.755, + "2017": 0.758, + "2018": 0.767, + "2019": 0.774, + "2020": 0.777, + "2021": 0.789 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr103", + "Region": "Sumadija and West Serbia", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.647, + "1996": 0.657, + "1997": 0.668, + "1998": 0.674, + "1999": 0.66, + "2000": 0.669, + "2001": 0.679, + "2002": 0.688, + "2003": 0.694, + "2004": 0.707, + "2005": 0.715, + "2006": 0.724, + "2007": 0.733, + "2008": 0.743, + "2009": 0.743, + "2010": 0.745, + "2011": 0.747, + "2012": 0.749, + "2013": 0.754, + "2014": 0.753, + "2015": 0.756, + "2016": 0.761, + "2017": 0.763, + "2018": 0.773, + "2019": 0.78, + "2020": 0.784, + "2021": 0.796 + }, + { + "Country": "Serbia", + "Continent": "Europe", + "ISO_Code": "SRB", + "Level": "Subnat", + "GDLCODE": "SRBr102", + "Region": "Vojvodina", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.661, + "1996": 0.671, + "1997": 0.682, + "1998": 0.688, + "1999": 0.673, + "2000": 0.683, + "2001": 0.693, + "2002": 0.702, + "2003": 0.709, + "2004": 0.722, + "2005": 0.73, + "2006": 0.737, + "2007": 0.743, + "2008": 0.751, + "2009": 0.748, + "2010": 0.748, + "2011": 0.75, + "2012": 0.75, + "2013": 0.754, + "2014": 0.752, + "2015": 0.755, + "2016": 0.759, + "2017": 0.761, + "2018": 0.771, + "2019": 0.778, + "2020": 0.781, + "2021": 0.793 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "National", + "GDLCODE": "SLEt", + "Region": "Total", + "1990": 0.434, + "1991": 0.425, + "1992": 0.404, + "1993": 0.414, + "1994": 0.408, + "1995": 0.403, + "1996": 0.364, + "1997": 0.336, + "1998": 0.328, + "1999": 0.315, + "2000": 0.318, + "2001": 0.337, + "2002": 0.366, + "2003": 0.374, + "2004": 0.376, + "2005": 0.377, + "2006": 0.379, + "2007": 0.396, + "2008": 0.405, + "2009": 0.408, + "2010": 0.401, + "2011": 0.403, + "2012": 0.428, + "2013": 0.448, + "2014": 0.449, + "2015": 0.412, + "2016": 0.402, + "2017": 0.418, + "2018": 0.412, + "2019": 0.427, + "2020": 0.419, + "2021": 0.421 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr109", + "Region": "Bo", + "1990": 0.426, + "1991": 0.417, + "1992": 0.396, + "1993": 0.406, + "1994": 0.401, + "1995": 0.396, + "1996": 0.357, + "1997": 0.329, + "1998": 0.321, + "1999": 0.308, + "2000": 0.31, + "2001": 0.33, + "2002": 0.359, + "2003": 0.366, + "2004": 0.368, + "2005": 0.369, + "2006": 0.371, + "2007": 0.389, + "2008": 0.397, + "2009": 0.401, + "2010": 0.395, + "2011": 0.398, + "2012": 0.424, + "2013": 0.444, + "2014": 0.443, + "2015": 0.405, + "2016": 0.393, + "2017": 0.408, + "2018": 0.4, + "2019": 0.412, + "2020": 0.405, + "2021": 0.407 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr101", + "Region": "Bombali", + "1990": 0.414, + "1991": 0.405, + "1992": 0.385, + "1993": 0.394, + "1994": 0.389, + "1995": 0.384, + "1996": 0.345, + "1997": 0.318, + "1998": 0.31, + "1999": 0.298, + "2000": 0.3, + "2001": 0.319, + "2002": 0.348, + "2003": 0.355, + "2004": 0.357, + "2005": 0.358, + "2006": 0.36, + "2007": 0.377, + "2008": 0.386, + "2009": 0.39, + "2010": 0.386, + "2011": 0.389, + "2012": 0.416, + "2013": 0.437, + "2014": 0.439, + "2015": 0.402, + "2016": 0.393, + "2017": 0.41, + "2018": 0.4, + "2019": 0.411, + "2020": 0.403, + "2021": 0.405 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr110", + "Region": "Bonthe", + "1990": 0.397, + "1991": 0.389, + "1992": 0.369, + "1993": 0.378, + "1994": 0.373, + "1995": 0.368, + "1996": 0.33, + "1997": 0.303, + "1998": 0.296, + "1999": 0.283, + "2000": 0.285, + "2001": 0.304, + "2002": 0.332, + "2003": 0.339, + "2004": 0.342, + "2005": 0.343, + "2006": 0.344, + "2007": 0.362, + "2008": 0.37, + "2009": 0.371, + "2010": 0.364, + "2011": 0.365, + "2012": 0.388, + "2013": 0.406, + "2014": 0.405, + "2015": 0.366, + "2016": 0.355, + "2017": 0.368, + "2018": 0.366, + "2019": 0.384, + "2020": 0.377, + "2021": 0.379 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr106", + "Region": "Kailahun", + "1990": 0.39, + "1991": 0.381, + "1992": 0.362, + "1993": 0.371, + "1994": 0.366, + "1995": 0.361, + "1996": 0.323, + "1997": 0.296, + "1998": 0.289, + "1999": 0.276, + "2000": 0.278, + "2001": 0.297, + "2002": 0.325, + "2003": 0.332, + "2004": 0.334, + "2005": 0.335, + "2006": 0.337, + "2007": 0.354, + "2008": 0.362, + "2009": 0.364, + "2010": 0.357, + "2011": 0.358, + "2012": 0.381, + "2013": 0.398, + "2014": 0.398, + "2015": 0.361, + "2016": 0.351, + "2017": 0.365, + "2018": 0.36, + "2019": 0.374, + "2020": 0.367, + "2021": 0.368 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr102", + "Region": "Kambia", + "1990": 0.414, + "1991": 0.405, + "1992": 0.385, + "1993": 0.394, + "1994": 0.389, + "1995": 0.384, + "1996": 0.346, + "1997": 0.318, + "1998": 0.311, + "1999": 0.298, + "2000": 0.3, + "2001": 0.319, + "2002": 0.348, + "2003": 0.355, + "2004": 0.357, + "2005": 0.358, + "2006": 0.36, + "2007": 0.377, + "2008": 0.386, + "2009": 0.388, + "2010": 0.381, + "2011": 0.382, + "2012": 0.406, + "2013": 0.425, + "2014": 0.419, + "2015": 0.377, + "2016": 0.362, + "2017": 0.372, + "2018": 0.382, + "2019": 0.412, + "2020": 0.405, + "2021": 0.406 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr107", + "Region": "Kenema", + "1990": 0.42, + "1991": 0.412, + "1992": 0.391, + "1993": 0.401, + "1994": 0.395, + "1995": 0.39, + "1996": 0.352, + "1997": 0.324, + "1998": 0.316, + "1999": 0.303, + "2000": 0.306, + "2001": 0.325, + "2002": 0.354, + "2003": 0.361, + "2004": 0.363, + "2005": 0.364, + "2006": 0.366, + "2007": 0.384, + "2008": 0.392, + "2009": 0.396, + "2010": 0.391, + "2011": 0.394, + "2012": 0.42, + "2013": 0.44, + "2014": 0.441, + "2015": 0.404, + "2016": 0.395, + "2017": 0.411, + "2018": 0.4, + "2019": 0.41, + "2020": 0.403, + "2021": 0.405 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr103", + "Region": "Koinadugu", + "1990": 0.391, + "1991": 0.382, + "1992": 0.362, + "1993": 0.371, + "1994": 0.366, + "1995": 0.361, + "1996": 0.324, + "1997": 0.297, + "1998": 0.289, + "1999": 0.277, + "2000": 0.279, + "2001": 0.298, + "2002": 0.326, + "2003": 0.333, + "2004": 0.335, + "2005": 0.336, + "2006": 0.338, + "2007": 0.355, + "2008": 0.363, + "2009": 0.363, + "2010": 0.355, + "2011": 0.355, + "2012": 0.376, + "2013": 0.392, + "2014": 0.393, + "2015": 0.357, + "2016": 0.348, + "2017": 0.363, + "2018": 0.365, + "2019": 0.388, + "2020": 0.381, + "2021": 0.382 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr108", + "Region": "Kono", + "1990": 0.399, + "1991": 0.391, + "1992": 0.371, + "1993": 0.38, + "1994": 0.375, + "1995": 0.37, + "1996": 0.332, + "1997": 0.305, + "1998": 0.297, + "1999": 0.284, + "2000": 0.287, + "2001": 0.306, + "2002": 0.334, + "2003": 0.341, + "2004": 0.343, + "2005": 0.344, + "2006": 0.346, + "2007": 0.363, + "2008": 0.371, + "2009": 0.374, + "2010": 0.369, + "2011": 0.371, + "2012": 0.396, + "2013": 0.415, + "2014": 0.414, + "2015": 0.377, + "2016": 0.366, + "2017": 0.38, + "2018": 0.377, + "2019": 0.394, + "2020": 0.387, + "2021": 0.388 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr111", + "Region": "Moyamba", + "1990": 0.383, + "1991": 0.375, + "1992": 0.355, + "1993": 0.364, + "1994": 0.359, + "1995": 0.354, + "1996": 0.316, + "1997": 0.29, + "1998": 0.282, + "1999": 0.27, + "2000": 0.272, + "2001": 0.291, + "2002": 0.319, + "2003": 0.325, + "2004": 0.328, + "2005": 0.329, + "2006": 0.33, + "2007": 0.347, + "2008": 0.355, + "2009": 0.358, + "2010": 0.353, + "2011": 0.355, + "2012": 0.379, + "2013": 0.398, + "2014": 0.395, + "2015": 0.356, + "2016": 0.344, + "2017": 0.356, + "2018": 0.352, + "2019": 0.368, + "2020": 0.361, + "2021": 0.363 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr104", + "Region": "Port Loko", + "1990": 0.407, + "1991": 0.399, + "1992": 0.379, + "1993": 0.388, + "1994": 0.383, + "1995": 0.378, + "1996": 0.339, + "1997": 0.312, + "1998": 0.304, + "1999": 0.292, + "2000": 0.294, + "2001": 0.313, + "2002": 0.342, + "2003": 0.349, + "2004": 0.351, + "2005": 0.352, + "2006": 0.354, + "2007": 0.371, + "2008": 0.379, + "2009": 0.382, + "2010": 0.376, + "2011": 0.378, + "2012": 0.403, + "2013": 0.422, + "2014": 0.424, + "2015": 0.388, + "2016": 0.379, + "2017": 0.395, + "2018": 0.388, + "2019": 0.401, + "2020": 0.394, + "2021": 0.395 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr112", + "Region": "Pujehun", + "1990": 0.394, + "1991": 0.385, + "1992": 0.365, + "1993": 0.375, + "1994": 0.369, + "1995": 0.365, + "1996": 0.327, + "1997": 0.3, + "1998": 0.292, + "1999": 0.28, + "2000": 0.282, + "2001": 0.301, + "2002": 0.329, + "2003": 0.336, + "2004": 0.338, + "2005": 0.339, + "2006": 0.341, + "2007": 0.358, + "2008": 0.366, + "2009": 0.372, + "2010": 0.368, + "2011": 0.373, + "2012": 0.4, + "2013": 0.422, + "2014": 0.414, + "2015": 0.37, + "2016": 0.352, + "2017": 0.36, + "2018": 0.355, + "2019": 0.37, + "2020": 0.363, + "2021": 0.365 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr105", + "Region": "Tonkolili", + "1990": 0.386, + "1991": 0.378, + "1992": 0.358, + "1993": 0.367, + "1994": 0.362, + "1995": 0.357, + "1996": 0.319, + "1997": 0.293, + "1998": 0.285, + "1999": 0.273, + "2000": 0.275, + "2001": 0.294, + "2002": 0.322, + "2003": 0.328, + "2004": 0.331, + "2005": 0.332, + "2006": 0.333, + "2007": 0.35, + "2008": 0.358, + "2009": 0.365, + "2010": 0.363, + "2011": 0.369, + "2012": 0.397, + "2013": 0.42, + "2014": 0.409, + "2015": 0.361, + "2016": 0.34, + "2017": 0.343, + "2018": 0.349, + "2019": 0.376, + "2020": 0.369, + "2021": 0.37 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr113", + "Region": "Western Rural", + "1990": 0.493, + "1991": 0.484, + "1992": 0.463, + "1993": 0.473, + "1994": 0.467, + "1995": 0.462, + "1996": 0.42, + "1997": 0.391, + "1998": 0.383, + "1999": 0.369, + "2000": 0.371, + "2001": 0.392, + "2002": 0.423, + "2003": 0.43, + "2004": 0.433, + "2005": 0.434, + "2006": 0.436, + "2007": 0.454, + "2008": 0.463, + "2009": 0.465, + "2010": 0.456, + "2011": 0.457, + "2012": 0.481, + "2013": 0.5, + "2014": 0.497, + "2015": 0.454, + "2016": 0.441, + "2017": 0.454, + "2018": 0.455, + "2019": 0.478, + "2020": 0.47, + "2021": 0.472 + }, + { + "Country": "Sierra Leone", + "Continent": "Africa", + "ISO_Code": "SLE", + "Level": "Subnat", + "GDLCODE": "SLEr114", + "Region": "Western Urban", + "1990": 0.566, + "1991": 0.557, + "1992": 0.534, + "1993": 0.544, + "1994": 0.538, + "1995": 0.533, + "1996": 0.489, + "1997": 0.458, + "1998": 0.449, + "1999": 0.434, + "2000": 0.437, + "2001": 0.459, + "2002": 0.491, + "2003": 0.499, + "2004": 0.502, + "2005": 0.503, + "2006": 0.505, + "2007": 0.525, + "2008": 0.534, + "2009": 0.539, + "2010": 0.533, + "2011": 0.537, + "2012": 0.567, + "2013": 0.59, + "2014": 0.59, + "2015": 0.547, + "2016": 0.534, + "2017": 0.551, + "2018": 0.543, + "2019": 0.559, + "2020": 0.55, + "2021": 0.552 + }, + { + "Country": "Singapore", + "Continent": "Asia/Pacific", + "ISO_Code": "SGP", + "Level": "National", + "GDLCODE": "SGPt", + "Region": "Total", + "1990": 0.898, + "1991": 0.902, + "1992": 0.91, + "1993": 0.918, + "1994": 0.932, + "1995": 0.939, + "1996": 0.943, + "1997": 0.954, + "1998": 0.946, + "1999": 0.95, + "2000": 0.958, + "2001": 0.954, + "2002": 0.957, + "2003": 0.962, + "2004": 0.969, + "2005": 0.977, + "2006": 0.99, + "2007": 0.997, + "2008": 0.992, + "2009": 0.984, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "National", + "GDLCODE": "SVKt", + "Region": "Total", + "1990": 0.771, + "1991": 0.746, + "1992": 0.735, + "1993": 0.736, + "1994": 0.745, + "1995": 0.756, + "1996": 0.761, + "1997": 0.771, + "1998": 0.775, + "1999": 0.773, + "2000": 0.778, + "2001": 0.783, + "2002": 0.789, + "2003": 0.79, + "2004": 0.799, + "2005": 0.81, + "2006": 0.821, + "2007": 0.835, + "2008": 0.842, + "2009": 0.834, + "2010": 0.84, + "2011": 0.84, + "2012": 0.843, + "2013": 0.844, + "2014": 0.848, + "2015": 0.853, + "2016": 0.854, + "2017": 0.859, + "2018": 0.864, + "2019": 0.867, + "2020": 0.861, + "2021": 0.865 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr101", + "Region": "Bratislavsky kraj", + "1990": 0.916, + "1991": 0.889, + "1992": 0.877, + "1993": 0.878, + "1994": 0.888, + "1995": 0.9, + "1996": 0.906, + "1997": 0.916, + "1998": 0.921, + "1999": 0.919, + "2000": 0.924, + "2001": 0.928, + "2002": 0.938, + "2003": 0.933, + "2004": 0.941, + "2005": 0.963, + "2006": 0.964, + "2007": 0.98, + "2008": 0.983, + "2009": 0.985, + "2010": 0.988, + "2011": 0.99, + "2012": 0.989, + "2013": 0.993, + "2014": 0.992, + "2015": 0.998, + "2016": 0.999, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 0.994, + "2021": 0.999 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr103", + "Region": "Stredne Slovensko", + "1990": 0.737, + "1991": 0.713, + "1992": 0.702, + "1993": 0.703, + "1994": 0.712, + "1995": 0.722, + "1996": 0.728, + "1997": 0.737, + "1998": 0.741, + "1999": 0.739, + "2000": 0.744, + "2001": 0.751, + "2002": 0.754, + "2003": 0.756, + "2004": 0.761, + "2005": 0.766, + "2006": 0.776, + "2007": 0.795, + "2008": 0.806, + "2009": 0.797, + "2010": 0.806, + "2011": 0.8, + "2012": 0.804, + "2013": 0.805, + "2014": 0.809, + "2015": 0.817, + "2016": 0.818, + "2017": 0.822, + "2018": 0.828, + "2019": 0.835, + "2020": 0.829, + "2021": 0.833 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr104", + "Region": "Vychodne Slovensko", + "1990": 0.721, + "1991": 0.697, + "1992": 0.686, + "1993": 0.687, + "1994": 0.696, + "1995": 0.706, + "1996": 0.712, + "1997": 0.721, + "1998": 0.725, + "1999": 0.723, + "2000": 0.727, + "2001": 0.736, + "2002": 0.74, + "2003": 0.736, + "2004": 0.744, + "2005": 0.753, + "2006": 0.757, + "2007": 0.771, + "2008": 0.785, + "2009": 0.771, + "2010": 0.776, + "2011": 0.776, + "2012": 0.782, + "2013": 0.783, + "2014": 0.787, + "2015": 0.795, + "2016": 0.796, + "2017": 0.805, + "2018": 0.811, + "2019": 0.812, + "2020": 0.806, + "2021": 0.81 + }, + { + "Country": "Slovakia", + "Continent": "Europe", + "ISO_Code": "SVK", + "Level": "Subnat", + "GDLCODE": "SVKr102", + "Region": "Zapadne Slovensko", + "1990": 0.757, + "1991": 0.732, + "1992": 0.721, + "1993": 0.722, + "1994": 0.731, + "1995": 0.742, + "1996": 0.747, + "1997": 0.757, + "1998": 0.761, + "1999": 0.759, + "2000": 0.764, + "2001": 0.769, + "2002": 0.77, + "2003": 0.777, + "2004": 0.788, + "2005": 0.799, + "2006": 0.819, + "2007": 0.83, + "2008": 0.834, + "2009": 0.821, + "2010": 0.825, + "2011": 0.831, + "2012": 0.834, + "2013": 0.832, + "2014": 0.837, + "2015": 0.838, + "2016": 0.84, + "2017": 0.844, + "2018": 0.848, + "2019": 0.853, + "2020": 0.847, + "2021": 0.851 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "National", + "GDLCODE": "SVNt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.812, + "1996": 0.818, + "1997": 0.825, + "1998": 0.831, + "1999": 0.839, + "2000": 0.842, + "2001": 0.848, + "2002": 0.853, + "2003": 0.858, + "2004": 0.862, + "2005": 0.867, + "2006": 0.873, + "2007": 0.882, + "2008": 0.885, + "2009": 0.877, + "2010": 0.875, + "2011": 0.874, + "2012": 0.869, + "2013": 0.868, + "2014": 0.874, + "2015": 0.875, + "2016": 0.881, + "2017": 0.888, + "2018": 0.895, + "2019": 0.899, + "2020": 0.893, + "2021": 0.904 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr110", + "Region": "Gorenjska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.789, + "1996": 0.794, + "1997": 0.802, + "1998": 0.808, + "1999": 0.816, + "2000": 0.818, + "2001": 0.824, + "2002": 0.829, + "2003": 0.834, + "2004": 0.838, + "2005": 0.842, + "2006": 0.849, + "2007": 0.858, + "2008": 0.86, + "2009": 0.844, + "2010": 0.846, + "2011": 0.846, + "2012": 0.841, + "2013": 0.845, + "2014": 0.853, + "2015": 0.855, + "2016": 0.862, + "2017": 0.869, + "2018": 0.876, + "2019": 0.88, + "2020": 0.874, + "2021": 0.885 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr111", + "Region": "Goriska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.801, + "1996": 0.807, + "1997": 0.814, + "1998": 0.82, + "1999": 0.828, + "2000": 0.83, + "2001": 0.837, + "2002": 0.842, + "2003": 0.846, + "2004": 0.851, + "2005": 0.855, + "2006": 0.862, + "2007": 0.874, + "2008": 0.878, + "2009": 0.868, + "2010": 0.865, + "2011": 0.862, + "2012": 0.854, + "2013": 0.853, + "2014": 0.859, + "2015": 0.861, + "2016": 0.868, + "2017": 0.875, + "2018": 0.882, + "2019": 0.886, + "2020": 0.88, + "2021": 0.891 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr107", + "Region": "Jugovzhodna Slovenija", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.809, + "1996": 0.814, + "1997": 0.822, + "1998": 0.827, + "1999": 0.836, + "2000": 0.838, + "2001": 0.844, + "2002": 0.849, + "2003": 0.854, + "2004": 0.859, + "2005": 0.863, + "2006": 0.87, + "2007": 0.877, + "2008": 0.88, + "2009": 0.868, + "2010": 0.867, + "2011": 0.866, + "2012": 0.859, + "2013": 0.86, + "2014": 0.868, + "2015": 0.869, + "2016": 0.873, + "2017": 0.881, + "2018": 0.887, + "2019": 0.891, + "2020": 0.885, + "2021": 0.896 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr103", + "Region": "Koroska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.775, + "1996": 0.78, + "1997": 0.788, + "1998": 0.793, + "1999": 0.801, + "2000": 0.804, + "2001": 0.81, + "2002": 0.815, + "2003": 0.819, + "2004": 0.824, + "2005": 0.828, + "2006": 0.835, + "2007": 0.843, + "2008": 0.845, + "2009": 0.831, + "2010": 0.829, + "2011": 0.834, + "2012": 0.832, + "2013": 0.833, + "2014": 0.84, + "2015": 0.842, + "2016": 0.848, + "2017": 0.855, + "2018": 0.862, + "2019": 0.866, + "2020": 0.86, + "2021": 0.871 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr112", + "Region": "Obalno-kraska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.82, + "1996": 0.825, + "1997": 0.833, + "1998": 0.839, + "1999": 0.847, + "2000": 0.849, + "2001": 0.855, + "2002": 0.861, + "2003": 0.865, + "2004": 0.87, + "2005": 0.874, + "2006": 0.881, + "2007": 0.891, + "2008": 0.896, + "2009": 0.889, + "2010": 0.888, + "2011": 0.883, + "2012": 0.871, + "2013": 0.865, + "2014": 0.87, + "2015": 0.875, + "2016": 0.884, + "2017": 0.891, + "2018": 0.898, + "2019": 0.902, + "2020": 0.896, + "2021": 0.907 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr109", + "Region": "Osrednjeslovenska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.87, + "1996": 0.876, + "1997": 0.883, + "1998": 0.889, + "1999": 0.898, + "2000": 0.9, + "2001": 0.907, + "2002": 0.912, + "2003": 0.917, + "2004": 0.922, + "2005": 0.926, + "2006": 0.933, + "2007": 0.942, + "2008": 0.942, + "2009": 0.936, + "2010": 0.932, + "2011": 0.93, + "2012": 0.925, + "2013": 0.923, + "2014": 0.927, + "2015": 0.927, + "2016": 0.934, + "2017": 0.942, + "2018": 0.948, + "2019": 0.952, + "2020": 0.946, + "2021": 0.958 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr102", + "Region": "Podravska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.785, + "1996": 0.79, + "1997": 0.797, + "1998": 0.803, + "1999": 0.811, + "2000": 0.813, + "2001": 0.819, + "2002": 0.825, + "2003": 0.829, + "2004": 0.834, + "2005": 0.838, + "2006": 0.845, + "2007": 0.854, + "2008": 0.858, + "2009": 0.849, + "2010": 0.845, + "2011": 0.846, + "2012": 0.84, + "2013": 0.839, + "2014": 0.846, + "2015": 0.846, + "2016": 0.851, + "2017": 0.858, + "2018": 0.865, + "2019": 0.869, + "2020": 0.863, + "2021": 0.874 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr101", + "Region": "Pomurska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.749, + "1996": 0.754, + "1997": 0.761, + "1998": 0.767, + "1999": 0.775, + "2000": 0.777, + "2001": 0.783, + "2002": 0.788, + "2003": 0.792, + "2004": 0.797, + "2005": 0.801, + "2006": 0.808, + "2007": 0.814, + "2008": 0.816, + "2009": 0.809, + "2010": 0.807, + "2011": 0.811, + "2012": 0.808, + "2013": 0.81, + "2014": 0.816, + "2015": 0.814, + "2016": 0.821, + "2017": 0.828, + "2018": 0.834, + "2019": 0.838, + "2020": 0.833, + "2021": 0.843 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr106", + "Region": "Posavska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.778, + "1996": 0.784, + "1997": 0.791, + "1998": 0.797, + "1999": 0.805, + "2000": 0.807, + "2001": 0.813, + "2002": 0.818, + "2003": 0.822, + "2004": 0.827, + "2005": 0.831, + "2006": 0.838, + "2007": 0.847, + "2008": 0.851, + "2009": 0.845, + "2010": 0.844, + "2011": 0.846, + "2012": 0.841, + "2013": 0.842, + "2014": 0.847, + "2015": 0.848, + "2016": 0.852, + "2017": 0.859, + "2018": 0.866, + "2019": 0.87, + "2020": 0.864, + "2021": 0.875 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr108", + "Region": "Primorsko-notranjska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.765, + "1996": 0.77, + "1997": 0.778, + "1998": 0.783, + "1999": 0.791, + "2000": 0.793, + "2001": 0.799, + "2002": 0.804, + "2003": 0.809, + "2004": 0.814, + "2005": 0.818, + "2006": 0.824, + "2007": 0.833, + "2008": 0.836, + "2009": 0.828, + "2010": 0.821, + "2011": 0.82, + "2012": 0.812, + "2013": 0.815, + "2014": 0.823, + "2015": 0.828, + "2016": 0.834, + "2017": 0.841, + "2018": 0.848, + "2019": 0.852, + "2020": 0.846, + "2021": 0.857 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr104", + "Region": "Savinjska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.793, + "1996": 0.798, + "1997": 0.805, + "1998": 0.811, + "1999": 0.819, + "2000": 0.822, + "2001": 0.828, + "2002": 0.833, + "2003": 0.837, + "2004": 0.842, + "2005": 0.846, + "2006": 0.853, + "2007": 0.862, + "2008": 0.869, + "2009": 0.858, + "2010": 0.86, + "2011": 0.861, + "2012": 0.856, + "2013": 0.854, + "2014": 0.86, + "2015": 0.862, + "2016": 0.868, + "2017": 0.876, + "2018": 0.882, + "2019": 0.886, + "2020": 0.88, + "2021": 0.891 + }, + { + "Country": "Slovenia", + "Continent": "Europe", + "ISO_Code": "SVN", + "Level": "Subnat", + "GDLCODE": "SVNr105", + "Region": "Zasavska", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": 0.741, + "1996": 0.747, + "1997": 0.754, + "1998": 0.759, + "1999": 0.767, + "2000": 0.769, + "2001": 0.775, + "2002": 0.78, + "2003": 0.785, + "2004": 0.789, + "2005": 0.793, + "2006": 0.8, + "2007": 0.806, + "2008": 0.809, + "2009": 0.799, + "2010": 0.799, + "2011": 0.797, + "2012": 0.787, + "2013": 0.787, + "2014": 0.787, + "2015": 0.781, + "2016": 0.785, + "2017": 0.792, + "2018": 0.798, + "2019": 0.802, + "2020": 0.796, + "2021": 0.807 + }, + { + "Country": "Solomon Islands", + "Continent": "Asia/Pacific", + "ISO_Code": "SLB", + "Level": "National", + "GDLCODE": "SLBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": 0.492, + "2000": 0.469, + "2001": 0.454, + "2002": 0.442, + "2003": 0.45, + "2004": 0.458, + "2005": 0.462, + "2006": 0.461, + "2007": 0.46, + "2008": 0.462, + "2009": 0.462, + "2010": 0.475, + "2011": 0.478, + "2012": 0.481, + "2013": 0.492, + "2014": 0.488, + "2015": 0.485, + "2016": 0.487, + "2017": 0.493, + "2018": 0.496, + "2019": 0.494, + "2020": 0.489, + "2021": 0.485 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "National", + "GDLCODE": "SOMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.401, + "2007": 0.39, + "2008": 0.379, + "2009": 0.367, + "2010": 0.353, + "2011": 0.338, + "2012": 0.322, + "2013": 0.329, + "2014": 0.34, + "2015": 0.357, + "2016": 0.367, + "2017": 0.376, + "2018": 0.385, + "2019": 0.393, + "2020": 0.393, + "2021": 0.393 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr102", + "Region": "Awdal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.41, + "2007": 0.4, + "2008": 0.388, + "2009": 0.376, + "2010": 0.362, + "2011": 0.347, + "2012": 0.331, + "2013": 0.337, + "2014": 0.348, + "2015": 0.366, + "2016": 0.376, + "2017": 0.385, + "2018": 0.394, + "2019": 0.402, + "2020": 0.402, + "2021": 0.402 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr109", + "Region": "Bakool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.33, + "2007": 0.32, + "2008": 0.309, + "2009": 0.298, + "2010": 0.285, + "2011": 0.271, + "2012": 0.256, + "2013": 0.262, + "2014": 0.272, + "2015": 0.289, + "2016": 0.298, + "2017": 0.306, + "2018": 0.315, + "2019": 0.322, + "2020": 0.322, + "2021": 0.322 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr116", + "Region": "Banadir", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.518, + "2007": 0.506, + "2008": 0.494, + "2009": 0.48, + "2010": 0.465, + "2011": 0.449, + "2012": 0.431, + "2013": 0.438, + "2014": 0.45, + "2015": 0.469, + "2016": 0.48, + "2017": 0.49, + "2018": 0.5, + "2019": 0.509, + "2020": 0.509, + "2021": 0.509 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr108", + "Region": "Bari", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.46, + "2007": 0.449, + "2008": 0.437, + "2009": 0.424, + "2010": 0.41, + "2011": 0.394, + "2012": 0.377, + "2013": 0.384, + "2014": 0.395, + "2015": 0.414, + "2016": 0.424, + "2017": 0.434, + "2018": 0.443, + "2019": 0.451, + "2020": 0.451, + "2021": 0.451 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr110", + "Region": "Bay", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.339, + "2007": 0.329, + "2008": 0.318, + "2009": 0.307, + "2010": 0.294, + "2011": 0.28, + "2012": 0.265, + "2013": 0.271, + "2014": 0.281, + "2015": 0.298, + "2016": 0.307, + "2017": 0.316, + "2018": 0.324, + "2019": 0.332, + "2020": 0.332, + "2021": 0.332 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr117", + "Region": "Galguduud", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.349, + "2007": 0.339, + "2008": 0.328, + "2009": 0.316, + "2010": 0.304, + "2011": 0.29, + "2012": 0.274, + "2013": 0.28, + "2014": 0.291, + "2015": 0.307, + "2016": 0.317, + "2017": 0.325, + "2018": 0.334, + "2019": 0.341, + "2020": 0.341, + "2021": 0.341 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr111", + "Region": "Gedo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.358, + "2007": 0.348, + "2008": 0.337, + "2009": 0.325, + "2010": 0.312, + "2011": 0.298, + "2012": 0.282, + "2013": 0.289, + "2014": 0.299, + "2015": 0.316, + "2016": 0.326, + "2017": 0.334, + "2018": 0.343, + "2019": 0.35, + "2020": 0.35, + "2021": 0.35 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr113", + "Region": "Hiran", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.356, + "2007": 0.346, + "2008": 0.335, + "2009": 0.323, + "2010": 0.31, + "2011": 0.296, + "2012": 0.28, + "2013": 0.287, + "2014": 0.297, + "2015": 0.314, + "2016": 0.323, + "2017": 0.332, + "2018": 0.34, + "2019": 0.348, + "2020": 0.348, + "2021": 0.348 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr118", + "Region": "Lower Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.34, + "2007": 0.33, + "2008": 0.32, + "2009": 0.308, + "2010": 0.295, + "2011": 0.281, + "2012": 0.266, + "2013": 0.272, + "2014": 0.282, + "2015": 0.299, + "2016": 0.308, + "2017": 0.317, + "2018": 0.325, + "2019": 0.333, + "2020": 0.333, + "2021": 0.333 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr115", + "Region": "Lower Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.372, + "2007": 0.362, + "2008": 0.351, + "2009": 0.339, + "2010": 0.325, + "2011": 0.311, + "2012": 0.295, + "2013": 0.302, + "2014": 0.312, + "2015": 0.329, + "2016": 0.339, + "2017": 0.348, + "2018": 0.356, + "2019": 0.364, + "2020": 0.364, + "2021": 0.364 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr112", + "Region": "Middle Juba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.337, + "2007": 0.327, + "2008": 0.316, + "2009": 0.304, + "2010": 0.292, + "2011": 0.278, + "2012": 0.262, + "2013": 0.269, + "2014": 0.279, + "2015": 0.295, + "2016": 0.305, + "2017": 0.313, + "2018": 0.321, + "2019": 0.329, + "2020": 0.329, + "2021": 0.329 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr114", + "Region": "Middle Shabelle", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.374, + "2007": 0.364, + "2008": 0.352, + "2009": 0.34, + "2010": 0.327, + "2011": 0.313, + "2012": 0.297, + "2013": 0.303, + "2014": 0.314, + "2015": 0.331, + "2016": 0.341, + "2017": 0.349, + "2018": 0.358, + "2019": 0.366, + "2020": 0.366, + "2021": 0.366 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr106", + "Region": "Mudug", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.414, + "2007": 0.404, + "2008": 0.392, + "2009": 0.38, + "2010": 0.366, + "2011": 0.351, + "2012": 0.334, + "2013": 0.341, + "2014": 0.352, + "2015": 0.37, + "2016": 0.38, + "2017": 0.389, + "2018": 0.398, + "2019": 0.406, + "2020": 0.406, + "2021": 0.406 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr107", + "Region": "Nugal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.393, + "2007": 0.383, + "2008": 0.371, + "2009": 0.359, + "2010": 0.346, + "2011": 0.331, + "2012": 0.315, + "2013": 0.321, + "2014": 0.332, + "2015": 0.35, + "2016": 0.359, + "2017": 0.368, + "2018": 0.377, + "2019": 0.385, + "2020": 0.385, + "2021": 0.385 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr103", + "Region": "Sanaag", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.419, + "2007": 0.409, + "2008": 0.397, + "2009": 0.385, + "2010": 0.371, + "2011": 0.356, + "2012": 0.339, + "2013": 0.346, + "2014": 0.357, + "2015": 0.375, + "2016": 0.385, + "2017": 0.394, + "2018": 0.403, + "2019": 0.411, + "2020": 0.411, + "2021": 0.411 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr104", + "Region": "Sool", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.375, + "2007": 0.365, + "2008": 0.354, + "2009": 0.342, + "2010": 0.328, + "2011": 0.314, + "2012": 0.298, + "2013": 0.304, + "2014": 0.315, + "2015": 0.332, + "2016": 0.342, + "2017": 0.351, + "2018": 0.359, + "2019": 0.367, + "2020": 0.367, + "2021": 0.367 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr105", + "Region": "Togdhere", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.353, + "2007": 0.343, + "2008": 0.332, + "2009": 0.32, + "2010": 0.307, + "2011": 0.293, + "2012": 0.277, + "2013": 0.284, + "2014": 0.294, + "2015": 0.311, + "2016": 0.32, + "2017": 0.329, + "2018": 0.337, + "2019": 0.345, + "2020": 0.345, + "2021": 0.345 + }, + { + "Country": "Somalia", + "Continent": "Africa", + "ISO_Code": "SOM", + "Level": "Subnat", + "GDLCODE": "SOMr101", + "Region": "W Galbeed", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": 0.499, + "2007": 0.488, + "2008": 0.475, + "2009": 0.462, + "2010": 0.447, + "2011": 0.431, + "2012": 0.413, + "2013": 0.42, + "2014": 0.432, + "2015": 0.451, + "2016": 0.462, + "2017": 0.472, + "2018": 0.481, + "2019": 0.49, + "2020": 0.49, + "2021": 0.49 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "National", + "GDLCODE": "ZAFt", + "Region": "Total", + "1990": 0.709, + "1991": 0.705, + "1992": 0.698, + "1993": 0.697, + "1994": 0.699, + "1995": 0.7, + "1996": 0.703, + "1997": 0.704, + "1998": 0.702, + "1999": 0.703, + "2000": 0.708, + "2001": 0.709, + "2002": 0.713, + "2003": 0.715, + "2004": 0.721, + "2005": 0.727, + "2006": 0.733, + "2007": 0.737, + "2008": 0.74, + "2009": 0.737, + "2010": 0.739, + "2011": 0.741, + "2012": 0.742, + "2013": 0.744, + "2014": 0.743, + "2015": 0.743, + "2016": 0.741, + "2017": 0.741, + "2018": 0.741, + "2019": 0.739, + "2020": 0.729, + "2021": 0.735 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr102", + "Region": "Eastern Cape", + "1990": 0.613, + "1991": 0.61, + "1992": 0.603, + "1993": 0.602, + "1994": 0.604, + "1995": 0.605, + "1996": 0.608, + "1997": 0.609, + "1998": 0.607, + "1999": 0.611, + "2000": 0.617, + "2001": 0.621, + "2002": 0.628, + "2003": 0.632, + "2004": 0.641, + "2005": 0.649, + "2006": 0.657, + "2007": 0.664, + "2008": 0.669, + "2009": 0.669, + "2010": 0.673, + "2011": 0.678, + "2012": 0.683, + "2013": 0.689, + "2014": 0.692, + "2015": 0.697, + "2016": 0.699, + "2017": 0.698, + "2018": 0.699, + "2019": 0.697, + "2020": 0.687, + "2021": 0.693 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr104", + "Region": "Free State", + "1990": 0.719, + "1991": 0.715, + "1992": 0.708, + "1993": 0.707, + "1994": 0.708, + "1995": 0.71, + "1996": 0.713, + "1997": 0.714, + "1998": 0.712, + "1999": 0.714, + "2000": 0.719, + "2001": 0.721, + "2002": 0.726, + "2003": 0.729, + "2004": 0.736, + "2005": 0.742, + "2006": 0.749, + "2007": 0.754, + "2008": 0.758, + "2009": 0.755, + "2010": 0.758, + "2011": 0.761, + "2012": 0.766, + "2013": 0.771, + "2014": 0.774, + "2015": 0.777, + "2016": 0.779, + "2017": 0.779, + "2018": 0.779, + "2019": 0.777, + "2020": 0.766, + "2021": 0.772 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr107", + "Region": "Gauteng", + "1990": 0.809, + "1991": 0.805, + "1992": 0.798, + "1993": 0.797, + "1994": 0.798, + "1995": 0.8, + "1996": 0.803, + "1997": 0.804, + "1998": 0.802, + "1999": 0.799, + "2000": 0.799, + "2001": 0.796, + "2002": 0.796, + "2003": 0.794, + "2004": 0.796, + "2005": 0.798, + "2006": 0.8, + "2007": 0.8, + "2008": 0.799, + "2009": 0.791, + "2010": 0.789, + "2011": 0.787, + "2012": 0.782, + "2013": 0.778, + "2014": 0.772, + "2015": 0.766, + "2016": 0.759, + "2017": 0.758, + "2018": 0.758, + "2019": 0.757, + "2020": 0.746, + "2021": 0.752 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr105", + "Region": "KwaZulu Natal", + "1990": 0.668, + "1991": 0.664, + "1992": 0.658, + "1993": 0.656, + "1994": 0.658, + "1995": 0.659, + "1996": 0.662, + "1997": 0.663, + "1998": 0.661, + "1999": 0.663, + "2000": 0.668, + "2001": 0.669, + "2002": 0.674, + "2003": 0.676, + "2004": 0.683, + "2005": 0.689, + "2006": 0.696, + "2007": 0.7, + "2008": 0.703, + "2009": 0.701, + "2010": 0.703, + "2011": 0.706, + "2012": 0.712, + "2013": 0.718, + "2014": 0.723, + "2015": 0.727, + "2016": 0.731, + "2017": 0.73, + "2018": 0.73, + "2019": 0.729, + "2020": 0.718, + "2021": 0.724 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr108", + "Region": "Mpumalanga", + "1990": 0.691, + "1991": 0.687, + "1992": 0.681, + "1993": 0.68, + "1994": 0.681, + "1995": 0.682, + "1996": 0.685, + "1997": 0.687, + "1998": 0.685, + "1999": 0.687, + "2000": 0.692, + "2001": 0.693, + "2002": 0.698, + "2003": 0.701, + "2004": 0.708, + "2005": 0.714, + "2006": 0.721, + "2007": 0.726, + "2008": 0.73, + "2009": 0.727, + "2010": 0.73, + "2011": 0.733, + "2012": 0.729, + "2013": 0.726, + "2014": 0.72, + "2015": 0.715, + "2016": 0.709, + "2017": 0.708, + "2018": 0.708, + "2019": 0.707, + "2020": 0.696, + "2021": 0.702 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr106", + "Region": "North West", + "1990": 0.681, + "1991": 0.677, + "1992": 0.671, + "1993": 0.67, + "1994": 0.671, + "1995": 0.672, + "1996": 0.675, + "1997": 0.677, + "1998": 0.675, + "1999": 0.677, + "2000": 0.681, + "2001": 0.683, + "2002": 0.687, + "2003": 0.69, + "2004": 0.697, + "2005": 0.703, + "2006": 0.71, + "2007": 0.714, + "2008": 0.717, + "2009": 0.715, + "2010": 0.718, + "2011": 0.72, + "2012": 0.719, + "2013": 0.719, + "2014": 0.717, + "2015": 0.715, + "2016": 0.712, + "2017": 0.711, + "2018": 0.711, + "2019": 0.71, + "2020": 0.699, + "2021": 0.705 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr103", + "Region": "Northern Cape", + "1990": 0.756, + "1991": 0.752, + "1992": 0.745, + "1993": 0.744, + "1994": 0.746, + "1995": 0.747, + "1996": 0.75, + "1997": 0.751, + "1998": 0.749, + "1999": 0.747, + "2000": 0.748, + "2001": 0.745, + "2002": 0.746, + "2003": 0.745, + "2004": 0.748, + "2005": 0.75, + "2006": 0.753, + "2007": 0.753, + "2008": 0.753, + "2009": 0.746, + "2010": 0.745, + "2011": 0.744, + "2012": 0.748, + "2013": 0.752, + "2014": 0.755, + "2015": 0.758, + "2016": 0.759, + "2017": 0.758, + "2018": 0.758, + "2019": 0.757, + "2020": 0.746, + "2021": 0.752 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr109", + "Region": "Northern Province", + "1990": 0.617, + "1991": 0.613, + "1992": 0.607, + "1993": 0.606, + "1994": 0.607, + "1995": 0.608, + "1996": 0.611, + "1997": 0.612, + "1998": 0.611, + "1999": 0.616, + "2000": 0.623, + "2001": 0.628, + "2002": 0.636, + "2003": 0.641, + "2004": 0.651, + "2005": 0.66, + "2006": 0.67, + "2007": 0.677, + "2008": 0.684, + "2009": 0.684, + "2010": 0.69, + "2011": 0.696, + "2012": 0.698, + "2013": 0.7, + "2014": 0.701, + "2015": 0.702, + "2016": 0.702, + "2017": 0.701, + "2018": 0.701, + "2019": 0.7, + "2020": 0.69, + "2021": 0.695 + }, + { + "Country": "South Africa", + "Continent": "Africa", + "ISO_Code": "ZAF", + "Level": "Subnat", + "GDLCODE": "ZAFr101", + "Region": "Western Cape", + "1990": 0.832, + "1991": 0.828, + "1992": 0.821, + "1993": 0.82, + "1994": 0.821, + "1995": 0.823, + "1996": 0.826, + "1997": 0.828, + "1998": 0.825, + "1999": 0.822, + "2000": 0.821, + "2001": 0.817, + "2002": 0.816, + "2003": 0.814, + "2004": 0.815, + "2005": 0.816, + "2006": 0.818, + "2007": 0.817, + "2008": 0.815, + "2009": 0.806, + "2010": 0.804, + "2011": 0.801, + "2012": 0.805, + "2013": 0.81, + "2014": 0.813, + "2015": 0.816, + "2016": 0.818, + "2017": 0.817, + "2018": 0.817, + "2019": 0.816, + "2020": 0.805, + "2021": 0.811 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "National", + "GDLCODE": "KORt", + "Region": "Total", + "1990": 0.731, + "1991": 0.745, + "1992": 0.752, + "1993": 0.761, + "1994": 0.773, + "1995": 0.785, + "1996": 0.795, + "1997": 0.802, + "1998": 0.792, + "1999": 0.808, + "2000": 0.82, + "2001": 0.826, + "2002": 0.837, + "2003": 0.841, + "2004": 0.848, + "2005": 0.853, + "2006": 0.861, + "2007": 0.869, + "2008": 0.873, + "2009": 0.873, + "2010": 0.882, + "2011": 0.887, + "2012": 0.891, + "2013": 0.894, + "2014": 0.898, + "2015": 0.901, + "2016": 0.905, + "2017": 0.909, + "2018": 0.913, + "2019": 0.917, + "2020": 0.915, + "2021": 0.921 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr101", + "Region": "Capital Region", + "1990": 0.747, + "1991": 0.761, + "1992": 0.767, + "1993": 0.775, + "1994": 0.784, + "1995": 0.794, + "1996": 0.803, + "1997": 0.807, + "1998": 0.795, + "1999": 0.813, + "2000": 0.827, + "2001": 0.833, + "2002": 0.845, + "2003": 0.847, + "2004": 0.85, + "2005": 0.856, + "2006": 0.863, + "2007": 0.87, + "2008": 0.872, + "2009": 0.872, + "2010": 0.881, + "2011": 0.884, + "2012": 0.887, + "2013": 0.892, + "2014": 0.896, + "2015": 0.899, + "2016": 0.903, + "2017": 0.907, + "2018": 0.911, + "2019": 0.915, + "2020": 0.913, + "2021": 0.919 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr105", + "Region": "Chungcheong Region", + "1990": 0.712, + "1991": 0.729, + "1992": 0.74, + "1993": 0.754, + "1994": 0.769, + "1995": 0.782, + "1996": 0.796, + "1997": 0.804, + "1998": 0.794, + "1999": 0.812, + "2000": 0.825, + "2001": 0.828, + "2002": 0.839, + "2003": 0.847, + "2004": 0.859, + "2005": 0.863, + "2006": 0.872, + "2007": 0.879, + "2008": 0.883, + "2009": 0.89, + "2010": 0.904, + "2011": 0.914, + "2012": 0.916, + "2013": 0.92, + "2014": 0.925, + "2015": 0.929, + "2016": 0.933, + "2017": 0.937, + "2018": 0.941, + "2019": 0.944, + "2020": 0.943, + "2021": 0.949 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr106", + "Region": "Gangwon Region", + "1990": 0.724, + "1991": 0.731, + "1992": 0.735, + "1993": 0.739, + "1994": 0.751, + "1995": 0.765, + "1996": 0.783, + "1997": 0.789, + "1998": 0.778, + "1999": 0.789, + "2000": 0.795, + "2001": 0.798, + "2002": 0.807, + "2003": 0.817, + "2004": 0.821, + "2005": 0.825, + "2006": 0.835, + "2007": 0.844, + "2008": 0.846, + "2009": 0.846, + "2010": 0.849, + "2011": 0.856, + "2012": 0.861, + "2013": 0.865, + "2014": 0.871, + "2015": 0.874, + "2016": 0.878, + "2017": 0.882, + "2018": 0.886, + "2019": 0.89, + "2020": 0.888, + "2021": 0.894 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr103", + "Region": "Gyeongbuk Region", + "1990": 0.723, + "1991": 0.733, + "1992": 0.735, + "1993": 0.739, + "1994": 0.754, + "1995": 0.764, + "1996": 0.775, + "1997": 0.788, + "1998": 0.776, + "1999": 0.791, + "2000": 0.806, + "2001": 0.808, + "2002": 0.818, + "2003": 0.825, + "2004": 0.838, + "2005": 0.844, + "2006": 0.85, + "2007": 0.855, + "2008": 0.86, + "2009": 0.859, + "2010": 0.869, + "2011": 0.872, + "2012": 0.877, + "2013": 0.882, + "2014": 0.886, + "2015": 0.889, + "2016": 0.893, + "2017": 0.897, + "2018": 0.901, + "2019": 0.905, + "2020": 0.903, + "2021": 0.909 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr102", + "Region": "Gyeongnam Region", + "1990": 0.735, + "1991": 0.746, + "1992": 0.755, + "1993": 0.761, + "1994": 0.775, + "1995": 0.788, + "1996": 0.797, + "1997": 0.807, + "1998": 0.802, + "1999": 0.815, + "2000": 0.825, + "2001": 0.835, + "2002": 0.845, + "2003": 0.847, + "2004": 0.857, + "2005": 0.862, + "2006": 0.87, + "2007": 0.881, + "2008": 0.888, + "2009": 0.885, + "2010": 0.894, + "2011": 0.9, + "2012": 0.904, + "2013": 0.905, + "2014": 0.905, + "2015": 0.908, + "2016": 0.912, + "2017": 0.917, + "2018": 0.92, + "2019": 0.924, + "2020": 0.922, + "2021": 0.929 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr107", + "Region": "Jeju", + "1990": 0.698, + "1991": 0.719, + "1992": 0.722, + "1993": 0.728, + "1994": 0.747, + "1995": 0.764, + "1996": 0.77, + "1997": 0.775, + "1998": 0.762, + "1999": 0.774, + "2000": 0.783, + "2001": 0.788, + "2002": 0.802, + "2003": 0.806, + "2004": 0.815, + "2005": 0.819, + "2006": 0.823, + "2007": 0.83, + "2008": 0.831, + "2009": 0.84, + "2010": 0.844, + "2011": 0.854, + "2012": 0.861, + "2013": 0.863, + "2014": 0.868, + "2015": 0.871, + "2016": 0.875, + "2017": 0.879, + "2018": 0.883, + "2019": 0.886, + "2020": 0.885, + "2021": 0.891 + }, + { + "Country": "South Korea", + "Continent": "Asia/Pacific", + "ISO_Code": "KOR", + "Level": "Subnat", + "GDLCODE": "KORr104", + "Region": "Jeolla Region", + "1990": 0.693, + "1991": 0.711, + "1992": 0.726, + "1993": 0.738, + "1994": 0.751, + "1995": 0.769, + "1996": 0.783, + "1997": 0.794, + "1998": 0.782, + "1999": 0.792, + "2000": 0.802, + "2001": 0.808, + "2002": 0.818, + "2003": 0.823, + "2004": 0.833, + "2005": 0.839, + "2006": 0.846, + "2007": 0.857, + "2008": 0.863, + "2009": 0.862, + "2010": 0.874, + "2011": 0.881, + "2012": 0.884, + "2013": 0.883, + "2014": 0.886, + "2015": 0.889, + "2016": 0.893, + "2017": 0.897, + "2018": 0.901, + "2019": 0.904, + "2020": 0.903, + "2021": 0.909 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "National", + "GDLCODE": "SSDt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.455, + "2011": 0.458, + "2012": 0.341, + "2013": 0.375, + "2014": 0.374, + "2015": 0.37, + "2016": 0.343, + "2017": 0.33, + "2018": 0.322, + "2019": 0.319, + "2020": 0.304, + "2021": 0.308 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr109", + "Region": "Central Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.488, + "2011": 0.491, + "2012": 0.37, + "2013": 0.405, + "2014": 0.405, + "2015": 0.4, + "2016": 0.373, + "2017": 0.359, + "2018": 0.352, + "2019": 0.348, + "2020": 0.333, + "2021": 0.337 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr110", + "Region": "Eastern Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.433, + "2011": 0.436, + "2012": 0.321, + "2013": 0.354, + "2014": 0.354, + "2015": 0.349, + "2016": 0.323, + "2017": 0.31, + "2018": 0.303, + "2019": 0.3, + "2020": 0.285, + "2021": 0.289 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr102", + "Region": "Jonglei", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.437, + "2011": 0.44, + "2012": 0.324, + "2013": 0.358, + "2014": 0.357, + "2015": 0.353, + "2016": 0.327, + "2017": 0.314, + "2018": 0.306, + "2019": 0.303, + "2020": 0.289, + "2021": 0.292 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr107", + "Region": "Lakes", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.472, + "2011": 0.476, + "2012": 0.357, + "2013": 0.391, + "2014": 0.391, + "2015": 0.386, + "2016": 0.359, + "2017": 0.346, + "2018": 0.338, + "2019": 0.335, + "2020": 0.32, + "2021": 0.323 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr105", + "Region": "Northern Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.441, + "2011": 0.444, + "2012": 0.328, + "2013": 0.362, + "2014": 0.361, + "2015": 0.356, + "2016": 0.331, + "2017": 0.317, + "2018": 0.31, + "2019": 0.307, + "2020": 0.292, + "2021": 0.296 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr103", + "Region": "Unity", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.454, + "2011": 0.458, + "2012": 0.34, + "2013": 0.374, + "2014": 0.374, + "2015": 0.369, + "2016": 0.343, + "2017": 0.329, + "2018": 0.322, + "2019": 0.319, + "2020": 0.304, + "2021": 0.307 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr101", + "Region": "Upper Nile", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.475, + "2011": 0.479, + "2012": 0.359, + "2013": 0.394, + "2014": 0.394, + "2015": 0.389, + "2016": 0.362, + "2017": 0.348, + "2018": 0.341, + "2019": 0.337, + "2020": 0.322, + "2021": 0.326 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr104", + "Region": "Warrap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.432, + "2011": 0.436, + "2012": 0.321, + "2013": 0.354, + "2014": 0.353, + "2015": 0.349, + "2016": 0.323, + "2017": 0.31, + "2018": 0.303, + "2019": 0.299, + "2020": 0.285, + "2021": 0.288 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr106", + "Region": "Western Bahr El Ghazal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.471, + "2011": 0.474, + "2012": 0.355, + "2013": 0.39, + "2014": 0.389, + "2015": 0.384, + "2016": 0.358, + "2017": 0.344, + "2018": 0.337, + "2019": 0.333, + "2020": 0.318, + "2021": 0.322 + }, + { + "Country": "South Sudan", + "Continent": "Africa", + "ISO_Code": "SSD", + "Level": "Subnat", + "GDLCODE": "SSDr108", + "Region": "Western Equatoria", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.469, + "2011": 0.473, + "2012": 0.354, + "2013": 0.388, + "2014": 0.388, + "2015": 0.383, + "2016": 0.356, + "2017": 0.343, + "2018": 0.335, + "2019": 0.332, + "2020": 0.317, + "2021": 0.32 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "National", + "GDLCODE": "ESPt", + "Region": "Total", + "1990": 0.843, + "1991": 0.848, + "1992": 0.849, + "1993": 0.847, + "1994": 0.847, + "1995": 0.853, + "1996": 0.856, + "1997": 0.861, + "1998": 0.868, + "1999": 0.875, + "2000": 0.881, + "2001": 0.885, + "2002": 0.889, + "2003": 0.892, + "2004": 0.894, + "2005": 0.896, + "2006": 0.899, + "2007": 0.901, + "2008": 0.899, + "2009": 0.895, + "2010": 0.894, + "2011": 0.89, + "2012": 0.887, + "2013": 0.886, + "2014": 0.888, + "2015": 0.895, + "2016": 0.9, + "2017": 0.903, + "2018": 0.906, + "2019": 0.908, + "2020": 0.891, + "2021": 0.899 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr115", + "Region": "Andalucia", + "1990": 0.797, + "1991": 0.801, + "1992": 0.802, + "1993": 0.8, + "1994": 0.8, + "1995": 0.806, + "1996": 0.809, + "1997": 0.814, + "1998": 0.821, + "1999": 0.827, + "2000": 0.833, + "2001": 0.837, + "2002": 0.843, + "2003": 0.848, + "2004": 0.852, + "2005": 0.856, + "2006": 0.858, + "2007": 0.861, + "2008": 0.857, + "2009": 0.852, + "2010": 0.85, + "2011": 0.846, + "2012": 0.841, + "2013": 0.838, + "2014": 0.84, + "2015": 0.848, + "2016": 0.852, + "2017": 0.856, + "2018": 0.859, + "2019": 0.861, + "2020": 0.845, + "2021": 0.852 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr107", + "Region": "Aragon", + "1990": 0.851, + "1991": 0.855, + "1992": 0.856, + "1993": 0.854, + "1994": 0.854, + "1995": 0.86, + "1996": 0.863, + "1997": 0.869, + "1998": 0.876, + "1999": 0.882, + "2000": 0.888, + "2001": 0.892, + "2002": 0.899, + "2003": 0.902, + "2004": 0.904, + "2005": 0.907, + "2006": 0.91, + "2007": 0.915, + "2008": 0.913, + "2009": 0.908, + "2010": 0.908, + "2011": 0.904, + "2012": 0.899, + "2013": 0.9, + "2014": 0.903, + "2015": 0.906, + "2016": 0.913, + "2017": 0.916, + "2018": 0.919, + "2019": 0.921, + "2020": 0.904, + "2021": 0.912 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr119", + "Region": "Canarias", + "1990": 0.84, + "1991": 0.844, + "1992": 0.845, + "1993": 0.843, + "1994": 0.844, + "1995": 0.849, + "1996": 0.853, + "1997": 0.858, + "1998": 0.865, + "1999": 0.871, + "2000": 0.877, + "2001": 0.881, + "2002": 0.884, + "2003": 0.885, + "2004": 0.883, + "2005": 0.883, + "2006": 0.882, + "2007": 0.882, + "2008": 0.877, + "2009": 0.871, + "2010": 0.871, + "2011": 0.867, + "2012": 0.861, + "2013": 0.859, + "2014": 0.859, + "2015": 0.864, + "2016": 0.868, + "2017": 0.872, + "2018": 0.873, + "2019": 0.873, + "2020": 0.857, + "2021": 0.864 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr103", + "Region": "Cantabria", + "1990": 0.832, + "1991": 0.837, + "1992": 0.838, + "1993": 0.836, + "1994": 0.836, + "1995": 0.842, + "1996": 0.845, + "1997": 0.85, + "1998": 0.857, + "1999": 0.864, + "2000": 0.869, + "2001": 0.875, + "2002": 0.88, + "2003": 0.881, + "2004": 0.883, + "2005": 0.887, + "2006": 0.889, + "2007": 0.892, + "2008": 0.89, + "2009": 0.886, + "2010": 0.885, + "2011": 0.88, + "2012": 0.876, + "2013": 0.873, + "2014": 0.876, + "2015": 0.88, + "2016": 0.886, + "2017": 0.889, + "2018": 0.892, + "2019": 0.895, + "2020": 0.879, + "2021": 0.886 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr109", + "Region": "Castilla y Leon", + "1990": 0.828, + "1991": 0.833, + "1992": 0.834, + "1993": 0.832, + "1994": 0.832, + "1995": 0.838, + "1996": 0.841, + "1997": 0.846, + "1998": 0.853, + "1999": 0.859, + "2000": 0.865, + "2001": 0.868, + "2002": 0.873, + "2003": 0.878, + "2004": 0.88, + "2005": 0.883, + "2006": 0.885, + "2007": 0.888, + "2008": 0.886, + "2009": 0.884, + "2010": 0.884, + "2011": 0.881, + "2012": 0.878, + "2013": 0.876, + "2014": 0.877, + "2015": 0.884, + "2016": 0.889, + "2017": 0.891, + "2018": 0.897, + "2019": 0.899, + "2020": 0.882, + "2021": 0.89 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr110", + "Region": "Castilla-la Mancha", + "1990": 0.803, + "1991": 0.808, + "1992": 0.809, + "1993": 0.807, + "1994": 0.807, + "1995": 0.813, + "1996": 0.816, + "1997": 0.821, + "1998": 0.828, + "1999": 0.834, + "2000": 0.839, + "2001": 0.846, + "2002": 0.851, + "2003": 0.856, + "2004": 0.858, + "2005": 0.861, + "2006": 0.864, + "2007": 0.867, + "2008": 0.865, + "2009": 0.861, + "2010": 0.859, + "2011": 0.855, + "2012": 0.851, + "2013": 0.85, + "2014": 0.847, + "2015": 0.856, + "2016": 0.861, + "2017": 0.865, + "2018": 0.87, + "2019": 0.872, + "2020": 0.856, + "2021": 0.863 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr112", + "Region": "Cataluna", + "1990": 0.874, + "1991": 0.879, + "1992": 0.88, + "1993": 0.878, + "1994": 0.878, + "1995": 0.884, + "1996": 0.887, + "1997": 0.893, + "1998": 0.9, + "1999": 0.907, + "2000": 0.912, + "2001": 0.918, + "2002": 0.92, + "2003": 0.921, + "2004": 0.922, + "2005": 0.923, + "2006": 0.926, + "2007": 0.927, + "2008": 0.924, + "2009": 0.919, + "2010": 0.919, + "2011": 0.914, + "2012": 0.912, + "2013": 0.912, + "2014": 0.916, + "2015": 0.922, + "2016": 0.928, + "2017": 0.931, + "2018": 0.933, + "2019": 0.934, + "2020": 0.917, + "2021": 0.924 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr117", + "Region": "Ciudad Autonoma de Ceuta", + "1990": 0.826, + "1991": 0.83, + "1992": 0.831, + "1993": 0.829, + "1994": 0.83, + "1995": 0.836, + "1996": 0.839, + "1997": 0.844, + "1998": 0.851, + "1999": 0.857, + "2000": 0.863, + "2001": 0.86, + "2002": 0.865, + "2003": 0.87, + "2004": 0.872, + "2005": 0.873, + "2006": 0.875, + "2007": 0.876, + "2008": 0.874, + "2009": 0.872, + "2010": 0.869, + "2011": 0.862, + "2012": 0.856, + "2013": 0.858, + "2014": 0.857, + "2015": 0.862, + "2016": 0.866, + "2017": 0.864, + "2018": 0.868, + "2019": 0.871, + "2020": 0.855, + "2021": 0.862 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr118", + "Region": "Ciudad Autonoma de Melilla", + "1990": 0.824, + "1991": 0.828, + "1992": 0.829, + "1993": 0.827, + "1994": 0.828, + "1995": 0.833, + "1996": 0.836, + "1997": 0.842, + "1998": 0.848, + "1999": 0.855, + "2000": 0.86, + "2001": 0.856, + "2002": 0.861, + "2003": 0.867, + "2004": 0.872, + "2005": 0.871, + "2006": 0.872, + "2007": 0.868, + "2008": 0.865, + "2009": 0.863, + "2010": 0.858, + "2011": 0.851, + "2012": 0.842, + "2013": 0.842, + "2014": 0.843, + "2015": 0.848, + "2016": 0.853, + "2017": 0.851, + "2018": 0.855, + "2019": 0.858, + "2020": 0.842, + "2021": 0.849 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr108", + "Region": "Comunidad de Madrid", + "1990": 0.89, + "1991": 0.895, + "1992": 0.896, + "1993": 0.894, + "1994": 0.894, + "1995": 0.9, + "1996": 0.903, + "1997": 0.909, + "1998": 0.916, + "1999": 0.923, + "2000": 0.928, + "2001": 0.932, + "2002": 0.935, + "2003": 0.937, + "2004": 0.938, + "2005": 0.941, + "2006": 0.945, + "2007": 0.946, + "2008": 0.944, + "2009": 0.943, + "2010": 0.941, + "2011": 0.939, + "2012": 0.937, + "2013": 0.936, + "2014": 0.939, + "2015": 0.945, + "2016": 0.949, + "2017": 0.953, + "2018": 0.955, + "2019": 0.956, + "2020": 0.939, + "2021": 0.947 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr105", + "Region": "Comunidad Foral de Navarra", + "1990": 0.882, + "1991": 0.886, + "1992": 0.887, + "1993": 0.885, + "1994": 0.886, + "1995": 0.892, + "1996": 0.895, + "1997": 0.9, + "1998": 0.907, + "1999": 0.914, + "2000": 0.92, + "2001": 0.921, + "2002": 0.925, + "2003": 0.927, + "2004": 0.928, + "2005": 0.931, + "2006": 0.933, + "2007": 0.933, + "2008": 0.932, + "2009": 0.928, + "2010": 0.927, + "2011": 0.924, + "2012": 0.919, + "2013": 0.92, + "2014": 0.922, + "2015": 0.927, + "2016": 0.932, + "2017": 0.935, + "2018": 0.935, + "2019": 0.939, + "2020": 0.922, + "2021": 0.929 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr113", + "Region": "Comunidad Valenciana", + "1990": 0.836, + "1991": 0.84, + "1992": 0.841, + "1993": 0.839, + "1994": 0.839, + "1995": 0.845, + "1996": 0.848, + "1997": 0.854, + "1998": 0.86, + "1999": 0.867, + "2000": 0.873, + "2001": 0.879, + "2002": 0.881, + "2003": 0.881, + "2004": 0.882, + "2005": 0.883, + "2006": 0.885, + "2007": 0.885, + "2008": 0.882, + "2009": 0.875, + "2010": 0.874, + "2011": 0.869, + "2012": 0.863, + "2013": 0.863, + "2014": 0.868, + "2015": 0.874, + "2016": 0.878, + "2017": 0.883, + "2018": 0.885, + "2019": 0.887, + "2020": 0.871, + "2021": 0.879 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr111", + "Region": "Extremadura", + "1990": 0.771, + "1991": 0.775, + "1992": 0.776, + "1993": 0.774, + "1994": 0.774, + "1995": 0.78, + "1996": 0.783, + "1997": 0.788, + "1998": 0.794, + "1999": 0.801, + "2000": 0.806, + "2001": 0.811, + "2002": 0.817, + "2003": 0.823, + "2004": 0.827, + "2005": 0.832, + "2006": 0.835, + "2007": 0.841, + "2008": 0.841, + "2009": 0.84, + "2010": 0.841, + "2011": 0.836, + "2012": 0.831, + "2013": 0.831, + "2014": 0.832, + "2015": 0.841, + "2016": 0.846, + "2017": 0.854, + "2018": 0.856, + "2019": 0.86, + "2020": 0.844, + "2021": 0.851 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr101", + "Region": "Galicia", + "1990": 0.803, + "1991": 0.808, + "1992": 0.809, + "1993": 0.807, + "1994": 0.807, + "1995": 0.813, + "1996": 0.816, + "1997": 0.821, + "1998": 0.828, + "1999": 0.834, + "2000": 0.839, + "2001": 0.845, + "2002": 0.851, + "2003": 0.856, + "2004": 0.861, + "2005": 0.866, + "2006": 0.872, + "2007": 0.877, + "2008": 0.878, + "2009": 0.875, + "2010": 0.876, + "2011": 0.871, + "2012": 0.867, + "2013": 0.868, + "2014": 0.87, + "2015": 0.878, + "2016": 0.883, + "2017": 0.886, + "2018": 0.889, + "2019": 0.892, + "2020": 0.876, + "2021": 0.883 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr114", + "Region": "Illes Balears", + "1990": 0.88, + "1991": 0.885, + "1992": 0.886, + "1993": 0.884, + "1994": 0.884, + "1995": 0.89, + "1996": 0.893, + "1997": 0.899, + "1998": 0.906, + "1999": 0.912, + "2000": 0.918, + "2001": 0.921, + "2002": 0.919, + "2003": 0.915, + "2004": 0.915, + "2005": 0.915, + "2006": 0.915, + "2007": 0.914, + "2008": 0.912, + "2009": 0.905, + "2010": 0.903, + "2011": 0.899, + "2012": 0.897, + "2013": 0.896, + "2014": 0.9, + "2015": 0.907, + "2016": 0.913, + "2017": 0.916, + "2018": 0.919, + "2019": 0.918, + "2020": 0.902, + "2021": 0.909 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr106", + "Region": "La Rioja", + "1990": 0.862, + "1991": 0.866, + "1992": 0.867, + "1993": 0.865, + "1994": 0.866, + "1995": 0.871, + "1996": 0.875, + "1997": 0.88, + "1998": 0.887, + "1999": 0.894, + "2000": 0.899, + "2001": 0.901, + "2002": 0.903, + "2003": 0.906, + "2004": 0.906, + "2005": 0.908, + "2006": 0.911, + "2007": 0.912, + "2008": 0.91, + "2009": 0.906, + "2010": 0.906, + "2011": 0.903, + "2012": 0.9, + "2013": 0.899, + "2014": 0.904, + "2015": 0.91, + "2016": 0.91, + "2017": 0.913, + "2018": 0.916, + "2019": 0.918, + "2020": 0.902, + "2021": 0.909 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr104", + "Region": "Pais Vasco", + "1990": 0.876, + "1991": 0.881, + "1992": 0.882, + "1993": 0.88, + "1994": 0.88, + "1995": 0.886, + "1996": 0.889, + "1997": 0.895, + "1998": 0.902, + "1999": 0.908, + "2000": 0.914, + "2001": 0.917, + "2002": 0.921, + "2003": 0.924, + "2004": 0.926, + "2005": 0.93, + "2006": 0.934, + "2007": 0.938, + "2008": 0.938, + "2009": 0.933, + "2010": 0.934, + "2011": 0.931, + "2012": 0.929, + "2013": 0.927, + "2014": 0.93, + "2015": 0.936, + "2016": 0.94, + "2017": 0.943, + "2018": 0.946, + "2019": 0.948, + "2020": 0.931, + "2021": 0.939 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr102", + "Region": "Principado de Asturias", + "1990": 0.816, + "1991": 0.82, + "1992": 0.821, + "1993": 0.819, + "1994": 0.819, + "1995": 0.825, + "1996": 0.828, + "1997": 0.833, + "1998": 0.84, + "1999": 0.847, + "2000": 0.852, + "2001": 0.858, + "2002": 0.862, + "2003": 0.866, + "2004": 0.869, + "2005": 0.876, + "2006": 0.882, + "2007": 0.886, + "2008": 0.886, + "2009": 0.879, + "2010": 0.88, + "2011": 0.876, + "2012": 0.871, + "2013": 0.868, + "2014": 0.869, + "2015": 0.875, + "2016": 0.878, + "2017": 0.883, + "2018": 0.886, + "2019": 0.888, + "2020": 0.872, + "2021": 0.879 + }, + { + "Country": "Spain", + "Continent": "Europe", + "ISO_Code": "ESP", + "Level": "Subnat", + "GDLCODE": "ESPr116", + "Region": "Region de Murcia", + "1990": 0.816, + "1991": 0.82, + "1992": 0.821, + "1993": 0.819, + "1994": 0.819, + "1995": 0.825, + "1996": 0.828, + "1997": 0.833, + "1998": 0.84, + "1999": 0.847, + "2000": 0.852, + "2001": 0.856, + "2002": 0.861, + "2003": 0.865, + "2004": 0.866, + "2005": 0.869, + "2006": 0.872, + "2007": 0.873, + "2008": 0.872, + "2009": 0.865, + "2010": 0.865, + "2011": 0.858, + "2012": 0.856, + "2013": 0.857, + "2014": 0.858, + "2015": 0.867, + "2016": 0.871, + "2017": 0.874, + "2018": 0.875, + "2019": 0.876, + "2020": 0.86, + "2021": 0.867 + }, + { + "Country": "Sri Lanka", + "Continent": "Asia/Pacific", + "ISO_Code": "LKA", + "Level": "National", + "GDLCODE": "LKAt", + "Region": "Total", + "1990": 0.552, + "1991": 0.557, + "1992": 0.562, + "1993": 0.571, + "1994": 0.577, + "1995": 0.583, + "1996": 0.587, + "1997": 0.596, + "1998": 0.602, + "1999": 0.607, + "2000": 0.615, + "2001": 0.611, + "2002": 0.616, + "2003": 0.625, + "2004": 0.631, + "2005": 0.639, + "2006": 0.649, + "2007": 0.658, + "2008": 0.664, + "2009": 0.67, + "2010": 0.68, + "2011": 0.692, + "2012": 0.704, + "2013": 0.707, + "2014": 0.713, + "2015": 0.718, + "2016": 0.723, + "2017": 0.726, + "2018": 0.729, + "2019": 0.732, + "2020": 0.726, + "2021": 0.73 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "National", + "GDLCODE": "SDNt", + "Region": "Total", + "1990": 0.5, + "1991": 0.497, + "1992": 0.507, + "1993": 0.514, + "1994": 0.515, + "1995": 0.521, + "1996": 0.53, + "1997": 0.542, + "1998": 0.544, + "1999": 0.543, + "2000": 0.546, + "2001": 0.553, + "2002": 0.557, + "2003": 0.563, + "2004": 0.565, + "2005": 0.57, + "2006": 0.574, + "2007": 0.58, + "2008": 0.579, + "2009": 0.574, + "2010": 0.569, + "2011": 0.579, + "2012": 0.57, + "2013": 0.567, + "2014": 0.577, + "2015": 0.576, + "2016": 0.578, + "2017": 0.572, + "2018": 0.561, + "2019": 0.554, + "2020": 0.543, + "2021": 0.54 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr105", + "Region": "Al Gedarif", + "1990": 0.464, + "1991": 0.462, + "1992": 0.472, + "1993": 0.478, + "1994": 0.479, + "1995": 0.485, + "1996": 0.493, + "1997": 0.505, + "1998": 0.507, + "1999": 0.506, + "2000": 0.509, + "2001": 0.515, + "2002": 0.518, + "2003": 0.522, + "2004": 0.524, + "2005": 0.527, + "2006": 0.53, + "2007": 0.534, + "2008": 0.533, + "2009": 0.536, + "2010": 0.538, + "2011": 0.54, + "2012": 0.525, + "2013": 0.515, + "2014": 0.518, + "2015": 0.517, + "2016": 0.519, + "2017": 0.513, + "2018": 0.503, + "2019": 0.496, + "2020": 0.486, + "2021": 0.483 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr107", + "Region": "Al Gezira", + "1990": 0.549, + "1991": 0.546, + "1992": 0.557, + "1993": 0.564, + "1994": 0.564, + "1995": 0.571, + "1996": 0.58, + "1997": 0.593, + "1998": 0.595, + "1999": 0.594, + "2000": 0.597, + "2001": 0.609, + "2002": 0.617, + "2003": 0.627, + "2004": 0.634, + "2005": 0.643, + "2006": 0.651, + "2007": 0.661, + "2008": 0.665, + "2009": 0.644, + "2010": 0.623, + "2011": 0.638, + "2012": 0.634, + "2013": 0.637, + "2014": 0.654, + "2015": 0.653, + "2016": 0.655, + "2017": 0.649, + "2018": 0.637, + "2019": 0.629, + "2020": 0.618, + "2021": 0.615 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr110", + "Region": "Blue Nile", + "1990": 0.465, + "1991": 0.463, + "1992": 0.473, + "1993": 0.479, + "1994": 0.48, + "1995": 0.486, + "1996": 0.494, + "1997": 0.506, + "1998": 0.508, + "1999": 0.507, + "2000": 0.51, + "2001": 0.515, + "2002": 0.516, + "2003": 0.519, + "2004": 0.519, + "2005": 0.522, + "2006": 0.523, + "2007": 0.526, + "2008": 0.523, + "2009": 0.519, + "2010": 0.515, + "2011": 0.536, + "2012": 0.538, + "2013": 0.546, + "2014": 0.568, + "2015": 0.566, + "2016": 0.568, + "2017": 0.563, + "2018": 0.552, + "2019": 0.544, + "2020": 0.534, + "2021": 0.531 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr104", + "Region": "Kassala", + "1990": 0.479, + "1991": 0.476, + "1992": 0.486, + "1993": 0.492, + "1994": 0.493, + "1995": 0.499, + "1996": 0.508, + "1997": 0.52, + "1998": 0.522, + "1999": 0.521, + "2000": 0.524, + "2001": 0.528, + "2002": 0.529, + "2003": 0.531, + "2004": 0.53, + "2005": 0.532, + "2006": 0.533, + "2007": 0.535, + "2008": 0.531, + "2009": 0.53, + "2010": 0.528, + "2011": 0.54, + "2012": 0.533, + "2013": 0.533, + "2014": 0.546, + "2015": 0.544, + "2016": 0.546, + "2017": 0.54, + "2018": 0.53, + "2019": 0.522, + "2020": 0.512, + "2021": 0.509 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr106", + "Region": "Khartoum", + "1990": 0.566, + "1991": 0.563, + "1992": 0.574, + "1993": 0.581, + "1994": 0.582, + "1995": 0.588, + "1996": 0.597, + "1997": 0.611, + "1998": 0.612, + "1999": 0.611, + "2000": 0.615, + "2001": 0.632, + "2002": 0.646, + "2003": 0.662, + "2004": 0.675, + "2005": 0.69, + "2006": 0.705, + "2007": 0.721, + "2008": 0.73, + "2009": 0.723, + "2010": 0.715, + "2011": 0.725, + "2012": 0.713, + "2013": 0.709, + "2014": 0.72, + "2015": 0.718, + "2016": 0.72, + "2017": 0.714, + "2018": 0.702, + "2019": 0.693, + "2020": 0.682, + "2021": 0.678 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr102", + "Region": "Nahr El Nil", + "1990": 0.551, + "1991": 0.549, + "1992": 0.559, + "1993": 0.566, + "1994": 0.567, + "1995": 0.573, + "1996": 0.582, + "1997": 0.595, + "1998": 0.597, + "1999": 0.596, + "2000": 0.6, + "2001": 0.609, + "2002": 0.614, + "2003": 0.621, + "2004": 0.626, + "2005": 0.632, + "2006": 0.638, + "2007": 0.645, + "2008": 0.647, + "2009": 0.639, + "2010": 0.632, + "2011": 0.65, + "2012": 0.649, + "2013": 0.654, + "2014": 0.674, + "2015": 0.672, + "2016": 0.674, + "2017": 0.668, + "2018": 0.656, + "2019": 0.648, + "2020": 0.637, + "2021": 0.634 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr113", + "Region": "North Darfur", + "1990": 0.468, + "1991": 0.465, + "1992": 0.475, + "1993": 0.482, + "1994": 0.482, + "1995": 0.488, + "1996": 0.497, + "1997": 0.509, + "1998": 0.511, + "1999": 0.51, + "2000": 0.513, + "2001": 0.514, + "2002": 0.512, + "2003": 0.511, + "2004": 0.508, + "2005": 0.507, + "2006": 0.505, + "2007": 0.504, + "2008": 0.498, + "2009": 0.507, + "2010": 0.516, + "2011": 0.513, + "2012": 0.493, + "2013": 0.479, + "2014": 0.477, + "2015": 0.476, + "2016": 0.477, + "2017": 0.472, + "2018": 0.462, + "2019": 0.455, + "2020": 0.445, + "2021": 0.443 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr111", + "Region": "North Kordofan", + "1990": 0.477, + "1991": 0.474, + "1992": 0.484, + "1993": 0.49, + "1994": 0.491, + "1995": 0.497, + "1996": 0.506, + "1997": 0.518, + "1998": 0.52, + "1999": 0.519, + "2000": 0.522, + "2001": 0.524, + "2002": 0.522, + "2003": 0.522, + "2004": 0.519, + "2005": 0.519, + "2006": 0.518, + "2007": 0.517, + "2008": 0.512, + "2009": 0.51, + "2010": 0.508, + "2011": 0.515, + "2012": 0.505, + "2013": 0.5, + "2014": 0.509, + "2015": 0.507, + "2016": 0.509, + "2017": 0.504, + "2018": 0.493, + "2019": 0.486, + "2020": 0.476, + "2021": 0.473 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr101", + "Region": "Northern", + "1990": 0.572, + "1991": 0.569, + "1992": 0.58, + "1993": 0.587, + "1994": 0.588, + "1995": 0.594, + "1996": 0.604, + "1997": 0.617, + "1998": 0.619, + "1999": 0.618, + "2000": 0.621, + "2001": 0.633, + "2002": 0.642, + "2003": 0.652, + "2004": 0.66, + "2005": 0.67, + "2006": 0.679, + "2007": 0.689, + "2008": 0.694, + "2009": 0.697, + "2010": 0.7, + "2011": 0.716, + "2012": 0.712, + "2013": 0.715, + "2014": 0.732, + "2015": 0.731, + "2016": 0.733, + "2017": 0.726, + "2018": 0.714, + "2019": 0.706, + "2020": 0.694, + "2021": 0.691 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr103", + "Region": "Red Sea", + "1990": 0.471, + "1991": 0.468, + "1992": 0.478, + "1993": 0.485, + "1994": 0.485, + "1995": 0.491, + "1996": 0.5, + "1997": 0.512, + "1998": 0.514, + "1999": 0.513, + "2000": 0.516, + "2001": 0.521, + "2002": 0.523, + "2003": 0.527, + "2004": 0.527, + "2005": 0.53, + "2006": 0.533, + "2007": 0.536, + "2008": 0.534, + "2009": 0.526, + "2010": 0.519, + "2011": 0.536, + "2012": 0.535, + "2013": 0.54, + "2014": 0.558, + "2015": 0.557, + "2016": 0.559, + "2017": 0.553, + "2018": 0.542, + "2019": 0.535, + "2020": 0.525, + "2021": 0.522 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr109", + "Region": "Sinnar", + "1990": 0.501, + "1991": 0.498, + "1992": 0.508, + "1993": 0.515, + "1994": 0.516, + "1995": 0.522, + "1996": 0.53, + "1997": 0.543, + "1998": 0.545, + "1999": 0.544, + "2000": 0.547, + "2001": 0.556, + "2002": 0.561, + "2003": 0.568, + "2004": 0.573, + "2005": 0.579, + "2006": 0.585, + "2007": 0.592, + "2008": 0.594, + "2009": 0.576, + "2010": 0.558, + "2011": 0.57, + "2012": 0.564, + "2013": 0.564, + "2014": 0.577, + "2015": 0.576, + "2016": 0.578, + "2017": 0.572, + "2018": 0.561, + "2019": 0.553, + "2020": 0.543, + "2021": 0.54 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr115", + "Region": "South Darfur", + "1990": 0.47, + "1991": 0.467, + "1992": 0.477, + "1993": 0.483, + "1994": 0.484, + "1995": 0.49, + "1996": 0.498, + "1997": 0.511, + "1998": 0.512, + "1999": 0.511, + "2000": 0.515, + "2001": 0.515, + "2002": 0.512, + "2003": 0.51, + "2004": 0.506, + "2005": 0.504, + "2006": 0.501, + "2007": 0.499, + "2008": 0.492, + "2009": 0.492, + "2010": 0.492, + "2011": 0.498, + "2012": 0.487, + "2013": 0.482, + "2014": 0.489, + "2015": 0.488, + "2016": 0.489, + "2017": 0.484, + "2018": 0.474, + "2019": 0.467, + "2020": 0.457, + "2021": 0.454 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr112", + "Region": "South Kordofan", + "1990": 0.458, + "1991": 0.456, + "1992": 0.466, + "1993": 0.472, + "1994": 0.473, + "1995": 0.479, + "1996": 0.487, + "1997": 0.499, + "1998": 0.501, + "1999": 0.5, + "2000": 0.503, + "2001": 0.507, + "2002": 0.509, + "2003": 0.511, + "2004": 0.511, + "2005": 0.514, + "2006": 0.515, + "2007": 0.517, + "2008": 0.515, + "2009": 0.513, + "2010": 0.511, + "2011": 0.514, + "2012": 0.499, + "2013": 0.491, + "2014": 0.495, + "2015": 0.494, + "2016": 0.496, + "2017": 0.49, + "2018": 0.48, + "2019": 0.473, + "2020": 0.463, + "2021": 0.46 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr114", + "Region": "West Darfur", + "1990": 0.448, + "1991": 0.446, + "1992": 0.455, + "1993": 0.462, + "1994": 0.462, + "1995": 0.468, + "1996": 0.476, + "1997": 0.488, + "1998": 0.49, + "1999": 0.489, + "2000": 0.492, + "2001": 0.494, + "2002": 0.492, + "2003": 0.491, + "2004": 0.488, + "2005": 0.487, + "2006": 0.485, + "2007": 0.485, + "2008": 0.479, + "2009": 0.476, + "2010": 0.473, + "2011": 0.483, + "2012": 0.476, + "2013": 0.474, + "2014": 0.485, + "2015": 0.484, + "2016": 0.485, + "2017": 0.48, + "2018": 0.47, + "2019": 0.463, + "2020": 0.453, + "2021": 0.45 + }, + { + "Country": "Sudan", + "Continent": "Africa", + "ISO_Code": "SDN", + "Level": "Subnat", + "GDLCODE": "SDNr108", + "Region": "White Nile", + "1990": 0.499, + "1991": 0.496, + "1992": 0.506, + "1993": 0.513, + "1994": 0.514, + "1995": 0.52, + "1996": 0.528, + "1997": 0.541, + "1998": 0.542, + "1999": 0.541, + "2000": 0.545, + "2001": 0.553, + "2002": 0.559, + "2003": 0.565, + "2004": 0.57, + "2005": 0.576, + "2006": 0.582, + "2007": 0.588, + "2008": 0.589, + "2009": 0.586, + "2010": 0.582, + "2011": 0.585, + "2012": 0.569, + "2013": 0.56, + "2014": 0.565, + "2015": 0.563, + "2016": 0.565, + "2017": 0.559, + "2018": 0.549, + "2019": 0.541, + "2020": 0.531, + "2021": 0.528 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "National", + "GDLCODE": "SURt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.738, + "2005": 0.744, + "2006": 0.751, + "2007": 0.76, + "2008": 0.765, + "2009": 0.767, + "2010": 0.769, + "2011": 0.77, + "2012": 0.776, + "2013": 0.78, + "2014": 0.781, + "2015": 0.786, + "2016": 0.778, + "2017": 0.769, + "2018": 0.777, + "2019": 0.778, + "2020": 0.739, + "2021": 0.731 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr105", + "Region": "Brokopondo and Sipaliwini", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.479, + "2005": 0.484, + "2006": 0.49, + "2007": 0.513, + "2008": 0.532, + "2009": 0.55, + "2010": 0.567, + "2011": 0.575, + "2012": 0.588, + "2013": 0.599, + "2014": 0.607, + "2015": 0.619, + "2016": 0.619, + "2017": 0.619, + "2018": 0.634, + "2019": 0.634, + "2020": 0.599, + "2021": 0.592 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr104", + "Region": "Commewijne and Marowijne", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.728, + "2005": 0.734, + "2006": 0.74, + "2007": 0.743, + "2008": 0.742, + "2009": 0.738, + "2010": 0.733, + "2011": 0.736, + "2012": 0.744, + "2013": 0.75, + "2014": 0.753, + "2015": 0.76, + "2016": 0.753, + "2017": 0.747, + "2018": 0.756, + "2019": 0.757, + "2020": 0.718, + "2021": 0.711 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr103", + "Region": "Nickerie, Coronie and Saramacca", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.765, + "2005": 0.772, + "2006": 0.778, + "2007": 0.787, + "2008": 0.792, + "2009": 0.793, + "2010": 0.795, + "2011": 0.794, + "2012": 0.798, + "2013": 0.801, + "2014": 0.799, + "2015": 0.802, + "2016": 0.792, + "2017": 0.781, + "2018": 0.787, + "2019": 0.788, + "2020": 0.748, + "2021": 0.741 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr101", + "Region": "Paramaribo", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.791, + "2005": 0.798, + "2006": 0.804, + "2007": 0.81, + "2008": 0.811, + "2009": 0.809, + "2010": 0.807, + "2011": 0.806, + "2012": 0.81, + "2013": 0.813, + "2014": 0.812, + "2015": 0.815, + "2016": 0.805, + "2017": 0.794, + "2018": 0.8, + "2019": 0.8, + "2020": 0.761, + "2021": 0.753 + }, + { + "Country": "Suriname", + "Continent": "America", + "ISO_Code": "SUR", + "Level": "Subnat", + "GDLCODE": "SURr102", + "Region": "Wanica and Para", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": 0.759, + "2005": 0.766, + "2006": 0.772, + "2007": 0.78, + "2008": 0.783, + "2009": 0.783, + "2010": 0.783, + "2011": 0.784, + "2012": 0.789, + "2013": 0.794, + "2014": 0.794, + "2015": 0.799, + "2016": 0.79, + "2017": 0.781, + "2018": 0.789, + "2019": 0.789, + "2020": 0.75, + "2021": 0.742 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "National", + "GDLCODE": "SWEt", + "Region": "Total", + "1990": 0.886, + "1991": 0.883, + "1992": 0.878, + "1993": 0.871, + "1994": 0.879, + "1995": 0.886, + "1996": 0.887, + "1997": 0.892, + "1998": 0.898, + "1999": 0.906, + "2000": 0.912, + "2001": 0.913, + "2002": 0.914, + "2003": 0.919, + "2004": 0.922, + "2005": 0.926, + "2006": 0.934, + "2007": 0.94, + "2008": 0.938, + "2009": 0.929, + "2010": 0.937, + "2011": 0.939, + "2012": 0.937, + "2013": 0.937, + "2014": 0.94, + "2015": 0.943, + "2016": 0.944, + "2017": 0.947, + "2018": 0.948, + "2019": 0.951, + "2020": 0.946, + "2021": 0.952 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr107", + "Region": "Mellersta Norrland", + "1990": 0.869, + "1991": 0.865, + "1992": 0.861, + "1993": 0.854, + "1994": 0.861, + "1995": 0.868, + "1996": 0.87, + "1997": 0.874, + "1998": 0.88, + "1999": 0.888, + "2000": 0.894, + "2001": 0.905, + "2002": 0.901, + "2003": 0.902, + "2004": 0.906, + "2005": 0.911, + "2006": 0.916, + "2007": 0.914, + "2008": 0.92, + "2009": 0.914, + "2010": 0.927, + "2011": 0.922, + "2012": 0.92, + "2013": 0.918, + "2014": 0.919, + "2015": 0.918, + "2016": 0.918, + "2017": 0.922, + "2018": 0.924, + "2019": 0.927, + "2020": 0.922, + "2021": 0.928 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr106", + "Region": "Norra Mellansverige", + "1990": 0.859, + "1991": 0.856, + "1992": 0.851, + "1993": 0.844, + "1994": 0.852, + "1995": 0.859, + "1996": 0.86, + "1997": 0.864, + "1998": 0.871, + "1999": 0.878, + "2000": 0.884, + "2001": 0.882, + "2002": 0.886, + "2003": 0.891, + "2004": 0.894, + "2005": 0.898, + "2006": 0.906, + "2007": 0.908, + "2008": 0.906, + "2009": 0.894, + "2010": 0.906, + "2011": 0.907, + "2012": 0.907, + "2013": 0.906, + "2014": 0.907, + "2015": 0.907, + "2016": 0.91, + "2017": 0.912, + "2018": 0.915, + "2019": 0.915, + "2020": 0.91, + "2021": 0.916 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr102", + "Region": "Ostra Mellansverige", + "1990": 0.863, + "1991": 0.859, + "1992": 0.855, + "1993": 0.848, + "1994": 0.855, + "1995": 0.862, + "1996": 0.864, + "1997": 0.868, + "1998": 0.874, + "1999": 0.882, + "2000": 0.888, + "2001": 0.89, + "2002": 0.892, + "2003": 0.896, + "2004": 0.898, + "2005": 0.902, + "2006": 0.911, + "2007": 0.916, + "2008": 0.914, + "2009": 0.904, + "2010": 0.913, + "2011": 0.916, + "2012": 0.916, + "2013": 0.915, + "2014": 0.916, + "2015": 0.918, + "2016": 0.92, + "2017": 0.924, + "2018": 0.925, + "2019": 0.925, + "2020": 0.92, + "2021": 0.925 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr108", + "Region": "Ovre Norrland", + "1990": 0.86, + "1991": 0.857, + "1992": 0.852, + "1993": 0.846, + "1994": 0.853, + "1995": 0.86, + "1996": 0.862, + "1997": 0.865, + "1998": 0.872, + "1999": 0.879, + "2000": 0.885, + "2001": 0.891, + "2002": 0.892, + "2003": 0.898, + "2004": 0.906, + "2005": 0.911, + "2006": 0.924, + "2007": 0.922, + "2008": 0.928, + "2009": 0.91, + "2010": 0.935, + "2011": 0.937, + "2012": 0.933, + "2013": 0.931, + "2014": 0.928, + "2015": 0.927, + "2016": 0.928, + "2017": 0.937, + "2018": 0.941, + "2019": 0.946, + "2020": 0.941, + "2021": 0.947 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr103", + "Region": "Smaland med oarna", + "1990": 0.867, + "1991": 0.864, + "1992": 0.859, + "1993": 0.852, + "1994": 0.86, + "1995": 0.867, + "1996": 0.868, + "1997": 0.872, + "1998": 0.879, + "1999": 0.886, + "2000": 0.892, + "2001": 0.893, + "2002": 0.895, + "2003": 0.9, + "2004": 0.903, + "2005": 0.901, + "2006": 0.914, + "2007": 0.919, + "2008": 0.92, + "2009": 0.901, + "2010": 0.912, + "2011": 0.916, + "2012": 0.913, + "2013": 0.914, + "2014": 0.915, + "2015": 0.918, + "2016": 0.921, + "2017": 0.925, + "2018": 0.924, + "2019": 0.925, + "2020": 0.92, + "2021": 0.925 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr101", + "Region": "Stockholm", + "1990": 0.94, + "1991": 0.936, + "1992": 0.931, + "1993": 0.924, + "1994": 0.932, + "1995": 0.939, + "1996": 0.941, + "1997": 0.945, + "1998": 0.952, + "1999": 0.96, + "2000": 0.966, + "2001": 0.964, + "2002": 0.965, + "2003": 0.968, + "2004": 0.974, + "2005": 0.979, + "2006": 0.984, + "2007": 0.991, + "2008": 0.989, + "2009": 0.987, + "2010": 0.988, + "2011": 0.99, + "2012": 0.987, + "2013": 0.988, + "2014": 0.991, + "2015": 0.996, + "2016": 0.995, + "2017": 0.995, + "2018": 0.996, + "2019": 1, + "2020": 0.997, + "2021": 1 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr104", + "Region": "Sydsverige", + "1990": 0.873, + "1991": 0.869, + "1992": 0.865, + "1993": 0.858, + "1994": 0.865, + "1995": 0.873, + "1996": 0.874, + "1997": 0.878, + "1998": 0.885, + "1999": 0.892, + "2000": 0.898, + "2001": 0.897, + "2002": 0.9, + "2003": 0.903, + "2004": 0.905, + "2005": 0.909, + "2006": 0.916, + "2007": 0.928, + "2008": 0.919, + "2009": 0.906, + "2010": 0.916, + "2011": 0.915, + "2012": 0.913, + "2013": 0.915, + "2014": 0.917, + "2015": 0.92, + "2016": 0.92, + "2017": 0.925, + "2018": 0.924, + "2019": 0.927, + "2020": 0.921, + "2021": 0.927 + }, + { + "Country": "Sweden", + "Continent": "Europe", + "ISO_Code": "SWE", + "Level": "Subnat", + "GDLCODE": "SWEr105", + "Region": "Vastsverige", + "1990": 0.879, + "1991": 0.876, + "1992": 0.871, + "1993": 0.864, + "1994": 0.872, + "1995": 0.879, + "1996": 0.881, + "1997": 0.885, + "1998": 0.891, + "1999": 0.899, + "2000": 0.905, + "2001": 0.908, + "2002": 0.907, + "2003": 0.916, + "2004": 0.915, + "2005": 0.919, + "2006": 0.929, + "2007": 0.933, + "2008": 0.934, + "2009": 0.922, + "2010": 0.929, + "2011": 0.931, + "2012": 0.929, + "2013": 0.93, + "2014": 0.933, + "2015": 0.939, + "2016": 0.941, + "2017": 0.945, + "2018": 0.943, + "2019": 0.946, + "2020": 0.94, + "2021": 0.946 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "National", + "GDLCODE": "CHEt", + "Region": "Total", + "1990": 0.964, + "1991": 0.961, + "1992": 0.959, + "1993": 0.958, + "1994": 0.957, + "1995": 0.958, + "1996": 0.958, + "1997": 0.962, + "1998": 0.967, + "1999": 0.971, + "2000": 0.976, + "2001": 0.974, + "2002": 0.972, + "2003": 0.978, + "2004": 0.98, + "2005": 0.985, + "2006": 0.988, + "2007": 0.983, + "2008": 0.974, + "2009": 0.982, + "2010": 0.992, + "2011": 0.987, + "2012": 0.989, + "2013": 0.989, + "2014": 0.987, + "2015": 0.99, + "2016": 0.987, + "2017": 0.986, + "2018": 0.985, + "2019": 0.986, + "2020": 0.978, + "2021": 0.983 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr106", + "Region": "Central Switzerland", + "1990": 0.953, + "1991": 0.95, + "1992": 0.948, + "1993": 0.947, + "1994": 0.946, + "1995": 0.946, + "1996": 0.947, + "1997": 0.951, + "1998": 0.956, + "1999": 0.959, + "2000": 0.964, + "2001": 0.962, + "2002": 0.961, + "2003": 0.966, + "2004": 0.968, + "2005": 0.974, + "2006": 0.977, + "2007": 0.971, + "2008": 0.962, + "2009": 0.972, + "2010": 0.988, + "2011": 0.981, + "2012": 0.984, + "2013": 0.986, + "2014": 0.983, + "2015": 0.988, + "2016": 0.985, + "2017": 0.984, + "2018": 0.983, + "2019": 0.984, + "2020": 0.976, + "2021": 0.981 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr105", + "Region": "Eastern Switzerland", + "1990": 0.94, + "1991": 0.938, + "1992": 0.936, + "1993": 0.934, + "1994": 0.934, + "1995": 0.934, + "1996": 0.934, + "1997": 0.939, + "1998": 0.944, + "1999": 0.947, + "2000": 0.952, + "2001": 0.95, + "2002": 0.949, + "2003": 0.954, + "2004": 0.956, + "2005": 0.961, + "2006": 0.965, + "2007": 0.959, + "2008": 0.95, + "2009": 0.958, + "2010": 0.971, + "2011": 0.967, + "2012": 0.969, + "2013": 0.969, + "2014": 0.968, + "2015": 0.971, + "2016": 0.968, + "2017": 0.966, + "2018": 0.965, + "2019": 0.967, + "2020": 0.959, + "2021": 0.963 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr102", + "Region": "Espace Mittelland", + "1990": 0.949, + "1991": 0.946, + "1992": 0.944, + "1993": 0.943, + "1994": 0.942, + "1995": 0.943, + "1996": 0.943, + "1997": 0.947, + "1998": 0.952, + "1999": 0.955, + "2000": 0.961, + "2001": 0.958, + "2002": 0.957, + "2003": 0.962, + "2004": 0.964, + "2005": 0.97, + "2006": 0.973, + "2007": 0.967, + "2008": 0.958, + "2009": 0.966, + "2010": 0.977, + "2011": 0.973, + "2012": 0.975, + "2013": 0.975, + "2014": 0.975, + "2015": 0.978, + "2016": 0.975, + "2017": 0.974, + "2018": 0.973, + "2019": 0.974, + "2020": 0.966, + "2021": 0.971 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr101", + "Region": "Lake Geneva region", + "1990": 0.959, + "1991": 0.957, + "1992": 0.954, + "1993": 0.953, + "1994": 0.952, + "1995": 0.953, + "1996": 0.953, + "1997": 0.957, + "1998": 0.963, + "1999": 0.966, + "2000": 0.971, + "2001": 0.969, + "2002": 0.967, + "2003": 0.973, + "2004": 0.975, + "2005": 0.98, + "2006": 0.984, + "2007": 0.978, + "2008": 0.969, + "2009": 0.978, + "2010": 0.988, + "2011": 0.981, + "2012": 0.983, + "2013": 0.982, + "2014": 0.98, + "2015": 0.982, + "2016": 0.979, + "2017": 0.977, + "2018": 0.976, + "2019": 0.977, + "2020": 0.97, + "2021": 0.974 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr103", + "Region": "Northwestern Switzerland", + "1990": 0.972, + "1991": 0.97, + "1992": 0.967, + "1993": 0.966, + "1994": 0.965, + "1995": 0.966, + "1996": 0.966, + "1997": 0.97, + "1998": 0.976, + "1999": 0.979, + "2000": 0.984, + "2001": 0.982, + "2002": 0.981, + "2003": 0.986, + "2004": 0.988, + "2005": 0.994, + "2006": 0.997, + "2007": 0.991, + "2008": 0.982, + "2009": 0.991, + "2010": 0.999, + "2011": 0.994, + "2012": 0.997, + "2013": 0.995, + "2014": 0.994, + "2015": 0.996, + "2016": 0.993, + "2017": 0.991, + "2018": 0.99, + "2019": 0.991, + "2020": 0.984, + "2021": 0.988 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr107", + "Region": "Ticino", + "1990": 0.964, + "1991": 0.961, + "1992": 0.959, + "1993": 0.958, + "1994": 0.957, + "1995": 0.958, + "1996": 0.958, + "1997": 0.962, + "1998": 0.967, + "1999": 0.971, + "2000": 0.976, + "2001": 0.974, + "2002": 0.972, + "2003": 0.978, + "2004": 0.98, + "2005": 0.985, + "2006": 0.988, + "2007": 0.983, + "2008": 0.974, + "2009": 0.982, + "2010": 0.992, + "2011": 0.99, + "2012": 0.993, + "2013": 0.994, + "2014": 0.994, + "2015": 0.997, + "2016": 0.994, + "2017": 0.992, + "2018": 0.991, + "2019": 0.992, + "2020": 0.985, + "2021": 0.989 + }, + { + "Country": "Switzerland", + "Continent": "Europe", + "ISO_Code": "CHE", + "Level": "Subnat", + "GDLCODE": "CHEr104", + "Region": "Zurich", + "1990": 1, + "1991": 0.998, + "1992": 0.996, + "1993": 0.995, + "1994": 0.994, + "1995": 0.994, + "1996": 0.995, + "1997": 0.999, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "National", + "GDLCODE": "SYRt", + "Region": "Total", + "1990": 0.565, + "1991": 0.571, + "1992": 0.587, + "1993": 0.59, + "1994": 0.603, + "1995": 0.609, + "1996": 0.616, + "1997": 0.622, + "1998": 0.625, + "1999": 0.616, + "2000": 0.611, + "2001": 0.614, + "2002": 0.623, + "2003": 0.621, + "2004": 0.628, + "2005": 0.632, + "2006": 0.636, + "2007": 0.64, + "2008": 0.64, + "2009": 0.645, + "2010": 0.649, + "2011": 0.739, + "2012": 0.674, + "2013": 0.603, + "2014": 0.576, + "2015": 0.584, + "2016": 0.587, + "2017": 0.592, + "2018": 0.595, + "2019": 0.588, + "2020": 0.565, + "2021": 0.564 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr111", + "Region": "Al Hasaka", + "1990": 0.506, + "1991": 0.512, + "1992": 0.527, + "1993": 0.53, + "1994": 0.542, + "1995": 0.548, + "1996": 0.554, + "1997": 0.561, + "1998": 0.563, + "1999": 0.554, + "2000": 0.55, + "2001": 0.553, + "2002": 0.561, + "2003": 0.56, + "2004": 0.567, + "2005": 0.57, + "2006": 0.574, + "2007": 0.578, + "2008": 0.578, + "2009": 0.583, + "2010": 0.586, + "2011": 0.672, + "2012": 0.61, + "2013": 0.542, + "2014": 0.516, + "2015": 0.524, + "2016": 0.527, + "2017": 0.532, + "2018": 0.535, + "2019": 0.528, + "2020": 0.506, + "2021": 0.505 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr106", + "Region": "Al Latakia", + "1990": 0.574, + "1991": 0.581, + "1992": 0.597, + "1993": 0.6, + "1994": 0.613, + "1995": 0.619, + "1996": 0.626, + "1997": 0.632, + "1998": 0.635, + "1999": 0.626, + "2000": 0.621, + "2001": 0.624, + "2002": 0.633, + "2003": 0.632, + "2004": 0.639, + "2005": 0.642, + "2006": 0.647, + "2007": 0.65, + "2008": 0.651, + "2009": 0.656, + "2010": 0.659, + "2011": 0.75, + "2012": 0.685, + "2013": 0.613, + "2014": 0.585, + "2015": 0.594, + "2016": 0.597, + "2017": 0.602, + "2018": 0.605, + "2019": 0.598, + "2020": 0.575, + "2021": 0.574 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr114", + "Region": "Al Qunitara - Quneitra", + "1990": 0.559, + "1991": 0.566, + "1992": 0.581, + "1993": 0.585, + "1994": 0.597, + "1995": 0.603, + "1996": 0.61, + "1997": 0.617, + "1998": 0.619, + "1999": 0.61, + "2000": 0.605, + "2001": 0.609, + "2002": 0.617, + "2003": 0.616, + "2004": 0.623, + "2005": 0.626, + "2006": 0.631, + "2007": 0.634, + "2008": 0.634, + "2009": 0.64, + "2010": 0.643, + "2011": 0.732, + "2012": 0.668, + "2013": 0.597, + "2014": 0.57, + "2015": 0.579, + "2016": 0.581, + "2017": 0.586, + "2018": 0.59, + "2019": 0.583, + "2020": 0.56, + "2021": 0.559 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr109", + "Region": "Al Raka-Raqqa", + "1990": 0.515, + "1991": 0.522, + "1992": 0.536, + "1993": 0.54, + "1994": 0.552, + "1995": 0.558, + "1996": 0.564, + "1997": 0.571, + "1998": 0.573, + "1999": 0.564, + "2000": 0.56, + "2001": 0.563, + "2002": 0.571, + "2003": 0.57, + "2004": 0.577, + "2005": 0.58, + "2006": 0.584, + "2007": 0.588, + "2008": 0.588, + "2009": 0.593, + "2010": 0.596, + "2011": 0.682, + "2012": 0.62, + "2013": 0.552, + "2014": 0.526, + "2015": 0.534, + "2016": 0.536, + "2017": 0.541, + "2018": 0.544, + "2019": 0.538, + "2020": 0.516, + "2021": 0.515 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr112", + "Region": "Al Swida - Sweida", + "1990": 0.575, + "1991": 0.581, + "1992": 0.597, + "1993": 0.601, + "1994": 0.613, + "1995": 0.62, + "1996": 0.626, + "1997": 0.633, + "1998": 0.635, + "1999": 0.626, + "2000": 0.621, + "2001": 0.625, + "2002": 0.633, + "2003": 0.632, + "2004": 0.639, + "2005": 0.643, + "2006": 0.647, + "2007": 0.651, + "2008": 0.651, + "2009": 0.656, + "2010": 0.659, + "2011": 0.75, + "2012": 0.685, + "2013": 0.613, + "2014": 0.586, + "2015": 0.595, + "2016": 0.597, + "2017": 0.602, + "2018": 0.605, + "2019": 0.599, + "2020": 0.575, + "2021": 0.574 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr101", + "Region": "Damascus", + "1990": 0.598, + "1991": 0.605, + "1992": 0.621, + "1993": 0.625, + "1994": 0.637, + "1995": 0.644, + "1996": 0.65, + "1997": 0.657, + "1998": 0.66, + "1999": 0.65, + "2000": 0.645, + "2001": 0.649, + "2002": 0.658, + "2003": 0.656, + "2004": 0.664, + "2005": 0.667, + "2006": 0.672, + "2007": 0.675, + "2008": 0.675, + "2009": 0.681, + "2010": 0.684, + "2011": 0.777, + "2012": 0.71, + "2013": 0.637, + "2014": 0.609, + "2015": 0.618, + "2016": 0.621, + "2017": 0.626, + "2018": 0.629, + "2019": 0.622, + "2020": 0.599, + "2021": 0.598 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr113", + "Region": "Daraa", + "1990": 0.567, + "1991": 0.574, + "1992": 0.59, + "1993": 0.593, + "1994": 0.606, + "1995": 0.612, + "1996": 0.619, + "1997": 0.625, + "1998": 0.628, + "1999": 0.619, + "2000": 0.614, + "2001": 0.617, + "2002": 0.625, + "2003": 0.624, + "2004": 0.631, + "2005": 0.635, + "2006": 0.639, + "2007": 0.643, + "2008": 0.643, + "2009": 0.648, + "2010": 0.652, + "2011": 0.742, + "2012": 0.677, + "2013": 0.606, + "2014": 0.578, + "2015": 0.587, + "2016": 0.589, + "2017": 0.595, + "2018": 0.598, + "2019": 0.591, + "2020": 0.568, + "2021": 0.567 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr110", + "Region": "Der El Zour - Deir Ezzor", + "1990": 0.544, + "1991": 0.551, + "1992": 0.566, + "1993": 0.57, + "1994": 0.582, + "1995": 0.588, + "1996": 0.594, + "1997": 0.601, + "1998": 0.603, + "1999": 0.594, + "2000": 0.59, + "2001": 0.593, + "2002": 0.601, + "2003": 0.6, + "2004": 0.607, + "2005": 0.61, + "2006": 0.615, + "2007": 0.618, + "2008": 0.618, + "2009": 0.624, + "2010": 0.627, + "2011": 0.715, + "2012": 0.652, + "2013": 0.582, + "2014": 0.555, + "2015": 0.563, + "2016": 0.566, + "2017": 0.571, + "2018": 0.574, + "2019": 0.567, + "2020": 0.545, + "2021": 0.544 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr107", + "Region": "Edlab Idleb", + "1990": 0.56, + "1991": 0.567, + "1992": 0.582, + "1993": 0.586, + "1994": 0.598, + "1995": 0.604, + "1996": 0.611, + "1997": 0.617, + "1998": 0.62, + "1999": 0.611, + "2000": 0.606, + "2001": 0.609, + "2002": 0.618, + "2003": 0.616, + "2004": 0.624, + "2005": 0.627, + "2006": 0.631, + "2007": 0.635, + "2008": 0.635, + "2009": 0.64, + "2010": 0.644, + "2011": 0.733, + "2012": 0.669, + "2013": 0.598, + "2014": 0.571, + "2015": 0.579, + "2016": 0.582, + "2017": 0.587, + "2018": 0.59, + "2019": 0.584, + "2020": 0.56, + "2021": 0.56 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr108", + "Region": "Halab - Aleppo", + "1990": 0.565, + "1991": 0.572, + "1992": 0.588, + "1993": 0.591, + "1994": 0.604, + "1995": 0.61, + "1996": 0.617, + "1997": 0.623, + "1998": 0.626, + "1999": 0.617, + "2000": 0.612, + "2001": 0.615, + "2002": 0.623, + "2003": 0.622, + "2004": 0.629, + "2005": 0.633, + "2006": 0.637, + "2007": 0.641, + "2008": 0.641, + "2009": 0.646, + "2010": 0.649, + "2011": 0.739, + "2012": 0.675, + "2013": 0.604, + "2014": 0.576, + "2015": 0.585, + "2016": 0.587, + "2017": 0.593, + "2018": 0.596, + "2019": 0.589, + "2020": 0.566, + "2021": 0.565 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr104", + "Region": "Hamaa", + "1990": 0.563, + "1991": 0.57, + "1992": 0.586, + "1993": 0.589, + "1994": 0.602, + "1995": 0.608, + "1996": 0.615, + "1997": 0.621, + "1998": 0.624, + "1999": 0.615, + "2000": 0.61, + "2001": 0.613, + "2002": 0.621, + "2003": 0.62, + "2004": 0.627, + "2005": 0.631, + "2006": 0.635, + "2007": 0.639, + "2008": 0.639, + "2009": 0.644, + "2010": 0.647, + "2011": 0.737, + "2012": 0.673, + "2013": 0.602, + "2014": 0.574, + "2015": 0.583, + "2016": 0.585, + "2017": 0.591, + "2018": 0.594, + "2019": 0.587, + "2020": 0.564, + "2021": 0.563 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr103", + "Region": "Homs", + "1990": 0.577, + "1991": 0.584, + "1992": 0.599, + "1993": 0.603, + "1994": 0.616, + "1995": 0.622, + "1996": 0.629, + "1997": 0.635, + "1998": 0.638, + "1999": 0.629, + "2000": 0.624, + "2001": 0.627, + "2002": 0.636, + "2003": 0.634, + "2004": 0.642, + "2005": 0.645, + "2006": 0.65, + "2007": 0.653, + "2008": 0.653, + "2009": 0.659, + "2010": 0.662, + "2011": 0.753, + "2012": 0.687, + "2013": 0.616, + "2014": 0.588, + "2015": 0.597, + "2016": 0.599, + "2017": 0.605, + "2018": 0.608, + "2019": 0.601, + "2020": 0.578, + "2021": 0.577 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr102", + "Region": "Rural Damascus", + "1990": 0.567, + "1991": 0.574, + "1992": 0.589, + "1993": 0.593, + "1994": 0.606, + "1995": 0.612, + "1996": 0.618, + "1997": 0.625, + "1998": 0.627, + "1999": 0.618, + "2000": 0.613, + "2001": 0.617, + "2002": 0.625, + "2003": 0.624, + "2004": 0.631, + "2005": 0.635, + "2006": 0.639, + "2007": 0.643, + "2008": 0.643, + "2009": 0.648, + "2010": 0.651, + "2011": 0.741, + "2012": 0.677, + "2013": 0.605, + "2014": 0.578, + "2015": 0.587, + "2016": 0.589, + "2017": 0.594, + "2018": 0.598, + "2019": 0.591, + "2020": 0.568, + "2021": 0.567 + }, + { + "Country": "Syria", + "Continent": "Asia/Pacific", + "ISO_Code": "SYR", + "Level": "Subnat", + "GDLCODE": "SYRr105", + "Region": "Tartous", + "1990": 0.572, + "1991": 0.579, + "1992": 0.594, + "1993": 0.598, + "1994": 0.611, + "1995": 0.617, + "1996": 0.624, + "1997": 0.63, + "1998": 0.633, + "1999": 0.624, + "2000": 0.619, + "2001": 0.622, + "2002": 0.63, + "2003": 0.629, + "2004": 0.636, + "2005": 0.64, + "2006": 0.644, + "2007": 0.648, + "2008": 0.648, + "2009": 0.653, + "2010": 0.657, + "2011": 0.747, + "2012": 0.682, + "2013": 0.611, + "2014": 0.583, + "2015": 0.592, + "2016": 0.594, + "2017": 0.599, + "2018": 0.603, + "2019": 0.596, + "2020": 0.573, + "2021": 0.572 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "National", + "GDLCODE": "TJKt", + "Region": "Total", + "1990": 0.598, + "1991": 0.585, + "1992": 0.529, + "1993": 0.498, + "1994": 0.457, + "1995": 0.433, + "1996": 0.397, + "1997": 0.405, + "1998": 0.411, + "1999": 0.414, + "2000": 0.419, + "2001": 0.429, + "2002": 0.437, + "2003": 0.455, + "2004": 0.476, + "2005": 0.482, + "2006": 0.497, + "2007": 0.501, + "2008": 0.522, + "2009": 0.502, + "2010": 0.512, + "2011": 0.505, + "2012": 0.518, + "2013": 0.542, + "2014": 0.538, + "2015": 0.536, + "2016": 0.539, + "2017": 0.547, + "2018": 0.555, + "2019": 0.563, + "2020": 0.566, + "2021": 0.577 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr104", + "Region": "DRS", + "1990": 0.577, + "1991": 0.564, + "1992": 0.51, + "1993": 0.479, + "1994": 0.438, + "1995": 0.415, + "1996": 0.38, + "1997": 0.387, + "1998": 0.393, + "1999": 0.396, + "2000": 0.401, + "2001": 0.412, + "2002": 0.42, + "2003": 0.44, + "2004": 0.461, + "2005": 0.467, + "2006": 0.484, + "2007": 0.49, + "2008": 0.514, + "2009": 0.496, + "2010": 0.507, + "2011": 0.502, + "2012": 0.517, + "2013": 0.541, + "2014": 0.538, + "2015": 0.536, + "2016": 0.54, + "2017": 0.548, + "2018": 0.557, + "2019": 0.564, + "2020": 0.568, + "2021": 0.578 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr101", + "Region": "Duchanbe", + "1990": 0.741, + "1991": 0.727, + "1992": 0.665, + "1993": 0.63, + "1994": 0.585, + "1995": 0.558, + "1996": 0.518, + "1997": 0.527, + "1998": 0.533, + "1999": 0.537, + "2000": 0.543, + "2001": 0.554, + "2002": 0.564, + "2003": 0.585, + "2004": 0.609, + "2005": 0.616, + "2006": 0.625, + "2007": 0.623, + "2008": 0.639, + "2009": 0.61, + "2010": 0.614, + "2011": 0.6, + "2012": 0.607, + "2013": 0.629, + "2014": 0.623, + "2015": 0.617, + "2016": 0.617, + "2017": 0.623, + "2018": 0.632, + "2019": 0.64, + "2020": 0.643, + "2021": 0.655 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr105", + "Region": "GBAO", + "1990": 0.528, + "1991": 0.516, + "1992": 0.463, + "1993": 0.434, + "1994": 0.395, + "1995": 0.372, + "1996": 0.338, + "1997": 0.346, + "1998": 0.351, + "1999": 0.354, + "2000": 0.359, + "2001": 0.376, + "2002": 0.392, + "2003": 0.417, + "2004": 0.446, + "2005": 0.46, + "2006": 0.475, + "2007": 0.479, + "2008": 0.501, + "2009": 0.482, + "2010": 0.491, + "2011": 0.485, + "2012": 0.499, + "2013": 0.523, + "2014": 0.521, + "2015": 0.52, + "2016": 0.524, + "2017": 0.532, + "2018": 0.541, + "2019": 0.549, + "2020": 0.552, + "2021": 0.562 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr102", + "Region": "Khatlon", + "1990": 0.573, + "1991": 0.56, + "1992": 0.506, + "1993": 0.475, + "1994": 0.434, + "1995": 0.411, + "1996": 0.376, + "1997": 0.384, + "1998": 0.389, + "1999": 0.392, + "2000": 0.398, + "2001": 0.405, + "2002": 0.411, + "2003": 0.428, + "2004": 0.446, + "2005": 0.45, + "2006": 0.465, + "2007": 0.47, + "2008": 0.491, + "2009": 0.472, + "2010": 0.482, + "2011": 0.476, + "2012": 0.489, + "2013": 0.514, + "2014": 0.513, + "2015": 0.513, + "2016": 0.517, + "2017": 0.527, + "2018": 0.536, + "2019": 0.543, + "2020": 0.546, + "2021": 0.557 + }, + { + "Country": "Tajikistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TJK", + "Level": "Subnat", + "GDLCODE": "TJKr103", + "Region": "Sughd (formerly Leninabad)", + "1990": 0.609, + "1991": 0.596, + "1992": 0.54, + "1993": 0.509, + "1994": 0.467, + "1995": 0.443, + "1996": 0.407, + "1997": 0.415, + "1998": 0.421, + "1999": 0.424, + "2000": 0.429, + "2001": 0.436, + "2002": 0.441, + "2003": 0.457, + "2004": 0.475, + "2005": 0.477, + "2006": 0.493, + "2007": 0.498, + "2008": 0.519, + "2009": 0.5, + "2010": 0.51, + "2011": 0.503, + "2012": 0.517, + "2013": 0.539, + "2014": 0.535, + "2015": 0.531, + "2016": 0.533, + "2017": 0.54, + "2018": 0.548, + "2019": 0.556, + "2020": 0.559, + "2021": 0.569 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "National", + "GDLCODE": "TZAt", + "Region": "Total", + "1990": 0.392, + "1991": 0.391, + "1992": 0.387, + "1993": 0.384, + "1994": 0.382, + "1995": 0.384, + "1996": 0.388, + "1997": 0.389, + "1998": 0.392, + "1999": 0.396, + "2000": 0.398, + "2001": 0.401, + "2002": 0.41, + "2003": 0.415, + "2004": 0.421, + "2005": 0.427, + "2006": 0.435, + "2007": 0.439, + "2008": 0.443, + "2009": 0.447, + "2010": 0.45, + "2011": 0.457, + "2012": 0.46, + "2013": 0.465, + "2014": 0.47, + "2015": 0.474, + "2016": 0.479, + "2017": 0.485, + "2018": 0.49, + "2019": 0.497, + "2020": 0.493, + "2021": 0.496 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr202", + "Region": " Arusha, Manyara", + "1990": 0.39, + "1991": 0.389, + "1992": 0.384, + "1993": 0.377, + "1994": 0.371, + "1995": 0.369, + "1996": 0.369, + "1997": 0.376, + "1998": 0.384, + "1999": 0.394, + "2000": 0.396, + "2001": 0.398, + "2002": 0.406, + "2003": 0.409, + "2004": 0.415, + "2005": 0.42, + "2006": 0.427, + "2007": 0.429, + "2008": 0.433, + "2009": 0.435, + "2010": 0.438, + "2011": 0.446, + "2012": 0.451, + "2013": 0.458, + "2014": 0.464, + "2015": 0.47, + "2016": 0.475, + "2017": 0.48, + "2018": 0.485, + "2019": 0.493, + "2020": 0.489, + "2021": 0.492 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr207", + "Region": " Dar Es Salam", + "1990": 0.479, + "1991": 0.478, + "1992": 0.473, + "1993": 0.469, + "1994": 0.467, + "1995": 0.468, + "1996": 0.472, + "1997": 0.483, + "1998": 0.497, + "1999": 0.511, + "2000": 0.51, + "2001": 0.509, + "2002": 0.515, + "2003": 0.516, + "2004": 0.519, + "2005": 0.529, + "2006": 0.541, + "2007": 0.549, + "2008": 0.558, + "2009": 0.566, + "2010": 0.574, + "2011": 0.583, + "2012": 0.588, + "2013": 0.596, + "2014": 0.604, + "2015": 0.611, + "2016": 0.616, + "2017": 0.622, + "2018": 0.628, + "2019": 0.637, + "2020": 0.632, + "2021": 0.635 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr201", + "Region": " Dodoma", + "1990": 0.385, + "1991": 0.383, + "1992": 0.379, + "1993": 0.375, + "1994": 0.373, + "1995": 0.374, + "1996": 0.377, + "1997": 0.378, + "1998": 0.38, + "1999": 0.383, + "2000": 0.385, + "2001": 0.387, + "2002": 0.395, + "2003": 0.399, + "2004": 0.405, + "2005": 0.405, + "2006": 0.407, + "2007": 0.404, + "2008": 0.402, + "2009": 0.4, + "2010": 0.397, + "2011": 0.403, + "2012": 0.405, + "2013": 0.409, + "2014": 0.413, + "2015": 0.417, + "2016": 0.421, + "2017": 0.426, + "2018": 0.431, + "2019": 0.439, + "2020": 0.434, + "2021": 0.437 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr211", + "Region": " Iringa, Njombe", + "1990": 0.383, + "1991": 0.381, + "1992": 0.377, + "1993": 0.374, + "1994": 0.373, + "1995": 0.375, + "1996": 0.379, + "1997": 0.38, + "1998": 0.382, + "1999": 0.386, + "2000": 0.388, + "2001": 0.39, + "2002": 0.398, + "2003": 0.402, + "2004": 0.407, + "2005": 0.417, + "2006": 0.428, + "2007": 0.436, + "2008": 0.444, + "2009": 0.451, + "2010": 0.458, + "2011": 0.464, + "2012": 0.466, + "2013": 0.47, + "2014": 0.475, + "2015": 0.478, + "2016": 0.483, + "2017": 0.488, + "2018": 0.493, + "2019": 0.501, + "2020": 0.497, + "2021": 0.499 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr218", + "Region": " Kagera", + "1990": 0.379, + "1991": 0.378, + "1992": 0.374, + "1993": 0.37, + "1994": 0.368, + "1995": 0.369, + "1996": 0.373, + "1997": 0.367, + "1998": 0.363, + "1999": 0.36, + "2000": 0.365, + "2001": 0.37, + "2002": 0.38, + "2003": 0.387, + "2004": 0.396, + "2005": 0.401, + "2006": 0.408, + "2007": 0.412, + "2008": 0.416, + "2009": 0.419, + "2010": 0.422, + "2011": 0.426, + "2012": 0.426, + "2013": 0.429, + "2014": 0.432, + "2015": 0.434, + "2016": 0.438, + "2017": 0.444, + "2018": 0.448, + "2019": 0.456, + "2020": 0.452, + "2021": 0.454 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr216", + "Region": " Kigoma", + "1990": 0.38, + "1991": 0.378, + "1992": 0.374, + "1993": 0.372, + "1994": 0.371, + "1995": 0.374, + "1996": 0.38, + "1997": 0.378, + "1998": 0.379, + "1999": 0.38, + "2000": 0.382, + "2001": 0.384, + "2002": 0.392, + "2003": 0.395, + "2004": 0.401, + "2005": 0.405, + "2006": 0.411, + "2007": 0.413, + "2008": 0.416, + "2009": 0.418, + "2010": 0.42, + "2011": 0.425, + "2012": 0.426, + "2013": 0.429, + "2014": 0.432, + "2015": 0.434, + "2016": 0.439, + "2017": 0.444, + "2018": 0.449, + "2019": 0.457, + "2020": 0.453, + "2021": 0.455 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr203", + "Region": " Kilimanjaro", + "1990": 0.412, + "1991": 0.411, + "1992": 0.406, + "1993": 0.404, + "1994": 0.403, + "1995": 0.406, + "1996": 0.412, + "1997": 0.419, + "1998": 0.429, + "1999": 0.44, + "2000": 0.44, + "2001": 0.44, + "2002": 0.447, + "2003": 0.449, + "2004": 0.453, + "2005": 0.46, + "2006": 0.47, + "2007": 0.476, + "2008": 0.483, + "2009": 0.488, + "2010": 0.494, + "2011": 0.505, + "2012": 0.512, + "2013": 0.522, + "2014": 0.532, + "2015": 0.54, + "2016": 0.545, + "2017": 0.551, + "2018": 0.556, + "2019": 0.565, + "2020": 0.56, + "2021": 0.563 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr208", + "Region": " Lindi", + "1990": 0.382, + "1991": 0.381, + "1992": 0.376, + "1993": 0.374, + "1994": 0.374, + "1995": 0.376, + "1996": 0.382, + "1997": 0.378, + "1998": 0.377, + "1999": 0.376, + "2000": 0.38, + "2001": 0.383, + "2002": 0.393, + "2003": 0.398, + "2004": 0.406, + "2005": 0.407, + "2006": 0.411, + "2007": 0.41, + "2008": 0.41, + "2009": 0.409, + "2010": 0.408, + "2011": 0.415, + "2012": 0.419, + "2013": 0.425, + "2014": 0.431, + "2015": 0.436, + "2016": 0.44, + "2017": 0.446, + "2018": 0.45, + "2019": 0.458, + "2020": 0.454, + "2021": 0.456 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr220", + "Region": " Mara", + "1990": 0.374, + "1991": 0.373, + "1992": 0.368, + "1993": 0.364, + "1994": 0.36, + "1995": 0.36, + "1996": 0.362, + "1997": 0.366, + "1998": 0.372, + "1999": 0.379, + "2000": 0.379, + "2001": 0.379, + "2002": 0.385, + "2003": 0.387, + "2004": 0.391, + "2005": 0.398, + "2006": 0.408, + "2007": 0.413, + "2008": 0.419, + "2009": 0.424, + "2010": 0.43, + "2011": 0.437, + "2012": 0.44, + "2013": 0.445, + "2014": 0.451, + "2015": 0.455, + "2016": 0.46, + "2017": 0.465, + "2018": 0.47, + "2019": 0.478, + "2020": 0.474, + "2021": 0.476 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr212", + "Region": " Mbeya", + "1990": 0.387, + "1991": 0.386, + "1992": 0.381, + "1993": 0.377, + "1994": 0.374, + "1995": 0.375, + "1996": 0.378, + "1997": 0.384, + "1998": 0.391, + "1999": 0.399, + "2000": 0.399, + "2001": 0.398, + "2002": 0.403, + "2003": 0.405, + "2004": 0.408, + "2005": 0.416, + "2006": 0.427, + "2007": 0.434, + "2008": 0.441, + "2009": 0.448, + "2010": 0.454, + "2011": 0.457, + "2012": 0.455, + "2013": 0.456, + "2014": 0.457, + "2015": 0.457, + "2016": 0.462, + "2017": 0.468, + "2018": 0.472, + "2019": 0.48, + "2020": 0.476, + "2021": 0.479 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr205", + "Region": " Morogoro", + "1990": 0.39, + "1991": 0.389, + "1992": 0.385, + "1993": 0.38, + "1994": 0.377, + "1995": 0.377, + "1996": 0.38, + "1997": 0.38, + "1998": 0.381, + "1999": 0.383, + "2000": 0.391, + "2001": 0.399, + "2002": 0.413, + "2003": 0.423, + "2004": 0.435, + "2005": 0.438, + "2006": 0.442, + "2007": 0.443, + "2008": 0.444, + "2009": 0.444, + "2010": 0.444, + "2011": 0.449, + "2012": 0.45, + "2013": 0.453, + "2014": 0.455, + "2015": 0.457, + "2016": 0.462, + "2017": 0.468, + "2018": 0.472, + "2019": 0.48, + "2020": 0.476, + "2021": 0.479 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr209", + "Region": " Mtwara", + "1990": 0.371, + "1991": 0.37, + "1992": 0.366, + "1993": 0.363, + "1994": 0.362, + "1995": 0.364, + "1996": 0.369, + "1997": 0.37, + "1998": 0.373, + "1999": 0.377, + "2000": 0.378, + "2001": 0.379, + "2002": 0.387, + "2003": 0.39, + "2004": 0.395, + "2005": 0.4, + "2006": 0.408, + "2007": 0.411, + "2008": 0.415, + "2009": 0.418, + "2010": 0.422, + "2011": 0.427, + "2012": 0.428, + "2013": 0.432, + "2014": 0.436, + "2015": 0.438, + "2016": 0.443, + "2017": 0.448, + "2018": 0.453, + "2019": 0.461, + "2020": 0.457, + "2021": 0.459 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr219", + "Region": " Mwanza, Geita", + "1990": 0.39, + "1991": 0.389, + "1992": 0.385, + "1993": 0.381, + "1994": 0.379, + "1995": 0.38, + "1996": 0.383, + "1997": 0.385, + "1998": 0.389, + "1999": 0.393, + "2000": 0.396, + "2001": 0.398, + "2002": 0.407, + "2003": 0.412, + "2004": 0.418, + "2005": 0.423, + "2006": 0.431, + "2007": 0.435, + "2008": 0.439, + "2009": 0.442, + "2010": 0.446, + "2011": 0.449, + "2012": 0.449, + "2013": 0.451, + "2014": 0.453, + "2015": 0.454, + "2016": 0.459, + "2017": 0.464, + "2018": 0.469, + "2019": 0.477, + "2020": 0.472, + "2021": 0.475 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr224", + "Region": " Pemba North", + "1990": 0.38, + "1991": 0.379, + "1992": 0.375, + "1993": 0.376, + "1994": 0.378, + "1995": 0.385, + "1996": 0.393, + "1997": 0.398, + "1998": 0.404, + "1999": 0.411, + "2000": 0.41, + "2001": 0.409, + "2002": 0.414, + "2003": 0.415, + "2004": 0.418, + "2005": 0.428, + "2006": 0.441, + "2007": 0.449, + "2008": 0.458, + "2009": 0.467, + "2010": 0.475, + "2011": 0.486, + "2012": 0.492, + "2013": 0.501, + "2014": 0.51, + "2015": 0.517, + "2016": 0.523, + "2017": 0.528, + "2018": 0.533, + "2019": 0.541, + "2020": 0.537, + "2021": 0.54 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr225", + "Region": " Pemba South", + "1990": 0.369, + "1991": 0.367, + "1992": 0.363, + "1993": 0.362, + "1994": 0.362, + "1995": 0.366, + "1996": 0.373, + "1997": 0.364, + "1998": 0.358, + "1999": 0.352, + "2000": 0.369, + "2001": 0.385, + "2002": 0.408, + "2003": 0.427, + "2004": 0.447, + "2005": 0.457, + "2006": 0.469, + "2007": 0.477, + "2008": 0.486, + "2009": 0.494, + "2010": 0.502, + "2011": 0.51, + "2012": 0.514, + "2013": 0.521, + "2014": 0.528, + "2015": 0.534, + "2016": 0.539, + "2017": 0.544, + "2018": 0.55, + "2019": 0.558, + "2020": 0.553, + "2021": 0.556 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr206", + "Region": " Pwani", + "1990": 0.39, + "1991": 0.389, + "1992": 0.385, + "1993": 0.384, + "1994": 0.385, + "1995": 0.389, + "1996": 0.396, + "1997": 0.385, + "1998": 0.376, + "1999": 0.368, + "2000": 0.374, + "2001": 0.381, + "2002": 0.393, + "2003": 0.402, + "2004": 0.412, + "2005": 0.418, + "2006": 0.427, + "2007": 0.431, + "2008": 0.436, + "2009": 0.44, + "2010": 0.445, + "2011": 0.45, + "2012": 0.452, + "2013": 0.455, + "2014": 0.459, + "2015": 0.462, + "2016": 0.467, + "2017": 0.472, + "2018": 0.477, + "2019": 0.485, + "2020": 0.481, + "2021": 0.483 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr215", + "Region": " Rukwa, Katavi", + "1990": 0.381, + "1991": 0.38, + "1992": 0.375, + "1993": 0.372, + "1994": 0.37, + "1995": 0.371, + "1996": 0.375, + "1997": 0.375, + "1998": 0.377, + "1999": 0.38, + "2000": 0.381, + "2001": 0.383, + "2002": 0.39, + "2003": 0.393, + "2004": 0.398, + "2005": 0.402, + "2006": 0.408, + "2007": 0.41, + "2008": 0.412, + "2009": 0.414, + "2010": 0.415, + "2011": 0.418, + "2012": 0.418, + "2013": 0.419, + "2014": 0.421, + "2015": 0.421, + "2016": 0.426, + "2017": 0.431, + "2018": 0.436, + "2019": 0.443, + "2020": 0.439, + "2021": 0.442 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr210", + "Region": " Ruvuma", + "1990": 0.391, + "1991": 0.39, + "1992": 0.385, + "1993": 0.382, + "1994": 0.381, + "1995": 0.382, + "1996": 0.387, + "1997": 0.383, + "1998": 0.381, + "1999": 0.38, + "2000": 0.386, + "2001": 0.391, + "2002": 0.402, + "2003": 0.41, + "2004": 0.419, + "2005": 0.423, + "2006": 0.429, + "2007": 0.431, + "2008": 0.434, + "2009": 0.436, + "2010": 0.438, + "2011": 0.444, + "2012": 0.446, + "2013": 0.451, + "2014": 0.456, + "2015": 0.459, + "2016": 0.464, + "2017": 0.47, + "2018": 0.475, + "2019": 0.482, + "2020": 0.478, + "2021": 0.481 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr217", + "Region": " Shinyanga, Simiyu", + "1990": 0.387, + "1991": 0.385, + "1992": 0.381, + "1993": 0.379, + "1994": 0.378, + "1995": 0.382, + "1996": 0.387, + "1997": 0.383, + "1998": 0.38, + "1999": 0.378, + "2000": 0.381, + "2001": 0.383, + "2002": 0.392, + "2003": 0.396, + "2004": 0.402, + "2005": 0.411, + "2006": 0.421, + "2007": 0.428, + "2008": 0.435, + "2009": 0.441, + "2010": 0.448, + "2011": 0.451, + "2012": 0.45, + "2013": 0.451, + "2014": 0.453, + "2015": 0.453, + "2016": 0.458, + "2017": 0.464, + "2018": 0.468, + "2019": 0.476, + "2020": 0.472, + "2021": 0.475 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr213", + "Region": " Singida", + "1990": 0.389, + "1991": 0.388, + "1992": 0.383, + "1993": 0.38, + "1994": 0.377, + "1995": 0.379, + "1996": 0.383, + "1997": 0.374, + "1998": 0.368, + "1999": 0.362, + "2000": 0.366, + "2001": 0.37, + "2002": 0.38, + "2003": 0.385, + "2004": 0.393, + "2005": 0.397, + "2006": 0.404, + "2007": 0.406, + "2008": 0.409, + "2009": 0.411, + "2010": 0.413, + "2011": 0.42, + "2012": 0.423, + "2013": 0.429, + "2014": 0.434, + "2015": 0.439, + "2016": 0.444, + "2017": 0.449, + "2018": 0.454, + "2019": 0.461, + "2020": 0.457, + "2021": 0.46 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr214", + "Region": " Tabora", + "1990": 0.382, + "1991": 0.38, + "1992": 0.376, + "1993": 0.375, + "1994": 0.376, + "1995": 0.38, + "1996": 0.387, + "1997": 0.38, + "1998": 0.375, + "1999": 0.37, + "2000": 0.373, + "2001": 0.377, + "2002": 0.387, + "2003": 0.392, + "2004": 0.399, + "2005": 0.405, + "2006": 0.413, + "2007": 0.416, + "2008": 0.42, + "2009": 0.424, + "2010": 0.427, + "2011": 0.433, + "2012": 0.434, + "2013": 0.438, + "2014": 0.442, + "2015": 0.445, + "2016": 0.45, + "2017": 0.455, + "2018": 0.46, + "2019": 0.468, + "2020": 0.464, + "2021": 0.466 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr204", + "Region": " Tanga", + "1990": 0.38, + "1991": 0.379, + "1992": 0.374, + "1993": 0.371, + "1994": 0.369, + "1995": 0.371, + "1996": 0.375, + "1997": 0.378, + "1998": 0.382, + "1999": 0.387, + "2000": 0.389, + "2001": 0.392, + "2002": 0.4, + "2003": 0.404, + "2004": 0.41, + "2005": 0.418, + "2006": 0.427, + "2007": 0.433, + "2008": 0.439, + "2009": 0.444, + "2010": 0.449, + "2011": 0.461, + "2012": 0.469, + "2013": 0.48, + "2014": 0.49, + "2015": 0.5, + "2016": 0.505, + "2017": 0.51, + "2018": 0.515, + "2019": 0.524, + "2020": 0.519, + "2021": 0.522 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr221", + "Region": " Zanzibar North", + "1990": 0.391, + "1991": 0.389, + "1992": 0.385, + "1993": 0.383, + "1994": 0.381, + "1995": 0.384, + "1996": 0.389, + "1997": 0.389, + "1998": 0.39, + "1999": 0.393, + "2000": 0.398, + "2001": 0.403, + "2002": 0.414, + "2003": 0.42, + "2004": 0.429, + "2005": 0.437, + "2006": 0.447, + "2007": 0.453, + "2008": 0.459, + "2009": 0.465, + "2010": 0.471, + "2011": 0.48, + "2012": 0.486, + "2013": 0.494, + "2014": 0.502, + "2015": 0.508, + "2016": 0.513, + "2017": 0.519, + "2018": 0.524, + "2019": 0.532, + "2020": 0.528, + "2021": 0.531 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr222", + "Region": " Zanzibar South", + "1990": 0.41, + "1991": 0.409, + "1992": 0.404, + "1993": 0.41, + "1994": 0.417, + "1995": 0.427, + "1996": 0.441, + "1997": 0.445, + "1998": 0.451, + "1999": 0.459, + "2000": 0.458, + "2001": 0.458, + "2002": 0.464, + "2003": 0.465, + "2004": 0.469, + "2005": 0.479, + "2006": 0.491, + "2007": 0.499, + "2008": 0.507, + "2009": 0.515, + "2010": 0.523, + "2011": 0.529, + "2012": 0.531, + "2013": 0.535, + "2014": 0.54, + "2015": 0.543, + "2016": 0.548, + "2017": 0.554, + "2018": 0.559, + "2019": 0.568, + "2020": 0.563, + "2021": 0.566 + }, + { + "Country": "Tanzania", + "Continent": "Africa", + "ISO_Code": "TZA", + "Level": "Subnat", + "GDLCODE": "TZAr223", + "Region": " Zanzibar West", + "1990": 0.469, + "1991": 0.468, + "1992": 0.463, + "1993": 0.469, + "1994": 0.475, + "1995": 0.486, + "1996": 0.5, + "1997": 0.513, + "1998": 0.529, + "1999": 0.545, + "2000": 0.545, + "2001": 0.545, + "2002": 0.552, + "2003": 0.554, + "2004": 0.558, + "2005": 0.574, + "2006": 0.592, + "2007": 0.605, + "2008": 0.62, + "2009": 0.633, + "2010": 0.647, + "2011": 0.654, + "2012": 0.657, + "2013": 0.662, + "2014": 0.668, + "2015": 0.672, + "2016": 0.678, + "2017": 0.684, + "2018": 0.69, + "2019": 0.7, + "2020": 0.694, + "2021": 0.698 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "National", + "GDLCODE": "THAt", + "Region": "Total", + "1990": 0.64, + "1991": 0.65, + "1992": 0.661, + "1993": 0.673, + "1994": 0.683, + "1995": 0.693, + "1996": 0.699, + "1997": 0.692, + "1998": 0.677, + "1999": 0.683, + "2000": 0.69, + "2001": 0.692, + "2002": 0.699, + "2003": 0.707, + "2004": 0.715, + "2005": 0.72, + "2006": 0.728, + "2007": 0.735, + "2008": 0.737, + "2009": 0.735, + "2010": 0.744, + "2011": 0.748, + "2012": 0.754, + "2013": 0.754, + "2014": 0.757, + "2015": 0.761, + "2016": 0.767, + "2017": 0.773, + "2018": 0.778, + "2019": 0.783, + "2020": 0.774, + "2021": 0.776 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr101", + "Region": "Bangkok", + "1990": 0.672, + "1991": 0.682, + "1992": 0.694, + "1993": 0.706, + "1994": 0.716, + "1995": 0.726, + "1996": 0.732, + "1997": 0.725, + "1998": 0.71, + "1999": 0.716, + "2000": 0.723, + "2001": 0.725, + "2002": 0.732, + "2003": 0.741, + "2004": 0.749, + "2005": 0.754, + "2006": 0.762, + "2007": 0.768, + "2008": 0.768, + "2009": 0.765, + "2010": 0.772, + "2011": 0.774, + "2012": 0.779, + "2013": 0.777, + "2014": 0.777, + "2015": 0.779, + "2016": 0.782, + "2017": 0.785, + "2018": 0.781, + "2019": 0.776, + "2020": 0.768, + "2021": 0.77 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr102", + "Region": "Central", + "1990": 0.649, + "1991": 0.659, + "1992": 0.671, + "1993": 0.682, + "1994": 0.692, + "1995": 0.702, + "1996": 0.708, + "1997": 0.701, + "1998": 0.686, + "1999": 0.692, + "2000": 0.699, + "2001": 0.702, + "2002": 0.708, + "2003": 0.717, + "2004": 0.725, + "2005": 0.73, + "2006": 0.737, + "2007": 0.745, + "2008": 0.747, + "2009": 0.746, + "2010": 0.756, + "2011": 0.76, + "2012": 0.767, + "2013": 0.765, + "2014": 0.766, + "2015": 0.767, + "2016": 0.77, + "2017": 0.774, + "2018": 0.779, + "2019": 0.784, + "2020": 0.775, + "2021": 0.777 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr103", + "Region": "North", + "1990": 0.643, + "1991": 0.653, + "1992": 0.665, + "1993": 0.676, + "1994": 0.686, + "1995": 0.696, + "1996": 0.702, + "1997": 0.695, + "1998": 0.68, + "1999": 0.686, + "2000": 0.693, + "2001": 0.696, + "2002": 0.702, + "2003": 0.711, + "2004": 0.718, + "2005": 0.723, + "2006": 0.731, + "2007": 0.739, + "2008": 0.74, + "2009": 0.739, + "2010": 0.748, + "2011": 0.751, + "2012": 0.757, + "2013": 0.757, + "2014": 0.759, + "2015": 0.762, + "2016": 0.766, + "2017": 0.771, + "2018": 0.778, + "2019": 0.785, + "2020": 0.776, + "2021": 0.778 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr104", + "Region": "Northeast", + "1990": 0.621, + "1991": 0.631, + "1992": 0.642, + "1993": 0.653, + "1994": 0.663, + "1995": 0.673, + "1996": 0.679, + "1997": 0.672, + "1998": 0.657, + "1999": 0.663, + "2000": 0.67, + "2001": 0.672, + "2002": 0.679, + "2003": 0.687, + "2004": 0.695, + "2005": 0.7, + "2006": 0.707, + "2007": 0.715, + "2008": 0.717, + "2009": 0.715, + "2010": 0.725, + "2011": 0.728, + "2012": 0.735, + "2013": 0.738, + "2014": 0.743, + "2015": 0.749, + "2016": 0.757, + "2017": 0.765, + "2018": 0.776, + "2019": 0.787, + "2020": 0.778, + "2021": 0.78 + }, + { + "Country": "Thailand", + "Continent": "Asia/Pacific", + "ISO_Code": "THA", + "Level": "Subnat", + "GDLCODE": "THAr105", + "Region": "South", + "1990": 0.629, + "1991": 0.64, + "1992": 0.651, + "1993": 0.662, + "1994": 0.672, + "1995": 0.682, + "1996": 0.688, + "1997": 0.681, + "1998": 0.666, + "1999": 0.672, + "2000": 0.679, + "2001": 0.681, + "2002": 0.688, + "2003": 0.696, + "2004": 0.704, + "2005": 0.709, + "2006": 0.717, + "2007": 0.726, + "2008": 0.729, + "2009": 0.729, + "2010": 0.74, + "2011": 0.745, + "2012": 0.753, + "2013": 0.754, + "2014": 0.757, + "2015": 0.761, + "2016": 0.767, + "2017": 0.773, + "2018": 0.775, + "2019": 0.776, + "2020": 0.768, + "2021": 0.77 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "National", + "GDLCODE": "TLSt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.546, + "2003": 0.516, + "2004": 0.528, + "2005": 0.553, + "2006": 0.603, + "2007": 0.646, + "2008": 0.702, + "2009": 0.665, + "2010": 0.691, + "2011": 0.719, + "2012": 0.697, + "2013": 0.677, + "2014": 0.645, + "2015": 0.612, + "2016": 0.576, + "2017": 0.575, + "2018": 0.571, + "2019": 0.587, + "2020": 0.584, + "2021": 0.574 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr101", + "Region": "Aileu", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.505, + "2003": 0.477, + "2004": 0.488, + "2005": 0.513, + "2006": 0.561, + "2007": 0.603, + "2008": 0.657, + "2009": 0.621, + "2010": 0.65, + "2011": 0.681, + "2012": 0.664, + "2013": 0.649, + "2014": 0.621, + "2015": 0.592, + "2016": 0.56, + "2017": 0.559, + "2018": 0.556, + "2019": 0.571, + "2020": 0.568, + "2021": 0.558 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr102", + "Region": "Ainaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.493, + "2003": 0.464, + "2004": 0.476, + "2005": 0.5, + "2006": 0.548, + "2007": 0.589, + "2008": 0.643, + "2009": 0.607, + "2010": 0.631, + "2011": 0.657, + "2012": 0.635, + "2013": 0.615, + "2014": 0.583, + "2015": 0.551, + "2016": 0.515, + "2017": 0.514, + "2018": 0.511, + "2019": 0.526, + "2020": 0.523, + "2021": 0.513 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr103", + "Region": "Baucau", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.512, + "2003": 0.483, + "2004": 0.495, + "2005": 0.519, + "2006": 0.568, + "2007": 0.609, + "2008": 0.664, + "2009": 0.628, + "2010": 0.657, + "2011": 0.689, + "2012": 0.672, + "2013": 0.656, + "2014": 0.628, + "2015": 0.599, + "2016": 0.567, + "2017": 0.566, + "2018": 0.563, + "2019": 0.578, + "2020": 0.575, + "2021": 0.565 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr104", + "Region": "Bobonaro", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.527, + "2003": 0.498, + "2004": 0.51, + "2005": 0.535, + "2006": 0.584, + "2007": 0.626, + "2008": 0.681, + "2009": 0.644, + "2010": 0.674, + "2011": 0.706, + "2012": 0.688, + "2013": 0.672, + "2014": 0.643, + "2015": 0.614, + "2016": 0.581, + "2017": 0.58, + "2018": 0.577, + "2019": 0.592, + "2020": 0.59, + "2021": 0.579 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr105", + "Region": "Cova Lima", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.528, + "2003": 0.498, + "2004": 0.51, + "2005": 0.535, + "2006": 0.584, + "2007": 0.627, + "2008": 0.682, + "2009": 0.645, + "2010": 0.67, + "2011": 0.697, + "2012": 0.676, + "2013": 0.656, + "2014": 0.623, + "2015": 0.591, + "2016": 0.555, + "2017": 0.554, + "2018": 0.551, + "2019": 0.566, + "2020": 0.563, + "2021": 0.553 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr106", + "Region": "Dili", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.71, + "2003": 0.676, + "2004": 0.69, + "2005": 0.718, + "2006": 0.775, + "2007": 0.823, + "2008": 0.887, + "2009": 0.844, + "2010": 0.865, + "2011": 0.888, + "2012": 0.855, + "2013": 0.825, + "2014": 0.781, + "2015": 0.737, + "2016": 0.69, + "2017": 0.689, + "2018": 0.685, + "2019": 0.702, + "2020": 0.699, + "2021": 0.688 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr107", + "Region": "Ermera", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.508, + "2003": 0.48, + "2004": 0.491, + "2005": 0.516, + "2006": 0.564, + "2007": 0.606, + "2008": 0.661, + "2009": 0.624, + "2010": 0.647, + "2011": 0.671, + "2012": 0.648, + "2013": 0.626, + "2014": 0.592, + "2015": 0.559, + "2016": 0.522, + "2017": 0.521, + "2018": 0.518, + "2019": 0.532, + "2020": 0.53, + "2021": 0.52 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr109", + "Region": "Lautem", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.52, + "2003": 0.491, + "2004": 0.503, + "2005": 0.528, + "2006": 0.576, + "2007": 0.618, + "2008": 0.674, + "2009": 0.637, + "2010": 0.668, + "2011": 0.701, + "2012": 0.685, + "2013": 0.67, + "2014": 0.643, + "2015": 0.615, + "2016": 0.583, + "2017": 0.582, + "2018": 0.579, + "2019": 0.594, + "2020": 0.592, + "2021": 0.581 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr108", + "Region": "Liquica", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.548, + "2003": 0.518, + "2004": 0.53, + "2005": 0.555, + "2006": 0.605, + "2007": 0.648, + "2008": 0.705, + "2009": 0.667, + "2010": 0.691, + "2011": 0.716, + "2012": 0.692, + "2013": 0.67, + "2014": 0.636, + "2015": 0.601, + "2016": 0.563, + "2017": 0.562, + "2018": 0.559, + "2019": 0.574, + "2020": 0.572, + "2021": 0.561 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr111", + "Region": "Manatuto", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.557, + "2003": 0.527, + "2004": 0.539, + "2005": 0.565, + "2006": 0.615, + "2007": 0.658, + "2008": 0.715, + "2009": 0.677, + "2010": 0.699, + "2011": 0.722, + "2012": 0.696, + "2013": 0.672, + "2014": 0.635, + "2015": 0.598, + "2016": 0.558, + "2017": 0.558, + "2018": 0.554, + "2019": 0.569, + "2020": 0.567, + "2021": 0.556 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr110", + "Region": "Manufahi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.502, + "2003": 0.473, + "2004": 0.485, + "2005": 0.51, + "2006": 0.557, + "2007": 0.599, + "2008": 0.653, + "2009": 0.617, + "2010": 0.65, + "2011": 0.684, + "2012": 0.671, + "2013": 0.658, + "2014": 0.633, + "2015": 0.607, + "2016": 0.577, + "2017": 0.577, + "2018": 0.573, + "2019": 0.589, + "2020": 0.586, + "2021": 0.576 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr112", + "Region": "Oecussi", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.475, + "2003": 0.447, + "2004": 0.458, + "2005": 0.482, + "2006": 0.529, + "2007": 0.569, + "2008": 0.622, + "2009": 0.587, + "2010": 0.612, + "2011": 0.638, + "2012": 0.618, + "2013": 0.599, + "2014": 0.568, + "2015": 0.538, + "2016": 0.504, + "2017": 0.503, + "2018": 0.5, + "2019": 0.514, + "2020": 0.512, + "2021": 0.502 + }, + { + "Country": "Timor Leste", + "Continent": "Asia/Pacific", + "ISO_Code": "TLS", + "Level": "Subnat", + "GDLCODE": "TLSr113", + "Region": "Viqueque", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": 0.496, + "2003": 0.468, + "2004": 0.479, + "2005": 0.504, + "2006": 0.551, + "2007": 0.593, + "2008": 0.647, + "2009": 0.611, + "2010": 0.639, + "2011": 0.669, + "2012": 0.652, + "2013": 0.636, + "2014": 0.607, + "2015": 0.578, + "2016": 0.546, + "2017": 0.545, + "2018": 0.542, + "2019": 0.557, + "2020": 0.554, + "2021": 0.544 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "National", + "GDLCODE": "TGOt", + "Region": "Total", + "1990": 0.433, + "1991": 0.428, + "1992": 0.419, + "1993": 0.391, + "1994": 0.404, + "1995": 0.414, + "1996": 0.425, + "1997": 0.441, + "1998": 0.432, + "1999": 0.43, + "2000": 0.425, + "2001": 0.422, + "2002": 0.425, + "2003": 0.431, + "2004": 0.425, + "2005": 0.414, + "2006": 0.414, + "2007": 0.409, + "2008": 0.412, + "2009": 0.416, + "2010": 0.42, + "2011": 0.435, + "2012": 0.432, + "2013": 0.438, + "2014": 0.443, + "2015": 0.451, + "2016": 0.452, + "2017": 0.454, + "2018": 0.457, + "2019": 0.462, + "2020": 0.461, + "2021": 0.465 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr104", + "Region": "Centrale", + "1990": 0.427, + "1991": 0.422, + "1992": 0.413, + "1993": 0.385, + "1994": 0.398, + "1995": 0.408, + "1996": 0.419, + "1997": 0.435, + "1998": 0.427, + "1999": 0.422, + "2000": 0.415, + "2001": 0.411, + "2002": 0.412, + "2003": 0.416, + "2004": 0.409, + "2005": 0.396, + "2006": 0.394, + "2007": 0.39, + "2008": 0.394, + "2009": 0.399, + "2010": 0.405, + "2011": 0.421, + "2012": 0.42, + "2013": 0.426, + "2014": 0.433, + "2015": 0.439, + "2016": 0.438, + "2017": 0.438, + "2018": 0.442, + "2019": 0.446, + "2020": 0.445, + "2021": 0.449 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr105", + "Region": "Kara", + "1990": 0.427, + "1991": 0.423, + "1992": 0.414, + "1993": 0.386, + "1994": 0.399, + "1995": 0.409, + "1996": 0.42, + "1997": 0.435, + "1998": 0.427, + "1999": 0.422, + "2000": 0.414, + "2001": 0.409, + "2002": 0.409, + "2003": 0.412, + "2004": 0.404, + "2005": 0.39, + "2006": 0.388, + "2007": 0.383, + "2008": 0.385, + "2009": 0.389, + "2010": 0.394, + "2011": 0.408, + "2012": 0.406, + "2013": 0.412, + "2014": 0.417, + "2015": 0.427, + "2016": 0.43, + "2017": 0.434, + "2018": 0.438, + "2019": 0.442, + "2020": 0.441, + "2021": 0.445 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr101", + "Region": "Lome", + "1990": 0.528, + "1991": 0.523, + "1992": 0.513, + "1993": 0.483, + "1994": 0.497, + "1995": 0.508, + "1996": 0.52, + "1997": 0.537, + "1998": 0.528, + "1999": 0.526, + "2000": 0.522, + "2001": 0.52, + "2002": 0.524, + "2003": 0.531, + "2004": 0.526, + "2005": 0.515, + "2006": 0.516, + "2007": 0.51, + "2008": 0.512, + "2009": 0.516, + "2010": 0.521, + "2011": 0.536, + "2012": 0.533, + "2013": 0.539, + "2014": 0.544, + "2015": 0.544, + "2016": 0.536, + "2017": 0.53, + "2018": 0.534, + "2019": 0.539, + "2020": 0.537, + "2021": 0.541 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr102", + "Region": "Maritime", + "1990": 0.411, + "1991": 0.406, + "1992": 0.397, + "1993": 0.37, + "1994": 0.383, + "1995": 0.393, + "1996": 0.403, + "1997": 0.418, + "1998": 0.411, + "1999": 0.409, + "2000": 0.406, + "2001": 0.404, + "2002": 0.408, + "2003": 0.416, + "2004": 0.411, + "2005": 0.401, + "2006": 0.403, + "2007": 0.4, + "2008": 0.406, + "2009": 0.412, + "2010": 0.419, + "2011": 0.437, + "2012": 0.437, + "2013": 0.445, + "2014": 0.453, + "2015": 0.449, + "2016": 0.438, + "2017": 0.429, + "2018": 0.433, + "2019": 0.437, + "2020": 0.436, + "2021": 0.44 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr103", + "Region": "Plateaux", + "1990": 0.406, + "1991": 0.402, + "1992": 0.393, + "1993": 0.365, + "1994": 0.378, + "1995": 0.388, + "1996": 0.398, + "1997": 0.414, + "1998": 0.406, + "1999": 0.402, + "2000": 0.395, + "2001": 0.39, + "2002": 0.391, + "2003": 0.395, + "2004": 0.387, + "2005": 0.375, + "2006": 0.373, + "2007": 0.367, + "2008": 0.37, + "2009": 0.373, + "2010": 0.377, + "2011": 0.391, + "2012": 0.388, + "2013": 0.393, + "2014": 0.398, + "2015": 0.408, + "2016": 0.412, + "2017": 0.416, + "2018": 0.42, + "2019": 0.424, + "2020": 0.423, + "2021": 0.427 + }, + { + "Country": "Togo", + "Continent": "Africa", + "ISO_Code": "TGO", + "Level": "Subnat", + "GDLCODE": "TGOr106", + "Region": "Savanes", + "1990": 0.415, + "1991": 0.41, + "1992": 0.401, + "1993": 0.374, + "1994": 0.387, + "1995": 0.397, + "1996": 0.407, + "1997": 0.423, + "1998": 0.415, + "1999": 0.409, + "2000": 0.401, + "2001": 0.394, + "2002": 0.394, + "2003": 0.397, + "2004": 0.387, + "2005": 0.374, + "2006": 0.37, + "2007": 0.364, + "2008": 0.366, + "2009": 0.369, + "2010": 0.372, + "2011": 0.385, + "2012": 0.381, + "2013": 0.386, + "2014": 0.39, + "2015": 0.4, + "2016": 0.404, + "2017": 0.408, + "2018": 0.412, + "2019": 0.416, + "2020": 0.415, + "2021": 0.419 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "National", + "GDLCODE": "TONt", + "Region": "Total", + "1990": null, + "1991": 0.584, + "1992": 0.583, + "1993": 0.588, + "1994": 0.601, + "1995": 0.601, + "1996": 0.601, + "1997": 0.6, + "1998": 0.605, + "1999": 0.606, + "2000": 0.608, + "2001": 0.608, + "2002": 0.616, + "2003": 0.614, + "2004": 0.611, + "2005": 0.607, + "2006": 0.605, + "2007": 0.6, + "2008": 0.606, + "2009": 0.599, + "2010": 0.601, + "2011": 0.611, + "2012": 0.613, + "2013": 0.614, + "2014": 0.616, + "2015": 0.619, + "2016": 0.627, + "2017": 0.636, + "2018": 0.637, + "2019": 0.64, + "2020": 0.639, + "2021": 0.638 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr104", + "Region": "Eua", + "1990": null, + "1991": 0.574, + "1992": 0.573, + "1993": 0.578, + "1994": 0.59, + "1995": 0.59, + "1996": 0.59, + "1997": 0.589, + "1998": 0.594, + "1999": 0.596, + "2000": 0.598, + "2001": 0.598, + "2002": 0.606, + "2003": 0.603, + "2004": 0.6, + "2005": 0.596, + "2006": 0.595, + "2007": 0.589, + "2008": 0.595, + "2009": 0.589, + "2010": 0.59, + "2011": 0.6, + "2012": 0.603, + "2013": 0.604, + "2014": 0.605, + "2015": 0.608, + "2016": 0.616, + "2017": 0.625, + "2018": 0.626, + "2019": 0.629, + "2020": 0.628, + "2021": 0.627 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr103", + "Region": "Ha-apai", + "1990": null, + "1991": 0.518, + "1992": 0.517, + "1993": 0.521, + "1994": 0.533, + "1995": 0.533, + "1996": 0.534, + "1997": 0.532, + "1998": 0.537, + "1999": 0.539, + "2000": 0.541, + "2001": 0.541, + "2002": 0.548, + "2003": 0.545, + "2004": 0.543, + "2005": 0.539, + "2006": 0.538, + "2007": 0.533, + "2008": 0.538, + "2009": 0.532, + "2010": 0.533, + "2011": 0.543, + "2012": 0.545, + "2013": 0.546, + "2014": 0.548, + "2015": 0.55, + "2016": 0.558, + "2017": 0.566, + "2018": 0.568, + "2019": 0.57, + "2020": 0.569, + "2021": 0.569 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr105", + "Region": "Ongo Niua", + "1990": null, + "1991": 0.509, + "1992": 0.508, + "1993": 0.512, + "1994": 0.524, + "1995": 0.524, + "1996": 0.525, + "1997": 0.523, + "1998": 0.528, + "1999": 0.53, + "2000": 0.532, + "2001": 0.532, + "2002": 0.539, + "2003": 0.536, + "2004": 0.534, + "2005": 0.53, + "2006": 0.529, + "2007": 0.524, + "2008": 0.529, + "2009": 0.523, + "2010": 0.524, + "2011": 0.534, + "2012": 0.536, + "2013": 0.537, + "2014": 0.539, + "2015": 0.541, + "2016": 0.549, + "2017": 0.557, + "2018": 0.559, + "2019": 0.561, + "2020": 0.56, + "2021": 0.559 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr101", + "Region": "Tongatapu", + "1990": null, + "1991": 0.597, + "1992": 0.597, + "1993": 0.601, + "1994": 0.614, + "1995": 0.614, + "1996": 0.614, + "1997": 0.613, + "1998": 0.618, + "1999": 0.62, + "2000": 0.622, + "2001": 0.622, + "2002": 0.63, + "2003": 0.627, + "2004": 0.624, + "2005": 0.621, + "2006": 0.619, + "2007": 0.613, + "2008": 0.62, + "2009": 0.613, + "2010": 0.614, + "2011": 0.624, + "2012": 0.627, + "2013": 0.628, + "2014": 0.63, + "2015": 0.632, + "2016": 0.641, + "2017": 0.649, + "2018": 0.651, + "2019": 0.653, + "2020": 0.653, + "2021": 0.652 + }, + { + "Country": "Tonga", + "Continent": "Asia/Pacific", + "ISO_Code": "TON", + "Level": "Subnat", + "GDLCODE": "TONr102", + "Region": "Vava-u", + "1990": null, + "1991": 0.569, + "1992": 0.568, + "1993": 0.573, + "1994": 0.586, + "1995": 0.585, + "1996": 0.586, + "1997": 0.585, + "1998": 0.59, + "1999": 0.591, + "2000": 0.593, + "2001": 0.593, + "2002": 0.601, + "2003": 0.598, + "2004": 0.595, + "2005": 0.592, + "2006": 0.59, + "2007": 0.585, + "2008": 0.591, + "2009": 0.584, + "2010": 0.586, + "2011": 0.596, + "2012": 0.598, + "2013": 0.599, + "2014": 0.601, + "2015": 0.603, + "2016": 0.611, + "2017": 0.62, + "2018": 0.622, + "2019": 0.624, + "2020": 0.623, + "2021": 0.622 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "National", + "GDLCODE": "TTOt", + "Region": "Total", + "1990": 0.703, + "1991": 0.705, + "1992": 0.702, + "1993": 0.7, + "1994": 0.703, + "1995": 0.707, + "1996": 0.717, + "1997": 0.732, + "1998": 0.745, + "1999": 0.756, + "2000": 0.763, + "2001": 0.771, + "2002": 0.784, + "2003": 0.802, + "2004": 0.818, + "2005": 0.823, + "2006": 0.841, + "2007": 0.843, + "2008": 0.843, + "2009": 0.844, + "2010": 0.848, + "2011": 0.837, + "2012": 0.841, + "2013": 0.849, + "2014": 0.846, + "2015": 0.855, + "2016": 0.845, + "2017": 0.843, + "2018": 0.836, + "2019": 0.838, + "2020": 0.826, + "2021": 0.824 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr103", + "Region": "Central", + "1990": 0.709, + "1991": 0.711, + "1992": 0.708, + "1993": 0.706, + "1994": 0.708, + "1995": 0.713, + "1996": 0.723, + "1997": 0.738, + "1998": 0.752, + "1999": 0.763, + "2000": 0.769, + "2001": 0.778, + "2002": 0.79, + "2003": 0.808, + "2004": 0.824, + "2005": 0.83, + "2006": 0.848, + "2007": 0.85, + "2008": 0.852, + "2009": 0.853, + "2010": 0.858, + "2011": 0.848, + "2012": 0.852, + "2013": 0.86, + "2014": 0.857, + "2015": 0.866, + "2016": 0.856, + "2017": 0.854, + "2018": 0.847, + "2019": 0.849, + "2020": 0.837, + "2021": 0.835 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr102", + "Region": "East", + "1990": 0.675, + "1991": 0.678, + "1992": 0.674, + "1993": 0.673, + "1994": 0.675, + "1995": 0.68, + "1996": 0.69, + "1997": 0.704, + "1998": 0.717, + "1999": 0.728, + "2000": 0.735, + "2001": 0.743, + "2002": 0.755, + "2003": 0.773, + "2004": 0.788, + "2005": 0.793, + "2006": 0.811, + "2007": 0.812, + "2008": 0.813, + "2009": 0.813, + "2010": 0.817, + "2011": 0.805, + "2012": 0.81, + "2013": 0.817, + "2014": 0.814, + "2015": 0.823, + "2016": 0.813, + "2017": 0.812, + "2018": 0.805, + "2019": 0.807, + "2020": 0.795, + "2021": 0.793 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr101", + "Region": "North West", + "1990": 0.7, + "1991": 0.703, + "1992": 0.699, + "1993": 0.698, + "1994": 0.7, + "1995": 0.705, + "1996": 0.715, + "1997": 0.729, + "1998": 0.743, + "1999": 0.754, + "2000": 0.761, + "2001": 0.769, + "2002": 0.781, + "2003": 0.799, + "2004": 0.815, + "2005": 0.821, + "2006": 0.838, + "2007": 0.84, + "2008": 0.841, + "2009": 0.841, + "2010": 0.846, + "2011": 0.835, + "2012": 0.839, + "2013": 0.847, + "2014": 0.844, + "2015": 0.853, + "2016": 0.843, + "2017": 0.841, + "2018": 0.834, + "2019": 0.836, + "2020": 0.824, + "2021": 0.822 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr104", + "Region": "South West", + "1990": 0.704, + "1991": 0.706, + "1992": 0.703, + "1993": 0.701, + "1994": 0.704, + "1995": 0.709, + "1996": 0.719, + "1997": 0.733, + "1998": 0.747, + "1999": 0.758, + "2000": 0.765, + "2001": 0.773, + "2002": 0.785, + "2003": 0.803, + "2004": 0.819, + "2005": 0.825, + "2006": 0.843, + "2007": 0.843, + "2008": 0.842, + "2009": 0.841, + "2010": 0.844, + "2011": 0.831, + "2012": 0.836, + "2013": 0.843, + "2014": 0.84, + "2015": 0.849, + "2016": 0.839, + "2017": 0.837, + "2018": 0.83, + "2019": 0.833, + "2020": 0.821, + "2021": 0.818 + }, + { + "Country": "Trinidad & Tobago", + "Continent": "America", + "ISO_Code": "TTO", + "Level": "Subnat", + "GDLCODE": "TTOr105", + "Region": "Tobago", + "1990": 0.707, + "1991": 0.709, + "1992": 0.706, + "1993": 0.704, + "1994": 0.707, + "1995": 0.711, + "1996": 0.721, + "1997": 0.736, + "1998": 0.75, + "1999": 0.761, + "2000": 0.767, + "2001": 0.776, + "2002": 0.788, + "2003": 0.806, + "2004": 0.822, + "2005": 0.828, + "2006": 0.846, + "2007": 0.847, + "2008": 0.848, + "2009": 0.848, + "2010": 0.853, + "2011": 0.842, + "2012": 0.846, + "2013": 0.854, + "2014": 0.851, + "2015": 0.86, + "2016": 0.85, + "2017": 0.848, + "2018": 0.841, + "2019": 0.843, + "2020": 0.831, + "2021": 0.829 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "National", + "GDLCODE": "TUNt", + "Region": "Total", + "1990": 0.61, + "1991": 0.611, + "1992": 0.618, + "1993": 0.617, + "1994": 0.619, + "1995": 0.621, + "1996": 0.629, + "1997": 0.636, + "1998": 0.641, + "1999": 0.649, + "2000": 0.654, + "2001": 0.658, + "2002": 0.659, + "2003": 0.665, + "2004": 0.673, + "2005": 0.675, + "2006": 0.682, + "2007": 0.69, + "2008": 0.694, + "2009": 0.698, + "2010": 0.7, + "2011": 0.696, + "2012": 0.701, + "2013": 0.703, + "2014": 0.707, + "2015": 0.707, + "2016": 0.708, + "2017": 0.709, + "2018": 0.71, + "2019": 0.709, + "2020": 0.696, + "2021": 0.699 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr105", + "Region": "Centre Est (Sousse, Monastir, Mahdia, Sfax)", + "1990": 0.618, + "1991": 0.619, + "1992": 0.627, + "1993": 0.625, + "1994": 0.628, + "1995": 0.63, + "1996": 0.637, + "1997": 0.644, + "1998": 0.65, + "1999": 0.657, + "2000": 0.662, + "2001": 0.667, + "2002": 0.667, + "2003": 0.674, + "2004": 0.682, + "2005": 0.684, + "2006": 0.691, + "2007": 0.699, + "2008": 0.703, + "2009": 0.707, + "2010": 0.709, + "2011": 0.705, + "2012": 0.71, + "2013": 0.711, + "2014": 0.714, + "2015": 0.713, + "2016": 0.713, + "2017": 0.713, + "2018": 0.714, + "2019": 0.712, + "2020": 0.7, + "2021": 0.703 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr104", + "Region": "Centre Ouest (Kairouan, Kasserine, Sidi Bouzid)", + "1990": 0.555, + "1991": 0.557, + "1992": 0.564, + "1993": 0.562, + "1994": 0.565, + "1995": 0.567, + "1996": 0.574, + "1997": 0.581, + "1998": 0.586, + "1999": 0.593, + "2000": 0.598, + "2001": 0.602, + "2002": 0.603, + "2003": 0.609, + "2004": 0.616, + "2005": 0.618, + "2006": 0.625, + "2007": 0.632, + "2008": 0.637, + "2009": 0.64, + "2010": 0.642, + "2011": 0.639, + "2012": 0.644, + "2013": 0.65, + "2014": 0.658, + "2015": 0.664, + "2016": 0.669, + "2017": 0.676, + "2018": 0.682, + "2019": 0.681, + "2020": 0.668, + "2021": 0.671 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr101", + "Region": "Grand Tunis (Tunis, Ariana, Ben Arous, Manouba)", + "1990": 0.64, + "1991": 0.641, + "1992": 0.649, + "1993": 0.647, + "1994": 0.65, + "1995": 0.652, + "1996": 0.66, + "1997": 0.667, + "1998": 0.673, + "1999": 0.68, + "2000": 0.685, + "2001": 0.69, + "2002": 0.69, + "2003": 0.697, + "2004": 0.705, + "2005": 0.707, + "2006": 0.714, + "2007": 0.722, + "2008": 0.727, + "2009": 0.73, + "2010": 0.733, + "2011": 0.729, + "2012": 0.734, + "2013": 0.733, + "2014": 0.735, + "2015": 0.734, + "2016": 0.732, + "2017": 0.731, + "2018": 0.731, + "2019": 0.73, + "2020": 0.717, + "2021": 0.72 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr102", + "Region": "Nord Est (Nabeul, Zaghouan, Bizerte)", + "1990": 0.621, + "1991": 0.622, + "1992": 0.63, + "1993": 0.628, + "1994": 0.631, + "1995": 0.632, + "1996": 0.64, + "1997": 0.647, + "1998": 0.653, + "1999": 0.66, + "2000": 0.665, + "2001": 0.669, + "2002": 0.67, + "2003": 0.677, + "2004": 0.684, + "2005": 0.687, + "2006": 0.694, + "2007": 0.702, + "2008": 0.706, + "2009": 0.71, + "2010": 0.712, + "2011": 0.708, + "2012": 0.713, + "2013": 0.712, + "2014": 0.713, + "2015": 0.71, + "2016": 0.708, + "2017": 0.706, + "2018": 0.705, + "2019": 0.703, + "2020": 0.691, + "2021": 0.694 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr103", + "Region": "Nord Ouest (Beja, Jendouba, Kef, Siliana)", + "1990": 0.572, + "1991": 0.574, + "1992": 0.581, + "1993": 0.579, + "1994": 0.582, + "1995": 0.584, + "1996": 0.591, + "1997": 0.598, + "1998": 0.604, + "1999": 0.611, + "2000": 0.615, + "2001": 0.619, + "2002": 0.62, + "2003": 0.626, + "2004": 0.634, + "2005": 0.636, + "2006": 0.643, + "2007": 0.651, + "2008": 0.655, + "2009": 0.658, + "2010": 0.661, + "2011": 0.657, + "2012": 0.662, + "2013": 0.668, + "2014": 0.677, + "2015": 0.682, + "2016": 0.687, + "2017": 0.694, + "2018": 0.7, + "2019": 0.699, + "2020": 0.686, + "2021": 0.689 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr107", + "Region": "Sud Est (Gabes, Medinine, Tataouine)", + "1990": 0.6, + "1991": 0.602, + "1992": 0.609, + "1993": 0.607, + "1994": 0.61, + "1995": 0.612, + "1996": 0.619, + "1997": 0.626, + "1998": 0.632, + "1999": 0.639, + "2000": 0.644, + "2001": 0.648, + "2002": 0.649, + "2003": 0.655, + "2004": 0.663, + "2005": 0.665, + "2006": 0.672, + "2007": 0.68, + "2008": 0.684, + "2009": 0.688, + "2010": 0.69, + "2011": 0.686, + "2012": 0.692, + "2013": 0.694, + "2014": 0.698, + "2015": 0.7, + "2016": 0.701, + "2017": 0.703, + "2018": 0.706, + "2019": 0.704, + "2020": 0.692, + "2021": 0.695 + }, + { + "Country": "Tunisia", + "Continent": "Africa", + "ISO_Code": "TUN", + "Level": "Subnat", + "GDLCODE": "TUNr106", + "Region": "Sud Ouest (Gafsa, Tozeur, Kebili)", + "1990": 0.617, + "1991": 0.618, + "1992": 0.626, + "1993": 0.624, + "1994": 0.627, + "1995": 0.629, + "1996": 0.636, + "1997": 0.643, + "1998": 0.649, + "1999": 0.656, + "2000": 0.661, + "2001": 0.665, + "2002": 0.666, + "2003": 0.672, + "2004": 0.68, + "2005": 0.683, + "2006": 0.69, + "2007": 0.698, + "2008": 0.702, + "2009": 0.706, + "2010": 0.708, + "2011": 0.704, + "2012": 0.709, + "2013": 0.707, + "2014": 0.708, + "2015": 0.706, + "2016": 0.703, + "2017": 0.701, + "2018": 0.699, + "2019": 0.698, + "2020": 0.685, + "2021": 0.689 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "National", + "GDLCODE": "TURt", + "Region": "Total", + "1990": 0.735, + "1991": 0.734, + "1992": 0.74, + "1993": 0.749, + "1994": 0.738, + "1995": 0.747, + "1996": 0.755, + "1997": 0.765, + "1998": 0.768, + "1999": 0.758, + "2000": 0.765, + "2001": 0.751, + "2002": 0.758, + "2003": 0.763, + "2004": 0.776, + "2005": 0.786, + "2006": 0.794, + "2007": 0.799, + "2008": 0.799, + "2009": 0.789, + "2010": 0.8, + "2011": 0.813, + "2012": 0.818, + "2013": 0.827, + "2014": 0.833, + "2015": 0.839, + "2016": 0.841, + "2017": 0.849, + "2018": 0.852, + "2019": 0.851, + "2020": 0.853, + "2021": 0.867 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr103", + "Region": "Aegean (Afyon, Aydin, Denizli, Izmir, Kutahya, Man", + "1990": 0.742, + "1991": 0.741, + "1992": 0.747, + "1993": 0.757, + "1994": 0.742, + "1995": 0.749, + "1996": 0.754, + "1997": 0.76, + "1998": 0.761, + "1999": 0.751, + "2000": 0.759, + "2001": 0.745, + "2002": 0.753, + "2003": 0.759, + "2004": 0.776, + "2005": 0.785, + "2006": 0.796, + "2007": 0.795, + "2008": 0.79, + "2009": 0.784, + "2010": 0.798, + "2011": 0.812, + "2012": 0.816, + "2013": 0.823, + "2014": 0.827, + "2015": 0.831, + "2016": 0.836, + "2017": 0.845, + "2018": 0.851, + "2019": 0.849, + "2020": 0.85, + "2021": 0.864 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr107", + "Region": "Central Anatolia (Kayseri, Kirsehir, Nevsehir, Nig", + "1990": 0.693, + "1991": 0.692, + "1992": 0.698, + "1993": 0.707, + "1994": 0.696, + "1995": 0.704, + "1996": 0.712, + "1997": 0.721, + "1998": 0.723, + "1999": 0.716, + "2000": 0.726, + "2001": 0.714, + "2002": 0.723, + "2003": 0.731, + "2004": 0.719, + "2005": 0.73, + "2006": 0.737, + "2007": 0.743, + "2008": 0.777, + "2009": 0.735, + "2010": 0.752, + "2011": 0.766, + "2012": 0.769, + "2013": 0.822, + "2014": 0.783, + "2015": 0.792, + "2016": 0.793, + "2017": 0.798, + "2018": 0.797, + "2019": 0.798, + "2020": 0.799, + "2021": 0.813 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr111", + "Region": "Central East Anatolia (Bingol, Bitlis, Elazig, Hak", + "1990": 0.655, + "1991": 0.654, + "1992": 0.66, + "1993": 0.669, + "1994": 0.655, + "1995": 0.661, + "1996": 0.666, + "1997": 0.672, + "1998": 0.672, + "1999": 0.671, + "2000": 0.687, + "2001": 0.682, + "2002": 0.697, + "2003": 0.711, + "2004": 0.636, + "2005": 0.653, + "2006": 0.657, + "2007": 0.665, + "2008": 0.76, + "2009": 0.66, + "2010": 0.681, + "2011": 0.694, + "2012": 0.706, + "2013": 0.813, + "2014": 0.71, + "2015": 0.715, + "2016": 0.721, + "2017": 0.729, + "2018": 0.727, + "2019": 0.731, + "2020": 0.732, + "2021": 0.745 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr109", + "Region": "East Black Sea (Artvin, Giresun, Gumushane, Ordu,", + "1990": 0.694, + "1991": 0.693, + "1992": 0.699, + "1993": 0.708, + "1994": 0.699, + "1995": 0.71, + "1996": 0.72, + "1997": 0.731, + "1998": 0.736, + "1999": 0.724, + "2000": 0.728, + "2001": 0.711, + "2002": 0.715, + "2003": 0.717, + "2004": 0.698, + "2005": 0.719, + "2006": 0.732, + "2007": 0.734, + "2008": 0.757, + "2009": 0.724, + "2010": 0.74, + "2011": 0.751, + "2012": 0.757, + "2013": 0.799, + "2014": 0.767, + "2015": 0.785, + "2016": 0.775, + "2017": 0.78, + "2018": 0.776, + "2019": 0.782, + "2020": 0.784, + "2021": 0.797 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr104", + "Region": "East Marmara (Bilecik, Bolu, Bursa, Duzce, Eskiseh", + "1990": 0.759, + "1991": 0.757, + "1992": 0.764, + "1993": 0.773, + "1994": 0.765, + "1995": 0.778, + "1996": 0.791, + "1997": 0.804, + "1998": 0.811, + "1999": 0.797, + "2000": 0.8, + "2001": 0.781, + "2002": 0.783, + "2003": 0.784, + "2004": 0.811, + "2005": 0.824, + "2006": 0.836, + "2007": 0.84, + "2008": 0.825, + "2009": 0.822, + "2010": 0.829, + "2011": 0.847, + "2012": 0.848, + "2013": 0.832, + "2014": 0.863, + "2015": 0.869, + "2016": 0.868, + "2017": 0.88, + "2018": 0.888, + "2019": 0.879, + "2020": 0.881, + "2021": 0.895 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr101", + "Region": "Istanbul", + "1990": 0.819, + "1991": 0.817, + "1992": 0.824, + "1993": 0.834, + "1994": 0.816, + "1995": 0.819, + "1996": 0.821, + "1997": 0.824, + "1998": 0.821, + "1999": 0.812, + "2000": 0.819, + "2001": 0.805, + "2002": 0.813, + "2003": 0.819, + "2004": 0.868, + "2005": 0.877, + "2006": 0.883, + "2007": 0.888, + "2008": 0.841, + "2009": 0.876, + "2010": 0.881, + "2011": 0.895, + "2012": 0.9, + "2013": 0.85, + "2014": 0.917, + "2015": 0.924, + "2016": 0.926, + "2017": 0.935, + "2018": 0.94, + "2019": 0.938, + "2020": 0.94, + "2021": 0.955 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr106", + "Region": "Mediterranean (Adana, Antalya, Burdur, Hatay, Ispa", + "1990": 0.744, + "1991": 0.742, + "1992": 0.749, + "1993": 0.758, + "1994": 0.743, + "1995": 0.748, + "1996": 0.752, + "1997": 0.757, + "1998": 0.756, + "1999": 0.746, + "2000": 0.752, + "2001": 0.737, + "2002": 0.744, + "2003": 0.749, + "2004": 0.742, + "2005": 0.752, + "2006": 0.758, + "2007": 0.765, + "2008": 0.771, + "2009": 0.756, + "2010": 0.768, + "2011": 0.779, + "2012": 0.783, + "2013": 0.821, + "2014": 0.796, + "2015": 0.8, + "2016": 0.799, + "2017": 0.806, + "2018": 0.814, + "2019": 0.816, + "2020": 0.818, + "2021": 0.831 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr110", + "Region": "North East Anatolia (Agri, Erzincan, Erzurum, Kars", + "1990": 0.605, + "1991": 0.604, + "1992": 0.61, + "1993": 0.618, + "1994": 0.623, + "1995": 0.646, + "1996": 0.669, + "1997": 0.693, + "1998": 0.711, + "1999": 0.702, + "2000": 0.709, + "2001": 0.695, + "2002": 0.702, + "2003": 0.707, + "2004": 0.653, + "2005": 0.66, + "2006": 0.668, + "2007": 0.675, + "2008": 0.741, + "2009": 0.675, + "2010": 0.703, + "2011": 0.71, + "2012": 0.72, + "2013": 0.785, + "2014": 0.725, + "2015": 0.733, + "2016": 0.742, + "2017": 0.748, + "2018": 0.744, + "2019": 0.748, + "2020": 0.75, + "2021": 0.763 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr112", + "Region": "South East Anatolia (Adiyaman, Diyarbakir, Gaziant", + "1990": 0.698, + "1991": 0.697, + "1992": 0.703, + "1993": 0.712, + "1994": 0.698, + "1995": 0.705, + "1996": 0.71, + "1997": 0.716, + "1998": 0.717, + "1999": 0.711, + "2000": 0.721, + "2001": 0.711, + "2002": 0.722, + "2003": 0.731, + "2004": 0.654, + "2005": 0.663, + "2006": 0.671, + "2007": 0.671, + "2008": 0.778, + "2009": 0.66, + "2010": 0.682, + "2011": 0.695, + "2012": 0.701, + "2013": 0.807, + "2014": 0.717, + "2015": 0.725, + "2016": 0.724, + "2017": 0.733, + "2018": 0.732, + "2019": 0.732, + "2020": 0.734, + "2021": 0.747 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr105", + "Region": "West Anatolia (Ankara, Konya, Karaman)", + "1990": 0.76, + "1991": 0.758, + "1992": 0.765, + "1993": 0.774, + "1994": 0.764, + "1995": 0.776, + "1996": 0.786, + "1997": 0.798, + "1998": 0.803, + "1999": 0.79, + "2000": 0.794, + "2001": 0.776, + "2002": 0.78, + "2003": 0.783, + "2004": 0.81, + "2005": 0.82, + "2006": 0.829, + "2007": 0.836, + "2008": 0.819, + "2009": 0.829, + "2010": 0.834, + "2011": 0.846, + "2012": 0.85, + "2013": 0.841, + "2014": 0.866, + "2015": 0.869, + "2016": 0.875, + "2017": 0.877, + "2018": 0.876, + "2019": 0.88, + "2020": 0.882, + "2021": 0.896 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr108", + "Region": "West Black Sea (Amasya, Cankiri, Corum, Kastamonu,", + "1990": 0.697, + "1991": 0.695, + "1992": 0.702, + "1993": 0.71, + "1994": 0.706, + "1995": 0.721, + "1996": 0.735, + "1997": 0.751, + "1998": 0.76, + "1999": 0.75, + "2000": 0.756, + "2001": 0.741, + "2002": 0.747, + "2003": 0.752, + "2004": 0.703, + "2005": 0.715, + "2006": 0.723, + "2007": 0.727, + "2008": 0.779, + "2009": 0.723, + "2010": 0.742, + "2011": 0.754, + "2012": 0.756, + "2013": 0.822, + "2014": 0.77, + "2015": 0.776, + "2016": 0.779, + "2017": 0.784, + "2018": 0.78, + "2019": 0.777, + "2020": 0.779, + "2021": 0.792 + }, + { + "Country": "Turkey", + "Continent": "Asia/Pacific", + "ISO_Code": "TUR", + "Level": "Subnat", + "GDLCODE": "TURr102", + "Region": "West Marmara (Balikesir, Canakkale, Edirne, Kirkla", + "1990": 0.662, + "1991": 0.661, + "1992": 0.667, + "1993": 0.675, + "1994": 0.673, + "1995": 0.69, + "1996": 0.707, + "1997": 0.724, + "1998": 0.735, + "1999": 0.729, + "2000": 0.739, + "2001": 0.728, + "2002": 0.738, + "2003": 0.747, + "2004": 0.789, + "2005": 0.798, + "2006": 0.801, + "2007": 0.808, + "2008": 0.786, + "2009": 0.798, + "2010": 0.811, + "2011": 0.821, + "2012": 0.824, + "2013": 0.819, + "2014": 0.835, + "2015": 0.839, + "2016": 0.845, + "2017": 0.852, + "2018": 0.858, + "2019": 0.858, + "2020": 0.86, + "2021": 0.874 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "National", + "GDLCODE": "TKMt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.725, + "2011": 0.74, + "2012": 0.748, + "2013": 0.747, + "2014": 0.75, + "2015": 0.755, + "2016": 0.75, + "2017": 0.742, + "2018": 0.755, + "2019": 0.738, + "2020": 0.73, + "2021": 0.736 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr102", + "Region": "Akhal", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.722, + "2011": 0.735, + "2012": 0.741, + "2013": 0.739, + "2014": 0.741, + "2015": 0.745, + "2016": 0.741, + "2017": 0.735, + "2018": 0.748, + "2019": 0.733, + "2020": 0.725, + "2021": 0.73 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr101", + "Region": "Ashgabat City", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.784, + "2011": 0.796, + "2012": 0.8, + "2013": 0.796, + "2014": 0.797, + "2015": 0.798, + "2016": 0.796, + "2017": 0.79, + "2018": 0.806, + "2019": 0.791, + "2020": 0.783, + "2021": 0.788 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr103", + "Region": "Balkan", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.747, + "2011": 0.762, + "2012": 0.769, + "2013": 0.767, + "2014": 0.77, + "2015": 0.775, + "2016": 0.769, + "2017": 0.76, + "2018": 0.772, + "2019": 0.754, + "2020": 0.746, + "2021": 0.751 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr104", + "Region": "Dashoguz", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.715, + "2011": 0.731, + "2012": 0.74, + "2013": 0.741, + "2014": 0.747, + "2015": 0.753, + "2016": 0.742, + "2017": 0.728, + "2018": 0.734, + "2019": 0.71, + "2020": 0.703, + "2021": 0.708 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr105", + "Region": "Lebap", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.711, + "2011": 0.727, + "2012": 0.735, + "2013": 0.736, + "2014": 0.741, + "2015": 0.747, + "2016": 0.744, + "2017": 0.738, + "2018": 0.753, + "2019": 0.738, + "2020": 0.731, + "2021": 0.736 + }, + { + "Country": "Turkmenistan", + "Continent": "Asia/Pacific", + "ISO_Code": "TKM", + "Level": "Subnat", + "GDLCODE": "TKMr106", + "Region": "Mary", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": null, + "2006": null, + "2007": null, + "2008": null, + "2009": null, + "2010": 0.708, + "2011": 0.722, + "2012": 0.728, + "2013": 0.727, + "2014": 0.73, + "2015": 0.734, + "2016": 0.731, + "2017": 0.724, + "2018": 0.738, + "2019": 0.722, + "2020": 0.715, + "2021": 0.72 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "National", + "GDLCODE": "TUVt", + "Region": "Total", + "1990": 0.523, + "1991": 0.527, + "1992": 0.53, + "1993": 0.535, + "1994": 0.548, + "1995": 0.539, + "1996": 0.53, + "1997": 0.542, + "1998": 0.564, + "1999": 0.561, + "2000": 0.56, + "2001": 0.581, + "2002": 0.607, + "2003": 0.558, + "2004": 0.568, + "2005": 0.561, + "2006": 0.56, + "2007": 0.561, + "2008": 0.571, + "2009": 0.559, + "2010": 0.557, + "2011": 0.554, + "2012": 0.57, + "2013": 0.579, + "2014": 0.571, + "2015": 0.6, + "2016": 0.615, + "2017": 0.607, + "2018": 0.63, + "2019": 0.611, + "2020": 0.624, + "2021": 0.627 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr103", + "Region": "Funafuti", + "1990": 0.541, + "1991": 0.544, + "1992": 0.547, + "1993": 0.552, + "1994": 0.565, + "1995": 0.556, + "1996": 0.547, + "1997": 0.56, + "1998": 0.582, + "1999": 0.579, + "2000": 0.578, + "2001": 0.599, + "2002": 0.625, + "2003": 0.576, + "2004": 0.586, + "2005": 0.578, + "2006": 0.577, + "2007": 0.578, + "2008": 0.589, + "2009": 0.577, + "2010": 0.574, + "2011": 0.572, + "2012": 0.588, + "2013": 0.597, + "2014": 0.589, + "2015": 0.618, + "2016": 0.633, + "2017": 0.626, + "2018": 0.648, + "2019": 0.629, + "2020": 0.642, + "2021": 0.646 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr101", + "Region": "Nanumea, Nanumaga, Niutao", + "1990": 0.493, + "1991": 0.496, + "1992": 0.5, + "1993": 0.504, + "1994": 0.517, + "1995": 0.508, + "1996": 0.499, + "1997": 0.511, + "1998": 0.533, + "1999": 0.53, + "2000": 0.529, + "2001": 0.549, + "2002": 0.574, + "2003": 0.527, + "2004": 0.536, + "2005": 0.53, + "2006": 0.529, + "2007": 0.529, + "2008": 0.539, + "2009": 0.528, + "2010": 0.526, + "2011": 0.523, + "2012": 0.539, + "2013": 0.547, + "2014": 0.539, + "2015": 0.567, + "2016": 0.582, + "2017": 0.575, + "2018": 0.597, + "2019": 0.578, + "2020": 0.591, + "2021": 0.594 + }, + { + "Country": "Tuvalu", + "Continent": "Asia/Pacific", + "ISO_Code": "TUV", + "Level": "Subnat", + "GDLCODE": "TUVr102", + "Region": "Vaitupu, Nui, Nukufetau", + "1990": 0.511, + "1991": 0.515, + "1992": 0.518, + "1993": 0.522, + "1994": 0.536, + "1995": 0.526, + "1996": 0.517, + "1997": 0.53, + "1998": 0.552, + "1999": 0.549, + "2000": 0.547, + "2001": 0.568, + "2002": 0.593, + "2003": 0.545, + "2004": 0.555, + "2005": 0.548, + "2006": 0.547, + "2007": 0.548, + "2008": 0.558, + "2009": 0.547, + "2010": 0.544, + "2011": 0.542, + "2012": 0.558, + "2013": 0.566, + "2014": 0.558, + "2015": 0.587, + "2016": 0.602, + "2017": 0.594, + "2018": 0.616, + "2019": 0.597, + "2020": 0.611, + "2021": 0.614 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "National", + "GDLCODE": "UGAt", + "Region": "Total", + "1990": 0.331, + "1991": 0.335, + "1992": 0.333, + "1993": 0.342, + "1994": 0.347, + "1995": 0.359, + "1996": 0.368, + "1997": 0.372, + "1998": 0.375, + "1999": 0.382, + "2000": 0.38, + "2001": 0.381, + "2002": 0.391, + "2003": 0.395, + "2004": 0.4, + "2005": 0.404, + "2006": 0.415, + "2007": 0.423, + "2008": 0.431, + "2009": 0.437, + "2010": 0.44, + "2011": 0.449, + "2012": 0.449, + "2013": 0.449, + "2014": 0.452, + "2015": 0.455, + "2016": 0.456, + "2017": 0.454, + "2018": 0.457, + "2019": 0.462, + "2020": 0.463, + "2021": 0.466 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr101", + "Region": "Central 1 (Central South)", + "1990": 0.347, + "1991": 0.35, + "1992": 0.348, + "1993": 0.358, + "1994": 0.362, + "1995": 0.375, + "1996": 0.384, + "1997": 0.388, + "1998": 0.392, + "1999": 0.399, + "2000": 0.397, + "2001": 0.398, + "2002": 0.407, + "2003": 0.412, + "2004": 0.416, + "2005": 0.421, + "2006": 0.432, + "2007": 0.441, + "2008": 0.449, + "2009": 0.455, + "2010": 0.459, + "2011": 0.468, + "2012": 0.478, + "2013": 0.488, + "2014": 0.5, + "2015": 0.512, + "2016": 0.524, + "2017": 0.522, + "2018": 0.525, + "2019": 0.529, + "2020": 0.53, + "2021": 0.534 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr102", + "Region": "Central 2 (Central North)", + "1990": 0.338, + "1991": 0.341, + "1992": 0.339, + "1993": 0.349, + "1994": 0.353, + "1995": 0.366, + "1996": 0.375, + "1997": 0.379, + "1998": 0.382, + "1999": 0.389, + "2000": 0.387, + "2001": 0.388, + "2002": 0.398, + "2003": 0.402, + "2004": 0.407, + "2005": 0.411, + "2006": 0.422, + "2007": 0.43, + "2008": 0.438, + "2009": 0.444, + "2010": 0.447, + "2011": 0.456, + "2012": 0.459, + "2013": 0.461, + "2014": 0.466, + "2015": 0.471, + "2016": 0.476, + "2017": 0.474, + "2018": 0.477, + "2019": 0.481, + "2020": 0.482, + "2021": 0.485 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr104", + "Region": "East Central (Busoga)", + "1990": 0.329, + "1991": 0.332, + "1992": 0.331, + "1993": 0.34, + "1994": 0.344, + "1995": 0.357, + "1996": 0.366, + "1997": 0.37, + "1998": 0.373, + "1999": 0.38, + "2000": 0.378, + "2001": 0.379, + "2002": 0.388, + "2003": 0.393, + "2004": 0.397, + "2005": 0.401, + "2006": 0.413, + "2007": 0.419, + "2008": 0.426, + "2009": 0.429, + "2010": 0.431, + "2011": 0.438, + "2012": 0.44, + "2013": 0.442, + "2014": 0.445, + "2015": 0.45, + "2016": 0.453, + "2017": 0.451, + "2018": 0.454, + "2019": 0.458, + "2020": 0.459, + "2021": 0.462 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr105", + "Region": "Eastern (Bukedi, Bugishu, Teso)", + "1990": 0.31, + "1991": 0.313, + "1992": 0.311, + "1993": 0.32, + "1994": 0.325, + "1995": 0.337, + "1996": 0.346, + "1997": 0.35, + "1998": 0.353, + "1999": 0.36, + "2000": 0.358, + "2001": 0.359, + "2002": 0.368, + "2003": 0.372, + "2004": 0.377, + "2005": 0.381, + "2006": 0.392, + "2007": 0.398, + "2008": 0.404, + "2009": 0.408, + "2010": 0.41, + "2011": 0.417, + "2012": 0.418, + "2013": 0.419, + "2014": 0.422, + "2015": 0.426, + "2016": 0.428, + "2017": 0.427, + "2018": 0.429, + "2019": 0.434, + "2020": 0.435, + "2021": 0.438 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr103", + "Region": "Kampala", + "1990": 0.447, + "1991": 0.45, + "1992": 0.448, + "1993": 0.459, + "1994": 0.464, + "1995": 0.477, + "1996": 0.488, + "1997": 0.492, + "1998": 0.495, + "1999": 0.503, + "2000": 0.501, + "2001": 0.502, + "2002": 0.512, + "2003": 0.518, + "2004": 0.522, + "2005": 0.527, + "2006": 0.54, + "2007": 0.55, + "2008": 0.561, + "2009": 0.568, + "2010": 0.574, + "2011": 0.585, + "2012": 0.586, + "2013": 0.587, + "2014": 0.591, + "2015": 0.595, + "2016": 0.598, + "2017": 0.596, + "2018": 0.599, + "2019": 0.604, + "2020": 0.605, + "2021": 0.609 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr106", + "Region": "North (Karamoja, Lango, Acholi)", + "1990": 0.298, + "1991": 0.301, + "1992": 0.299, + "1993": 0.308, + "1994": 0.313, + "1995": 0.325, + "1996": 0.334, + "1997": 0.337, + "1998": 0.34, + "1999": 0.347, + "2000": 0.345, + "2001": 0.346, + "2002": 0.355, + "2003": 0.36, + "2004": 0.364, + "2005": 0.368, + "2006": 0.379, + "2007": 0.385, + "2008": 0.391, + "2009": 0.394, + "2010": 0.395, + "2011": 0.401, + "2012": 0.401, + "2013": 0.4, + "2014": 0.402, + "2015": 0.404, + "2016": 0.405, + "2017": 0.403, + "2018": 0.406, + "2019": 0.41, + "2020": 0.411, + "2021": 0.414 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr109", + "Region": "Southwest (Ankole, Kigezi)", + "1990": 0.33, + "1991": 0.333, + "1992": 0.331, + "1993": 0.34, + "1994": 0.345, + "1995": 0.357, + "1996": 0.367, + "1997": 0.37, + "1998": 0.374, + "1999": 0.381, + "2000": 0.379, + "2001": 0.38, + "2002": 0.389, + "2003": 0.394, + "2004": 0.398, + "2005": 0.402, + "2006": 0.413, + "2007": 0.42, + "2008": 0.426, + "2009": 0.43, + "2010": 0.432, + "2011": 0.439, + "2012": 0.438, + "2013": 0.438, + "2014": 0.439, + "2015": 0.441, + "2016": 0.442, + "2017": 0.44, + "2018": 0.443, + "2019": 0.447, + "2020": 0.448, + "2021": 0.451 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr107", + "Region": "West Nile", + "1990": 0.308, + "1991": 0.311, + "1992": 0.31, + "1993": 0.319, + "1994": 0.323, + "1995": 0.335, + "1996": 0.344, + "1997": 0.348, + "1998": 0.351, + "1999": 0.358, + "2000": 0.356, + "2001": 0.357, + "2002": 0.366, + "2003": 0.371, + "2004": 0.375, + "2005": 0.379, + "2006": 0.39, + "2007": 0.395, + "2008": 0.4, + "2009": 0.403, + "2010": 0.403, + "2011": 0.409, + "2012": 0.407, + "2013": 0.406, + "2014": 0.406, + "2015": 0.407, + "2016": 0.407, + "2017": 0.405, + "2018": 0.408, + "2019": 0.412, + "2020": 0.413, + "2021": 0.416 + }, + { + "Country": "Uganda", + "Continent": "Africa", + "ISO_Code": "UGA", + "Level": "Subnat", + "GDLCODE": "UGAr108", + "Region": "Western (Bunyoro, Tooro)", + "1990": 0.322, + "1991": 0.325, + "1992": 0.323, + "1993": 0.332, + "1994": 0.337, + "1995": 0.349, + "1996": 0.358, + "1997": 0.362, + "1998": 0.365, + "1999": 0.372, + "2000": 0.37, + "2001": 0.371, + "2002": 0.38, + "2003": 0.385, + "2004": 0.389, + "2005": 0.393, + "2006": 0.405, + "2007": 0.414, + "2008": 0.423, + "2009": 0.43, + "2010": 0.435, + "2011": 0.445, + "2012": 0.442, + "2013": 0.44, + "2014": 0.44, + "2015": 0.44, + "2016": 0.439, + "2017": 0.438, + "2018": 0.44, + "2019": 0.445, + "2020": 0.446, + "2021": 0.449 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "National", + "GDLCODE": "UKRt", + "Region": "Total", + "1990": 0.774, + "1991": 0.759, + "1992": 0.74, + "1993": 0.714, + "1994": 0.677, + "1995": 0.659, + "1996": 0.644, + "1997": 0.641, + "1998": 0.638, + "1999": 0.638, + "2000": 0.644, + "2001": 0.66, + "2002": 0.669, + "2003": 0.685, + "2004": 0.703, + "2005": 0.708, + "2006": 0.719, + "2007": 0.733, + "2008": 0.735, + "2009": 0.711, + "2010": 0.721, + "2011": 0.727, + "2012": 0.733, + "2013": 0.733, + "2014": 0.726, + "2015": 0.719, + "2016": 0.719, + "2017": 0.724, + "2018": 0.729, + "2019": 0.735, + "2020": 0.732, + "2021": 0.738 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr102", + "Region": "Central", + "1990": 0.755, + "1991": 0.741, + "1992": 0.722, + "1993": 0.696, + "1994": 0.66, + "1995": 0.641, + "1996": 0.627, + "1997": 0.624, + "1998": 0.621, + "1999": 0.621, + "2000": 0.627, + "2001": 0.643, + "2002": 0.652, + "2003": 0.667, + "2004": 0.685, + "2005": 0.69, + "2006": 0.695, + "2007": 0.704, + "2008": 0.708, + "2009": 0.686, + "2010": 0.697, + "2011": 0.705, + "2012": 0.713, + "2013": 0.713, + "2014": 0.706, + "2015": 0.699, + "2016": 0.698, + "2017": 0.703, + "2018": 0.708, + "2019": 0.714, + "2020": 0.711, + "2021": 0.718 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr103", + "Region": "East", + "1990": 0.786, + "1991": 0.771, + "1992": 0.752, + "1993": 0.725, + "1994": 0.688, + "1995": 0.67, + "1996": 0.655, + "1997": 0.652, + "1998": 0.649, + "1999": 0.649, + "2000": 0.655, + "2001": 0.671, + "2002": 0.68, + "2003": 0.696, + "2004": 0.714, + "2005": 0.719, + "2006": 0.734, + "2007": 0.751, + "2008": 0.753, + "2009": 0.728, + "2010": 0.736, + "2011": 0.742, + "2012": 0.748, + "2013": 0.748, + "2014": 0.741, + "2015": 0.733, + "2016": 0.733, + "2017": 0.738, + "2018": 0.743, + "2019": 0.749, + "2020": 0.746, + "2021": 0.753 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr101", + "Region": "North", + "1990": 0.783, + "1991": 0.769, + "1992": 0.749, + "1993": 0.723, + "1994": 0.686, + "1995": 0.667, + "1996": 0.653, + "1997": 0.649, + "1998": 0.647, + "1999": 0.647, + "2000": 0.652, + "2001": 0.669, + "2002": 0.678, + "2003": 0.693, + "2004": 0.712, + "2005": 0.717, + "2006": 0.725, + "2007": 0.735, + "2008": 0.737, + "2009": 0.711, + "2010": 0.719, + "2011": 0.724, + "2012": 0.728, + "2013": 0.728, + "2014": 0.721, + "2015": 0.714, + "2016": 0.714, + "2017": 0.718, + "2018": 0.724, + "2019": 0.73, + "2020": 0.727, + "2021": 0.733 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr104", + "Region": "South", + "1990": 0.78, + "1991": 0.765, + "1992": 0.746, + "1993": 0.72, + "1994": 0.683, + "1995": 0.664, + "1996": 0.649, + "1997": 0.646, + "1998": 0.644, + "1999": 0.644, + "2000": 0.649, + "2001": 0.666, + "2002": 0.675, + "2003": 0.69, + "2004": 0.708, + "2005": 0.714, + "2006": 0.725, + "2007": 0.738, + "2008": 0.743, + "2009": 0.72, + "2010": 0.731, + "2011": 0.74, + "2012": 0.747, + "2013": 0.747, + "2014": 0.74, + "2015": 0.733, + "2016": 0.733, + "2017": 0.738, + "2018": 0.743, + "2019": 0.749, + "2020": 0.746, + "2021": 0.752 + }, + { + "Country": "Ukraine", + "Continent": "Europe", + "ISO_Code": "UKR", + "Level": "Subnat", + "GDLCODE": "UKRr105", + "Region": "West", + "1990": 0.754, + "1991": 0.74, + "1992": 0.721, + "1993": 0.695, + "1994": 0.659, + "1995": 0.641, + "1996": 0.626, + "1997": 0.623, + "1998": 0.62, + "1999": 0.621, + "2000": 0.626, + "2001": 0.642, + "2002": 0.651, + "2003": 0.666, + "2004": 0.684, + "2005": 0.689, + "2006": 0.7, + "2007": 0.712, + "2008": 0.716, + "2009": 0.693, + "2010": 0.702, + "2011": 0.709, + "2012": 0.716, + "2013": 0.716, + "2014": 0.709, + "2015": 0.702, + "2016": 0.702, + "2017": 0.706, + "2018": 0.712, + "2019": 0.718, + "2020": 0.715, + "2021": 0.721 + }, + { + "Country": "United Arab Emirates", + "Continent": "Asia/Pacific", + "ISO_Code": "ARE", + "Level": "National", + "GDLCODE": "AREt", + "Region": "Total", + "1990": 1, + "1991": 1, + "1992": 1, + "1993": 1, + "1994": 1, + "1995": 1, + "1996": 1, + "1997": 1, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 0.989, + "2009": 0.964, + "2010": 0.953, + "2011": 0.956, + "2012": 0.96, + "2013": 0.966, + "2014": 0.973, + "2015": 0.98, + "2016": 0.983, + "2017": 0.984, + "2018": 0.983, + "2019": 0.987, + "2020": 0.974, + "2021": 0.973 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "National", + "GDLCODE": "GBRt", + "Region": "Total", + "1990": 0.866, + "1991": 0.865, + "1992": 0.867, + "1993": 0.87, + "1994": 0.877, + "1995": 0.868, + "1996": 0.871, + "1997": 0.881, + "1998": 0.888, + "1999": 0.891, + "2000": 0.896, + "2001": 0.9, + "2002": 0.904, + "2003": 0.909, + "2004": 0.912, + "2005": 0.915, + "2006": 0.916, + "2007": 0.917, + "2008": 0.914, + "2009": 0.908, + "2010": 0.911, + "2011": 0.912, + "2012": 0.911, + "2013": 0.913, + "2014": 0.917, + "2015": 0.92, + "2016": 0.922, + "2017": 0.925, + "2018": 0.927, + "2019": 0.93, + "2020": 0.914, + "2021": 0.924 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr104", + "Region": "East Midlands", + "1990": 0.84, + "1991": 0.838, + "1992": 0.84, + "1993": 0.843, + "1994": 0.851, + "1995": 0.842, + "1996": 0.845, + "1997": 0.854, + "1998": 0.861, + "1999": 0.864, + "2000": 0.869, + "2001": 0.873, + "2002": 0.877, + "2003": 0.882, + "2004": 0.884, + "2005": 0.885, + "2006": 0.885, + "2007": 0.885, + "2008": 0.881, + "2009": 0.874, + "2010": 0.879, + "2011": 0.881, + "2012": 0.88, + "2013": 0.881, + "2014": 0.885, + "2015": 0.887, + "2016": 0.888, + "2017": 0.891, + "2018": 0.893, + "2019": 0.896, + "2020": 0.88, + "2021": 0.89 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr106", + "Region": "East of England", + "1990": 0.865, + "1991": 0.863, + "1992": 0.865, + "1993": 0.868, + "1994": 0.876, + "1995": 0.867, + "1996": 0.87, + "1997": 0.88, + "1998": 0.887, + "1999": 0.889, + "2000": 0.895, + "2001": 0.899, + "2002": 0.903, + "2003": 0.908, + "2004": 0.91, + "2005": 0.907, + "2006": 0.907, + "2007": 0.906, + "2008": 0.904, + "2009": 0.895, + "2010": 0.898, + "2011": 0.897, + "2012": 0.895, + "2013": 0.897, + "2014": 0.902, + "2015": 0.906, + "2016": 0.908, + "2017": 0.911, + "2018": 0.913, + "2019": 0.916, + "2020": 0.899, + "2021": 0.909 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr107", + "Region": "London", + "1990": 0.939, + "1991": 0.937, + "1992": 0.939, + "1993": 0.943, + "1994": 0.951, + "1995": 0.941, + "1996": 0.944, + "1997": 0.954, + "1998": 0.962, + "1999": 0.964, + "2000": 0.97, + "2001": 0.974, + "2002": 0.979, + "2003": 0.984, + "2004": 0.986, + "2005": 0.998, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.994, + "2010": 0.997, + "2011": 0.998, + "2012": 0.998, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr101", + "Region": "North East", + "1990": 0.825, + "1991": 0.823, + "1992": 0.825, + "1993": 0.828, + "1994": 0.836, + "1995": 0.827, + "1996": 0.83, + "1997": 0.839, + "1998": 0.846, + "1999": 0.849, + "2000": 0.854, + "2001": 0.858, + "2002": 0.862, + "2003": 0.866, + "2004": 0.869, + "2005": 0.875, + "2006": 0.877, + "2007": 0.873, + "2008": 0.871, + "2009": 0.867, + "2010": 0.869, + "2011": 0.871, + "2012": 0.869, + "2013": 0.867, + "2014": 0.871, + "2015": 0.874, + "2016": 0.872, + "2017": 0.876, + "2018": 0.877, + "2019": 0.881, + "2020": 0.865, + "2021": 0.874 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr102", + "Region": "North West", + "1990": 0.845, + "1991": 0.843, + "1992": 0.845, + "1993": 0.848, + "1994": 0.856, + "1995": 0.847, + "1996": 0.85, + "1997": 0.859, + "1998": 0.866, + "1999": 0.869, + "2000": 0.875, + "2001": 0.878, + "2002": 0.882, + "2003": 0.887, + "2004": 0.89, + "2005": 0.895, + "2006": 0.897, + "2007": 0.898, + "2008": 0.892, + "2009": 0.889, + "2010": 0.894, + "2011": 0.892, + "2012": 0.891, + "2013": 0.892, + "2014": 0.894, + "2015": 0.899, + "2016": 0.901, + "2017": 0.905, + "2018": 0.906, + "2019": 0.909, + "2020": 0.893, + "2021": 0.903 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr112", + "Region": "Northern Ireland", + "1990": 0.83, + "1991": 0.829, + "1992": 0.831, + "1993": 0.834, + "1994": 0.841, + "1995": 0.832, + "1996": 0.835, + "1997": 0.845, + "1998": 0.852, + "1999": 0.854, + "2000": 0.86, + "2001": 0.863, + "2002": 0.868, + "2003": 0.872, + "2004": 0.875, + "2005": 0.885, + "2006": 0.886, + "2007": 0.885, + "2008": 0.878, + "2009": 0.871, + "2010": 0.872, + "2011": 0.873, + "2012": 0.872, + "2013": 0.872, + "2014": 0.873, + "2015": 0.877, + "2016": 0.879, + "2017": 0.882, + "2018": 0.884, + "2019": 0.887, + "2020": 0.871, + "2021": 0.881 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr111", + "Region": "Scotland", + "1990": 0.854, + "1991": 0.852, + "1992": 0.854, + "1993": 0.857, + "1994": 0.865, + "1995": 0.856, + "1996": 0.859, + "1997": 0.868, + "1998": 0.875, + "1999": 0.878, + "2000": 0.884, + "2001": 0.887, + "2002": 0.892, + "2003": 0.896, + "2004": 0.899, + "2005": 0.905, + "2006": 0.907, + "2007": 0.907, + "2008": 0.906, + "2009": 0.903, + "2010": 0.902, + "2011": 0.903, + "2012": 0.902, + "2013": 0.905, + "2014": 0.91, + "2015": 0.911, + "2016": 0.912, + "2017": 0.916, + "2018": 0.917, + "2019": 0.921, + "2020": 0.904, + "2021": 0.914 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr108", + "Region": "South East", + "1990": 0.883, + "1991": 0.881, + "1992": 0.883, + "1993": 0.886, + "1994": 0.894, + "1995": 0.885, + "1996": 0.888, + "1997": 0.897, + "1998": 0.905, + "1999": 0.907, + "2000": 0.913, + "2001": 0.917, + "2002": 0.921, + "2003": 0.926, + "2004": 0.929, + "2005": 0.93, + "2006": 0.93, + "2007": 0.929, + "2008": 0.93, + "2009": 0.923, + "2010": 0.926, + "2011": 0.927, + "2012": 0.927, + "2013": 0.927, + "2014": 0.93, + "2015": 0.935, + "2016": 0.935, + "2017": 0.939, + "2018": 0.94, + "2019": 0.944, + "2020": 0.927, + "2021": 0.937 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr109", + "Region": "South West", + "1990": 0.857, + "1991": 0.855, + "1992": 0.857, + "1993": 0.86, + "1994": 0.868, + "1995": 0.859, + "1996": 0.862, + "1997": 0.871, + "1998": 0.878, + "1999": 0.881, + "2000": 0.887, + "2001": 0.891, + "2002": 0.895, + "2003": 0.899, + "2004": 0.902, + "2005": 0.899, + "2006": 0.898, + "2007": 0.898, + "2008": 0.896, + "2009": 0.891, + "2010": 0.896, + "2011": 0.894, + "2012": 0.894, + "2013": 0.892, + "2014": 0.898, + "2015": 0.899, + "2016": 0.901, + "2017": 0.905, + "2018": 0.906, + "2019": 0.909, + "2020": 0.893, + "2021": 0.903 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr110", + "Region": "Wales", + "1990": 0.821, + "1991": 0.819, + "1992": 0.821, + "1993": 0.824, + "1994": 0.832, + "1995": 0.823, + "1996": 0.825, + "1997": 0.835, + "1998": 0.842, + "1999": 0.844, + "2000": 0.85, + "2001": 0.854, + "2002": 0.858, + "2003": 0.862, + "2004": 0.865, + "2005": 0.866, + "2006": 0.868, + "2007": 0.866, + "2008": 0.858, + "2009": 0.853, + "2010": 0.857, + "2011": 0.864, + "2012": 0.862, + "2013": 0.863, + "2014": 0.864, + "2015": 0.869, + "2016": 0.872, + "2017": 0.875, + "2018": 0.877, + "2019": 0.88, + "2020": 0.864, + "2021": 0.874 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr105", + "Region": "West Midlands", + "1990": 0.845, + "1991": 0.844, + "1992": 0.846, + "1993": 0.849, + "1994": 0.857, + "1995": 0.848, + "1996": 0.85, + "1997": 0.86, + "1998": 0.867, + "1999": 0.87, + "2000": 0.875, + "2001": 0.879, + "2002": 0.883, + "2003": 0.888, + "2004": 0.89, + "2005": 0.888, + "2006": 0.887, + "2007": 0.885, + "2008": 0.881, + "2009": 0.871, + "2010": 0.878, + "2011": 0.881, + "2012": 0.88, + "2013": 0.881, + "2014": 0.886, + "2015": 0.89, + "2016": 0.893, + "2017": 0.896, + "2018": 0.897, + "2019": 0.901, + "2020": 0.885, + "2021": 0.894 + }, + { + "Country": "United Kingdom", + "Continent": "Europe", + "ISO_Code": "GBR", + "Level": "Subnat", + "GDLCODE": "GBRr103", + "Region": "Yorkshire and The Humber", + "1990": 0.843, + "1991": 0.842, + "1992": 0.844, + "1993": 0.847, + "1994": 0.854, + "1995": 0.845, + "1996": 0.848, + "1997": 0.858, + "1998": 0.865, + "1999": 0.867, + "2000": 0.873, + "2001": 0.877, + "2002": 0.881, + "2003": 0.885, + "2004": 0.888, + "2005": 0.889, + "2006": 0.889, + "2007": 0.893, + "2008": 0.885, + "2009": 0.88, + "2010": 0.88, + "2011": 0.881, + "2012": 0.878, + "2013": 0.878, + "2014": 0.879, + "2015": 0.885, + "2016": 0.884, + "2017": 0.887, + "2018": 0.889, + "2019": 0.892, + "2020": 0.876, + "2021": 0.886 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "National", + "GDLCODE": "USAt", + "Region": "Total", + "1990": 0.903, + "1991": 0.901, + "1992": 0.904, + "1993": 0.905, + "1994": 0.91, + "1995": 0.913, + "1996": 0.918, + "1997": 0.924, + "1998": 0.93, + "1999": 0.935, + "2000": 0.94, + "2001": 0.941, + "2002": 0.942, + "2003": 0.944, + "2004": 0.948, + "2005": 0.951, + "2006": 0.955, + "2007": 0.955, + "2008": 0.951, + "2009": 0.947, + "2010": 0.951, + "2011": 0.953, + "2012": 0.957, + "2013": 0.958, + "2014": 0.962, + "2015": 0.965, + "2016": 0.966, + "2017": 0.969, + "2018": 0.973, + "2019": 0.975, + "2020": 0.97, + "2021": 0.978 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr101", + "Region": "Alabama", + "1990": 0.864, + "1991": 0.862, + "1992": 0.865, + "1993": 0.866, + "1994": 0.87, + "1995": 0.874, + "1996": 0.878, + "1997": 0.884, + "1998": 0.889, + "1999": 0.893, + "2000": 0.895, + "2001": 0.896, + "2002": 0.899, + "2003": 0.902, + "2004": 0.91, + "2005": 0.914, + "2006": 0.916, + "2007": 0.914, + "2008": 0.91, + "2009": 0.905, + "2010": 0.909, + "2011": 0.911, + "2012": 0.914, + "2013": 0.915, + "2014": 0.916, + "2015": 0.918, + "2016": 0.92, + "2017": 0.923, + "2018": 0.926, + "2019": 0.928, + "2020": 0.923, + "2021": 0.931 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr102", + "Region": "Alaska", + "1990": 0.965, + "1991": 0.964, + "1992": 0.966, + "1993": 0.968, + "1994": 0.973, + "1995": 0.976, + "1996": 0.981, + "1997": 0.987, + "1998": 0.983, + "1999": 0.98, + "2000": 0.977, + "2001": 0.982, + "2002": 0.985, + "2003": 0.982, + "2004": 0.985, + "2005": 0.988, + "2006": 0.997, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr103", + "Region": "Arizona", + "1990": 0.878, + "1991": 0.876, + "1992": 0.878, + "1993": 0.88, + "1994": 0.884, + "1995": 0.887, + "1996": 0.892, + "1997": 0.898, + "1998": 0.908, + "1999": 0.916, + "2000": 0.92, + "2001": 0.921, + "2002": 0.921, + "2003": 0.926, + "2004": 0.927, + "2005": 0.934, + "2006": 0.939, + "2007": 0.938, + "2008": 0.928, + "2009": 0.917, + "2010": 0.918, + "2011": 0.92, + "2012": 0.923, + "2013": 0.922, + "2014": 0.924, + "2015": 0.925, + "2016": 0.925, + "2017": 0.928, + "2018": 0.931, + "2019": 0.934, + "2020": 0.929, + "2021": 0.936 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr104", + "Region": "Arkansas", + "1990": 0.859, + "1991": 0.857, + "1992": 0.86, + "1993": 0.861, + "1994": 0.866, + "1995": 0.869, + "1996": 0.873, + "1997": 0.879, + "1998": 0.881, + "1999": 0.888, + "2000": 0.888, + "2001": 0.888, + "2002": 0.892, + "2003": 0.897, + "2004": 0.903, + "2005": 0.906, + "2006": 0.908, + "2007": 0.904, + "2008": 0.901, + "2009": 0.898, + "2010": 0.904, + "2011": 0.907, + "2012": 0.908, + "2013": 0.912, + "2014": 0.915, + "2015": 0.916, + "2016": 0.916, + "2017": 0.919, + "2018": 0.922, + "2019": 0.924, + "2020": 0.919, + "2021": 0.927 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr105", + "Region": "California", + "1990": 0.905, + "1991": 0.903, + "1992": 0.906, + "1993": 0.907, + "1994": 0.912, + "1995": 0.915, + "1996": 0.92, + "1997": 0.926, + "1998": 0.934, + "1999": 0.942, + "2000": 0.952, + "2001": 0.949, + "2002": 0.951, + "2003": 0.955, + "2004": 0.962, + "2005": 0.967, + "2006": 0.973, + "2007": 0.972, + "2008": 0.969, + "2009": 0.963, + "2010": 0.965, + "2011": 0.967, + "2012": 0.971, + "2013": 0.974, + "2014": 0.98, + "2015": 0.986, + "2016": 0.989, + "2017": 0.992, + "2018": 0.995, + "2019": 0.998, + "2020": 0.993, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr106", + "Region": "Colorado", + "1990": 0.913, + "1991": 0.911, + "1992": 0.914, + "1993": 0.915, + "1994": 0.92, + "1995": 0.923, + "1996": 0.928, + "1997": 0.934, + "1998": 0.946, + "1999": 0.953, + "2000": 0.962, + "2001": 0.961, + "2002": 0.96, + "2003": 0.959, + "2004": 0.957, + "2005": 0.962, + "2006": 0.963, + "2007": 0.964, + "2008": 0.961, + "2009": 0.957, + "2010": 0.957, + "2011": 0.958, + "2012": 0.962, + "2013": 0.964, + "2014": 0.97, + "2015": 0.973, + "2016": 0.973, + "2017": 0.976, + "2018": 0.979, + "2019": 0.982, + "2020": 0.976, + "2021": 0.984 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr107", + "Region": "Connecticut", + "1990": 0.947, + "1991": 0.945, + "1992": 0.948, + "1993": 0.95, + "1994": 0.954, + "1995": 0.958, + "1996": 0.962, + "1997": 0.968, + "1998": 0.975, + "1999": 0.978, + "2000": 0.988, + "2001": 0.99, + "2002": 0.988, + "2003": 0.988, + "2004": 0.997, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 0.999, + "2010": 0.999, + "2011": 0.997, + "2012": 0.999, + "2013": 0.997, + "2014": 0.998, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr108", + "Region": "Delaware", + "1990": 0.954, + "1991": 0.952, + "1992": 0.955, + "1993": 0.956, + "1994": 0.961, + "1995": 0.965, + "1996": 0.969, + "1997": 0.975, + "1998": 0.989, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 0.99, + "2009": 0.996, + "2010": 0.994, + "2011": 0.998, + "2012": 0.996, + "2013": 0.992, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr109", + "Region": "District of Columbia", + "1990": 1, + "1991": 1, + "1992": 1, + "1993": 1, + "1994": 1, + "1995": 1, + "1996": 1, + "1997": 1, + "1998": 1, + "1999": 1, + "2000": 1, + "2001": 1, + "2002": 1, + "2003": 1, + "2004": 1, + "2005": 1, + "2006": 1, + "2007": 1, + "2008": 1, + "2009": 1, + "2010": 1, + "2011": 1, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr110", + "Region": "Florida", + "1990": 0.882, + "1991": 0.88, + "1992": 0.882, + "1993": 0.884, + "1994": 0.888, + "1995": 0.892, + "1996": 0.896, + "1997": 0.902, + "1998": 0.91, + "1999": 0.914, + "2000": 0.919, + "2001": 0.922, + "2002": 0.924, + "2003": 0.926, + "2004": 0.93, + "2005": 0.935, + "2006": 0.939, + "2007": 0.936, + "2008": 0.926, + "2009": 0.918, + "2010": 0.92, + "2011": 0.918, + "2012": 0.92, + "2013": 0.921, + "2014": 0.924, + "2015": 0.927, + "2016": 0.929, + "2017": 0.932, + "2018": 0.935, + "2019": 0.937, + "2020": 0.932, + "2021": 0.94 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr111", + "Region": "Georgia", + "1990": 0.903, + "1991": 0.902, + "1992": 0.904, + "1993": 0.906, + "1994": 0.91, + "1995": 0.913, + "1996": 0.918, + "1997": 0.924, + "1998": 0.933, + "1999": 0.939, + "2000": 0.942, + "2001": 0.943, + "2002": 0.941, + "2003": 0.942, + "2004": 0.946, + "2005": 0.95, + "2006": 0.949, + "2007": 0.946, + "2008": 0.937, + "2009": 0.931, + "2010": 0.933, + "2011": 0.934, + "2012": 0.937, + "2013": 0.938, + "2014": 0.942, + "2015": 0.945, + "2016": 0.947, + "2017": 0.95, + "2018": 0.954, + "2019": 0.956, + "2020": 0.951, + "2021": 0.959 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr112", + "Region": "Hawaii", + "1990": 0.914, + "1991": 0.912, + "1992": 0.915, + "1993": 0.916, + "1994": 0.921, + "1995": 0.924, + "1996": 0.929, + "1997": 0.935, + "1998": 0.932, + "1999": 0.935, + "2000": 0.938, + "2001": 0.938, + "2002": 0.94, + "2003": 0.946, + "2004": 0.952, + "2005": 0.958, + "2006": 0.96, + "2007": 0.961, + "2008": 0.958, + "2009": 0.953, + "2010": 0.958, + "2011": 0.958, + "2012": 0.961, + "2013": 0.961, + "2014": 0.963, + "2015": 0.966, + "2016": 0.968, + "2017": 0.971, + "2018": 0.975, + "2019": 0.977, + "2020": 0.972, + "2021": 0.98 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr113", + "Region": "Idaho", + "1990": 0.851, + "1991": 0.849, + "1992": 0.851, + "1993": 0.853, + "1994": 0.857, + "1995": 0.86, + "1996": 0.865, + "1997": 0.871, + "1998": 0.877, + "1999": 0.888, + "2000": 0.902, + "2001": 0.896, + "2002": 0.897, + "2003": 0.898, + "2004": 0.901, + "2005": 0.907, + "2006": 0.912, + "2007": 0.912, + "2008": 0.909, + "2009": 0.902, + "2010": 0.904, + "2011": 0.903, + "2012": 0.904, + "2013": 0.907, + "2014": 0.91, + "2015": 0.913, + "2016": 0.912, + "2017": 0.915, + "2018": 0.918, + "2019": 0.921, + "2020": 0.916, + "2021": 0.923 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr114", + "Region": "Illinois", + "1990": 0.919, + "1991": 0.917, + "1992": 0.92, + "1993": 0.922, + "1994": 0.926, + "1995": 0.929, + "1996": 0.934, + "1997": 0.94, + "1998": 0.945, + "1999": 0.949, + "2000": 0.954, + "2001": 0.954, + "2002": 0.954, + "2003": 0.955, + "2004": 0.959, + "2005": 0.961, + "2006": 0.966, + "2007": 0.966, + "2008": 0.96, + "2009": 0.957, + "2010": 0.961, + "2011": 0.964, + "2012": 0.969, + "2013": 0.969, + "2014": 0.973, + "2015": 0.975, + "2016": 0.976, + "2017": 0.98, + "2018": 0.983, + "2019": 0.985, + "2020": 0.98, + "2021": 0.988 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr115", + "Region": "Indiana", + "1990": 0.89, + "1991": 0.888, + "1992": 0.89, + "1993": 0.892, + "1994": 0.896, + "1995": 0.9, + "1996": 0.904, + "1997": 0.91, + "1998": 0.92, + "1999": 0.923, + "2000": 0.928, + "2001": 0.924, + "2002": 0.927, + "2003": 0.931, + "2004": 0.935, + "2005": 0.934, + "2006": 0.936, + "2007": 0.938, + "2008": 0.934, + "2009": 0.926, + "2010": 0.937, + "2011": 0.938, + "2012": 0.94, + "2013": 0.943, + "2014": 0.947, + "2015": 0.948, + "2016": 0.949, + "2017": 0.952, + "2018": 0.956, + "2019": 0.958, + "2020": 0.953, + "2021": 0.961 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr116", + "Region": "Iowa", + "1990": 0.89, + "1991": 0.888, + "1992": 0.89, + "1993": 0.892, + "1994": 0.896, + "1995": 0.9, + "1996": 0.904, + "1997": 0.91, + "1998": 0.912, + "1999": 0.914, + "2000": 0.922, + "2001": 0.92, + "2002": 0.924, + "2003": 0.929, + "2004": 0.94, + "2005": 0.943, + "2006": 0.945, + "2007": 0.95, + "2008": 0.944, + "2009": 0.942, + "2010": 0.947, + "2011": 0.95, + "2012": 0.956, + "2013": 0.957, + "2014": 0.962, + "2015": 0.965, + "2016": 0.965, + "2017": 0.968, + "2018": 0.972, + "2019": 0.974, + "2020": 0.969, + "2021": 0.977 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr117", + "Region": "Kansas", + "1990": 0.89, + "1991": 0.889, + "1992": 0.891, + "1993": 0.893, + "1994": 0.897, + "1995": 0.9, + "1996": 0.905, + "1997": 0.911, + "1998": 0.917, + "1999": 0.919, + "2000": 0.923, + "2001": 0.923, + "2002": 0.924, + "2003": 0.926, + "2004": 0.926, + "2005": 0.93, + "2006": 0.938, + "2007": 0.942, + "2008": 0.943, + "2009": 0.937, + "2010": 0.941, + "2011": 0.946, + "2012": 0.948, + "2013": 0.948, + "2014": 0.952, + "2015": 0.955, + "2016": 0.955, + "2017": 0.958, + "2018": 0.961, + "2019": 0.964, + "2020": 0.959, + "2021": 0.966 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr118", + "Region": "Kentucky", + "1990": 0.881, + "1991": 0.879, + "1992": 0.882, + "1993": 0.883, + "1994": 0.888, + "1995": 0.891, + "1996": 0.896, + "1997": 0.902, + "1998": 0.906, + "1999": 0.91, + "2000": 0.905, + "2001": 0.906, + "2002": 0.908, + "2003": 0.91, + "2004": 0.913, + "2005": 0.916, + "2006": 0.92, + "2007": 0.916, + "2008": 0.913, + "2009": 0.908, + "2010": 0.916, + "2011": 0.918, + "2012": 0.921, + "2013": 0.922, + "2014": 0.924, + "2015": 0.926, + "2016": 0.926, + "2017": 0.929, + "2018": 0.933, + "2019": 0.935, + "2020": 0.93, + "2021": 0.938 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr119", + "Region": "Louisiana", + "1990": 0.903, + "1991": 0.901, + "1992": 0.904, + "1993": 0.905, + "1994": 0.91, + "1995": 0.913, + "1996": 0.918, + "1997": 0.924, + "1998": 0.928, + "1999": 0.93, + "2000": 0.926, + "2001": 0.929, + "2002": 0.93, + "2003": 0.935, + "2004": 0.94, + "2005": 0.948, + "2006": 0.956, + "2007": 0.948, + "2008": 0.945, + "2009": 0.948, + "2010": 0.955, + "2011": 0.947, + "2012": 0.948, + "2013": 0.942, + "2014": 0.946, + "2015": 0.947, + "2016": 0.945, + "2017": 0.948, + "2018": 0.951, + "2019": 0.953, + "2020": 0.948, + "2021": 0.956 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr120", + "Region": "Maine", + "1990": 0.871, + "1991": 0.869, + "1992": 0.872, + "1993": 0.873, + "1994": 0.878, + "1995": 0.881, + "1996": 0.886, + "1997": 0.891, + "1998": 0.897, + "1999": 0.903, + "2000": 0.909, + "2001": 0.912, + "2002": 0.914, + "2003": 0.916, + "2004": 0.92, + "2005": 0.919, + "2006": 0.922, + "2007": 0.919, + "2008": 0.916, + "2009": 0.915, + "2010": 0.919, + "2011": 0.918, + "2012": 0.92, + "2013": 0.919, + "2014": 0.922, + "2015": 0.925, + "2016": 0.926, + "2017": 0.929, + "2018": 0.933, + "2019": 0.935, + "2020": 0.93, + "2021": 0.938 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr121", + "Region": "Maryland", + "1990": 0.907, + "1991": 0.906, + "1992": 0.908, + "1993": 0.91, + "1994": 0.914, + "1995": 0.917, + "1996": 0.922, + "1997": 0.928, + "1998": 0.934, + "1999": 0.939, + "2000": 0.943, + "2001": 0.948, + "2002": 0.95, + "2003": 0.952, + "2004": 0.959, + "2005": 0.963, + "2006": 0.966, + "2007": 0.965, + "2008": 0.964, + "2009": 0.965, + "2010": 0.97, + "2011": 0.973, + "2012": 0.974, + "2013": 0.974, + "2014": 0.976, + "2015": 0.979, + "2016": 0.98, + "2017": 0.983, + "2018": 0.987, + "2019": 0.989, + "2020": 0.984, + "2021": 0.992 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr122", + "Region": "Massachusetts", + "1990": 0.925, + "1991": 0.923, + "1992": 0.926, + "1993": 0.927, + "1994": 0.932, + "1995": 0.935, + "1996": 0.94, + "1997": 0.946, + "1998": 0.953, + "1999": 0.959, + "2000": 0.971, + "2001": 0.973, + "2002": 0.973, + "2003": 0.975, + "2004": 0.979, + "2005": 0.982, + "2006": 0.985, + "2007": 0.987, + "2008": 0.985, + "2009": 0.983, + "2010": 0.989, + "2011": 0.993, + "2012": 0.997, + "2013": 0.995, + "2014": 0.998, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr123", + "Region": "Michigan", + "1990": 0.898, + "1991": 0.896, + "1992": 0.899, + "1993": 0.9, + "1994": 0.905, + "1995": 0.908, + "1996": 0.913, + "1997": 0.918, + "1998": 0.922, + "1999": 0.929, + "2000": 0.931, + "2001": 0.927, + "2002": 0.93, + "2003": 0.932, + "2004": 0.932, + "2005": 0.934, + "2006": 0.933, + "2007": 0.931, + "2008": 0.921, + "2009": 0.91, + "2010": 0.921, + "2011": 0.926, + "2012": 0.93, + "2013": 0.933, + "2014": 0.936, + "2015": 0.941, + "2016": 0.943, + "2017": 0.946, + "2018": 0.949, + "2019": 0.952, + "2020": 0.946, + "2021": 0.954 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr124", + "Region": "Minnesota", + "1990": 0.91, + "1991": 0.908, + "1992": 0.91, + "1993": 0.912, + "1994": 0.916, + "1995": 0.92, + "1996": 0.925, + "1997": 0.93, + "1998": 0.938, + "1999": 0.941, + "2000": 0.949, + "2001": 0.949, + "2002": 0.951, + "2003": 0.956, + "2004": 0.961, + "2005": 0.964, + "2006": 0.963, + "2007": 0.961, + "2008": 0.959, + "2009": 0.954, + "2010": 0.96, + "2011": 0.963, + "2012": 0.966, + "2013": 0.969, + "2014": 0.973, + "2015": 0.975, + "2016": 0.975, + "2017": 0.978, + "2018": 0.982, + "2019": 0.984, + "2020": 0.979, + "2021": 0.987 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr125", + "Region": "Mississippi", + "1990": 0.848, + "1991": 0.846, + "1992": 0.849, + "1993": 0.85, + "1994": 0.854, + "1995": 0.858, + "1996": 0.862, + "1997": 0.868, + "1998": 0.872, + "1999": 0.875, + "2000": 0.875, + "2001": 0.874, + "2002": 0.875, + "2003": 0.88, + "2004": 0.882, + "2005": 0.884, + "2006": 0.888, + "2007": 0.89, + "2008": 0.893, + "2009": 0.888, + "2010": 0.89, + "2011": 0.888, + "2012": 0.894, + "2013": 0.894, + "2014": 0.894, + "2015": 0.895, + "2016": 0.896, + "2017": 0.899, + "2018": 0.902, + "2019": 0.904, + "2020": 0.899, + "2021": 0.907 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr126", + "Region": "Missouri", + "1990": 0.899, + "1991": 0.897, + "1992": 0.9, + "1993": 0.901, + "1994": 0.906, + "1995": 0.909, + "1996": 0.914, + "1997": 0.92, + "1998": 0.924, + "1999": 0.926, + "2000": 0.93, + "2001": 0.929, + "2002": 0.929, + "2003": 0.93, + "2004": 0.933, + "2005": 0.934, + "2006": 0.935, + "2007": 0.933, + "2008": 0.933, + "2009": 0.931, + "2010": 0.934, + "2011": 0.932, + "2012": 0.936, + "2013": 0.938, + "2014": 0.939, + "2015": 0.942, + "2016": 0.943, + "2017": 0.946, + "2018": 0.949, + "2019": 0.951, + "2020": 0.946, + "2021": 0.954 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr127", + "Region": "Montana", + "1990": 0.857, + "1991": 0.855, + "1992": 0.858, + "1993": 0.859, + "1994": 0.863, + "1995": 0.867, + "1996": 0.871, + "1997": 0.877, + "1998": 0.885, + "1999": 0.885, + "2000": 0.889, + "2001": 0.891, + "2002": 0.893, + "2003": 0.897, + "2004": 0.902, + "2005": 0.908, + "2006": 0.912, + "2007": 0.916, + "2008": 0.912, + "2009": 0.91, + "2010": 0.917, + "2011": 0.921, + "2012": 0.923, + "2013": 0.923, + "2014": 0.927, + "2015": 0.93, + "2016": 0.928, + "2017": 0.931, + "2018": 0.934, + "2019": 0.937, + "2020": 0.932, + "2021": 0.939 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr128", + "Region": "Nebraska", + "1990": 0.898, + "1991": 0.896, + "1992": 0.899, + "1993": 0.9, + "1994": 0.904, + "1995": 0.908, + "1996": 0.912, + "1997": 0.918, + "1998": 0.922, + "1999": 0.924, + "2000": 0.93, + "2001": 0.932, + "2002": 0.933, + "2003": 0.94, + "2004": 0.943, + "2005": 0.945, + "2006": 0.949, + "2007": 0.95, + "2008": 0.949, + "2009": 0.951, + "2010": 0.958, + "2011": 0.965, + "2012": 0.965, + "2013": 0.968, + "2014": 0.973, + "2015": 0.974, + "2016": 0.974, + "2017": 0.977, + "2018": 0.98, + "2019": 0.983, + "2020": 0.977, + "2021": 0.985 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr129", + "Region": "Nevada", + "1990": 0.928, + "1991": 0.926, + "1992": 0.929, + "1993": 0.93, + "1994": 0.935, + "1995": 0.938, + "1996": 0.943, + "1997": 0.949, + "1998": 0.951, + "1999": 0.955, + "2000": 0.956, + "2001": 0.954, + "2002": 0.953, + "2003": 0.955, + "2004": 0.964, + "2005": 0.971, + "2006": 0.972, + "2007": 0.966, + "2008": 0.953, + "2009": 0.941, + "2010": 0.942, + "2011": 0.943, + "2012": 0.941, + "2013": 0.94, + "2014": 0.941, + "2015": 0.944, + "2016": 0.944, + "2017": 0.947, + "2018": 0.951, + "2019": 0.953, + "2020": 0.948, + "2021": 0.956 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr130", + "Region": "New Hampshire", + "1990": 0.898, + "1991": 0.897, + "1992": 0.899, + "1993": 0.901, + "1994": 0.905, + "1995": 0.908, + "1996": 0.913, + "1997": 0.919, + "1998": 0.928, + "1999": 0.93, + "2000": 0.939, + "2001": 0.94, + "2002": 0.942, + "2003": 0.946, + "2004": 0.949, + "2005": 0.952, + "2006": 0.955, + "2007": 0.953, + "2008": 0.949, + "2009": 0.949, + "2010": 0.955, + "2011": 0.956, + "2012": 0.958, + "2013": 0.959, + "2014": 0.963, + "2015": 0.966, + "2016": 0.97, + "2017": 0.973, + "2018": 0.976, + "2019": 0.979, + "2020": 0.974, + "2021": 0.981 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr131", + "Region": "New Jersey", + "1990": 0.933, + "1991": 0.931, + "1992": 0.933, + "1993": 0.935, + "1994": 0.939, + "1995": 0.943, + "1996": 0.948, + "1997": 0.954, + "1998": 0.958, + "1999": 0.961, + "2000": 0.968, + "2001": 0.97, + "2002": 0.971, + "2003": 0.974, + "2004": 0.975, + "2005": 0.977, + "2006": 0.98, + "2007": 0.98, + "2008": 0.978, + "2009": 0.972, + "2010": 0.974, + "2011": 0.973, + "2012": 0.978, + "2013": 0.979, + "2014": 0.981, + "2015": 0.984, + "2016": 0.985, + "2017": 0.988, + "2018": 0.991, + "2019": 0.994, + "2020": 0.988, + "2021": 0.996 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr132", + "Region": "New Mexico", + "1990": 0.886, + "1991": 0.884, + "1992": 0.886, + "1993": 0.888, + "1994": 0.892, + "1995": 0.895, + "1996": 0.9, + "1997": 0.906, + "1998": 0.905, + "1999": 0.912, + "2000": 0.914, + "2001": 0.916, + "2002": 0.917, + "2003": 0.921, + "2004": 0.929, + "2005": 0.928, + "2006": 0.929, + "2007": 0.926, + "2008": 0.926, + "2009": 0.926, + "2010": 0.927, + "2011": 0.927, + "2012": 0.929, + "2013": 0.927, + "2014": 0.933, + "2015": 0.937, + "2016": 0.935, + "2017": 0.938, + "2018": 0.942, + "2019": 0.944, + "2020": 0.939, + "2021": 0.947 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr133", + "Region": "New York", + "1990": 0.931, + "1991": 0.929, + "1992": 0.932, + "1993": 0.933, + "1994": 0.938, + "1995": 0.941, + "1996": 0.946, + "1997": 0.952, + "1998": 0.957, + "1999": 0.963, + "2000": 0.968, + "2001": 0.974, + "2002": 0.972, + "2003": 0.971, + "2004": 0.975, + "2005": 0.981, + "2006": 0.986, + "2007": 0.985, + "2008": 0.98, + "2009": 0.984, + "2010": 0.991, + "2011": 0.991, + "2012": 0.998, + "2013": 0.997, + "2014": 1, + "2015": 1, + "2016": 1, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr134", + "Region": "North Carolina", + "1990": 0.898, + "1991": 0.896, + "1992": 0.898, + "1993": 0.9, + "1994": 0.904, + "1995": 0.908, + "1996": 0.912, + "1997": 0.918, + "1998": 0.924, + "1999": 0.929, + "2000": 0.931, + "2001": 0.933, + "2002": 0.932, + "2003": 0.933, + "2004": 0.937, + "2005": 0.941, + "2006": 0.947, + "2007": 0.943, + "2008": 0.941, + "2009": 0.935, + "2010": 0.937, + "2011": 0.938, + "2012": 0.938, + "2013": 0.94, + "2014": 0.943, + "2015": 0.946, + "2016": 0.946, + "2017": 0.949, + "2018": 0.953, + "2019": 0.955, + "2020": 0.95, + "2021": 0.958 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr135", + "Region": "North Dakota", + "1990": 0.866, + "1991": 0.864, + "1992": 0.866, + "1993": 0.868, + "1994": 0.872, + "1995": 0.875, + "1996": 0.88, + "1997": 0.886, + "1998": 0.895, + "1999": 0.896, + "2000": 0.903, + "2001": 0.908, + "2002": 0.915, + "2003": 0.924, + "2004": 0.924, + "2005": 0.928, + "2006": 0.935, + "2007": 0.939, + "2008": 0.951, + "2009": 0.954, + "2010": 0.966, + "2011": 0.981, + "2012": 1, + "2013": 1, + "2014": 1, + "2015": 1, + "2016": 0.999, + "2017": 1, + "2018": 1, + "2019": 1, + "2020": 1, + "2021": 1 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr136", + "Region": "Ohio", + "1990": 0.899, + "1991": 0.897, + "1992": 0.9, + "1993": 0.901, + "1994": 0.906, + "1995": 0.909, + "1996": 0.914, + "1997": 0.919, + "1998": 0.927, + "1999": 0.93, + "2000": 0.933, + "2001": 0.931, + "2002": 0.934, + "2003": 0.935, + "2004": 0.939, + "2005": 0.94, + "2006": 0.941, + "2007": 0.939, + "2008": 0.935, + "2009": 0.929, + "2010": 0.935, + "2011": 0.942, + "2012": 0.946, + "2013": 0.948, + "2014": 0.953, + "2015": 0.955, + "2016": 0.957, + "2017": 0.96, + "2018": 0.963, + "2019": 0.966, + "2020": 0.961, + "2021": 0.968 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr137", + "Region": "Oklahoma", + "1990": 0.869, + "1991": 0.868, + "1992": 0.87, + "1993": 0.872, + "1994": 0.876, + "1995": 0.879, + "1996": 0.884, + "1997": 0.89, + "1998": 0.892, + "1999": 0.893, + "2000": 0.898, + "2001": 0.904, + "2002": 0.904, + "2003": 0.906, + "2004": 0.91, + "2005": 0.914, + "2006": 0.922, + "2007": 0.922, + "2008": 0.922, + "2009": 0.918, + "2010": 0.919, + "2011": 0.926, + "2012": 0.936, + "2013": 0.941, + "2014": 0.948, + "2015": 0.952, + "2016": 0.947, + "2017": 0.95, + "2018": 0.954, + "2019": 0.956, + "2020": 0.951, + "2021": 0.959 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr138", + "Region": "Oregon", + "1990": 0.876, + "1991": 0.874, + "1992": 0.876, + "1993": 0.878, + "1994": 0.882, + "1995": 0.885, + "1996": 0.89, + "1997": 0.896, + "1998": 0.903, + "1999": 0.904, + "2000": 0.916, + "2001": 0.913, + "2002": 0.914, + "2003": 0.918, + "2004": 0.931, + "2005": 0.933, + "2006": 0.945, + "2007": 0.946, + "2008": 0.951, + "2009": 0.95, + "2010": 0.958, + "2011": 0.964, + "2012": 0.961, + "2013": 0.957, + "2014": 0.959, + "2015": 0.964, + "2016": 0.966, + "2017": 0.969, + "2018": 0.973, + "2019": 0.975, + "2020": 0.97, + "2021": 0.978 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr139", + "Region": "Pennsylvania", + "1990": 0.895, + "1991": 0.894, + "1992": 0.896, + "1993": 0.898, + "1994": 0.902, + "1995": 0.905, + "1996": 0.91, + "1997": 0.916, + "1998": 0.922, + "1999": 0.926, + "2000": 0.93, + "2001": 0.933, + "2002": 0.934, + "2003": 0.936, + "2004": 0.94, + "2005": 0.941, + "2006": 0.942, + "2007": 0.946, + "2008": 0.946, + "2009": 0.942, + "2010": 0.948, + "2011": 0.951, + "2012": 0.955, + "2013": 0.957, + "2014": 0.962, + "2015": 0.966, + "2016": 0.967, + "2017": 0.971, + "2018": 0.974, + "2019": 0.976, + "2020": 0.971, + "2021": 0.979 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr140", + "Region": "Rhode Island", + "1990": 0.893, + "1991": 0.891, + "1992": 0.893, + "1993": 0.895, + "1994": 0.899, + "1995": 0.902, + "1996": 0.907, + "1997": 0.913, + "1998": 0.919, + "1999": 0.922, + "2000": 0.928, + "2001": 0.931, + "2002": 0.935, + "2003": 0.939, + "2004": 0.945, + "2005": 0.948, + "2006": 0.953, + "2007": 0.948, + "2008": 0.942, + "2009": 0.942, + "2010": 0.948, + "2011": 0.948, + "2012": 0.951, + "2013": 0.951, + "2014": 0.954, + "2015": 0.956, + "2016": 0.957, + "2017": 0.96, + "2018": 0.964, + "2019": 0.966, + "2020": 0.961, + "2021": 0.969 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr141", + "Region": "South Carolina", + "1990": 0.876, + "1991": 0.874, + "1992": 0.877, + "1993": 0.878, + "1994": 0.883, + "1995": 0.886, + "1996": 0.891, + "1997": 0.896, + "1998": 0.901, + "1999": 0.905, + "2000": 0.907, + "2001": 0.907, + "2002": 0.909, + "2003": 0.912, + "2004": 0.912, + "2005": 0.913, + "2006": 0.914, + "2007": 0.914, + "2008": 0.909, + "2009": 0.903, + "2010": 0.906, + "2011": 0.909, + "2012": 0.91, + "2013": 0.911, + "2014": 0.915, + "2015": 0.918, + "2016": 0.919, + "2017": 0.922, + "2018": 0.925, + "2019": 0.927, + "2020": 0.922, + "2021": 0.93 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr142", + "Region": "South Dakota", + "1990": 0.861, + "1991": 0.859, + "1992": 0.862, + "1993": 0.863, + "1994": 0.867, + "1995": 0.871, + "1996": 0.875, + "1997": 0.881, + "1998": 0.891, + "1999": 0.896, + "2000": 0.905, + "2001": 0.909, + "2002": 0.924, + "2003": 0.926, + "2004": 0.931, + "2005": 0.933, + "2006": 0.935, + "2007": 0.938, + "2008": 0.941, + "2009": 0.943, + "2010": 0.946, + "2011": 0.954, + "2012": 0.953, + "2013": 0.953, + "2014": 0.954, + "2015": 0.958, + "2016": 0.958, + "2017": 0.961, + "2018": 0.965, + "2019": 0.967, + "2020": 0.962, + "2021": 0.97 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr143", + "Region": "Tennessee", + "1990": 0.888, + "1991": 0.886, + "1992": 0.889, + "1993": 0.89, + "1994": 0.895, + "1995": 0.898, + "1996": 0.903, + "1997": 0.909, + "1998": 0.916, + "1999": 0.918, + "2000": 0.919, + "2001": 0.919, + "2002": 0.922, + "2003": 0.925, + "2004": 0.93, + "2005": 0.93, + "2006": 0.933, + "2007": 0.928, + "2008": 0.925, + "2009": 0.92, + "2010": 0.923, + "2011": 0.927, + "2012": 0.933, + "2013": 0.934, + "2014": 0.937, + "2015": 0.941, + "2016": 0.942, + "2017": 0.945, + "2018": 0.949, + "2019": 0.951, + "2020": 0.946, + "2021": 0.954 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr144", + "Region": "Texas", + "1990": 0.905, + "1991": 0.903, + "1992": 0.906, + "1993": 0.907, + "1994": 0.912, + "1995": 0.915, + "1996": 0.92, + "1997": 0.926, + "1998": 0.934, + "1999": 0.936, + "2000": 0.939, + "2001": 0.941, + "2002": 0.94, + "2003": 0.938, + "2004": 0.943, + "2005": 0.944, + "2006": 0.951, + "2007": 0.954, + "2008": 0.95, + "2009": 0.948, + "2010": 0.952, + "2011": 0.955, + "2012": 0.963, + "2013": 0.969, + "2014": 0.973, + "2015": 0.978, + "2016": 0.976, + "2017": 0.979, + "2018": 0.982, + "2019": 0.985, + "2020": 0.979, + "2021": 0.987 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr145", + "Region": "Utah", + "1990": 0.882, + "1991": 0.881, + "1992": 0.883, + "1993": 0.885, + "1994": 0.889, + "1995": 0.892, + "1996": 0.897, + "1997": 0.903, + "1998": 0.911, + "1999": 0.915, + "2000": 0.918, + "2001": 0.92, + "2002": 0.919, + "2003": 0.919, + "2004": 0.923, + "2005": 0.929, + "2006": 0.939, + "2007": 0.942, + "2008": 0.934, + "2009": 0.929, + "2010": 0.931, + "2011": 0.934, + "2012": 0.936, + "2013": 0.937, + "2014": 0.942, + "2015": 0.946, + "2016": 0.947, + "2017": 0.95, + "2018": 0.954, + "2019": 0.956, + "2020": 0.951, + "2021": 0.959 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr146", + "Region": "Vermont", + "1990": 0.87, + "1991": 0.868, + "1992": 0.871, + "1993": 0.872, + "1994": 0.877, + "1995": 0.88, + "1996": 0.884, + "1997": 0.89, + "1998": 0.896, + "1999": 0.902, + "2000": 0.91, + "2001": 0.915, + "2002": 0.918, + "2003": 0.922, + "2004": 0.928, + "2005": 0.929, + "2006": 0.931, + "2007": 0.929, + "2008": 0.928, + "2009": 0.927, + "2010": 0.934, + "2011": 0.938, + "2012": 0.94, + "2013": 0.94, + "2014": 0.941, + "2015": 0.944, + "2016": 0.945, + "2017": 0.948, + "2018": 0.951, + "2019": 0.954, + "2020": 0.948, + "2021": 0.956 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr147", + "Region": "Virginia", + "1990": 0.911, + "1991": 0.909, + "1992": 0.912, + "1993": 0.914, + "1994": 0.918, + "1995": 0.921, + "1996": 0.926, + "1997": 0.932, + "1998": 0.94, + "1999": 0.944, + "2000": 0.949, + "2001": 0.952, + "2002": 0.951, + "2003": 0.954, + "2004": 0.958, + "2005": 0.964, + "2006": 0.967, + "2007": 0.965, + "2008": 0.962, + "2009": 0.962, + "2010": 0.965, + "2011": 0.966, + "2012": 0.967, + "2013": 0.966, + "2014": 0.967, + "2015": 0.97, + "2016": 0.97, + "2017": 0.973, + "2018": 0.976, + "2019": 0.979, + "2020": 0.973, + "2021": 0.981 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr148", + "Region": "Washington", + "1990": 0.92, + "1991": 0.918, + "1992": 0.921, + "1993": 0.923, + "1994": 0.927, + "1995": 0.93, + "1996": 0.935, + "1997": 0.941, + "1998": 0.949, + "1999": 0.958, + "2000": 0.957, + "2001": 0.953, + "2002": 0.954, + "2003": 0.954, + "2004": 0.955, + "2005": 0.963, + "2006": 0.967, + "2007": 0.973, + "2008": 0.97, + "2009": 0.964, + "2010": 0.968, + "2011": 0.968, + "2012": 0.973, + "2013": 0.975, + "2014": 0.979, + "2015": 0.982, + "2016": 0.984, + "2017": 0.987, + "2018": 0.991, + "2019": 0.993, + "2020": 0.988, + "2021": 0.996 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr149", + "Region": "West Virginia", + "1990": 0.859, + "1991": 0.857, + "1992": 0.86, + "1993": 0.861, + "1994": 0.866, + "1995": 0.869, + "1996": 0.874, + "1997": 0.879, + "1998": 0.884, + "1999": 0.889, + "2000": 0.89, + "2001": 0.891, + "2002": 0.892, + "2003": 0.891, + "2004": 0.893, + "2005": 0.897, + "2006": 0.9, + "2007": 0.898, + "2008": 0.9, + "2009": 0.901, + "2010": 0.907, + "2011": 0.911, + "2012": 0.91, + "2013": 0.912, + "2014": 0.915, + "2015": 0.917, + "2016": 0.916, + "2017": 0.919, + "2018": 0.922, + "2019": 0.924, + "2020": 0.919, + "2021": 0.927 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr150", + "Region": "Wisconsin", + "1990": 0.895, + "1991": 0.893, + "1992": 0.896, + "1993": 0.897, + "1994": 0.902, + "1995": 0.905, + "1996": 0.91, + "1997": 0.916, + "1998": 0.921, + "1999": 0.926, + "2000": 0.93, + "2001": 0.932, + "2002": 0.933, + "2003": 0.936, + "2004": 0.939, + "2005": 0.942, + "2006": 0.944, + "2007": 0.943, + "2008": 0.938, + "2009": 0.935, + "2010": 0.941, + "2011": 0.944, + "2012": 0.948, + "2013": 0.95, + "2014": 0.953, + "2015": 0.955, + "2016": 0.956, + "2017": 0.959, + "2018": 0.962, + "2019": 0.965, + "2020": 0.96, + "2021": 0.967 + }, + { + "Country": "United States", + "Continent": "America", + "ISO_Code": "USA", + "Level": "Subnat", + "GDLCODE": "USAr151", + "Region": "Wyoming", + "1990": 0.923, + "1991": 0.921, + "1992": 0.924, + "1993": 0.925, + "1994": 0.93, + "1995": 0.933, + "1996": 0.938, + "1997": 0.944, + "1998": 0.949, + "1999": 0.954, + "2000": 0.96, + "2001": 0.969, + "2002": 0.969, + "2003": 0.971, + "2004": 0.974, + "2005": 0.979, + "2006": 0.995, + "2007": 0.998, + "2008": 1, + "2009": 1, + "2010": 0.999, + "2011": 0.998, + "2012": 0.992, + "2013": 0.993, + "2014": 0.996, + "2015": 0.995, + "2016": 0.989, + "2017": 0.992, + "2018": 0.996, + "2019": 0.998, + "2020": 0.993, + "2021": 1 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "National", + "GDLCODE": "URYt", + "Region": "Total", + "1990": 0.706, + "1991": 0.712, + "1992": 0.723, + "1993": 0.726, + "1994": 0.735, + "1995": 0.732, + "1996": 0.74, + "1997": 0.752, + "1998": 0.758, + "1999": 0.755, + "2000": 0.751, + "2001": 0.745, + "2002": 0.734, + "2003": 0.729, + "2004": 0.736, + "2005": 0.749, + "2006": 0.756, + "2007": 0.765, + "2008": 0.774, + "2009": 0.779, + "2010": 0.789, + "2011": 0.797, + "2012": 0.796, + "2013": 0.805, + "2014": 0.808, + "2015": 0.811, + "2016": 0.812, + "2017": 0.813, + "2018": 0.813, + "2019": 0.814, + "2020": 0.804, + "2021": 0.81 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr105", + "Region": "Centro (Durazno and Tacuarembo)", + "1990": 0.688, + "1991": 0.694, + "1992": 0.705, + "1993": 0.708, + "1994": 0.717, + "1995": 0.715, + "1996": 0.722, + "1997": 0.734, + "1998": 0.74, + "1999": 0.737, + "2000": 0.733, + "2001": 0.727, + "2002": 0.716, + "2003": 0.711, + "2004": 0.718, + "2005": 0.731, + "2006": 0.738, + "2007": 0.747, + "2008": 0.758, + "2009": 0.765, + "2010": 0.777, + "2011": 0.787, + "2012": 0.787, + "2013": 0.805, + "2014": 0.807, + "2015": 0.81, + "2016": 0.812, + "2017": 0.812, + "2018": 0.812, + "2019": 0.814, + "2020": 0.803, + "2021": 0.809 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr106", + "Region": "Centro Sur (Flores, Florida and Lavalleja)", + "1990": 0.703, + "1991": 0.709, + "1992": 0.72, + "1993": 0.723, + "1994": 0.733, + "1995": 0.73, + "1996": 0.737, + "1997": 0.749, + "1998": 0.755, + "1999": 0.752, + "2000": 0.749, + "2001": 0.742, + "2002": 0.731, + "2003": 0.726, + "2004": 0.733, + "2005": 0.746, + "2006": 0.753, + "2007": 0.762, + "2008": 0.771, + "2009": 0.776, + "2010": 0.785, + "2011": 0.792, + "2012": 0.79, + "2013": 0.802, + "2014": 0.804, + "2015": 0.808, + "2016": 0.809, + "2017": 0.81, + "2018": 0.81, + "2019": 0.811, + "2020": 0.8, + "2021": 0.806 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr103", + "Region": "Costa Este (Canelones, Maldonado and Rocha)", + "1990": 0.707, + "1991": 0.713, + "1992": 0.724, + "1993": 0.727, + "1994": 0.736, + "1995": 0.734, + "1996": 0.741, + "1997": 0.753, + "1998": 0.759, + "1999": 0.756, + "2000": 0.753, + "2001": 0.746, + "2002": 0.735, + "2003": 0.73, + "2004": 0.737, + "2005": 0.75, + "2006": 0.757, + "2007": 0.766, + "2008": 0.775, + "2009": 0.78, + "2010": 0.79, + "2011": 0.797, + "2012": 0.795, + "2013": 0.81, + "2014": 0.813, + "2015": 0.816, + "2016": 0.817, + "2017": 0.818, + "2018": 0.818, + "2019": 0.819, + "2020": 0.808, + "2021": 0.814 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr107", + "Region": "Litoral Norte (Paysandu, Salto and Rio Negro)", + "1990": 0.688, + "1991": 0.694, + "1992": 0.705, + "1993": 0.708, + "1994": 0.717, + "1995": 0.714, + "1996": 0.722, + "1997": 0.734, + "1998": 0.739, + "1999": 0.737, + "2000": 0.733, + "2001": 0.727, + "2002": 0.716, + "2003": 0.711, + "2004": 0.718, + "2005": 0.731, + "2006": 0.737, + "2007": 0.747, + "2008": 0.758, + "2009": 0.767, + "2010": 0.779, + "2011": 0.79, + "2012": 0.791, + "2013": 0.802, + "2014": 0.804, + "2015": 0.807, + "2016": 0.809, + "2017": 0.81, + "2018": 0.809, + "2019": 0.811, + "2020": 0.8, + "2021": 0.806 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr104", + "Region": "Litoral Sur (Soriano, Colonia and San Jose)", + "1990": 0.696, + "1991": 0.702, + "1992": 0.713, + "1993": 0.716, + "1994": 0.725, + "1995": 0.722, + "1996": 0.73, + "1997": 0.742, + "1998": 0.748, + "1999": 0.745, + "2000": 0.741, + "2001": 0.735, + "2002": 0.724, + "2003": 0.719, + "2004": 0.726, + "2005": 0.739, + "2006": 0.746, + "2007": 0.755, + "2008": 0.766, + "2009": 0.773, + "2010": 0.785, + "2011": 0.795, + "2012": 0.796, + "2013": 0.801, + "2014": 0.803, + "2015": 0.806, + "2016": 0.808, + "2017": 0.808, + "2018": 0.808, + "2019": 0.81, + "2020": 0.799, + "2021": 0.805 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr101", + "Region": "Montevideo and Metropolitan area", + "1990": 0.72, + "1991": 0.726, + "1992": 0.738, + "1993": 0.741, + "1994": 0.75, + "1995": 0.747, + "1996": 0.754, + "1997": 0.767, + "1998": 0.773, + "1999": 0.77, + "2000": 0.766, + "2001": 0.76, + "2002": 0.749, + "2003": 0.743, + "2004": 0.751, + "2005": 0.764, + "2006": 0.771, + "2007": 0.78, + "2008": 0.787, + "2009": 0.79, + "2010": 0.799, + "2011": 0.804, + "2012": 0.801, + "2013": 0.807, + "2014": 0.809, + "2015": 0.813, + "2016": 0.814, + "2017": 0.815, + "2018": 0.815, + "2019": 0.816, + "2020": 0.805, + "2021": 0.811 + }, + { + "Country": "Uruguay", + "Continent": "America", + "ISO_Code": "URY", + "Level": "Subnat", + "GDLCODE": "URYr102", + "Region": "Norte (Artigas, Rivera, Cerro Largo and Trienta y Tres)", + "1990": 0.678, + "1991": 0.684, + "1992": 0.695, + "1993": 0.698, + "1994": 0.707, + "1995": 0.704, + "1996": 0.711, + "1997": 0.723, + "1998": 0.729, + "1999": 0.726, + "2000": 0.723, + "2001": 0.717, + "2002": 0.706, + "2003": 0.701, + "2004": 0.708, + "2005": 0.72, + "2006": 0.727, + "2007": 0.736, + "2008": 0.749, + "2009": 0.759, + "2010": 0.773, + "2011": 0.785, + "2012": 0.787, + "2013": 0.799, + "2014": 0.801, + "2015": 0.804, + "2016": 0.806, + "2017": 0.806, + "2018": 0.806, + "2019": 0.807, + "2020": 0.797, + "2021": 0.803 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "National", + "GDLCODE": "UZBt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.5, + "2001": 0.506, + "2002": 0.511, + "2003": 0.516, + "2004": 0.526, + "2005": 0.534, + "2006": 0.54, + "2007": 0.561, + "2008": 0.566, + "2009": 0.575, + "2010": 0.589, + "2011": 0.599, + "2012": 0.608, + "2013": 0.618, + "2014": 0.625, + "2015": 0.63, + "2016": 0.636, + "2017": 0.641, + "2018": 0.648, + "2019": 0.652, + "2020": 0.652, + "2021": 0.66 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr102", + "Region": "Central (Navoi, Bukhara, Samarkand)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.49, + "2001": 0.497, + "2002": 0.503, + "2003": 0.508, + "2004": 0.519, + "2005": 0.529, + "2006": 0.535, + "2007": 0.556, + "2008": 0.561, + "2009": 0.57, + "2010": 0.584, + "2011": 0.594, + "2012": 0.603, + "2013": 0.613, + "2014": 0.62, + "2015": 0.625, + "2016": 0.631, + "2017": 0.636, + "2018": 0.643, + "2019": 0.647, + "2020": 0.647, + "2021": 0.655 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr104", + "Region": "Central-East (Dzhizak, Syrdarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.499, + "2001": 0.506, + "2002": 0.511, + "2003": 0.517, + "2004": 0.527, + "2005": 0.536, + "2006": 0.543, + "2007": 0.564, + "2008": 0.569, + "2009": 0.578, + "2010": 0.592, + "2011": 0.602, + "2012": 0.611, + "2013": 0.621, + "2014": 0.628, + "2015": 0.633, + "2016": 0.639, + "2017": 0.644, + "2018": 0.651, + "2019": 0.655, + "2020": 0.655, + "2021": 0.663 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr105", + "Region": "East (Namangan, Fergana, Andizhan)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.484, + "2001": 0.489, + "2002": 0.493, + "2003": 0.498, + "2004": 0.507, + "2005": 0.515, + "2006": 0.519, + "2007": 0.54, + "2008": 0.545, + "2009": 0.554, + "2010": 0.568, + "2011": 0.577, + "2012": 0.586, + "2013": 0.596, + "2014": 0.603, + "2015": 0.608, + "2016": 0.613, + "2017": 0.619, + "2018": 0.626, + "2019": 0.63, + "2020": 0.63, + "2021": 0.638 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr103", + "Region": "South (Kashkadarya, Surkhandarya)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.462, + "2001": 0.468, + "2002": 0.473, + "2003": 0.478, + "2004": 0.488, + "2005": 0.496, + "2006": 0.502, + "2007": 0.522, + "2008": 0.527, + "2009": 0.536, + "2010": 0.549, + "2011": 0.559, + "2012": 0.568, + "2013": 0.577, + "2014": 0.584, + "2015": 0.589, + "2016": 0.594, + "2017": 0.6, + "2018": 0.607, + "2019": 0.61, + "2020": 0.611, + "2021": 0.618 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr106", + "Region": "Tashkent", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.575, + "2001": 0.588, + "2002": 0.6, + "2003": 0.612, + "2004": 0.63, + "2005": 0.646, + "2006": 0.659, + "2007": 0.682, + "2008": 0.688, + "2009": 0.698, + "2010": 0.713, + "2011": 0.724, + "2012": 0.734, + "2013": 0.745, + "2014": 0.752, + "2015": 0.758, + "2016": 0.764, + "2017": 0.77, + "2018": 0.778, + "2019": 0.782, + "2020": 0.783, + "2021": 0.791 + }, + { + "Country": "Uzbekistan", + "Continent": "Asia/Pacific", + "ISO_Code": "UZB", + "Level": "Subnat", + "GDLCODE": "UZBr101", + "Region": "West (Karakalpakstan, Khorezm)", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": 0.517, + "2001": 0.522, + "2002": 0.525, + "2003": 0.529, + "2004": 0.538, + "2005": 0.545, + "2006": 0.55, + "2007": 0.571, + "2008": 0.576, + "2009": 0.585, + "2010": 0.6, + "2011": 0.609, + "2012": 0.619, + "2013": 0.628, + "2014": 0.635, + "2015": 0.641, + "2016": 0.646, + "2017": 0.652, + "2018": 0.659, + "2019": 0.663, + "2020": 0.663, + "2021": 0.671 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "National", + "GDLCODE": "VUTt", + "Region": "Total", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.495, + "2006": 0.507, + "2007": 0.507, + "2008": 0.519, + "2009": 0.514, + "2010": 0.513, + "2011": 0.515, + "2012": 0.507, + "2013": 0.51, + "2014": 0.515, + "2015": 0.512, + "2016": 0.516, + "2017": 0.518, + "2018": 0.524, + "2019": 0.533, + "2020": 0.522, + "2021": 0.518 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr108", + "Region": "Luganville", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.607, + "2006": 0.62, + "2007": 0.621, + "2008": 0.633, + "2009": 0.629, + "2010": 0.627, + "2011": 0.629, + "2012": 0.62, + "2013": 0.624, + "2014": 0.63, + "2015": 0.626, + "2016": 0.63, + "2017": 0.633, + "2018": 0.639, + "2019": 0.649, + "2020": 0.637, + "2021": 0.632 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr103", + "Region": "Malampa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.435, + "2006": 0.446, + "2007": 0.447, + "2008": 0.458, + "2009": 0.454, + "2010": 0.452, + "2011": 0.454, + "2012": 0.446, + "2013": 0.45, + "2014": 0.454, + "2015": 0.451, + "2016": 0.455, + "2017": 0.457, + "2018": 0.462, + "2019": 0.472, + "2020": 0.461, + "2021": 0.457 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr104", + "Region": "Penama", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.422, + "2006": 0.433, + "2007": 0.433, + "2008": 0.444, + "2009": 0.44, + "2010": 0.439, + "2011": 0.441, + "2012": 0.433, + "2013": 0.436, + "2014": 0.441, + "2015": 0.438, + "2016": 0.442, + "2017": 0.444, + "2018": 0.449, + "2019": 0.458, + "2020": 0.448, + "2021": 0.444 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr107", + "Region": "Port Vila", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.647, + "2006": 0.661, + "2007": 0.661, + "2008": 0.674, + "2009": 0.669, + "2010": 0.668, + "2011": 0.67, + "2012": 0.661, + "2013": 0.665, + "2014": 0.67, + "2015": 0.667, + "2016": 0.671, + "2017": 0.674, + "2018": 0.68, + "2019": 0.691, + "2020": 0.678, + "2021": 0.673 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr105", + "Region": "Sanma", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.446, + "2006": 0.457, + "2007": 0.458, + "2008": 0.469, + "2009": 0.465, + "2010": 0.464, + "2011": 0.465, + "2012": 0.458, + "2013": 0.461, + "2014": 0.466, + "2015": 0.463, + "2016": 0.466, + "2017": 0.468, + "2018": 0.474, + "2019": 0.483, + "2020": 0.472, + "2021": 0.468 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr102", + "Region": "Shefa", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.527, + "2006": 0.539, + "2007": 0.539, + "2008": 0.551, + "2009": 0.547, + "2010": 0.546, + "2011": 0.547, + "2012": 0.539, + "2013": 0.542, + "2014": 0.548, + "2015": 0.545, + "2016": 0.548, + "2017": 0.551, + "2018": 0.556, + "2019": 0.566, + "2020": 0.555, + "2021": 0.55 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr101", + "Region": "Tafea", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.439, + "2006": 0.451, + "2007": 0.451, + "2008": 0.462, + "2009": 0.458, + "2010": 0.457, + "2011": 0.459, + "2012": 0.451, + "2013": 0.454, + "2014": 0.459, + "2015": 0.456, + "2016": 0.459, + "2017": 0.462, + "2018": 0.467, + "2019": 0.476, + "2020": 0.466, + "2021": 0.461 + }, + { + "Country": "Vanuatu", + "Continent": "Asia/Pacific", + "ISO_Code": "VUT", + "Level": "Subnat", + "GDLCODE": "VUTr106", + "Region": "Torba", + "1990": null, + "1991": null, + "1992": null, + "1993": null, + "1994": null, + "1995": null, + "1996": null, + "1997": null, + "1998": null, + "1999": null, + "2000": null, + "2001": null, + "2002": null, + "2003": null, + "2004": null, + "2005": 0.412, + "2006": 0.423, + "2007": 0.423, + "2008": 0.434, + "2009": 0.43, + "2010": 0.429, + "2011": 0.431, + "2012": 0.423, + "2013": 0.426, + "2014": 0.431, + "2015": 0.428, + "2016": 0.431, + "2017": 0.434, + "2018": 0.439, + "2019": 0.448, + "2020": 0.437, + "2021": 0.433 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "National", + "GDLCODE": "VENt", + "Region": "Total", + "1990": 0.771, + "1991": 0.781, + "1992": 0.786, + "1993": 0.783, + "1994": 0.776, + "1995": 0.779, + "1996": 0.775, + "1997": 0.782, + "1998": 0.779, + "1999": 0.767, + "2000": 0.767, + "2001": 0.77, + "2002": 0.753, + "2003": 0.739, + "2004": 0.762, + "2005": 0.774, + "2006": 0.786, + "2007": 0.796, + "2008": 0.802, + "2009": 0.795, + "2010": 0.79, + "2011": 0.794, + "2012": 0.8, + "2013": 0.8, + "2014": 0.792, + "2015": 0.78, + "2016": 0.752, + "2017": 0.727, + "2018": 0.702, + "2019": 0.643, + "2020": 0.588, + "2021": 0.585 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr110", + "Region": "Amacuros Delta Federal Territory", + "1990": 0.734, + "1991": 0.744, + "1992": 0.749, + "1993": 0.746, + "1994": 0.739, + "1995": 0.742, + "1996": 0.738, + "1997": 0.745, + "1998": 0.742, + "1999": 0.73, + "2000": 0.731, + "2001": 0.733, + "2002": 0.717, + "2003": 0.703, + "2004": 0.725, + "2005": 0.737, + "2006": 0.749, + "2007": 0.759, + "2008": 0.764, + "2009": 0.757, + "2010": 0.753, + "2011": 0.757, + "2012": 0.763, + "2013": 0.763, + "2014": 0.755, + "2015": 0.743, + "2016": 0.715, + "2017": 0.691, + "2018": 0.667, + "2019": 0.609, + "2020": 0.556, + "2021": 0.553 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr102", + "Region": "Amazonas Federal Territory", + "1990": 0.746, + "1991": 0.756, + "1992": 0.762, + "1993": 0.759, + "1994": 0.752, + "1995": 0.754, + "1996": 0.751, + "1997": 0.757, + "1998": 0.755, + "1999": 0.742, + "2000": 0.743, + "2001": 0.745, + "2002": 0.729, + "2003": 0.715, + "2004": 0.737, + "2005": 0.75, + "2006": 0.761, + "2007": 0.771, + "2008": 0.777, + "2009": 0.77, + "2010": 0.765, + "2011": 0.769, + "2012": 0.775, + "2013": 0.775, + "2014": 0.767, + "2015": 0.756, + "2016": 0.727, + "2017": 0.703, + "2018": 0.679, + "2019": 0.62, + "2020": 0.567, + "2021": 0.564 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr103", + "Region": "Anzoategui", + "1990": 0.773, + "1991": 0.784, + "1992": 0.789, + "1993": 0.786, + "1994": 0.779, + "1995": 0.782, + "1996": 0.778, + "1997": 0.784, + "1998": 0.782, + "1999": 0.77, + "2000": 0.77, + "2001": 0.773, + "2002": 0.756, + "2003": 0.741, + "2004": 0.764, + "2005": 0.777, + "2006": 0.789, + "2007": 0.799, + "2008": 0.805, + "2009": 0.797, + "2010": 0.793, + "2011": 0.797, + "2012": 0.803, + "2013": 0.803, + "2014": 0.795, + "2015": 0.783, + "2016": 0.754, + "2017": 0.73, + "2018": 0.705, + "2019": 0.645, + "2020": 0.59, + "2021": 0.587 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr104", + "Region": "Apure", + "1990": 0.675, + "1991": 0.685, + "1992": 0.69, + "1993": 0.687, + "1994": 0.681, + "1995": 0.683, + "1996": 0.68, + "1997": 0.685, + "1998": 0.683, + "1999": 0.672, + "2000": 0.672, + "2001": 0.674, + "2002": 0.659, + "2003": 0.645, + "2004": 0.667, + "2005": 0.678, + "2006": 0.689, + "2007": 0.699, + "2008": 0.704, + "2009": 0.698, + "2010": 0.693, + "2011": 0.697, + "2012": 0.703, + "2013": 0.703, + "2014": 0.695, + "2015": 0.684, + "2016": 0.657, + "2017": 0.634, + "2018": 0.611, + "2019": 0.556, + "2020": 0.504, + "2021": 0.502 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr105", + "Region": "Aragua", + "1990": 0.795, + "1991": 0.806, + "1992": 0.811, + "1993": 0.808, + "1994": 0.801, + "1995": 0.804, + "1996": 0.8, + "1997": 0.807, + "1998": 0.804, + "1999": 0.792, + "2000": 0.792, + "2001": 0.795, + "2002": 0.778, + "2003": 0.763, + "2004": 0.786, + "2005": 0.799, + "2006": 0.811, + "2007": 0.822, + "2008": 0.827, + "2009": 0.82, + "2010": 0.815, + "2011": 0.819, + "2012": 0.826, + "2013": 0.825, + "2014": 0.817, + "2015": 0.805, + "2016": 0.776, + "2017": 0.751, + "2018": 0.726, + "2019": 0.665, + "2020": 0.61, + "2021": 0.607 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr106", + "Region": "Barinas", + "1990": 0.716, + "1991": 0.726, + "1992": 0.732, + "1993": 0.729, + "1994": 0.722, + "1995": 0.724, + "1996": 0.721, + "1997": 0.727, + "1998": 0.725, + "1999": 0.713, + "2000": 0.713, + "2001": 0.716, + "2002": 0.7, + "2003": 0.686, + "2004": 0.708, + "2005": 0.72, + "2006": 0.731, + "2007": 0.741, + "2008": 0.746, + "2009": 0.74, + "2010": 0.735, + "2011": 0.739, + "2012": 0.745, + "2013": 0.745, + "2014": 0.737, + "2015": 0.726, + "2016": 0.698, + "2017": 0.675, + "2018": 0.65, + "2019": 0.593, + "2020": 0.541, + "2021": 0.538 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr107", + "Region": "Bolivar", + "1990": 0.766, + "1991": 0.776, + "1992": 0.782, + "1993": 0.778, + "1994": 0.772, + "1995": 0.774, + "1996": 0.771, + "1997": 0.777, + "1998": 0.774, + "1999": 0.762, + "2000": 0.762, + "2001": 0.765, + "2002": 0.749, + "2003": 0.734, + "2004": 0.757, + "2005": 0.769, + "2006": 0.781, + "2007": 0.791, + "2008": 0.797, + "2009": 0.79, + "2010": 0.785, + "2011": 0.789, + "2012": 0.795, + "2013": 0.795, + "2014": 0.787, + "2015": 0.775, + "2016": 0.747, + "2017": 0.722, + "2018": 0.697, + "2019": 0.638, + "2020": 0.584, + "2021": 0.581 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr108", + "Region": "Carabobo", + "1990": 0.792, + "1991": 0.802, + "1992": 0.808, + "1993": 0.805, + "1994": 0.798, + "1995": 0.8, + "1996": 0.797, + "1997": 0.803, + "1998": 0.801, + "1999": 0.788, + "2000": 0.789, + "2001": 0.791, + "2002": 0.774, + "2003": 0.76, + "2004": 0.783, + "2005": 0.796, + "2006": 0.808, + "2007": 0.818, + "2008": 0.824, + "2009": 0.816, + "2010": 0.812, + "2011": 0.816, + "2012": 0.822, + "2013": 0.822, + "2014": 0.814, + "2015": 0.802, + "2016": 0.773, + "2017": 0.748, + "2018": 0.722, + "2019": 0.662, + "2020": 0.607, + "2021": 0.604 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr109", + "Region": "Cojedes", + "1990": 0.744, + "1991": 0.754, + "1992": 0.759, + "1993": 0.756, + "1994": 0.75, + "1995": 0.752, + "1996": 0.749, + "1997": 0.755, + "1998": 0.752, + "1999": 0.74, + "2000": 0.741, + "2001": 0.743, + "2002": 0.727, + "2003": 0.713, + "2004": 0.735, + "2005": 0.747, + "2006": 0.759, + "2007": 0.769, + "2008": 0.775, + "2009": 0.768, + "2010": 0.763, + "2011": 0.767, + "2012": 0.773, + "2013": 0.773, + "2014": 0.765, + "2015": 0.753, + "2016": 0.725, + "2017": 0.701, + "2018": 0.677, + "2019": 0.618, + "2020": 0.565, + "2021": 0.562 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr111", + "Region": "Falcon", + "1990": 0.755, + "1991": 0.765, + "1992": 0.77, + "1993": 0.767, + "1994": 0.76, + "1995": 0.763, + "1996": 0.759, + "1997": 0.766, + "1998": 0.763, + "1999": 0.751, + "2000": 0.751, + "2001": 0.754, + "2002": 0.738, + "2003": 0.723, + "2004": 0.746, + "2005": 0.758, + "2006": 0.77, + "2007": 0.78, + "2008": 0.786, + "2009": 0.778, + "2010": 0.774, + "2011": 0.778, + "2012": 0.784, + "2013": 0.784, + "2014": 0.776, + "2015": 0.764, + "2016": 0.736, + "2017": 0.712, + "2018": 0.687, + "2019": 0.628, + "2020": 0.574, + "2021": 0.571 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr101", + "Region": "Federal District", + "1990": 0.825, + "1991": 0.836, + "1992": 0.841, + "1993": 0.838, + "1994": 0.831, + "1995": 0.834, + "1996": 0.83, + "1997": 0.836, + "1998": 0.834, + "1999": 0.821, + "2000": 0.821, + "2001": 0.824, + "2002": 0.807, + "2003": 0.792, + "2004": 0.816, + "2005": 0.829, + "2006": 0.841, + "2007": 0.852, + "2008": 0.857, + "2009": 0.85, + "2010": 0.845, + "2011": 0.849, + "2012": 0.856, + "2013": 0.855, + "2014": 0.847, + "2015": 0.835, + "2016": 0.805, + "2017": 0.78, + "2018": 0.754, + "2019": 0.692, + "2020": 0.636, + "2021": 0.633 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr112", + "Region": "Guarico", + "1990": 0.721, + "1991": 0.731, + "1992": 0.736, + "1993": 0.733, + "1994": 0.727, + "1995": 0.729, + "1996": 0.726, + "1997": 0.732, + "1998": 0.729, + "1999": 0.717, + "2000": 0.718, + "2001": 0.72, + "2002": 0.704, + "2003": 0.69, + "2004": 0.712, + "2005": 0.724, + "2006": 0.736, + "2007": 0.746, + "2008": 0.751, + "2009": 0.744, + "2010": 0.74, + "2011": 0.744, + "2012": 0.75, + "2013": 0.749, + "2014": 0.742, + "2015": 0.73, + "2016": 0.703, + "2017": 0.679, + "2018": 0.655, + "2019": 0.597, + "2020": 0.545, + "2021": 0.542 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr113", + "Region": "Lara", + "1990": 0.746, + "1991": 0.756, + "1992": 0.761, + "1993": 0.758, + "1994": 0.752, + "1995": 0.754, + "1996": 0.751, + "1997": 0.757, + "1998": 0.754, + "1999": 0.742, + "2000": 0.743, + "2001": 0.745, + "2002": 0.729, + "2003": 0.715, + "2004": 0.737, + "2005": 0.749, + "2006": 0.761, + "2007": 0.771, + "2008": 0.777, + "2009": 0.77, + "2010": 0.765, + "2011": 0.769, + "2012": 0.775, + "2013": 0.775, + "2014": 0.767, + "2015": 0.755, + "2016": 0.727, + "2017": 0.703, + "2018": 0.678, + "2019": 0.62, + "2020": 0.566, + "2021": 0.564 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr114", + "Region": "Merida", + "1990": 0.765, + "1991": 0.775, + "1992": 0.781, + "1993": 0.778, + "1994": 0.771, + "1995": 0.773, + "1996": 0.77, + "1997": 0.776, + "1998": 0.774, + "1999": 0.761, + "2000": 0.762, + "2001": 0.764, + "2002": 0.748, + "2003": 0.733, + "2004": 0.756, + "2005": 0.769, + "2006": 0.78, + "2007": 0.791, + "2008": 0.796, + "2009": 0.789, + "2010": 0.785, + "2011": 0.789, + "2012": 0.795, + "2013": 0.795, + "2014": 0.786, + "2015": 0.775, + "2016": 0.746, + "2017": 0.722, + "2018": 0.697, + "2019": 0.638, + "2020": 0.583, + "2021": 0.58 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr115", + "Region": "Miranda", + "1990": 0.808, + "1991": 0.818, + "1992": 0.824, + "1993": 0.821, + "1994": 0.814, + "1995": 0.816, + "1996": 0.813, + "1997": 0.819, + "1998": 0.817, + "1999": 0.804, + "2000": 0.804, + "2001": 0.807, + "2002": 0.79, + "2003": 0.775, + "2004": 0.799, + "2005": 0.811, + "2006": 0.824, + "2007": 0.834, + "2008": 0.84, + "2009": 0.832, + "2010": 0.828, + "2011": 0.832, + "2012": 0.838, + "2013": 0.838, + "2014": 0.83, + "2015": 0.818, + "2016": 0.788, + "2017": 0.763, + "2018": 0.737, + "2019": 0.677, + "2020": 0.621, + "2021": 0.618 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr116", + "Region": "Monagas", + "1990": 0.753, + "1991": 0.764, + "1992": 0.769, + "1993": 0.766, + "1994": 0.759, + "1995": 0.762, + "1996": 0.758, + "1997": 0.764, + "1998": 0.762, + "1999": 0.75, + "2000": 0.75, + "2001": 0.753, + "2002": 0.736, + "2003": 0.722, + "2004": 0.745, + "2005": 0.757, + "2006": 0.769, + "2007": 0.779, + "2008": 0.784, + "2009": 0.777, + "2010": 0.773, + "2011": 0.777, + "2012": 0.783, + "2013": 0.783, + "2014": 0.775, + "2015": 0.763, + "2016": 0.735, + "2017": 0.71, + "2018": 0.686, + "2019": 0.627, + "2020": 0.573, + "2021": 0.57 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr117", + "Region": "Nueva Esparta", + "1990": 0.797, + "1991": 0.808, + "1992": 0.813, + "1993": 0.81, + "1994": 0.803, + "1995": 0.806, + "1996": 0.802, + "1997": 0.809, + "1998": 0.806, + "1999": 0.794, + "2000": 0.794, + "2001": 0.797, + "2002": 0.78, + "2003": 0.765, + "2004": 0.788, + "2005": 0.801, + "2006": 0.813, + "2007": 0.824, + "2008": 0.829, + "2009": 0.822, + "2010": 0.817, + "2011": 0.821, + "2012": 0.828, + "2013": 0.827, + "2014": 0.819, + "2015": 0.807, + "2016": 0.778, + "2017": 0.753, + "2018": 0.728, + "2019": 0.667, + "2020": 0.612, + "2021": 0.609 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr118", + "Region": "Portuguesa", + "1990": 0.719, + "1991": 0.73, + "1992": 0.735, + "1993": 0.732, + "1994": 0.725, + "1995": 0.728, + "1996": 0.724, + "1997": 0.73, + "1998": 0.728, + "1999": 0.716, + "2000": 0.716, + "2001": 0.719, + "2002": 0.703, + "2003": 0.689, + "2004": 0.711, + "2005": 0.723, + "2006": 0.734, + "2007": 0.744, + "2008": 0.75, + "2009": 0.743, + "2010": 0.738, + "2011": 0.742, + "2012": 0.748, + "2013": 0.748, + "2014": 0.74, + "2015": 0.729, + "2016": 0.701, + "2017": 0.678, + "2018": 0.653, + "2019": 0.596, + "2020": 0.543, + "2021": 0.54 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr119", + "Region": "Sucre", + "1990": 0.74, + "1991": 0.75, + "1992": 0.755, + "1993": 0.753, + "1994": 0.746, + "1995": 0.748, + "1996": 0.745, + "1997": 0.751, + "1998": 0.748, + "1999": 0.736, + "2000": 0.737, + "2001": 0.739, + "2002": 0.723, + "2003": 0.709, + "2004": 0.731, + "2005": 0.743, + "2006": 0.755, + "2007": 0.765, + "2008": 0.771, + "2009": 0.764, + "2010": 0.759, + "2011": 0.763, + "2012": 0.769, + "2013": 0.769, + "2014": 0.761, + "2015": 0.749, + "2016": 0.721, + "2017": 0.697, + "2018": 0.673, + "2019": 0.615, + "2020": 0.561, + "2021": 0.558 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr120", + "Region": "Tachira", + "1990": 0.777, + "1991": 0.787, + "1992": 0.793, + "1993": 0.79, + "1994": 0.783, + "1995": 0.785, + "1996": 0.782, + "1997": 0.788, + "1998": 0.785, + "1999": 0.773, + "2000": 0.773, + "2001": 0.776, + "2002": 0.759, + "2003": 0.745, + "2004": 0.768, + "2005": 0.78, + "2006": 0.792, + "2007": 0.803, + "2008": 0.808, + "2009": 0.801, + "2010": 0.796, + "2011": 0.8, + "2012": 0.807, + "2013": 0.806, + "2014": 0.798, + "2015": 0.786, + "2016": 0.758, + "2017": 0.733, + "2018": 0.708, + "2019": 0.648, + "2020": 0.594, + "2021": 0.59 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr121", + "Region": "Trujillo", + "1990": 0.738, + "1991": 0.748, + "1992": 0.753, + "1993": 0.75, + "1994": 0.744, + "1995": 0.746, + "1996": 0.743, + "1997": 0.749, + "1998": 0.746, + "1999": 0.734, + "2000": 0.735, + "2001": 0.737, + "2002": 0.721, + "2003": 0.707, + "2004": 0.729, + "2005": 0.741, + "2006": 0.753, + "2007": 0.763, + "2008": 0.769, + "2009": 0.762, + "2010": 0.757, + "2011": 0.761, + "2012": 0.767, + "2013": 0.767, + "2014": 0.759, + "2015": 0.747, + "2016": 0.719, + "2017": 0.696, + "2018": 0.671, + "2019": 0.613, + "2020": 0.56, + "2021": 0.557 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr124", + "Region": "Vargas", + "1990": 0.792, + "1991": 0.802, + "1992": 0.808, + "1993": 0.805, + "1994": 0.798, + "1995": 0.8, + "1996": 0.797, + "1997": 0.803, + "1998": 0.8, + "1999": 0.788, + "2000": 0.788, + "2001": 0.791, + "2002": 0.774, + "2003": 0.759, + "2004": 0.783, + "2005": 0.795, + "2006": 0.807, + "2007": 0.818, + "2008": 0.823, + "2009": 0.816, + "2010": 0.812, + "2011": 0.816, + "2012": 0.822, + "2013": 0.822, + "2014": 0.813, + "2015": 0.801, + "2016": 0.772, + "2017": 0.748, + "2018": 0.722, + "2019": 0.662, + "2020": 0.607, + "2021": 0.603 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr122", + "Region": "Yaracuy", + "1990": 0.736, + "1991": 0.747, + "1992": 0.752, + "1993": 0.749, + "1994": 0.742, + "1995": 0.745, + "1996": 0.741, + "1997": 0.747, + "1998": 0.745, + "1999": 0.733, + "2000": 0.733, + "2001": 0.736, + "2002": 0.72, + "2003": 0.705, + "2004": 0.728, + "2005": 0.74, + "2006": 0.751, + "2007": 0.762, + "2008": 0.767, + "2009": 0.76, + "2010": 0.756, + "2011": 0.759, + "2012": 0.765, + "2013": 0.765, + "2014": 0.757, + "2015": 0.746, + "2016": 0.718, + "2017": 0.694, + "2018": 0.669, + "2019": 0.611, + "2020": 0.558, + "2021": 0.555 + }, + { + "Country": "Venezuela", + "Continent": "America", + "ISO_Code": "VEN", + "Level": "Subnat", + "GDLCODE": "VENr123", + "Region": "Zulia", + "1990": 0.76, + "1991": 0.771, + "1992": 0.776, + "1993": 0.773, + "1994": 0.766, + "1995": 0.769, + "1996": 0.765, + "1997": 0.772, + "1998": 0.769, + "1999": 0.757, + "2000": 0.757, + "2001": 0.76, + "2002": 0.743, + "2003": 0.729, + "2004": 0.752, + "2005": 0.764, + "2006": 0.776, + "2007": 0.786, + "2008": 0.792, + "2009": 0.784, + "2010": 0.78, + "2011": 0.784, + "2012": 0.79, + "2013": 0.79, + "2014": 0.782, + "2015": 0.77, + "2016": 0.742, + "2017": 0.717, + "2018": 0.692, + "2019": 0.633, + "2020": 0.579, + "2021": 0.576 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "National", + "GDLCODE": "VNMt", + "Region": "Total", + "1990": 0.417, + "1991": 0.424, + "1992": 0.437, + "1993": 0.445, + "1994": 0.457, + "1995": 0.471, + "1996": 0.481, + "1997": 0.49, + "1998": 0.496, + "1999": 0.502, + "2000": 0.51, + "2001": 0.518, + "2002": 0.525, + "2003": 0.534, + "2004": 0.543, + "2005": 0.553, + "2006": 0.561, + "2007": 0.569, + "2008": 0.576, + "2009": 0.58, + "2010": 0.589, + "2011": 0.595, + "2012": 0.602, + "2013": 0.608, + "2014": 0.614, + "2015": 0.62, + "2016": 0.626, + "2017": 0.633, + "2018": 0.644, + "2019": 0.653, + "2020": 0.657, + "2021": 0.659 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr104", + "Region": "Central Highlands", + "1990": 0.404, + "1991": 0.411, + "1992": 0.423, + "1993": 0.432, + "1994": 0.443, + "1995": 0.458, + "1996": 0.468, + "1997": 0.476, + "1998": 0.479, + "1999": 0.481, + "2000": 0.487, + "2001": 0.491, + "2002": 0.495, + "2003": 0.502, + "2004": 0.51, + "2005": 0.519, + "2006": 0.526, + "2007": 0.54, + "2008": 0.552, + "2009": 0.563, + "2010": 0.577, + "2011": 0.579, + "2012": 0.582, + "2013": 0.584, + "2014": 0.586, + "2015": 0.591, + "2016": 0.596, + "2017": 0.602, + "2018": 0.611, + "2019": 0.619, + "2020": 0.622, + "2021": 0.623 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr106", + "Region": "Mekong River Delta", + "1990": 0.378, + "1991": 0.385, + "1992": 0.397, + "1993": 0.405, + "1994": 0.417, + "1995": 0.431, + "1996": 0.441, + "1997": 0.449, + "1998": 0.454, + "1999": 0.46, + "2000": 0.468, + "2001": 0.476, + "2002": 0.483, + "2003": 0.498, + "2004": 0.513, + "2005": 0.529, + "2006": 0.543, + "2007": 0.549, + "2008": 0.554, + "2009": 0.557, + "2010": 0.564, + "2011": 0.571, + "2012": 0.577, + "2013": 0.583, + "2014": 0.59, + "2015": 0.598, + "2016": 0.607, + "2017": 0.616, + "2018": 0.629, + "2019": 0.64, + "2020": 0.647, + "2021": 0.652 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr103", + "Region": "North Central Coast and South Central Coast", + "1990": 0.399, + "1991": 0.406, + "1992": 0.419, + "1993": 0.427, + "1994": 0.438, + "1995": 0.453, + "1996": 0.463, + "1997": 0.471, + "1998": 0.478, + "1999": 0.484, + "2000": 0.493, + "2001": 0.502, + "2002": 0.51, + "2003": 0.518, + "2004": 0.527, + "2005": 0.536, + "2006": 0.544, + "2007": 0.553, + "2008": 0.561, + "2009": 0.567, + "2010": 0.576, + "2011": 0.583, + "2012": 0.589, + "2013": 0.596, + "2014": 0.602, + "2015": 0.609, + "2016": 0.617, + "2017": 0.625, + "2018": 0.636, + "2019": 0.646, + "2020": 0.652, + "2021": 0.655 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr102", + "Region": "North East, North West", + "1990": 0.383, + "1991": 0.39, + "1992": 0.402, + "1993": 0.41, + "1994": 0.421, + "1995": 0.435, + "1996": 0.445, + "1997": 0.454, + "1998": 0.458, + "1999": 0.462, + "2000": 0.47, + "2001": 0.476, + "2002": 0.482, + "2003": 0.488, + "2004": 0.495, + "2005": 0.503, + "2006": 0.509, + "2007": 0.521, + "2008": 0.532, + "2009": 0.541, + "2010": 0.554, + "2011": 0.56, + "2012": 0.566, + "2013": 0.571, + "2014": 0.577, + "2015": 0.583, + "2016": 0.589, + "2017": 0.596, + "2018": 0.607, + "2019": 0.616, + "2020": 0.62, + "2021": 0.623 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr101", + "Region": "Red River Delta", + "1990": 0.436, + "1991": 0.443, + "1992": 0.456, + "1993": 0.464, + "1994": 0.476, + "1995": 0.491, + "1996": 0.501, + "1997": 0.51, + "1998": 0.518, + "1999": 0.526, + "2000": 0.536, + "2001": 0.546, + "2002": 0.555, + "2003": 0.562, + "2004": 0.569, + "2005": 0.577, + "2006": 0.583, + "2007": 0.591, + "2008": 0.597, + "2009": 0.602, + "2010": 0.61, + "2011": 0.618, + "2012": 0.626, + "2013": 0.634, + "2014": 0.642, + "2015": 0.646, + "2016": 0.652, + "2017": 0.658, + "2018": 0.668, + "2019": 0.676, + "2020": 0.679, + "2021": 0.681 + }, + { + "Country": "Vietnam", + "Continent": "Asia/Pacific", + "ISO_Code": "VNM", + "Level": "Subnat", + "GDLCODE": "VNMr105", + "Region": "South East", + "1990": 0.496, + "1991": 0.504, + "1992": 0.517, + "1993": 0.526, + "1994": 0.539, + "1995": 0.554, + "1996": 0.565, + "1997": 0.574, + "1998": 0.579, + "1999": 0.584, + "2000": 0.591, + "2001": 0.598, + "2002": 0.604, + "2003": 0.611, + "2004": 0.618, + "2005": 0.626, + "2006": 0.632, + "2007": 0.636, + "2008": 0.638, + "2009": 0.639, + "2010": 0.643, + "2011": 0.647, + "2012": 0.651, + "2013": 0.654, + "2014": 0.657, + "2015": 0.659, + "2016": 0.662, + "2017": 0.665, + "2018": 0.672, + "2019": 0.678, + "2020": 0.678, + "2021": 0.677 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "National", + "GDLCODE": "YEMt", + "Region": "Total", + "1990": 0.5, + "1991": 0.491, + "1992": 0.489, + "1993": 0.489, + "1994": 0.485, + "1995": 0.497, + "1996": 0.513, + "1997": 0.517, + "1998": 0.525, + "1999": 0.522, + "2000": 0.53, + "2001": 0.536, + "2002": 0.538, + "2003": 0.54, + "2004": 0.541, + "2005": 0.544, + "2006": 0.552, + "2007": 0.553, + "2008": 0.553, + "2009": 0.554, + "2010": 0.553, + "2011": 0.522, + "2012": 0.521, + "2013": 0.524, + "2014": 0.502, + "2015": 0.435, + "2016": 0.408, + "2017": 0.388, + "2018": 0.392, + "2019": 0.393, + "2020": 0.395, + "2021": 0.389 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr102", + "Region": "Abyan, Aden (town and countryside), Lahej, Ad Dali (Al Dhalih)", + "1990": 0.566, + "1991": 0.556, + "1992": 0.555, + "1993": 0.554, + "1994": 0.55, + "1995": 0.563, + "1996": 0.58, + "1997": 0.584, + "1998": 0.595, + "1999": 0.593, + "2000": 0.603, + "2001": 0.611, + "2002": 0.615, + "2003": 0.62, + "2004": 0.622, + "2005": 0.628, + "2006": 0.637, + "2007": 0.634, + "2008": 0.629, + "2009": 0.626, + "2010": 0.621, + "2011": 0.583, + "2012": 0.578, + "2013": 0.576, + "2014": 0.553, + "2015": 0.484, + "2016": 0.456, + "2017": 0.434, + "2018": 0.439, + "2019": 0.44, + "2020": 0.442, + "2021": 0.436 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr104", + "Region": "Beida (Al Bayda), Dhamar, Raimah", + "1990": 0.491, + "1991": 0.483, + "1992": 0.481, + "1993": 0.48, + "1994": 0.477, + "1995": 0.489, + "1996": 0.505, + "1997": 0.509, + "1998": 0.512, + "1999": 0.504, + "2000": 0.507, + "2001": 0.509, + "2002": 0.506, + "2003": 0.504, + "2004": 0.5, + "2005": 0.499, + "2006": 0.502, + "2007": 0.504, + "2008": 0.506, + "2009": 0.508, + "2010": 0.508, + "2011": 0.479, + "2012": 0.48, + "2013": 0.483, + "2014": 0.462, + "2015": 0.398, + "2016": 0.372, + "2017": 0.352, + "2018": 0.356, + "2019": 0.357, + "2020": 0.359, + "2021": 0.353 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr107", + "Region": "Hajja, Sada, Amran (Omran)", + "1990": 0.444, + "1991": 0.435, + "1992": 0.434, + "1993": 0.433, + "1994": 0.43, + "1995": 0.442, + "1996": 0.457, + "1997": 0.461, + "1998": 0.465, + "1999": 0.458, + "2000": 0.461, + "2001": 0.463, + "2002": 0.462, + "2003": 0.46, + "2004": 0.457, + "2005": 0.457, + "2006": 0.46, + "2007": 0.463, + "2008": 0.466, + "2009": 0.469, + "2010": 0.47, + "2011": 0.443, + "2012": 0.445, + "2013": 0.449, + "2014": 0.429, + "2015": 0.366, + "2016": 0.341, + "2017": 0.321, + "2018": 0.325, + "2019": 0.326, + "2020": 0.328, + "2021": 0.323 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr108", + "Region": "Hodeida (Al Hudaydah), Mahweit (Al Mahwit)", + "1990": 0.428, + "1991": 0.42, + "1992": 0.419, + "1993": 0.418, + "1994": 0.414, + "1995": 0.426, + "1996": 0.441, + "1997": 0.445, + "1998": 0.453, + "1999": 0.45, + "2000": 0.458, + "2001": 0.464, + "2002": 0.466, + "2003": 0.469, + "2004": 0.47, + "2005": 0.474, + "2006": 0.481, + "2007": 0.484, + "2008": 0.486, + "2009": 0.49, + "2010": 0.491, + "2011": 0.463, + "2012": 0.464, + "2013": 0.469, + "2014": 0.448, + "2015": 0.384, + "2016": 0.358, + "2017": 0.339, + "2018": 0.343, + "2019": 0.344, + "2020": 0.346, + "2021": 0.34 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr101", + "Region": "Ibb", + "1990": 0.47, + "1991": 0.462, + "1992": 0.46, + "1993": 0.46, + "1994": 0.456, + "1995": 0.468, + "1996": 0.483, + "1997": 0.488, + "1998": 0.498, + "1999": 0.497, + "2000": 0.507, + "2001": 0.516, + "2002": 0.52, + "2003": 0.525, + "2004": 0.529, + "2005": 0.534, + "2006": 0.544, + "2007": 0.547, + "2008": 0.548, + "2009": 0.551, + "2010": 0.552, + "2011": 0.521, + "2012": 0.523, + "2013": 0.527, + "2014": 0.505, + "2015": 0.438, + "2016": 0.411, + "2017": 0.39, + "2018": 0.395, + "2019": 0.396, + "2020": 0.398, + "2021": 0.392 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr106", + "Region": "Jawf, Hadramet, Shabda (Shabwah), Marib, Mohra (Al Mahrah)", + "1990": 0.571, + "1991": 0.561, + "1992": 0.56, + "1993": 0.559, + "1994": 0.555, + "1995": 0.568, + "1996": 0.585, + "1997": 0.589, + "1998": 0.596, + "1999": 0.591, + "2000": 0.597, + "2001": 0.602, + "2002": 0.603, + "2003": 0.604, + "2004": 0.603, + "2005": 0.605, + "2006": 0.611, + "2007": 0.615, + "2008": 0.618, + "2009": 0.623, + "2010": 0.625, + "2011": 0.594, + "2012": 0.596, + "2013": 0.602, + "2014": 0.579, + "2015": 0.508, + "2016": 0.479, + "2017": 0.457, + "2018": 0.462, + "2019": 0.463, + "2020": 0.465, + "2021": 0.459 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr103", + "Region": "Sana a (capital; Al Amana), Sana a (governorate)", + "1990": 0.561, + "1991": 0.552, + "1992": 0.55, + "1993": 0.55, + "1994": 0.546, + "1995": 0.559, + "1996": 0.575, + "1997": 0.58, + "1998": 0.593, + "1999": 0.594, + "2000": 0.608, + "2001": 0.619, + "2002": 0.626, + "2003": 0.633, + "2004": 0.639, + "2005": 0.647, + "2006": 0.66, + "2007": 0.659, + "2008": 0.657, + "2009": 0.657, + "2010": 0.654, + "2011": 0.618, + "2012": 0.616, + "2013": 0.618, + "2014": 0.594, + "2015": 0.522, + "2016": 0.493, + "2017": 0.471, + "2018": 0.476, + "2019": 0.477, + "2020": 0.479, + "2021": 0.472 + }, + { + "Country": "Yemen", + "Continent": "Asia/Pacific", + "ISO_Code": "YEM", + "Level": "Subnat", + "GDLCODE": "YEMr105", + "Region": "Taiz", + "1990": 0.478, + "1991": 0.469, + "1992": 0.467, + "1993": 0.467, + "1994": 0.463, + "1995": 0.475, + "1996": 0.491, + "1997": 0.495, + "1998": 0.506, + "1999": 0.507, + "2000": 0.518, + "2001": 0.527, + "2002": 0.533, + "2003": 0.539, + "2004": 0.543, + "2005": 0.55, + "2006": 0.561, + "2007": 0.559, + "2008": 0.556, + "2009": 0.554, + "2010": 0.55, + "2011": 0.516, + "2012": 0.512, + "2013": 0.512, + "2014": 0.49, + "2015": 0.424, + "2016": 0.398, + "2017": 0.377, + "2018": 0.382, + "2019": 0.383, + "2020": 0.385, + "2021": 0.379 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "National", + "GDLCODE": "ZMBt", + "Region": "Total", + "1990": 0.454, + "1991": 0.442, + "1992": 0.438, + "1993": 0.448, + "1994": 0.433, + "1995": 0.434, + "1996": 0.44, + "1997": 0.441, + "1998": 0.436, + "1999": 0.441, + "2000": 0.443, + "2001": 0.447, + "2002": 0.451, + "2003": 0.458, + "2004": 0.459, + "2005": 0.464, + "2006": 0.469, + "2007": 0.474, + "2008": 0.486, + "2009": 0.503, + "2010": 0.507, + "2011": 0.507, + "2012": 0.53, + "2013": 0.532, + "2014": 0.526, + "2015": 0.533, + "2016": 0.525, + "2017": 0.53, + "2018": 0.533, + "2019": 0.531, + "2020": 0.523, + "2021": 0.524 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr101", + "Region": "Central", + "1990": 0.436, + "1991": 0.425, + "1992": 0.421, + "1993": 0.431, + "1994": 0.416, + "1995": 0.416, + "1996": 0.422, + "1997": 0.425, + "1998": 0.421, + "1999": 0.428, + "2000": 0.431, + "2001": 0.437, + "2002": 0.442, + "2003": 0.448, + "2004": 0.448, + "2005": 0.452, + "2006": 0.456, + "2007": 0.46, + "2008": 0.471, + "2009": 0.487, + "2010": 0.49, + "2011": 0.489, + "2012": 0.51, + "2013": 0.512, + "2014": 0.506, + "2015": 0.513, + "2016": 0.507, + "2017": 0.512, + "2018": 0.517, + "2019": 0.515, + "2020": 0.506, + "2021": 0.508 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr102", + "Region": "Copperbelt", + "1990": 0.569, + "1991": 0.556, + "1992": 0.552, + "1993": 0.563, + "1994": 0.546, + "1995": 0.547, + "1996": 0.554, + "1997": 0.555, + "1998": 0.549, + "1999": 0.555, + "2000": 0.558, + "2001": 0.562, + "2002": 0.566, + "2003": 0.57, + "2004": 0.567, + "2005": 0.569, + "2006": 0.57, + "2007": 0.572, + "2008": 0.585, + "2009": 0.604, + "2010": 0.609, + "2011": 0.609, + "2012": 0.633, + "2013": 0.636, + "2014": 0.63, + "2015": 0.631, + "2016": 0.618, + "2017": 0.617, + "2018": 0.615, + "2019": 0.613, + "2020": 0.604, + "2021": 0.606 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr103", + "Region": "Eastern", + "1990": 0.397, + "1991": 0.386, + "1992": 0.382, + "1993": 0.392, + "1994": 0.377, + "1995": 0.378, + "1996": 0.384, + "1997": 0.388, + "1998": 0.385, + "1999": 0.393, + "2000": 0.398, + "2001": 0.405, + "2002": 0.411, + "2003": 0.415, + "2004": 0.414, + "2005": 0.416, + "2006": 0.418, + "2007": 0.42, + "2008": 0.432, + "2009": 0.448, + "2010": 0.451, + "2011": 0.451, + "2012": 0.472, + "2013": 0.474, + "2014": 0.468, + "2015": 0.477, + "2016": 0.473, + "2017": 0.48, + "2018": 0.487, + "2019": 0.485, + "2020": 0.476, + "2021": 0.478 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr104", + "Region": "Luapula", + "1990": 0.396, + "1991": 0.385, + "1992": 0.381, + "1993": 0.391, + "1994": 0.376, + "1995": 0.377, + "1996": 0.383, + "1997": 0.383, + "1998": 0.376, + "1999": 0.38, + "2000": 0.381, + "2001": 0.383, + "2002": 0.385, + "2003": 0.395, + "2004": 0.398, + "2005": 0.405, + "2006": 0.413, + "2007": 0.42, + "2008": 0.429, + "2009": 0.442, + "2010": 0.443, + "2011": 0.44, + "2012": 0.458, + "2013": 0.458, + "2014": 0.449, + "2015": 0.46, + "2016": 0.457, + "2017": 0.466, + "2018": 0.474, + "2019": 0.472, + "2020": 0.463, + "2021": 0.465 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr105", + "Region": "Lusaka", + "1990": 0.555, + "1991": 0.542, + "1992": 0.538, + "1993": 0.548, + "1994": 0.532, + "1995": 0.533, + "1996": 0.539, + "1997": 0.537, + "1998": 0.528, + "1999": 0.529, + "2000": 0.528, + "2001": 0.529, + "2002": 0.529, + "2003": 0.544, + "2004": 0.551, + "2005": 0.563, + "2006": 0.576, + "2007": 0.588, + "2008": 0.601, + "2009": 0.619, + "2010": 0.623, + "2011": 0.623, + "2012": 0.647, + "2013": 0.649, + "2014": 0.643, + "2015": 0.646, + "2016": 0.635, + "2017": 0.636, + "2018": 0.637, + "2019": 0.635, + "2020": 0.625, + "2021": 0.627 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr107", + "Region": "North-Western", + "1990": 0.394, + "1991": 0.383, + "1992": 0.379, + "1993": 0.388, + "1994": 0.374, + "1995": 0.375, + "1996": 0.381, + "1997": 0.383, + "1998": 0.379, + "1999": 0.385, + "2000": 0.389, + "2001": 0.394, + "2002": 0.399, + "2003": 0.404, + "2004": 0.404, + "2005": 0.406, + "2006": 0.409, + "2007": 0.413, + "2008": 0.424, + "2009": 0.44, + "2010": 0.444, + "2011": 0.443, + "2012": 0.464, + "2013": 0.466, + "2014": 0.461, + "2015": 0.475, + "2016": 0.476, + "2017": 0.488, + "2018": 0.5, + "2019": 0.498, + "2020": 0.489, + "2021": 0.491 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr106", + "Region": "Northern", + "1990": 0.393, + "1991": 0.382, + "1992": 0.379, + "1993": 0.388, + "1994": 0.373, + "1995": 0.374, + "1996": 0.38, + "1997": 0.384, + "1998": 0.381, + "1999": 0.389, + "2000": 0.394, + "2001": 0.401, + "2002": 0.407, + "2003": 0.413, + "2004": 0.413, + "2005": 0.416, + "2006": 0.42, + "2007": 0.424, + "2008": 0.433, + "2009": 0.446, + "2010": 0.446, + "2011": 0.443, + "2012": 0.461, + "2013": 0.46, + "2014": 0.451, + "2015": 0.46, + "2016": 0.456, + "2017": 0.462, + "2018": 0.469, + "2019": 0.467, + "2020": 0.458, + "2021": 0.46 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr108", + "Region": "Southern", + "1990": 0.431, + "1991": 0.419, + "1992": 0.416, + "1993": 0.425, + "1994": 0.41, + "1995": 0.411, + "1996": 0.417, + "1997": 0.418, + "1998": 0.411, + "1999": 0.416, + "2000": 0.417, + "2001": 0.421, + "2002": 0.423, + "2003": 0.435, + "2004": 0.441, + "2005": 0.451, + "2006": 0.461, + "2007": 0.471, + "2008": 0.481, + "2009": 0.495, + "2010": 0.496, + "2011": 0.494, + "2012": 0.513, + "2013": 0.513, + "2014": 0.505, + "2015": 0.513, + "2016": 0.507, + "2017": 0.512, + "2018": 0.518, + "2019": 0.515, + "2020": 0.507, + "2021": 0.509 + }, + { + "Country": "Zambia", + "Continent": "Africa", + "ISO_Code": "ZMB", + "Level": "Subnat", + "GDLCODE": "ZMBr109", + "Region": "Western", + "1990": 0.388, + "1991": 0.377, + "1992": 0.374, + "1993": 0.383, + "1994": 0.369, + "1995": 0.369, + "1996": 0.375, + "1997": 0.376, + "1998": 0.37, + "1999": 0.374, + "2000": 0.376, + "2001": 0.379, + "2002": 0.381, + "2003": 0.387, + "2004": 0.387, + "2005": 0.39, + "2006": 0.394, + "2007": 0.397, + "2008": 0.407, + "2009": 0.42, + "2010": 0.421, + "2011": 0.419, + "2012": 0.438, + "2013": 0.438, + "2014": 0.43, + "2015": 0.438, + "2016": 0.432, + "2017": 0.437, + "2018": 0.442, + "2019": 0.44, + "2020": 0.432, + "2021": 0.434 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "National", + "GDLCODE": "ZWEt", + "Region": "Total", + "1990": 0.496, + "1991": 0.5, + "1992": 0.485, + "1993": 0.486, + "1994": 0.491, + "1995": 0.489, + "1996": 0.503, + "1997": 0.502, + "1998": 0.499, + "1999": 0.496, + "2000": 0.483, + "2001": 0.487, + "2002": 0.478, + "2003": 0.465, + "2004": 0.458, + "2005": 0.451, + "2006": 0.444, + "2007": 0.44, + "2008": 0.415, + "2009": 0.479, + "2010": 0.504, + "2011": 0.521, + "2012": 0.542, + "2013": 0.543, + "2014": 0.543, + "2015": 0.543, + "2016": 0.542, + "2017": 0.547, + "2018": 0.552, + "2019": 0.544, + "2020": 0.544, + "2021": 0.55 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr110", + "Region": "Bulawayo", + "1990": 0.666, + "1991": 0.671, + "1992": 0.654, + "1993": 0.655, + "1994": 0.661, + "1995": 0.654, + "1996": 0.666, + "1997": 0.66, + "1998": 0.652, + "1999": 0.643, + "2000": 0.631, + "2001": 0.637, + "2002": 0.629, + "2003": 0.616, + "2004": 0.611, + "2005": 0.604, + "2006": 0.599, + "2007": 0.593, + "2008": 0.565, + "2009": 0.636, + "2010": 0.664, + "2011": 0.682, + "2012": 0.702, + "2013": 0.7, + "2014": 0.698, + "2015": 0.694, + "2016": 0.689, + "2017": 0.692, + "2018": 0.694, + "2019": 0.682, + "2020": 0.681, + "2021": 0.688 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr109", + "Region": "Harare", + "1990": 0.648, + "1991": 0.653, + "1992": 0.636, + "1993": 0.637, + "1994": 0.643, + "1995": 0.635, + "1996": 0.646, + "1997": 0.639, + "1998": 0.631, + "1999": 0.622, + "2000": 0.61, + "2001": 0.616, + "2002": 0.608, + "2003": 0.596, + "2004": 0.59, + "2005": 0.585, + "2006": 0.579, + "2007": 0.568, + "2008": 0.535, + "2009": 0.598, + "2010": 0.619, + "2011": 0.631, + "2012": 0.649, + "2013": 0.645, + "2014": 0.64, + "2015": 0.635, + "2016": 0.635, + "2017": 0.642, + "2018": 0.649, + "2019": 0.643, + "2020": 0.642, + "2021": 0.648 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr101", + "Region": "Manicaland", + "1990": 0.437, + "1991": 0.442, + "1992": 0.427, + "1993": 0.428, + "1994": 0.433, + "1995": 0.43, + "1996": 0.443, + "1997": 0.442, + "1998": 0.438, + "1999": 0.434, + "2000": 0.427, + "2001": 0.435, + "2002": 0.431, + "2003": 0.423, + "2004": 0.421, + "2005": 0.419, + "2006": 0.417, + "2007": 0.414, + "2008": 0.391, + "2009": 0.454, + "2010": 0.48, + "2011": 0.498, + "2012": 0.517, + "2013": 0.517, + "2014": 0.516, + "2015": 0.515, + "2016": 0.513, + "2017": 0.518, + "2018": 0.523, + "2019": 0.515, + "2020": 0.514, + "2021": 0.52 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr102", + "Region": "Mashonaland Central", + "1990": 0.431, + "1991": 0.435, + "1992": 0.421, + "1993": 0.422, + "1994": 0.427, + "1995": 0.428, + "1996": 0.446, + "1997": 0.448, + "1998": 0.449, + "1999": 0.45, + "2000": 0.436, + "2001": 0.438, + "2002": 0.427, + "2003": 0.413, + "2004": 0.405, + "2005": 0.396, + "2006": 0.389, + "2007": 0.388, + "2008": 0.368, + "2009": 0.433, + "2010": 0.461, + "2011": 0.481, + "2012": 0.497, + "2013": 0.494, + "2014": 0.492, + "2015": 0.488, + "2016": 0.487, + "2017": 0.492, + "2018": 0.498, + "2019": 0.491, + "2020": 0.49, + "2021": 0.496 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr103", + "Region": "Mashonaland East", + "1990": 0.447, + "1991": 0.451, + "1992": 0.437, + "1993": 0.437, + "1994": 0.443, + "1995": 0.441, + "1996": 0.455, + "1997": 0.454, + "1998": 0.452, + "1999": 0.449, + "2000": 0.44, + "2001": 0.447, + "2002": 0.442, + "2003": 0.432, + "2004": 0.429, + "2005": 0.425, + "2006": 0.422, + "2007": 0.417, + "2008": 0.392, + "2009": 0.453, + "2010": 0.477, + "2011": 0.493, + "2012": 0.515, + "2013": 0.517, + "2014": 0.52, + "2015": 0.521, + "2016": 0.519, + "2017": 0.523, + "2018": 0.527, + "2019": 0.519, + "2020": 0.518, + "2021": 0.524 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr104", + "Region": "Mashonaland West", + "1990": 0.467, + "1991": 0.471, + "1992": 0.456, + "1993": 0.457, + "1994": 0.462, + "1995": 0.459, + "1996": 0.473, + "1997": 0.471, + "1998": 0.468, + "1999": 0.464, + "2000": 0.454, + "2001": 0.461, + "2002": 0.455, + "2003": 0.445, + "2004": 0.441, + "2005": 0.437, + "2006": 0.433, + "2007": 0.427, + "2008": 0.401, + "2009": 0.462, + "2010": 0.485, + "2011": 0.5, + "2012": 0.523, + "2013": 0.526, + "2014": 0.528, + "2015": 0.53, + "2016": 0.528, + "2017": 0.531, + "2018": 0.536, + "2019": 0.527, + "2020": 0.526, + "2021": 0.532 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr108", + "Region": "Masvingo", + "1990": 0.437, + "1991": 0.441, + "1992": 0.427, + "1993": 0.427, + "1994": 0.433, + "1995": 0.432, + "1996": 0.447, + "1997": 0.447, + "1998": 0.446, + "1999": 0.444, + "2000": 0.43, + "2001": 0.43, + "2002": 0.419, + "2003": 0.404, + "2004": 0.395, + "2005": 0.386, + "2006": 0.377, + "2007": 0.376, + "2008": 0.356, + "2009": 0.419, + "2010": 0.447, + "2011": 0.466, + "2012": 0.493, + "2013": 0.5, + "2014": 0.507, + "2015": 0.513, + "2016": 0.512, + "2017": 0.517, + "2018": 0.522, + "2019": 0.515, + "2020": 0.514, + "2021": 0.52 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr105", + "Region": "Matebeleland North", + "1990": 0.436, + "1991": 0.44, + "1992": 0.426, + "1993": 0.427, + "1994": 0.432, + "1995": 0.433, + "1996": 0.45, + "1997": 0.453, + "1998": 0.454, + "1999": 0.454, + "2000": 0.437, + "2001": 0.435, + "2002": 0.422, + "2003": 0.404, + "2004": 0.393, + "2005": 0.381, + "2006": 0.371, + "2007": 0.369, + "2008": 0.347, + "2009": 0.409, + "2010": 0.435, + "2011": 0.453, + "2012": 0.476, + "2013": 0.481, + "2014": 0.485, + "2015": 0.488, + "2016": 0.482, + "2017": 0.482, + "2018": 0.482, + "2019": 0.47, + "2020": 0.47, + "2021": 0.475 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr106", + "Region": "Matebeleland South", + "1990": 0.436, + "1991": 0.44, + "1992": 0.426, + "1993": 0.427, + "1994": 0.432, + "1995": 0.43, + "1996": 0.444, + "1997": 0.442, + "1998": 0.44, + "1999": 0.437, + "2000": 0.428, + "2001": 0.435, + "2002": 0.43, + "2003": 0.421, + "2004": 0.419, + "2005": 0.415, + "2006": 0.412, + "2007": 0.406, + "2008": 0.38, + "2009": 0.439, + "2010": 0.461, + "2011": 0.475, + "2012": 0.5, + "2013": 0.505, + "2014": 0.511, + "2015": 0.515, + "2016": 0.516, + "2017": 0.523, + "2018": 0.53, + "2019": 0.525, + "2020": 0.524, + "2021": 0.53 + }, + { + "Country": "Zimbabwe", + "Continent": "Africa", + "ISO_Code": "ZWE", + "Level": "Subnat", + "GDLCODE": "ZWEr107", + "Region": "Midlands", + "1990": 0.473, + "1991": 0.477, + "1992": 0.462, + "1993": 0.463, + "1994": 0.469, + "1995": 0.466, + "1996": 0.48, + "1997": 0.478, + "1998": 0.475, + "1999": 0.471, + "2000": 0.459, + "2001": 0.464, + "2002": 0.456, + "2003": 0.444, + "2004": 0.438, + "2005": 0.431, + "2006": 0.426, + "2007": 0.423, + "2008": 0.399, + "2009": 0.463, + "2010": 0.489, + "2011": 0.507, + "2012": 0.528, + "2013": 0.529, + "2014": 0.53, + "2015": 0.531, + "2016": 0.531, + "2017": 0.538, + "2018": 0.545, + "2019": 0.539, + "2020": 0.538, + "2021": 0.544 + } +] diff --git a/src/modules/metrics/data/gdl-datasets.ts b/src/modules/metrics/data/gdl-datasets.ts index adf6d8f..0c2934b 100644 --- a/src/modules/metrics/data/gdl-datasets.ts +++ b/src/modules/metrics/data/gdl-datasets.ts @@ -2,22 +2,22 @@ export const gdlDatasets = [ { value: 'development', label: 'Human Development Index', - url: 'https://gist.githubusercontent.com/shiarella/d7cf2c2b328c89720c213bd18cf7bace/raw/1c62f7f977d344bceb26ab89e7213af303ed9ccb/gdl-development.json', + url: '/gdl-data/development.json', }, { value: 'healthcare', label: 'Healthcare Index', - url: 'https://gist.githubusercontent.com/shiarella/5a3a7073d7b017e6c027e7113092de39/raw/dbc8c9943d0f01ccd0a2fdd2442e4577ad2c809b/gdl-health.json', + url: '/gdl-data/healthcare.json', }, { value: 'education', label: 'Educational Index', - url: 'https://gist.githubusercontent.com/shiarella/4453d462208a121ad7bae6411660fb3a/raw/ba250c00a98c75099adccfd8e51bc2cda8d61ce4/gdl-education.json', + url: '/gdl-data/education.json', }, { value: 'Income', label: 'Income Index', - url: 'https://gist.githubusercontent.com/shiarella/b8b529540923e23c53252dcfd73da0d1/raw/48e1c6d105b6578c542ad665ef0de1c8dc9b3395/gdl-income.json', + url: '/gdl-data/income.json', }, ]; diff --git a/src/modules/metrics/routes/region-id.tsx b/src/modules/metrics/routes/region-id.tsx index 59a8b64..c26adf0 100644 --- a/src/modules/metrics/routes/region-id.tsx +++ b/src/modules/metrics/routes/region-id.tsx @@ -92,6 +92,7 @@ export const Component = () => { [navigate, region.name], ); + console.log('metricSelection.url', metricSelection.url); useEffect(() => { fetch(metricSelection.url) .then((d) => d.json()) From 394f95c772cd83a5f88bb6abacad9c92d3883c3f Mon Sep 17 00:00:00 2001 From: Alexander Shiarella Date: Mon, 23 Sep 2024 12:51:05 +0100 Subject: [PATCH 05/12] Remove local geojson imports --- .../components/dashboard/map/RegionMap.tsx | 22 +++++-------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/src/modules/metrics/components/dashboard/map/RegionMap.tsx b/src/modules/metrics/components/dashboard/map/RegionMap.tsx index 399e4e7..0827e2d 100644 --- a/src/modules/metrics/components/dashboard/map/RegionMap.tsx +++ b/src/modules/metrics/components/dashboard/map/RegionMap.tsx @@ -18,7 +18,6 @@ import { getBoundingBoxViewState } from '@/lib/map/MapBoundsFitter'; import { useBasemapStyle } from '@/map/use-basemap-style'; -// import hdiGeoJson from './geojson/gdl_v6.3_large_visvaligram_weighted_0.02.json'; import { MapLabel } from './MapLabel'; import { MapLegend } from './MapLegend'; @@ -63,7 +62,6 @@ function useViewState(initialViewStateFn: () => MapViewState) { export default function RegionMap({ countryEnvelope, - // countryId, width: responsiveWidth, height: responsiveHeight, selectedCountryData, @@ -75,15 +73,15 @@ export default function RegionMap({ label, }: { countryEnvelope: Polygon; - countryId: String; + countryId: string; width: BoxProps['width']; height: BoxProps['height']; - selectedCountryData: any; // TODO - highlightRegion: String; // TODO? - setHighlightRegion: any; // TODO? + selectedCountryData: any; + highlightRegion: string; + setHighlightRegion: any; selectedYear: number; - domainY: any; // TODO - geojson: any; //TODO + domainY: any; + geojson: any; label: string; }) { const { width, height, ref: containerRef } = useResizeDetector(); @@ -102,7 +100,6 @@ export default function RegionMap({ width={width} height={height} regionEnvelope={countryEnvelope} - // regionId={countryId} selectedCountryData={selectedCountryData} highlightRegion={highlightRegion} setHighlightRegion={setHighlightRegion} @@ -121,7 +118,6 @@ function RegionMapViewer({ width, height, regionEnvelope, - // regionId, selectedCountryData, highlightRegion, setHighlightRegion, @@ -130,12 +126,6 @@ function RegionMapViewer({ geojson, label, }) { - // const filteredGeoJson = useMemo( - // () => hdiGeoJson['features'].filter((d) => d.properties.iso_code === regionId.toUpperCase()), - - // [regionId], - // ); - const filteredGeoJson = geojson; const calculateBoundedState = useCallback(() => { From 13793ad163c2b1973155c7d0e9f171c1c684ddc1 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 11:21:41 +0100 Subject: [PATCH 06/12] Fix ref/forwardRef complaints --- src/pages/PageFooter.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/pages/PageFooter.tsx b/src/pages/PageFooter.tsx index 78bcdcb..27f1b48 100644 --- a/src/pages/PageFooter.tsx +++ b/src/pages/PageFooter.tsx @@ -5,22 +5,23 @@ import { NavLink } from 'react-router-dom'; import { ExtLink } from '@/lib/nav'; -const Link = styled(MuiLink)({ +const linkStyles = { color: 'inherit', fontSize: '1em', fontWeight: 400, -}); +}; +const Link = styled(MuiLink)(linkStyles); const FooterNavLink = forwardRef(({ ...others }, ref) => ( )); -const FooterExtLink = forwardRef(({ children, ...others }, ref) => ( - +const FooterExtLink = ({ children, href }) => ( + {children}  - -)); + +); export const PageFooter = () => ( From ce4b80bc42c13fa60a4b568e54ed2703f41a21da Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 11:58:54 +0100 Subject: [PATCH 07/12] Add note on GHRC registry --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 139fb3a..5ae9f10 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,10 @@ If using `npm` natively rather than in a docker container, then: To do this on Linux: 1. Create an `.npmrc` file if one doesn't already exist in your home directory (`~/.npmrc`) - 2. Place the following line in the file: + 2. Place the following lines in the file: ``` + @nismod:registry=https://npm.pkg.github.com //npm.pkg.github.com/:_authToken=TOKENHERE ``` From cbf764f4fd340ea8aa7babebb5a5912facb505a9 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 11:59:55 +0100 Subject: [PATCH 08/12] Silence type warning on SidePanel props --- src/details/ui/DetailsPanel.tsx | 2 +- src/details/ui/SidePanel.tsx | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/details/ui/DetailsPanel.tsx b/src/details/ui/DetailsPanel.tsx index 076cc26..a13a285 100644 --- a/src/details/ui/DetailsPanel.tsx +++ b/src/details/ui/DetailsPanel.tsx @@ -7,7 +7,7 @@ import { SidePanel } from './SidePanel'; export const DetailsPanel = ({ interactionGroup, children }) => { return ( - + diff --git a/src/details/ui/SidePanel.tsx b/src/details/ui/SidePanel.tsx index 6a72ade..13297c6 100644 --- a/src/details/ui/SidePanel.tsx +++ b/src/details/ui/SidePanel.tsx @@ -2,12 +2,10 @@ import { BoxProps, Paper } from '@mui/material'; import { Box } from '@mui/system'; import { FC } from 'react'; -export const SidePanel: FC = ({ children, ...props }) => { +export const SidePanel: FC = ({ children }) => { return ( - - {children} - + {children} ); }; From 7ac6e8e2f3e25df97d7764a8f3cb65c40993707b Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 12:36:49 +0100 Subject: [PATCH 09/12] Bump turf, lint-staged, supported node LTS --- package-lock.json | 58772 +++++++++++++------------------------------- package.json | 10 +- 2 files changed, 17427 insertions(+), 41355 deletions(-) diff --git a/package-lock.json b/package-lock.json index f8221a4..f7be7f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7 +1,7 @@ { "name": "infra-risk-vis", "version": "0.2.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { @@ -21,9 +21,9 @@ "@nismod/irv-autopkg-client": "^0.2.7-dev", "@react-hook/debounce": "^4.0.0", "@recoiljs/refine": "^0.1.1", - "@turf/bbox": "^6.5.0", - "@turf/bbox-polygon": "^6.5.0", - "@turf/buffer": "^6.5.0", + "@turf/bbox": "^7.1.0", + "@turf/bbox-polygon": "^7.1.0", + "@turf/buffer": "^7.1.0", "d3": "^7.9.0", "d3-array": "^3.2.2", "d3-color": "^3.1.0", @@ -87,7 +87,7 @@ "eslint-plugin-storybook": "^0.6.14", "eslint-watch": "^8.0.0", "husky": "^8.0.3", - "lint-staged": "^14.0.1", + "lint-staged": "^15.2.0", "npm-check-updates": "^16.7.12", "prettier": "^3.0.3", "prop-types": "^15.8.1", @@ -101,47 +101,28 @@ "vite-tsconfig-paths": "^4.0.7" }, "engines": { - "node": ">=18.0.0 <21.7.2" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">=20.0.0 <23" } }, "node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, - "node_modules/@aw-web-design/x-default-browser": { - "version": "1.4.126", - "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz", - "integrity": "sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==", - "dev": true, - "dependencies": { - "default-browser-id": "3.0.0" - }, - "bin": { - "x-default-browser": "bin/x-default-browser.js" - } - }, "node_modules/@babel/code-frame": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "license": "MIT", "dependencies": { "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" @@ -151,30 +132,32 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", + "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", "dev": true, + "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -193,33 +176,36 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/eslint-parser": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz", - "integrity": "sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==", + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.1.tgz", + "integrity": "sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==", "dev": true, + "license": "MIT", "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || >=14.0.0" }, "peerDependencies": { - "@babel/core": ">=7.11.0", - "eslint": "^7.5.0 || ^8.0.0" + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { @@ -227,6 +213,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=10" } @@ -236,16 +223,18 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz", + "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7", + "@babel/types": "^7.25.6", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -254,24 +243,12 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.24.7" }, @@ -284,6 +261,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" @@ -293,14 +271,15 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -308,44 +287,29 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", - "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", + "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/traverse": "^7.25.4", "semver": "^6.3.1" }, "engines": { @@ -360,15 +324,17 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", - "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", + "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", @@ -386,78 +352,37 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "resolve": "^1.14.2" }, "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", - "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -467,6 +392,7 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "license": "MIT", "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" @@ -476,16 +402,16 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" }, "engines": { "node": ">=6.9.0" @@ -499,6 +425,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.24.7" }, @@ -507,23 +434,25 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", - "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-wrap-function": "^7.24.7" + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -533,14 +462,15 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", - "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7" + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -554,6 +484,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" @@ -567,6 +498,7 @@ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" @@ -575,21 +507,11 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -598,42 +520,45 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", - "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", - "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz", + "integrity": "sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6" }, "engines": { "node": ">=6.9.0" @@ -643,6 +568,7 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", @@ -654,9 +580,13 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -665,13 +595,30 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", - "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", + "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -681,12 +628,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", - "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -700,6 +648,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", @@ -713,13 +662,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", - "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -732,7 +682,9 @@ "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -745,16 +697,15 @@ } }, "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz", - "integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/plugin-syntax-decorators": "^7.21.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-decorators": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -767,7 +718,9 @@ "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -783,7 +736,9 @@ "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -796,10 +751,12 @@ } }, "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", @@ -816,7 +773,9 @@ "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -833,6 +792,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" }, @@ -845,6 +805,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -857,6 +818,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -869,6 +831,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -880,12 +843,13 @@ } }, "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz", - "integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -899,6 +863,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -911,6 +876,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -923,6 +889,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -934,12 +901,13 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz", + "integrity": "sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -949,12 +917,13 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", - "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz", + "integrity": "sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -968,6 +937,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -980,6 +950,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -992,6 +963,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1007,6 +979,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1019,6 +992,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1031,6 +1005,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1043,6 +1018,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1055,6 +1031,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1067,6 +1044,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1079,6 +1057,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1094,6 +1073,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1105,12 +1085,13 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", - "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz", + "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1124,6 +1105,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1140,6 +1122,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1151,15 +1134,16 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", - "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz", + "integrity": "sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-remap-async-to-generator": "^7.24.7", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.4" }, "engines": { "node": ">=6.9.0" @@ -1173,6 +1157,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", @@ -1190,6 +1175,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1201,12 +1187,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", - "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1216,13 +1203,14 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", - "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz", + "integrity": "sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1236,6 +1224,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", @@ -1249,18 +1238,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", - "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz", + "integrity": "sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.4", "globals": "^11.1.0" }, "engines": { @@ -1275,6 +1263,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/template": "^7.24.7" @@ -1287,12 +1276,13 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", - "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1306,6 +1296,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -1322,6 +1313,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1332,11 +1324,29 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-dynamic-import": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" @@ -1353,6 +1363,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -1369,6 +1380,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" @@ -1381,12 +1393,13 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz", - "integrity": "sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.2.tgz", + "integrity": "sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", "@babel/plugin-syntax-flow": "^7.24.7" }, "engines": { @@ -1401,6 +1414,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" @@ -1413,14 +1427,15 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", - "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", + "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.1" }, "engines": { "node": ">=6.9.0" @@ -1434,6 +1449,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" @@ -1446,12 +1462,13 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", - "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", + "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1465,6 +1482,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" @@ -1481,6 +1499,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1496,6 +1515,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -1508,13 +1528,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", - "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", "@babel/helper-simple-access": "^7.24.7" }, "engines": { @@ -1525,15 +1546,16 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", - "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -1547,6 +1569,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -1563,6 +1586,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -1579,6 +1603,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1594,6 +1619,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -1610,6 +1636,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -1626,6 +1653,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", @@ -1644,6 +1672,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7" @@ -1660,6 +1689,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -1672,12 +1702,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", - "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, @@ -1693,6 +1724,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1704,13 +1736,14 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", - "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz", + "integrity": "sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1724,6 +1757,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-create-class-features-plugin": "^7.24.7", @@ -1742,6 +1776,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1753,12 +1788,13 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1768,16 +1804,17 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz", - "integrity": "sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz", + "integrity": "sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.20.7" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.25.2" }, "engines": { "node": ">=6.9.0" @@ -1787,12 +1824,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.18.6" + "@babel/plugin-transform-react-jsx": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1802,12 +1840,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz", - "integrity": "sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", + "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1817,12 +1856,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz", - "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", + "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1832,13 +1872,14 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1852,6 +1893,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" @@ -1868,6 +1910,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1879,17 +1922,18 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.0.tgz", - "integrity": "sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.4.tgz", + "integrity": "sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -1903,6 +1947,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -1912,6 +1957,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1927,6 +1973,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" @@ -1943,6 +1990,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1958,6 +2006,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -1969,12 +2018,13 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", - "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1984,14 +2034,16 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz", - "integrity": "sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", + "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-typescript": "^7.24.7" }, "engines": { @@ -2006,6 +2058,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, @@ -2021,6 +2074,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -2037,6 +2091,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" @@ -2049,13 +2104,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", - "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz", + "integrity": "sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -2065,19 +2121,21 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz", - "integrity": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.4.tgz", + "integrity": "sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/compat-data": "^7.25.4", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", @@ -2098,29 +2156,30 @@ "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.24.7", - "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", "@babel/plugin-transform-async-to-generator": "^7.24.7", "@babel/plugin-transform-block-scoped-functions": "^7.24.7", - "@babel/plugin-transform-block-scoping": "^7.24.7", - "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", "@babel/plugin-transform-class-static-block": "^7.24.7", - "@babel/plugin-transform-classes": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.4", "@babel/plugin-transform-computed-properties": "^7.24.7", - "@babel/plugin-transform-destructuring": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", "@babel/plugin-transform-dotall-regex": "^7.24.7", "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", "@babel/plugin-transform-dynamic-import": "^7.24.7", "@babel/plugin-transform-exponentiation-operator": "^7.24.7", "@babel/plugin-transform-export-namespace-from": "^7.24.7", "@babel/plugin-transform-for-of": "^7.24.7", - "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", "@babel/plugin-transform-json-strings": "^7.24.7", - "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-literals": "^7.25.2", "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", "@babel/plugin-transform-member-expression-literals": "^7.24.7", "@babel/plugin-transform-modules-amd": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.7", - "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", "@babel/plugin-transform-modules-umd": "^7.24.7", "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", "@babel/plugin-transform-new-target": "^7.24.7", @@ -2129,9 +2188,9 @@ "@babel/plugin-transform-object-rest-spread": "^7.24.7", "@babel/plugin-transform-object-super": "^7.24.7", "@babel/plugin-transform-optional-catch-binding": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", "@babel/plugin-transform-parameters": "^7.24.7", - "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.25.4", "@babel/plugin-transform-private-property-in-object": "^7.24.7", "@babel/plugin-transform-property-literals": "^7.24.7", "@babel/plugin-transform-regenerator": "^7.24.7", @@ -2140,16 +2199,16 @@ "@babel/plugin-transform-spread": "^7.24.7", "@babel/plugin-transform-sticky-regex": "^7.24.7", "@babel/plugin-transform-template-literals": "^7.24.7", - "@babel/plugin-transform-typeof-symbol": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", "@babel/plugin-transform-unicode-escapes": "^7.24.7", "@babel/plugin-transform-unicode-property-regex": "^7.24.7", "@babel/plugin-transform-unicode-regex": "^7.24.7", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.4", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-corejs3": "^0.10.6", "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", + "core-js-compat": "^3.37.1", "semver": "^6.3.1" }, "engines": { @@ -2159,66 +2218,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, "node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -2228,6 +2233,7 @@ "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz", "integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", @@ -2245,6 +2251,7 @@ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", @@ -2255,17 +2262,18 @@ } }, "node_modules/@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2279,6 +2287,7 @@ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", @@ -2298,6 +2307,7 @@ "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", "dev": true, + "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", @@ -2317,6 +2327,7 @@ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", "dev": true, + "license": "MIT", "dependencies": { "commondir": "^1.0.1", "make-dir": "^2.0.0", @@ -2331,6 +2342,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, @@ -2343,6 +2355,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -2356,6 +2369,7 @@ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "license": "MIT", "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -2369,6 +2383,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -2384,6 +2399,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, @@ -2396,6 +2412,7 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -2405,6 +2422,7 @@ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, @@ -2417,6 +2435,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver" } @@ -2425,12 +2444,14 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@babel/runtime": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", - "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz", + "integrity": "sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==", + "license": "MIT", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -2439,31 +2460,30 @@ } }, "node_modules/@babel/template": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz", + "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", + "@babel/generator": "^7.25.6", + "@babel/parser": "^7.25.6", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -2472,11 +2492,12 @@ } }, "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-string-parser": "^7.24.8", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, @@ -2488,22 +2509,25 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz", "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, + "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" } }, "node_modules/@deck.gl/aggregation-layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.9.28.tgz", - "integrity": "sha512-W+qg3VkSjhqBI8dxLaECK1wdczpbOl+mbpEM1MBHkYSuLEPi3m3WQINm9+jwhfM+kM3QlLJc8UlqRTlwylTwrw==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.9.36.tgz", + "integrity": "sha512-EwUJ1bwhhAG6LF9hAdZDaIAwIFDUGC8XpQgHmitTLohciVrIp70p9zpgHNNU6oPy+iQvccmWctLcSC9TpgjsIg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@luma.gl/constants": "^8.5.21", @@ -2518,9 +2542,10 @@ } }, "node_modules/@deck.gl/carto": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.9.28.tgz", - "integrity": "sha512-4iI/K/pJv4oJmR++CcZetedOzXpYOtZk43cHglEmV2javV159QMJyOoOH3EnjETSorgeaA4qLdMNWVtOInnjmw==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.9.36.tgz", + "integrity": "sha512-lm05nWciAX6SikbjETgPexnjDA1KoyDadi5VOk3RazYUUMw55s6Qc84qKSyXK263Rg58eOGl4K4pyCPRdphFog==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@loaders.gl/gis": "^3.4.13", @@ -2549,9 +2574,10 @@ } }, "node_modules/@deck.gl/core": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.9.28.tgz", - "integrity": "sha512-Tpji8XykZAjaDIJwXR9RalulemgF6AGpCq43XIInK+0JdumJYuYVyGObPkujNW7zeWM26rAb3TiqyOLwW/3yOQ==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.9.36.tgz", + "integrity": "sha512-mkIv4/fY1jE+iehqSJzUQi75l9cgfx2ZBa1s1AifgLu0TCkCZgRgISV3UnDBECDCmTZ9Cqk+oKq3OGay3Bz1RQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@loaders.gl/core": "^3.4.13", @@ -2571,9 +2597,10 @@ } }, "node_modules/@deck.gl/extensions": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.9.28.tgz", - "integrity": "sha512-4j1k9a2epu+ZOOhrXm2OKwjsn3fS9l6X1K+iTPXHuRGCpf6r9ArrmF8YnI3sdr6u1Tr4JIjgOvV0r6+Ntqagng==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.9.36.tgz", + "integrity": "sha512-BoHjJOK9Ue/zH+YkXiFli7ebS+I21fyL4YeCUzw2a6OOo36SZV/4S0gZSSkaaltO72aZsDsvduWPAbmXY2slqA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@luma.gl/shadertools": "^8.5.21" @@ -2588,9 +2615,10 @@ } }, "node_modules/@deck.gl/geo-layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.9.28.tgz", - "integrity": "sha512-0pTsDEc+Gx2j9QPJ+CXa6lpZxZKM4HgHyATmLCRetPVm+1hbCs28xuiyLMWIRfXD+izmVm5/o9OoBuC04Q6kqg==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.9.36.tgz", + "integrity": "sha512-OmJhbRpNK2MPVfEWqWR45Q1e8Sz90fGuFOkcl8Ecl6HZJV7IWcAlnybtaAeJNWO2OohN2TI53UdRKUNGFYS4AQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@loaders.gl/3d-tiles": "^3.4.13", @@ -2620,9 +2648,10 @@ } }, "node_modules/@deck.gl/google-maps": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.9.28.tgz", - "integrity": "sha512-jV6K5ExuZttXf7RTpzVkLd0S7zyKOhotEW0lQTBnMytfDgki20a0kIlQhRTolwHK0hXVBYi6Altva/X17m+2wg==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.9.36.tgz", + "integrity": "sha512-/qqQY3J3eNWO5Yw3Lt0uLLmc+r28xbMrNwNR0rMVwbLzKWlMfWjxMV+MgcO6hW/wWeB0v/mxEjykuW4YO2MvPA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0" }, @@ -2634,9 +2663,10 @@ } }, "node_modules/@deck.gl/json": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.9.28.tgz", - "integrity": "sha512-XL8ZeWFwC4H+FF7FVbgcZBtv30ilrNwxFy8l9UNPuC9CFslb2zyESXPHhwkeF2AhXMYDkwOXSWjoOExoam07JQ==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.9.36.tgz", + "integrity": "sha512-DTZBD5TgvJxgUO5vk7wT2gHMt2uw1A/51f7K/tzBbJyACue8kLwFMNm/VXWojrxjAZZslETdT0Et+U4jN+jFBQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "d3-dsv": "^1.0.8", @@ -2646,10 +2676,51 @@ "@deck.gl/core": "^8.0.0" } }, + "node_modules/@deck.gl/json/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/@deck.gl/json/node_modules/d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", + "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "license": "BSD-3-Clause", + "dependencies": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json", + "csv2tsv": "bin/dsv2dsv", + "dsv2dsv": "bin/dsv2dsv", + "dsv2json": "bin/dsv2json", + "json2csv": "bin/json2dsv", + "json2dsv": "bin/json2dsv", + "json2tsv": "bin/json2dsv", + "tsv2csv": "bin/dsv2dsv", + "tsv2json": "bin/dsv2json" + } + }, + "node_modules/@deck.gl/json/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/@deck.gl/layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.9.28.tgz", - "integrity": "sha512-2ty8zrrq7TNahkgzly/1NBH90I9VrgIDdbcSUBldptkjeYdtsSErAMuKycQGuQdzJb/KFriZAwOxPjSnMEDJ2w==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.9.36.tgz", + "integrity": "sha512-sr/QKELXZ4W0ZHb12QC2+EV1bZJOM6cU6kAfOJD5jOVixOcyccr+FnPPGn39VK9cl/VFY0S339ZPs9reyhDFVg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@loaders.gl/images": "^3.4.13", @@ -2667,15 +2738,11 @@ "@luma.gl/core": "^8.0.0" } }, - "node_modules/@deck.gl/layers/node_modules/@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - }, "node_modules/@deck.gl/mapbox": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.9.28.tgz", - "integrity": "sha512-eF792+Lv4IUqhQYeaIBlc3wbhbxkRHEHGAfmm4TeZXx0zpd+cj48k//6PyV+FFugEsMWuPoKfZTq8mS+/kM1sw==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.9.36.tgz", + "integrity": "sha512-JUMkxHsaV5/FhKx68cp87vcHTdYTqS1fWpytN7I1B0p1gxhd37iYNU/FtEg3Pxs5ce9zLkjVepF6PALVWnDlGw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@types/mapbox-gl": "^2.6.3" @@ -2684,18 +2751,11 @@ "@deck.gl/core": "^8.0.0" } }, - "node_modules/@deck.gl/mapbox/node_modules/@types/mapbox-gl": { - "version": "2.7.14", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.14.tgz", - "integrity": "sha512-uoeZncHF7EOGCZTHida8nneFrzBbO5S0Bjvg0AJoGDXpkYkYRN2mq7RK0h+wtXZ/bYbahTFshbLChWBKKWhvyw==", - "dependencies": { - "@types/geojson": "*" - } - }, "node_modules/@deck.gl/mesh-layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.9.28.tgz", - "integrity": "sha512-n4m9NfVzPy00G21WA9nkl6T0dlVIWhLcyFAicMMQBX4CqK/iXWz090tT8GtZ6PUzzohuTofUQvvGWgwxhEJM0w==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.9.36.tgz", + "integrity": "sha512-xQ+OSdU3z3HIgaHJfxbcNIxmWYPUBMJZAM+fAbynojGVzGYLJo2MUjUJLtCsw0Ejs3YtnocyuFRM+zObB0I3jw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@loaders.gl/gltf": "^3.4.13", @@ -2709,9 +2769,10 @@ } }, "node_modules/@deck.gl/react": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.9.28.tgz", - "integrity": "sha512-OZYeawC69WJKVb8BJZuTWiq1wGaJPchSy2bgVHuDlydDpz+Efv2TyJv9EcyimP7pFCfRUh3Fvobbz5aP1dYwBQ==", + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.9.36.tgz", + "integrity": "sha512-/WIvHK0aJwppLnpA6GZrOhfanx5WVWihx/o6U88kX53VsyJQMZU10+EXKc1FkI3nd5/jsLbLc8fC0dUtiXiSVw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0" }, @@ -2722,91 +2783,72 @@ "react-dom": ">=16.3" } }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/@emotion/babel-plugin": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.6.tgz", - "integrity": "sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==", + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.12.0.tgz", + "integrity": "sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==", + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.16.7", "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.0", - "@emotion/memoize": "^0.8.0", - "@emotion/serialize": "^1.1.1", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.2.0", "babel-plugin-macros": "^3.1.0", "convert-source-map": "^1.5.0", "escape-string-regexp": "^4.0.0", "find-root": "^1.1.0", "source-map": "^0.5.7", - "stylis": "4.1.3" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "stylis": "4.2.0" } }, "node_modules/@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", - "dependencies": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", + "version": "11.13.1", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.13.1.tgz", + "integrity": "sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.0", + "@emotion/weak-memoize": "^0.4.0", "stylis": "4.2.0" } }, - "node_modules/@emotion/cache/node_modules/stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - }, "node_modules/@emotion/hash": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz", - "integrity": "sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==" + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==", + "license": "MIT" }, "node_modules/@emotion/is-prop-valid": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz", - "integrity": "sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz", + "integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==", + "license": "MIT", "dependencies": { - "@emotion/memoize": "^0.8.0" + "@emotion/memoize": "^0.9.0" } }, "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz", + "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==", + "license": "MIT" }, "node_modules/@emotion/react": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz", - "integrity": "sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==", + "version": "11.13.3", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.13.3.tgz", + "integrity": "sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.6", - "@emotion/cache": "^11.10.5", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", + "@emotion/babel-plugin": "^11.12.0", + "@emotion/cache": "^11.13.0", + "@emotion/serialize": "^1.3.1", + "@emotion/use-insertion-effect-with-fallbacks": "^1.1.0", + "@emotion/utils": "^1.4.0", + "@emotion/weak-memoize": "^0.4.0", "hoist-non-react-statics": "^3.3.1" }, "peerDependencies": { @@ -2819,33 +2861,36 @@ } }, "node_modules/@emotion/serialize": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz", - "integrity": "sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.2.tgz", + "integrity": "sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==", + "license": "MIT", "dependencies": { - "@emotion/hash": "^0.9.0", - "@emotion/memoize": "^0.8.0", - "@emotion/unitless": "^0.8.0", - "@emotion/utils": "^1.2.0", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.1", "csstype": "^3.0.2" } }, "node_modules/@emotion/sheet": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", - "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz", + "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==", + "license": "MIT" }, "node_modules/@emotion/styled": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.6.tgz", - "integrity": "sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==", + "version": "11.13.0", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.13.0.tgz", + "integrity": "sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.6", - "@emotion/is-prop-valid": "^1.2.0", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0" + "@emotion/babel-plugin": "^11.12.0", + "@emotion/is-prop-valid": "^1.3.0", + "@emotion/serialize": "^1.3.0", + "@emotion/use-insertion-effect-with-fallbacks": "^1.1.0", + "@emotion/utils": "^1.4.0" }, "peerDependencies": { "@emotion/react": "^11.0.0-rc.0", @@ -2858,423 +2903,446 @@ } }, "node_modules/@emotion/unitless": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz", - "integrity": "sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz", + "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==", + "license": "MIT" }, "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.1.0.tgz", + "integrity": "sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==", + "license": "MIT", "peerDependencies": { "react": ">=16.8.0" } }, "node_modules/@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.1.tgz", + "integrity": "sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==", + "license": "MIT" }, "node_modules/@emotion/weak-memoize": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", + "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", + "license": "MIT" }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", + "integrity": "sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "aix" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-arm": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.14.tgz", - "integrity": "sha512-u0rITLxFIeYAvtJXBQNhNuV4YZe+MD1YvIWT7Nicj8hZAtRVZk2PgNH6KclcKDVHz1ChLKXRfX7d7tkbQBUfrg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.1.tgz", + "integrity": "sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.14.tgz", - "integrity": "sha512-hTqB6Iq13pW4xaydeqQrs8vPntUnMjbkq+PgGiBMi69eYk74naG2ftHWqKnxn874kNrt5Or3rQ0PJutx2doJuQ==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz", + "integrity": "sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.14.tgz", - "integrity": "sha512-jir51K4J0K5Rt0KOcippjSNdOl7akKDVz5I6yrqdk4/m9y+rldGptQUF7qU4YpX8U61LtR+w2Tu2Ph+K/UaJOw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.1.tgz", + "integrity": "sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.14.tgz", - "integrity": "sha512-vrlaP81IuwPaw1fyX8fHCmivP3Gr73ojVEZy+oWJLAiZVcG8o8Phwun/XDnYIFUHxIoUnMFEpg9o38MIvlw8zw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz", + "integrity": "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.14.tgz", - "integrity": "sha512-KV1E01eC2hGYA2qzFDRCK4wdZCRUvMwCNcobgpiiOzp5QXpJBqFPdxI69j8vvzuU7oxFXDgANwEkXvpeQqyOyg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz", + "integrity": "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.14.tgz", - "integrity": "sha512-xRM1RQsazSvL42BNa5XC7ytD4ZDp0ZyJcH7aB0SlYUcHexJUKiDNKR7dlRVlpt6W0DvoRPU2nWK/9/QWS4u2fw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz", + "integrity": "sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.14.tgz", - "integrity": "sha512-7ALTAn6YRRf1O6fw9jmn0rWmOx3XfwDo7njGtjy1LXhDGUjTY/vohEPM3ii5MQ411vJv1r498EEx2aBQTJcrEw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz", + "integrity": "sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-arm": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.14.tgz", - "integrity": "sha512-X6xULug66ulrr4IzrW7qq+eq9n4MtEyagdWvj4o4cmWr+JXOT47atjpDF9j5M2zHY0UQBmqnHhwl+tXpkpIb2w==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz", + "integrity": "sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.14.tgz", - "integrity": "sha512-TLh2OcbBUQcMYRH4GbiDkDZfZ4t1A3GgmeXY27dHSI6xrU7IkO00MGBiJySmEV6sH3Wa6pAN6UtaVL0DwkGW4Q==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz", + "integrity": "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.14.tgz", - "integrity": "sha512-oBZkcZ56UZDFCAfE3Fd/Jgy10EoS7Td77NzNGenM+HSY8BkdQAcI9VF9qgwdOLZ+tuftWD7UqZ26SAhtvA3XhA==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz", + "integrity": "sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.14.tgz", - "integrity": "sha512-udz/aEHTcuHP+xdWOJmZ5C9RQXHfZd/EhCnTi1Hfay37zH3lBxn/fNs85LA9HlsniFw2zccgcbrrTMKk7Cn1Qg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz", + "integrity": "sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==", "cpu": [ "loong64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.14.tgz", - "integrity": "sha512-kJ2iEnikUOdC1SiTGbH0fJUgpZwa0ITDTvj9EHf9lm3I0hZ4Yugsb3M6XSl696jVxrEocLe519/8CbSpQWFSrg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz", + "integrity": "sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==", "cpu": [ "mips64el" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.14.tgz", - "integrity": "sha512-kclKxvZvX5YhykwlJ/K9ljiY4THe5vXubXpWmr7q3Zu3WxKnUe1VOZmhkEZlqtnJx31GHPEV4SIG95IqTdfgfg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz", + "integrity": "sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.14.tgz", - "integrity": "sha512-fdwP9Dc+Kx/cZwp9T9kNqjAE/PQjfrxbio4rZ3XnC3cVvZBjuxpkiyu/tuCwt6SbAK5th6AYNjFdEV9kGC020A==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz", + "integrity": "sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==", "cpu": [ "riscv64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.14.tgz", - "integrity": "sha512-++fw3P4fQk9nqvdzbANRqimKspL8pDCnSpXomyhV7V/ISha/BZIYvZwLBWVKp9CVWKwWPJ4ktsezuLIvlJRHqA==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz", + "integrity": "sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==", "cpu": [ "s390x" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.14.tgz", - "integrity": "sha512-TomtswAuzBf2NnddlrS4W01Tv85RM9YtATB3OugY6On0PLM4Ksz5qvQKVAjtzPKoLgL1FiZtfc8mkZc4IgoMEA==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz", + "integrity": "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.14.tgz", - "integrity": "sha512-U06pfx8P5CqyoPNfqIJmnf+5/r4mJ1S62G4zE6eOjS59naQcxi6GnscUCPH3b+hRG0qdKoGX49RAyiqW+M9aSw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz", + "integrity": "sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "netbsd" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz", + "integrity": "sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.14.tgz", - "integrity": "sha512-/Jl8XVaWEZNu9rZw+n792GIBupQwHo6GDoapHSb/2xp/Ku28eK6QpR2O9cPBkzHH4OOoMH0LB6zg/qczJ5TTGg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz", + "integrity": "sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "openbsd" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.14.tgz", - "integrity": "sha512-2iI7D34uTbDn/TaSiUbEHz+fUa8KbN90vX5yYqo12QGpu6T8Jl+kxODsWuMCwoTVlqUpwfPV22nBbFPME9OPtw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz", + "integrity": "sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "sunos" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.14.tgz", - "integrity": "sha512-SjlM7AHmQVTiGBJE/nqauY1aDh80UBsXZ94g4g60CDkrDMseatiqALVcIuElg4ZSYzJs8hsg5W6zS2zLpZTVgg==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz", + "integrity": "sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.14.tgz", - "integrity": "sha512-z06t5zqk8ak0Xom5HG81z2iOQ1hNWYsFQp3sczVLVx+dctWdgl80tNRyTbwjaFfui2vFO12dfE3trCTvA+HO4g==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz", + "integrity": "sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.14.tgz", - "integrity": "sha512-ED1UpWcM6lAbalbbQ9TrGqJh4Y9TaASUvu8bI/0mgJcxhSByJ6rbpgqRhxYMaQ682WfA71nxUreaTO7L275zrw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz", + "integrity": "sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], - "peer": true, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.3.0.tgz", - "integrity": "sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, + "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.3.0" }, @@ -3286,19 +3354,21 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", - "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.1.tgz", + "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -3317,11 +3387,19 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.22.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", - "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -3332,11 +3410,25 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -3345,41 +3437,39 @@ } }, "node_modules/@eslint/js": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", - "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true, + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/@fal-works/esbuild-plugin-global-externals": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", - "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==", - "dev": true - }, "node_modules/@floating-ui/core": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.2.tgz", - "integrity": "sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==", + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "license": "MIT", "dependencies": { - "@floating-ui/utils": "^0.2.0" + "@floating-ui/utils": "^0.2.8" } }, "node_modules/@floating-ui/dom": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.5.tgz", - "integrity": "sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==", + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "license": "MIT", "dependencies": { - "@floating-ui/core": "^1.0.0", - "@floating-ui/utils": "^0.2.0" + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" } }, "node_modules/@floating-ui/react-dom": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.0.tgz", - "integrity": "sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz", + "integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==", + "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.0.0" }, @@ -3389,24 +3479,28 @@ } }, "node_modules/@floating-ui/utils": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.2.tgz", - "integrity": "sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==" + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", + "license": "MIT" }, "node_modules/@gar/promisify": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { @@ -3418,6 +3512,7 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -3427,26 +3522,29 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/@ianvs/prettier-plugin-sort-imports": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.1.0.tgz", - "integrity": "sha512-IAXeTLU24k6mRPa6mFbW1qZJ/j0m3OeH44wyijWyr+YqqdNtBnfHxAntOAATS9iDfrT01NesKGsdzqnXdDQa/A==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.3.1.tgz", + "integrity": "sha512-ZHwbyjkANZOjaBm3ZosADD2OUYGFzQGxfy67HmGZU94mHqe7g1LCMA7YYKB1Cq+UTPCBqlAYapY0KXAjKEw8Sg==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@babel/core": "^7.21.8", - "@babel/generator": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "semver": "^7.5.0" + "@babel/core": "^7.24.0", + "@babel/generator": "^7.23.6", + "@babel/parser": "^7.24.0", + "@babel/traverse": "^7.24.0", + "@babel/types": "^7.24.0", + "semver": "^7.5.2" }, "peerDependencies": { - "@vue/compiler-sfc": ">=3.0.0", + "@vue/compiler-sfc": "2.7.x || 3.x", "prettier": "2 || 3" }, "peerDependenciesMeta": { @@ -3460,6 +3558,7 @@ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, + "license": "ISC", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", @@ -3473,10 +3572,11 @@ } }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -3484,46 +3584,12 @@ "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -3534,28 +3600,12 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, + "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -3567,20 +3617,12 @@ "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -3589,24 +3631,12 @@ "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -3619,6 +3649,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -3634,6 +3665,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -3641,20 +3673,12 @@ "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3664,6 +3688,7 @@ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, + "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.27.8" }, @@ -3676,6 +3701,7 @@ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^29.6.3", @@ -3702,6 +3728,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3717,6 +3744,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3728,35 +3756,19 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jest/transform/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3766,6 +3778,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3778,6 +3791,7 @@ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -3795,6 +3809,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3810,6 +3825,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3821,29 +3837,12 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@jest/types/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -3853,6 +3852,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3865,6 +3865,7 @@ "resolved": "https://registry.npmjs.org/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.3.0.tgz", "integrity": "sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==", "dev": true, + "license": "MIT", "dependencies": { "glob": "^7.2.0", "glob-promise": "^4.2.0", @@ -3887,6 +3888,7 @@ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -3902,23 +3904,58 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/glob-promise": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz", + "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==", "dev": true, + "license": "MIT", + "dependencies": { + "@types/glob": "^7.1.3" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/ahmadnassri" + }, + "peerDependencies": { + "glob": "^7.1.6" + } + }, + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/magic-string": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", + "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -3927,45 +3964,22 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "optional": true, - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "optional": true, - "peer": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, + "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -3974,18 +3988,20 @@ "node_modules/@juggle/resize-observer": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", - "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==", + "license": "Apache-2.0" }, "node_modules/@loaders.gl/3d-tiles": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.4.14.tgz", - "integrity": "sha512-cxStTSLIJgRZnkTBYTcp9FPVBQWQlJMzW1LRlaKWiwAHkOKBElszzApIIEvRvZGSrs8k8TUi6BJ1Y41iiANF7w==", - "dependencies": { - "@loaders.gl/draco": "3.4.14", - "@loaders.gl/gltf": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/math": "3.4.14", - "@loaders.gl/tiles": "3.4.14", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.4.15.tgz", + "integrity": "sha512-JR67bEfLrD7Lzb6pWyEIRg2L6W3n6y43DKcWofRLpwPqLA7qHuY7SlO7E72Lz7Tniye8VhawqY1wO8gCx8T72Q==", + "license": "MIT", + "dependencies": { + "@loaders.gl/draco": "3.4.15", + "@loaders.gl/gltf": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/math": "3.4.15", + "@loaders.gl/tiles": "3.4.15", "@math.gl/core": "^3.5.1", "@math.gl/geospatial": "^3.5.1", "long": "^5.2.1" @@ -3997,230 +4013,216 @@ "node_modules/@loaders.gl/3d-tiles/node_modules/long": { "version": "5.2.3", "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "license": "Apache-2.0" }, "node_modules/@loaders.gl/core": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.4.14.tgz", - "integrity": "sha512-5PFcjv7xC8AYL17juDMrvo8n0Fcwg9s8F4BaM2YCNUsb9RCI2SmLuIFJMcx1GgHO5vL0WiTIKO+JT4n1FuNR6w==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.4.15.tgz", + "integrity": "sha512-rPOOTuusWlRRNMWg7hymZBoFmPCXWThsA5ZYRfqqXnsgVeQIi8hzcAhJ7zDUIFAd/OSR8ravtqb0SH+3k6MOFQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/worker-utils": "3.4.14", - "@probe.gl/log": "^4.0.1" - } - }, - "node_modules/@loaders.gl/core/node_modules/@probe.gl/env": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-4.0.4.tgz", - "integrity": "sha512-sYNGqesDfWD6dFP5oNZtTeFA4Z6ak5T4a8BNPdNhoqy7PK9w70JHrb6mv+RKWqKXq33KiwCDWL7fYxx2HuEH2w==", - "dependencies": { - "@babel/runtime": "^7.0.0" - } - }, - "node_modules/@loaders.gl/core/node_modules/@probe.gl/log": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-4.0.4.tgz", - "integrity": "sha512-WpmXl6njlBMwrm8HBh/b4kSp/xnY1VVmeT4PWUKF+RkVbFuKQbsU11dA1IxoMd7gSY+5DGIwxGfAv1H5OMzA4A==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "4.0.4" + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/worker-utils": "3.4.15", + "@probe.gl/log": "^3.5.0" } }, "node_modules/@loaders.gl/draco": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.4.14.tgz", - "integrity": "sha512-HwNFFt+dKZqFtzI0uVGvRkudFEZXxybJ+ZRsNkBbzAWoMM5L1TpuLs6DPsqPQUIT9HXNHzov18cZI0gK5bTJpg==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.4.15.tgz", + "integrity": "sha512-SStmyP0ZnS4JbWZb2NhrfiHW65uy3pVTTzQDTgXfkR5cD9oDAEu4nCaHbQ8x38/m39FHliCPgS9b1xWvLKQo8w==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@loaders.gl/worker-utils": "3.4.14", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", + "@loaders.gl/worker-utils": "3.4.15", "draco3d": "1.5.5" } }, "node_modules/@loaders.gl/gis": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.4.14.tgz", - "integrity": "sha512-5cmhIwioPpSkfNzFRM3PbFDecjpYIhtEOFbryu3rE37npKHLTD2tF4ocQxUPB+QVED6GLwWBdzJIs64UWGrqjw==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.4.15.tgz", + "integrity": "sha512-h+LJI35P6ze8DFPSUylTKuml0l4HIfHMczML6u+ZXG6E2w5tbdM3Eh5AzHjXGQPuwUnaYPn3Mq/2t2N1rz98pg==", + "license": "MIT", "dependencies": { - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", "@mapbox/vector-tile": "^1.3.1", "@math.gl/polygon": "^3.5.1", "pbf": "^3.2.1" } }, "node_modules/@loaders.gl/gltf": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.4.14.tgz", - "integrity": "sha512-jv+B5S/taiwzXAOu5D9nk1jjU9+JCCr/6/nGguCE2Ya3IX7CI1Nlnp20eKKhW8ZCEokZavMNT0bNbiJ5ahEFjA==", - "dependencies": { - "@loaders.gl/draco": "3.4.14", - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/textures": "3.4.14", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.4.15.tgz", + "integrity": "sha512-Y6kMNPLiHQPr6aWQw/4BMTxgPHWx3fcib4LPpZCbhyfM8PRn6pOqATVngUXdoOf5XY0QtdKVld6N1kxlr4pJtw==", + "license": "MIT", + "dependencies": { + "@loaders.gl/draco": "3.4.15", + "@loaders.gl/images": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/textures": "3.4.15", "@math.gl/core": "^3.5.1" } }, "node_modules/@loaders.gl/images": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.4.14.tgz", - "integrity": "sha512-tL447hTWhOKBOB87SE4hvlC8OkbRT0mEaW1a/wIS9f4HnYDa/ycRLMV+nvdvYMZur4isNPam44oiRqi7GcILkg==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.4.15.tgz", + "integrity": "sha512-QpjYhEetHabY/z9mWZYJXZZp4XJAxa38f9Ii/DjPlnJErepzY5GLBUTDHMu4oZ6n99gGImtuGFicDnFV6mb60g==", + "license": "MIT", "dependencies": { - "@loaders.gl/loader-utils": "3.4.14" + "@loaders.gl/loader-utils": "3.4.15" } }, "node_modules/@loaders.gl/loader-utils": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.4.14.tgz", - "integrity": "sha512-HCTY2/F83RLbZWcTvWLVJ1vke3dl6Bye20HU1AqkA37J2vzHwOZ8kj6eee8eeSkIkf7VIFwjyhVJxe0flQE/Bw==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.4.15.tgz", + "integrity": "sha512-uUx6tCaky6QgCRkqCNuuXiUfpTzKV+ZlJOf6C9bKp62lpvFOv9AwqoXmL23j8nfsENdlzsX3vPhc3en6QQyksA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1", - "@loaders.gl/worker-utils": "3.4.14", - "@probe.gl/stats": "^4.0.1" - } - }, - "node_modules/@loaders.gl/loader-utils/node_modules/@probe.gl/stats": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-4.0.4.tgz", - "integrity": "sha512-SDuSY/D4yDL6LQDa69l/GCcnZLRiGYdyvYkxWb0CgnzTPdPrcdrzGkzkvpC3zsA4fEFw2smlDje370QGHwlisg==", - "dependencies": { - "@babel/runtime": "^7.0.0" + "@loaders.gl/worker-utils": "3.4.15", + "@probe.gl/stats": "^3.5.0" } }, "node_modules/@loaders.gl/math": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.4.14.tgz", - "integrity": "sha512-OBEVX6Q5pMipbCAiZyX2+q1zRd0nw8M2dclpny05on8700OaKMwfs47wEUnbfCU3iyHad3sgsAxN3EIh+kuo9Q==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.4.15.tgz", + "integrity": "sha512-zTN8BUU/1fcppyVc8WzvdZcCyNGVYmNinxcn/A+a7mi1ug4OBGwEsZOj09Wjg0/s52c/cAL3h9ylPIZdjntscQ==", + "license": "MIT", "dependencies": { - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", + "@loaders.gl/images": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", "@math.gl/core": "^3.5.1" } }, "node_modules/@loaders.gl/mvt": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.4.14.tgz", - "integrity": "sha512-tozGmWvsJacjaLavjX4S/5yNDV9S4wJb7+vPG/nXWX2gTtgZ1mxcFQAtAJjokqpy37d1ZhLt+TXh0HrLoTmRgw==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.4.15.tgz", + "integrity": "sha512-Q8e1ZyfNkJtPF/C4WSZ2qhWDEbzOvquP7OyG1NzQ2cp8R6eUfbexu48IgcnL/oAu8VPql3zIxQ+bQUyDReyN5g==", + "license": "MIT", "dependencies": { - "@loaders.gl/gis": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", + "@loaders.gl/gis": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", "@math.gl/polygon": "^3.5.1", "pbf": "^3.2.1" } }, "node_modules/@loaders.gl/schema": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.4.14.tgz", - "integrity": "sha512-r6BEDfUvbvzgUnh/MtkR5RzrkIwo1x1jtPFRTSJVsIZO7arXXlu3blffuv5ppEkKpNZ1Xzd9WtHp/JIkuctsmw==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.4.15.tgz", + "integrity": "sha512-8oRtstz0IsqES7eZd2jQbmCnmExCMtL8T6jWd1+BfmnuyZnQ0B6TNccy++NHtffHdYuzEoQgSELwcdmhSApYew==", + "license": "MIT", "dependencies": { "@types/geojson": "^7946.0.7" } }, "node_modules/@loaders.gl/terrain": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.4.14.tgz", - "integrity": "sha512-vhchEVkPaWXnqd2ofujG2AEnBsk4hEw6LWSaFY7E3VMzNhI9l2EHvyU3+Hs03jYbXM4oLlQPGqd/T7x+5IMtig==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.4.15.tgz", + "integrity": "sha512-ouv41J84uOnLEtXLM+iPEPFfeq7aRgIOls6esdvhBx2/dXJRNkt8Mx0wShXAi8VNHz77D+gZFrKARa7wqjmftg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1", - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", + "@loaders.gl/images": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", "@mapbox/martini": "^0.2.0" } }, "node_modules/@loaders.gl/textures": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.4.14.tgz", - "integrity": "sha512-iKDHL2ZlOUud4/e3g0p0SyvkukznopYy6La3O6I9vDfKp8peuKMRRcTfFfd/zH0OqQC0hIhCXNz46vRLu7h6ng==", - "dependencies": { - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@loaders.gl/worker-utils": "3.4.14", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.4.15.tgz", + "integrity": "sha512-QHnmxBYtLvTdG1uMz2KWcxVY8KPb1+XyPJUoZV9GMcQkulz+CwFB8BaX8nROfMDz9KKYoPfksCzjig0LZ0WBJQ==", + "license": "MIT", + "dependencies": { + "@loaders.gl/images": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", + "@loaders.gl/worker-utils": "3.4.15", "ktx-parse": "^0.0.4", "texture-compressor": "^1.0.2" } }, "node_modules/@loaders.gl/tiles": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.4.14.tgz", - "integrity": "sha512-an3scxl65r74LW4WoIGgluBmQpMY9eb381y9mZmREphTP6bWEj96fL/tiR+G6TiE6HJqTv8O3PH6xwI9OQmEJg==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.4.15.tgz", + "integrity": "sha512-o85aRSXq+YeVSK2ndW9aBwTMi5FhEsQ7k18J4DG+T5Oc+zz3tKui5X1SuBDiKbQN+kYtFpj0oYO1QG3ndNI6jg==", + "license": "MIT", "dependencies": { - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/math": "3.4.14", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/math": "3.4.15", "@math.gl/core": "^3.5.1", "@math.gl/culling": "^3.5.1", "@math.gl/geospatial": "^3.5.1", "@math.gl/web-mercator": "^3.5.1", - "@probe.gl/stats": "^4.0.1" + "@probe.gl/stats": "^3.5.0" }, "peerDependencies": { "@loaders.gl/core": "^3.4.0" } }, - "node_modules/@loaders.gl/tiles/node_modules/@probe.gl/stats": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-4.0.4.tgz", - "integrity": "sha512-SDuSY/D4yDL6LQDa69l/GCcnZLRiGYdyvYkxWb0CgnzTPdPrcdrzGkzkvpC3zsA4fEFw2smlDje370QGHwlisg==", - "dependencies": { - "@babel/runtime": "^7.0.0" - } - }, "node_modules/@loaders.gl/wkt": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/wkt/-/wkt-3.4.14.tgz", - "integrity": "sha512-2Epq+2P7uRx3BwAhmx7MIeaX5rQv/ooYdVh3q3bs2M/xKQ6yPXhx+He+3f8oWxWmWEjL1DnRrfkiGms2vet+cA==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/wkt/-/wkt-3.4.15.tgz", + "integrity": "sha512-3Qx2jTT15Az4n9ddyPF+ZRfxctgQWVkM+tY8f8xmL2BpXi/aE9uk0otPIgnBWlabQ7L+XJmqWg6LLCCwUe2Upg==", + "license": "MIT", "dependencies": { - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14" + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15" } }, "node_modules/@loaders.gl/wms": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/wms/-/wms-3.4.14.tgz", - "integrity": "sha512-D1pObPSUj885zGPyHIb7GtcwpHQNk0T8nK/4EHb0SHLe0y1b4qwqSOswdS9geXT9Q61hyhl/L0zqyTgwjiMStg==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/wms/-/wms-3.4.15.tgz", + "integrity": "sha512-zY++Oxx+cNGF9ptuSTFxCmEnpRbR5VZYjvyLraylaRbuynZv+JiWrehymFzEfq3hJcQ/cGvIjaG6rSVtPuqCIA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1", - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@loaders.gl/xml": "3.4.14", + "@loaders.gl/images": "3.4.15", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", + "@loaders.gl/xml": "3.4.15", "@turf/rewind": "^5.1.5", "deep-strict-equal": "^0.2.0", "lerc": "^4.0.1" } }, "node_modules/@loaders.gl/worker-utils": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.4.14.tgz", - "integrity": "sha512-PUSwxoAYbskisXd0KfYEQ902b0igBA2UAWdP6PzPvY+tJmobfh74dTNwrrBQ1rGXQxxmGx6zc6/ksX6mlIzIrg==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.4.15.tgz", + "integrity": "sha512-zUUepOYRYmcYIcr/c4Mchox9h5fBFNkD81rsGnLlZyq19QvyHzN+93SVxrLc078gw93t2RKrVcOOZY13zT3t1w==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1" } }, "node_modules/@loaders.gl/xml": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/xml/-/xml-3.4.14.tgz", - "integrity": "sha512-SNMGOHz4p8Cw+M6kxXhFEjXdNddJPOZY1rzNmRq7NYdGQlQYYeJdqV5HWzHx9BkoQYyrDXkrweGN0mY9QxCfeA==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@loaders.gl/xml/-/xml-3.4.15.tgz", + "integrity": "sha512-iMWHaDzYSe8JoS8W5k9IbxQ6S3VHPr7M+UBejIVeYGCp1jzWF0ri498olwJWWDRvg4kqAWolrkj8Pcgkg8Jf8A==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", + "@loaders.gl/loader-utils": "3.4.15", + "@loaders.gl/schema": "3.4.15", "fast-xml-parser": "^4.2.5" } }, "node_modules/@luma.gl/constants": { "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-8.5.21.tgz", - "integrity": "sha512-aJxayGxTT+IRd1vfpcgD/cKSCiVJjBNiuiChS96VulrmCvkzUOLvYXr42y5qKB4RyR7vOIda5uQprNzoHrhQAA==" + "integrity": "sha512-aJxayGxTT+IRd1vfpcgD/cKSCiVJjBNiuiChS96VulrmCvkzUOLvYXr42y5qKB4RyR7vOIda5uQprNzoHrhQAA==", + "license": "MIT" }, "node_modules/@luma.gl/core": { "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-8.5.21.tgz", "integrity": "sha512-11jQJQEMoR/IN2oIsd4zFxiQJk6FE+xgVIMUcsCTBuzafTtQZ8Po9df8mt+MVewpDyBlTVs6g8nxHRH4np1ukA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@luma.gl/constants": "8.5.21", @@ -4234,6 +4236,7 @@ "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-8.5.21.tgz", "integrity": "sha512-IG3WQSKXFNUEs8QG7ZjHtGiOtsakUu+BAxtJ6997A6/F06yynZ44tPe5NU70jG9Yfu3kV0LykPZg7hO3vXZDiA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@luma.gl/constants": "8.5.21", @@ -4250,6 +4253,7 @@ "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/experimental/-/experimental-8.5.21.tgz", "integrity": "sha512-uFKPChGofyihOKxtqJy78QCQCDFnuMTK4QHrUX/qiTnvFSO8BgtTUevKvWGN9lBvq+uDD0lSieeF9yBzhQfAzw==", + "license": "MIT", "dependencies": { "@luma.gl/constants": "8.5.21", "@math.gl/core": "^3.5.0", @@ -4268,6 +4272,7 @@ "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/gltools/-/gltools-8.5.21.tgz", "integrity": "sha512-6qZ0LaT2Mxa4AJT5F44TFoaziokYiHUwO45vnM/NYUOIu9xevcmS6VtToawytMEACGL6PDeDyVqP3Y80SDzq5g==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@luma.gl/constants": "8.5.21", @@ -4280,6 +4285,7 @@ "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-8.5.21.tgz", "integrity": "sha512-WQah7yFDJ8cNCLPYpIm3r0wSlXLvjoA279fcknmATvvkW3/i8PcCJ/nYEBJO3hHEwwMQxD16+YZu/uwGiifLMg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@math.gl/core": "^3.5.0" @@ -4289,6 +4295,7 @@ "version": "8.5.21", "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-8.5.21.tgz", "integrity": "sha512-ZVLO4W5UuaOlzZIwmFWhnmZ1gYoU97a+heMqxLrSSmCUAsSu3ZETUex9gOmzdM1WWxcdWaa3M68rvKCNEgwz0Q==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", "@luma.gl/constants": "8.5.21", @@ -4301,6 +4308,7 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", + "license": "ISC", "dependencies": { "get-stream": "^6.0.1", "minimist": "^1.2.6" @@ -4309,67 +4317,52 @@ "geojson-rewind": "geojson-rewind" } }, - "node_modules/@mapbox/geojson-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", - "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", - "optional": true, - "peer": true - }, "node_modules/@mapbox/jsonlint-lines-primitives": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", - "integrity": "sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=", + "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", "engines": { "node": ">= 0.6" } }, - "node_modules/@mapbox/mapbox-gl-supported": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", - "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", - "optional": true, - "peer": true, - "peerDependencies": { - "mapbox-gl": ">=0.32.1 <2.0.0" - } - }, "node_modules/@mapbox/martini": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", - "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==" + "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==", + "license": "ISC" }, "node_modules/@mapbox/point-geometry": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", - "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=" + "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==", + "license": "ISC" }, "node_modules/@mapbox/tile-cover": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@mapbox/tile-cover/-/tile-cover-3.0.1.tgz", "integrity": "sha512-R8aoFY/87HWBOL9E2eBqzOY2lpfWYXCcTNgBpIxAv67rqQeD4IfnHD0iPXg/Z1cqXrklegEYZCp/7ZR/RsWqBQ==", + "license": "MIT", "dependencies": { "tilebelt": "^1.0.1" } }, "node_modules/@mapbox/tiny-sdf": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", - "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==", - "optional": true, - "peer": true + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", + "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==", + "license": "BSD-2-Clause" }, "node_modules/@mapbox/unitbezier": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", - "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=", - "optional": true, - "peer": true + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", + "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==", + "license": "BSD-2-Clause" }, "node_modules/@mapbox/vector-tile": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", + "license": "BSD-3-Clause", "dependencies": { "@mapbox/point-geometry": "~0.1.0" } @@ -4378,14 +4371,16 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", + "license": "ISC", "engines": { "node": ">=6.0.0" } }, "node_modules/@maplibre/maplibre-gl-style-spec": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.1.tgz", - "integrity": "sha512-ss5+b3/a8I1wD5PYmAYPYxg0Nag0cxvw4GGOnQroTP59sobTPI3KeHP9OjUr/es7uNtYEodr54fgoEnCBF6gaQ==", + "version": "19.3.3", + "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.3.tgz", + "integrity": "sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw==", + "license": "ISC", "dependencies": { "@mapbox/jsonlint-lines-primitives": "~2.0.2", "@mapbox/unitbezier": "^0.0.1", @@ -4400,15 +4395,11 @@ "gl-style-validate": "dist/gl-style-validate.mjs" } }, - "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - }, "node_modules/@math.gl/core": { "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0", "@math.gl/types": "3.6.3", @@ -4419,6 +4410,7 @@ "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-3.6.3.tgz", "integrity": "sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0", "@math.gl/core": "3.6.3", @@ -4429,6 +4421,7 @@ "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-3.6.3.tgz", "integrity": "sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0", "@math.gl/core": "3.6.3", @@ -4439,6 +4432,7 @@ "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-3.6.3.tgz", "integrity": "sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g==", + "license": "MIT", "dependencies": { "@math.gl/core": "3.6.3" } @@ -4447,6 +4441,7 @@ "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-3.6.3.tgz", "integrity": "sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0" } @@ -4454,12 +4449,14 @@ "node_modules/@math.gl/types": { "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", - "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==" + "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==", + "license": "MIT" }, "node_modules/@math.gl/web-mercator": { "version": "3.6.3", "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz", "integrity": "sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0", "gl-matrix": "^3.4.0" @@ -4470,6 +4467,7 @@ "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz", "integrity": "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==", "dev": true, + "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/mdx": "^2.0.0", @@ -4494,62 +4492,12 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/@mdx-js/mdx/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/@mdx-js/mdx/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@mdx-js/mdx/node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@mdx-js/mdx/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/@mdx-js/react": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz", "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==", "dev": true, + "license": "MIT", "dependencies": { "@types/mdx": "^2.0.0", "@types/react": ">=16" @@ -4567,6 +4515,7 @@ "resolved": "https://registry.npmjs.org/@mdx-js/rollup/-/rollup-2.3.0.tgz", "integrity": "sha512-wLvRfJS/M4UmdqTd+WoaySEE7q4BIejYf1xAHXYvtT1du/1Tl/z2450Gg2+Hu7fh05KwRRiehiTP9Yc/Dtn0fA==", "dev": true, + "license": "MIT", "dependencies": { "@mdx-js/mdx": "^2.0.0", "@rollup/pluginutils": "^5.0.0", @@ -4586,30 +4535,31 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">= 8" } }, "node_modules/@mui/base": { - "version": "5.0.0-alpha.121", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.121.tgz", - "integrity": "sha512-8nJRY76UqlJV+q/Yzo0tgGfPWEOa+4N9rjO81fMmcJqP0I6m54hLDXsjvMg4tvelY5eKHXUK6Tb7en+GHfTqZA==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@emotion/is-prop-valid": "^1.2.0", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.13", - "@popperjs/core": "^2.11.6", - "clsx": "^1.2.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "engines": { + "version": "5.0.0-beta.40", + "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.40.tgz", + "integrity": "sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@floating-ui/react-dom": "^2.0.8", + "@mui/types": "^7.2.14", + "@mui/utils": "^5.15.14", + "@popperjs/core": "^2.11.8", + "clsx": "^2.1.0", + "prop-types": "^15.8.1" + }, + "engines": { "node": ">=12.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/mui" + "url": "https://opencollective.com/mui-org" }, "peerDependencies": { "@types/react": "^17.0.0 || ^18.0.0", @@ -4622,33 +4572,30 @@ } } }, - "node_modules/@mui/base/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, "node_modules/@mui/core-downloads-tracker": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.20.tgz", - "integrity": "sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==", + "version": "5.16.7", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.16.7.tgz", + "integrity": "sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/mui-org" } }, "node_modules/@mui/icons-material": { - "version": "5.11.11", - "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.11.tgz", - "integrity": "sha512-Eell3ADmQVE8HOpt/LZ3zIma8JSvPh3XgnhwZLT0k5HRqZcd6F/QDHc7xsWtgz09t+UEFvOYJXjtrwKmLdwwpw==", + "version": "5.16.7", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.16.7.tgz", + "integrity": "sha512-UrGwDJCXEszbDI7yV047BYU5A28eGJ79keTCP4cc74WyncuVrnurlmIRxaHL8YK+LI1Kzq+/JM52IAkNnv4u+Q==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.21.0" + "@babel/runtime": "^7.23.9" }, "engines": { "node": ">=12.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/mui" + "url": "https://opencollective.com/mui-org" }, "peerDependencies": { "@mui/material": "^5.0.0", @@ -4662,30 +4609,30 @@ } }, "node_modules/@mui/lab": { - "version": "5.0.0-alpha.123", - "resolved": "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.123.tgz", - "integrity": "sha512-E6PyNETF/FcGyGSMql25cQCZqbo+07EAEjHXM15V0R6rwQ/ZA/Dst41iQvyHk6t1QLI3vRw6YOR43OGKM3jURA==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@mui/base": "5.0.0-alpha.121", - "@mui/system": "^5.11.13", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.13", - "clsx": "^1.2.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" + "version": "5.0.0-alpha.173", + "resolved": "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.173.tgz", + "integrity": "sha512-Gt5zopIWwxDgGy/MXcp6GueD84xFFugFai4hYiXY0zowJpTVnIrTQCQXV004Q7rejJ7aaCntX9hpPJqCrioshA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/base": "5.0.0-beta.40", + "@mui/system": "^5.16.5", + "@mui/types": "^7.2.15", + "@mui/utils": "^5.16.5", + "clsx": "^2.1.0", + "prop-types": "^15.8.1" }, "engines": { "node": ">=12.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/mui" + "url": "https://opencollective.com/mui-org" }, "peerDependencies": { "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", - "@mui/material": "^5.0.0", + "@mui/material": ">=5.15.0", "@types/react": "^17.0.0 || ^18.0.0", "react": "^17.0.0 || ^18.0.0", "react-dom": "^17.0.0 || ^18.0.0" @@ -4702,28 +4649,79 @@ } } }, - "node_modules/@mui/lab/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + "node_modules/@mui/lab/node_modules/@mui/private-theming": { + "version": "5.16.6", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.16.6.tgz", + "integrity": "sha512-rAk+Rh8Clg7Cd7shZhyt2HGTTE5wYKNSJ5sspf28Fqm/PZ69Er9o6KX25g03/FG2dfpg5GCwZh/xOojiTfm3hw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/utils": "^5.16.6", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } }, - "node_modules/@mui/material": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.15.20.tgz", - "integrity": "sha512-tVq3l4qoXx/NxUgIx/x3lZiPn/5xDbdTE8VrLczNpfblLYZzlrbxA7kb9mI8NoBF6+w9WE9IrxWnKK5KlPI2bg==", + "node_modules/@mui/lab/node_modules/@mui/styled-engine": { + "version": "5.16.6", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.16.6.tgz", + "integrity": "sha512-zaThmS67ZmtHSWToTiHslbI8jwrmITcN93LQaR2lKArbvS7Z3iLkwRoiikNWutx9MBs8Q6okKvbZq1RQYB3v7g==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.9", - "@mui/base": "5.0.0-beta.40", - "@mui/core-downloads-tracker": "^5.15.20", - "@mui/system": "^5.15.20", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.20", - "@types/react-transition-group": "^4.4.10", + "@emotion/cache": "^11.11.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@mui/lab/node_modules/@mui/system": { + "version": "5.16.7", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.16.7.tgz", + "integrity": "sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/private-theming": "^5.16.6", + "@mui/styled-engine": "^5.16.6", + "@mui/types": "^7.2.15", + "@mui/utils": "^5.16.6", "clsx": "^2.1.0", "csstype": "^3.1.3", - "prop-types": "^15.8.1", - "react-is": "^18.2.0", - "react-transition-group": "^4.4.5" + "prop-types": "^15.8.1" }, "engines": { "node": ">=12.0.0" @@ -4736,8 +4734,7 @@ "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" + "react": "^17.0.0 || ^18.0.0" }, "peerDependenciesMeta": { "@emotion/react": { @@ -4751,18 +4748,24 @@ } } }, - "node_modules/@mui/material/node_modules/@mui/base": { - "version": "5.0.0-beta.40", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.40.tgz", - "integrity": "sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==", + "node_modules/@mui/material": { + "version": "5.16.7", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.16.7.tgz", + "integrity": "sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.9", - "@floating-ui/react-dom": "^2.0.8", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.14", + "@mui/core-downloads-tracker": "^5.16.7", + "@mui/system": "^5.16.7", + "@mui/types": "^7.2.15", + "@mui/utils": "^5.16.6", "@popperjs/core": "^2.11.8", + "@types/react-transition-group": "^4.4.10", "clsx": "^2.1.0", - "prop-types": "^15.8.1" + "csstype": "^3.1.3", + "prop-types": "^15.8.1", + "react-is": "^18.3.1", + "react-transition-group": "^4.4.5" }, "engines": { "node": ">=12.0.0" @@ -4772,36 +4775,32 @@ "url": "https://opencollective.com/mui-org" }, "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", "@types/react": "^17.0.0 || ^18.0.0", "react": "^17.0.0 || ^18.0.0", "react-dom": "^17.0.0 || ^18.0.0" }, "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, "@types/react": { "optional": true } } }, - "node_modules/@mui/material/node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/@mui/material/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/@mui/private-theming": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.15.20.tgz", - "integrity": "sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==", + "node_modules/@mui/material/node_modules/@mui/private-theming": { + "version": "5.16.6", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.16.6.tgz", + "integrity": "sha512-rAk+Rh8Clg7Cd7shZhyt2HGTTE5wYKNSJ5sspf28Fqm/PZ69Er9o6KX25g03/FG2dfpg5GCwZh/xOojiTfm3hw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.9", - "@mui/utils": "^5.15.20", + "@mui/utils": "^5.16.6", "prop-types": "^15.8.1" }, "engines": { @@ -4821,10 +4820,11 @@ } } }, - "node_modules/@mui/styled-engine": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.15.14.tgz", - "integrity": "sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==", + "node_modules/@mui/material/node_modules/@mui/styled-engine": { + "version": "5.16.6", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.16.6.tgz", + "integrity": "sha512-zaThmS67ZmtHSWToTiHslbI8jwrmITcN93LQaR2lKArbvS7Z3iLkwRoiikNWutx9MBs8Q6okKvbZq1RQYB3v7g==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.9", "@emotion/cache": "^11.11.0", @@ -4852,16 +4852,17 @@ } } }, - "node_modules/@mui/system": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.15.20.tgz", - "integrity": "sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==", + "node_modules/@mui/material/node_modules/@mui/system": { + "version": "5.16.7", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.16.7.tgz", + "integrity": "sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.9", - "@mui/private-theming": "^5.15.20", - "@mui/styled-engine": "^5.15.14", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.20", + "@mui/private-theming": "^5.16.6", + "@mui/styled-engine": "^5.16.6", + "@mui/types": "^7.2.15", + "@mui/utils": "^5.16.6", "clsx": "^2.1.0", "csstype": "^3.1.3", "prop-types": "^15.8.1" @@ -4891,20 +4892,27 @@ } } }, - "node_modules/@mui/system/node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "node_modules/@mui/private-theming": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.1.1.tgz", + "integrity": "sha512-JlrjIdhyZUtewtdAuUsvi3ZnO0YS49IW4Mfz19ZWTlQ0sDGga6LNPVwHClWr2/zJK2we2BQx9/i8M32rgKuzrg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.25.6", + "@mui/utils": "^6.1.1", + "prop-types": "^15.8.1" + }, "engines": { - "node": ">=6" - } - }, - "node_modules/@mui/types": { - "version": "7.2.14", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.14.tgz", - "integrity": "sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==", + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0" + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { "@types/react": { @@ -4912,26 +4920,30 @@ } } }, - "node_modules/@mui/utils": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.15.20.tgz", - "integrity": "sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==", + "node_modules/@mui/private-theming/node_modules/@mui/utils": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.1.1.tgz", + "integrity": "sha512-HlRrgdJSPbYDXPpoVMWZV8AE7WcFtAk13rWNWAEVWKSanzBBkymjz3km+Th/Srowsh4pf1fTSP1B0L116wQBYw==", + "license": "MIT", + "peer": true, "dependencies": { - "@babel/runtime": "^7.23.9", - "@types/prop-types": "^15.7.11", + "@babel/runtime": "^7.25.6", + "@mui/types": "^7.2.17", + "@types/prop-types": "^15.7.12", + "clsx": "^2.1.1", "prop-types": "^15.8.1", - "react-is": "^18.2.0" + "react-is": "^18.3.1" }, "engines": { - "node": ">=12.0.0" + "node": ">=14.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/mui-org" }, "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0" + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { "@types/react": { @@ -4939,24 +4951,18 @@ } } }, - "node_modules/@mui/utils/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/@mui/x-tree-view": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/@mui/x-tree-view/-/x-tree-view-7.7.0.tgz", - "integrity": "sha512-kUTMS77EcNjp1iXZlm4GGFzZHnQdZJfn2L9gvxAaHtNTDSRMS61jpsCcXknIyC797dmRPdALPewNzSOfkThF+Q==", + "node_modules/@mui/styled-engine": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.1.1.tgz", + "integrity": "sha512-HJyIoMpFb11fnHuRtUILOXgq6vj4LhIlE8maG4SwP/W+E5sa7HFexhnB3vOMT7bKys4UKNxhobC8jwWxYilGsA==", + "license": "MIT", + "peer": true, "dependencies": { - "@babel/runtime": "^7.24.7", - "@mui/base": "^5.0.0-beta.40", - "@mui/system": "^5.15.15", - "@mui/utils": "^5.15.14", - "@types/react-transition-group": "^4.4.10", - "clsx": "^2.1.1", - "prop-types": "^15.8.1", - "react-transition-group": "^4.4.5" + "@babel/runtime": "^7.25.6", + "@emotion/cache": "^11.13.1", + "@emotion/sheet": "^1.4.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" }, "engines": { "node": ">=14.0.0" @@ -4966,82 +4972,237 @@ "url": "https://opencollective.com/mui-org" }, "peerDependencies": { - "@emotion/react": "^11.9.0", - "@emotion/styled": "^11.8.1", - "@mui/material": "^5.15.14", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } } }, - "node_modules/@mui/x-tree-view/node_modules/@mui/base": { - "version": "5.0.0-beta.40", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.40.tgz", - "integrity": "sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==", + "node_modules/@mui/system": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-6.1.1.tgz", + "integrity": "sha512-PaYsCz2tUOcpu3T0okDEsSuP/yCDIj9JZ4Tox1JovRSKIjltHpXPsXZSGr3RiWdtM1MTQMFMCZzu0+CKbyy+Kw==", + "license": "MIT", + "peer": true, "dependencies": { - "@babel/runtime": "^7.23.9", - "@floating-ui/react-dom": "^2.0.8", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.14", - "@popperjs/core": "^2.11.8", - "clsx": "^2.1.0", + "@babel/runtime": "^7.25.6", + "@mui/private-theming": "^6.1.1", + "@mui/styled-engine": "^6.1.1", + "@mui/types": "^7.2.17", + "@mui/utils": "^6.1.1", + "clsx": "^2.1.1", + "csstype": "^3.1.3", "prop-types": "^15.8.1" }, "engines": { - "node": ">=12.0.0" + "node": ">=14.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/mui-org" }, "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, "@types/react": { "optional": true } } }, - "node_modules/@mui/x-tree-view/node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "node_modules/@mui/system/node_modules/@mui/utils": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.1.1.tgz", + "integrity": "sha512-HlRrgdJSPbYDXPpoVMWZV8AE7WcFtAk13rWNWAEVWKSanzBBkymjz3km+Th/Srowsh4pf1fTSP1B0L116wQBYw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.25.6", + "@mui/types": "^7.2.17", + "@types/prop-types": "^15.7.12", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-is": "^18.3.1" + }, "engines": { - "node": ">=6" + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@ndelangen/get-tarball": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz", - "integrity": "sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==", - "dev": true, - "dependencies": { - "gunzip-maybe": "^1.4.2", - "pump": "^3.0.0", - "tar-fs": "^2.1.1" + "node_modules/@mui/types": { + "version": "7.2.17", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.17.tgz", + "integrity": "sha512-oyumoJgB6jDV8JFzRqjBo2daUuHpzDjoO/e3IrRhhHo/FxJlaVhET6mcNrKHUq2E+R+q3ql0qAtvQ4rfWHhAeQ==", + "license": "MIT", + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", - "dev": true, + "node_modules/@mui/utils": { + "version": "5.16.6", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.16.6.tgz", + "integrity": "sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==", + "license": "MIT", "dependencies": { - "eslint-scope": "5.1.1" - } - }, - "node_modules/@nismod/irv-api-client": { - "version": "0.8.0", - "resolved": "https://npm.pkg.github.com/download/@nismod/irv-api-client/0.8.0/95c79a3115bd2117393c1c7f3841965d485481af", - "integrity": "sha512-L+FgndiFmRpBLJ6xwe/ktqKbJ4LCPo55VlfwnjbpGsN9joKWjrKUjgUlVXANWmwEaWNreAVRmvPmlqatpzF1pw==", + "@babel/runtime": "^7.23.9", + "@mui/types": "^7.2.15", + "@types/prop-types": "^15.7.12", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-is": "^18.3.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/x-internals": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@mui/x-internals/-/x-internals-7.18.0.tgz", + "integrity": "sha512-lzCHOWIR0cAIY1bGrWSprYerahbnH5C31ql/2OWCEjcngL2NAV1M6oKI2Vp4HheqzJ822c60UyWyapvyjSzY/A==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.6", + "@mui/utils": "^5.16.6" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "react": "^17.0.0 || ^18.0.0" + } + }, + "node_modules/@mui/x-tree-view": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@mui/x-tree-view/-/x-tree-view-7.18.0.tgz", + "integrity": "sha512-3UJAYtBquc0SzKxEEdM68XlKOuuCl70ktZPqqI3z4wTZ0HK445XXc32t/s0VPIL94kRxWQcGPpgWFauScDwhug==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.6", + "@mui/utils": "^5.16.6", + "@mui/x-internals": "7.18.0", + "@types/react-transition-group": "^4.4.11", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.9.0", + "@emotion/styled": "^11.8.1", + "@mui/material": "^5.15.14 || ^6.0.0", + "@mui/system": "^5.15.14 || ^6.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nismod/irv-api-client": { + "version": "0.8.0", + "resolved": "https://npm.pkg.github.com/download/@nismod/irv-api-client/0.8.0/95c79a3115bd2117393c1c7f3841965d485481af", + "integrity": "sha512-L+FgndiFmRpBLJ6xwe/ktqKbJ4LCPo55VlfwnjbpGsN9joKWjrKUjgUlVXANWmwEaWNreAVRmvPmlqatpzF1pw==", "license": "ISC" }, "node_modules/@nismod/irv-autopkg-client": { - "version": "0.2.7-dev", - "resolved": "https://npm.pkg.github.com/download/@nismod/irv-autopkg-client/0.2.7-dev/e43c61e1acebe08026bd4e8c221c1ae7b62b1868", - "integrity": "sha512-xo2zP5Woc2Nn27tbtYuXl2r5zLuUEhqoUhoX1sEQz2aOUcDeLBaoXOSUwjPioSoi8v1Xfg54wQoWGSF4fkxcJw==", + "version": "0.2.7", + "resolved": "https://npm.pkg.github.com/download/@nismod/irv-autopkg-client/0.2.7/32468ae36aad7cdd19c33ad220b8bcd80a0660e0", + "integrity": "sha512-1BL15ogN2oxlCHH62FkLRuWg4KsITISuwhmfVX+R5tSaD8CokO0AHIHuyyqh6hWRBNS4Py0JmzARG/jf5Bzrkw==", "license": "ISC" }, "node_modules/@nodelib/fs.scandir": { @@ -5049,6 +5210,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -5062,6 +5224,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -5071,6 +5234,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -5079,11 +5243,22 @@ "node": ">= 8" } }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, "node_modules/@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", "dev": true, + "license": "ISC", "dependencies": { "semver": "^7.3.5" }, @@ -5092,14 +5267,14 @@ } }, "node_modules/@npmcli/git": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.0.3.tgz", - "integrity": "sha512-8cXNkDIbnXPVbhXMmQ7/bklCAjtmPaXfI9aEM4iH+xSuEHINLMHhlfESvVwdqmHJRJkR48vNJTSUvoF6GRPSFA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", + "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", "dev": true, + "license": "ISC", "dependencies": { "@npmcli/promise-spawn": "^6.0.0", "lru-cache": "^7.4.4", - "mkdirp": "^1.0.4", "npm-pick-manifest": "^8.0.0", "proc-log": "^3.0.0", "promise-inflight": "^1.0.1", @@ -5116,27 +5291,17 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, + "license": "ISC", "engines": { "node": ">=12" } }, - "node_modules/@npmcli/git/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@npmcli/git/node_modules/which": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.0.tgz", - "integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -5148,16 +5313,17 @@ } }, "node_modules/@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz", + "integrity": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==", "dev": true, + "license": "ISC", "dependencies": { "npm-bundled": "^3.0.0", "npm-normalize-package-bin": "^3.0.0" }, "bin": { - "installed-package-contents": "lib/index.js" + "installed-package-contents": "bin/index.js" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -5169,6 +5335,7 @@ "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", "deprecated": "This functionality has been moved to @npmcli/fs", "dev": true, + "license": "MIT", "dependencies": { "mkdirp": "^1.0.4", "rimraf": "^3.0.2" @@ -5177,23 +5344,12 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/@npmcli/move-file/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@npmcli/node-gyp": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", "dev": true, + "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -5203,6 +5359,7 @@ "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", "dev": true, + "license": "ISC", "dependencies": { "which": "^3.0.0" }, @@ -5211,10 +5368,11 @@ } }, "node_modules/@npmcli/promise-spawn/node_modules/which": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.0.tgz", - "integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -5226,10 +5384,11 @@ } }, "node_modules/@npmcli/run-script": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.0.tgz", - "integrity": "sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", + "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", "dev": true, + "license": "ISC", "dependencies": { "@npmcli/node-gyp": "^3.0.0", "@npmcli/promise-spawn": "^6.0.0", @@ -5242,10 +5401,11 @@ } }, "node_modules/@npmcli/run-script/node_modules/which": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.0.tgz", - "integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -5261,16 +5421,18 @@ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, + "license": "MIT", "optional": true, "engines": { "node": ">=14" } }, "node_modules/@pnpm/config.env-replace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.0.0.tgz", - "integrity": "sha512-ZVPVDi1E8oeXlYqkGRtX0CkzLTwE2zt62bjWaWKaAvI8NZqHzlMvGeSNDpW+JB3+aKanYb4UETJOF1/CxGPemA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.22.0" } @@ -5280,6 +5442,7 @@ "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "4.2.10" }, @@ -5287,13 +5450,21 @@ "node": ">=12.22.0" } }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true, + "license": "ISC" + }, "node_modules/@pnpm/npm-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.1.0.tgz", - "integrity": "sha512-Oe6ntvgsMTE3hDIqy6sajqHF+MnzJrOF06qC2QSiUEybLL7cp6tjoKUa32gpd9+KPVl4QyMs3E3nsXrx/Vdnlw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", "dev": true, + "license": "MIT", "dependencies": { - "@pnpm/config.env-replace": "^1.0.0", + "@pnpm/config.env-replace": "^1.1.0", "@pnpm/network.ca-file": "^1.0.1", "config-chain": "^1.1.11" }, @@ -5305,32 +5476,36 @@ "version": "2.11.8", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/popperjs" } }, "node_modules/@probe.gl/env": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.5.0.tgz", - "integrity": "sha512-YdlpZZshhyYxvWDBmZ5RIW2pTR14Pw4p9czMlt/v7F6HbFzWfAdmH7q6xVwFRYxUpQLwhWensWyv4aFysiWl4g==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.6.0.tgz", + "integrity": "sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0" } }, "node_modules/@probe.gl/log": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.5.0.tgz", - "integrity": "sha512-nW/qz2X1xY08WU/TsmJP6/6IPNcaY5fS/vLjpC4ahJuE2Mezga4hGM/R2X5JWE/nkPc+BsC5GnAnD13rwAxS7g==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.6.0.tgz", + "integrity": "sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0", - "@probe.gl/env": "3.5.0" + "@probe.gl/env": "3.6.0" } }, "node_modules/@probe.gl/stats": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.6.0.tgz", "integrity": "sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.0.0" } @@ -5340,6 +5515,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz", "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10" } @@ -5349,6 +5525,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10" } @@ -5358,6 +5535,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz", "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" @@ -5382,6 +5560,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz", "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", @@ -5409,6 +5588,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10" }, @@ -5427,6 +5607,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10" }, @@ -5445,6 +5626,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz", "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10" }, @@ -5463,6 +5645,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.4.tgz", "integrity": "sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", @@ -5491,6 +5674,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz", "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10" }, @@ -5509,6 +5693,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.3.tgz", "integrity": "sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", @@ -5535,6 +5720,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-layout-effect": "1.0.1" @@ -5554,6 +5740,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.2.tgz", "integrity": "sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@floating-ui/react-dom": "^2.0.0", @@ -5587,6 +5774,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.3.tgz", "integrity": "sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" @@ -5611,6 +5799,7 @@ "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-slot": "1.0.2" @@ -5631,27 +5820,27 @@ } }, "node_modules/@radix-ui/react-roving-focus": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz", - "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.0.tgz", + "integrity": "sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-collection": "1.0.3", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-id": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@radix-ui/react-use-controllable-state": "1.0.1" + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5662,40 +5851,30 @@ } } }, - "node_modules/@radix-ui/react-select": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-1.2.2.tgz", - "integrity": "sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==", + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz", + "integrity": "sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-collection": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.0.tgz", + "integrity": "sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/number": "1.0.1", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-collection": "1.0.3", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-dismissable-layer": "1.0.4", - "@radix-ui/react-focus-guards": "1.0.1", - "@radix-ui/react-focus-scope": "1.0.3", - "@radix-ui/react-id": "1.0.1", - "@radix-ui/react-popper": "1.1.2", - "@radix-ui/react-portal": "1.0.3", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-slot": "1.0.2", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@radix-ui/react-use-controllable-state": "1.0.1", - "@radix-ui/react-use-layout-effect": "1.0.1", - "@radix-ui/react-use-previous": "1.0.1", - "@radix-ui/react-visually-hidden": "1.0.3", - "aria-hidden": "^1.1.1", - "react-remove-scroll": "2.5.5" + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5706,42 +5885,66 @@ } } }, - "node_modules/@radix-ui/react-separator": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz", - "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==", + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", + "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", "dev": true, - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-primitive": "1.0.3" - }, + "license": "MIT", "peerDependencies": { "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { "optional": true - }, - "@types/react-dom": { - "optional": true } } }, - "node_modules/@radix-ui/react-slot": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", - "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-direction": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz", + "integrity": "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-id": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz", + "integrity": "sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.1" + "@radix-ui/react-use-layout-effect": "1.1.0" }, "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5749,22 +5952,20 @@ } } }, - "node_modules/@radix-ui/react-toggle": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.0.3.tgz", - "integrity": "sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==", + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", + "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-controllable-state": "1.0.1" + "@radix-ui/react-slot": "1.1.0" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5775,20 +5976,105 @@ } } }, - "node_modules/@radix-ui/react-toggle-group": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.0.4.tgz", - "integrity": "sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==", + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", + "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz", + "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz", + "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-callback-ref": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz", + "integrity": "sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==", "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-select": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-1.2.2.tgz", + "integrity": "sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==", + "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", + "@radix-ui/number": "1.0.1", "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.4", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.3", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.2", + "@radix-ui/react-portal": "1.0.3", "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-roving-focus": "1.0.4", - "@radix-ui/react-toggle": "1.0.3", - "@radix-ui/react-use-controllable-state": "1.0.1" + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-previous": "1.0.1", + "@radix-ui/react-visually-hidden": "1.0.3", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" }, "peerDependencies": { "@types/react": "*", @@ -5805,26 +6091,20 @@ } } }, - "node_modules/@radix-ui/react-toolbar": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.0.4.tgz", - "integrity": "sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==", + "node_modules/@radix-ui/react-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.0.tgz", + "integrity": "sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-roving-focus": "1.0.4", - "@radix-ui/react-separator": "1.0.3", - "@radix-ui/react-toggle-group": "1.0.4" + "@radix-ui/react-primitive": "2.0.0" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5835,36 +6115,58 @@ } } }, - "node_modules/@radix-ui/react-use-callback-ref": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", - "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", + "node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", + "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", + "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10" + "@radix-ui/react-slot": "1.1.0" }, "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { "optional": true + }, + "@types/react-dom": { + "optional": true } } }, - "node_modules/@radix-ui/react-use-controllable-state": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", - "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", + "node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", + "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-callback-ref": "1.0.1" + "@radix-ui/react-compose-refs": "1.1.0" }, "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5872,14 +6174,15 @@ } } }, - "node_modules/@radix-ui/react-use-escape-keydown": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", - "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", + "node_modules/@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-callback-ref": "1.0.1" + "@radix-ui/react-compose-refs": "1.0.1" }, "peerDependencies": { "@types/react": "*", @@ -5891,54 +6194,78 @@ } } }, - "node_modules/@radix-ui/react-use-layout-effect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", - "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", + "node_modules/@radix-ui/react-toggle": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.0.tgz", + "integrity": "sha512-gwoxaKZ0oJ4vIgzsfESBuSgJNdc0rv12VhHgcqN0TEJmmZixXG/2XpsLK8kzNWYcnaoRIEEQc0bEi3dIvdUpjw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10" + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0" }, "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { "optional": true + }, + "@types/react-dom": { + "optional": true } } }, - "node_modules/@radix-ui/react-use-previous": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz", - "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==", + "node_modules/@radix-ui/react-toggle-group": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.0.tgz", + "integrity": "sha512-PpTJV68dZU2oqqgq75Uzto5o/XfOVgkrJ9rulVmfTKxWp3HfUjHE6CP/WLRR4AzPX9HWxw7vFow2me85Yu+Naw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10" + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-toggle": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" }, "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { "optional": true + }, + "@types/react-dom": { + "optional": true } } }, - "node_modules/@radix-ui/react-use-rect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", - "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz", + "integrity": "sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==", "dev": true, - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/rect": "1.0.1" - }, + "license": "MIT" + }, + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", + "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", + "dev": true, + "license": "MIT", "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5946,18 +6273,31 @@ } } }, - "node_modules/@radix-ui/react-use-size": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", - "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", "dev": true, - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-layout-effect": "1.0.1" + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-direction": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz", + "integrity": "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==", + "dev": true, + "license": "MIT", "peerDependencies": { "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5965,20 +6305,20 @@ } } }, - "node_modules/@radix-ui/react-visually-hidden": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", - "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", + "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-primitive": "1.0.3" + "@radix-ui/react-slot": "1.1.0" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { "@types/react": { @@ -5989,937 +6329,1003 @@ } } }, - "node_modules/@radix-ui/rect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", - "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", + "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10" - } - }, - "node_modules/@reach/portal": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@reach/portal/-/portal-0.13.2.tgz", - "integrity": "sha512-g74BnCdtuTGthzzHn2cWW+bcyIYb0iIE/yRsm89i8oNzNgpopbkh9UY8TPbhNlys52h7U60s4kpRTmcq+JqsTA==", - "dependencies": { - "@reach/utils": "0.13.2", - "tslib": "^2.1.0" + "@radix-ui/react-compose-refs": "1.1.0" }, "peerDependencies": { - "react": "^16.8.0 || 17.x", - "react-dom": "^16.8.0 || 17.x" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@reach/portal/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz", + "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } }, - "node_modules/@reach/utils": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@reach/utils/-/utils-0.13.2.tgz", - "integrity": "sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==", + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz", + "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", + "dev": true, + "license": "MIT", "dependencies": { - "@types/warning": "^3.0.0", - "tslib": "^2.1.0", - "warning": "^4.0.3" + "@radix-ui/react-use-callback-ref": "1.1.0" }, "peerDependencies": { - "react": "^16.8.0 || 17.x", - "react-dom": "^16.8.0 || 17.x" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@reach/utils/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz", + "integrity": "sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==", + "dev": true, + "license": "MIT" }, - "node_modules/@react-hook/debounce": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@react-hook/debounce/-/debounce-4.0.0.tgz", - "integrity": "sha512-706Xcg+KKWHk9BuZQUQ0ZQKp9zhv3/MbqFenWVfHcynYpSGRVwQTzJRGvPxvsdtXxJv+HfgKTY/O/hEejakwmA==", + "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", + "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", + "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", + "dev": true, + "license": "MIT", "dependencies": { - "@react-hook/latest": "^1.0.2" + "@radix-ui/react-slot": "1.1.0" }, "peerDependencies": { - "react": ">=16.8" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@react-hook/latest": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@react-hook/latest/-/latest-1.0.3.tgz", - "integrity": "sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==", + "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", + "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.0" + }, "peerDependencies": { - "react": ">=16.8" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@recoiljs/refine": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@recoiljs/refine/-/refine-0.1.1.tgz", - "integrity": "sha512-ry02rHswJePYkH1o8K99qL4O6TBntF9/g7W5wXVwaOUrIJEZUGfl/I3+btPXbUgyyEZvNs5xcwvOw13AufmFQw==" - }, - "node_modules/@remix-run/router": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.4.0.tgz", - "integrity": "sha512-BJ9SxXux8zAg991UmT8slpwpsd31K1dHHbD3Ba4VzD+liLQ4WAMSxQp2d2ZPRPfN0jN2NPRowcSSoM7lCaF08Q==", - "engines": { - "node": ">=14" + "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz", + "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz", + "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" + "@radix-ui/react-use-callback-ref": "1.1.0" }, "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "peerDependenciesMeta": { - "rollup": { + "@types/react": { "optional": true } } }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", - "dev": true - }, - "node_modules/@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", + "node_modules/@radix-ui/react-toolbar": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.1.0.tgz", + "integrity": "sha512-ZUKknxhMTL/4hPh+4DuaTot9aO7UD6Kupj4gqXCsBTayX1pD1L+0C2/2VZKXb4tIifQklZ3pf2hG9T+ns+FclQ==", "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-separator": "1.1.0", + "@radix-ui/react-toggle-group": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true + "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz", + "integrity": "sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==", + "dev": true, + "license": "MIT" }, - "node_modules/@sindresorhus/is": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", - "integrity": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==", + "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", + "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", "dev": true, - "engines": { - "node": ">=14.16" + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", "dev": true, - "engines": { - "node": ">=18" + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.6.19.tgz", - "integrity": "sha512-ATLrA5QKFJt7tIAScRHz5T3eBQ+RG3jaZk08L7gChvyQZhei8knWwePElZ7GaWbCr9BgznQp1lQUUXq/UUblAQ==", + "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-direction": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz", + "integrity": "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==", "dev": true, - "dependencies": { - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "@types/uuid": "^9.0.1", - "dequal": "^2.0.2", - "polished": "^4.2.2", - "uuid": "^9.0.0" + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", + "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", "dev": true, + "license": "MIT", "dependencies": { - "ts-dedent": "^2.0.0" + "@radix-ui/react-slot": "1.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.6.19.tgz", - "integrity": "sha512-Nu3LAZODRSV2e5bOroKm/Jp6BIFzwu/nJxD5OvLWkkwNCh+vDXUFbbaVrZf5xRL+fHd9iLFPtWbJQpF/w7UsCw==", + "node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", + "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3", - "ts-dedent": "^2.0.0" + "@radix-ui/react-compose-refs": "1.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-controls": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.6.19.tgz", - "integrity": "sha512-cl6PCNEwihDjuWIUsKTyDNKk+/IE4J3oMbSY5AZV/9Z0jJbpMV2shVm5DMZm5LhCCVcu5obWcxCIa4FMIMJAMQ==", + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", + "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/blocks": "7.6.19", - "lodash": "^4.17.21", - "ts-dedent": "^2.0.0" + "@babel/runtime": "^7.13.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.6.19.tgz", - "integrity": "sha512-nv+9SR/NOtM8Od2esOXHcg0NQT8Pk8BMUyGwZu5Q3MLI4JxNVEG65dY0IP2j6Knc4UtlvQTpM0f7m5xp4seHjQ==", + "node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", + "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", "dev": true, + "license": "MIT", "dependencies": { - "@jest/transform": "^29.3.1", - "@mdx-js/react": "^2.1.5", - "@storybook/blocks": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/components": "7.6.19", - "@storybook/csf-plugin": "7.6.19", - "@storybook/csf-tools": "7.6.19", - "@storybook/global": "^5.0.0", - "@storybook/mdx2-csf": "^1.0.0", - "@storybook/node-logger": "7.6.19", - "@storybook/postinstall": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/react-dom-shim": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "fs-extra": "^11.1.0", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", + "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", + "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "@babel/runtime": "^7.13.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/components": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.19.tgz", - "integrity": "sha512-8Zw/RQ4crzKkUR7ojxvRIj8vktKiBBO8Nq93qv4JfDqDWrcR7cro0hOlZgmZmrzbFunBBt6WlsNNO6nVP7R4Xw==", + "node_modules/@radix-ui/react-use-previous": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz", + "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==", "dev": true, + "license": "MIT", "dependencies": { - "@radix-ui/react-select": "^1.2.2", - "@radix-ui/react-toolbar": "^1.0.4", - "@storybook/client-logger": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/@radix-ui/react-use-rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", + "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", "dev": true, + "license": "MIT", "dependencies": { - "ts-dedent": "^2.0.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/rect": "1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", + "node_modules/@radix-ui/react-use-size": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", + "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", + "node_modules/@radix-ui/react-visually-hidden": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", + "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/theming": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.19.tgz", - "integrity": "sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==", + "node_modules/@radix-ui/rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", + "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", "dev": true, + "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.6.19", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10" + } + }, + "node_modules/@reach/portal": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@reach/portal/-/portal-0.13.2.tgz", + "integrity": "sha512-g74BnCdtuTGthzzHn2cWW+bcyIYb0iIE/yRsm89i8oNzNgpopbkh9UY8TPbhNlys52h7U60s4kpRTmcq+JqsTA==", + "license": "MIT", + "dependencies": { + "@reach/utils": "0.13.2", + "tslib": "^2.1.0" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || 17.x", + "react-dom": "^16.8.0 || 17.x" } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, + "node_modules/@reach/utils": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@reach/utils/-/utils-0.13.2.tgz", + "integrity": "sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==", + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "@types/warning": "^3.0.0", + "tslib": "^2.1.0", + "warning": "^4.0.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "react": "^16.8.0 || 17.x", + "react-dom": "^16.8.0 || 17.x" } }, - "node_modules/@storybook/addon-essentials": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.6.19.tgz", - "integrity": "sha512-SC33ZEQ5YaOt9wDkrdZmwQgqPWo9om/gqnyif06eug3SwrTe9JjO5iq1PIBfQodLD9MAxr9cwBvO0NG505oszQ==", - "dev": true, - "dependencies": { - "@storybook/addon-actions": "7.6.19", - "@storybook/addon-backgrounds": "7.6.19", - "@storybook/addon-controls": "7.6.19", - "@storybook/addon-docs": "7.6.19", - "@storybook/addon-highlight": "7.6.19", - "@storybook/addon-measure": "7.6.19", - "@storybook/addon-outline": "7.6.19", - "@storybook/addon-toolbars": "7.6.19", - "@storybook/addon-viewport": "7.6.19", - "@storybook/core-common": "7.6.19", - "@storybook/manager-api": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/preview-api": "7.6.19", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "node_modules/@react-hook/debounce": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@react-hook/debounce/-/debounce-4.0.0.tgz", + "integrity": "sha512-706Xcg+KKWHk9BuZQUQ0ZQKp9zhv3/MbqFenWVfHcynYpSGRVwQTzJRGvPxvsdtXxJv+HfgKTY/O/hEejakwmA==", + "license": "MIT", + "dependencies": { + "@react-hook/latest": "^1.0.2" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": ">=16.8" } }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], + "node_modules/@react-hook/latest": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@react-hook/latest/-/latest-1.0.3.tgz", + "integrity": "sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@recoiljs/refine": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@recoiljs/refine/-/refine-0.1.1.tgz", + "integrity": "sha512-ry02rHswJePYkH1o8K99qL4O6TBntF9/g7W5wXVwaOUrIJEZUGfl/I3+btPXbUgyyEZvNs5xcwvOw13AufmFQw==", + "license": "MIT" + }, + "node_modules/@remix-run/router": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.19.2.tgz", + "integrity": "sha512-baiMx18+IMuD1yyvOGaHM9QrVUPGGG0jC+z+IPHnRJWUAUvaKuWKyE8gjDj2rzv3sz9zOGoRSPgeBVHRhZnBlA==", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=14.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], + "node_modules/@rollup/pluginutils": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.2.tgz", + "integrity": "sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + }, "engines": { - "node": ">=12" + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.23.0.tgz", + "integrity": "sha512-8OR+Ok3SGEMsAZispLx8jruuXw0HVF16k+ub2eNXKHDmdxL4cf9NlNpAzhlOhNyXzKDEJuFeq0nZm+XlNb1IFw==", "cpu": [ - "arm64" + "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ - "darwin" + "android" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.23.0.tgz", + "integrity": "sha512-rEFtX1nP8gqmLmPZsXRMoLVNB5JBwOzIAk/XAcEPuKrPa2nPJ+DuGGpfQUR0XjRm8KjHfTZLpWbKXkA5BoFL3w==", "cpu": [ - "x64" + "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ - "darwin" + "android" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.23.0.tgz", + "integrity": "sha512-ZbqlMkJRMMPeapfaU4drYHns7Q5MIxjM/QeOO62qQZGPh9XWziap+NF9fsqPHT0KzEL6HaPspC7sOwpgyA3J9g==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ - "freebsd" + "darwin" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.23.0.tgz", + "integrity": "sha512-PfmgQp78xx5rBCgn2oYPQ1rQTtOaQCna0kRaBlc5w7RlA3TDGGo7m3XaptgitUZ54US9915i7KeVPHoy3/W8tA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ - "freebsd" + "darwin" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.23.0.tgz", + "integrity": "sha512-WAeZfAAPus56eQgBioezXRRzArAjWJGjNo/M+BHZygUcs9EePIuGI1Wfc6U/Ki+tMW17FFGvhCfYnfcKPh18SA==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.23.0.tgz", + "integrity": "sha512-v7PGcp1O5XKZxKX8phTXtmJDVpE20Ub1eF6w9iMmI3qrrPak6yR9/5eeq7ziLMrMTjppkkskXyxnmm00HdtXjA==", "cpu": [ - "ia32" + "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.23.0.tgz", + "integrity": "sha512-nAbWsDZ9UkU6xQiXEyXBNHAKbzSAi95H3gTStJq9UGiS1v+YVXwRHcQOQEF/3CHuhX5BVhShKoeOf6Q/1M+Zhg==", "cpu": [ - "loong64" + "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.23.0.tgz", + "integrity": "sha512-5QT/Di5FbGNPaVw8hHO1wETunwkPuZBIu6W+5GNArlKHD9fkMHy7vS8zGHJk38oObXfWdsuLMogD4sBySLJ54g==", "cpu": [ - "mips64el" + "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.23.0.tgz", + "integrity": "sha512-Sefl6vPyn5axzCsO13r1sHLcmPuiSOrKIImnq34CBurntcJ+lkQgAaTt/9JkgGmaZJ+OkaHmAJl4Bfd0DmdtOQ==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.23.0.tgz", + "integrity": "sha512-o4QI2KU/QbP7ZExMse6ULotdV3oJUYMrdx3rBZCgUF3ur3gJPfe8Fuasn6tia16c5kZBBw0aTmaUygad6VB/hQ==", "cpu": [ "riscv64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.23.0.tgz", + "integrity": "sha512-+bxqx+V/D4FGrpXzPGKp/SEZIZ8cIW3K7wOtcJAoCrmXvzRtmdUhYNbgd+RztLzfDEfA2WtKj5F4tcbNPuqgeg==", "cpu": [ "s390x" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.23.0.tgz", + "integrity": "sha512-I/eXsdVoCKtSgK9OwyQKPAfricWKUMNCwJKtatRYMmDo5N859tbO3UsBw5kT3dU1n6ZcM1JDzPRSGhAUkxfLxw==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.23.0.tgz", + "integrity": "sha512-4ZoDZy5ShLbbe1KPSafbFh1vbl0asTVfkABC7eWqIs01+66ncM82YJxV2VtV3YVJTqq2P8HMx3DCoRSWB/N3rw==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ - "sunos" + "linux" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.23.0.tgz", + "integrity": "sha512-+5Ky8dhft4STaOEbZu3/NU4QIyYssKO+r1cD3FzuusA0vO5gso15on7qGzKdNXnc1gOrsgCqZjRw1w+zL4y4hQ==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.23.0.tgz", + "integrity": "sha512-0SPJk4cPZQhq9qA1UhIRumSE3+JJIBBjtlGl5PNC///BoaByckNZd53rOYD0glpTkYFBQSt7AkMeLVPfx65+BQ==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.23.0.tgz", + "integrity": "sha512-lqCK5GQC8fNo0+JvTSxcG7YB1UKYp8yrNLhsArlvPWN+16ovSZgoehlVHg6X0sSWPUkpjRBR5TuR12ZugowZ4g==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], - "engines": { - "node": ">=12" - } + "peer": true }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", "dev": true, - "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "license": "MIT" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz", + "integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==", + "dev": true, + "license": "MIT" }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/@sigstore/bundle": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz", + "integrity": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@storybook/global": "^5.0.0" + "@sigstore/protobuf-specs": "^0.2.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/core-common": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.19.tgz", - "integrity": "sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==", + "node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz", + "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==", "dev": true, - "dependencies": { - "@storybook/core-events": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.18.0", - "esbuild-register": "^3.5.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" + "license": "Apache-2.0", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/sign": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz", + "integrity": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^1.1.0", + "@sigstore/protobuf-specs": "^0.2.0", + "make-fetch-happen": "^11.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/@sigstore/tuf": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz", + "integrity": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "ts-dedent": "^2.0.0" + "@sigstore/protobuf-specs": "^0.2.0", + "tuf-js": "^1.1.7" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/manager-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.19.tgz", - "integrity": "sha512-dVCx1Q+HZEA4U08XqYljiG88BeS3I3ahnPAQLZAeWQXQRkoc9G2jMgLNPKYPIqEtq7Xrn6SRlFMIofhwWrwZpg==", + "node_modules/@storybook/addon-actions": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.6.20.tgz", + "integrity": "sha512-c/GkEQ2U9BC/Ew/IMdh+zvsh4N6y6n7Zsn2GIhJgcu9YEAa5aF2a9/pNgEGBMOABH959XE8DAOMERw/5qiLR8g==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", + "@storybook/core-events": "7.6.20", "@storybook/global": "^5.0.0", - "@storybook/router": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", + "@types/uuid": "^9.0.1", "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "store2": "^2.14.2", - "telejson": "^7.2.0", - "ts-dedent": "^2.0.0" + "polished": "^4.2.2", + "uuid": "^9.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", + "node_modules/@storybook/addon-backgrounds": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.6.20.tgz", + "integrity": "sha512-a7ukoaXT42vpKsMxkseIeO3GqL0Zst2IxpCTq5dSlXiADrcemSF/8/oNpNW9C4L6F1Zdt+WDtECXslEm017FvQ==", "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3", + "ts-dedent": "^2.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", + "node_modules/@storybook/addon-controls": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.6.20.tgz", + "integrity": "sha512-06ZT5Ce1sZW52B0s6XuokwjkKO9GqHlTUHvuflvd8wifxKlCmRvNUxjBvwh+ccGJ49ZS73LbMSLFgtmBEkCxbg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", + "@storybook/blocks": "7.6.20", "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/router": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.19.tgz", - "integrity": "sha512-q2/AvY8rG0znFEfbg50OIhkS5yQ6OmyzdCdztoEsDDdsbq87YPmsDj7k8Op1EkTa2T5CB8XhBOCQDtcj7gUUtg==", + "node_modules/@storybook/addon-docs": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.6.20.tgz", + "integrity": "sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" + "@jest/transform": "^29.3.1", + "@mdx-js/react": "^2.1.5", + "@storybook/blocks": "7.6.20", + "@storybook/client-logger": "7.6.20", + "@storybook/components": "7.6.20", + "@storybook/csf-plugin": "7.6.20", + "@storybook/csf-tools": "7.6.20", + "@storybook/global": "^5.0.0", + "@storybook/mdx2-csf": "^1.0.0", + "@storybook/node-logger": "7.6.20", + "@storybook/postinstall": "7.6.20", + "@storybook/preview-api": "7.6.20", + "@storybook/react-dom-shim": "7.6.20", + "@storybook/theming": "7.6.20", + "@storybook/types": "7.6.20", + "fs-extra": "^11.1.0", + "remark-external-links": "^8.0.0", + "remark-slug": "^6.0.0", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/theming": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.19.tgz", - "integrity": "sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==", + "node_modules/@storybook/addon-essentials": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.6.20.tgz", + "integrity": "sha512-hCupSOiJDeOxJKZSgH0x5Mb2Xqii6mps21g5hpxac1XjhQtmGflShxi/xOHhK3sNqrbgTSbScfpUP3hUlZO/2Q==", "dev": true, + "license": "MIT", "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.6.19", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/addon-actions": "7.6.20", + "@storybook/addon-backgrounds": "7.6.20", + "@storybook/addon-controls": "7.6.20", + "@storybook/addon-docs": "7.6.20", + "@storybook/addon-highlight": "7.6.20", + "@storybook/addon-measure": "7.6.20", + "@storybook/addon-outline": "7.6.20", + "@storybook/addon-toolbars": "7.6.20", + "@storybook/addon-viewport": "7.6.20", + "@storybook/core-common": "7.6.20", + "@storybook/manager-api": "7.6.20", + "@storybook/node-logger": "7.6.20", + "@storybook/preview-api": "7.6.20", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", @@ -6930,231 +7336,229 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", + "node_modules/@storybook/addon-highlight": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.6.20.tgz", + "integrity": "sha512-7/x7xFdFyqCki5Dm3uBePldUs9l98/WxJ7rTHQuYqlX7kASwyN5iXPzuhmMRUhlMm/6G6xXtLabIpzwf1sFurA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "@storybook/global": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@storybook/addon-interactions": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.6.20.tgz", + "integrity": "sha512-uH+OIxLtvfnnmdN3Uf8MwzfEFYtaqSA6Hir6QNPc643se0RymM8mULN0rzRyvspwd6OagWdtOxsws3aHk02KTA==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.20", + "jest-mock": "^27.0.6", + "polished": "^4.2.2", + "ts-dedent": "^2.2.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@storybook/addon-links": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.6.20.tgz", + "integrity": "sha512-iomSnBD90CA4MinesYiJkFX2kb3P1Psd/a1Y0ghlFEsHD4uMId9iT6sx2s16DYMja0SlPkrbWYnGukqaCjZpRw==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + } } }, - "node_modules/@storybook/addon-essentials/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@storybook/addon-measure": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.6.20.tgz", + "integrity": "sha512-i2Iq08bGfI7gZbG6Lb8uF/L287tnaGUR+2KFEmdBjH6+kgjWLiwfpanoPQpy4drm23ar0gUjX+L3Ri03VI5/Xg==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "@storybook/global": "^5.0.0", + "tiny-invariant": "^1.3.1" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@storybook/addon-outline": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.6.20.tgz", + "integrity": "sha512-TdsIQZf/TcDsGoZ1XpO+9nBc4OKqcMIzY4SrI8Wj9dzyFLQ37s08gnZr9POci8AEv62NTUOVavsxcafllkzqDQ==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@storybook/addon-essentials/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "node_modules/@storybook/addon-toolbars": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.6.20.tgz", + "integrity": "sha512-5Btg4i8ffWTDHsU72cqxC8nIv9N3E3ObJAc6k0llrmPBG/ybh3jxmRfs8fNm44LlEXaZ5qrK/petsXX3UbpIFg==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "node_modules/@storybook/addon-viewport": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.6.20.tgz", + "integrity": "sha512-i8mIw8BjLWAVHEQsOTE6UPuEGQvJDpsu1XZnOCkpfTfPMz73m+3td/PmLG7mMT2wPnLu9IZncKLCKTAZRbt/YQ==", "dev": true, + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" + "memoizerific": "^1.11.3" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/@storybook/blocks": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.20.tgz", + "integrity": "sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==", "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" + "@storybook/channels": "7.6.20", + "@storybook/client-logger": "7.6.20", + "@storybook/components": "7.6.20", + "@storybook/core-events": "7.6.20", + "@storybook/csf": "^0.1.2", + "@storybook/docs-tools": "7.6.20", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.6.20", + "@storybook/preview-api": "7.6.20", + "@storybook/theming": "7.6.20", + "@storybook/types": "7.6.20", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "markdown-to-jsx": "^7.1.8", + "memoizerific": "^1.11.3", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.2.0", + "tocbot": "^4.20.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/addon-essentials/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-highlight": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.6.19.tgz", - "integrity": "sha512-/pApl0oiVU1CQ8xETRNDLDthMBjeTmvFnTRq8RJ9m0JYTrSsoyHDmj9zS4K1k9gReqijE7brslhP8d2tblBpNw==", + "node_modules/@storybook/builder-vite": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-7.6.20.tgz", + "integrity": "sha512-q3vf8heE7EaVYTWlm768ewaJ9lh6v/KfoPPeHxXxzSstg4ByP9kg4E1mrfAo/l6broE9E9zo3/Q4gsM/G/rw8Q==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/channels": "7.6.20", + "@storybook/client-logger": "7.6.20", + "@storybook/core-common": "7.6.20", + "@storybook/csf-plugin": "7.6.20", + "@storybook/node-logger": "7.6.20", + "@storybook/preview": "7.6.20", + "@storybook/preview-api": "7.6.20", + "@storybook/types": "7.6.20", + "@types/find-cache-dir": "^3.2.1", + "browser-assert": "^1.2.1", + "es-module-lexer": "^0.9.3", + "express": "^4.17.3", + "find-cache-dir": "^3.0.0", + "fs-extra": "^11.1.0", + "magic-string": "^0.30.0", + "rollup": "^2.25.0 || ^3.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@preact/preset-vite": "*", + "typescript": ">= 4.3.x", + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0", + "vite-plugin-glimmerx": "*" + }, + "peerDependenciesMeta": { + "@preact/preset-vite": { + "optional": true + }, + "typescript": { + "optional": true + }, + "vite-plugin-glimmerx": { + "optional": true + } } }, - "node_modules/@storybook/addon-interactions": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.6.19.tgz", - "integrity": "sha512-lMQDu6JT2LXDWcRnIGvrKRk/W+67zOtUNpDKwoVuvM5eHVJcza5SPV6v8yXDLCHLOt7RZ15h6LT2uXabfKpcww==", + "node_modules/@storybook/builder-vite/node_modules/rollup": { + "version": "3.29.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", + "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "jest-mock": "^27.0.6", - "polished": "^4.2.2", - "ts-dedent": "^2.2.0" + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/@storybook/channels": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.20.tgz", + "integrity": "sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", + "@storybook/client-logger": "7.6.20", + "@storybook/core-events": "7.6.20", "@storybook/global": "^5.0.0", "qs": "^6.10.0", "telejson": "^7.2.0", @@ -7165,150 +7569,156 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/@storybook/cli": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.3.4.tgz", + "integrity": "sha512-VzyY/CFLlrYmtIZpvSU5+7BejHzSy6AidrmUML1ZzNj0+F3FUU4XA6nFs+/zLBwYON+mE3p3iOpJu3iQpQK9Qw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "@babel/core": "^7.24.4", + "@babel/types": "^7.24.0", + "@storybook/codemod": "8.3.4", + "@types/semver": "^7.3.4", + "chalk": "^4.1.0", + "commander": "^12.1.0", + "create-storybook": "8.3.4", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fd-package-json": "^1.2.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "giget": "^1.0.0", + "glob": "^10.0.0", + "globby": "^14.0.1", + "jscodeshift": "^0.15.1", + "leven": "^3.1.0", + "prompts": "^2.4.0", + "semver": "^7.3.7", + "storybook": "8.3.4", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0" + }, + "bin": { + "cli": "bin/index.cjs" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/@storybook/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "ts-dedent": "^2.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", + "node_modules/@storybook/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/addon-links": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.6.19.tgz", - "integrity": "sha512-qMIFfcsMf4olxhYUHUV2ZJhxphh6Xpf1DMd0lxKqAibfxl/sX1m0rJkyiqWSBxbCmAy/pwdgqEOJ1lpDUsJ33w==", + "node_modules/@storybook/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - } + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-measure": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.6.19.tgz", - "integrity": "sha512-n+cfhVXXouBv9oQr3a77vvip5dTznaNoBDWMafP2ohauc8jBlAxeBwCjk5r3pyThMRIFCTG/ypZrhiJcSJT3bw==", + "node_modules/@storybook/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0", - "tiny-invariant": "^1.3.1" + "has-flag": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-outline": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.6.19.tgz", - "integrity": "sha512-Tt4MrfjK5j/Mdh8nJ8ccVyh78Dy7aiEPxO31YVvr5XUkge0pDi1PX328mHRDPur0i56NM8ssVbekWBZr+9MxlA==", + "node_modules/@storybook/client-logger": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.20.tgz", + "integrity": "sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0", - "ts-dedent": "^2.0.0" + "@storybook/global": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-toolbars": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.6.19.tgz", - "integrity": "sha512-+qGbPP2Vo/HoPiS4EJopZ127HGculCV74Hkz6ot7ob6AkYdA1yLMPzWns/ZXNIWm6ab3jV+iq+mQCM/i1qJzvA==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-viewport": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.6.19.tgz", - "integrity": "sha512-OQQtJ2kYwImbvE9QiC3I3yR0O0EBgNjq+XSaSS4ixJrvUyesfuB7Lm7RkubhEEiP4yANi9OlbzsqZelmPOnk6w==", + "node_modules/@storybook/codemod": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.3.4.tgz", + "integrity": "sha512-w3nYKsIooevVSnX7+uC7yTLbPtMBvwKIB0jF897baHCxvFr80JhP49oM/KWfZMnwcAni21ZGitO57O6dYIn1Rg==", "dev": true, + "license": "MIT", "dependencies": { - "memoizerific": "^1.11.3" + "@babel/core": "^7.24.4", + "@babel/preset-env": "^7.24.4", + "@babel/types": "^7.24.0", + "@storybook/core": "8.3.4", + "@storybook/csf": "^0.1.11", + "@types/cross-spawn": "^6.0.2", + "cross-spawn": "^7.0.3", + "globby": "^14.0.1", + "jscodeshift": "^0.15.1", + "lodash": "^4.17.21", + "prettier": "^3.1.1", + "recast": "^0.23.5", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/blocks": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.19.tgz", - "integrity": "sha512-/c/bVQRmyRPoviJhPrFdLfubRcrnZWTwkjxsCvrOTJ/UDOyEl0t/H8yY1mGq7KWWTdbIznnZWhAIofHnH4/Esw==", + "node_modules/@storybook/components": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.20.tgz", + "integrity": "sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/components": "7.6.19", - "@storybook/core-events": "7.6.19", + "@radix-ui/react-select": "^1.2.2", + "@radix-ui/react-toolbar": "^1.0.4", + "@storybook/client-logger": "7.6.20", "@storybook/csf": "^0.1.2", - "@storybook/docs-tools": "7.6.19", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "@types/lodash": "^4.14.167", - "color-convert": "^2.0.1", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "markdown-to-jsx": "^7.1.8", + "@storybook/theming": "7.6.20", + "@storybook/types": "7.6.20", "memoizerific": "^1.11.3", - "polished": "^4.2.2", - "react-colorful": "^5.1.2", - "telejson": "^7.2.0", - "tocbot": "^4.20.1", - "ts-dedent": "^2.0.0", + "use-resize-observer": "^9.1.0", "util-deprecate": "^1.0.2" }, "funding": { @@ -7320,231 +7730,92 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/@storybook/core": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/@storybook/core/-/core-8.3.4.tgz", + "integrity": "sha512-4PZB91JJpuKfcjeOR2LXj3ABaPLLSd2P/SfYOKNCygrDstsQa/yay3/yN5Z9yi1cIG84KRr6/sUW+0x8HsGLPg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "@storybook/csf": "^0.1.11", + "@types/express": "^4.17.21", + "better-opn": "^3.0.2", + "browser-assert": "^1.2.1", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0", + "esbuild-register": "^3.5.0", + "express": "^4.19.2", + "jsdoc-type-pratt-parser": "^4.0.0", + "process": "^0.11.10", + "recast": "^0.23.5", + "semver": "^7.6.2", + "util": "^0.12.5", + "ws": "^8.2.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/@storybook/core-client": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.6.20.tgz", + "integrity": "sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.20", + "@storybook/preview-api": "7.6.20" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/components": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.19.tgz", - "integrity": "sha512-8Zw/RQ4crzKkUR7ojxvRIj8vktKiBBO8Nq93qv4JfDqDWrcR7cro0hOlZgmZmrzbFunBBt6WlsNNO6nVP7R4Xw==", + "node_modules/@storybook/core-common": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.20.tgz", + "integrity": "sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==", "dev": true, + "license": "MIT", "dependencies": { - "@radix-ui/react-select": "^1.2.2", - "@radix-ui/react-toolbar": "^1.0.4", - "@storybook/client-logger": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "dependencies": { - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/manager-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.19.tgz", - "integrity": "sha512-dVCx1Q+HZEA4U08XqYljiG88BeS3I3ahnPAQLZAeWQXQRkoc9G2jMgLNPKYPIqEtq7Xrn6SRlFMIofhwWrwZpg==", - "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "store2": "^2.14.2", - "telejson": "^7.2.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/router": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.19.tgz", - "integrity": "sha512-q2/AvY8rG0znFEfbg50OIhkS5yQ6OmyzdCdztoEsDDdsbq87YPmsDj7k8Op1EkTa2T5CB8XhBOCQDtcj7gUUtg==", - "dev": true, - "dependencies": { - "@storybook/client-logger": "7.6.19", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/theming": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.19.tgz", - "integrity": "sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==", - "dev": true, - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.6.19", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/blocks/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@storybook/blocks/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@storybook/builder-manager": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.1.8.tgz", - "integrity": "sha512-M4qpETmQNUTg6KEt4nVONjF2dXlVV1V+Mxf9saiinoj+PCyHdz+BmYYmiGtopUPxJ2YGvTL1nGykkyH57HutrQ==", - "dev": true, - "dependencies": { - "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "8.1.8", - "@storybook/manager": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@types/ejs": "^3.1.1", - "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", - "browser-assert": "^1.2.1", - "ejs": "^3.1.10", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-plugin-alias": "^0.2.1", - "express": "^4.17.3", + "@storybook/core-events": "7.6.20", + "@storybook/node-logger": "7.6.20", + "@storybook/types": "7.6.20", + "@types/find-cache-dir": "^3.2.1", + "@types/node": "^18.0.0", + "@types/node-fetch": "^2.6.4", + "@types/pretty-hrtime": "^1.0.0", + "chalk": "^4.1.0", + "esbuild": "^0.18.0", + "esbuild-register": "^3.5.0", + "file-system-cache": "2.3.0", + "find-cache-dir": "^3.0.0", + "find-up": "^5.0.0", "fs-extra": "^11.1.0", - "process": "^0.11.10", - "util": "^0.12.4" + "glob": "^10.0.0", + "handlebars": "^4.7.7", + "lazy-universal-dotenv": "^4.0.0", + "node-fetch": "^2.0.0", + "picomatch": "^2.3.0", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "node_modules/@storybook/core-common/node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" @@ -7553,14 +7824,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "node_modules/@storybook/core-common/node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" @@ -7569,14 +7841,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "node_modules/@storybook/core-common/node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" @@ -7585,14 +7858,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "node_modules/@storybook/core-common/node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -7601,14 +7875,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "node_modules/@storybook/core-common/node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -7617,14 +7892,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "node_modules/@storybook/core-common/node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" @@ -7633,14 +7909,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "node_modules/@storybook/core-common/node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" @@ -7649,14 +7926,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7665,14 +7943,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7681,14 +7960,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7697,14 +7977,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", "cpu": [ "loong64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7713,14 +7994,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", "cpu": [ "mips64el" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7729,14 +8011,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7745,14 +8028,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", "cpu": [ "riscv64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7761,14 +8045,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", "cpu": [ "s390x" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7777,14 +8062,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "node_modules/@storybook/core-common/node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" @@ -7793,14 +8079,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "netbsd" @@ -7809,14 +8096,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "openbsd" @@ -7825,14 +8113,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "node_modules/@storybook/core-common/node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "sunos" @@ -7841,14 +8130,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -7857,14 +8147,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -7873,14 +8164,15 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "node_modules/@storybook/core-common/node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" @@ -7889,113 +8181,107 @@ "node": ">=12" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", + "node_modules/@storybook/core-common/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, + "node_modules/@storybook/core-common/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", + "node_modules/@storybook/core-common/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", "dev": true, - "dependencies": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" }, - "peerDependencies": { - "prettier": "^2 || ^3" + "engines": { + "node": ">=12" }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - } + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/@storybook/core-common/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", + "node_modules/@storybook/core-common/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" + "has-flag": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", + "node_modules/@storybook/core-events": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.20.tgz", + "integrity": "sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", "ts-dedent": "^2.0.0" }, "funding": { @@ -8003,736 +8289,662 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", + "node_modules/@storybook/csf": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.11.tgz", + "integrity": "sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^2.19.0" + } + }, + "node_modules/@storybook/csf-plugin": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.6.20.tgz", + "integrity": "sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==", "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/csf-tools": "7.6.20", + "unplugin": "^1.3.1" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", + "node_modules/@storybook/csf-tools": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.20.tgz", + "integrity": "sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "7.6.20", + "fs-extra": "^11.1.0", + "recast": "^0.23.1", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@storybook/csf/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=8" + "node": ">=12.20" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-manager/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@storybook/docs-tools": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.6.20.tgz", + "integrity": "sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "@storybook/core-common": "7.6.20", + "@storybook/preview-api": "7.6.20", + "@storybook/types": "7.6.20", + "@types/doctrine": "^0.0.3", + "assert": "^2.1.0", + "doctrine": "^3.0.0", + "lodash": "^4.17.21" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@storybook/instrumenter": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.6.20.tgz", + "integrity": "sha512-jqRpSEy+4rVXXgixMm7CPapZrTd4WqL0lkxLCzLC3BT6fom5MVUb6BTqWx3agYcsZR2yJjg6bR6CM44QAqknpQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "@storybook/channels": "7.6.20", + "@storybook/client-logger": "7.6.20", + "@storybook/core-events": "7.6.20", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "7.6.20", + "@vitest/utils": "^0.34.6", + "util": "^0.12.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@storybook/manager-api": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.20.tgz", + "integrity": "sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@storybook/channels": "7.6.20", + "@storybook/client-logger": "7.6.20", + "@storybook/core-events": "7.6.20", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/router": "7.6.20", + "@storybook/theming": "7.6.20", + "@storybook/types": "7.6.20", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "store2": "^2.14.2", + "telejson": "^7.2.0", + "ts-dedent": "^2.0.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@storybook/builder-manager/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "node_modules/@storybook/mdx2-csf": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", + "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "node_modules/@storybook/builder-manager/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "license": "MIT" + }, + "node_modules/@storybook/node-logger": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.20.tgz", + "integrity": "sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==", "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@storybook/postinstall": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.6.20.tgz", + "integrity": "sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==", "dev": true, - "engines": { - "node": ">=8" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/@storybook/preview": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.6.20.tgz", + "integrity": "sha512-cxYlZ5uKbCYMHoFpgleZqqGWEnqHrk5m5fT8bYSsDsdQ+X5wPcwI/V+v8dxYAdQcMphZVIlTjo6Dno9WG8qmVA==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/@storybook/preview-api": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.20.tgz", + "integrity": "sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==", "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/@storybook/builder-manager/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" + "license": "MIT", + "dependencies": { + "@storybook/channels": "7.6.20", + "@storybook/client-logger": "7.6.20", + "@storybook/core-events": "7.6.20", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.20", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@storybook/react": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.6.20.tgz", + "integrity": "sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@storybook/client-logger": "7.6.20", + "@storybook/core-client": "7.6.20", + "@storybook/docs-tools": "7.6.20", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "7.6.20", + "@storybook/react-dom-shim": "7.6.20", + "@storybook/types": "7.6.20", + "@types/escodegen": "^0.0.6", + "@types/estree": "^0.0.51", + "@types/node": "^18.0.0", + "acorn": "^7.4.1", + "acorn-jsx": "^5.3.1", + "acorn-walk": "^7.2.0", + "escodegen": "^2.1.0", + "html-tags": "^3.1.0", + "lodash": "^4.17.21", + "prop-types": "^15.7.2", + "react-element-to-jsx-string": "^15.0.0", + "ts-dedent": "^2.0.0", + "type-fest": "~2.19", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/builder-vite": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-7.6.19.tgz", - "integrity": "sha512-llYpfYCHQCD0nPy+5J+H67iKcOpBrexIFO13wXxHQyl27Z+1T2JJj4cHqZs5S3a2XLiwf4df44NBvvwV5cmJmQ==", - "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-common": "7.6.19", - "@storybook/csf-plugin": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/preview": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "browser-assert": "^1.2.1", - "es-module-lexer": "^0.9.3", - "express": "^4.17.3", - "find-cache-dir": "^3.0.0", - "fs-extra": "^11.1.0", - "magic-string": "^0.30.0", - "rollup": "^2.25.0 || ^3.3.0" + "node": ">=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "@preact/preset-vite": "*", - "typescript": ">= 4.3.x", - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0", - "vite-plugin-glimmerx": "*" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "typescript": "*" }, "peerDependenciesMeta": { - "@preact/preset-vite": { - "optional": true - }, "typescript": { "optional": true - }, - "vite-plugin-glimmerx": { - "optional": true } } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], + "node_modules/@storybook/react-dom-shim": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.6.20.tgz", + "integrity": "sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], + "node_modules/@storybook/react-vite": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/react-vite/-/react-vite-7.6.20.tgz", + "integrity": "sha512-uKuBFyGPZxpfR8vpDU/2OE9v7iTaxwL7ldd7k1swYd1rTSAPacTnEHSMl1R5AjUhkdI7gRmGN9q7qiVfK2XJCA==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "license": "MIT", + "dependencies": { + "@joshwooding/vite-plugin-react-docgen-typescript": "0.3.0", + "@rollup/pluginutils": "^5.0.2", + "@storybook/builder-vite": "7.6.20", + "@storybook/react": "7.6.20", + "@vitejs/plugin-react": "^3.0.1", + "magic-string": "^0.30.0", + "react-docgen": "^7.0.0" + }, "engines": { - "node": ">=12" + "node": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], + "node_modules/@storybook/react/node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], + "node_modules/@storybook/react/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=12" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], + "node_modules/@storybook/router": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.20.tgz", + "integrity": "sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@storybook/client-logger": "7.6.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], + "node_modules/@storybook/testing-library": { + "version": "0.0.14-next.2", + "resolved": "https://registry.npmjs.org/@storybook/testing-library/-/testing-library-0.0.14-next.2.tgz", + "integrity": "sha512-i/SLSGm0o978ELok/SB4Qg1sZ3zr+KuuCkzyFqcCD0r/yf+bG35aQGkFqqxfSAdDxuQom0NO02FE+qys5Eapdg==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@storybook/client-logger": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", + "@storybook/instrumenter": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", + "@testing-library/dom": "^8.3.0", + "@testing-library/user-event": "^13.2.1", + "ts-dedent": "^2.2.0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], + "node_modules/@storybook/theming": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.20.tgz", + "integrity": "sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", + "@storybook/client-logger": "7.6.20", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], + "node_modules/@storybook/types": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.20.tgz", + "integrity": "sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@storybook/channels": "7.6.20", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", + "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", + "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", + "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", + "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", + "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", + "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], + "node_modules/@svgr/babel-preset": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", + "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", "dev": true, - "optional": true, - "os": [ - "netbsd" - ], + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", + "@svgr/babel-plugin-remove-jsx-attribute": "*", + "@svgr/babel-plugin-remove-jsx-empty-expression": "*", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", + "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", + "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", + "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", + "@svgr/babel-plugin-transform-svg-component": "^6.5.1" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], + "node_modules/@svgr/core": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", + "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "license": "MIT", + "dependencies": { + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/plugin-jsx": "^6.5.1", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.1" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], + "node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", + "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "@babel/types": "^7.20.0", + "entities": "^4.4.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0" + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/core-common": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.19.tgz", - "integrity": "sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==", + "node_modules/@svgr/plugin-jsx": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", + "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/core-events": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.18.0", - "esbuild-register": "^3.5.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/hast-util-to-babel-ast": "^6.5.1", + "svg-parser": "^2.0.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "dependencies": { - "ts-dedent": "^2.0.0" + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "^6.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", + "node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "defer-to-connect": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=14.16" } }, - "node_modules/@storybook/builder-vite/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", + "node_modules/@testing-library/dom": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12" } }, - "node_modules/@storybook/builder-vite/node_modules/ansi-styles": { + "node_modules/@testing-library/dom/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -8743,20 +8955,12 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/builder-vite/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@storybook/builder-vite/node_modules/chalk": { + "node_modules/@testing-library/dom/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -8768,3967 +8972,3352 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/builder-vite/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "license": "MIT", "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/@storybook/builder-vite/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@storybook/builder-vite/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" + "node": ">=8" } }, - "node_modules/@storybook/builder-vite/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", "dev": true, + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "@babel/runtime": "^7.12.5" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": ">=10", + "npm": ">=6" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" } }, - "node_modules/@storybook/builder-vite/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@storybook/builder-vite/node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "node_modules/@tufjs/canonical-json": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", + "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", "dev": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "license": "MIT", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, + "node_modules/@tufjs/models": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", + "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", + "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "@tufjs/canonical-json": "1.0.0", + "minimatch": "^9.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/@tufjs/models/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/@storybook/builder-vite/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/@tufjs/models/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@storybook/builder-vite/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, + "node_modules/@turf/bbox": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-7.1.0.tgz", + "integrity": "sha512-PdWPz9tW86PD78vSZj2fiRaB8JhUHy6piSa/QXb83lucxPK+HTAdzlDQMTKj5okRCU8Ox/25IR2ep9T8NdopRA==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@turf/helpers": "^7.1.0", + "@turf/meta": "^7.1.0", + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/channel-postmessage": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.0-beta.64.tgz", - "integrity": "sha512-F2tP1bM82JCs/OtZM2UYZwyb4fCHwYDVHWeZ/95EKshPCAcjbJvlPBWQPhlsMjisVXJguw8ZubcFUgBjGVhcNA==", - "dev": true, + "node_modules/@turf/bbox-polygon": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-7.1.0.tgz", + "integrity": "sha512-fvZB09ErCZOVlWVDop836hmpKaGUmfXnR9naMhS73A/8nn4M3hELbQtMv2R8gXj7UakXCuxS/i9erdpDFZ2O+g==", + "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.0-beta.64", - "@storybook/client-logger": "7.0.0-beta.64", - "@storybook/core-events": "7.0.0-beta.64", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@turf/helpers": "^7.1.0", + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/channels": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.0-beta.64.tgz", - "integrity": "sha512-5X84I0hS8Huvp8MN7x99Bmhf4aYvZZrx/FtfwifkqOw57NjVJsPLINJccjh05qiXtUiVhzNbUy4Hjw/UjUXCNQ==", - "dev": true, + "node_modules/@turf/boolean-clockwise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", + "integrity": "sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5", + "@turf/invariant": "^5.1.5" + } + }, + "node_modules/@turf/boolean-clockwise/node_modules/@turf/helpers": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", + "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==", + "license": "MIT" + }, + "node_modules/@turf/buffer": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-7.1.0.tgz", + "integrity": "sha512-QM3JiCMYA19k5ouO8wJtvICX3Y8XntxVpDfHSKhFFidZcCkMTR2PWWOpwS6EoL3t75rSKw/FOLIPLZGtIu963w==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^7.1.0", + "@turf/center": "^7.1.0", + "@turf/helpers": "^7.1.0", + "@turf/jsts": "^2.7.1", + "@turf/meta": "^7.1.0", + "@turf/projection": "^7.1.0", + "@types/geojson": "^7946.0.10", + "d3-geo": "1.7.1" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/cli": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.1.8.tgz", - "integrity": "sha512-GrU8zcLK0l/Jo9xQ42iEBqF0YL83gZF/GDTV+9MVMU1JtBtFldomvyGzT9J3TwvPgzC+rCmlk16rY1M2vc5klg==", - "dev": true, + "node_modules/@turf/center": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/center/-/center-7.1.0.tgz", + "integrity": "sha512-p9AvBMwNZmRg65kU27cGKHAUQnEcdz8Y7f/i5DvaMfm4e8zmawr+hzPKXaUpUfiTyLs8Xt2W9vlOmNGyH+6X3w==", + "license": "MIT", "dependencies": { - "@babel/core": "^7.24.4", - "@babel/types": "^7.24.0", - "@ndelangen/get-tarball": "^3.0.7", - "@storybook/codemod": "8.1.8", - "@storybook/core-common": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/core-server": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/telemetry": "8.1.8", - "@storybook/types": "8.1.8", - "@types/semver": "^7.3.4", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "commander": "^6.2.1", - "cross-spawn": "^7.0.3", - "detect-indent": "^6.1.0", - "envinfo": "^7.7.3", - "execa": "^5.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "get-npm-tarball-url": "^2.0.3", - "giget": "^1.0.0", - "globby": "^14.0.1", - "jscodeshift": "^0.15.1", - "leven": "^3.1.0", - "ora": "^5.4.1", - "prettier": "^3.1.1", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "strip-json-comments": "^3.0.1", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0" + "@turf/bbox": "^7.1.0", + "@turf/helpers": "^7.1.0", + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" }, - "bin": { - "getstorybook": "bin/index.js", - "sb": "bin/index.js" + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clone": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-7.1.0.tgz", + "integrity": "sha512-5R9qeWvL7FDdBIbEemd0eCzOStr09oburDvJ1hRiPCFX6rPgzcZBQ0gDmZzoF4AFcNLb5IwknbLZjVLaUGWtFA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^7.1.0", + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/helpers": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-7.1.0.tgz", + "integrity": "sha512-dTeILEUVeNbaEeoZUOhxH5auv7WWlOShbx7QSd4s0T4Z0/iz90z9yaVCtZOLbU89umKotwKaJQltBNO9CzVgaQ==", + "license": "MIT", + "dependencies": { + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/invariant": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.2.0.tgz", + "integrity": "sha512-28RCBGvCYsajVkw2EydpzLdcYyhSA77LovuOvgCJplJWaNVyJYH6BOR3HR9w50MEkPqb/Vc/jdo6I6ermlRtQA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/invariant/node_modules/@turf/helpers": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", + "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==", + "license": "MIT" + }, + "node_modules/@turf/jsts": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@turf/jsts/-/jsts-2.7.1.tgz", + "integrity": "sha512-+nwOKme/aUprsxnLSfr2LylV6eL6T1Tuln+4Hl92uwZ8FrmjDRCH5Bi1LJNVfWCiYgk8+5K+t2zDphWNTsIFDA==", + "license": "(EDL-1.0 OR EPL-1.0)", + "dependencies": { + "jsts": "2.7.1" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/meta": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-7.1.0.tgz", + "integrity": "sha512-ZgGpWWiKz797Fe8lfRj7HKCkGR+nSJ/5aKXMyofCvLSc2PuYJs/qyyifDPWjASQQCzseJ7AlF2Pc/XQ/3XkkuA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^7.1.0", + "@types/geojson": "^7946.0.10" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/projection": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-7.1.0.tgz", + "integrity": "sha512-3wHluMoOvXnTe7dfi0kcluTyLNG5MwGsSsK5OA98vkkLH6a1xvItn8e9GcesuT07oB2km/bgefxYEIvjQG5JCA==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^7.1.0", + "@turf/helpers": "^7.1.0", + "@turf/meta": "^7.1.0", + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/rewind": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", + "integrity": "sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw==", + "license": "MIT", + "dependencies": { + "@turf/boolean-clockwise": "^5.1.5", + "@turf/clone": "^5.1.5", + "@turf/helpers": "^5.1.5", + "@turf/invariant": "^5.1.5", + "@turf/meta": "^5.1.5" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/rewind/node_modules/@turf/clone": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", + "integrity": "sha512-//pITsQ8xUdcQ9pVb4JqXiSqG4dos5Q9N4sYFoWghX21tfOV2dhc5TGqYOhnHrQS7RiKQL1vQ48kIK34gQ5oRg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "node_modules/@turf/rewind/node_modules/@turf/helpers": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", + "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==", + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@turf/rewind/node_modules/@turf/meta": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.2.0.tgz", + "integrity": "sha512-ZjQ3Ii62X9FjnK4hhdsbT+64AYRpaI8XMBMcyftEOGSmPMUVnkbvuv3C9geuElAXfQU7Zk1oWGOcrGOD9zr78Q==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], + "node_modules/@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@types/estree": "*" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" + "node_modules/@types/chai": { + "version": "4.3.20", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.20.tgz", + "integrity": "sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==", + "license": "MIT" + }, + "node_modules/@types/chai-subset": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.5.tgz", + "integrity": "sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==", + "license": "MIT", + "dependencies": { + "@types/chai": "*" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], + "node_modules/@types/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/cli/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/d3-time": "*" } }, - "node_modules/@storybook/cli/node_modules/@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", + "node_modules/@types/d3-scale-chromatic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz", + "integrity": "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/ms": "*" } }, - "node_modules/@storybook/cli/node_modules/@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", + "node_modules/@types/doctrine": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", + "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", "dev": true, - "dependencies": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "prettier": "^2 || ^3" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - } - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", + "node_modules/@types/escodegen": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", + "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", "dev": true, - "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/estree": "*" } }, - "node_modules/@storybook/cli/node_modules/@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "node_modules/@storybook/cli/node_modules/@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", + "node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@storybook/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@types/find-cache-dir": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", + "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@types/geojson": { + "version": "7946.0.14", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", + "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", + "license": "MIT" + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "@types/minimatch": "*", + "@types/node": "*" } }, - "node_modules/@storybook/cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "@types/node": "*" } }, - "node_modules/@storybook/cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@types/hammerjs": { + "version": "2.0.45", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.45.tgz", + "integrity": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==", + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "@types/unist": "^2" } }, - "node_modules/@storybook/cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true, + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true, - "engines": { - "node": ">= 6" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "node_modules/@storybook/cli/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@storybook/cli/node_modules/globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, + "license": "MIT", "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/istanbul-lib-report": "*" } }, - "node_modules/@storybook/cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" + }, + "node_modules/@types/json-stable-stringify": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz", + "integrity": "sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/@types/lodash": { + "version": "4.17.9", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.9.tgz", + "integrity": "sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==", "dev": true, + "license": "MIT" + }, + "node_modules/@types/mapbox__point-geometry": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.4.tgz", + "integrity": "sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==", + "license": "MIT" + }, + "node_modules/@types/mapbox__vector-tile": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.4.tgz", + "integrity": "sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==", + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "@types/geojson": "*", + "@types/mapbox__point-geometry": "*", + "@types/pbf": "*" } }, - "node_modules/@storybook/cli/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" + "node_modules/@types/mapbox-gl": { + "version": "2.7.21", + "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.21.tgz", + "integrity": "sha512-Dx9MuF2kKgT/N22LsMUB4b3acFZh9clVqz9zv1fomoiPoBrJolwYxpWA/9LPO/2N0xWbKi4V+pkjTaFkkx/4wA==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" } }, - "node_modules/@storybook/cli/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "license": "MIT", + "dependencies": { + "@types/unist": "^2" } }, - "node_modules/@storybook/cli/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "MIT" }, - "node_modules/@storybook/cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.64.tgz", - "integrity": "sha512-0Un0NIT3R9mspm9G55XlVqmz/XvBfcACzD0ScgjWTvxfZqYwqsbUXExwokzzsgOcOKSjOHOWrh0H8GXqPN9FhQ==", + "node_modules/@types/ms": { + "version": "0.7.34", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "18.19.54", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.54.tgz", + "integrity": "sha512-+BRgt0G5gYjTvdLac9sIeE0iZcJxi4Jc4PV5EUzqi+88jmQLr+fRZdv2tCTV7IHKSGxM6SaLoOXQWWUiLUItMw==", + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "undici-types": "~5.26.4" } }, - "node_modules/@storybook/codemod": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.1.8.tgz", - "integrity": "sha512-hW9kQTgYN7GjLzjG624Bym1SfWfxQrHE2snIgbwRD9mO+jc/J6qjrR7Z42hV60LypqZ/FcZvBRq/1F247tNq9g==", + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.24.4", - "@babel/preset-env": "^7.24.4", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@types/cross-spawn": "^6.0.2", - "cross-spawn": "^7.0.3", - "globby": "^14.0.1", - "jscodeshift": "^0.15.1", - "lodash": "^4.17.21", - "prettier": "^3.1.1", - "recast": "^0.23.5", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/node": "*", + "form-data": "^4.0.0" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", + "node_modules/@types/offscreencanvas": { + "version": "2019.7.3", + "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz", + "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==", + "license": "MIT" + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/pbf": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.5.tgz", + "integrity": "sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==", + "license": "MIT" + }, + "node_modules/@types/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==", "dev": true, - "dependencies": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.9.16", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz", + "integrity": "sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==", + "dev": true, + "license": "MIT" }, - "node_modules/@storybook/codemod/node_modules/@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "17.0.83", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.83.tgz", + "integrity": "sha512-l0m4ArKJvmFtR4e8UmKrj1pB4tUgOhJITf+mADyF/p69Ts1YAR/E+G9XEM0mHXKVRa1dQNHseyyDNzeuAXfXQw==", + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/prop-types": "*", + "@types/scheduler": "^0.16", + "csstype": "^3.0.2" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", + "node_modules/@types/react-dom": { + "version": "17.0.25", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.25.tgz", + "integrity": "sha512-urx7A7UxkZQmThYA4So0NelOVjx3V4rNFVJwp0WZlbIK5eM4rNJDiN3R/E9ix0MBh6kAEojk/9YL+Te6D9zHNA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/react": "^17" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", - "dev": true, + "node_modules/@types/react-transition-group": { + "version": "4.4.11", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz", + "integrity": "sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==", + "license": "MIT", "dependencies": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/react": "*" } }, - "node_modules/@storybook/codemod/node_modules/@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", + "node_modules/@types/resolve": { + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", + "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "license": "MIT" + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", + "license": "MIT" + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/semver-utils": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@types/semver-utils/-/semver-utils-1.1.3.tgz", + "integrity": "sha512-T+YwkslhsM+CeuhYUxyAjWm7mJ5am/K10UX40RuA6k6Lc7eGtq8iY2xOzy7Vq0GOqhl/xZl5l2FwURZMTPTUww==", + "dev": true, + "license": "MIT" }, - "node_modules/@storybook/codemod/node_modules/@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/@storybook/codemod/node_modules/globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, + "license": "MIT", "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" } }, - "node_modules/@storybook/codemod/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/supercluster": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.3.tgz", + "integrity": "sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" } }, - "node_modules/@storybook/codemod/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/warning": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", + "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/@storybook/core-client": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.6.19.tgz", - "integrity": "sha512-F0V9nzcEnj6DIpnw2ilrxsV4d9ibyyQS+Wi2uQtXy+wCQQm9PeBVqrOywjXAY2F9pcoftXOaepfhp8jrxX4MXw==", + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/preview-api": "7.6.19" + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-client/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@storybook/core-client/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "@storybook/global": "^5.0.0" + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-client/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dev": true, + "license": "MIT", "dependencies": { - "ts-dedent": "^2.0.0" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@storybook/core-client/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-client/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@storybook/core-events": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.64.tgz", - "integrity": "sha512-0Oge2XkDJLvczxE80tIhJVY9dbaQUWdSp1mdzPSrO2k/IOly6v8Kfjp3AhRFBylDgOF3jvSS4kikT8PhAsZvlQ==", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-server": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.1.8.tgz", - "integrity": "sha512-v2V7FC/y/lrKPxcseIwPavjdCCDHphpj+A23Jmp822tqYn+I4nYRvE74QKyn5dfLrdn52nz8KrUFwjhuacj10Q==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, + "license": "MIT", "dependencies": { - "@aw-web-design/x-default-browser": "1.4.126", - "@babel/core": "^7.24.4", - "@babel/parser": "^7.24.4", - "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "8.1.8", - "@storybook/channels": "8.1.8", - "@storybook/core-common": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/csf": "^0.1.7", - "@storybook/csf-tools": "8.1.8", - "@storybook/docs-mdx": "3.1.0-next.0", - "@storybook/global": "^5.0.0", - "@storybook/manager": "8.1.8", - "@storybook/manager-api": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/preview-api": "8.1.8", - "@storybook/telemetry": "8.1.8", - "@storybook/types": "8.1.8", - "@types/detect-port": "^1.3.0", - "@types/diff": "^5.0.9", - "@types/node": "^18.0.0", - "@types/pretty-hrtime": "^1.0.0", - "@types/semver": "^7.3.4", - "better-opn": "^3.0.2", - "chalk": "^4.1.0", - "cli-table3": "^0.6.1", - "compression": "^1.7.4", - "detect-port": "^1.3.0", - "diff": "^5.2.0", - "express": "^4.17.3", - "fs-extra": "^11.1.0", - "globby": "^14.0.1", - "lodash": "^4.17.21", - "open": "^8.4.0", - "pretty-hrtime": "^1.0.3", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4", - "util-deprecate": "^1.0.2", - "watchpack": "^2.2.0", - "ws": "^8.2.3" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, "engines": { - "node": ">=12" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, "engines": { - "node": ">=12" + "node": ">=8.0.0" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "license": "BSD-2-Clause", "engines": { - "node": ">=12" + "node": ">=4.0" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, "engines": { - "node": ">=12" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } + "license": "ISC" }, - "node_modules/@storybook/core-server/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], + "node_modules/@vitejs/plugin-react": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz", + "integrity": "sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.12", + "@babel/plugin-transform-react-jsx-self": "^7.18.6", + "@babel/plugin-transform-react-jsx-source": "^7.19.6", + "magic-string": "^0.27.0", + "react-refresh": "^0.14.0" + }, "engines": { - "node": ">=12" + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.1.0-beta.0" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], + "node_modules/@vitejs/plugin-react/node_modules/magic-string": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", + "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, "engines": { "node": ">=12" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@vitest/expect": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.29.8.tgz", + "integrity": "sha512-xlcVXn5I5oTq6NiZSY3ykyWixBxr5mG8HYtjvpgg6KaqHm0mvhX18xuwl5YGxIRNt/A5jidd7CWcNHrSvgaQqQ==", + "license": "MIT", + "dependencies": { + "@vitest/spy": "0.29.8", + "@vitest/utils": "0.29.8", + "chai": "^4.3.7" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@vitest/expect/node_modules/@vitest/utils": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.8.tgz", + "integrity": "sha512-qGzuf3vrTbnoY+RjjVVIBYfuWMjn3UMUqyQtdGNZ6ZIIyte7B37exj6LaVkrZiUTvzSadVvO/tJm8AEgbGCBPg==", + "license": "MIT", + "dependencies": { + "cli-truncate": "^3.1.0", + "diff": "^5.1.0", + "loupe": "^2.3.6", + "pretty-format": "^27.5.1" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@vitest/expect/node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@vitest/runner": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.29.8.tgz", + "integrity": "sha512-FzdhnRDwEr/A3Oo1jtIk/B952BBvP32n1ObMEb23oEJNO+qO5cBet6M2XWIDQmA7BDKGKvmhUf2naXyp/2JEwQ==", + "license": "MIT", + "dependencies": { + "@vitest/utils": "0.29.8", + "p-limit": "^4.0.0", + "pathe": "^1.1.0" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@vitest/runner/node_modules/@vitest/utils": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.8.tgz", + "integrity": "sha512-qGzuf3vrTbnoY+RjjVVIBYfuWMjn3UMUqyQtdGNZ6ZIIyte7B37exj6LaVkrZiUTvzSadVvO/tJm8AEgbGCBPg==", + "license": "MIT", + "dependencies": { + "cli-truncate": "^3.1.0", + "diff": "^5.1.0", + "loupe": "^2.3.6", + "pretty-format": "^27.5.1" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@vitest/runner/node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@vitest/runner/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.0.0" + }, "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@vitest/runner/node_modules/yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@vitest/spy": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.29.8.tgz", + "integrity": "sha512-VdjBe9w34vOMl5I5mYEzNX8inTxrZ+tYUVk9jxaZJmHFwmDFC/GV3KBFTA/JKswr3XHvZL+FE/yq5EVhb6pSAw==", + "license": "MIT", + "dependencies": { + "tinyspy": "^1.0.2" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], + "node_modules/@vitest/utils": { + "version": "0.34.7", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.34.7.tgz", + "integrity": "sha512-ziAavQLpCYS9sLOorGrFFKmy2gnfiNU0ZJ15TsMz/K92NAPS/rp9K4z6AJQQk5Y8adCy4Iwpxy7pQumQ/psnRg==", "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "diff-sequences": "^29.4.3", + "loupe": "^2.3.6", + "pretty-format": "^29.5.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], + "node_modules/@vitest/utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], + "node_modules/@vitest/utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" + "node_modules/@xstate/react": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@xstate/react/-/react-1.6.3.tgz", + "integrity": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==", + "license": "MIT", + "dependencies": { + "use-isomorphic-layout-effect": "^1.0.0", + "use-subscription": "^1.3.0" + }, + "peerDependencies": { + "@xstate/fsm": "^1.0.0", + "react": "^16.8.0 || ^17.0.0", + "xstate": "^4.11.0" + }, + "peerDependenciesMeta": { + "@xstate/fsm": { + "optional": true + }, + "xstate": { + "optional": true + } } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "license": "ISC" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/@storybook/core-server/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=12" + "node": ">=0.4.0" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "dependencies": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "MIT", + "engines": { + "node": ">=0.4.0" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "prettier": "^2 || ^3" + "debug": "4" }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - } + "engines": { + "node": ">= 6.0.0" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" + "humanize-ms": "^1.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">= 8.0.0" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/manager-api": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.1.8.tgz", - "integrity": "sha512-mVUGMp2Z0lnuIZL8wgb++Id1tGTBtaFtB89w89U/Y5Ii8UMv2tukNiDY37HTkkVIvRz0sm9bJa94GNDrUubnTw==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "8.1.8", - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/csf": "^0.1.7", - "@storybook/global": "^5.0.0", - "@storybook/icons": "^1.2.5", - "@storybook/router": "8.1.8", - "@storybook/theming": "8.1.8", - "@storybook/types": "8.1.8", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "store2": "^2.14.2", - "telejson": "^7.2.0", - "ts-dedent": "^2.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-server/node_modules/@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/preview-api": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.1.8.tgz", - "integrity": "sha512-O+QnMYA5WbNvWVYcnXtzKorSbM/68QHz3Jlcjr8pRw78G478XKUACTUob/XIfZ64HGLhs7MyCjC6clHptx5kpw==", + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", "dev": true, + "license": "ISC", "dependencies": { - "@storybook/channels": "8.1.8", - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/csf": "^0.1.7", - "@storybook/global": "^5.0.0", - "@storybook/types": "8.1.8", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "string-width": "^4.1.0" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/router": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.1.8.tgz", - "integrity": "sha512-7OzLdeCE+a8Ypk4Ne/2DU3s81GDNISnKIaFJ2DAuLSJbmF/LzvL39H/gyHXqmFqXWeSuCdBS0V37OEgejlZIAQ==", + "node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, - "dependencies": { - "@storybook/client-logger": "8.1.8", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "license": "MIT" }, - "node_modules/@storybook/core-server/node_modules/@storybook/theming": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.1.8.tgz", - "integrity": "sha512-QhRMSRpnWVD1IB5sTZXVI35ETSQdwGh4/g8gKlGol8MN2Behd7CFgFAj2UL4jpPgjhnioH0U4rwwLkRfDlkR6Q==", + "node_modules/ansi-align/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@storybook/client-logger": "8.1.8", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", + "node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/ansi-escapes": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", + "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "environment": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "color-convert": "^1.9.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/@storybook/core-server/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, + "license": "ISC", "dependencies": { - "color-name": "~1.1.4" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">=7.0.0" + "node": ">= 8" } }, - "node_modules/@storybook/core-server/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/app-root-dir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", + "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", + "dev": true, + "license": "MIT" }, - "node_modules/@storybook/core-server/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "node_modules/@storybook/core-server/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "license": "ISC" + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "deprecated": "This package is no longer supported.", "dev": true, + "license": "ISC", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/@storybook/core-server/node_modules/globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "node_modules/aria-hidden": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", + "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", "dev": true, + "license": "MIT", "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" + "tslib": "^2.0.0" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/@storybook/core-server/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dev": true, + "license": "Apache-2.0", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/@storybook/core-server/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/core-server/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } + "license": "MIT" }, - "node_modules/@storybook/core-server/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/core-server/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, "engines": { - "node": ">=14.16" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/core-server/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/csf": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.8.tgz", - "integrity": "sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==", - "dev": true, - "dependencies": { - "type-fest": "^2.19.0" - } - }, - "node_modules/@storybook/csf-plugin": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.6.19.tgz", - "integrity": "sha512-yUP0xfJyR8e6fmCgKoEt4c1EvslF8dZ8wtwVLE5hnC3kfs7xt8RVDiKLB/9NhYjY3mD/oOesX60HqRXDgJQHwA==", - "dev": true, - "dependencies": { - "@storybook/csf-tools": "7.6.19", - "unplugin": "^1.3.1" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/csf-tools": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.19.tgz", - "integrity": "sha512-8Vzia3cHhDdGHuS3XKXJReCRxmfRq3vmTm/Te9yKZnPSAsC58CCKcMh8FNEFJ44vxYF9itKTkRutjGs+DprKLQ==", + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/generator": "^7.23.0", - "@babel/parser": "^7.23.0", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "@storybook/csf": "^0.1.2", - "@storybook/types": "7.6.19", - "fs-extra": "^11.1.0", - "recast": "^0.23.1", - "ts-dedent": "^2.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">= 0.4" } }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, + "license": "MIT", "dependencies": { - "ts-dedent": "^2.0.0" + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/assert": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" } }, - "node_modules/@storybook/csf/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "license": "MIT", "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, - "node_modules/@storybook/docs-mdx": { - "version": "3.1.0-next.0", - "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-3.1.0-next.0.tgz", - "integrity": "sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==", - "dev": true + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/@storybook/docs-tools": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.6.19.tgz", - "integrity": "sha512-JuwV6wtm7Hb7Kb5ValChfxy4J7XngfrSQNpvwsDCSBNVcQUv2y843hvclpa26Ptfr/c7zpUX8r9FGSaMDy+2aQ==", + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/core-common": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/types": "7.6.19", - "@types/doctrine": "^0.0.3", - "assert": "^2.1.0", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" + "tslib": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=4" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "bin": { + "astring": "bin/astring" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], + "node_modules/axe-core": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.0.tgz", + "integrity": "sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "license": "MPL-2.0", "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "license": "Apache-2.0", "engines": { - "node": ">=12" + "node": ">= 0.4" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, "engines": { - "node": ">=12" + "node": ">=10", + "npm": ">=6" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base16": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", + "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, - "optional": true, - "os": [ - "netbsd" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } ], + "license": "MIT" + }, + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "open": "^8.0.4" + }, "engines": { - "node": ">=12" + "node": ">=12.0.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "license": "Unlicense", "engines": { - "node": ">=12" + "node": ">=0.6" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, "engines": { - "node": ">=12" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/@storybook/docs-tools/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" + "safer-buffer": ">= 2.1.2 < 3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/body-scroll-lock": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz", + "integrity": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==", + "license": "MIT" + }, + "node_modules/boxen": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz", + "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "ansi-align": "^3.0.1", + "camelcase": "^7.0.1", + "chalk": "^5.2.0", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.1.0" + }, + "engines": { + "node": ">=14.16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/core-common": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.19.tgz", - "integrity": "sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==", - "dev": true, - "dependencies": { - "@storybook/core-events": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.18.0", - "esbuild-register": "^3.5.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", + "node_modules/boxen/node_modules/camelcase": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", + "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", "dev": true, - "dependencies": { - "ts-dedent": "^2.0.0" + "license": "MIT", + "engines": { + "node": ">=14.16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", + "node_modules/boxen/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", + "node_modules/boxen/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/docs-tools/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@storybook/docs-tools/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/docs-tools/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, + "node_modules/broadcast-channel": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz", + "integrity": "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "@babel/runtime": "^7.7.2", + "detect-node": "^2.1.0", + "js-sha3": "0.8.0", + "microseconds": "0.2.0", + "nano-time": "1.0.0", + "oblivious-set": "1.0.0", + "rimraf": "3.0.2", + "unload": "2.2.0" } }, - "node_modules/@storybook/docs-tools/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/browser-assert": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", + "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", + "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "caniuse-lite": "^1.0.30001663", + "electron-to-chromium": "^1.5.28", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" }, - "engines": { - "node": ">=10" + "bin": { + "browserslist": "cli.js" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/@storybook/docs-tools/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "node-int64": "^0.4.0" } }, - "node_modules/@storybook/docs-tools/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@storybook/docs-tools/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, + "node_modules/buf-compare": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz", + "integrity": "sha512-Bvx4xH00qweepGc43xFvMs5BKASXTbHaHm6+kDYIK9p/4iFwjATQkmPKHQSgJZzKbAymhztRbXUf1Nqhzl73/Q==", + "license": "MIT", "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" + "node": ">=0.10.0" } }, - "node_modules/@storybook/docs-tools/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/@storybook/docs-tools/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/@storybook/docs-tools/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, + "license": "MIT", "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@storybook/docs-tools/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.8" } }, - "node_modules/@storybook/docs-tools/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/bytewise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz", + "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==", + "license": "MIT", + "dependencies": { + "bytewise-core": "^1.2.2", + "typewise": "^1.0.3" } }, - "node_modules/@storybook/docs-tools/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, + "node_modules/bytewise-core": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz", + "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "typewise-core": "^1.2" } }, - "node_modules/@storybook/global": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", - "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", - "dev": true - }, - "node_modules/@storybook/icons": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-1.2.9.tgz", - "integrity": "sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==", - "dev": true, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "license": "MIT", "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "node": ">=8" } }, - "node_modules/@storybook/instrumenter": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.0-beta.64.tgz", - "integrity": "sha512-LzgWfWfPMs/Vqpzg+P60UTpU52LkMhj2FORqAkqHlrh+H4vejXYHHA9dUgRTO6uHFLKWNGy6oHz9xhpiSefZBw==", + "node_modules/cacache": { + "version": "17.1.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz", + "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==", "dev": true, + "license": "ISC", "dependencies": { - "@storybook/channels": "7.0.0-beta.64", - "@storybook/client-logger": "7.0.0-beta.64", - "@storybook/core-events": "7.0.0-beta.64", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.64" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/manager": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.1.8.tgz", - "integrity": "sha512-3d1qAIzx9TQslolwZSRvlgZ78bxL3RtesUq1NYtC/nDQ7M8Yb+X3taIk8iE/AXa2wlJ8dQ4vU5grLl/oWQeTJg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@storybook/mdx2-csf": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", - "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", - "dev": true - }, - "node_modules/@storybook/postinstall": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.6.19.tgz", - "integrity": "sha512-s6p1vpgMfn+QGDfCK2YNdyyWKidUgb3nGicB81FANRyzYqGB//QlJlghEc2LKCIQbGIZQiwP3l8PdZQmczEJRw==", + "node_modules/cacache/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@storybook/preview": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.6.19.tgz", - "integrity": "sha512-VqRPua2koOQTOteB+VvuKNXFYQ7IDEopaPpj9Nx+3kom+bqp0hWdAysWcm6CtKN2GGzBQm+5PvGibMNdawsaVg==", + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "MIT", + "engines": { + "node": ">=14.16" } }, - "node_modules/@storybook/preview-api": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.0-beta.64.tgz", - "integrity": "sha512-yT30gbaojm5YalpqwuvP1w0DuRKu7ys0Vb9GqVYMtvOboZE1lENoHoF+5H/aB81O50uCsXlvy/lcTttfWFdMVA==", + "node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channel-postmessage": "7.0.0-beta.64", - "@storybook/channels": "7.0.0-beta.64", - "@storybook/client-logger": "7.0.0-beta.64", - "@storybook/core-events": "7.0.0-beta.64", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.0-beta.64", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "slash": "^3.0.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=14.16" } }, - "node_modules/@storybook/react": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.6.19.tgz", - "integrity": "sha512-uKShAAp1/pRki1YnRjBveH/jAD3f8V0W2WP1LxTQqnKVFkl01mTbDZ/9ZIK6rVTSILUlmsk3fwsNyRbOKVgBGQ==", - "dev": true, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-client": "7.6.19", - "@storybook/docs-tools": "7.6.19", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.6.19", - "@storybook/react-dom-shim": "7.6.19", - "@storybook/types": "7.6.19", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^18.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.1.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "~2.19", - "util-deprecate": "^1.0.2" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" }, "engines": { - "node": ">=16.0.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "typescript": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@storybook/react-dom-shim": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.6.19.tgz", - "integrity": "sha512-tpt2AC1428d1gF4fetMkpkeFZ1WdDr1CLKoLbSInWQZ7i96nbnIMIA9raR/W8ai1bo55KSz9Bq5ytC/1Pac2qQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/@storybook/react-vite": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/react-vite/-/react-vite-7.6.19.tgz", - "integrity": "sha512-TqKQvWi53vE0KbWrlNq61cTLpzfQ5QMZv42YiwEUhM7ysSmrrg6WjgfEnvEyiAuY8yyaRspPF6Y8pYTKGHM8Nw==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "dependencies": { - "@joshwooding/vite-plugin-react-docgen-typescript": "0.3.0", - "@rollup/pluginutils": "^5.0.2", - "@storybook/builder-vite": "7.6.19", - "@storybook/react": "7.6.19", - "@vitejs/plugin-react": "^3.0.1", - "magic-string": "^0.30.0", - "react-docgen": "^7.0.0" - }, + "license": "MIT", "engines": { - "node": ">=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" + "node": ">=6" } }, - "node_modules/@storybook/react-vite/node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "node_modules/caniuse-lite": { + "version": "1.0.30001664", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001664.tgz", + "integrity": "sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/cartocolor": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", + "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "colorbrewer": "1.0.0" } }, - "node_modules/@storybook/react/node_modules/@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "dev": true, - "dependencies": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/@storybook/react/node_modules/@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, + "node_modules/chai": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.5.0.tgz", + "integrity": "sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==", + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=4" } }, - "node_modules/@storybook/react/node_modules/@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", "dependencies": { - "ts-dedent": "^2.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" } }, - "node_modules/@storybook/react/node_modules/@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/@storybook/react/node_modules/@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", "dev": true, - "dependencies": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/@storybook/react/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", - "dev": true + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/@storybook/react/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", "dev": true, - "bin": { - "acorn": "bin/acorn" + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "license": "MIT", + "dependencies": { + "get-func-name": "^2.0.2" }, "engines": { - "node": ">=0.4.0" + "node": "*" } }, - "node_modules/@storybook/react/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, "engines": { - "node": ">=12.20" + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/@storybook/telemetry": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.1.8.tgz", - "integrity": "sha512-Hr5QUVtn4BzQrqsv1dwlfKRj2yU8XRXmhwCbo0DFULpJasVsJB3VJXeuUOijwteWsGo2avKMZErwNZElJy2yXA==", + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, + "license": "ISC", "dependencies": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-common": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "chalk": "^4.1.0", - "detect-package-manager": "^2.0.1", - "fetch-retry": "^5.0.2", - "fs-extra": "^11.1.0", - "read-pkg-up": "^7.0.1" + "is-glob": "^4.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">= 6" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "license": "ISC", "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, - "optional": true, - "os": [ - "android" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], + "node_modules/citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "consola": "^3.2.3" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], + "node_modules/cli-boxes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], + "node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "license": "MIT", + "dependencies": { + "restore-cursor": "^5.0.0" + }, "engines": { - "node": ">=12" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/cli-table3": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, "engines": { - "node": ">=12" + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], + "node_modules/cli-table3/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], + "node_modules/cli-table3/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], + "node_modules/cli-table3/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], + "node_modules/cli-truncate": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", + "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^7.0.0" + }, "engines": { - "node": ">=12" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], + "node_modules/cli-truncate/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT" + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">=12" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, "engines": { "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, "engines": { "node": ">=12" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=0.8" } }, - "node_modules/@storybook/telemetry/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", - "dev": true, - "dependencies": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", "dependencies": { - "@storybook/global": "^5.0.0" + "color-name": "~1.1.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, - "dependencies": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "prettier": "^2 || ^3" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - } + "license": "ISC", + "bin": { + "color-support": "bin.js" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", + "node_modules/colorbrewer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", + "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==", + "license": [ + { + "type": "Apache-Style", + "url": "https://github.com/saikocat/colorbrewer/blob/master/LICENSE.txt" + } + ] + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" + "delayed-stream": "~1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">= 0.8" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "dev": true, - "dependencies": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - }, + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", + "node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "license": "MIT", + "engines": { + "node": ">=18" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==", + "license": "MIT" + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "ini": "^1.3.4", + "proto-list": "~1.2.1" } }, - "node_modules/@storybook/telemetry/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/configstore": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "color-convert": "^2.0.1" + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/yeoman/configstore?sponsor=1" } }, - "node_modules/@storybook/telemetry/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, + "license": "ISC", "dependencies": { - "balanced-match": "^1.0.0" + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "node_modules/@storybook/telemetry/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "license": "MIT" + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.8" } }, - "node_modules/@storybook/telemetry/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "license": "MIT", "engines": { - "node": ">=7.0.0" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/@storybook/telemetry/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true, + "license": "ISC" }, - "node_modules/@storybook/telemetry/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "node_modules/@storybook/telemetry/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 0.6" } }, - "node_modules/@storybook/telemetry/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/@storybook/telemetry/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" }, - "node_modules/@storybook/telemetry/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", "dev": true, + "license": "MIT", "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.6" } }, - "node_modules/@storybook/telemetry/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/@storybook/telemetry/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, + "node_modules/core-assert": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz", + "integrity": "sha512-IG97qShIP+nrJCXMCgkNZgH7jZQ4n8RpPyPeXX++T6avR/KhLhgLiHKoEn5Rc1KjfycSfA9DMa6m+4C4eguHhw==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "buf-compare": "^1.0.0", + "is-error": "^2.2.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/@storybook/testing-library": { - "version": "0.0.14-next.2", - "resolved": "https://registry.npmjs.org/@storybook/testing-library/-/testing-library-0.0.14-next.2.tgz", - "integrity": "sha512-i/SLSGm0o978ELok/SB4Qg1sZ3zr+KuuCkzyFqcCD0r/yf+bG35aQGkFqqxfSAdDxuQom0NO02FE+qys5Eapdg==", - "dev": true, - "dependencies": { - "@storybook/client-logger": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@storybook/instrumenter": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@testing-library/dom": "^8.3.0", - "@testing-library/user-event": "^13.2.1", - "ts-dedent": "^2.2.0" + "node": ">=0.10.0" } }, - "node_modules/@storybook/types": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.0-beta.64.tgz", - "integrity": "sha512-vSHG+9Fd8ibU39FU7n/307e2vj7WoEtWZTL759ND3nO9SvLxL1r+bfG7s+b7ju8nmySCu4f4HwtZDT766UFo/g==", + "node_modules/core-js-compat": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", "dev": true, + "license": "MIT", "dependencies": { - "@storybook/channels": "7.0.0-beta.64", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "browserslist": "^4.23.3" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://opencollective.com/core-js" } }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", - "dev": true, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "license": "MIT", "dependencies": { - "defer-to-connect": "^2.0.1" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" }, "engines": { - "node": ">=14.16" + "node": ">=10" } }, - "node_modules/@testing-library/dom": { - "version": "8.20.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", - "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "node_modules/create-storybook": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/create-storybook/-/create-storybook-8.3.4.tgz", + "integrity": "sha512-jlvKWfa9FkU90XurpfGxO/TxYgdp3YIvBipVmkx4B9zlcCElQdcQ7i8VZ/OrzAd7VUU1S9tii6uzWPsPwwLVBw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "^5.0.0", + "@types/semver": "^7.3.4", "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", - "pretty-format": "^27.0.2" + "commander": "^12.1.0", + "execa": "^5.0.0", + "fd-package-json": "^1.2.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "ora": "^5.4.1", + "prettier": "^3.1.1", + "prompts": "^2.4.0", + "semver": "^7.3.7", + "storybook": "8.3.4", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0" }, - "engines": { - "node": ">=12" + "bin": { + "create-storybook": "bin/index.cjs" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "node_modules/create-storybook/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -12739,11 +12328,12 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@testing-library/dom/node_modules/chalk": { + "node_modules/create-storybook/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -12755,38 +12345,22 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@testing-library/dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@testing-library/dom/node_modules/has-flag": { + "node_modules/create-storybook/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/@testing-library/dom/node_modules/supports-color": { + "node_modules/create-storybook/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -12794,1418 +12368,1189 @@ "node": ">=8" } }, - "node_modules/@testing-library/user-event": { - "version": "13.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", - "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", - "dev": true, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" + "node-fetch": "^2.6.12" } }, - "node_modules/@tufjs/models": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.0.tgz", - "integrity": "sha512-RRMu4uMxWnZlxaIBxahSb2IssFZiu188sndesZflWOe1cA/qUqtemSIoBWbuVKPvvdktapImWNnKpBcc+VrCQw==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "license": "MIT", "dependencies": { - "minimatch": "^6.1.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/@tufjs/models/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "node": ">= 8" } }, - "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-6.2.0.tgz", - "integrity": "sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==", + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "type-fest": "^1.0.1" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@turf/bbox": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz", - "integrity": "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==", - "dependencies": { - "@turf/helpers": "^6.5.0", - "@turf/meta": "^6.5.0" + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/turf" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@turf/bbox-polygon": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz", - "integrity": "sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==", - "dependencies": { - "@turf/helpers": "^6.5.0" - }, - "funding": { - "url": "https://opencollective.com/turf" - } + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" }, - "node_modules/@turf/boolean-clockwise": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", - "integrity": "sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA==", + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@turf/boolean-clockwise/node_modules/@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==" - }, - "node_modules/@turf/buffer": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.5.0.tgz", - "integrity": "sha512-qeX4N6+PPWbKqp1AVkBVWFerGjMYMUyencwfnkCesoznU6qvfugFHNAngNqIBVnJjZ5n8IFyOf+akcxnrt9sNg==", + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", "dependencies": { - "@turf/bbox": "^6.5.0", - "@turf/center": "^6.5.0", - "@turf/helpers": "^6.5.0", - "@turf/meta": "^6.5.0", - "@turf/projection": "^6.5.0", - "d3-geo": "1.7.1", - "turf-jsts": "*" + "internmap": "1 - 2" }, - "funding": { - "url": "https://opencollective.com/turf" + "engines": { + "node": ">=12" } }, - "node_modules/@turf/buffer/node_modules/d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - }, - "node_modules/@turf/buffer/node_modules/d3-geo": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.7.1.tgz", - "integrity": "sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==", - "dependencies": { - "d3-array": "1" + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@turf/center": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.5.0.tgz", - "integrity": "sha512-T8KtMTfSATWcAX088rEDKjyvQCBkUsLnK/Txb6/8WUXIeOZyHu42G7MkdkHRoHtwieLdduDdmPLFyTdG5/e7ZQ==", + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", "dependencies": { - "@turf/bbox": "^6.5.0", - "@turf/helpers": "^6.5.0" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" }, - "funding": { - "url": "https://opencollective.com/turf" + "engines": { + "node": ">=12" } }, - "node_modules/@turf/clone": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", - "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", "dependencies": { - "@turf/helpers": "^6.5.0" + "d3-path": "1 - 3" }, - "funding": { - "url": "https://opencollective.com/turf" - } - }, - "node_modules/@turf/helpers": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", - "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", - "funding": { - "url": "https://opencollective.com/turf" + "engines": { + "node": ">=12" } }, - "node_modules/@turf/invariant": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.2.0.tgz", - "integrity": "sha512-28RCBGvCYsajVkw2EydpzLdcYyhSA77LovuOvgCJplJWaNVyJYH6BOR3HR9w50MEkPqb/Vc/jdo6I6ermlRtQA==", - "dependencies": { - "@turf/helpers": "^5.1.5" + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@turf/invariant/node_modules/@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==" - }, - "node_modules/@turf/meta": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", - "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", "dependencies": { - "@turf/helpers": "^6.5.0" + "d3-array": "^3.2.0" }, - "funding": { - "url": "https://opencollective.com/turf" + "engines": { + "node": ">=12" } }, - "node_modules/@turf/projection": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.5.0.tgz", - "integrity": "sha512-/Pgh9mDvQWWu8HRxqpM+tKz8OzgauV+DiOcr3FCjD6ubDnrrmMJlsf6fFJmggw93mtVPrZRL6yyi9aYCQBOIvg==", + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "license": "ISC", "dependencies": { - "@turf/clone": "^6.5.0", - "@turf/helpers": "^6.5.0", - "@turf/meta": "^6.5.0" + "delaunator": "5" }, - "funding": { - "url": "https://opencollective.com/turf" + "engines": { + "node": ">=12" } }, - "node_modules/@turf/rewind": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", - "integrity": "sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw==", - "dependencies": { - "@turf/boolean-clockwise": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@turf/rewind/node_modules/@turf/clone": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", - "integrity": "sha512-//pITsQ8xUdcQ9pVb4JqXiSqG4dos5Q9N4sYFoWghX21tfOV2dhc5TGqYOhnHrQS7RiKQL1vQ48kIK34gQ5oRg==", + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", "dependencies": { - "@turf/helpers": "^5.1.5" + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@turf/rewind/node_modules/@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==" - }, - "node_modules/@turf/rewind/node_modules/@turf/meta": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.2.0.tgz", - "integrity": "sha512-ZjQ3Ii62X9FjnK4hhdsbT+64AYRpaI8XMBMcyftEOGSmPMUVnkbvuv3C9geuElAXfQU7Zk1oWGOcrGOD9zr78Q==", + "node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", "dependencies": { - "@turf/helpers": "^5.1.5" + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/acorn": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" + "node_modules/d3-dsv/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" } }, - "node_modules/@types/aria-query": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", - "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", - "dev": true + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } }, - "node_modules/@types/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", - "dev": true, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "license": "ISC", "dependencies": { - "@babel/types": "^7.0.0" + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/babel__traverse": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", - "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", - "dev": true, + "node_modules/d3-geo": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.7.1.tgz", + "integrity": "sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==", + "license": "BSD-3-Clause", "dependencies": { - "@babel/types": "^7.3.0" + "d3-array": "1" } }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, + "node_modules/d3-geo-projection": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz", + "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==", + "license": "ISC", "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "commander": "7", + "d3-array": "1 - 3", + "d3-geo": "1.12.0 - 3" + }, + "bin": { + "geo2svg": "bin/geo2svg.js", + "geograticule": "bin/geograticule.js", + "geoproject": "bin/geoproject.js", + "geoquantize": "bin/geoquantize.js", + "geostitch": "bin/geostitch.js" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/chai": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.4.tgz", - "integrity": "sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==" + "node_modules/d3-geo-projection/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } }, - "node_modules/@types/chai-subset": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.3.tgz", - "integrity": "sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==", + "node_modules/d3-geo-projection/node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", "dependencies": { - "@types/chai": "*" + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/clone/-/clone-2.1.1.tgz", - "integrity": "sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg==" + "node_modules/d3-geo/node_modules/d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==", + "license": "BSD-3-Clause" }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "dev": true, - "dependencies": { - "@types/node": "*" + "node_modules/d3-hexbin": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", + "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==", + "license": "BSD-3-Clause" + }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", - "dev": true, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", "dependencies": { - "@types/node": "*" + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/d3-array": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.0.4.tgz", - "integrity": "sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==", - "dev": true - }, - "node_modules/@types/d3-color": { + "node_modules/d3-path": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==", - "dev": true - }, - "node_modules/@types/d3-ease": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.0.tgz", - "integrity": "sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==", - "dev": true - }, - "node_modules/@types/d3-scale": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.3.tgz", - "integrity": "sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==", - "dev": true, - "dependencies": { - "@types/d3-time": "*" + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==", - "dev": true - }, - "node_modules/@types/d3-time": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.0.tgz", - "integrity": "sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==", - "dev": true - }, - "node_modules/@types/debug": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", - "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", - "dev": true, - "dependencies": { - "@types/ms": "*" + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/detect-port": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", - "integrity": "sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==", - "dev": true - }, - "node_modules/@types/diff": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/@types/diff/-/diff-5.2.1.tgz", - "integrity": "sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==", - "dev": true - }, - "node_modules/@types/doctrine": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", - "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", - "dev": true - }, - "node_modules/@types/ejs": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", - "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", - "dev": true - }, - "node_modules/@types/emscripten": { - "version": "1.39.13", - "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.13.tgz", - "integrity": "sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==", - "dev": true - }, - "node_modules/@types/escodegen": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", - "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", - "dev": true - }, - "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", - "dev": true, - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.33", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", - "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", - "dev": true, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/find-cache-dir": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", - "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", - "dev": true - }, - "node_modules/@types/geojson": { - "version": "7946.0.10", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", - "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" - }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, + "node_modules/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "license": "ISC", "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, - "dependencies": { - "@types/node": "*" + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/hammerjs": { - "version": "2.0.41", - "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz", - "integrity": "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==" - }, - "node_modules/@types/hast": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", - "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", - "dev": true, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", "dependencies": { - "@types/unist": "*" + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", - "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", - "dev": true - }, - "node_modules/@types/json-stable-stringify": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz", - "integrity": "sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/lodash": { - "version": "4.14.191", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz", - "integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==", - "dev": true - }, - "node_modules/@types/mapbox__point-geometry": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz", - "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==" - }, - "node_modules/@types/mapbox__vector-tile": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz", - "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==", + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", "dependencies": { - "@types/geojson": "*", - "@types/mapbox__point-geometry": "*", - "@types/pbf": "*" + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/mdast": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", - "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", - "dev": true, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", "dependencies": { - "@types/unist": "*" + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/mdx": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.3.tgz", - "integrity": "sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==", - "dev": true - }, - "node_modules/@types/mime": { + "node_modules/d3-timer": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", - "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", - "dev": true - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "node_modules/@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.14.6", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.6.tgz", - "integrity": "sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==" - }, - "node_modules/@types/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", - "dev": true, - "dependencies": { - "@types/node": "*", - "form-data": "^4.0.0" + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true - }, - "node_modules/@types/offscreencanvas": { - "version": "2019.7.1", - "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.1.tgz", - "integrity": "sha512-+HSrJgjBW77ALieQdMJvXhRZUIRN1597L+BKvsyeiIlHHERnqjcuOLyodK3auJ3Y3zRezNKtKAhuQWYJfEgFHQ==" - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "node_modules/@types/pbf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz", - "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==" - }, - "node_modules/@types/pretty-hrtime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", - "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==", - "dev": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "node_modules/@types/react": { - "version": "17.0.53", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.53.tgz", - "integrity": "sha512-1yIpQR2zdYu1Z/dc1OxC+MA6GR240u3gcnP4l6mvj/PJiVaqHsQPmWttsvHsfnhfPbU2FuGmo0wSITPygjBmsw==", + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" } }, - "node_modules/@types/react-dom": { - "version": "17.0.19", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.19.tgz", - "integrity": "sha512-PiYG40pnQRdPHnlf7tZnp0aQ6q9tspYr72vD61saO6zFCybLfMqwUCN0va1/P+86DXn18ZWeW30Bk7xlC5eEAQ==", - "dev": true, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", "dependencies": { - "@types/react": "^17" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/react-transition-group": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", - "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", + "node_modules/d3/node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", "dependencies": { - "@types/react": "*" + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/resolve": { - "version": "1.20.6", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", - "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", - "dev": true - }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - }, - "node_modules/@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true - }, - "node_modules/@types/serve-static": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", - "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", "dev": true, - "dependencies": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/supercluster": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.0.tgz", - "integrity": "sha512-6JapQ2GmEkH66r23BK49I+u6zczVDGTtiJEVvKDYZVSm/vepWaJuTq6BXzJ6I4agG5s8vA1KM7m/gXWDg03O4Q==", - "dependencies": { - "@types/geojson": "*" - } - }, - "node_modules/@types/unist": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", - "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", - "dev": true - }, - "node_modules/@types/uuid": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", - "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", - "dev": true - }, - "node_modules/@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + "license": "BSD-2-Clause" }, - "node_modules/@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, + "license": "MIT", "dependencies": { - "@types/yargs-parser": "*" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.55.0.tgz", - "integrity": "sha512-IZGc50rtbjk+xp5YQoJvmMPmJEYoC53SiKPXyqWfv15XoD2Y5Kju6zN0DwlmaGJp1Iw33JsWJcQ7nw0lGCGjVg==", + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, + "license": "MIT", "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.55.0", - "@typescript-eslint/type-utils": "5.55.0", - "@typescript-eslint/utils": "5.55.0", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@typescript-eslint/experimental-utils": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.55.0.tgz", - "integrity": "sha512-3ZqXIZhdGyGQAIIGATeMtg7prA6VlyxGtcy5hYIR/3qUqp3t18pWWUYhL9mpsDm7y8F9mr3ISMt83TiqCt7OPQ==", + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/utils": "5.55.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@typescript-eslint/parser": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.55.0.tgz", - "integrity": "sha512-ppvmeF7hvdhUUZWSd2EEWfzcFkjJzgNQzVST22nzg958CR+sphy8A6K7LXQZd6V75m1VKjp+J4g/PCEfSCmzhw==", - "dev": true, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "5.55.0", - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/typescript-estree": "5.55.0", - "debug": "^4.3.4" + "ms": "^2.1.3" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node": ">=6.0" }, "peerDependenciesMeta": { - "typescript": { + "supports-color": { "optional": true } } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.55.0.tgz", - "integrity": "sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw==", + "node_modules/deck.gl": { + "version": "8.9.36", + "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.9.36.tgz", + "integrity": "sha512-2LzolV1oNL4f5Q73JvgjsCCzwEMBaJWo1gTT1OWUE2l/7wMuXSdFfYRI45ewH8YaB+vh90d1G8N7kfmSysKabA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.0.0", + "@deck.gl/aggregation-layers": "8.9.36", + "@deck.gl/carto": "8.9.36", + "@deck.gl/core": "8.9.36", + "@deck.gl/extensions": "8.9.36", + "@deck.gl/geo-layers": "8.9.36", + "@deck.gl/google-maps": "8.9.36", + "@deck.gl/json": "8.9.36", + "@deck.gl/layers": "8.9.36", + "@deck.gl/mapbox": "8.9.36", + "@deck.gl/mesh-layers": "8.9.36", + "@deck.gl/react": "8.9.36" + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/visitor-keys": "5.55.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "character-entities": "^2.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.55.0.tgz", - "integrity": "sha512-ObqxBgHIXj8rBNm0yh8oORFrICcJuZPZTqtAFh0oZQyr5DnAHZWfyw54RwpEEH+fD8suZaI0YxvWu5tYE/WswA==", + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "5.55.0", - "@typescript-eslint/utils": "5.55.0", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "mimic-response": "^3.1.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@typescript-eslint/types": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.55.0.tgz", - "integrity": "sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug==", + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "dev": true, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.55.0.tgz", - "integrity": "sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ==", - "dev": true, + "node_modules/deep-eql": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz", + "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==", + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/visitor-keys": "5.55.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "type-detect": "^4.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=6" } }, - "node_modules/@typescript-eslint/utils": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.55.0.tgz", - "integrity": "sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==", + "node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", "dev": true, + "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.55.0", - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/typescript-estree": "5.55.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.55.0.tgz", - "integrity": "sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw==", + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.55.0", - "eslint-visitor-keys": "^3.3.0" - }, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=4.0.0" } }, - "node_modules/@vitejs/plugin-react": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz", - "integrity": "sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true, + "license": "MIT" + }, + "node_modules/deep-strict-equal": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz", + "integrity": "sha512-3daSWyvZ/zwJvuMGlzG1O+Ow0YSadGfb3jsh9xoCutv2tWyB9dA4YvR9L9/fSdDZa2dByYQe+TqapSGUrjnkoA==", + "license": "MIT", "dependencies": { - "@babel/core": "^7.20.12", - "@babel/plugin-transform-react-jsx-self": "^7.18.6", - "@babel/plugin-transform-react-jsx-source": "^7.19.6", - "magic-string": "^0.27.0", - "react-refresh": "^0.14.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" + "core-assert": "^0.2.0" }, - "peerDependencies": { - "vite": "^4.1.0-beta.0" - } - }, - "node_modules/@vitejs/plugin-react/node_modules/react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/@vitest/expect": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.29.3.tgz", - "integrity": "sha512-z/0JqBqqrdtrT/wzxNrWC76EpkOHdl+SvuNGxWulLaoluygntYyG5wJul5u/rQs5875zfFz/F+JaDf90SkLUIg==", - "dependencies": { - "@vitest/spy": "0.29.3", - "@vitest/utils": "0.29.3", - "chai": "^4.3.7" - } - }, - "node_modules/@vitest/runner": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.29.3.tgz", - "integrity": "sha512-XLi8ctbvOWhUWmuvBUSIBf8POEDH4zCh6bOuVxm/KGfARpgmVF1ku+vVNvyq85va+7qXxtl+MFmzyXQ2xzhAvw==", - "dependencies": { - "@vitest/utils": "0.29.3", - "p-limit": "^4.0.0", - "pathe": "^1.1.0" - } - }, - "node_modules/@vitest/runner/node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "license": "MIT", "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "clone": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@vitest/runner/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@vitest/spy": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.29.3.tgz", - "integrity": "sha512-LLpCb1oOCOZcBm0/Oxbr1DQTuKLRBsSIHyLYof7z4QVE8/v8NcZKdORjMUq645fcfX55+nLXwU/1AQ+c2rND+w==", - "dependencies": { - "tinyspy": "^1.0.2" - } - }, - "node_modules/@vitest/utils": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.3.tgz", - "integrity": "sha512-hg4Ff8AM1GtUnLpUJlNMxrf9f4lZr/xRJjh3uJ0QFP+vjaW82HAxKrmeBmLnhc8Os2eRf+f+VBu4ts7TafPPkA==", - "dependencies": { - "cli-truncate": "^3.1.0", - "diff": "^5.1.0", - "loupe": "^2.3.6", - "pretty-format": "^27.5.1" + "node": ">=10" } }, - "node_modules/@xstate/react": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@xstate/react/-/react-1.6.3.tgz", - "integrity": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", "dependencies": { - "use-isomorphic-layout-effect": "^1.0.0", - "use-subscription": "^1.3.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, - "peerDependencies": { - "@xstate/fsm": "^1.0.0", - "react": "^16.8.0 || ^17.0.0", - "xstate": "^4.11.0" + "engines": { + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "@xstate/fsm": { - "optional": true - }, - "xstate": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@yarnpkg/esbuild-plugin-pnp": { - "version": "3.0.0-rc.15", - "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", - "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, - "dependencies": { - "tslib": "^2.4.0" - }, + "license": "MIT", "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "esbuild": ">=0.10.0" + "node": ">=8" } }, - "node_modules/@yarnpkg/esbuild-plugin-pnp/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - }, - "node_modules/@yarnpkg/fslib": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz", - "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, + "license": "MIT", "dependencies": { - "@yarnpkg/libzip": "^2.3.0", - "tslib": "^1.13.0" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0" - } - }, - "node_modules/@yarnpkg/libzip": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz", - "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==", - "dev": true, - "dependencies": { - "@types/emscripten": "^1.39.6", - "tslib": "^1.13.0" + "node": ">= 0.4" }, - "engines": { - "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", "dev": true, + "license": "MIT" + }, + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "license": "ISC", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" + "robust-predicates": "^3.0.2" } }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "bin": { - "acorn": "bin/acorn" - }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", "engines": { "node": ">=0.4.0" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "license": "MIT" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=0.4.0" + "node": ">=6" } }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 10.0.0" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "license": "MIT" + }, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", "dev": true, - "dependencies": { - "debug": "4" - }, + "license": "MIT" + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "license": "BSD-3-Clause", "engines": { - "node": ">= 6.0.0" + "node": ">=0.3.1" } }, - "node_modules/agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, - "dependencies": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" - }, + "license": "MIT", "engines": { - "node": ">= 8.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "license": "MIT", "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "esutils": "^2.0.2" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "dev": true, + "license": "MIT" + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", "dependencies": { - "string-width": "^4.1.0" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" } }, - "node_modules/ansi-escapes": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", - "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", + "node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", "dev": true, + "license": "MIT", "dependencies": { - "type-fest": "^1.0.2" + "is-obj": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", "dev": true, + "license": "BSD-2-Clause", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://dotenvx.com" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/dotenv-expand": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "dev": true, + "license": "BSD-2-Clause", "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, + "node_modules/draco3d": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.5.tgz", + "integrity": "sha512-JVuNV0EJzD3LBYhGyIXJLeBID/EVtmFO1ZNhAYflTgiMiAJlbhXQmRRda/azjc8MRVMHh0gqGhiqHUo5dIXM8Q==", + "license": "Apache-2.0" + }, + "node_modules/earcut": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", + "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==", + "license": "ISC" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.30", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.30.tgz", + "integrity": "sha512-sXI35EBN4lYxzc/pIGorlymYNzDBOqkSlVRe6MkgBsW/hW1tpC/HDJ2fjG7XnjakzfLEuvdmux0Mjs6jHq4UOA==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dev": true, + "license": "MIT", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">= 8" + "node": ">=10.13.0" } }, - "node_modules/app-root-dir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", - "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", - "dev": true - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/aria-hidden": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", - "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, - "dependencies": { - "tslib": "^2.0.0" - }, + "license": "BSD-2-Clause", "engines": { - "node": ">=10" + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/aria-hidden/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "node_modules/envinfo": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - }, + "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", "dev": true, - "engines": { - "node": ">=8" + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" } }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" }, "engines": { "node": ">= 0.4" @@ -14214,160 +13559,130 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "node_modules/es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", "dev": true, + "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - }, - "node_modules/assert": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", - "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-nan": "^1.3.2", - "object-is": "^1.1.5", - "object.assign": "^4.1.4", - "util": "^0.12.5" - } + "license": "MIT" }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "engines": { - "node": "*" - } - }, - "node_modules/assign-symbols": { + "node_modules/es-object-atoms": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/ast-types": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", - "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, + "license": "MIT", "dependencies": { - "tslib": "^2.0.1" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">= 0.4" } }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true - }, - "node_modules/ast-types/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - }, - "node_modules/astring": { - "version": "1.8.4", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.4.tgz", - "integrity": "sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==", + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, - "bin": { - "astring": "bin/astring" + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" } }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, "engines": { "node": ">= 0.4" }, @@ -14375,603 +13690,747 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/axe-core": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", - "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", + "node_modules/esbuild": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz", + "integrity": "sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==", "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, "engines": { - "node": ">=4" + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.23.1", + "@esbuild/android-arm": "0.23.1", + "@esbuild/android-arm64": "0.23.1", + "@esbuild/android-x64": "0.23.1", + "@esbuild/darwin-arm64": "0.23.1", + "@esbuild/darwin-x64": "0.23.1", + "@esbuild/freebsd-arm64": "0.23.1", + "@esbuild/freebsd-x64": "0.23.1", + "@esbuild/linux-arm": "0.23.1", + "@esbuild/linux-arm64": "0.23.1", + "@esbuild/linux-ia32": "0.23.1", + "@esbuild/linux-loong64": "0.23.1", + "@esbuild/linux-mips64el": "0.23.1", + "@esbuild/linux-ppc64": "0.23.1", + "@esbuild/linux-riscv64": "0.23.1", + "@esbuild/linux-s390x": "0.23.1", + "@esbuild/linux-x64": "0.23.1", + "@esbuild/netbsd-x64": "0.23.1", + "@esbuild/openbsd-arm64": "0.23.1", + "@esbuild/openbsd-x64": "0.23.1", + "@esbuild/sunos-x64": "0.23.1", + "@esbuild/win32-arm64": "0.23.1", + "@esbuild/win32-ia32": "0.23.1", + "@esbuild/win32-x64": "0.23.1" } }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "node_modules/esbuild-register": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.6.0.tgz", + "integrity": "sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==", "dev": true, + "license": "MIT", "dependencies": { - "deep-equal": "^2.0.5" + "debug": "^4.3.4" + }, + "peerDependencies": { + "esbuild": ">=0.12 <1" } }, - "node_modules/babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", - "dev": true, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "node_modules/escape-goat": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", + "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" + "license": "MIT", + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=10", - "npm": ">=6" + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, "bin": { - "semver": "bin/semver.js" + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "eslint": ">=7.0.0" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "eslint": "^8.0.0" } }, - "node_modules/babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", - "dev": true + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } }, - "node_modules/babel-preset-react-app": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", - "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.16.0", - "@babel/plugin-proposal-class-properties": "^7.16.0", - "@babel/plugin-proposal-decorators": "^7.16.4", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", - "@babel/plugin-proposal-numeric-separator": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.0", - "@babel/plugin-proposal-private-methods": "^7.16.0", - "@babel/plugin-transform-flow-strip-types": "^7.16.0", - "@babel/plugin-transform-react-display-name": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.4", - "@babel/preset-env": "^7.16.4", - "@babel/preset-react": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.3", - "babel-plugin-macros": "^3.1.0", - "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + "ms": "^2.1.1" } }, - "node_modules/bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.3.tgz", + "integrity": "sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==", "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.3.5", + "enhanced-resolve": "^5.15.0", + "eslint-module-utils": "^2.8.1", + "fast-glob": "^3.3.2", + "get-tsconfig": "^4.7.5", + "is-bun-module": "^1.0.2", + "is-glob": "^4.0.3" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base16": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", - "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "node_modules/eslint-module-utils": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", + "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true } - ] + } }, - "node_modules/better-opn": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", - "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "license": "MIT", "dependencies": { - "open": "^8.0.4" - }, - "engines": { - "node": ">=12.0.0" + "ms": "^2.1.1" } }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, "engines": { - "node": ">=0.6" + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "node_modules/eslint-plugin-import": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz", + "integrity": "sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==", "dev": true, + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.8", + "array.prototype.findlastindex": "^1.2.5", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.9.0", + "hasown": "^2.0.2", + "is-core-module": "^2.15.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.0", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, "engines": { - "node": ">=8" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "license": "MIT", "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "ms": "^2.1.1" } }, - "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=0.10.0" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", "dev": true, + "license": "MIT", "dependencies": { - "side-channel": "^1.0.4" + "@typescript-eslint/experimental-utils": "^5.0.0" }, "engines": { - "node": ">=0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } } }, - "node_modules/body-scroll-lock": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz", - "integrity": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.0.tgz", + "integrity": "sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==", "dev": true, + "license": "MIT", "dependencies": { - "big-integer": "^1.6.44" + "aria-query": "~5.1.3", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.19", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.0" }, "engines": { - "node": ">= 5.10.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/eslint-plugin-react": { + "version": "7.37.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.0.tgz", + "integrity": "sha512-IHBePmfWH5lKhJnJ7WB1V+v/GolbB0rjS8XYVCSQCZKaQCAUhMoVoOEn1Ef8Z8Wf0a7l8KTJvuZg5/e4qrZ6nA==", "dev": true, + "license": "MIT", "dependencies": { - "fill-range": "^7.1.1" + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.19", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" } }, - "node_modules/broadcast-channel": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz", - "integrity": "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==", - "dependencies": { - "@babel/runtime": "^7.7.2", - "detect-node": "^2.1.0", - "js-sha3": "0.8.0", - "microseconds": "0.2.0", - "nano-time": "1.0.0", - "oblivious-set": "1.0.0", - "rimraf": "3.0.2", - "unload": "2.2.0" + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, - "node_modules/browser-assert": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", - "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", - "dev": true - }, - "node_modules/browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "pako": "~0.2.0" + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { - "browserslist": "cli.js" + "resolve": "bin/resolve" }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "dependencies": { - "node-int64": "^0.4.0" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/buf-compare": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz", - "integrity": "sha512-Bvx4xH00qweepGc43xFvMs5BKASXTbHaHm6+kDYIK9p/4iFwjATQkmPKHQSgJZzKbAymhztRbXUf1Nqhzl73/Q==", + "node_modules/eslint-plugin-storybook": { + "version": "0.6.15", + "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.15.tgz", + "integrity": "sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/csf": "^0.0.1", + "@typescript-eslint/utils": "^5.45.0", + "requireindex": "^1.1.0", + "ts-dedent": "^2.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "12.x || 14.x || >= 16" + }, + "peerDependencies": { + "eslint": ">=6" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", + "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "license": "MIT", "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "lodash": "^4.17.15" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "devOptional": true - }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", "dev": true, + "license": "MIT", "dependencies": { - "semver": "^7.0.0" + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" } }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, "engines": { - "node": ">= 0.8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/bytewise": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz", - "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==", - "dependencies": { - "bytewise-core": "^1.2.2", - "typewise": "^1.0.3" + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/bytewise-core": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz", - "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==", + "node_modules/eslint-watch": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/eslint-watch/-/eslint-watch-8.0.0.tgz", + "integrity": "sha512-piws/uE4gkZdz1pwkaEFx+kSWvoGnVX8IegFRrE1NUvlXjtU0rg7KhT1QDj/NzhAwbiLEfdRHWz5q738R4zDKA==", + "dev": true, + "license": "MIT", "dependencies": { - "typewise-core": "^1.2" - } - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "chokidar": "^3.5.2", + "debug": "^4.3.2", + "execa": "^5.1.1", + "keypress": "^0.2.1", + "lodash.debounce": "^4.0.8", + "lodash.isempty": "^4.4.0", + "lodash.isequal": "^4.5.0", + "lodash.kebabcase": "^4.1.1", + "lodash.unionwith": "^4.6.0", + "optionator": "^0.9.1" + }, + "bin": { + "esw": "bin/esw" + }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": ">=8 <9.0.0" } }, - "node_modules/cacache": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.4.tgz", - "integrity": "sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^8.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/cacache/node_modules/brace-expansion": { + "node_modules/eslint/node_modules/argparse": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } + "license": "Python-2.0" }, - "node_modules/cacache/node_modules/fs-minipass": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.1.tgz", - "integrity": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { - "minipass": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/cacache/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cacache/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/cacache/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "argparse": "^2.0.1" }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", - "dev": true, - "engines": { - "node": ">=14.16" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/cacheable-request": { - "version": "10.2.8", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.8.tgz", - "integrity": "sha512-IDVO5MJ4LItE6HKFQTqT2ocAQsisOoCTUDu1ddCmnhyiwFQjXNPp4081Xj23N4tO+AFEFNzGuNEf/c8Gwwt15A==", + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=14.16" + "node": ">=8" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -14979,1433 +14438,1479 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001633", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001633.tgz", - "integrity": "sha512-6sT0yf/z5jqf8tISAgpJDrmwOpLsrpnyCdD/lOZKvKkkJK4Dn0X5i7KF7THEZhOq+30bmhwBlNEaqPUiHiKtZg==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/cartocolor": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", - "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", + "license": "BSD-2-Clause", "dependencies": { - "colorbrewer": "1.0.0" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "node_modules/espree/node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/chai": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", - "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", - "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.2", - "deep-eql": "^4.1.2", - "get-func-name": "^2.0.0", - "loupe": "^2.3.1", - "pathval": "^1.1.1", - "type-detect": "^4.0.5" + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { "node": ">=4" } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "estraverse": "^5.1.0" }, "engines": { - "node": ">=4" + "node": ">=0.10" } }, - "node_modules/character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" } }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" } }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "node_modules/estree-util-attach-comments": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", + "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "node_modules/estree-util-build-jsx": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", + "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-walker": "^3.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/check-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", - "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", - "engines": { - "node": "*" + "node_modules/estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "node_modules/estree-util-to-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", + "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", "dev": true, + "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" }, "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "node_modules/estree-util-to-js/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "node_modules/estree-util-visit": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", + "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/citty": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", - "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, + "license": "MIT", "dependencies": { - "consola": "^3.2.3" + "@types/estree": "^1.0.0" } }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "dev": true, - "dependencies": { - "restore-cursor": "^4.0.0" - }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "license": "MIT", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "MIT" }, - "node_modules/cli-table": { - "version": "0.3.11", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", - "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, + "license": "MIT", "dependencies": { - "colors": "1.0.3" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">= 0.2.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/cli-table3": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", - "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", "dev": true, + "license": "Apache-2.0" + }, + "node_modules/express": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", + "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", + "dev": true, + "license": "MIT", "dependencies": { - "string-width": "^4.2.0" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.10", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "node": ">= 0.10.0" } }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "ms": "2.0.0" } }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/expression-eval": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", + "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", + "deprecated": "The expression-eval npm package is no longer maintained. The package was originally published as part of a now-completed personal project, and I do not have incentives to continue maintenance.", + "license": "MIT", + "dependencies": { + "jsep": "^0.3.0" } }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true, + "license": "MIT" }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "is-extendable": "^0.1.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=8.6.0" } }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", - "engines": { - "node": ">=0.8" - } + "node_modules/fast-json-patch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz", + "integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==", + "license": "MIT" }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-memoize": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz", + "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==", "dev": true, + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", + "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "strnum": "^1.0.5" }, - "engines": { - "node": ">=6" + "bin": { + "fxparser": "src/cli/cli.js" } }, - "node_modules/clone-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, + "license": "ISC", "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" + "reusify": "^1.0.4" } }, - "node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", - "engines": { - "node": ">=6" + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "license": "BSD-3-Clause", "dependencies": { - "color-name": "1.1.3" + "fbjs": "^3.0.0" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "license": "MIT", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" } }, - "node_modules/colorbrewer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", - "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "license": "MIT" }, - "node_modules/colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "node_modules/fd-package-json": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fd-package-json/-/fd-package-json-1.2.0.tgz", + "integrity": "sha512-45LSPmWf+gC5tdCQMNH4s9Sr00bIkiD9aN7dc5hqkrEw1geRYyDQS1v1oMHAW3ysfxfndqGsrDREHHjNNbKUfA==", "dev": true, - "engines": { - "node": ">=0.1.90" + "license": "MIT", + "dependencies": { + "walk-up-path": "^3.0.1" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "license": "MIT", "dependencies": { - "delayed-stream": "~1.0.0" + "flat-cache": "^3.0.4" }, "engines": { - "node": ">= 0.8" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "node_modules/file-system-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", + "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "license": "MIT", + "dependencies": { + "fs-extra": "11.1.1", + "ramda": "0.29.0" } }, - "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "node_modules/file-system-cache/node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, + "license": "MIT", "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=14.14" } }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "license": "MIT", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dev": true, + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, "engines": { "node": ">= 0.8" } }, - "node_modules/compression/node_modules/debug": { + "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, - "node_modules/compression/node_modules/ms": { + "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/config-chain/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "license": "MIT" }, - "node_modules/configstore": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", - "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, + "license": "MIT", "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/configstore/node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, + "license": "MIT", "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true, + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "node": ">=0.8" + "node": ">=8" } }, - "node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, "engines": { - "node": "^14.18.0 || >=16.10.0" + "node": ">=8" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "license": "MIT", "dependencies": { - "safe-buffer": "5.2.1" + "p-try": "^2.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.1" + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/convert-source-map/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "license": "MIT" }, - "node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/core-assert": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz", - "integrity": "sha512-IG97qShIP+nrJCXMCgkNZgH7jZQ4n8RpPyPeXX++T6avR/KhLhgLiHKoEn5Rc1KjfycSfA9DMa6m+4C4eguHhw==", + "license": "MIT", "dependencies": { - "buf-compare": "^1.0.0", - "is-error": "^2.2.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, + "license": "MIT", "dependencies": { - "browserslist": "^4.23.0" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" }, - "node_modules/cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, + "node_modules/flow-parser": { + "version": "0.247.1", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.247.1.tgz", + "integrity": "sha512-DHwcm06fWbn2Z6uFD3NaBZ5lMOoABIQ4asrVA80IWvYjjT5WdbghkUOL1wIcbLcagnFTdCZYOlSNnKNp/xnRZQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=0.4.0" } }, - "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "node_modules/flux": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.4.tgz", + "integrity": "sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==", + "license": "BSD-3-Clause", "dependencies": { - "node-fetch": "2.6.7" + "fbemitter": "^3.0.0", + "fbjs": "^3.0.1" + }, + "peerDependencies": { + "react": "^15.0.2 || ^16.0.0 || ^17.0.0" } }, - "node_modules/cross-fetch/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "node_modules/focus-trap": { + "version": "6.9.4", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-6.9.4.tgz", + "integrity": "sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==", + "license": "MIT", "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "tabbable": "^5.3.3" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, + "license": "MIT", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" + "is-callable": "^1.1.3" } }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "dev": true, + "license": "ISC", "dependencies": { - "type-fest": "^1.0.1" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">=12" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, + "license": "ISC", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/csscolorparser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", - "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs=", - "optional": true, - "peer": true - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/d3": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", - "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", - "license": "ISC", - "dependencies": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - }, - "engines": { - "node": ">=12" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/d3-array": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", - "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "license": "MIT", "dependencies": { - "internmap": "1 - 2" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/d3-axis": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", - "license": "ISC", + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">= 14.17" } }, - "node_modules/d3-brush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" - }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/d3-chord": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "node_modules/fp-and-or": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/fp-and-or/-/fp-and-or-0.1.4.tgz", + "integrity": "sha512-+yRYRhpnFPWXSly/6V4Lw9IfOV26uu30kynGJ03PW+MnjOEQe45RZ141QcS0aJehYBYA50GfCDnsRbFJdhssRw==", + "dev": true, "license": "ISC", - "dependencies": { - "d3-path": "1 - 3" - }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/d3-contour": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", - "license": "ISC", + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "license": "MIT", "dependencies": { - "d3-array": "^3.2.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, - "node_modules/d3-delaunay": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz", - "integrity": "sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==", + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "dev": true, + "license": "ISC", "dependencies": { - "delaunator": "5" + "minipass": "^7.0.3" }, "engines": { - "node": ">=12" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/d3-dispatch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", - "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=12" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/d3-drag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - }, - "engines": { - "node": ">=12" + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-dsv": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", - "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "license": "MIT", "dependencies": { - "commander": "2", - "iconv-lite": "0.4", - "rw": "1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, - "bin": { - "csv2json": "bin/dsv2json", - "csv2tsv": "bin/dsv2dsv", - "dsv2dsv": "bin/dsv2dsv", - "dsv2json": "bin/dsv2json", - "json2csv": "bin/json2dsv", - "json2dsv": "bin/json2dsv", - "json2tsv": "bin/json2dsv", - "tsv2csv": "bin/dsv2dsv", - "tsv2json": "bin/dsv2json" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "engines": { - "node": ">=12" + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "deprecated": "This package is no longer supported.", + "dev": true, "license": "ISC", "dependencies": { - "d3-dsv": "1 - 3" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" }, "engines": { - "node": ">=12" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/d3-force": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", - "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-quadtree": "1 - 3", - "d3-timer": "1 - 3" - }, - "engines": { - "node": ">=12" - } + "node_modules/gauge/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" }, - "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "node_modules/gauge/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/d3-geo": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz", - "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==", + "node_modules/gauge/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", "dependencies": { - "d3-array": "2.5.0 - 3" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/d3-geo-projection": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz", - "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==", - "dependencies": { - "commander": "7", - "d3-array": "1 - 3", - "d3-geo": "1.12.0 - 3" - }, - "bin": { - "geo2svg": "bin/geo2svg.js", - "geograticule": "bin/geograticule.js", - "geoproject": "bin/geoproject.js", - "geoquantize": "bin/geoquantize.js", - "geostitch": "bin/geostitch.js" - }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6.9.0" } }, - "node_modules/d3-geo-projection/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "node_modules/geojson-vt": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", + "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==", + "license": "ISC" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", "engines": { - "node": ">= 10" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/d3-hexbin": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", - "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==" + "node_modules/get-east-asian-width": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", + "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/d3-hierarchy": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "license": "MIT", "engines": { - "node": ">=12" + "node": "*" } }, - "node_modules/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", "dependencies": { - "d3-color": "1 - 3" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/d3-polygon": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", - "license": "ISC", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8.0.0" } }, - "node_modules/d3-quadtree": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", - "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "node_modules/get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", - "license": "ISC", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "license": "MIT", "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", + "node_modules/get-tsconfig": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", + "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", + "dev": true, + "license": "MIT", "dependencies": { - "d3-color": "1 - 3", - "d3-interpolate": "1 - 3" + "resolve-pkg-maps": "^1.0.0" }, - "engines": { - "node": ">=12" + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" } }, - "node_modules/d3-selection": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", - "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", - "license": "ISC", + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "node_modules/giget": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", + "dev": true, + "license": "MIT", "dependencies": { - "d3-path": "^3.1.0" + "citty": "^0.1.6", + "consola": "^3.2.3", + "defu": "^6.1.4", + "node-fetch-native": "^1.6.3", + "nypm": "^0.3.8", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "tar": "^6.2.0" }, - "engines": { - "node": ">=12" + "bin": { + "giget": "dist/cli.mjs" } }, - "node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "node_modules/github-slugger": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", + "dev": true, + "license": "ISC" + }, + "node_modules/gl-matrix": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", + "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==", + "license": "MIT" + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", "dependencies": { - "d3-array": "2 - 3" + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, - "engines": { - "node": ">=12" + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", "dependencies": { - "d3-time": "1 - 3" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=12" + "node": ">=10.13.0" } }, - "node_modules/d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", - "engines": { - "node": ">=12" + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/d3-transition": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, "license": "ISC", "dependencies": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "d3-selection": "2 - 3" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/d3-zoom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", - "license": "ISC", + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "dev": true, + "license": "MIT", "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" + "ini": "2.0.0" }, "engines": { - "node": ">=12" - } - }, - "node_modules/d3/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "license": "MIT", - "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3/node_modules/d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true, "license": "ISC", - "dependencies": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - }, - "bin": { - "csv2json": "bin/dsv2json.js", - "csv2tsv": "bin/dsv2dsv.js", - "dsv2dsv": "bin/dsv2dsv.js", - "dsv2json": "bin/dsv2json.js", - "json2csv": "bin/json2dsv.js", - "json2dsv": "bin/json2dsv.js", - "json2tsv": "bin/json2dsv.js", - "tsv2csv": "bin/dsv2dsv.js", - "tsv2json": "bin/dsv2json.js" - }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/d3/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" + "isexe": "^2.0.0" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "bin": { + "which": "bin/which" } }, - "node_modules/deck.gl": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.9.28.tgz", - "integrity": "sha512-IZrc/qkIuBC5G2F+tQ3i/n3C5eMSsThTgAtn8/pIY3i1Zqzr+KVXrcbdTCqeuk82ELFhbVrN69T27GJFPL/Ckw==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "@deck.gl/aggregation-layers": "8.9.28", - "@deck.gl/carto": "8.9.28", - "@deck.gl/core": "8.9.28", - "@deck.gl/extensions": "8.9.28", - "@deck.gl/geo-layers": "8.9.28", - "@deck.gl/google-maps": "8.9.28", - "@deck.gl/json": "8.9.28", - "@deck.gl/layers": "8.9.28", - "@deck.gl/mapbox": "8.9.28", - "@deck.gl/mesh-layers": "8.9.28", - "@deck.gl/react": "8.9.28" + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, + "license": "MIT", "dependencies": { - "character-entities": "^2.0.0" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "node_modules/globby": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", "dev": true, + "license": "MIT", "dependencies": { - "mimic-response": "^3.1.0" + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "node_modules/globby/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", - "dependencies": { - "type-detect": "^4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "node_modules/globby/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "license": "MIT", + "engines": { + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "license": "MIT" }, - "node_modules/deep-strict-equal": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz", - "integrity": "sha512-3daSWyvZ/zwJvuMGlzG1O+Ow0YSadGfb3jsh9xoCutv2tWyB9dA4YvR9L9/fSdDZa2dByYQe+TqapSGUrjnkoA==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", "dependencies": { - "core-assert": "^0.2.0" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "node_modules/got": { + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", "dev": true, + "license": "MIT", "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "ISC" }, - "node_modules/defaults/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true, + "license": "MIT" + }, + "node_modules/h3-js": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", + "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==", + "license": "Apache-2.0", "engines": { - "node": ">=0.8" + "node": ">=4", + "npm": ">=3", + "yarn": ">=1.3.0" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true, + "node_modules/hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", + "integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==", + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=0.8.0" } }, - "node_modules/define-data-property": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz", - "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "node_modules/hamt_plus": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", + "integrity": "sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==", + "license": "MIT" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" }, "engines": { - "node": ">= 0.4" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "es-define-property": "^1.0.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -16413,485 +15918,564 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/defu": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", - "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", - "dev": true - }, - "node_modules/delaunator": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz", - "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==", - "dependencies": { - "robust-predicates": "^3.0.0" + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, "engines": { - "node": ">=0.4.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true, + "license": "ISC" }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "node_modules/has-yarn": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", + "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/hast-util-to-estree": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz", + "integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==", "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "estree-util-attach-comments": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdxjs-esm": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.1", + "unist-util-position": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", "dev": true, - "engines": { - "node": ">=8" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", - "dev": true + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, - "node_modules/detect-package-manager": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", - "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", + "node_modules/hosted-git-info": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz", + "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==", "dev": true, + "license": "ISC", "dependencies": { - "execa": "^5.1.1" + "lru-cache": "^7.5.1" }, "engines": { - "node": ">=12" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/detect-port": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", - "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "dependencies": { - "address": "^1.0.1", - "debug": "4" - }, - "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" - }, + "license": "ISC", "engines": { - "node": ">= 4.0.0" + "node": ">=12" } }, - "node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.3.1" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, + "license": "MIT", "dependencies": { - "path-type": "^4.0.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, + "license": "MIT", "dependencies": { - "esutils": "^2.0.2" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=6.0.0" + "node": ">= 6" } }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" } }, - "node_modules/dot-prop": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", - "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, + "license": "MIT", "dependencies": { - "is-obj": "^2.0.0" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 6" } }, - "node_modules/dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=12" + "node": ">=10.17.0" } }, - "node_modules/dotenv-expand": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", - "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" } }, - "node_modules/draco3d": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.5.tgz", - "integrity": "sha512-JVuNV0EJzD3LBYhGyIXJLeBID/EVtmFO1ZNhAYflTgiMiAJlbhXQmRRda/azjc8MRVMHh0gqGhiqHUo5dIXM8Q==" - }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true, + "license": "MIT", + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/duplexify/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "license": "MIT", + "engines": { + "node": ">= 4" } }, - "node_modules/duplexify/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/duplexify/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/ignore-walk": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz", + "integrity": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==", "dev": true, + "license": "ISC", "dependencies": { - "safe-buffer": "~5.1.0" + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/earcut": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", - "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true + "node_modules/ignore-walk/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "node_modules/ejs": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, + "license": "ISC", "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.802", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.802.tgz", - "integrity": "sha512-TnTMUATbgNdPXVSHsxvNVSG0uEd6cSZsANjm8c9HbvflZVVn1yTRcmVXYT1Ma95/ssB/Dcd30AHweH2TE+dNpA==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, + "node_modules/image-size": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", + "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", + "license": "MIT", + "bin": { + "image-size": "bin/image-size.js" + }, "engines": { - "node": ">= 0.8" + "node": ">=6.9.0" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "optional": true, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, + "license": "MIT", "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.8.19" } }, - "node_modules/envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, - "bin": { - "envinfo": "dist/cli.js" - }, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true, + "license": "ISC" }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", "dependencies": { - "is-arrayish": "^0.2.1" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/es-abstract": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz", - "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, + "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.1", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.11" + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "loose-envify": "^1.0.0" } }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", - "dev": true - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", "dev": true, + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" }, "engines": { - "node": ">= 0.4" + "node": ">= 12" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/ip-address/node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", "dev": true, + "license": "MIT", "dependencies": { - "has": "^1.0.3" + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, + "license": "MIT", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -16900,4250 +16484,4627 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esbuild": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.14.tgz", - "integrity": "sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==", + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, - "hasInstallScript": true, - "peer": true, - "bin": { - "esbuild": "bin/esbuild" + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, - "optionalDependencies": { - "@esbuild/android-arm": "0.16.14", - "@esbuild/android-arm64": "0.16.14", - "@esbuild/android-x64": "0.16.14", - "@esbuild/darwin-arm64": "0.16.14", - "@esbuild/darwin-x64": "0.16.14", - "@esbuild/freebsd-arm64": "0.16.14", - "@esbuild/freebsd-x64": "0.16.14", - "@esbuild/linux-arm": "0.16.14", - "@esbuild/linux-arm64": "0.16.14", - "@esbuild/linux-ia32": "0.16.14", - "@esbuild/linux-loong64": "0.16.14", - "@esbuild/linux-mips64el": "0.16.14", - "@esbuild/linux-ppc64": "0.16.14", - "@esbuild/linux-riscv64": "0.16.14", - "@esbuild/linux-s390x": "0.16.14", - "@esbuild/linux-x64": "0.16.14", - "@esbuild/netbsd-x64": "0.16.14", - "@esbuild/openbsd-x64": "0.16.14", - "@esbuild/sunos-x64": "0.16.14", - "@esbuild/win32-arm64": "0.16.14", - "@esbuild/win32-ia32": "0.16.14", - "@esbuild/win32-x64": "0.16.14" - } - }, - "node_modules/esbuild-plugin-alias": { + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", - "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==", - "dev": true + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" }, - "node_modules/esbuild-register": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.5.0.tgz", - "integrity": "sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==", + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", "dev": true, + "license": "MIT", "dependencies": { - "debug": "^4.3.4" + "has-tostringtag": "^1.0.0" }, - "peerDependencies": { - "esbuild": ">=0.12 <1" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escape-goat": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", - "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=8" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, + "license": "MIT", "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=6.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "source-map": "~0.6.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", "dev": true, - "optional": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/eslint": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", - "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", + "node_modules/is-bun-module": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-1.2.1.tgz", + "integrity": "sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==", "dev": true, + "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.49.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, + "semver": "^7.6.3" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-config-prettier": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", - "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, + "license": "MIT", + "dependencies": { + "ci-info": "^3.2.0" + }, "bin": { - "eslint-config-prettier": "bin/cli.js" + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" }, - "peerDependencies": { - "eslint": ">=7.0.0" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-config-react-app": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", - "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.16.0", - "@babel/eslint-parser": "^7.16.3", - "@rushstack/eslint-patch": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.5.0", - "@typescript-eslint/parser": "^5.5.0", - "babel-preset-react-app": "^10.0.1", - "confusing-browser-globals": "^1.0.11", - "eslint-plugin-flowtype": "^8.0.3", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jest": "^25.3.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.27.1", - "eslint-plugin-react-hooks": "^4.3.0", - "eslint-plugin-testing-library": "^5.0.1" + "is-typed-array": "^1.1.13" }, "engines": { - "node": ">=14.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^8.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, + "license": "MIT", "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", - "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" + "license": "MIT", + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": ">=8" }, "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, + "node_modules/is-error": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", + "integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==", + "license": "MIT" + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-flowtype": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", - "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", "dev": true, + "license": "MIT", "dependencies": { - "lodash": "^4.17.21", - "string-natural-compare": "^3.0.1" + "call-bind": "^1.0.2" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "license": "MIT", "engines": { - "node": ">=12.0.0" + "node": ">=12" }, - "peerDependencies": { - "@babel/plugin-syntax-flow": "^7.14.5", - "@babel/plugin-transform-react-jsx": "^7.14.9", - "eslint": "^8.1.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-import": { - "version": "2.28.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", - "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, + "license": "MIT", "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.findlastindex": "^1.2.2", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.8.0", - "has": "^1.0.3", - "is-core-module": "^2.13.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.6", - "object.groupby": "^1.0.0", - "object.values": "^1.1.6", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { - "esutils": "^2.0.2" + "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/eslint-plugin-jest": { - "version": "25.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", - "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/experimental-utils": "^5.0.0" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node": ">=10" }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, - "dependencies": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, + "license": "MIT", "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": ">=8" } }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true, + "license": "MIT" }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "dev": true, + "license": "MIT", "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=4" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/is-npm": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", + "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", "dev": true, - "dependencies": { - "esutils": "^2.0.2" + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=0.12.0" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, + "license": "MIT", "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "has-tostringtag": "^1.0.0" }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/eslint-plugin-storybook": { - "version": "0.6.14", - "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.14.tgz", - "integrity": "sha512-IeYigPur/MvESNDo43Z+Z5UvlcEVnt0dDZmnw1odi9X2Th1R3bpGyOZsHXb9bp1pFecOpRUuoMG5xdID2TwwOg==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, - "dependencies": { - "@storybook/csf": "^0.0.1", - "@typescript-eslint/utils": "^5.45.0", - "requireindex": "^1.1.0", - "ts-dedent": "^2.2.0" - }, + "license": "MIT", "engines": { - "node": "12.x || 14.x || >= 16" - }, - "peerDependencies": { - "eslint": ">=6" + "node": ">=8" } }, - "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", - "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "dev": true, - "dependencies": { - "lodash": "^4.17.15" + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-testing-library": { - "version": "5.10.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz", - "integrity": "sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==", - "dev": true, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", "dependencies": { - "@typescript-eslint/utils": "^5.43.0" + "isobject": "^3.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0", - "npm": ">=6" - }, - "peerDependencies": { - "eslint": "^7.5.0 || ^8.0.0" + "node": ">=0.10.0" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/is-reference": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", + "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", "dev": true, + "license": "MIT", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" + "@types/estree": "*" } }, - "node_modules/eslint-scope/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=4.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-watch": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/eslint-watch/-/eslint-watch-8.0.0.tgz", - "integrity": "sha512-piws/uE4gkZdz1pwkaEFx+kSWvoGnVX8IegFRrE1NUvlXjtU0rg7KhT1QDj/NzhAwbiLEfdRHWz5q738R4zDKA==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, + "license": "MIT", "dependencies": { - "chokidar": "^3.5.2", - "debug": "^4.3.2", - "execa": "^5.1.1", - "keypress": "^0.2.1", - "lodash.debounce": "^4.0.8", - "lodash.isempty": "^4.4.0", - "lodash.isequal": "^4.5.0", - "lodash.kebabcase": "^4.1.1", - "lodash.unionwith": "^4.6.0", - "optionator": "^0.9.1" - }, - "bin": { - "esw": "bin/esw" + "call-bind": "^1.0.7" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": ">=8 <9.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, + "license": "MIT", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "which-typed-array": "^1.1.14" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } + "license": "MIT" }, - "node_modules/eslint/node_modules/globals": { - "version": "13.19.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "call-bind": "^1.0.2" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, + "license": "MIT", "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "is-docker": "^2.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=8" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/is-yarn-global": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz", + "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, + "license": "BSD-3-Clause", "engines": { - "node": ">=0.10" + "node": ">=8" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "estraverse": "^5.2.0" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { - "node": ">=4.0" + "node": ">=8" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "engines": { - "node": ">=4.0" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/estree-util-attach-comments": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", - "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" } }, - "node_modules/estree-util-build-jsx": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", - "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-walker": "^3.0.0" + "@isaacs/cliui": "^8.0.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/estree-util-build-jsx/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/estree-util-to-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", - "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", + "node_modules/jest-mock/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "astring": "^1.8.0", - "source-map": "^0.7.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/estree-util-to-js/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/jest-mock/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", "dev": true, - "engines": { - "node": ">= 8" + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/estree-util-visit": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", - "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", + "node_modules/jest-mock/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^2.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/jest-mock/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/jest-mock/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/eventemitter3": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", - "dev": true - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/jest-mock/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=8" } }, - "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, + "license": "MIT", "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.2", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "ms": "2.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/express/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { - "side-channel": "^1.0.4" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/expression-eval": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", - "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", - "deprecated": "The expression-eval npm package is no longer maintained. The package was originally published as part of a now-completed personal project, and I do not have incentives to continue maintenance.", - "dependencies": { - "jsep": "^0.3.0" + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=8.6.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/fast-json-patch": { - "version": "3.0.0-1", - "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.0.0-1.tgz", - "integrity": "sha512-6pdFb07cknxvPzCeLsFHStEy+MysPJPgZQ9LbQ/2O67unQF93SNqfdSqnPPl71YMHX+AD8gbl7iuoGFzHEdDuw==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "dev": true, + "license": "MIT" }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==", + "license": "MIT" }, - "node_modules/fast-memoize": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz", - "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==", - "dev": true + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" }, - "node_modules/fast-xml-parser": { - "version": "4.2.7", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz", - "integrity": "sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==", - "funding": [ - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - }, - { - "type": "github", - "url": "https://github.com/sponsors/NaturalIntelligence" - } - ], + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", "dependencies": { - "strnum": "^1.0.5" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, "bin": { - "fxparser": "src/cli/cli.js" + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } + "license": "MIT" }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "node_modules/jscodeshift": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", + "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", "dev": true, + "license": "MIT", "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", - "dependencies": { - "fbjs": "^3.0.0" + "@babel/core": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/preset-flow": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@babel/register": "^7.22.15", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.23.3", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + }, + "peerDependenciesMeta": { + "@babel/preset-env": { + "optional": true + } } }, - "node_modules/fbjs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", - "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", + "node_modules/jscodeshift/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", "dependencies": { - "cross-fetch": "^3.1.5", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.30" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - }, - "node_modules/fetch-retry": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", - "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", - "dev": true - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/jscodeshift/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { - "flat-cache": "^3.0.4" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/file-system-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", - "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", + "node_modules/jscodeshift/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "fs-extra": "11.1.1", - "ramda": "0.29.0" + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/file-system-cache/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/jscodeshift/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=14.14" + "node": ">=8" } }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "node_modules/jscodeshift/node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", "dev": true, + "license": "ISC", "dependencies": { - "minimatch": "^5.0.1" + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" } }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/jsdoc-type-pratt-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", + "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "license": "MIT", + "engines": { + "node": ">=12.0.0" } }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, + "node_modules/jsep": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", + "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==", + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 6.0.0" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } + "license": "MIT" }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", "dev": true, + "license": "MIT", "dependencies": { - "ms": "2.0.0" + "jju": "^1.1.0" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "license": "MIT", "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/find-cache-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/find-cache-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/json-stringify-pretty-compact": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz", + "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "p-locate": "^4.1.0" + "license": "MIT", + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/find-cache-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, + "license": "MIT", "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" + "universalify": "^2.0.0" }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "license": "Public Domain", "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/find-cache-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/jsonlines": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz", + "integrity": "sha512-ekDrAGso79Cvf+dtm+mL8OBI2bmAOt3gssYs833De/C9NmIpWDWyUO4zPgB5x2/OhY366dkhgfPMYfwZF7yOZA==", "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, + "license": "MIT" + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ], + "license": "MIT" + }, + "node_modules/jsts": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/jsts/-/jsts-2.7.1.tgz", + "integrity": "sha512-x2wSZHEBK20CY+Wy+BPE7MrFQHW6sIsdaGUMEqmGAio+3gFzQaBYPwLRonUfQf9Ak8pBieqj9tUofX1+WtAEIg==", + "license": "(EDL-1.0 OR EPL-1.0)", "engines": { - "node": ">=8" + "node": ">= 12" } }, - "node_modules/find-cache-dir/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, + "license": "MIT", "dependencies": { - "find-up": "^4.0.0" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + "node_modules/kdbush": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", + "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==", + "license": "ISC" }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/keypress": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz", + "integrity": "sha512-HjorDJFNhnM4SicvaUXac0X77NiskggxJdesG72+O5zBKpSqKFCrqmndKVqpu3pFqkla0St6uGk8Ju0sCurrmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, + "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, + "license": "MIT", "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=6" } }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true + "node_modules/ktx-parse": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", + "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==", + "license": "MIT" }, - "node_modules/flow-parser": { - "version": "0.237.2", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.237.2.tgz", - "integrity": "sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==", + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", "dev": true, - "engines": { - "node": ">=0.4.0" - } + "license": "CC0-1.0" }, - "node_modules/flux": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.3.tgz", - "integrity": "sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==", + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", "dependencies": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.1" + "language-subtag-registry": "^0.3.20" }, - "peerDependencies": { - "react": "^15.0.2 || ^16.0.0 || ^17.0.0" + "engines": { + "node": ">=0.10" } }, - "node_modules/focus-trap": { - "version": "6.9.4", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-6.9.4.tgz", - "integrity": "sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==", + "node_modules/latest-version": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", + "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", + "dev": true, + "license": "MIT", "dependencies": { - "tabbable": "^5.3.3" + "package-json": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/lazy-universal-dotenv": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", + "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "is-callable": "^1.1.3" + "app-root-dir": "^1.0.2", + "dotenv": "^16.0.0", + "dotenv-expand": "^10.0.0" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/foreground-child": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.0.tgz", - "integrity": "sha512-CrWQNaEl1/6WeZoarcM9LHupTo3RpZO2Pdk1vktwzPiQTsJnAKJmm3TACKeG5UZbWDfaH2AbvYxzP96y0MT7fA==", + "node_modules/lerc": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lerc/-/lerc-4.0.4.tgz", + "integrity": "sha512-nHZH+ffiGPkgKUQtiZrljGUGV2GddvPcVTV5E345ZFncbKz+/rBIjDPrSxkiqW0EAtg1Jw7qAgRdaCwV+95Fow==", + "license": "Apache-2.0" + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 0.8.0" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", "dev": true, + "license": "MIT", "engines": { "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/antonk52" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/lint-staged": { + "version": "15.2.10", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.10.tgz", + "integrity": "sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==", "dev": true, + "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "chalk": "~5.3.0", + "commander": "~12.1.0", + "debug": "~4.3.6", + "execa": "~8.0.1", + "lilconfig": "~3.1.2", + "listr2": "~8.2.4", + "micromatch": "~4.0.8", + "pidtree": "~0.6.0", + "string-argv": "~0.3.2", + "yaml": "~2.5.0" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">= 6" + "node": ">=18.12.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 14.17" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "node_modules/lint-staged/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/fp-and-or": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/fp-and-or/-/fp-and-or-0.1.3.tgz", - "integrity": "sha512-wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g==", + "node_modules/lint-staged/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "node_modules/lint-staged/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">= 0.6" + "node": ">=16.17.0" } }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, + "license": "MIT", "engines": { - "node": ">=14.14" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/lint-staged/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, + "license": "MIT", "engines": { - "node": ">= 8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/lint-staged/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/lint-staged/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, + "license": "ISC", "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/geojson-vt": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", - "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", - "engines": { - "node": "*" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "license": "MIT", + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "node_modules/lint-staged/node_modules/yaml": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.1.tgz", + "integrity": "sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==", "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, "engines": { - "node": ">=6" + "node": ">= 14" } }, - "node_modules/get-npm-tarball-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.1.0.tgz", - "integrity": "sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==", + "node_modules/listr2": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.2.4.tgz", + "integrity": "sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==", "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^4.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" + }, "engines": { - "node": ">=12.17" + "node": ">=18.0.0" } }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "node_modules/listr2/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/listr2/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/listr2/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/listr2/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/get-tsconfig": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.1.tgz", - "integrity": "sha512-sLtd6Bcwbi9IrAow/raCOTE9pmhvo5ksQo5v2lApUGJMzja64MUYhBp0G6X1S+f7IrBPn1HP+XkS2w2meoGcjg==", + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", "dev": true, + "license": "MIT", "dependencies": { - "resolve-pkg-maps": "^1.0.0" + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" }, "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "node_modules/local-pkg": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/giget": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", - "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { - "citty": "^0.1.6", - "consola": "^3.2.3", - "defu": "^6.1.4", - "node-fetch-native": "^1.6.3", - "nypm": "^0.3.8", - "ohash": "^1.1.3", - "pathe": "^1.1.2", - "tar": "^6.2.0" + "p-locate": "^5.0.0" }, - "bin": { - "giget": "dist/cli.mjs" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/github-slugger": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", - "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", - "dev": true + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" }, - "node_modules/gl-matrix": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", - "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" + "node_modules/lodash.curry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", + "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==", + "license": "MIT" }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.flow": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", + "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==", + "license": "MIT" + }, + "node_modules/lodash.isempty": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz", + "integrity": "sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.unionwith": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.unionwith/-/lodash.unionwith-4.6.0.tgz", + "integrity": "sha512-Hk8otPCkVM4UxRoft3E5dAREwExyXci6iVPCibHIEiG7neb9KAdWHYS75MYpVTvxDrnpp7WCJNZ84vAk7j7tVA==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "engines": { - "node": "*" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/glob-promise": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz", - "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==", + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { - "@types/glob": "^7.1.3" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "type": "individual", - "url": "https://github.com/sponsors/ahmadnassri" - }, - "peerDependencies": { - "glob": "^7.1.6" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "ini": "2.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "node_modules/log-update/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/global-prefix/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "node_modules/log-update/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", + "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", + "dev": true, + "license": "MIT", "dependencies": { - "isexe": "^2.0.0" + "get-east-asian-width": "^1.0.0" }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "engines": { - "node": ">=4" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", + "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", "dev": true, + "license": "MIT", "dependencies": { - "define-properties": "^1.1.3" + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "node_modules/log-update/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", "dev": true, + "license": "MIT", "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/log-update/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3" + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/got": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.6.0.tgz", - "integrity": "sha512-WTcaQ963xV97MN3x0/CbAriXFZcXCfgxVp91I+Ze6pawQOa7SgzwSx2zIJJsX+kTajMnVs0xcFD1TxZKFqhdnQ==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", "dev": true, + "license": "MIT", "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=14.16" + "node": ">=18" }, "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "node_modules/long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.6" + } }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/graphemer": { + "node_modules/loose-envify": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/grid-index": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", - "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", - "optional": true, - "peer": true - }, - "node_modules/gunzip-maybe": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", - "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", - "dev": true, + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", "dependencies": { - "browserify-zlib": "^0.1.4", - "is-deflate": "^1.0.0", - "is-gzip": "^1.0.0", - "peek-stream": "^1.1.0", - "pumpify": "^1.3.3", - "through2": "^2.0.3" + "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { - "gunzip-maybe": "bin.js" + "loose-envify": "cli.js" } }, - "node_modules/h3-js": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", - "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==", - "engines": { - "node": ">=4", - "npm": ">=3", - "yarn": ">=1.3.0" + "node_modules/loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "license": "MIT", + "dependencies": { + "get-func-name": "^2.0.1" } }, - "node_modules/hammerjs": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", - "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=", + "node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.8.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hamt_plus": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", - "integrity": "sha1-4hwlKWjH4zsg9qGwlM2FeHomVgE=" - }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, + "license": "ISC", "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" + "yallist": "^3.0.2" } }, - "node_modules/handlebars/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/magic-string": { + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", + "dev": true, + "license": "MIT", "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", "dev": true, + "license": "ISC", "dependencies": { - "get-intrinsic": "^1.1.1" + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, + "license": "ISC", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/make-fetch-happen/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, + "license": "ISC", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "has-symbols": "^1.0.2" + "tmpl": "1.0.5" + } + }, + "node_modules/map-or-similar": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", + "dev": true, + "license": "MIT" + }, + "node_modules/maplibre-gl": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-3.6.2.tgz", + "integrity": "sha512-krg2KFIdOpLPngONDhP6ixCoWl5kbdMINP0moMSJFVX7wX1Clm2M9hlNKXS8vBGlVWwR5R3ZfI6IPrYz7c+aCQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^2.0.6", + "@mapbox/unitbezier": "^0.0.1", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "@maplibre/maplibre-gl-style-spec": "^19.3.3", + "@types/geojson": "^7946.0.13", + "@types/mapbox__point-geometry": "^0.1.4", + "@types/mapbox__vector-tile": "^1.3.4", + "@types/pbf": "^3.0.5", + "@types/supercluster": "^7.1.3", + "earcut": "^2.2.4", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.4.3", + "global-prefix": "^3.0.0", + "kdbush": "^4.0.2", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^2.0.0", + "quickselect": "^2.0.0", + "supercluster": "^8.0.1", + "tinyqueue": "^2.0.3", + "vt-pbf": "^3.1.3" }, "engines": { - "node": ">= 0.4" + "node": ">=16.14.0", + "npm": ">=8.1.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/maplibre/maplibre-gl-js?sponsor=1" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "node_modules/has-yarn": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", - "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==", + "node_modules/markdown-extensions": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", + "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", "dev": true, + "license": "MIT", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=0.10.0" + } + }, + "node_modules/markdown-to-jsx": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.5.0.tgz", + "integrity": "sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==", + "license": "MIT", + "engines": { + "node": ">= 10" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": ">= 0.14.0" } }, - "node_modules/hast-util-to-estree": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.2.tgz", - "integrity": "sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==", + "node_modules/match-sorter": { + "version": "6.3.4", + "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.4.tgz", + "integrity": "sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.8", + "remove-accents": "0.5.0" + } + }, + "node_modules/math.gl": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", + "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "3.6.3" + } + }, + "node_modules/mdast-util-definitions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "estree-util-attach-comments": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "hast-util-whitespace": "^2.0.0", - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdxjs-esm": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.1", - "unist-util-position": "^4.0.0", - "zwitch": "^2.0.0" + "unist-util-visit": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-to-estree/node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "node_modules/mdast-util-definitions/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "dev": true, + "license": "MIT", "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-whitespace": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dev": true, + "license": "MIT", "dependencies": { - "react-is": "^16.7.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/html-tags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", + "node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "dev": true, - "engines": { - "node": ">=8" + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/mdast-util-mdx": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", + "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", "dev": true, + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdx-jsx": "^2.0.0", + "mdast-util-mdxjs-esm": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, - "engines": { - "node": ">= 0.8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "node_modules/mdast-util-mdx-expression": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", + "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", "dev": true, + "license": "MIT", "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, - "engines": { - "node": ">= 6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/http2-wrapper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", + "node_modules/mdast-util-mdx-jsx": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz", + "integrity": "sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==", "dev": true, + "license": "MIT", "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "ccount": "^2.0.0", + "mdast-util-from-markdown": "^1.1.0", + "mdast-util-to-markdown": "^1.3.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-remove-position": "^4.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" }, - "engines": { - "node": ">=10.19.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/mdast-util-mdxjs-esm": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", + "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", "dev": true, + "license": "MIT", "dependencies": { - "agent-base": "6", - "debug": "4" + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "dev": true, + "license": "MIT", "dependencies": { - "ms": "^2.0.0" - } - }, - "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", - "dev": true, - "bin": { - "husky": "lib/bin.js" - }, - "engines": { - "node": ">=14" + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/typicode" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/mdast-util-to-hast": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", + "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", + "dev": true, + "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-definitions": "^5.0.0", + "micromark-util-sanitize-uri": "^1.1.0", + "trim-lines": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ignore-walk": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.1.tgz", - "integrity": "sha512-/c8MxUAqpRccq+LyDOecwF+9KqajueJHh8fz7g3YqjMZt+NSfJzx05zrKiXwa2sKwFCzaiZ5qUVfRj0pmxixEA==", + "node_modules/mdast-util-to-hast/node_modules/mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", "dev": true, + "license": "MIT", "dependencies": { - "minimatch": "^6.1.6" + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ignore-walk/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ignore-walk/node_modules/minimatch": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-6.2.0.tgz", - "integrity": "sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==", + "node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" + "@types/mdast": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/image-size": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", - "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", - "bin": { - "image-size": "bin/image-size.js" - }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=6.9.0" + "node": ">= 0.6" } }, - "node_modules/immer": { - "version": "9.0.19", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz", - "integrity": "sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" + "node_modules/memoizerific": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", + "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", + "dev": true, + "license": "MIT", + "dependencies": { + "map-or-similar": "^1.5.0" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, + "license": "MIT", "engines": { - "node": ">=0.8.19" + "node": ">= 8" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", - "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", "dev": true, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "dev": true + "node_modules/micromark-extension-mdx-expression": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz", + "integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } }, - "node_modules/internal-slot": { + "node_modules/micromark-extension-mdx-jsx": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz", + "integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==", "dev": true, + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "engines": { - "node": ">=12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "node_modules/micromark-extension-mdx-md": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz", + "integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==", "dev": true, + "license": "MIT", "dependencies": { - "loose-envify": "^1.0.0" + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ip-address": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "node_modules/micromark-extension-mdxjs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz", + "integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==", "dev": true, + "license": "MIT", "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^1.0.0", + "micromark-extension-mdx-jsx": "^1.0.0", + "micromark-extension-mdx-md": "^1.0.0", + "micromark-extension-mdxjs-esm": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" }, - "engines": { - "node": ">= 12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ip-address/node_modules/sprintf-js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "dev": true - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "node_modules/micromark-extension-mdxjs-esm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz", + "integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==", "dev": true, - "engines": { - "node": ">= 0.10" + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-core-commonmark": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.1.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "node_modules/micromark-extension-mdxjs/node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=8" + "node": ">=0.4.0" } }, - "node_modules/is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "node_modules/micromark-factory-mdx-expression": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz", + "integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/estree": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/micromark-factory-space": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", + "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/micromark-util-character": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", + "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "OpenCollective", + "url": "https://opencollective.com/unified" } ], - "engines": { - "node": ">=4" + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-deflate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", - "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", - "dev": true + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/micromark-util-events-to-acorn": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz", + "integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==", "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-error": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", - "integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==" - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^2.0.0", + "estree-util-visit": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-types": "^1.0.0" } }, - "node_modules/is-gzip": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", - "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", + "node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", "dev": true, - "engines": { - "node": ">=0.10.0" + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/is-hexadecimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "node_modules/micromark-util-symbol": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", + "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "braces": "^3.0.3", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.6" } }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/microseconds": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz", + "integrity": "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==", + "license": "MIT" }, - "node_modules/is-npm": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", - "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "license": "MIT", + "bin": { + "mime": "cli.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=4" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, + "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">= 0.6" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "mime-db": "1.52.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.6" } }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-reference": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", - "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", - "dev": true, - "dependencies": { - "@types/estree": "*" + "node": ">=4" } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 0.4" - }, + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" } }, - "node_modules/is-shared-array-buffer": { + "node_modules/minipass-collect": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, + "license": "ISC", "dependencies": { - "call-bind": "^1.0.2" + "minipass": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 8" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "node_modules/minipass-collect/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "license": "ISC" }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/minipass-fetch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz", + "integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==", "dev": true, + "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": ">= 0.4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dev": true, + "license": "ISC", "dependencies": { - "which-typed-array": "^1.1.11" + "minipass": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 8" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "engines": { - "node": ">=10" + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "license": "ISC" }, - "node_modules/is-weakref": { + "node_modules/minipass-json-stream": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.2.tgz", + "integrity": "sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" } }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "yallist": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "node_modules/minipass-json-stream/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, + "license": "ISC", "dependencies": { - "is-docker": "^2.0.0" + "minipass": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/is-yarn-global": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz", - "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==", + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/minipass-sized/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, - "bin": { - "semver": "bin/semver.js" - } + "license": "ISC" }, - "node_modules/jackspeak": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", - "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, + "license": "MIT", "dependencies": { - "@isaacs/cliui": "^8.0.2" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "node": ">= 8" } }, - "node_modules/jake": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", - "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "bin": { - "jake": "bin/cli.js" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, + "license": "ISC" + }, + "node_modules/mjolnir.js": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.3.tgz", + "integrity": "sha512-Z5z/+FzZqOSO3juSVKV3zcm4R2eAlWwlKMcqHmyFEJAaLILNcDKnIbnb4/kbcGyIuhtdWrzu8WOIR7uM6I34aw==", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@types/hammerjs": "^2.0.41", + "hammerjs": "^2.0.8" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 4", + "npm": ">= 3" } }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, + "node_modules/mlly": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "acorn": "^8.11.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" } }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, + "node_modules/mlly/node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=8" + "node": ">=0.4.0" } }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "license": "MIT", "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/jest-haste-map": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, + "node_modules/moment-timezone": { + "version": "0.5.45", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.45.tgz", + "integrity": "sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==", + "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" + "moment": "^2.29.4" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "node": "*" } }, - "node_modules/jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*" - }, + "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=4" } }, - "node_modules/jest-mock/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/murmurhash-js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", + "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==", + "license": "MIT" + }, + "node_modules/nano-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", + "integrity": "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==", + "license": "ISC", "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "big-integer": "^1.6.16" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/jest-mock/node_modules/@types/yargs": { - "version": "16.0.5", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", - "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } + "license": "MIT" }, - "node_modules/jest-mock/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/jest-mock/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "minimatch": "^3.0.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 0.10.5" } }, - "node_modules/jest-mock/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "whatwg-url": "^5.0.0" }, "engines": { - "node": ">=7.0.0" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/jest-mock/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-mock/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/jest-mock/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/node-gyp": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.1.tgz", + "integrity": "sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.0.3", + "nopt": "^6.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">=8" - } - }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^12.13 || ^14.13 || >=16" } }, - "node_modules/jest-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "node_modules/node-gyp/node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", "dev": true, + "license": "ISC", "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/node-gyp/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "balanced-match": "^1.0.0" } }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/node-gyp/node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", "dev": true, + "license": "ISC", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/node-gyp/node_modules/cacache/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { - "color-name": "~1.1.4" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/node-gyp/node_modules/cacache/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/node-gyp/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, + "license": "ISC", "dependencies": { - "has-flag": "^4.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "node_modules/node-gyp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/node-gyp/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, + "license": "ISC", "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/node-gyp/node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", "dev": true, + "license": "ISC", "dependencies": { - "has-flag": "^4.0.0" + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "node_modules/js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/node-gyp/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { - "argparse": "^2.0.1" + "yallist": "^4.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=8" } }, - "node_modules/js-yaml/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/jsbn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "dev": true - }, - "node_modules/jscodeshift": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", - "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", + "node_modules/node-gyp/node_modules/minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.23.0", - "@babel/parser": "^7.23.0", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.23.0", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", - "@babel/plugin-transform-optional-chaining": "^7.23.0", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/preset-flow": "^7.22.15", - "@babel/preset-typescript": "^7.23.0", - "@babel/register": "^7.22.15", - "babel-core": "^7.0.0-bridge.0", - "chalk": "^4.1.2", - "flow-parser": "0.*", - "graceful-fs": "^4.2.4", - "micromatch": "^4.0.4", - "neo-async": "^2.5.0", - "node-dir": "^0.1.17", - "recast": "^0.23.3", - "temp": "^0.8.4", - "write-file-atomic": "^2.3.0" - }, - "bin": { - "jscodeshift": "bin/jscodeshift.js" + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, - "peerDependencies": { - "@babel/preset-env": "^7.1.6" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, - "peerDependenciesMeta": { - "@babel/preset-env": { - "optional": true - } + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/jscodeshift/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/node-gyp/node_modules/ssri": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", "dev": true, + "license": "ISC", "dependencies": { - "color-convert": "^2.0.1" + "minipass": "^3.1.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jscodeshift/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "node_modules/node-gyp/node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dev": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jscodeshift/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/node-gyp/node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", "dev": true, + "license": "ISC", "dependencies": { - "color-name": "~1.1.4" + "imurmurhash": "^0.1.4" }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jscodeshift/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jscodeshift/node_modules/has-flag": { + "node_modules/node-gyp/node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true, + "license": "MIT" + }, + "node_modules/nopt": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dev": true, + "license": "ISC", + "dependencies": { + "abbrev": "^1.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jscodeshift/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/normalize-package-data": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", + "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "has-flag": "^4.0.0" + "hosted-git-info": "^6.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/jscodeshift/node_modules/write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "node_modules/normalize-package-data/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", "dev": true, + "license": "ISC", "dependencies": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" + "lru-cache": "^7.5.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/jsep": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", - "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==", + "node_modules/normalize-package-data/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "license": "ISC", "engines": { - "node": ">= 6.0.0" + "node": ">=12" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-parse-helpfulerror": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", - "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", + "node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", "dev": true, - "dependencies": { - "jju": "^1.1.0" + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz", - "integrity": "sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==", + "node_modules/npm-bundled": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz", + "integrity": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==", + "dev": true, + "license": "ISC", "dependencies": { - "jsonify": "^0.0.1" + "npm-normalize-package-bin": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-pretty-compact": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz", - "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "node_modules/npm-check-updates": { + "version": "16.14.20", + "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.14.20.tgz", + "integrity": "sha512-sYbIhun4DrjO7NFOTdvs11nCar0etEhZTsEjL47eM0TuiGMhmYughRCxG2SpGRmGAQ7AkwN7bw2lWzoE7q6yOQ==", "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/semver-utils": "^1.1.1", + "chalk": "^5.3.0", + "cli-table3": "^0.6.3", + "commander": "^10.0.1", + "fast-memoize": "^2.5.2", + "find-up": "5.0.0", + "fp-and-or": "^0.1.4", + "get-stdin": "^8.0.0", + "globby": "^11.0.4", + "hosted-git-info": "^5.1.0", + "ini": "^4.1.1", + "js-yaml": "^4.1.0", + "json-parse-helpfulerror": "^1.0.3", + "jsonlines": "^0.1.1", + "lodash": "^4.17.21", + "make-fetch-happen": "^11.1.1", + "minimatch": "^9.0.3", + "p-map": "^4.0.0", + "pacote": "15.2.0", + "parse-github-url": "^1.0.2", + "progress": "^2.0.3", + "prompts-ncu": "^3.0.0", + "rc-config-loader": "^4.1.3", + "remote-git-tags": "^3.0.0", + "rimraf": "^5.0.5", + "semver": "^7.5.4", + "semver-utils": "^1.1.4", + "source-map-support": "^0.5.21", + "spawn-please": "^2.0.2", + "strip-ansi": "^7.1.0", + "strip-json-comments": "^5.0.1", + "untildify": "^4.0.0", + "update-notifier": "^6.0.2" + }, "bin": { - "json5": "lib/cli.js" + "ncu": "build/src/bin/cli.js", + "npm-check-updates": "build/src/bin/cli.js" }, "engines": { - "node": ">=6" + "node": ">=14.14" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { + "node_modules/npm-check-updates/node_modules/ansi-regex": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, - "dependencies": { - "universalify": "^2.0.0" + "license": "MIT", + "engines": { + "node": ">=12" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/jsonlines": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz", - "integrity": "sha512-ekDrAGso79Cvf+dtm+mL8OBI2bmAOt3gssYs833De/C9NmIpWDWyUO4zPgB5x2/OhY366dkhgfPMYfwZF7yOZA==", - "dev": true - }, - "node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "node_modules/npm-check-updates/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, - "engines": [ - "node >= 0.2.0" - ] + "license": "Python-2.0" }, - "node_modules/jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "node_modules/npm-check-updates/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "license": "MIT", "dependencies": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - }, + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm-check-updates/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=4.0" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/kdbush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", - "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==", - "optional": true, - "peer": true - }, - "node_modules/keypress": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz", - "integrity": "sha512-HjorDJFNhnM4SicvaUXac0X77NiskggxJdesG72+O5zBKpSqKFCrqmndKVqpu3pFqkla0St6uGk8Ju0sCurrmg==", - "dev": true - }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/npm-check-updates/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, + "license": "MIT", "engines": { - "node": ">=6" - } - }, - "node_modules/ktx-parse": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", - "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==" - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dev": true, - "dependencies": { - "language-subtag-registry": "~0.3.2" + "node": ">=14" } }, - "node_modules/latest-version": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", - "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", + "node_modules/npm-check-updates/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, + "license": "MIT", "dependencies": { - "package-json": "^8.1.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lazy-universal-dotenv": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", - "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", + "node_modules/npm-check-updates/node_modules/ini": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", + "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", "dev": true, - "dependencies": { - "app-root-dir": "^1.0.2", - "dotenv": "^16.0.0", - "dotenv-expand": "^10.0.0" - }, + "license": "ISC", "engines": { - "node": ">=14.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lerc": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lerc/-/lerc-4.0.1.tgz", - "integrity": "sha512-b351eOjY3DKm1H2hDVhXswsd2RCK6bgREBK6Z639ctClOuYXTi9a44l8yO3zm1pYM2o4WrriloTAKgyrb/0EyA==" - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/npm-check-updates/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "engines": { - "node": ">=6" + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/npm-check-updates/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, + "license": "ISC", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "node_modules/npm-check-updates/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/lint-staged": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-14.0.1.tgz", - "integrity": "sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==", - "dev": true, - "dependencies": { - "chalk": "5.3.0", - "commander": "11.0.0", - "debug": "4.3.4", - "execa": "7.2.0", - "lilconfig": "2.1.0", - "listr2": "6.6.1", - "micromatch": "4.0.5", - "pidtree": "0.6.0", - "string-argv": "0.3.2", - "yaml": "2.3.1" + "license": "ISC", + "dependencies": { + "glob": "^10.3.7" }, "bin": { - "lint-staged": "bin/lint-staged.js" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "rimraf": "dist/esm/bin.mjs" }, "funding": { - "url": "https://opencollective.com/lint-staged" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "node_modules/npm-check-updates/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/lint-staged/node_modules/commander": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", - "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", + "node_modules/npm-check-updates/node_modules/strip-json-comments": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.1.tgz", + "integrity": "sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==", "dev": true, + "license": "MIT", "engines": { - "node": ">=16" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "node_modules/npm-install-checks": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz", + "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "semver": "^7.1.1" }, "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, + "license": "ISC", "engines": { - "node": ">=14.18.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", "dev": true, + "license": "ISC", + "dependencies": { + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-package-arg/node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^7.5.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "node_modules/npm-package-arg/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, + "license": "ISC", "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "node_modules/npm-packlist": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", + "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", "dev": true, + "license": "ISC", "dependencies": { - "path-key": "^4.0.0" + "ignore-walk": "^6.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "node_modules/npm-pick-manifest": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz", + "integrity": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==", "dev": true, + "license": "ISC", "dependencies": { - "mimic-fn": "^4.0.0" + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^10.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "node_modules/npm-registry-fetch": { + "version": "14.0.5", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", + "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "license": "ISC", + "dependencies": { + "make-fetch-happen": "^11.0.0", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^10.0.0", + "proc-log": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "node_modules/npm-registry-fetch/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, + "license": "ISC", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/lint-staged/node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, "engines": { - "node": ">= 14" + "node": ">=8" } }, - "node_modules/listr2": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", - "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "deprecated": "This package is no longer supported.", "dev": true, + "license": "ISC", "dependencies": { - "cli-truncate": "^3.1.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^5.0.1", - "rfdc": "^1.3.0", - "wrap-ansi": "^8.1.0" + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" }, "engines": { - "node": ">=16.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/nypm": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.12.tgz", + "integrity": "sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "execa": "^8.0.1", + "pathe": "^1.1.2", + "pkg-types": "^1.2.0", + "ufo": "^1.5.4" }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" + "bin": { + "nypm": "dist/cli.mjs" }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "engines": { + "node": "^14.16.0 || >=16.10.0" } }, - "node_modules/listr2/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "node_modules/nypm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": ">=16.17" }, "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "node_modules/nypm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=16" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/listr2/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "node_modules/nypm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=16.17.0" + } }, - "node_modules/listr2/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/nypm/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -21151,2734 +21112,2661 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/listr2/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/nypm/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "path-key": "^4.0.0" }, "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "node_modules/nypm/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "mimic-fn": "^4.0.0" }, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "node_modules/nypm/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=14" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/antfu" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/nypm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "p-locate": "^5.0.0" + "license": "ISC", + "engines": { + "node": ">=14" }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/nypm/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.curry": { + "node_modules/object-assign": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", - "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/lodash.flow": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", - "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/lodash.isempty": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz", - "integrity": "sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==", - "dev": true - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "dev": true - }, - "node_modules/lodash.kebabcase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", - "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.unionwith": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.unionwith/-/lodash.unionwith-4.6.0.tgz", - "integrity": "sha512-Hk8otPCkVM4UxRoft3E5dAREwExyXci6iVPCibHIEiG7neb9KAdWHYS75MYpVTvxDrnpp7WCJNZ84vAk7j7tVA==", - "dev": true + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, + "license": "MIT", "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 0.4" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" } }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/oblivious-set": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz", + "integrity": "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==", + "license": "MIT" + }, + "node_modules/ohash": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.4.tgz", + "integrity": "sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==", + "dev": true, + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "ee-first": "1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/log-update": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", - "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-escapes": "^5.0.0", - "cli-cursor": "^4.0.0", - "slice-ansi": "^5.0.0", - "strip-ansi": "^7.0.1", - "wrap-ansi": "^8.0.1" + "mimic-fn": "^2.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/log-update/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/log-update/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, + "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", + "node_modules/ora/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, "engines": { - "node": ">=0.6" + "node": ">=8" } }, - "node_modules/longest-streak": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/ora/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "license": "MIT", "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" }, - "bin": { - "loose-envify": "cli.js" + "engines": { + "node": ">=8" } }, - "node_modules/loupe": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", - "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", "dependencies": { - "get-func-name": "^2.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/lowercase-keys": { + "node_modules/p-cancelable": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", "dev": true, + "license": "MIT", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12.20" } }, - "node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "dev": true, - "bin": { - "lz-string": "bin/bin.js" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/magic-string": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", - "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, + "license": "MIT", "dependencies": { - "semver": "^6.0.0" + "aggregate-error": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/make-fetch-happen": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", - "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "node_modules/package-json": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", + "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", "dev": true, + "license": "MIT", "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^9.0.0" + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-fetch-happen/node_modules/@npmcli/fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", - "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/pacote": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.2.0.tgz", + "integrity": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==", + "dev": true, + "license": "ISC", "dependencies": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" + "@npmcli/git": "^4.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^6.0.1", + "@npmcli/run-script": "^6.0.0", + "cacache": "^17.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^5.0.0", + "npm-package-arg": "^10.0.0", + "npm-packlist": "^7.0.0", + "npm-pick-manifest": "^8.0.0", + "npm-registry-fetch": "^14.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^6.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^1.3.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/make-fetch-happen/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/pacote/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "license": "ISC", + "engines": { + "node": ">=8" } }, - "node_modules/make-fetch-happen/node_modules/cacache": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", - "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", - "dev": true, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", "dependencies": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^2.0.0" + "callsites": "^3.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=6" } }, - "node_modules/make-fetch-happen/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/parse-entities": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", + "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" + "@types/unist": "^2.0.0", + "character-entities": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/make-fetch-happen/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/parse-github-url": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.3.tgz", + "integrity": "sha512-tfalY5/4SqGaV/GIGzWyHnFjlpTPTNpENR9Ea2lLldSJ8EWXMsvacWucqY3m3I4YPtas15IxTLQVQ5NSYXPrww==", "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/make-fetch-happen/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" + "license": "MIT", + "bin": { + "parse-github-url": "cli.js" }, "engines": { - "node": ">=10" + "node": ">= 0.10" } }, - "node_modules/make-fetch-happen/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" - } - }, - "node_modules/make-fetch-happen/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-fetch-happen/node_modules/ssri": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", - "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, - "dependencies": { - "minipass": "^3.1.1" - }, + "license": "MIT", "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.8" } }, - "node_modules/make-fetch-happen/node_modules/unique-filename": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", - "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "dependencies": { - "unique-slug": "^3.0.0" - }, + "license": "MIT", "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=8" } }, - "node_modules/make-fetch-happen/node_modules/unique-slug": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", - "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=0.10.0" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/map-or-similar": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", - "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", - "dev": true - }, - "node_modules/mapbox-gl": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", - "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", - "optional": true, - "peer": true, - "dependencies": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/geojson-types": "^1.0.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/mapbox-gl-supported": "^1.5.0", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^1.1.1", - "@mapbox/unitbezier": "^0.0.0", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "csscolorparser": "~1.0.3", - "earcut": "^2.2.2", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.2.1", - "grid-index": "^1.1.0", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^1.0.1", - "quickselect": "^2.0.0", - "rw": "^1.3.3", - "supercluster": "^7.1.0", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.1" - }, + "license": "MIT", "engines": { - "node": ">=6.4.0" + "node": ">=8" } }, - "node_modules/maplibre-gl": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-3.3.1.tgz", - "integrity": "sha512-SfRq9bT68GytDzCOG0IoTGg2rASbgdYunW/6xhnp55QuLmwG1M/YOlXxqHaphwia7kZbMvBOocvY0fp5yfTjZA==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^2.0.6", - "@mapbox/unitbezier": "^0.0.1", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "@maplibre/maplibre-gl-style-spec": "^19.3.0", - "@types/geojson": "^7946.0.10", - "@types/mapbox__point-geometry": "^0.1.2", - "@types/mapbox__vector-tile": "^1.3.0", - "@types/pbf": "^3.0.2", - "@types/supercluster": "^7.1.0", - "earcut": "^2.2.4", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.4.3", - "global-prefix": "^3.0.0", - "kdbush": "^4.0.2", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^2.0.0", - "quickselect": "^2.0.0", - "supercluster": "^8.0.1", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.3" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=16.14.0", - "npm": ">=8.1.0" + "node": ">=16 || 14 >=14.18" }, "funding": { - "url": "https://github.com/maplibre/maplibre-gl-js?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/maplibre-gl/node_modules/@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - }, - "node_modules/maplibre-gl/node_modules/@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - }, - "node_modules/maplibre-gl/node_modules/kdbush": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", - "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==" + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" }, - "node_modules/maplibre-gl/node_modules/potpack": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.0.0.tgz", - "integrity": "sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==" + "node_modules/path-to-regexp": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", + "dev": true, + "license": "MIT" }, - "node_modules/maplibre-gl/node_modules/supercluster": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", - "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", - "dependencies": { - "kdbush": "^4.0.2" + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/markdown-extensions": { + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "license": "MIT" + }, + "node_modules/pathval": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", - "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", - "dev": true, + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/markdown-to-jsx": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", - "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==", - "engines": { - "node": ">= 10" + "node_modules/pbf": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.3.0.tgz", + "integrity": "sha512-XDF38WCH3z5OV/OVa8GKUNtLAyneuzbCisx7QUCF8Q6Nutx0WnJrQe5O+kOtBlLfRNUws98Y58Lblp+NJG5T4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" }, - "peerDependencies": { - "react": ">= 0.14.0" + "bin": { + "pbf": "bin/pbf" } }, - "node_modules/match-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz", - "integrity": "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==", + "node_modules/periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.5", - "remove-accents": "0.4.2" + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" } }, - "node_modules/math.gl": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", - "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", - "dependencies": { - "@math.gl/core": "3.6.3" - } + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", + "license": "ISC" }, - "node_modules/mdast-util-definitions": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", - "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "dependencies": { - "unist-util-visit": "^2.0.0" + "license": "MIT", + "engines": { + "node": ">=8.6" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/mdast-util-from-markdown": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", - "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10" } }, - "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", - "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/mdast-util-mdx": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", - "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, - "dependencies": { - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdx-jsx": "^2.0.0", - "mdast-util-mdxjs-esm": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "engines": { + "node": ">= 6" } }, - "node_modules/mdast-util-mdx-expression": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", - "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", + "node_modules/pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" + "find-up": "^5.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=10" } }, - "node_modules/mdast-util-mdx-jsx": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz", - "integrity": "sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==", - "dev": true, + "node_modules/pkg-types": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.0.tgz", + "integrity": "sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==", + "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "ccount": "^2.0.0", - "mdast-util-from-markdown": "^1.1.0", - "mdast-util-to-markdown": "^1.3.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-remove-position": "^4.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "confbox": "^0.1.7", + "mlly": "^1.7.1", + "pathe": "^1.1.2" } }, - "node_modules/mdast-util-mdxjs-esm": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", - "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", + "node_modules/polished": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz", + "integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" + "@babel/runtime": "^7.17.8" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=10" } }, - "node_modules/mdast-util-phrasing": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "unist-util-is": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "engines": { + "node": ">= 0.4" } }, - "node_modules/mdast-util-phrasing/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/mdast-util-to-hast": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", - "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", + "node_modules/potpack": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.0.0.tgz", + "integrity": "sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==", + "license": "ISC" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-definitions": "^5.0.0", - "micromark-util-sanitize-uri": "^1.1.0", - "trim-lines": "^3.0.0", - "unist-util-generated": "^2.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/mdast-util-to-hast/node_modules/mdast-util-definitions": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "node_modules/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/mdast-util-to-hast/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" + "node_modules/pretty-bytes": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", + "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", + "license": "MIT", + "engines": { + "node": "^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/mdast-util-to-markdown": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", - "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^3.0.0", - "mdast-util-to-string": "^3.0.0", - "micromark-util-decode-string": "^1.0.0", - "unist-util-visit": "^4.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "node_modules/mdast-util-to-markdown/node_modules/mdast-util-to-string": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", - "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/mdast-util-to-markdown/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "asap": "~2.0.3" } }, - "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=10" } }, - "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 6" } }, - "node_modules/mdast-util-to-string": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", - "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "node_modules/prompts-ncu": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/prompts-ncu/-/prompts-ncu-3.0.0.tgz", + "integrity": "sha512-qyz9UxZ5MlPKWVhWrCmSZ1ahm2GVYdjLb8og2sg0IPth1KRuhcggHGuijz0e41dkx35p1t1q3GRISGH7QGALFA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "dependencies": { + "kleur": "^4.0.1", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "node_modules/prompts-ncu/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/memoizerific": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", - "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", - "dev": true, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", "dependencies": { - "map-or-similar": "^1.5.0" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "license": "ISC" + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==", + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, "engines": { - "node": ">= 8" + "node": ">= 0.10" } }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/micromark": { + "node_modules/pupa": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", - "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", + "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "MIT", "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" + "escape-goat": "^4.0.0" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/micromark-core-commonmark": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", - "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", + "node_modules/pure-color": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", + "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==", + "license": "MIT" + }, + "node_modules/qrcode-terminal": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", + "integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/micromark-extension-mdx-expression": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz", - "integrity": "sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==", + "node_modules/quadbin": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.9.tgz", + "integrity": "sha512-5V6m6+cL/6+uBl3hYL+CWF06rRvlHkIepYKGQjTLYaHhu9InPppql0+0ROiCaOQdz8gPNlgge3glk5Qg1mWOYw==", + "license": "MIT", + "dependencies": { + "@mapbox/tile-cover": "3.0.1" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" + "type": "github", + "url": "https://github.com/sponsors/feross" }, { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } ], - "dependencies": { - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } + "license": "MIT" }, - "node_modules/micromark-extension-mdx-jsx": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz", - "integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==", + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "dev": true, - "dependencies": { - "@types/acorn": "^4.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" + "license": "MIT", + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/micromark-extension-mdx-md": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", - "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", + "node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==", + "license": "ISC" + }, + "node_modules/ramda": { + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", + "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", "dev": true, - "dependencies": { - "micromark-util-types": "^1.0.0" - }, + "license": "MIT", "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/ramda" } }, - "node_modules/micromark-extension-mdxjs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", - "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dev": true, + "license": "MIT", "dependencies": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^1.0.0", - "micromark-extension-mdx-jsx": "^1.0.0", - "micromark-extension-mdx-md": "^1.0.0", - "micromark-extension-mdxjs-esm": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-types": "^1.0.0" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.8" } }, - "node_modules/micromark-extension-mdxjs-esm": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz", - "integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==", + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, + "license": "MIT", "dependencies": { - "micromark-core-commonmark": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.1.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-destination": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", - "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" } }, - "node_modules/micromark-factory-label": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", - "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", + "node_modules/rc-config-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.3.tgz", + "integrity": "sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "debug": "^4.3.4", + "js-yaml": "^4.1.0", + "json5": "^2.2.2", + "require-from-string": "^2.0.2" } }, - "node_modules/micromark-factory-mdx-expression": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz", - "integrity": "sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==", + "node_modules/rc-config-loader/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "Python-2.0" + }, + "node_modules/rc-config-loader/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/micromark-factory-space": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", - "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-title": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", - "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "license": "MIT", "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-whitespace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", - "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/react-base16-styling": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", + "integrity": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", + "license": "MIT", "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "base16": "^1.0.0", + "lodash.curry": "^4.0.1", + "lodash.flow": "^3.3.0", + "pure-color": "^1.2.0" } }, - "node_modules/micromark-util-character": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", - "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", + "node_modules/react-colorful": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", + "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } }, - "node_modules/micromark-util-chunked": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", - "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", + "node_modules/react-docgen": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", + "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "@babel/core": "^7.18.9", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", + "@types/babel__core": "^7.18.0", + "@types/babel__traverse": "^7.18.0", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", + "doctrine": "^3.0.0", + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": ">=16.14.0" } }, - "node_modules/micromark-util-classify-character": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", - "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", + "node_modules/react-docgen-typescript": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", + "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "license": "MIT", + "peerDependencies": { + "typescript": ">= 4.3.x" } }, - "node_modules/micromark-util-combine-extensions": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", - "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", + "node_modules/react-docgen/node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "MIT" + }, + "node_modules/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "license": "MIT", "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" } }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", - "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", + "node_modules/react-element-to-jsx-string": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", + "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "@base2/pretty-print-object": "1.0.1", + "is-plain-object": "5.0.0", + "react-is": "18.1.0" + }, + "peerDependencies": { + "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", + "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0" } }, - "node_modules/micromark-util-decode-string": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", - "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", + "node_modules/react-element-to-jsx-string/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-util-encode": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", - "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", + "node_modules/react-element-to-jsx-string/node_modules/react-is": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", + "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] + "license": "MIT" }, - "node_modules/micromark-util-events-to-acorn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz", - "integrity": "sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react-json-view": { + "version": "1.21.3", + "resolved": "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz", + "integrity": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==", + "license": "MIT", "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "estree-util-visit": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-location": "^4.0.0", - "vfile-message": "^3.0.0" + "flux": "^4.0.1", + "react-base16-styling": "^0.6.0", + "react-lifecycles-compat": "^3.0.4", + "react-textarea-autosize": "^8.3.2" + }, + "peerDependencies": { + "react": "^17.0.0 || ^16.3.0 || ^15.5.4", + "react-dom": "^17.0.0 || ^16.3.0 || ^15.5.4" } }, - "node_modules/micromark-util-html-tag-name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", - "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", + "license": "MIT" }, - "node_modules/micromark-util-normalize-identifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", - "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/react-map-gl": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.1.7.tgz", + "integrity": "sha512-mwjc0obkBJOXCcoXQr3VoLqmqwo9vS4bXfbGsdxXzEgVCv/PM0v+1QggL7W0d/ccIy+VCjbXNlGij+PENz6VNg==", + "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-resolve-all": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", - "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" + "@maplibre/maplibre-gl-style-spec": "^19.2.1", + "@types/mapbox-gl": ">=1.0.0" + }, + "peerDependencies": { + "mapbox-gl": ">=1.13.0", + "maplibre-gl": ">=1.13.0", + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + }, + "peerDependenciesMeta": { + "mapbox-gl": { + "optional": true }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" + "maplibre-gl": { + "optional": true } - ], - "dependencies": { - "micromark-util-types": "^1.0.0" } }, - "node_modules/micromark-util-sanitize-uri": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", - "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/react-query": { + "version": "3.39.3", + "resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.3.tgz", + "integrity": "sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==", + "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-subtokenize": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", - "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" + "@babel/runtime": "^7.5.5", + "broadcast-channel": "^3.4.1", + "match-sorter": "^6.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" + "react-native": { + "optional": true } - ], - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" } }, - "node_modules/micromark-util-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", - "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", - "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", "dev": true, + "license": "MIT", "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" }, "engines": { - "node": ">=8.6" + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/microseconds": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz", - "integrity": "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==" - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "node_modules/react-remove-scroll-bar": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", + "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", "dev": true, - "bin": { - "mime": "cli.js" + "license": "MIT", + "dependencies": { + "react-style-singleton": "^2.2.1", + "tslib": "^2.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" + "node_modules/react-resize-detector": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-8.1.0.tgz", + "integrity": "sha512-S7szxlaIuiy5UqLhLL1KY3aoyGHbZzsTpYal9eYMwCyKqoqoVLCmIgAgNyIM1FhnP2KyBygASJxdhejrzjMb+w==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, + "node_modules/react-router": { + "version": "6.26.2", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.26.2.tgz", + "integrity": "sha512-tvN1iuT03kHgOFnLPfLJ8V95eijteveqdOSk+srqfePtQvqCExB8eHOYnlilbOcyJyKnYkr1vJvf7YqotAJu1A==", + "license": "MIT", "dependencies": { - "mime-db": "1.52.0" + "@remix-run/router": "1.19.2" }, "engines": { - "node": ">= 0.6" + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node_modules/react-router-dom": { + "version": "6.26.2", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.26.2.tgz", + "integrity": "sha512-z7YkaEW0Dy35T3/QKPYB1LjMK2R1fxnHO8kWpUMTBdfVzZrWOiY9a7CtN8HqdWtDUWd5FY6Dl8HFsqVwH4uOtQ==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.19.2", + "react-router": "6.26.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, "engines": { - "node": ">=4" + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/react-spring-bottom-sheet": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/react-spring-bottom-sheet/-/react-spring-bottom-sheet-3.4.1.tgz", + "integrity": "sha512-yDFqiPMm/fjefjnOe6Q9zxccbCl6HMUKsK5bWgfGHJIj4zmXVKio5d4icQvmOLuwpuCA2pwv4J6nGWS6fUZidQ==", + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "@juggle/resize-observer": "^3.2.0", + "@reach/portal": "^0.13.0", + "@xstate/react": "^1.2.0", + "body-scroll-lock": "^3.1.5", + "focus-trap": "^6.2.2", + "react-spring": "^8.0.27", + "react-use-gesture": "^8.0.1", + "xstate": "^4.15.1" }, - "engines": { - "node": "*" + "peerDependencies": { + "react": "^16.14.0 || 17 || 18" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/react-spring-bottom-sheet/node_modules/react-spring": { + "version": "8.0.27", + "resolved": "https://registry.npmjs.org/react-spring/-/react-spring-8.0.27.tgz", + "integrity": "sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.3.1", + "prop-types": "^15.5.8" + }, + "peerDependencies": { + "react": ">= 16.8.0", + "react-dom": ">= 16.8.0" } }, - "node_modules/minipass": { - "version": "4.2.5", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.5.tgz", - "integrity": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==", - "dev": true, + "node_modules/react-string-replace": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/react-string-replace/-/react-string-replace-1.1.1.tgz", + "integrity": "sha512-26TUbLzLfHQ5jO5N7y3Mx88eeKo0Ml0UjCQuX4BMfOd/JX+enQqlKpL1CZnmjeBRvQE8TR+ds9j1rqx9CxhKHQ==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.12.0" } }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "node_modules/react-style-singleton": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", + "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", "dev": true, + "license": "MIT", "dependencies": { - "minipass": "^3.0.0" + "get-nonce": "^1.0.0", + "invariant": "^2.2.4", + "tslib": "^2.0.0" }, "engines": { - "node": ">= 8" + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, + "node_modules/react-textarea-autosize": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", + "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "@babel/runtime": "^7.20.13", + "use-composed-ref": "^1.3.0", + "use-latest": "^1.2.1" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/minipass-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", - "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", - "dev": true, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", "dependencies": { - "minipass": "^3.1.6", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" }, - "optionalDependencies": { - "encoding": "^0.1.13" + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" } }, - "node_modules/minipass-fetch/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, + "node_modules/react-use-gesture": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/react-use-gesture/-/react-use-gesture-8.0.1.tgz", + "integrity": "sha512-CXzUNkulUdgouaAlvAsC5ZVo0fi9KGSBSk81WrE4kOIcJccpANe9zZkAYr5YZZhqpicIFxitsrGVS4wmoMun9A==", + "deprecated": "This package is no longer maintained. Please use @use-gesture/react instead", + "license": "MIT", + "peerDependencies": { + "react": ">= 16.8.0" + } + }, + "node_modules/react-vega": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/react-vega/-/react-vega-7.6.0.tgz", + "integrity": "sha512-2oMML4wH9qWLnZPRxJm06ozwrVN/K+nkjqdI5/ofWWsrBnnH4iB9rRKrsV8px0nlWgZrwfdCH4g5RUiyyJHWSA==", + "license": "Apache-2.0", "dependencies": { - "yallist": "^4.0.0" + "@types/react": "*", + "fast-deep-equal": "^3.1.1", + "prop-types": "^15.8.1", + "vega-embed": "^6.5.1" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "react": "^16 || ^17 || ^18", + "vega": "*", + "vega-lite": "*" } }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "node_modules/read-package-json": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", + "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", + "deprecated": "This package is no longer supported. Please use @npmcli/package-json instead.", "dev": true, + "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^5.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">= 8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minipass-flush/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", "dev": true, + "license": "ISC", "dependencies": { - "yallist": "^4.0.0" + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", "dev": true, - "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" + "license": "MIT", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minipass-json-stream/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "license": "MIT", "dependencies": { - "minipass": "^3.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/minipass-pipeline/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "picomatch": "^2.2.1" }, "engines": { - "node": ">=8" + "node": ">=8.10.0" } }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "node_modules/recast": { + "version": "0.23.9", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.9.tgz", + "integrity": "sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==", "dev": true, + "license": "MIT", "dependencies": { - "minipass": "^3.0.0" + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", + "tslib": "^2.0.1" }, "engines": { - "node": ">=8" + "node": ">= 4" } }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, + "license": "BSD-3-Clause", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, + "node_modules/recoil": { + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.7.tgz", + "integrity": "sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==", + "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "hamt_plus": "1.0.2" }, - "engines": { - "node": ">= 8" + "peerDependencies": { + "react": ">=16.13.1" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, + "node_modules/recoil-sync": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/recoil-sync/-/recoil-sync-0.2.0.tgz", + "integrity": "sha512-ZYZM1C4LAhGr3EeMMI5MwT4eaEqsr+ddjB4EwdgN8HXXLmE7P5FVCdFHV3HJtMzxR3Y8sOmJDfN1IPrezwKoRg==", + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "@recoiljs/refine": "^0.1.1", + "transit-js": "^0.8.874" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "recoil": ">=0.7.3" } }, - "node_modules/mjolnir.js": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.1.tgz", - "integrity": "sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw==", + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "dev": true, + "license": "MIT", "dependencies": { - "@types/hammerjs": "^2.0.41", - "hammerjs": "^2.0.8" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" }, "engines": { - "node": ">= 4", - "npm": ">= 3" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "node_modules/mlly": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", - "integrity": "sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==", - "dependencies": { - "acorn": "^8.8.2", - "pathe": "^1.1.0", - "pkg-types": "^1.0.2", - "ufo": "^1.1.1" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", - "engines": { - "node": "*" - } + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true, + "license": "MIT" }, - "node_modules/moment-timezone": { - "version": "0.5.43", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.43.tgz", - "integrity": "sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==", + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "dev": true, + "license": "MIT", "dependencies": { - "moment": "^2.29.4" + "regenerate": "^1.4.2" }, - "engines": { - "node": "*" - } - }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "dev": true, "engines": { "node": ">=4" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/murmurhash-js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", - "integrity": "sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=" + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" }, - "node_modules/nano-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", - "integrity": "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==", + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "license": "MIT", "dependencies": { - "big-integer": "^1.6.16" + "@babel/runtime": "^7.8.4" } }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, + "license": "MIT", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/node-dir": { - "version": "0.1.17", - "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", - "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "node_modules/registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", "dev": true, + "license": "MIT", "dependencies": { - "minimatch": "^3.0.2" + "@pnpm/npm-conf": "^2.1.0" }, "engines": { - "node": ">= 0.10.5" + "node": ">=14" } }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "node_modules/registry-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", + "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", + "dev": true, + "license": "MIT", "dependencies": { - "whatwg-url": "^5.0.0" + "rc": "1.2.8" }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-fetch-native": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", - "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", - "dev": true - }, - "node_modules/node-gyp": { - "version": "9.3.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.3.1.tgz", - "integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==", + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" + "jsesc": "~0.5.0" }, "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": "^12.13 || ^14.13 || >=16" + "regjsparser": "bin/parser" } }, - "node_modules/node-gyp/node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/node-gyp/node_modules/gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "bin": { + "jsesc": "bin/jsesc" } }, - "node_modules/node-gyp/node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "node_modules/remark-external-links": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", + "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", "dev": true, + "license": "MIT", "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" + "extend": "^3.0.0", + "is-absolute-url": "^3.0.0", + "mdast-util-definitions": "^4.0.0", + "space-separated-tokens": "^1.0.0", + "unist-util-visit": "^2.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true - }, - "node_modules/nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "node_modules/remark-external-links/node_modules/space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", "dev": true, - "dependencies": { - "abbrev": "^1.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/remark-external-links/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/remark-external-links/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "dev": true, - "bin": { - "semver": "bin/semver" + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/remark-external-links/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", + "node_modules/remark-mdx": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz", + "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", "dev": true, - "engines": { - "node": ">=14.16" + "license": "MIT", + "dependencies": { + "mdast-util-mdx": "^2.0.0", + "micromark-extension-mdxjs": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-bundled": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", + "node_modules/remark-parse": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", + "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", "dev": true, + "license": "MIT", "dependencies": { - "npm-normalize-package-bin": "^3.0.0" + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates": { - "version": "16.7.12", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.7.12.tgz", - "integrity": "sha512-ejYl/BiWhkUxDs1ISQd/6blgTIfHabSdsfR5JWoA7PK+cGn8hCqVKO5p+nNI2PqX+0F21ExGqkt8b7cg2yxuYg==", + "node_modules/remark-rehype": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", + "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", "dev": true, + "license": "MIT", "dependencies": { - "chalk": "^5.2.0", - "cli-table": "^0.3.11", - "commander": "^10.0.0", - "fast-memoize": "^2.5.2", - "find-up": "5.0.0", - "fp-and-or": "^0.1.3", - "get-stdin": "^8.0.0", - "globby": "^11.0.4", - "hosted-git-info": "^5.1.0", - "ini": "^3.0.1", - "json-parse-helpfulerror": "^1.0.3", - "jsonlines": "^0.1.1", - "lodash": "^4.17.21", - "minimatch": "^7.0.1", - "p-map": "^4.0.0", - "pacote": "15.1.1", - "parse-github-url": "^1.0.2", - "progress": "^2.0.3", - "prompts-ncu": "^2.5.1", - "rc-config-loader": "^4.1.2", - "remote-git-tags": "^3.0.0", - "rimraf": "^4.1.2", - "semver": "^7.3.8", - "semver-utils": "^1.1.4", - "source-map-support": "^0.5.21", - "spawn-please": "^2.0.1", - "strip-json-comments": "^5.0.0", - "untildify": "^4.0.0", - "update-notifier": "^6.0.2", - "yaml": "^2.2.1" - }, - "bin": { - "ncu": "build/src/bin/cli.js", - "npm-check-updates": "build/src/bin/cli.js" + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^12.1.0", + "unified": "^10.0.0" }, - "engines": { - "node": ">=14.14" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/remark-slug": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", + "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "github-slugger": "^1.0.0", + "mdast-util-to-string": "^1.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "node_modules/remark-slug/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, + "license": "MIT", "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates/node_modules/commander": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.0.tgz", - "integrity": "sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==", + "node_modules/remark-slug/node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "dev": true, - "engines": { - "node": ">=14" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates/node_modules/glob": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.0.tgz", - "integrity": "sha512-EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w==", + "node_modules/remark-slug/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "minimatch": "^7.4.1", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates/node_modules/hosted-git-info": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz", - "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==", + "node_modules/remark-slug/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "dev": true, + "license": "MIT", "dependencies": { - "lru-cache": "^7.5.1" + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/npm-check-updates/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/remote-git-tags": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remote-git-tags/-/remote-git-tags-3.0.0.tgz", + "integrity": "sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==", "dev": true, + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/npm-check-updates/node_modules/minimatch": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.2.tgz", - "integrity": "sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==", + "node_modules/remove-accents": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz", + "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=0.10.0" } }, - "node_modules/npm-check-updates/node_modules/rimraf": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-4.4.0.tgz", - "integrity": "sha512-X36S+qpCUR0HjXlkDe4NAOhS//aHH0Z+h8Ckf2auGJk3PTnx5rLmrHkwNdbVQuCSUhOyFrlRvFEllZOYE+yZGQ==", + "node_modules/requireindex": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", + "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.5" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", "dependencies": { - "glob": "^9.2.0" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { - "rimraf": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=14" + "resolve": "bin/resolve" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm-check-updates/node_modules/strip-json-comments": { + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.0.tgz", - "integrity": "sha512-V1LGY4UUo0jgwC+ELQ2BNWfPa17TIuwBLg+j1AA/9RPzKINl1lhxVEu2r+ZTTO8aetIsUzE5Qj6LMSBkoGYKKw==", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, + "license": "MIT", "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/npm-check-updates/node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", "dev": true, - "engines": { - "node": ">= 14" + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" } }, - "node_modules/npm-install-checks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.0.0.tgz", - "integrity": "sha512-SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q==", - "dev": true, + "node_modules/resolve-protobuf-schema": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", + "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "license": "MIT", "dependencies": { - "semver": "^7.1.1" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "protocol-buffers-schema": "^3.3.1" } }, - "node_modules/npm-normalize-package-bin": { + "node_modules/responselike": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz", - "integrity": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", "dev": true, + "license": "MIT", + "dependencies": { + "lowercase-keys": "^3.0.0" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-package-arg": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", - "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", + "node_modules/restore-cursor": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", "dev": true, + "license": "MIT", "dependencies": { - "hosted-git-info": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-package-arg/node_modules/hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "node_modules/restore-cursor/node_modules/onetime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", "dev": true, + "license": "MIT", "dependencies": { - "lru-cache": "^7.5.1" + "mimic-function": "^5.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-package-arg/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/restore-cursor/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, + "license": "ISC", "engines": { - "node": ">=12" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm-packlist": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", - "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, - "dependencies": { - "ignore-walk": "^6.0.0" - }, + "license": "MIT", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 4" } }, - "node_modules/npm-pick-manifest": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", - "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "dependencies": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", - "semver": "^7.3.5" - }, + "license": "MIT", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "node_modules/npm-registry-fetch": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.3.tgz", - "integrity": "sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==", + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", "dev": true, + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", "dependencies": { - "make-fetch-happen": "^11.0.0", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", - "proc-log": "^3.0.0" + "glob": "^7.1.3" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-registry-fetch/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm-registry-fetch/node_modules/make-fetch-happen": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz", - "integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==", - "dev": true, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm-registry-fetch/node_modules/minipass-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.1.tgz", - "integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==", + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "license": "Unlicense" + }, + "node_modules/rollup": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.23.0.tgz", + "integrity": "sha512-vXB4IT9/KLDrS2WRXmY22sVB2wTsTwkpxjB8Q3mnakTENcYw3FRmfdYDy/acNmls+lHmDazgrRjK/yQ6hQAtwA==", "dev": true, + "license": "MIT", + "peer": true, "dependencies": { - "minipass": "^4.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=18.0.0", + "npm": ">=8.0.0" }, "optionalDependencies": { - "encoding": "^0.1.13" + "@rollup/rollup-android-arm-eabi": "4.23.0", + "@rollup/rollup-android-arm64": "4.23.0", + "@rollup/rollup-darwin-arm64": "4.23.0", + "@rollup/rollup-darwin-x64": "4.23.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.23.0", + "@rollup/rollup-linux-arm-musleabihf": "4.23.0", + "@rollup/rollup-linux-arm64-gnu": "4.23.0", + "@rollup/rollup-linux-arm64-musl": "4.23.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.23.0", + "@rollup/rollup-linux-riscv64-gnu": "4.23.0", + "@rollup/rollup-linux-s390x-gnu": "4.23.0", + "@rollup/rollup-linux-x64-gnu": "4.23.0", + "@rollup/rollup-linux-x64-musl": "4.23.0", + "@rollup/rollup-win32-arm64-msvc": "4.23.0", + "@rollup/rollup-win32-ia32-msvc": "4.23.0", + "@rollup/rollup-win32-x64-msvc": "4.23.0", + "fsevents": "~2.3.2" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/rollup-plugin-visualizer": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz", + "integrity": "sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==", "dev": true, + "license": "MIT", "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nypm": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.8.tgz", - "integrity": "sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==", - "dev": true, - "dependencies": { - "citty": "^0.1.6", - "consola": "^3.2.3", - "execa": "^8.0.1", - "pathe": "^1.1.2", - "ufo": "^1.4.0" + "open": "^8.4.0", + "picomatch": "^2.3.1", + "source-map": "^0.7.4", + "yargs": "^17.5.1" }, "bin": { - "nypm": "dist/cli.mjs" + "rollup-plugin-visualizer": "dist/bin/cli.js" }, "engines": { - "node": "^14.16.0 || >=16.10.0" - } - }, - "node_modules/nypm/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" + "node": ">=14" }, - "engines": { - "node": ">=16.17" + "peerDependencies": { + "rollup": "2.x || 3.x || 4.x" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/nypm/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "node_modules/rollup-plugin-visualizer/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/nypm/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "engines": { - "node": ">=16.17.0" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" } }, - "node_modules/nypm/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "license": "MIT", + "dependencies": { + "mri": "^1.1.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=6" } }, - "node_modules/nypm/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, "engines": { - "node": ">=12" + "node": ">=0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nypm/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, + "license": "MIT", "dependencies": { - "path-key": "^4.0.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nypm/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "license": "MIT", "dependencies": { - "mimic-fn": "^4.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/nypm/node_modules/path-key": { + "node_modules/semver-diff": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, "engines": { "node": ">=12" }, @@ -23886,155 +23774,196 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nypm/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "node_modules/semver-utils": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.4.tgz", + "integrity": "sha512-EjnoLE5OGmDAVV/8YDoN5KiajNadjzIp9BAHOhYeQHt7j0UWxjmgsx4YD48wp4Ue1Qogq38F1GNUJNqF1kKKxA==", "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } + "license": "APACHEv2" }, - "node_modules/nypm/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, - "engines": { - "node": ">=12" + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "license": "MIT", + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "license": "MIT" }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">= 0.8" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8.0" } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true, + "license": "ISC" + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" } }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "shebang-regex": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" }, "engines": { "node": ">= 0.4" @@ -24043,27718 +23972,3813 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/oblivious-set": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz", - "integrity": "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==" + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "license": "ISC" }, - "node_modules/ohash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", - "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", - "dev": true + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/sigstore": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz", + "integrity": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "ee-first": "1.1.1" + "@sigstore/bundle": "^1.1.0", + "@sigstore/protobuf-specs": "^0.2.0", + "@sigstore/sign": "^1.0.0", + "@sigstore/tuf": "^1.0.3", + "make-fetch-happen": "^11.0.1" + }, + "bin": { + "sigstore": "bin/sigstore.js" }, "engines": { - "node": ">= 0.8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true, - "engines": { - "node": ">= 0.8" - } + "license": "MIT" }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "license": "MIT", "dependencies": { - "mimic-fn": "^2.1.0" + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, + "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "node_modules/socks": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dev": true, + "license": "MIT", "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "ip-address": "^9.0.5", + "smart-buffer": "^4.2.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 10.0.0", + "npm": ">= 3.0.0" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">= 10" } }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/sort-asc": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz", + "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/ora/node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, + "node_modules/sort-desc": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.2.0.tgz", + "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, + "node_modules/sort-object": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-3.0.3.tgz", + "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "bytewise": "^1.1.0", + "get-value": "^2.0.2", + "is-extendable": "^0.1.1", + "sort-asc": "^0.2.0", + "sort-desc": "^0.2.0", + "union-value": "^1.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/ora/node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=12.20" + "node": ">=0.10.0" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/spawn-please": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/spawn-please/-/spawn-please-2.0.2.tgz", + "integrity": "sha512-KM8coezO6ISQ89c1BzyWNtcn2V2kAVtwIXd3cN/V5a0xPYc1F/vydrRc01wsKFEQ/p+V1a4sw4z2yMITIXrgGw==", "dev": true, + "license": "ISC", "dependencies": { - "p-limit": "^3.0.2" + "cross-spawn": "^7.0.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=14" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true, - "engines": { - "node": ">=6" - } + "license": "CC-BY-3.0" }, - "node_modules/package-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.0.tgz", - "integrity": "sha512-hySwcV8RAWeAfPsXb9/HGSPn8lwDnv6fabH+obUZKX169QknRkRhPxd1yMubpKDskLFATkl3jHpNtVtDPFA0Wg==", + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, + "license": "MIT", "dependencies": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/pacote": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.1.tgz", - "integrity": "sha512-eeqEe77QrA6auZxNHIp+1TzHQ0HBKf5V6c8zcaYZ134EJe1lCi+fjXATkNiEEfbG+e50nu02GLvUtmZcGOYabQ==", + "node_modules/spdx-license-ids": { + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", "dev": true, + "license": "CC0-1.0" + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "license": "MIT", "dependencies": { - "@npmcli/git": "^4.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^4.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^1.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "lib/bin.js" + "extend-shallow": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/pacote/node_modules/fs-minipass": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.1.tgz", - "integrity": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==", - "dev": true, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { - "minipass": "^4.0.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", - "dev": true - }, - "node_modules/parent-module": { + "node_modules/split-string/node_modules/is-extendable": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", "dependencies": { - "callsites": "^3.0.0" + "is-plain-object": "^2.0.4" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/parse-entities": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", - "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/ssri": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", "dev": true, + "license": "ISC", "dependencies": { - "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", - "character-entities-legacy": "^3.0.0", - "character-reference-invalid": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0", - "is-hexadecimal": "^2.0.0" + "minipass": "^7.0.3" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/parse-github-url": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", - "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "license": "MIT" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true, - "bin": { - "parse-github-url": "cli.js" - }, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/std-env": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", + "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==", + "license": "MIT" + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "internal-slot": "^1.0.4" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.4" } }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/store2": { + "version": "2.14.3", + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.3.tgz", + "integrity": "sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==", "dev": true, - "engines": { - "node": ">= 0.8" - } + "license": "MIT" }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/storybook": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.3.4.tgz", + "integrity": "sha512-nzvuK5TsEgJwcWGLGgafabBOxKn37lfJVv7ZoUVPgJIjk2mNRyJDFwYRJzUZaD37eiR/c/lQ6MoaeqlGwiXoxw==", "dev": true, - "engines": { - "node": ">=8" + "license": "MIT", + "dependencies": { + "@storybook/core": "8.3.4" + }, + "bin": { + "getstorybook": "bin/index.cjs", + "sb": "bin/index.cjs", + "storybook": "bin/index.cjs" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "engines": { - "node": ">=0.10.0" + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.6.19" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", "dev": true, + "license": "MIT" + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-scurry/node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=8" } }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/pathe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", - "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" - }, - "node_modules/pathval": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", - "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", "engines": { - "node": "*" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/pbf": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", - "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", "dependencies": { - "ieee754": "^1.1.12", - "resolve-protobuf-schema": "^2.1.0" + "ansi-regex": "^6.0.1" }, - "bin": { - "pbf": "bin/pbf" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/peek-stream": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", - "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", + "node_modules/string.prototype.includes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz", + "integrity": "sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==", "dev": true, + "license": "MIT", "dependencies": { - "buffer-from": "^1.0.0", - "duplexify": "^3.5.0", - "through2": "^2.0.3" + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" } }, - "node_modules/periscopic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "node_modules/string.prototype.matchall": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/periscopic/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0" + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" } }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">=8.6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, - "engines": { - "node": ">=0.10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">=6" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", "dev": true, + "license": "MIT", "dependencies": { - "find-up": "^5.0.0" + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/pkg-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.2.tgz", - "integrity": "sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "dependencies": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.1.1", - "pathe": "^1.1.0" + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/polished": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", - "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.17.8" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" - }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=4" } }, - "node_modules/potpack": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.1.tgz", - "integrity": "sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw==", - "optional": true, - "peer": true - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">=6" } }, - "node_modules/prettier": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", - "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", + "node_modules/strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.1" }, "engines": { - "node": ">=14" + "node": ">=12" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/prettier-fallback": { - "name": "prettier", - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", - "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" - }, + "license": "MIT", "engines": { - "node": ">=14" + "node": ">=8" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pretty-bytes": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.0.tgz", - "integrity": "sha512-Rk753HI8f4uivXi4ZCIYdhmG1V+WKzvRMg/X+M42a6t7D07RcmopXJMDNk6N++7Bl75URRGsb40ruvg7Hcp2wQ==", - "engines": { - "node": "^14.13.1 || >=16.0.0" + "node_modules/strip-literal": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.3.0.tgz", + "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", + "license": "MIT", + "dependencies": { + "acorn": "^8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "node_modules/strip-literal/node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, + "node_modules/style-to-object": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", + "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "inline-style-parser": "0.1.1" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", + "license": "MIT" + }, + "node_modules/supercluster": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", + "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", + "license": "ISC", + "dependencies": { + "kdbush": "^4.0.2" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=4" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "dev": true, + "license": "MIT" }, - "node_modules/pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "node_modules/synchronous-promise": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", + "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==", "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==", + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=6" } }, - "node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "dev": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">= 0.6.0" + "node": ">= 8" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">=0.4.0" + "node": ">=8" } }, - "node_modules/promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dependencies": { - "asap": "~2.0.3" + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=8" } }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "node_modules/telejson": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", + "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", "dev": true, + "license": "MIT", "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" + "memoizerific": "^1.11.3" } }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", "dev": true, + "license": "MIT", "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "rimraf": "~2.6.2" }, "engines": { - "node": ">= 6" + "node": ">=6.0.0" } }, - "node_modules/prompts-ncu": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prompts-ncu/-/prompts-ncu-2.5.1.tgz", - "integrity": "sha512-Hdd7GgV7b76Yh9FP9HL1D9xqtJCJdVPpiM2vDtuoc8W1KfweJe15gutFYmxkq83ViFaagFM8K0UcPCQ/tZq8bA==", + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { - "kleur": "^4.0.1", - "sisteransi": "^1.0.5" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 6" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/prompts-ncu/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "ISC", "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" } }, - "node_modules/property-information": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", - "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" } }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "node_modules/protocol-buffers-schema": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.5.1.tgz", - "integrity": "sha512-YVCvdhxWNDP8/nJDyXLuM+UFsuPk4+1PB7WGPVDzm3HTHbzFLxQYeW2iZpS4mmnXrQJGBzt230t/BbEb7PrQaw==" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 0.10" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true, + "license": "MIT" + }, + "node_modules/texture-compressor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", + "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", + "license": "MIT", "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "argparse": "^1.0.10", + "image-size": "^0.7.4" + }, + "bin": { + "texture-compressor": "bin/texture-compressor.js" } }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "node_modules/tilebelt": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tilebelt/-/tilebelt-1.0.1.tgz", + "integrity": "sha512-cxHzpa5JgsugY9NUVRH43gPaGJw/29LecAn4X7UGOP64+kB8pU4VQ3bIhSyfb5Mk4jDxwl3yk330L/EIhbJ5aw==", + "deprecated": "This module is now under the @mapbox namespace: install @mapbox/tilebelt instead", + "license": "MIT" + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", "dev": true, - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" + "license": "MIT" + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "license": "MIT" + }, + "node_modules/tinypool": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.4.0.tgz", + "integrity": "sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" } }, - "node_modules/pumpify/node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "node_modules/tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==", + "license": "ISC" + }, + "node_modules/tinyspy": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-1.1.1.tgz", + "integrity": "sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" } }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pupa": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", - "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "license": "MIT", "dependencies": { - "escape-goat": "^4.0.0" + "is-number": "^7.0.0" }, "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8.0" } }, - "node_modules/pure-color": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", - "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" + "node_modules/tocbot": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.30.0.tgz", + "integrity": "sha512-c0ucneDHP5zqsbczYxjRj1SWD+6EeD1mUbQPTdVJzNe0aAZH4NyeZt4cQQBjWU4v8tTlJtzDzEgD03sCc5nL1w==", + "dev": true, + "license": "MIT" }, - "node_modules/qrcode-terminal": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", - "integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==", + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, - "bin": { - "qrcode-terminal": "bin/qrcode-terminal.js" + "license": "MIT", + "engines": { + "node": ">=0.6" } }, - "node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "dev": true, + "node_modules/topojson-client": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", + "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", + "license": "ISC", "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" + "commander": "2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "topo2geo": "bin/topo2geo", + "topomerge": "bin/topomerge", + "topoquantize": "bin/topoquantize" } }, - "node_modules/quadbin": { - "version": "0.1.9", - "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.9.tgz", - "integrity": "sha512-5V6m6+cL/6+uBl3hYL+CWF06rRvlHkIepYKGQjTLYaHhu9InPppql0+0ROiCaOQdz8gPNlgge3glk5Qg1mWOYw==", - "dependencies": { - "@mapbox/tile-cover": "3.0.1" - }, + "node_modules/topojson-client/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/transit-js": { + "version": "0.8.874", + "resolved": "https://registry.npmjs.org/transit-js/-/transit-js-0.8.874.tgz", + "integrity": "sha512-IDJJGKRzUbJHmN0P15HBBa05nbKor3r2MmG6aSt0UxXIlJZZKcddTk67/U7WyAeW9Hv/VYI02IqLzolsC4sbPA==", + "license": "Apache-2.0", "engines": { - "node": ">=14" + "node": ">= 0.10.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", "dev": true, - "engines": { - "node": ">=10" - }, + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/quickselect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", - "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" - }, - "node_modules/ramda": { - "version": "0.29.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", - "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", "dev": true, + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/ramda" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6.10" } }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "node_modules/tsconfck": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.3.tgz", + "integrity": "sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==", "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" }, "engines": { - "node": ">= 0.8" + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, + "license": "MIT", "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" }, "bin": { - "rc": "cli.js" + "json5": "lib/cli.js" } }, - "node_modules/rc-config-loader": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.2.tgz", - "integrity": "sha512-qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg==", + "node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, + "license": "MIT", "dependencies": { - "debug": "^4.3.4", - "js-yaml": "^4.1.0", - "json5": "^2.2.2", - "require-from-string": "^2.0.2" + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "node_modules/rc/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "license": "0BSD" }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "node_modules/tuf-js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", + "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", "dev": true, + "license": "MIT", + "dependencies": { + "@tufjs/models": "1.0.4", + "debug": "^4.3.4", + "make-fetch-happen": "^11.1.1" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/react": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", - "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "prelude-ls": "^1.2.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/react-base16-styling": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", - "integrity": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", - "dependencies": { - "base16": "^1.0.0", - "lodash.curry": "^4.0.1", - "lodash.flow": "^3.3.0", - "pure-color": "^1.2.0" + "node_modules/type-detect": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz", + "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/react-colorful": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", - "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", - "dev": true, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" + "node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-docgen": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", - "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.18.9", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", - "@types/babel__core": "^7.18.0", - "@types/babel__traverse": "^7.18.0", - "@types/doctrine": "^0.0.9", - "@types/resolve": "^1.20.2", - "doctrine": "^3.0.0", - "resolve": "^1.22.1", - "strip-indent": "^4.0.0" + "media-typer": "0.3.0", + "mime-types": "~2.1.24" }, "engines": { - "node": ">=16.14.0" + "node": ">= 0.6" } }, - "node_modules/react-docgen-typescript": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", - "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, - "peerDependencies": { - "typescript": ">= 4.3.x" - } - }, - "node_modules/react-docgen/node_modules/@types/doctrine": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", - "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", - "dev": true - }, - "node_modules/react-dom": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", - "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" }, - "peerDependencies": { - "react": "17.0.2" + "engines": { + "node": ">= 0.4" } }, - "node_modules/react-element-to-jsx-string": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", - "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, + "license": "MIT", "dependencies": { - "@base2/pretty-print-object": "1.0.1", - "is-plain-object": "5.0.0", - "react-is": "18.1.0" + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, - "peerDependencies": { - "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", - "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0" - } - }, - "node_modules/react-element-to-jsx-string/node_modules/react-is": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", - "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", - "dev": true - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-json-view": { - "version": "1.21.3", - "resolved": "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz", - "integrity": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==", - "dependencies": { - "flux": "^4.0.1", - "react-base16-styling": "^0.6.0", - "react-lifecycles-compat": "^3.0.4", - "react-textarea-autosize": "^8.3.2" + "engines": { + "node": ">= 0.4" }, - "peerDependencies": { - "react": "^17.0.0 || ^16.3.0 || ^15.5.4", - "react-dom": "^17.0.0 || ^16.3.0 || ^15.5.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-map-gl": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.1.6.tgz", - "integrity": "sha512-9XbrvpFF67Fyi+e6vRLJFnGpo3UF6ZHifIa8cS/wUYSsnv9sVyzGsN++FJy57zkz3Jh3kmf0xKZemR8K0FZLVw==", + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "license": "MIT", "dependencies": { - "@maplibre/maplibre-gl-style-spec": "^19.2.1", - "@types/mapbox-gl": ">=1.0.0" - }, - "peerDependencies": { - "mapbox-gl": ">=1.13.0", - "maplibre-gl": ">=1.13.0", - "react": ">=16.3.0", - "react-dom": ">=16.3.0" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, - "peerDependenciesMeta": { - "mapbox-gl": { - "optional": true - }, - "maplibre-gl": { - "optional": true - } - } - }, - "node_modules/react-map-gl/node_modules/@types/mapbox-gl": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.4.0.tgz", - "integrity": "sha512-Na5vXw6Ez0L5To/+pL78dWPNoG6QlPdEDdnkSmIL5HWxemD+s0pTmTWDbMj7tcqJ2hnVyOyukVIveR9HPi7eeA==", - "dependencies": { - "@types/geojson": "*" - } - }, - "node_modules/react-query": { - "version": "3.39.3", - "resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.3.tgz", - "integrity": "sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "broadcast-channel": "^3.4.1", - "match-sorter": "^6.0.2" + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/react-remove-scroll": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", - "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, + "license": "MIT", "dependencies": { - "react-remove-scroll-bar": "^2.3.3", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/react-remove-scroll-bar": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", - "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, + "license": "MIT", "dependencies": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } + "node": ">=14.17" } }, - "node_modules/react-remove-scroll-bar/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true + "node_modules/typewise": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz", + "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==", + "license": "MIT", + "dependencies": { + "typewise-core": "^1.2.0" + } }, - "node_modules/react-remove-scroll/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true + "node_modules/typewise-core": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz", + "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==", + "license": "MIT" }, - "node_modules/react-resize-detector": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-8.0.4.tgz", - "integrity": "sha512-ln9pMAob8y8mc9UI4aZuuWFiyMqBjnTs/sxe9Vs9dPXUjwCTeKK1FP8I75ufnb/2mEEZXG6wOo/fjMcBRRuAXw==", - "dependencies": { - "lodash": "^4.17.21" + "node_modules/ua-parser-js": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz", + "integrity": "sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" }, - "peerDependencies": { - "react": "^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": "*" } }, - "node_modules/react-router": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.9.0.tgz", - "integrity": "sha512-51lKevGNUHrt6kLuX3e/ihrXoXCa9ixY/nVWRLlob4r/l0f45x3SzBvYJe3ctleLUQQ5fVa4RGgJOTH7D9Umhw==", - "dependencies": { - "@remix-run/router": "1.4.0" + "node_modules/ufo": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", + "license": "MIT" + }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": ">=16.8" + "node": ">=0.8.0" } }, - "node_modules/react-router-dom": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.9.0.tgz", - "integrity": "sha512-/seUAPY01VAuwkGyVBPCn1OXfVbaWGGu4QN9uj0kCPcTyNYgL1ldZpxZUpRU7BLheKQI4Twtl/OW2nHRF1u26Q==", + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "license": "MIT", "dependencies": { - "@remix-run/router": "1.4.0", - "react-router": "6.9.0" - }, - "engines": { - "node": ">=14" + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/react-spring-bottom-sheet": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/react-spring-bottom-sheet/-/react-spring-bottom-sheet-3.4.1.tgz", - "integrity": "sha512-yDFqiPMm/fjefjnOe6Q9zxccbCl6HMUKsK5bWgfGHJIj4zmXVKio5d4icQvmOLuwpuCA2pwv4J6nGWS6fUZidQ==", - "dependencies": { - "@juggle/resize-observer": "^3.2.0", - "@reach/portal": "^0.13.0", - "@xstate/react": "^1.2.0", - "body-scroll-lock": "^3.1.5", - "focus-trap": "^6.2.2", - "react-spring": "^8.0.27", - "react-use-gesture": "^8.0.1", - "xstate": "^4.15.1" - }, - "peerDependencies": { - "react": "^16.14.0 || 17 || 18" + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/react-spring-bottom-sheet/node_modules/react-spring": { - "version": "8.0.27", - "resolved": "https://registry.npmjs.org/react-spring/-/react-spring-8.0.27.tgz", - "integrity": "sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==", + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.3.1", - "prop-types": "^15.5.8" + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" }, - "peerDependencies": { - "react": ">= 16.8.0", - "react-dom": ">= 16.8.0" + "engines": { + "node": ">=4" } }, - "node_modules/react-string-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/react-string-replace/-/react-string-replace-1.1.0.tgz", - "integrity": "sha512-N6RalSDFGbOHs0IJi1H611WbZsvk3ZT47Jl2JEXFbiS3kTwsdCYij70Keo/tWtLy7sfhDsYm7CwNM/WmjXIaMw==", + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">=4" } }, - "node_modules/react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, - "dependencies": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, + "license": "MIT", "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } + "node": ">=4" } }, - "node_modules/react-style-singleton/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - }, - "node_modules/react-textarea-autosize": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.4.0.tgz", - "integrity": "sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==", - "dependencies": { - "@babel/runtime": "^7.10.2", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=18" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/react-use-gesture": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/react-use-gesture/-/react-use-gesture-8.0.1.tgz", - "integrity": "sha512-CXzUNkulUdgouaAlvAsC5ZVo0fi9KGSBSk81WrE4kOIcJccpANe9zZkAYr5YZZhqpicIFxitsrGVS4wmoMun9A==", - "deprecated": "This package is no longer maintained. Please use @use-gesture/react instead", - "peerDependencies": { - "react": ">= 16.8.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/react-vega": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/react-vega/-/react-vega-7.6.0.tgz", - "integrity": "sha512-2oMML4wH9qWLnZPRxJm06ozwrVN/K+nkjqdI5/ofWWsrBnnH4iB9rRKrsV8px0nlWgZrwfdCH4g5RUiyyJHWSA==", + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "license": "MIT", "dependencies": { - "@types/react": "*", - "fast-deep-equal": "^3.1.1", - "prop-types": "^15.8.1", - "vega-embed": "^6.5.1" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" }, - "peerDependencies": { - "react": "^16 || ^17 || ^18", - "vega": "*", - "vega-lite": "*" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/read-package-json": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.0.tgz", - "integrity": "sha512-b/9jxWJ8EwogJPpv99ma+QwtqB7FSl3+V6UXS7Aaay8/5VwMY50oIFooY1UKXMWpfNCM6T/PoGqa5GD1g9xf9w==", + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", "dev": true, + "license": "ISC", "dependencies": { - "glob": "^8.0.1", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", - "npm-normalize-package-bin": "^3.0.0" + "unique-slug": "^4.0.0" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", "dev": true, + "license": "ISC", "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" + "imurmurhash": "^0.1.4" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { + "node_modules/unique-string": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dev": true, + "license": "MIT", + "dependencies": { + "crypto-random-string": "^4.0.0" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-package-json/node_modules/brace-expansion": { + "node_modules/unist-util-generated": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-package-json/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" + "@types/unist": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-package-json/node_modules/hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", "dev": true, + "license": "MIT", "dependencies": { - "lru-cache": "^7.5.1" + "@types/unist": "^2.0.0" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "node_modules/unist-util-position-from-estree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", + "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-package-json/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/read-package-json/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/unist-util-remove-position": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", + "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-package-json/node_modules/normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", + "node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "dev": true, + "license": "MIT", "dependencies": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" + "@types/unist": "^2.0.0" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "dev": true, + "license": "MIT", "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "dev": true, + "license": "MIT", "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 10.0.0" } }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, + "node_modules/unload": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz", + "integrity": "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==", + "license": "Apache-2.0", "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" + "@babel/runtime": "^7.6.2", + "detect-node": "^2.0.4" } }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, + "license": "MIT", "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/unplugin": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.14.1.tgz", + "integrity": "sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==", "dev": true, + "license": "MIT", "dependencies": { - "p-limit": "^2.2.0" + "acorn": "^8.12.1", + "webpack-virtual-modules": "^0.6.2" }, "engines": { - "node": ">=8" + "node": ">=14.0.0" + }, + "peerDependencies": { + "webpack-sources": "^3" + }, + "peerDependenciesMeta": { + "webpack-sources": { + "optional": true + } } }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "node_modules/unplugin/node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=8" + "node": ">=0.4.0" } }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/readable-stream": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.1.tgz", - "integrity": "sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==", + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, - "engines": { - "node": ">= 6" + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/update-notifier": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz", + "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "picomatch": "^2.2.1" + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", + "is-installed-globally": "^0.4.0", + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" }, "engines": { - "node": ">=8.10.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" } }, - "node_modules/recast": { - "version": "0.23.9", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.9.tgz", - "integrity": "sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==", + "node_modules/update-notifier/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, - "dependencies": { - "ast-types": "^0.16.1", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tiny-invariant": "^1.3.3", - "tslib": "^2.0.1" - }, + "license": "MIT", "engines": { - "node": ">= 4" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/recast/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" } }, - "node_modules/recast/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true + "node_modules/urs": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/urs/-/urs-0.0.8.tgz", + "integrity": "sha512-LaSSPpr91XrVA3vW2zPupw4K6DSQEDKdL4yQZX1mO2fpljIMpB5zctrjRvxLurelWSgKsHsCmfHNCImscryirQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.13.1 || ^17.0.0", + "react-dom": "^16.13.1 || ^17.0.0" + } }, - "node_modules/recoil": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.7.tgz", - "integrity": "sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==", + "node_modules/use-callback-ref": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", + "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", + "dev": true, + "license": "MIT", "dependencies": { - "hamt_plus": "1.0.2" + "tslib": "^2.0.0" }, - "peerDependencies": { - "react": ">=16.13.1" + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" }, "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { + "@types/react": { "optional": true } } }, - "node_modules/recoil-sync": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/recoil-sync/-/recoil-sync-0.2.0.tgz", - "integrity": "sha512-ZYZM1C4LAhGr3EeMMI5MwT4eaEqsr+ddjB4EwdgN8HXXLmE7P5FVCdFHV3HJtMzxR3Y8sOmJDfN1IPrezwKoRg==", + "node_modules/use-composed-ref": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", + "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/use-http": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/use-http/-/use-http-1.0.28.tgz", + "integrity": "sha512-MWux13mGDBj+bzuTZJczDIjFu5r7D9eYrrKyKaCo+KFvoGRE9mpNHLK21pAJb2Sbdh/J85y5E4b2xR+IH2WOkg==", + "license": "MIT", "dependencies": { - "@recoiljs/refine": "^0.1.1", - "transit-js": "^0.8.874" + "urs": "^0.0.8", + "use-ssr": "^1.0.24", + "utility-types": "^3.10.0" }, "peerDependencies": { - "recoil": ">=0.7.3" + "react": "^16.13.1 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0" } }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", - "dev": true, + "node_modules/use-latest": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", + "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", + "license": "MIT", "dependencies": { - "regenerate": "^1.4.2" + "use-isomorphic-layout-effect": "^1.1.1" }, - "engines": { - "node": ">=4" + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "node_modules/use-resize-observer": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", + "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.8.4" + "@juggle/resize-observer": "^3.3.1" + }, + "peerDependencies": { + "react": "16.8.0 - 18", + "react-dom": "16.8.0 - 18" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "node_modules/use-sidecar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", + "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, + "node_modules/use-ssr": { + "version": "1.0.25", + "resolved": "https://registry.npmjs.org/use-ssr/-/use-ssr-1.0.25.tgz", + "integrity": "sha512-VYF8kJKI+X7+U4XgGoUER2BUl0vIr+8OhlIhyldgSGE0KHMoDRXPvWeHUUeUktq7ACEOVLzXGq1+QRxcvtwvyQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.13.1 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/use-subscription": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.8.2.tgz", + "integrity": "sha512-yC2ShScvQ1lAGRp5Y6pz1MqBIU81REfJ/sQIe16BCgKK9mRlZCnU90uY0alKsN6e/Next0vXTsvH3HbAfdH68w==", + "license": "MIT", "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "use-sync-external-store": "^1.2.2" }, - "engines": { - "node": ">=4" + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", + "node_modules/use-sync-external-store": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", + "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "dev": true, + "license": "MIT", "dependencies": { - "@pnpm/npm-conf": "^2.1.0" - }, - "engines": { - "node": ">=14" + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, - "node_modules/registry-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", - "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true, - "dependencies": { - "rc": "1.2.8" - }, + "license": "MIT" + }, + "node_modules/utility-types": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", + "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", + "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 4" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true, - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" + "license": "MIT", + "engines": { + "node": ">= 0.4.0" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", "bin": { - "jsesc": "bin/jsesc" + "uuid": "dist/bin/uuid" } }, - "node_modules/remark-external-links": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", - "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", + "node_modules/uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", "dev": true, + "license": "MIT", "dependencies": { - "extend": "^3.0.0", - "is-absolute-url": "^3.0.0", - "mdast-util-definitions": "^4.0.0", - "space-separated-tokens": "^1.0.0", - "unist-util-visit": "^2.0.0" + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" } }, - "node_modules/remark-mdx": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz", - "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", + "node_modules/uvu/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true, - "dependencies": { - "mdast-util-mdx": "^2.0.0", - "micromark-extension-mdxjs": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/remark-parse": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", - "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/remark-rehype": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", - "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", + "node_modules/validate-npm-package-name": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", "dev": true, - "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-to-hast": "^12.1.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/remark-slug": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", - "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, - "dependencies": { - "github-slugger": "^1.0.0", - "mdast-util-to-string": "^1.0.0", - "unist-util-visit": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "node_modules/remote-git-tags": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remote-git-tags/-/remote-git-tags-3.0.0.tgz", - "integrity": "sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/vega": { + "version": "5.30.0", + "resolved": "https://registry.npmjs.org/vega/-/vega-5.30.0.tgz", + "integrity": "sha512-ZGoC8LdfEUV0LlXIuz7hup9jxuQYhSaWek2M7r9dEHAPbPrzSQvKXZ0BbsJbrarM100TGRpTVN/l1AFxCwDkWw==", + "license": "BSD-3-Clause", + "dependencies": { + "vega-crossfilter": "~4.1.2", + "vega-dataflow": "~5.7.6", + "vega-encode": "~4.10.1", + "vega-event-selector": "~3.0.1", + "vega-expression": "~5.1.1", + "vega-force": "~4.2.1", + "vega-format": "~1.1.2", + "vega-functions": "~5.15.0", + "vega-geo": "~4.4.2", + "vega-hierarchy": "~4.1.2", + "vega-label": "~1.3.0", + "vega-loader": "~4.5.2", + "vega-parser": "~6.4.0", + "vega-projection": "~1.6.1", + "vega-regression": "~1.3.0", + "vega-runtime": "~6.2.0", + "vega-scale": "~7.4.1", + "vega-scenegraph": "~4.13.0", + "vega-statistics": "~1.9.0", + "vega-time": "~2.1.2", + "vega-transforms": "~4.12.0", + "vega-typings": "~1.3.1", + "vega-util": "~1.17.2", + "vega-view": "~5.13.0", + "vega-view-transforms": "~4.6.0", + "vega-voronoi": "~4.2.3", + "vega-wordcloud": "~4.1.5" } }, - "node_modules/remove-accents": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", - "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" + "node_modules/vega-canvas": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz", + "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q==", + "license": "BSD-3-Clause" }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "engines": { - "node": ">=0.10.0" + "node_modules/vega-crossfilter": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.2.tgz", + "integrity": "sha512-J7KVEXkpfRJBfRvwLxn5vNCzQCNkrnzmDvkvwhuiwT4gPm5sk7MK5TuUP8GCl/iKYw+kWeVXEtrVHwWtug+bcQ==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-array": "^3.2.2", + "vega-dataflow": "^5.7.6", + "vega-util": "^1.17.2" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node_modules/vega-dataflow": { + "version": "5.7.6", + "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.6.tgz", + "integrity": "sha512-9Md8+5iUC1MVKPKDyZ7pCEHk6I9am+DgaMzZqo/27O/KI4f23/WQXPyuI8jbNmc/mkm340P0TKREmzL5M7+2Dg==", + "license": "BSD-3-Clause", + "dependencies": { + "vega-format": "^1.1.2", + "vega-loader": "^4.5.2", + "vega-util": "^1.17.2" } }, - "node_modules/requireindex": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", - "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", - "dev": true, - "engines": { - "node": ">=0.10.5" + "node_modules/vega-embed": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/vega-embed/-/vega-embed-6.26.0.tgz", + "integrity": "sha512-AZCTdKHDAuhp6TFZRQOOs332tStCwZr/5e4uZMNEuJL69A57cT66NNZJdNiCP6u66REzIToYtMJhMTL9wl5B3A==", + "license": "BSD-3-Clause", + "dependencies": { + "fast-json-patch": "^3.1.1", + "json-stringify-pretty-compact": "^3.0.0", + "semver": "^7.6.2", + "tslib": "^2.6.3", + "vega-interpreter": "^1.0.5", + "vega-schema-url-parser": "^2.2.0", + "vega-themes": "^2.15.0", + "vega-tooltip": "^0.34.0" + }, + "peerDependencies": { + "vega": "^5.21.0", + "vega-lite": "*" } }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "node_modules/vega-encode": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.10.1.tgz", + "integrity": "sha512-d25nVKZDrg109rC65M8uxE+7iUrTxktaqgK4fU3XZBgpWlh1K4UbU5nDag7kiHVVN4tKqwgd+synEotra9TiVQ==", + "license": "BSD-3-Clause", "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "d3-array": "^3.2.2", + "d3-interpolate": "^3.0.1", + "vega-dataflow": "^5.7.6", + "vega-scale": "^7.4.1", + "vega-util": "^1.17.2" } }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true + "node_modules/vega-event-selector": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz", + "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A==", + "license": "BSD-3-Clause" }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" + "node_modules/vega-expression": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.1.1.tgz", + "integrity": "sha512-zv9L1Hm0KHE9M7mldHyz8sXbGu3KmC0Cdk7qfHkcTNS75Jpsem6jkbu6ZAwx5cNUeW91AxUQOu77r4mygq2wUQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@types/estree": "^1.0.0", + "vega-util": "^1.17.2" } }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + "node_modules/vega-force": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.1.tgz", + "integrity": "sha512-2BcuuqFr77vcCyKfcpedNFeYMxi+XEFCrlgLWNx7YV0PI8pdP5y/yPkzyuE9Tb894+KkRAvfQHZRAshcnFNcMw==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-force": "^3.0.0", + "vega-dataflow": "^5.7.6", + "vega-util": "^1.17.2" } }, - "node_modules/resolve-protobuf-schema": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", - "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "node_modules/vega-format": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.2.tgz", + "integrity": "sha512-0kUfAj0dg0U6GcEY0Kp6LiSTCZ8l8jl1qVdQyToMyKmtZg/q56qsiJQZy3WWRr1MtWkTIZL71xSJXgjwjeUaAw==", + "license": "BSD-3-Clause", "dependencies": { - "protocol-buffers-schema": "^3.3.1" + "d3-array": "^3.2.2", + "d3-format": "^3.1.0", + "d3-time-format": "^4.1.0", + "vega-time": "^2.1.2", + "vega-util": "^1.17.2" } }, - "node_modules/responselike": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", - "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", - "dev": true, + "node_modules/vega-functions": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.15.0.tgz", + "integrity": "sha512-pCqmm5efd+3M65jrJGxEy3UGuRksmK6DnWijoSNocnxdCBxez+yqUUVX9o2pN8VxMe3648vZnR9/Vk5CXqRvIQ==", + "license": "BSD-3-Clause", "dependencies": { - "lowercase-keys": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "d3-array": "^3.2.2", + "d3-color": "^3.1.0", + "d3-geo": "^3.1.0", + "vega-dataflow": "^5.7.6", + "vega-expression": "^5.1.1", + "vega-scale": "^7.4.1", + "vega-scenegraph": "^4.13.0", + "vega-selections": "^5.4.2", + "vega-statistics": "^1.9.0", + "vega-time": "^2.1.2", + "vega-util": "^1.17.2" } }, - "node_modules/restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "dev": true, + "node_modules/vega-functions/node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "d3-array": "2.5.0 - 3" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true, - "engines": { - "node": ">= 4" + "node_modules/vega-geo": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.2.tgz", + "integrity": "sha512-unuV/UxUHf6UJu6GYxMZonC3SZlMfFXYLOkgEsRSvmsMPt3+CVv8FmG88dXNRUJUrdROrJepgecqx0jOwMSnGA==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-array": "^3.2.2", + "d3-color": "^3.1.0", + "d3-geo": "^3.1.0", + "vega-canvas": "^1.2.7", + "vega-dataflow": "^5.7.6", + "vega-projection": "^1.6.1", + "vega-statistics": "^1.9.0", + "vega-util": "^1.17.2" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, + "node_modules/vega-geo/node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/vega-hierarchy": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.2.tgz", + "integrity": "sha512-m+xDtT5092YPSnV0rdTLW+AWmoCb+A54JQ66MUJwiDBpKxvfKnTiQeuiWDU2YudjUoXZN9EBOcI6QHF8H2Lu2A==", + "license": "BSD-3-Clause", "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "d3-hierarchy": "^3.1.2", + "vega-dataflow": "^5.7.6", + "vega-util": "^1.17.2" } }, - "node_modules/robust-predicates": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz", - "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==" + "node_modules/vega-interpreter": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/vega-interpreter/-/vega-interpreter-1.0.5.tgz", + "integrity": "sha512-po6oTOmeQqr1tzTCdD15tYxAQLeUnOVirAysgVEemzl+vfmvcEP7jQmlc51jz0jMA+WsbmE6oJywisQPu/H0Bg==", + "license": "BSD-3-Clause" }, - "node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node_modules/vega-label": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.3.0.tgz", + "integrity": "sha512-EfSFSCWAwVPsklM5g0gUEuohALgryuGC/SKMmsOH7dYT/bywmLBZhLVbrE+IHJAUauoGrMhYw1mqnXL/0giJBg==", + "license": "BSD-3-Clause", + "dependencies": { + "vega-canvas": "^1.2.7", + "vega-dataflow": "^5.7.6", + "vega-scenegraph": "^4.13.0", + "vega-util": "^1.17.2" } }, - "node_modules/rollup-plugin-visualizer": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.0.tgz", - "integrity": "sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==", - "dev": true, + "node_modules/vega-lite": { + "version": "5.21.0", + "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-5.21.0.tgz", + "integrity": "sha512-hNxM9nuMqpI1vkUOhEx6ewEf23WWLmJxSFJ4TA86AW43ixJyqcLV+iSCO0NipuVTE0rlDcc2e8joSewWyOlEwA==", + "license": "BSD-3-Clause", "dependencies": { - "open": "^8.4.0", - "picomatch": "^2.3.1", - "source-map": "^0.7.4", - "yargs": "^17.5.1" + "json-stringify-pretty-compact": "~3.0.0", + "tslib": "~2.6.3", + "vega-event-selector": "~3.0.1", + "vega-expression": "~5.1.1", + "vega-util": "~1.17.2", + "yargs": "~17.7.2" }, "bin": { - "rollup-plugin-visualizer": "dist/bin/cli.js" + "vl2pdf": "bin/vl2pdf", + "vl2png": "bin/vl2png", + "vl2svg": "bin/vl2svg", + "vl2vg": "bin/vl2vg" }, "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { - "rollup": "2.x || 3.x" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "vega": "^5.24.0" } }, - "node_modules/rollup-plugin-visualizer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } + "node_modules/vega-lite/node_modules/tslib": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", + "license": "0BSD" }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/vega-loader": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.2.tgz", + "integrity": "sha512-ktIdGz3DRIS3XfTP9lJ6oMT5cKwC86nQkjUbXZbOtwXQFVNE2xVWBuH13GP6FKUZxg5hJCMtb5v/e/fwTvhKsQ==", + "license": "BSD-3-Clause", "dependencies": { - "queue-microtask": "^1.2.2" + "d3-dsv": "^3.0.1", + "node-fetch": "^2.6.7", + "topojson-client": "^3.1.0", + "vega-format": "^1.1.2", + "vega-util": "^1.17.2" } }, - "node_modules/rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" + "node_modules/vega-parser": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.4.0.tgz", + "integrity": "sha512-/hFIJs0yITxfvLIfhhcpUrcbKvu4UZYoMGmly5PSsbgo60oAsVQW8ZbX2Ji3iNFqZJh1ifoX/P0j+9wep1OISw==", + "license": "BSD-3-Clause", + "dependencies": { + "vega-dataflow": "^5.7.6", + "vega-event-selector": "^3.0.1", + "vega-functions": "^5.15.0", + "vega-scale": "^7.4.1", + "vega-util": "^1.17.2" + } }, - "node_modules/sade": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dev": true, + "node_modules/vega-projection": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.1.tgz", + "integrity": "sha512-sqfnAAHumU7MWU1tQN3b6HNgKGF3legek0uLHhjLKcDJQxEc7kwcD18txFz2ffQks6d5j+AUhBiq4GARWf0DEQ==", + "license": "BSD-3-Clause", "dependencies": { - "mri": "^1.1.0" - }, - "engines": { - "node": ">=6" + "d3-geo": "^3.1.0", + "d3-geo-projection": "^4.0.0", + "vega-scale": "^7.4.1" } }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dev": true, + "node_modules/vega-projection/node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" + "d3-array": "2.5.0 - 3" }, "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, + "node_modules/vega-regression": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.3.0.tgz", + "integrity": "sha512-gxOQfmV7Ft/MYKpXDEo09WZyBuKOBqxqDRWay9KtfGq/E0Y4vbTPsWLv2cB1ToPJdKE6XSN6Re9tCIw5M/yMUg==", + "license": "BSD-3-Clause", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "d3-array": "^3.2.2", + "vega-dataflow": "^5.7.6", + "vega-statistics": "^1.9.0", + "vega-util": "^1.17.2" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scheduler": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", - "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "node_modules/vega-runtime": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.2.0.tgz", + "integrity": "sha512-30UXbujWjKNd5aeP+oeHuwFmzuyVYlBj4aDy9+AjfWLECu8wJt4K01vwegcaGPdCWcPLVIv4Oa9Lob4mcXn5KQ==", + "license": "BSD-3-Clause", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "vega-dataflow": "^5.7.6", + "vega-util": "^1.17.2" } }, - "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "node_modules/vega-scale": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.4.1.tgz", + "integrity": "sha512-dArA28DbV/M92O2QvswnzCmQ4bq9WwLKUoyhqFYWCltmDwkmvX7yhqiFLFMWPItIm7mi4Qyoygby6r4DKd1X2A==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-array": "^3.2.2", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-scale-chromatic": "^3.1.0", + "vega-time": "^2.1.2", + "vega-util": "^1.17.2" } }, - "node_modules/semver-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", - "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", - "dev": true, + "node_modules/vega-scenegraph": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.13.0.tgz", + "integrity": "sha512-nfl45XtuqB5CxyIZJ+bbJ+dofzosPCRlmF+eUQo+0J23NkNXsTzur+1krJDSdhcw0SOYs4sbYRoMz1cpuOM4+Q==", + "license": "BSD-3-Clause", "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "d3-path": "^3.1.0", + "d3-shape": "^3.2.0", + "vega-canvas": "^1.2.7", + "vega-loader": "^4.5.2", + "vega-scale": "^7.4.1", + "vega-util": "^1.17.2" } }, - "node_modules/semver-utils": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.4.tgz", - "integrity": "sha512-EjnoLE5OGmDAVV/8YDoN5KiajNadjzIp9BAHOhYeQHt7j0UWxjmgsx4YD48wp4Ue1Qogq38F1GNUJNqF1kKKxA==", - "dev": true + "node_modules/vega-schema-url-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-2.2.0.tgz", + "integrity": "sha512-yAtdBnfYOhECv9YC70H2gEiqfIbVkq09aaE4y/9V/ovEFmH9gPKaEgzIZqgT7PSPQjKhsNkb6jk6XvSoboxOBw==", + "license": "BSD-3-Clause" }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, + "node_modules/vega-selections": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.2.tgz", + "integrity": "sha512-99FUhYmg0jOJr2/K4TcEURmJRkuibrCDc8KBUX7qcQEITzrZ5R6a4QE+sarCvbb3hi8aA9GV2oyST6MQeA9mgQ==", + "license": "BSD-3-Clause", "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" + "d3-array": "3.2.4", + "vega-expression": "^5.0.1", + "vega-util": "^1.17.1" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, + "node_modules/vega-statistics": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.9.0.tgz", + "integrity": "sha512-GAqS7mkatpXcMCQKWtFu1eMUKLUymjInU0O8kXshWaQrVWjPIO2lllZ1VNhdgE0qGj4oOIRRS11kzuijLshGXQ==", + "license": "BSD-3-Clause", "dependencies": { - "ms": "2.0.0" + "d3-array": "^3.2.2" } }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "node_modules/vega-themes": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-2.15.0.tgz", + "integrity": "sha512-DicRAKG9z+23A+rH/3w3QjJvKnlGhSbbUXGjBvYGseZ1lvj9KQ0BXZ2NS/+MKns59LNpFNHGi9us/wMlci4TOA==", + "license": "BSD-3-Clause", + "peerDependencies": { + "vega": "*", + "vega-lite": "*" + } }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, + "node_modules/vega-time": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.2.tgz", + "integrity": "sha512-6rXc6JdDt8MnCRy6UzUCsa6EeFycPDmvioMddLfKw38OYCV8pRQC5nw44gyddOwXgUTJLiCtn/sp53P0iA542A==", + "license": "BSD-3-Clause", "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" + "d3-array": "^3.2.2", + "d3-time": "^3.1.0", + "vega-util": "^1.17.2" } }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", - "dev": true, + "node_modules/vega-tooltip": { + "version": "0.34.0", + "resolved": "https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-0.34.0.tgz", + "integrity": "sha512-TtxwkcLZ5aWQTvKGlfWDou8tISGuxmqAW1AgGZjrDpf75qsXvgtbPdRAAls2LZMqDxpr5T1kMEZs9XbSpiI8yw==", + "license": "BSD-3-Clause", "dependencies": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "vega-util": "^1.17.2" } }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "node_modules/vega-transforms": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.12.0.tgz", + "integrity": "sha512-bh/2Qbj85O70mjfLRgPKAsABArgSUP0k+GjmaY54zukIRxoGxKju+85nigeX/aR/INpEqNWif+5lL+NvmyWA5w==", + "license": "BSD-3-Clause", "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" + "d3-array": "^3.2.2", + "vega-dataflow": "^5.7.6", + "vega-statistics": "^1.9.0", + "vega-time": "^2.1.2", + "vega-util": "^1.17.2" } }, - "node_modules/set-value/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/vega-typings": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-1.3.1.tgz", + "integrity": "sha512-j9Sdgmvowz09jkMgTFGVfiv7ycuRP/TQkdHRPXIYwt3RDgPQn7inyFcJ8C8ABFt4MiMWdjOwbneF6KWW8TRXIw==", + "license": "BSD-3-Clause", "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" + "@types/geojson": "7946.0.4", + "vega-event-selector": "^3.0.1", + "vega-expression": "^5.1.1", + "vega-util": "^1.17.2" } }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + "node_modules/vega-typings/node_modules/@types/geojson": { + "version": "7946.0.4", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.4.tgz", + "integrity": "sha512-MHmwBtCb7OCv1DSivz2UNJXPGU/1btAWRKlqJ2saEhVJkpkvqHMMaOpKg0v4sAbDWSQekHGvPVMM8nQ+Jen03Q==", + "license": "MIT" }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true + "node_modules/vega-util": { + "version": "1.17.2", + "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.2.tgz", + "integrity": "sha512-omNmGiZBdjm/jnHjZlywyYqafscDdHaELHx1q96n5UOz/FlO9JO99P4B3jZg391EFG8dqhWjQilSf2JH6F1mIw==", + "license": "BSD-3-Clause" }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, + "node_modules/vega-view": { + "version": "5.13.0", + "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.13.0.tgz", + "integrity": "sha512-ZPAAQ3iYz6YrQjJoDT+0bcxJkXt9PKF5v4OO7Omw8PFhkIv++jFXeKlQTW1bBtyQ92dkdGGHv5lYY67Djqjf3A==", + "license": "BSD-3-Clause", "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" + "d3-array": "^3.2.2", + "d3-timer": "^3.0.1", + "vega-dataflow": "^5.7.6", + "vega-format": "^1.1.2", + "vega-functions": "^5.15.0", + "vega-runtime": "^6.2.0", + "vega-scenegraph": "^4.13.0", + "vega-util": "^1.17.2" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, + "node_modules/vega-view-transforms": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.6.0.tgz", + "integrity": "sha512-z3z66aJTA3ZRo4oBY4iBXnn+A4KqBGZT/UrlKDbm+7Ec+Ip+hK2tF8Kmhp/WNcMsDZoUWFqLJgR2VgOgvJk9RA==", + "license": "BSD-3-Clause", "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" + "vega-dataflow": "^5.7.6", + "vega-scenegraph": "^4.13.0", + "vega-util": "^1.17.2" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/vega-voronoi": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.3.tgz", + "integrity": "sha512-aYYYM+3UGqwsOx+TkVtF1IZfguy0H7AN79dR8H0nONRIc+vhk/lbnlkgwY2nSzEu0EZ4b5wZxeGoDBEVmdDEcg==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-delaunay": "^6.0.2", + "vega-dataflow": "^5.7.6", + "vega-util": "^1.17.2" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, + "node_modules/vega-wordcloud": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.5.tgz", + "integrity": "sha512-p+qXU3cb9VeWzJ/HEdax0TX2mqDJcSbrCIfo2d/EalOXGkvfSLKobsmMQ8DxPbtVp0uhnpvfCGDyMJw+AzcI2A==", + "license": "BSD-3-Clause", "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "vega-canvas": "^1.2.7", + "vega-dataflow": "^5.7.6", + "vega-scale": "^7.4.1", + "vega-statistics": "^1.9.0", + "vega-util": "^1.17.2" } }, - "node_modules/siginfo": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", - "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/sigstore": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.1.1.tgz", - "integrity": "sha512-4hR3tPP1y59YWlaoAgAWFVZ7srTjNWOrrpkQXWu05qP0BvwFYyt3K3l848+IHo+mKhkOzGcNDf7ktASXLEPC+A==", + "node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "dev": true, + "license": "MIT", "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "make-fetch-happen": "^11.0.1", - "tuf-js": "^1.0.0" - }, - "bin": { - "sigstore": "bin/sigstore.js" + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/sigstore/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/sigstore/node_modules/make-fetch-happen": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz", - "integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==", + "node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "dev": true, + "license": "MIT", "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/sigstore/node_modules/minipass-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.1.tgz", - "integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==", - "dev": true, + "node_modules/vite": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.5.tgz", + "integrity": "sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==", + "license": "MIT", "dependencies": { - "minipass": "^4.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" }, "optionalDependencies": { - "encoding": "^0.1.13" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } } }, - "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "node_modules/vite-node": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.29.8.tgz", + "integrity": "sha512-b6OtCXfk65L6SElVM20q5G546yu10/kNrhg08afEoWlFRJXFq9/6glsvSVY+aI6YeC1tu2TtAqI2jHEQmOmsFw==", + "license": "MIT", "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" + "cac": "^6.7.14", + "debug": "^4.3.4", + "mlly": "^1.1.0", + "pathe": "^1.1.0", + "picocolors": "^1.0.0", + "vite": "^3.0.0 || ^4.0.0" }, - "engines": { - "node": ">=12" + "bin": { + "vite-node": "vite-node.mjs" }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "engines": { - "node": ">=12" + "node": ">=v14.16.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "node_modules/vite-plugin-qrcode": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/vite-plugin-qrcode/-/vite-plugin-qrcode-0.2.3.tgz", + "integrity": "sha512-TFzhf20v29hnh2XEoZ2kxg8Ff/ui36pR7PGDaHaKEmsQaRagv31XacHxbw5O07HcC1Mkr4tKcYb+PFASSceHmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "qrcode-terminal": "^0.12.0" + }, "engines": { - "node": ">=12" + "node": "^14.13.1 || ^16.0.0 || >=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" } }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "node_modules/vite-plugin-rewrite-all": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/vite-plugin-rewrite-all/-/vite-plugin-rewrite-all-1.0.2.tgz", + "integrity": "sha512-NpiFyHi9w8iHm3kZ28ma/IU16LFCkNJNqTvGy6cjoit2EMBi7dgFWFZFYcwZjUrc+pOMup//rsQTRVILvF2efQ==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "dev": true, + "license": "MIT", + "dependencies": { + "connect-history-api-fallback": "^1.6.0" + }, "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" + "node": ">=12.0.0" + }, + "peerDependencies": { + "vite": "^2.0.0 || ^3.0.0 || ^4.0.0" } }, - "node_modules/socks": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", - "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", + "node_modules/vite-plugin-svgr": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/vite-plugin-svgr/-/vite-plugin-svgr-2.4.0.tgz", + "integrity": "sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==", "dev": true, + "license": "MIT", "dependencies": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" + "@rollup/pluginutils": "^5.0.2", + "@svgr/core": "^6.5.1" }, - "engines": { - "node": ">= 10.0.0", - "npm": ">= 3.0.0" + "peerDependencies": { + "vite": "^2.6.0 || 3 || 4" } }, - "node_modules/socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "node_modules/vite-tsconfig-paths": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-4.3.2.tgz", + "integrity": "sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==", "dev": true, + "license": "MIT", "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" + "debug": "^4.1.1", + "globrex": "^0.1.2", + "tsconfck": "^3.0.3" }, - "engines": { - "node": ">= 10" + "peerDependencies": { + "vite": "*" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } } }, - "node_modules/sort-asc": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz", - "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==", + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/sort-desc": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.2.0.tgz", - "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==", + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/sort-object": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-3.0.3.tgz", - "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==", - "dependencies": { - "bytewise": "^1.1.0", - "get-value": "^2.0.2", - "is-extendable": "^0.1.1", - "sort-asc": "^0.2.0", - "sort-desc": "^0.2.0", - "union-value": "^1.0.1" - }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "devOptional": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "node": ">=12" } }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "devOptional": true, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" } }, - "node_modules/spawn-please": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/spawn-please/-/spawn-please-2.0.1.tgz", - "integrity": "sha512-W+cFbZR2q2mMTfjz5ZGvhBAiX+e/zczFCNlbS9mxiSdYswBXwUuBUT+a0urH+xZZa8f/bs0mXHyZsZHR9hKogA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3" - }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=14" + "node": ">=12" } }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dependencies": { - "extend-shallow": "^3.0.0" - }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/split-string/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/ssri": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.1.tgz", - "integrity": "sha512-WVy6di9DlPOeBWEjMScpNipeSX2jIZBGEn5Uuo8Q7aIuFEuDX0pw8RxcOjlD1TWP4obi24ki7m/13+nFpcbXrw==", - "dev": true, - "dependencies": { - "minipass": "^4.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/stackback": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", - "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/std-env": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.3.2.tgz", - "integrity": "sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==" - }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "dependencies": { - "internal-slot": "^1.0.4" - }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" - } - }, - "node_modules/store2": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", - "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", - "dev": true - }, - "node_modules/storybook": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.1.8.tgz", - "integrity": "sha512-2ld3JEmPWy3KOksfF0Reyiq5SC+dYBzV2XW2/YTkNkLTkyNofhdPeq71COGcB0Lq2PHZkZyNin8htQWbh0LLNg==", - "dev": true, - "dependencies": { - "@storybook/cli": "8.1.8" - }, - "bin": { - "sb": "index.js", - "storybook": "index.js" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/stream-shift": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", - "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" + "node": ">=12" } }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.6.19" + "node": ">=12" } }, - "node_modules/string-natural-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", - "dev": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dev": true, - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node": ">=12" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-literal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.0.1.tgz", - "integrity": "sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==", - "dependencies": { - "acorn": "^8.8.2" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - }, - "node_modules/style-to-object": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", - "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", - "dev": true, - "dependencies": { - "inline-style-parser": "0.1.1" - } - }, - "node_modules/stylis": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", - "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" - }, - "node_modules/supercluster": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.3.tgz", - "integrity": "sha512-7+bR4FbF5SYsmkHfDp61QiwCKtwNDyPsddk9TzfsDA5DQr5Goii5CVD2SXjglweFCxjrzVZf945ahqYfUIk8UA==", + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "kdbush": "^3.0.0" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", - "dev": true - }, - "node_modules/synchronous-promise": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", - "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==", - "dev": true - }, - "node_modules/tabbable": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", - "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-fs/node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/telejson": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", - "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", - "dev": true, - "dependencies": { - "memoizerific": "^1.11.3" - } - }, - "node_modules/temp": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", - "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", - "dev": true, - "dependencies": { - "rimraf": "~2.6.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "dev": true, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/temp/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dev": true, - "dependencies": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", - "optional": true, - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/texture-compressor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", - "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", - "dependencies": { - "argparse": "^1.0.10", - "image-size": "^0.7.4" - }, - "bin": { - "texture-compressor": "bin/texture-compressor.js" - } - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/tilebelt": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tilebelt/-/tilebelt-1.0.1.tgz", - "integrity": "sha512-cxHzpa5JgsugY9NUVRH43gPaGJw/29LecAn4X7UGOP64+kB8pU4VQ3bIhSyfb5Mk4jDxwl3yk330L/EIhbJ5aw==", - "deprecated": "This module is now under the @mapbox namespace: install @mapbox/tilebelt instead" - }, - "node_modules/tiny-invariant": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", - "dev": true - }, - "node_modules/tinybench": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.4.0.tgz", - "integrity": "sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==" - }, - "node_modules/tinypool": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.3.1.tgz", - "integrity": "sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tinyqueue": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", - "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" - }, - "node_modules/tinyspy": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-1.1.1.tgz", - "integrity": "sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/tocbot": { - "version": "4.28.2", - "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.28.2.tgz", - "integrity": "sha512-/MaSa9xI6mIo84IxqqliSCtPlH0oy7sLcY9s26qPMyH/2CxtZ2vNAXYlIdEQ7kjAkCQnc0rbLygf//F5c663oQ==", - "dev": true - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/topojson-client": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", - "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", - "dependencies": { - "commander": "2" - }, - "bin": { - "topo2geo": "bin/topo2geo", - "topomerge": "bin/topomerge", - "topoquantize": "bin/topoquantize" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/transit-js": { - "version": "0.8.874", - "resolved": "https://registry.npmjs.org/transit-js/-/transit-js-0.8.874.tgz", - "integrity": "sha512-IDJJGKRzUbJHmN0P15HBBa05nbKor3r2MmG6aSt0UxXIlJZZKcddTk67/U7WyAeW9Hv/VYI02IqLzolsC4sbPA==", - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/trough": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/ts-dedent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", - "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", - "dev": true, - "engines": { - "node": ">=6.10" - } - }, - "node_modules/tsconfck": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-2.1.0.tgz", - "integrity": "sha512-lztI9ohwclQHISVWrM/hlcgsRpphsii94DV9AQtAw2XJSVNiv+3ppdEsrL5J+xc5oTeHXe1qDqlOAGw8VSa9+Q==", - "dev": true, - "bin": { - "tsconfck": "bin/tsconfck.js" - }, - "engines": { - "node": "^14.13.1 || ^16 || >=18" - }, - "peerDependencies": { - "typescript": "^4.3.5 || ^5.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tuf-js": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.1.tgz", - "integrity": "sha512-WTp382/PR96k0dI4GD5RdiRhgOU0rAC7+lnoih/5pZg3cyb3aNMqDozleEEWwyfT3+FOg7Qz9JU3n6A44tLSHw==", - "dev": true, - "dependencies": { - "@tufjs/models": "1.0.0", - "make-fetch-happen": "^11.0.1" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/tuf-js/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/tuf-js/node_modules/make-fetch-happen": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz", - "integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==", - "dev": true, - "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/tuf-js/node_modules/minipass-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.1.tgz", - "integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==", - "dev": true, - "dependencies": { - "minipass": "^4.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" - } - }, - "node_modules/turf-jsts": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/turf-jsts/-/turf-jsts-1.2.3.tgz", - "integrity": "sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.6.1.tgz", - "integrity": "sha512-htXWckxlT6U4+ilVgweNliPqlsVSSucbxVexRYllyMVJDtf5rTjv6kF/s+qAd4QSL1BZcnJPEJavYBPQiWuZDA==", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typescript": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.2.tgz", - "integrity": "sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=12.20" - } - }, - "node_modules/typewise": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz", - "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==", - "dependencies": { - "typewise-core": "^1.2.0" - } - }, - "node_modules/typewise-core": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz", - "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==" - }, - "node_modules/ua-parser-js": { - "version": "0.7.34", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.34.tgz", - "integrity": "sha512-cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - } - ], - "engines": { - "node": "*" - } - }, - "node_modules/ufo": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", - "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==" - }, - "node_modules/uglify-js": { - "version": "3.13.6", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.6.tgz", - "integrity": "sha512-rRprLwl8RVaS+Qvx3Wh5hPfPBn9++G6xkGlUupya0s5aDmNjI7z3lnRLB3u7sN4OmbB0pWgzhM9BEJyiWAwtAA==", - "dev": true, - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", - "dev": true, - "dependencies": { - "unique-slug": "^4.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dev": true, - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unist-util-generated": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-is": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position-from-estree": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", - "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove-position": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", - "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove-position/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove-position/node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove-position/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unload": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz", - "integrity": "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==", - "dependencies": { - "@babel/runtime": "^7.6.2", - "detect-node": "^2.0.4" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unplugin": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.10.1.tgz", - "integrity": "sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==", - "dev": true, - "dependencies": { - "acorn": "^8.11.3", - "chokidar": "^3.6.0", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.6.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/update-notifier": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz", - "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==", - "dev": true, - "dependencies": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/yeoman/update-notifier?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/boxen": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.2.tgz", - "integrity": "sha512-1Z4UJabXUP1/R9rLpoU3O2lEMnG3pPLAs/ZD2lF3t2q7qD5lM8rqbtnvtvm4N0wEyNlE+9yZVTVAGmd1V5jabg==", - "dev": true, - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/camelcase": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", - "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/cli-boxes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/update-notifier/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/widest-line": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", - "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", - "dev": true, - "dependencies": { - "string-width": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/urs": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/urs/-/urs-0.0.8.tgz", - "integrity": "sha512-LaSSPpr91XrVA3vW2zPupw4K6DSQEDKdL4yQZX1mO2fpljIMpB5zctrjRvxLurelWSgKsHsCmfHNCImscryirQ==", - "peerDependencies": { - "react": "^16.13.1 || ^17.0.0", - "react-dom": "^16.13.1 || ^17.0.0" - } - }, - "node_modules/use-callback-ref": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", - "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-callback-ref/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - }, - "node_modules/use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-http": { - "version": "1.0.27", - "resolved": "https://registry.npmjs.org/use-http/-/use-http-1.0.27.tgz", - "integrity": "sha512-R2V3dzkx+YfIi3Sm35njGFRBzPEyM1AODMx6VSyHiyYzVVq2iYbA3HEjGK5fyw66D8stK5iaP4zU3X7LDmuiyg==", - "dependencies": { - "urs": "^0.0.8", - "use-ssr": "^1.0.24", - "utility-types": "^3.10.0" - }, - "peerDependencies": { - "react": "^16.13.1 || ^17.0.0", - "react-dom": "^16.13.1 || ^17.0.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "dependencies": { - "use-isomorphic-layout-effect": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-resize-observer": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", - "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==", - "dev": true, - "dependencies": { - "@juggle/resize-observer": "^3.3.1" - }, - "peerDependencies": { - "react": "16.8.0 - 18", - "react-dom": "16.8.0 - 18" - } - }, - "node_modules/use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "dev": true, - "dependencies": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-sidecar/node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - }, - "node_modules/use-ssr": { - "version": "1.0.24", - "resolved": "https://registry.npmjs.org/use-ssr/-/use-ssr-1.0.24.tgz", - "integrity": "sha512-0MFps7ezL57/3o0yl4CvrHLlp9z20n1rQZV/lSRz7if+TUoM6POU1XdOvEjIgjgKeIhTEye1U0khrIYWCTWw4g==", - "peerDependencies": { - "react": "^16.13.1 || ^17.0.0", - "react-dom": "^16.13.1 || ^17.0.0" - } - }, - "node_modules/use-subscription": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.8.0.tgz", - "integrity": "sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==", - "dependencies": { - "use-sync-external-store": "^1.2.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/utility-types": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz", - "integrity": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/uvu": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", - "dev": true, - "dependencies": { - "dequal": "^2.0.0", - "diff": "^5.0.0", - "kleur": "^4.0.3", - "sade": "^1.7.3" - }, - "bin": { - "uvu": "bin.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/uvu/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", - "dev": true, - "dependencies": { - "builtins": "^5.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vega": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/vega/-/vega-5.24.0.tgz", - "integrity": "sha512-eahZ+4eryPywLuq9BpgcwWMyqiuVD3FAh7eMB3koOp7peQ4scPxAZxWdLwnh0t0kah+oE2QcXi2EHS4BabsMPg==", - "dependencies": { - "vega-crossfilter": "~4.1.1", - "vega-dataflow": "~5.7.5", - "vega-encode": "~4.9.1", - "vega-event-selector": "~3.0.1", - "vega-expression": "~5.0.1", - "vega-force": "~4.2.0", - "vega-format": "~1.1.1", - "vega-functions": "~5.13.1", - "vega-geo": "~4.4.1", - "vega-hierarchy": "~4.1.1", - "vega-label": "~1.2.1", - "vega-loader": "~4.5.1", - "vega-parser": "~6.2.0", - "vega-projection": "~1.6.0", - "vega-regression": "~1.1.1", - "vega-runtime": "~6.1.4", - "vega-scale": "~7.3.0", - "vega-scenegraph": "~4.10.2", - "vega-statistics": "~1.8.1", - "vega-time": "~2.1.1", - "vega-transforms": "~4.10.1", - "vega-typings": "~0.24.0", - "vega-util": "~1.17.1", - "vega-view": "~5.11.1", - "vega-view-transforms": "~4.5.9", - "vega-voronoi": "~4.2.1", - "vega-wordcloud": "~4.1.4" - } - }, - "node_modules/vega-canvas": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz", - "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q==" - }, - "node_modules/vega-crossfilter": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz", - "integrity": "sha512-yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q==", - "dependencies": { - "d3-array": "^3.2.2", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-dataflow": { - "version": "5.7.5", - "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz", - "integrity": "sha512-EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA==", - "dependencies": { - "vega-format": "^1.1.1", - "vega-loader": "^4.5.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-embed": { - "version": "6.18.2", - "resolved": "https://registry.npmjs.org/vega-embed/-/vega-embed-6.18.2.tgz", - "integrity": "sha512-wcDyQPE4J5aiCDc3/suH5RQDvrKkjuLkhzUcbOLwEkNF8/+pp17tS0JghzEvAPNRg+5aG1/N2ydixq8Lk3dOlg==", - "dependencies": { - "fast-json-patch": "^3.0.0-1", - "json-stringify-pretty-compact": "^3.0.0", - "semver": "^7.3.5", - "tslib": "^2.2.0", - "vega-schema-url-parser": "^2.2.0", - "vega-themes": "^2.10.0", - "vega-tooltip": "^0.25.1" - }, - "peerDependencies": { - "vega": "^5.13.0", - "vega-lite": "*" - } - }, - "node_modules/vega-embed/node_modules/tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - }, - "node_modules/vega-encode": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.1.tgz", - "integrity": "sha512-05JB47UZaqIBS9t6rtHI/aKjEuH4EsSIH+wJWItht4BFj33eIl4XRNtlXdE31uuQT2pXWz5ZWW3KboMuaFzKLw==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-interpolate": "^3.0.1", - "vega-dataflow": "^5.7.5", - "vega-scale": "^7.3.0", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-event-selector": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz", - "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A==" - }, - "node_modules/vega-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.1.tgz", - "integrity": "sha512-atfzrMekrcsuyUgZCMklI5ki8cV763aeo1Y6YrfYU7FBwcQEoFhIV/KAJ1vae51aPDGtfzvwbtVIo3WShFCP2Q==", - "dependencies": { - "@types/estree": "^1.0.0", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-force": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz", - "integrity": "sha512-aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A==", - "dependencies": { - "d3-force": "^3.0.0", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-format": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz", - "integrity": "sha512-Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-format": "^3.1.0", - "d3-time-format": "^4.1.0", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-functions": { - "version": "5.13.1", - "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.1.tgz", - "integrity": "sha512-0LhntimnvBl4VzRO/nkCwCTbtaP8bE552galKQbCg88GDxdmcmlsoTCwUzG0vZ/qmNM3IbqnP5k5/um3zwFqLw==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-color": "^3.1.0", - "d3-geo": "^3.1.0", - "vega-dataflow": "^5.7.5", - "vega-expression": "^5.0.1", - "vega-scale": "^7.3.0", - "vega-scenegraph": "^4.10.2", - "vega-selections": "^5.4.1", - "vega-statistics": "^1.8.1", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-geo": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz", - "integrity": "sha512-s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-color": "^3.1.0", - "d3-geo": "^3.1.0", - "vega-canvas": "^1.2.7", - "vega-dataflow": "^5.7.5", - "vega-projection": "^1.6.0", - "vega-statistics": "^1.8.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-hierarchy": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz", - "integrity": "sha512-h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ==", - "dependencies": { - "d3-hierarchy": "^3.1.2", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-label": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz", - "integrity": "sha512-n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==", - "dependencies": { - "vega-canvas": "^1.2.6", - "vega-dataflow": "^5.7.3", - "vega-scenegraph": "^4.9.2", - "vega-util": "^1.15.2" - } - }, - "node_modules/vega-lite": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-5.6.1.tgz", - "integrity": "sha512-Dij2OkJcmK+/2pIcLambjV/vWmhP11ypL3YqDVryBfJxP1m+ZgZU+8/SOEP3B2R1MhmmT7JDYQUtiNcGi1/2ig==", - "dependencies": { - "@types/clone": "~2.1.1", - "clone": "~2.1.2", - "fast-deep-equal": "~3.1.3", - "fast-json-stable-stringify": "~2.1.0", - "json-stringify-pretty-compact": "~3.0.0", - "tslib": "~2.5.0", - "vega-event-selector": "~3.0.0", - "vega-expression": "~5.0.0", - "vega-util": "~1.17.0", - "yargs": "~17.6.2" - }, - "bin": { - "vl2pdf": "bin/vl2pdf", - "vl2png": "bin/vl2png", - "vl2svg": "bin/vl2svg", - "vl2vg": "bin/vl2vg" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "vega": "^5.22.0" - } - }, - "node_modules/vega-lite/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/vega-loader": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz", - "integrity": "sha512-qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA==", - "dependencies": { - "d3-dsv": "^3.0.1", - "node-fetch": "^2.6.7", - "topojson-client": "^3.1.0", - "vega-format": "^1.1.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-loader/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/vega-loader/node_modules/d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", - "dependencies": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - }, - "bin": { - "csv2json": "bin/dsv2json.js", - "csv2tsv": "bin/dsv2dsv.js", - "dsv2dsv": "bin/dsv2dsv.js", - "dsv2json": "bin/dsv2json.js", - "json2csv": "bin/json2dsv.js", - "json2dsv": "bin/json2dsv.js", - "json2tsv": "bin/json2dsv.js", - "tsv2csv": "bin/dsv2dsv.js", - "tsv2json": "bin/dsv2json.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/vega-loader/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vega-parser": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz", - "integrity": "sha512-as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ==", - "dependencies": { - "vega-dataflow": "^5.7.5", - "vega-event-selector": "^3.0.1", - "vega-functions": "^5.13.1", - "vega-scale": "^7.3.0", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-projection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz", - "integrity": "sha512-LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ==", - "dependencies": { - "d3-geo": "^3.1.0", - "d3-geo-projection": "^4.0.0", - "vega-scale": "^7.3.0" - } - }, - "node_modules/vega-regression": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.1.1.tgz", - "integrity": "sha512-98i/z0vdDhOIEhJUdYoJ2nlfVdaHVp2CKB39Qa7G/XyRw0+QwDFFrp8ZRec2xHjHfb6bYLGNeh1pOsC13FelJg==", - "dependencies": { - "d3-array": "^3.2.2", - "vega-dataflow": "^5.7.3", - "vega-statistics": "^1.7.9", - "vega-util": "^1.15.2" - } - }, - "node_modules/vega-runtime": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz", - "integrity": "sha512-0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==", - "dependencies": { - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-scale": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz", - "integrity": "sha512-pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-interpolate": "^3.0.1", - "d3-scale": "^4.0.2", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-scenegraph": { - "version": "4.10.2", - "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz", - "integrity": "sha512-R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA==", - "dependencies": { - "d3-path": "^3.1.0", - "d3-shape": "^3.2.0", - "vega-canvas": "^1.2.7", - "vega-loader": "^4.5.1", - "vega-scale": "^7.3.0", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-schema-url-parser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-2.2.0.tgz", - "integrity": "sha512-yAtdBnfYOhECv9YC70H2gEiqfIbVkq09aaE4y/9V/ovEFmH9gPKaEgzIZqgT7PSPQjKhsNkb6jk6XvSoboxOBw==" - }, - "node_modules/vega-selections": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz", - "integrity": "sha512-EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA==", - "dependencies": { - "d3-array": "3.2.2", - "vega-expression": "^5.0.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-statistics": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.8.1.tgz", - "integrity": "sha512-eRR3LZBusnTXUkc/uunAvWi1PjCJK+Ba4vFvEISc5Iv5xF4Aw2cBhEz1obEt6ID5fGVCTAl0E1LOSFxubS89hQ==", - "dependencies": { - "d3-array": "^3.2.2" - } - }, - "node_modules/vega-themes": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-2.10.0.tgz", - "integrity": "sha512-prePRUKFUFGWniuZsJOfkdb+27Gwrrm82yAlVuU+912kcknsx1DVmMSg2yF79f4jdtqnAFIGycZgxoj13SEIuQ==", - "peerDependencies": { - "vega": "*", - "vega-lite": "*" - } - }, - "node_modules/vega-time": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz", - "integrity": "sha512-z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-time": "^3.1.0", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-tooltip": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-0.25.1.tgz", - "integrity": "sha512-ugGwGi2/p3OpB8N15xieuzP8DyV5DreqMWcmJ9zpWT8GlkyKtef4dGRXnvHeHQ+iJFmWrq4oZJ+kLTrdiECjAg==", - "dependencies": { - "vega-util": "^1.16.0" - } - }, - "node_modules/vega-transforms": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.1.tgz", - "integrity": "sha512-0uWrUZaYl8kjWrGbvPOQSKk6kcNXQFY9moME+bUmkADAvFptphCGbaEIn/nSsG6uCxj8E3rqKmKfjSWdU5yOqA==", - "dependencies": { - "d3-array": "^3.2.2", - "vega-dataflow": "^5.7.5", - "vega-statistics": "^1.8.1", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-typings": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz", - "integrity": "sha512-FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A==", - "dependencies": { - "@types/geojson": "^7946.0.10", - "vega-event-selector": "^3.0.1", - "vega-expression": "^5.0.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-util": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.1.tgz", - "integrity": "sha512-ToPkWoBdP6awoK+bnYaFhgdqZhsNwKxWbuMnFell+4K/Cb6Q1st5Pi9I7iI5Y6n5ZICDDsd6eL7/IhBjEg1NUQ==" - }, - "node_modules/vega-view": { - "version": "5.11.1", - "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz", - "integrity": "sha512-RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA==", - "dependencies": { - "d3-array": "^3.2.2", - "d3-timer": "^3.0.1", - "vega-dataflow": "^5.7.5", - "vega-format": "^1.1.1", - "vega-functions": "^5.13.1", - "vega-runtime": "^6.1.4", - "vega-scenegraph": "^4.10.2", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-view-transforms": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz", - "integrity": "sha512-NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==", - "dependencies": { - "vega-dataflow": "^5.7.5", - "vega-scenegraph": "^4.10.2", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-voronoi": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz", - "integrity": "sha512-zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q==", - "dependencies": { - "d3-delaunay": "^6.0.2", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "node_modules/vega-wordcloud": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz", - "integrity": "sha512-oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw==", - "dependencies": { - "vega-canvas": "^1.2.7", - "vega-dataflow": "^5.7.5", - "vega-scale": "^7.3.0", - "vega-statistics": "^1.8.1", - "vega-util": "^1.17.1" - } - }, - "node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-location": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", - "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-message": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vite": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz", - "integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==", - "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-node": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.29.3.tgz", - "integrity": "sha512-QYzYSA4Yt2IiduEjYbccfZQfxKp+T1Do8/HEpSX/G5WIECTFKJADwLs9c94aQH4o0A+UtCKU61lj1m5KvbxxQA==", - "dependencies": { - "cac": "^6.7.14", - "debug": "^4.3.4", - "mlly": "^1.1.0", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "vite": "^3.0.0 || ^4.0.0" - }, - "bin": { - "vite-node": "vite-node.mjs" - }, - "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/vite-plugin-qrcode": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vite-plugin-qrcode/-/vite-plugin-qrcode-0.2.1.tgz", - "integrity": "sha512-REEIXb0cs4N7GdZoDS56RqwUOxZwXaA2KqwODtr4mScfEVLk5BuqBxWy849yo3LoGP9dH7AdAauAlgU2eqsgdw==", - "dev": true, - "dependencies": { - "qrcode-terminal": "^0.12.0" - }, - "engines": { - "node": "^14.13.1 || ^16.0.0 || >=18" - }, - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" - } - }, - "node_modules/vite-plugin-rewrite-all": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/vite-plugin-rewrite-all/-/vite-plugin-rewrite-all-1.0.1.tgz", - "integrity": "sha512-W0DAchC8ynuQH0lYLIu5/5+JGfYlUTRD8GGNtHFXRJX4FzzB9MajtqHBp26zq/ly9sDt5BqrfdT08rv3RbB0LQ==", - "dev": true, - "dependencies": { - "connect-history-api-fallback": "^1.6.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0 || ^4.0.0" - } - }, - "node_modules/vite-plugin-svgr": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/vite-plugin-svgr/-/vite-plugin-svgr-2.4.0.tgz", - "integrity": "sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.2", - "@svgr/core": "^6.5.1" - }, - "peerDependencies": { - "vite": "^2.6.0 || 3 || 4" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", - "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", - "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", - "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", - "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", - "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", - "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/babel-preset": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", - "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", - "dev": true, - "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", - "@svgr/babel-plugin-remove-jsx-attribute": "*", - "@svgr/babel-plugin-remove-jsx-empty-expression": "*", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", - "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", - "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", - "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", - "@svgr/babel-plugin-transform-svg-component": "^6.5.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/core": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", - "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/plugin-jsx": "^6.5.1", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/hast-util-to-babel-ast": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", - "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.0", - "entities": "^4.4.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/vite-plugin-svgr/node_modules/@svgr/plugin-jsx": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", - "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/hast-util-to-babel-ast": "^6.5.1", - "svg-parser": "^2.0.4" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "^6.0.0" - } - }, - "node_modules/vite-plugin-svgr/node_modules/entities": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/vite-tsconfig-paths": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-4.0.7.tgz", - "integrity": "sha512-MwIYaby6kcbQGZqMH+gAK6h0UYQGOkjsuAgw4q6bP/5vWkn8VKvnmLuCQHA2+IzHAJHnE8OFTO4lnJLFMf9+7Q==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "globrex": "^0.1.2", - "tsconfck": "^2.0.1" - }, - "peerDependencies": { - "vite": "*" - }, - "peerDependenciesMeta": { - "vite": { - "optional": true - } - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "node_modules/vitest": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.29.3.tgz", - "integrity": "sha512-muMsbXnZsrzDGiyqf/09BKQsGeUxxlyLeLK/sFFM4EXdURPQRv8y7dco32DXaRORYP0bvyN19C835dT23mL0ow==", - "dependencies": { - "@types/chai": "^4.3.4", - "@types/chai-subset": "^1.3.3", - "@types/node": "*", - "@vitest/expect": "0.29.3", - "@vitest/runner": "0.29.3", - "@vitest/spy": "0.29.3", - "@vitest/utils": "0.29.3", - "acorn": "^8.8.1", - "acorn-walk": "^8.2.0", - "cac": "^6.7.14", - "chai": "^4.3.7", - "debug": "^4.3.4", - "local-pkg": "^0.4.2", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "source-map": "^0.6.1", - "std-env": "^3.3.1", - "strip-literal": "^1.0.0", - "tinybench": "^2.3.1", - "tinypool": "^0.3.1", - "tinyspy": "^1.0.2", - "vite": "^3.0.0 || ^4.0.0", - "vite-node": "0.29.3", - "why-is-node-running": "^2.2.2" - }, - "bin": { - "vitest": "vitest.mjs" - }, - "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "@edge-runtime/vm": "*", - "@vitest/browser": "*", - "@vitest/ui": "*", - "happy-dom": "*", - "jsdom": "*" - }, - "peerDependenciesMeta": { - "@edge-runtime/vm": { - "optional": true - }, - "@vitest/browser": { - "optional": true - }, - "@vitest/ui": { - "optional": true - }, - "happy-dom": { - "optional": true - }, - "jsdom": { - "optional": true - } - } - }, - "node_modules/vitest/node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/vitest/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vt-pbf": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", - "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", - "dependencies": { - "@mapbox/point-geometry": "0.1.0", - "@mapbox/vector-tile": "^1.3.1", - "pbf": "^3.2.1" - } - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", - "dev": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-virtual-modules": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", - "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", - "dev": true - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", - "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/why-is-node-running": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.2.2.tgz", - "integrity": "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==", - "dependencies": { - "siginfo": "^2.0.0", - "stackback": "0.0.2" - }, - "bin": { - "why-is-node-running": "cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/ws": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", - "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xdg-basedir": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", - "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/xstate" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true - }, - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@aw-web-design/x-default-browser": { - "version": "1.4.126", - "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz", - "integrity": "sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==", - "dev": true, - "requires": { - "default-browser-id": "3.0.0" - } - }, - "@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", - "requires": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" - } - }, - "@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", - "dev": true - }, - "@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "dependencies": { - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/eslint-parser": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz", - "integrity": "sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==", - "dev": true, - "requires": { - "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", - "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", - "requires": { - "@babel/types": "^7.24.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "requires": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - } - } - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", - "dev": true, - "requires": { - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", - "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", - "dev": true, - "requires": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", - "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "semver": "^6.3.1" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", - "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "regexpu-core": "^5.3.1", - "semver": "^6.3.1" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", - "requires": { - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", - "requires": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "requires": { - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", - "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", - "dev": true, - "requires": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", - "requires": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", - "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", - "dev": true, - "requires": { - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", - "dev": true - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", - "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-wrap-function": "^7.24.7" - } - }, - "@babel/helper-replace-supers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", - "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7" - } - }, - "@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "dev": true, - "requires": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", - "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", - "dev": true, - "requires": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "requires": { - "@babel/types": "^7.24.7" - } - }, - "@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==" - }, - "@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" - }, - "@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", - "dev": true - }, - "@babel/helper-wrap-function": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", - "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/helpers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", - "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", - "dev": true, - "requires": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "requires": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - } - }, - "@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==" - }, - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", - "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", - "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", - "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7" - } - }, - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", - "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz", - "integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/plugin-syntax-decorators": "^7.21.0" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "requires": {} - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz", - "integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-flow": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", - "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-syntax-import-attributes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", - "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", - "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", - "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", - "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-async-generator-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", - "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-remap-async-to-generator": "^7.24.7", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", - "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-remap-async-to-generator": "^7.24.7" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", - "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", - "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-class-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", - "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-class-static-block": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", - "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", - "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", - "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/template": "^7.24.7" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", - "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", - "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", - "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-dynamic-import": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", - "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", - "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", - "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-export-namespace-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", - "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz", - "integrity": "sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-flow": "^7.24.7" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", - "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", - "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-json-strings": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", - "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", - "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", - "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", - "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", - "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", - "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", - "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", - "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", - "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", - "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", - "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-transform-numeric-separator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", - "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-transform-object-rest-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", - "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.7" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", - "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7" - } - }, - "@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", - "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", - "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", - "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-private-methods": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", - "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-private-property-in-object": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", - "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", - "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz", - "integrity": "sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.20.7" - } - }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", - "dev": true, - "requires": { - "@babel/plugin-transform-react-jsx": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz", - "integrity": "sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz", - "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", - "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "regenerator-transform": "^0.15.2" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", - "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.0.tgz", - "integrity": "sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", - "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", - "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", - "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", - "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", - "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz", - "integrity": "sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-typescript": "^7.24.7" - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", - "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", - "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", - "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", - "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" - } - }, - "@babel/preset-env": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz", - "integrity": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.7", - "@babel/plugin-syntax-import-attributes": "^7.24.7", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.7", - "@babel/plugin-transform-async-generator-functions": "^7.24.7", - "@babel/plugin-transform-async-to-generator": "^7.24.7", - "@babel/plugin-transform-block-scoped-functions": "^7.24.7", - "@babel/plugin-transform-block-scoping": "^7.24.7", - "@babel/plugin-transform-class-properties": "^7.24.7", - "@babel/plugin-transform-class-static-block": "^7.24.7", - "@babel/plugin-transform-classes": "^7.24.7", - "@babel/plugin-transform-computed-properties": "^7.24.7", - "@babel/plugin-transform-destructuring": "^7.24.7", - "@babel/plugin-transform-dotall-regex": "^7.24.7", - "@babel/plugin-transform-duplicate-keys": "^7.24.7", - "@babel/plugin-transform-dynamic-import": "^7.24.7", - "@babel/plugin-transform-exponentiation-operator": "^7.24.7", - "@babel/plugin-transform-export-namespace-from": "^7.24.7", - "@babel/plugin-transform-for-of": "^7.24.7", - "@babel/plugin-transform-function-name": "^7.24.7", - "@babel/plugin-transform-json-strings": "^7.24.7", - "@babel/plugin-transform-literals": "^7.24.7", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", - "@babel/plugin-transform-member-expression-literals": "^7.24.7", - "@babel/plugin-transform-modules-amd": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.7", - "@babel/plugin-transform-modules-systemjs": "^7.24.7", - "@babel/plugin-transform-modules-umd": "^7.24.7", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", - "@babel/plugin-transform-new-target": "^7.24.7", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", - "@babel/plugin-transform-numeric-separator": "^7.24.7", - "@babel/plugin-transform-object-rest-spread": "^7.24.7", - "@babel/plugin-transform-object-super": "^7.24.7", - "@babel/plugin-transform-optional-catch-binding": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7", - "@babel/plugin-transform-parameters": "^7.24.7", - "@babel/plugin-transform-private-methods": "^7.24.7", - "@babel/plugin-transform-private-property-in-object": "^7.24.7", - "@babel/plugin-transform-property-literals": "^7.24.7", - "@babel/plugin-transform-regenerator": "^7.24.7", - "@babel/plugin-transform-reserved-words": "^7.24.7", - "@babel/plugin-transform-shorthand-properties": "^7.24.7", - "@babel/plugin-transform-spread": "^7.24.7", - "@babel/plugin-transform-sticky-regex": "^7.24.7", - "@babel/plugin-transform-template-literals": "^7.24.7", - "@babel/plugin-transform-typeof-symbol": "^7.24.7", - "@babel/plugin-transform-unicode-escapes": "^7.24.7", - "@babel/plugin-transform-unicode-property-regex": "^7.24.7", - "@babel/plugin-transform-unicode-regex": "^7.24.7", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", - "semver": "^6.3.1" - }, - "dependencies": { - "@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - } - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", - "semver": "^6.3.1" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.6.2" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "@babel/preset-flow": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz", - "integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-transform-flow-strip-types": "^7.24.7" - } - }, - "@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" - } - }, - "@babel/preset-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", - "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-syntax-jsx": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.7", - "@babel/plugin-transform-typescript": "^7.24.7" - } - }, - "@babel/register": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", - "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "find-cache-dir": "^2.0.0", - "make-dir": "^2.1.0", - "pirates": "^4.0.6", - "source-map-support": "^0.5.16" - }, - "dependencies": { - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - } - } - }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, - "@babel/runtime": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", - "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", - "requires": { - "regenerator-runtime": "^0.14.0" - } - }, - "@babel/template": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", - "requires": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7" - } - }, - "@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", - "requires": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", - "debug": "^4.3.1", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", - "requires": { - "@babel/helper-string-parser": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" - } - }, - "@base2/pretty-print-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz", - "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==", - "dev": true - }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "optional": true - }, - "@deck.gl/aggregation-layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/aggregation-layers/-/aggregation-layers-8.9.28.tgz", - "integrity": "sha512-W+qg3VkSjhqBI8dxLaECK1wdczpbOl+mbpEM1MBHkYSuLEPi3m3WQINm9+jwhfM+kM3QlLJc8UlqRTlwylTwrw==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "^8.5.21", - "@luma.gl/shadertools": "^8.5.21", - "@math.gl/web-mercator": "^3.6.2", - "d3-hexbin": "^0.2.1" - } - }, - "@deck.gl/carto": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/carto/-/carto-8.9.28.tgz", - "integrity": "sha512-4iI/K/pJv4oJmR++CcZetedOzXpYOtZk43cHglEmV2javV159QMJyOoOH3EnjETSorgeaA4qLdMNWVtOInnjmw==", - "requires": { - "@babel/runtime": "^7.0.0", - "@loaders.gl/gis": "^3.4.13", - "@loaders.gl/loader-utils": "^3.4.13", - "@loaders.gl/mvt": "^3.4.13", - "@loaders.gl/tiles": "^3.4.13", - "@luma.gl/constants": "^8.5.21", - "@math.gl/web-mercator": "^3.6.2", - "cartocolor": "^4.0.2", - "d3-array": "^3.2.0", - "d3-color": "^3.1.0", - "d3-format": "^3.1.0", - "d3-scale": "^4.0.0", - "h3-js": "^3.7.0", - "moment-timezone": "^0.5.33", - "pbf": "^3.2.1", - "quadbin": "^0.1.9" - } - }, - "@deck.gl/core": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-8.9.28.tgz", - "integrity": "sha512-Tpji8XykZAjaDIJwXR9RalulemgF6AGpCq43XIInK+0JdumJYuYVyGObPkujNW7zeWM26rAb3TiqyOLwW/3yOQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "@loaders.gl/core": "^3.4.13", - "@loaders.gl/images": "^3.4.13", - "@luma.gl/constants": "^8.5.21", - "@luma.gl/core": "^8.5.21", - "@luma.gl/webgl": "^8.5.21", - "@math.gl/core": "^3.6.2", - "@math.gl/sun": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "@probe.gl/env": "^3.5.0", - "@probe.gl/log": "^3.5.0", - "@probe.gl/stats": "^3.5.0", - "gl-matrix": "^3.0.0", - "math.gl": "^3.6.2", - "mjolnir.js": "^2.7.0" - } - }, - "@deck.gl/extensions": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-8.9.28.tgz", - "integrity": "sha512-4j1k9a2epu+ZOOhrXm2OKwjsn3fS9l6X1K+iTPXHuRGCpf6r9ArrmF8YnI3sdr6u1Tr4JIjgOvV0r6+Ntqagng==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/shadertools": "^8.5.21" - } - }, - "@deck.gl/geo-layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-8.9.28.tgz", - "integrity": "sha512-0pTsDEc+Gx2j9QPJ+CXa6lpZxZKM4HgHyATmLCRetPVm+1hbCs28xuiyLMWIRfXD+izmVm5/o9OoBuC04Q6kqg==", - "requires": { - "@babel/runtime": "^7.0.0", - "@loaders.gl/3d-tiles": "^3.4.13", - "@loaders.gl/gis": "^3.4.13", - "@loaders.gl/loader-utils": "^3.4.13", - "@loaders.gl/mvt": "^3.4.13", - "@loaders.gl/schema": "^3.4.13", - "@loaders.gl/terrain": "^3.4.13", - "@loaders.gl/tiles": "^3.4.13", - "@loaders.gl/wms": "^3.4.13", - "@luma.gl/constants": "^8.5.21", - "@luma.gl/experimental": "^8.5.21", - "@math.gl/core": "^3.6.2", - "@math.gl/culling": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "@types/geojson": "^7946.0.8", - "h3-js": "^3.7.0", - "long": "^3.2.0" - } - }, - "@deck.gl/google-maps": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/google-maps/-/google-maps-8.9.28.tgz", - "integrity": "sha512-jV6K5ExuZttXf7RTpzVkLd0S7zyKOhotEW0lQTBnMytfDgki20a0kIlQhRTolwHK0hXVBYi6Altva/X17m+2wg==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@deck.gl/json": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/json/-/json-8.9.28.tgz", - "integrity": "sha512-XL8ZeWFwC4H+FF7FVbgcZBtv30ilrNwxFy8l9UNPuC9CFslb2zyESXPHhwkeF2AhXMYDkwOXSWjoOExoam07JQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "d3-dsv": "^1.0.8", - "expression-eval": "^2.0.0" - } - }, - "@deck.gl/layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-8.9.28.tgz", - "integrity": "sha512-2ty8zrrq7TNahkgzly/1NBH90I9VrgIDdbcSUBldptkjeYdtsSErAMuKycQGuQdzJb/KFriZAwOxPjSnMEDJ2w==", - "requires": { - "@babel/runtime": "^7.0.0", - "@loaders.gl/images": "^3.4.13", - "@loaders.gl/schema": "^3.4.13", - "@luma.gl/constants": "^8.5.21", - "@mapbox/tiny-sdf": "^2.0.5", - "@math.gl/core": "^3.6.2", - "@math.gl/polygon": "^3.6.2", - "@math.gl/web-mercator": "^3.6.2", - "earcut": "^2.2.4" - }, - "dependencies": { - "@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - } - } - }, - "@deck.gl/mapbox": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/mapbox/-/mapbox-8.9.28.tgz", - "integrity": "sha512-eF792+Lv4IUqhQYeaIBlc3wbhbxkRHEHGAfmm4TeZXx0zpd+cj48k//6PyV+FFugEsMWuPoKfZTq8mS+/kM1sw==", - "requires": { - "@babel/runtime": "^7.0.0", - "@types/mapbox-gl": "^2.6.3" - }, - "dependencies": { - "@types/mapbox-gl": { - "version": "2.7.14", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.7.14.tgz", - "integrity": "sha512-uoeZncHF7EOGCZTHida8nneFrzBbO5S0Bjvg0AJoGDXpkYkYRN2mq7RK0h+wtXZ/bYbahTFshbLChWBKKWhvyw==", - "requires": { - "@types/geojson": "*" - } - } - } - }, - "@deck.gl/mesh-layers": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-8.9.28.tgz", - "integrity": "sha512-n4m9NfVzPy00G21WA9nkl6T0dlVIWhLcyFAicMMQBX4CqK/iXWz090tT8GtZ6PUzzohuTofUQvvGWgwxhEJM0w==", - "requires": { - "@babel/runtime": "^7.0.0", - "@loaders.gl/gltf": "^3.4.13", - "@luma.gl/constants": "^8.5.21", - "@luma.gl/experimental": "^8.5.21", - "@luma.gl/shadertools": "^8.5.21" - } - }, - "@deck.gl/react": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-8.9.28.tgz", - "integrity": "sha512-OZYeawC69WJKVb8BJZuTWiq1wGaJPchSy2bgVHuDlydDpz+Efv2TyJv9EcyimP7pFCfRUh3Fvobbz5aP1dYwBQ==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true - }, - "@emotion/babel-plugin": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.6.tgz", - "integrity": "sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==", - "requires": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.0", - "@emotion/memoize": "^0.8.0", - "@emotion/serialize": "^1.1.1", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.1.3" - }, - "dependencies": { - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - } - }, - "@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", - "requires": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "stylis": "4.2.0" - }, - "dependencies": { - "stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - } - } - }, - "@emotion/hash": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz", - "integrity": "sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==" - }, - "@emotion/is-prop-valid": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz", - "integrity": "sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==", - "requires": { - "@emotion/memoize": "^0.8.0" - } - }, - "@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, - "@emotion/react": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz", - "integrity": "sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==", - "requires": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.6", - "@emotion/cache": "^11.10.5", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", - "hoist-non-react-statics": "^3.3.1" - } - }, - "@emotion/serialize": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz", - "integrity": "sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==", - "requires": { - "@emotion/hash": "^0.9.0", - "@emotion/memoize": "^0.8.0", - "@emotion/unitless": "^0.8.0", - "@emotion/utils": "^1.2.0", - "csstype": "^3.0.2" - } - }, - "@emotion/sheet": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", - "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" - }, - "@emotion/styled": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.6.tgz", - "integrity": "sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==", - "requires": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.6", - "@emotion/is-prop-valid": "^1.2.0", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0" - } - }, - "@emotion/unitless": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz", - "integrity": "sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==" - }, - "@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "requires": {} - }, - "@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" - }, - "@emotion/weak-memoize": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" - }, - "@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.14.tgz", - "integrity": "sha512-u0rITLxFIeYAvtJXBQNhNuV4YZe+MD1YvIWT7Nicj8hZAtRVZk2PgNH6KclcKDVHz1ChLKXRfX7d7tkbQBUfrg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/android-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.14.tgz", - "integrity": "sha512-hTqB6Iq13pW4xaydeqQrs8vPntUnMjbkq+PgGiBMi69eYk74naG2ftHWqKnxn874kNrt5Or3rQ0PJutx2doJuQ==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/android-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.14.tgz", - "integrity": "sha512-jir51K4J0K5Rt0KOcippjSNdOl7akKDVz5I6yrqdk4/m9y+rldGptQUF7qU4YpX8U61LtR+w2Tu2Ph+K/UaJOw==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/darwin-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.14.tgz", - "integrity": "sha512-vrlaP81IuwPaw1fyX8fHCmivP3Gr73ojVEZy+oWJLAiZVcG8o8Phwun/XDnYIFUHxIoUnMFEpg9o38MIvlw8zw==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/darwin-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.14.tgz", - "integrity": "sha512-KV1E01eC2hGYA2qzFDRCK4wdZCRUvMwCNcobgpiiOzp5QXpJBqFPdxI69j8vvzuU7oxFXDgANwEkXvpeQqyOyg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.14.tgz", - "integrity": "sha512-xRM1RQsazSvL42BNa5XC7ytD4ZDp0ZyJcH7aB0SlYUcHexJUKiDNKR7dlRVlpt6W0DvoRPU2nWK/9/QWS4u2fw==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/freebsd-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.14.tgz", - "integrity": "sha512-7ALTAn6YRRf1O6fw9jmn0rWmOx3XfwDo7njGtjy1LXhDGUjTY/vohEPM3ii5MQ411vJv1r498EEx2aBQTJcrEw==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-arm": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.14.tgz", - "integrity": "sha512-X6xULug66ulrr4IzrW7qq+eq9n4MtEyagdWvj4o4cmWr+JXOT47atjpDF9j5M2zHY0UQBmqnHhwl+tXpkpIb2w==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.14.tgz", - "integrity": "sha512-TLh2OcbBUQcMYRH4GbiDkDZfZ4t1A3GgmeXY27dHSI6xrU7IkO00MGBiJySmEV6sH3Wa6pAN6UtaVL0DwkGW4Q==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-ia32": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.14.tgz", - "integrity": "sha512-oBZkcZ56UZDFCAfE3Fd/Jgy10EoS7Td77NzNGenM+HSY8BkdQAcI9VF9qgwdOLZ+tuftWD7UqZ26SAhtvA3XhA==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-loong64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.14.tgz", - "integrity": "sha512-udz/aEHTcuHP+xdWOJmZ5C9RQXHfZd/EhCnTi1Hfay37zH3lBxn/fNs85LA9HlsniFw2zccgcbrrTMKk7Cn1Qg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-mips64el": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.14.tgz", - "integrity": "sha512-kJ2iEnikUOdC1SiTGbH0fJUgpZwa0ITDTvj9EHf9lm3I0hZ4Yugsb3M6XSl696jVxrEocLe519/8CbSpQWFSrg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-ppc64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.14.tgz", - "integrity": "sha512-kclKxvZvX5YhykwlJ/K9ljiY4THe5vXubXpWmr7q3Zu3WxKnUe1VOZmhkEZlqtnJx31GHPEV4SIG95IqTdfgfg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-riscv64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.14.tgz", - "integrity": "sha512-fdwP9Dc+Kx/cZwp9T9kNqjAE/PQjfrxbio4rZ3XnC3cVvZBjuxpkiyu/tuCwt6SbAK5th6AYNjFdEV9kGC020A==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-s390x": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.14.tgz", - "integrity": "sha512-++fw3P4fQk9nqvdzbANRqimKspL8pDCnSpXomyhV7V/ISha/BZIYvZwLBWVKp9CVWKwWPJ4ktsezuLIvlJRHqA==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/linux-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.14.tgz", - "integrity": "sha512-TomtswAuzBf2NnddlrS4W01Tv85RM9YtATB3OugY6On0PLM4Ksz5qvQKVAjtzPKoLgL1FiZtfc8mkZc4IgoMEA==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/netbsd-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.14.tgz", - "integrity": "sha512-U06pfx8P5CqyoPNfqIJmnf+5/r4mJ1S62G4zE6eOjS59naQcxi6GnscUCPH3b+hRG0qdKoGX49RAyiqW+M9aSw==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/openbsd-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.14.tgz", - "integrity": "sha512-/Jl8XVaWEZNu9rZw+n792GIBupQwHo6GDoapHSb/2xp/Ku28eK6QpR2O9cPBkzHH4OOoMH0LB6zg/qczJ5TTGg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/sunos-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.14.tgz", - "integrity": "sha512-2iI7D34uTbDn/TaSiUbEHz+fUa8KbN90vX5yYqo12QGpu6T8Jl+kxODsWuMCwoTVlqUpwfPV22nBbFPME9OPtw==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/win32-arm64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.14.tgz", - "integrity": "sha512-SjlM7AHmQVTiGBJE/nqauY1aDh80UBsXZ94g4g60CDkrDMseatiqALVcIuElg4ZSYzJs8hsg5W6zS2zLpZTVgg==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/win32-ia32": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.14.tgz", - "integrity": "sha512-z06t5zqk8ak0Xom5HG81z2iOQ1hNWYsFQp3sczVLVx+dctWdgl80tNRyTbwjaFfui2vFO12dfE3trCTvA+HO4g==", - "dev": true, - "optional": true, - "peer": true - }, - "@esbuild/win32-x64": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.14.tgz", - "integrity": "sha512-ED1UpWcM6lAbalbbQ9TrGqJh4Y9TaASUvu8bI/0mgJcxhSByJ6rbpgqRhxYMaQ682WfA71nxUreaTO7L275zrw==", - "dev": true, - "optional": true, - "peer": true - }, - "@eslint-community/eslint-utils": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.3.0.tgz", - "integrity": "sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", - "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "globals": { - "version": "13.22.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", - "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "@eslint/js": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", - "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", - "dev": true - }, - "@fal-works/esbuild-plugin-global-externals": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", - "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==", - "dev": true - }, - "@floating-ui/core": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.2.tgz", - "integrity": "sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==", - "requires": { - "@floating-ui/utils": "^0.2.0" - } - }, - "@floating-ui/dom": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.5.tgz", - "integrity": "sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==", - "requires": { - "@floating-ui/core": "^1.0.0", - "@floating-ui/utils": "^0.2.0" - } - }, - "@floating-ui/react-dom": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.0.tgz", - "integrity": "sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==", - "requires": { - "@floating-ui/dom": "^1.0.0" - } - }, - "@floating-ui/utils": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.2.tgz", - "integrity": "sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==" - }, - "@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@ianvs/prettier-plugin-sort-imports": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.1.0.tgz", - "integrity": "sha512-IAXeTLU24k6mRPa6mFbW1qZJ/j0m3OeH44wyijWyr+YqqdNtBnfHxAntOAATS9iDfrT01NesKGsdzqnXdDQa/A==", - "dev": true, - "requires": { - "@babel/core": "^7.21.8", - "@babel/generator": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "semver": "^7.5.0" - } - }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - } - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true - }, - "@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.27.8" - } - }, - "@jest/transform": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", - "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/types": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", - "dev": true, - "requires": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@joshwooding/vite-plugin-react-docgen-typescript": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.3.0.tgz", - "integrity": "sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==", - "dev": true, - "requires": { - "glob": "^7.2.0", - "glob-promise": "^4.2.0", - "magic-string": "^0.27.0", - "react-docgen-typescript": "^2.2.2" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, - "@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" - }, - "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "optional": true, - "peer": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "optional": true, - "peer": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - } - } - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "@juggle/resize-observer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", - "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" - }, - "@loaders.gl/3d-tiles": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-3.4.14.tgz", - "integrity": "sha512-cxStTSLIJgRZnkTBYTcp9FPVBQWQlJMzW1LRlaKWiwAHkOKBElszzApIIEvRvZGSrs8k8TUi6BJ1Y41iiANF7w==", - "requires": { - "@loaders.gl/draco": "3.4.14", - "@loaders.gl/gltf": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/math": "3.4.14", - "@loaders.gl/tiles": "3.4.14", - "@math.gl/core": "^3.5.1", - "@math.gl/geospatial": "^3.5.1", - "long": "^5.2.1" - }, - "dependencies": { - "long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" - } - } - }, - "@loaders.gl/core": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-3.4.14.tgz", - "integrity": "sha512-5PFcjv7xC8AYL17juDMrvo8n0Fcwg9s8F4BaM2YCNUsb9RCI2SmLuIFJMcx1GgHO5vL0WiTIKO+JT4n1FuNR6w==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/worker-utils": "3.4.14", - "@probe.gl/log": "^4.0.1" - }, - "dependencies": { - "@probe.gl/env": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-4.0.4.tgz", - "integrity": "sha512-sYNGqesDfWD6dFP5oNZtTeFA4Z6ak5T4a8BNPdNhoqy7PK9w70JHrb6mv+RKWqKXq33KiwCDWL7fYxx2HuEH2w==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@probe.gl/log": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-4.0.4.tgz", - "integrity": "sha512-WpmXl6njlBMwrm8HBh/b4kSp/xnY1VVmeT4PWUKF+RkVbFuKQbsU11dA1IxoMd7gSY+5DGIwxGfAv1H5OMzA4A==", - "requires": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "4.0.4" - } - } - } - }, - "@loaders.gl/draco": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-3.4.14.tgz", - "integrity": "sha512-HwNFFt+dKZqFtzI0uVGvRkudFEZXxybJ+ZRsNkBbzAWoMM5L1TpuLs6DPsqPQUIT9HXNHzov18cZI0gK5bTJpg==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@loaders.gl/worker-utils": "3.4.14", - "draco3d": "1.5.5" - } - }, - "@loaders.gl/gis": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-3.4.14.tgz", - "integrity": "sha512-5cmhIwioPpSkfNzFRM3PbFDecjpYIhtEOFbryu3rE37npKHLTD2tF4ocQxUPB+QVED6GLwWBdzJIs64UWGrqjw==", - "requires": { - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@mapbox/vector-tile": "^1.3.1", - "@math.gl/polygon": "^3.5.1", - "pbf": "^3.2.1" - } - }, - "@loaders.gl/gltf": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-3.4.14.tgz", - "integrity": "sha512-jv+B5S/taiwzXAOu5D9nk1jjU9+JCCr/6/nGguCE2Ya3IX7CI1Nlnp20eKKhW8ZCEokZavMNT0bNbiJ5ahEFjA==", - "requires": { - "@loaders.gl/draco": "3.4.14", - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/textures": "3.4.14", - "@math.gl/core": "^3.5.1" - } - }, - "@loaders.gl/images": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-3.4.14.tgz", - "integrity": "sha512-tL447hTWhOKBOB87SE4hvlC8OkbRT0mEaW1a/wIS9f4HnYDa/ycRLMV+nvdvYMZur4isNPam44oiRqi7GcILkg==", - "requires": { - "@loaders.gl/loader-utils": "3.4.14" - } - }, - "@loaders.gl/loader-utils": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-3.4.14.tgz", - "integrity": "sha512-HCTY2/F83RLbZWcTvWLVJ1vke3dl6Bye20HU1AqkA37J2vzHwOZ8kj6eee8eeSkIkf7VIFwjyhVJxe0flQE/Bw==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/worker-utils": "3.4.14", - "@probe.gl/stats": "^4.0.1" - }, - "dependencies": { - "@probe.gl/stats": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-4.0.4.tgz", - "integrity": "sha512-SDuSY/D4yDL6LQDa69l/GCcnZLRiGYdyvYkxWb0CgnzTPdPrcdrzGkzkvpC3zsA4fEFw2smlDje370QGHwlisg==", - "requires": { - "@babel/runtime": "^7.0.0" - } - } - } - }, - "@loaders.gl/math": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-3.4.14.tgz", - "integrity": "sha512-OBEVX6Q5pMipbCAiZyX2+q1zRd0nw8M2dclpny05on8700OaKMwfs47wEUnbfCU3iyHad3sgsAxN3EIh+kuo9Q==", - "requires": { - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@math.gl/core": "^3.5.1" - } - }, - "@loaders.gl/mvt": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-3.4.14.tgz", - "integrity": "sha512-tozGmWvsJacjaLavjX4S/5yNDV9S4wJb7+vPG/nXWX2gTtgZ1mxcFQAtAJjokqpy37d1ZhLt+TXh0HrLoTmRgw==", - "requires": { - "@loaders.gl/gis": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@math.gl/polygon": "^3.5.1", - "pbf": "^3.2.1" - } - }, - "@loaders.gl/schema": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-3.4.14.tgz", - "integrity": "sha512-r6BEDfUvbvzgUnh/MtkR5RzrkIwo1x1jtPFRTSJVsIZO7arXXlu3blffuv5ppEkKpNZ1Xzd9WtHp/JIkuctsmw==", - "requires": { - "@types/geojson": "^7946.0.7" - } - }, - "@loaders.gl/terrain": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-3.4.14.tgz", - "integrity": "sha512-vhchEVkPaWXnqd2ofujG2AEnBsk4hEw6LWSaFY7E3VMzNhI9l2EHvyU3+Hs03jYbXM4oLlQPGqd/T7x+5IMtig==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@mapbox/martini": "^0.2.0" - } - }, - "@loaders.gl/textures": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-3.4.14.tgz", - "integrity": "sha512-iKDHL2ZlOUud4/e3g0p0SyvkukznopYy6La3O6I9vDfKp8peuKMRRcTfFfd/zH0OqQC0hIhCXNz46vRLu7h6ng==", - "requires": { - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@loaders.gl/worker-utils": "3.4.14", - "ktx-parse": "^0.0.4", - "texture-compressor": "^1.0.2" - } - }, - "@loaders.gl/tiles": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-3.4.14.tgz", - "integrity": "sha512-an3scxl65r74LW4WoIGgluBmQpMY9eb381y9mZmREphTP6bWEj96fL/tiR+G6TiE6HJqTv8O3PH6xwI9OQmEJg==", - "requires": { - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/math": "3.4.14", - "@math.gl/core": "^3.5.1", - "@math.gl/culling": "^3.5.1", - "@math.gl/geospatial": "^3.5.1", - "@math.gl/web-mercator": "^3.5.1", - "@probe.gl/stats": "^4.0.1" - }, - "dependencies": { - "@probe.gl/stats": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-4.0.4.tgz", - "integrity": "sha512-SDuSY/D4yDL6LQDa69l/GCcnZLRiGYdyvYkxWb0CgnzTPdPrcdrzGkzkvpC3zsA4fEFw2smlDje370QGHwlisg==", - "requires": { - "@babel/runtime": "^7.0.0" - } - } - } - }, - "@loaders.gl/wkt": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/wkt/-/wkt-3.4.14.tgz", - "integrity": "sha512-2Epq+2P7uRx3BwAhmx7MIeaX5rQv/ooYdVh3q3bs2M/xKQ6yPXhx+He+3f8oWxWmWEjL1DnRrfkiGms2vet+cA==", - "requires": { - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14" - } - }, - "@loaders.gl/wms": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/wms/-/wms-3.4.14.tgz", - "integrity": "sha512-D1pObPSUj885zGPyHIb7GtcwpHQNk0T8nK/4EHb0SHLe0y1b4qwqSOswdS9geXT9Q61hyhl/L0zqyTgwjiMStg==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/images": "3.4.14", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "@loaders.gl/xml": "3.4.14", - "@turf/rewind": "^5.1.5", - "deep-strict-equal": "^0.2.0", - "lerc": "^4.0.1" - } - }, - "@loaders.gl/worker-utils": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-3.4.14.tgz", - "integrity": "sha512-PUSwxoAYbskisXd0KfYEQ902b0igBA2UAWdP6PzPvY+tJmobfh74dTNwrrBQ1rGXQxxmGx6zc6/ksX6mlIzIrg==", - "requires": { - "@babel/runtime": "^7.3.1" - } - }, - "@loaders.gl/xml": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@loaders.gl/xml/-/xml-3.4.14.tgz", - "integrity": "sha512-SNMGOHz4p8Cw+M6kxXhFEjXdNddJPOZY1rzNmRq7NYdGQlQYYeJdqV5HWzHx9BkoQYyrDXkrweGN0mY9QxCfeA==", - "requires": { - "@babel/runtime": "^7.3.1", - "@loaders.gl/loader-utils": "3.4.14", - "@loaders.gl/schema": "3.4.14", - "fast-xml-parser": "^4.2.5" - } - }, - "@luma.gl/constants": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-8.5.21.tgz", - "integrity": "sha512-aJxayGxTT+IRd1vfpcgD/cKSCiVJjBNiuiChS96VulrmCvkzUOLvYXr42y5qKB4RyR7vOIda5uQprNzoHrhQAA==" - }, - "@luma.gl/core": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-8.5.21.tgz", - "integrity": "sha512-11jQJQEMoR/IN2oIsd4zFxiQJk6FE+xgVIMUcsCTBuzafTtQZ8Po9df8mt+MVewpDyBlTVs6g8nxHRH4np1ukA==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.21", - "@luma.gl/engine": "8.5.21", - "@luma.gl/gltools": "8.5.21", - "@luma.gl/shadertools": "8.5.21", - "@luma.gl/webgl": "8.5.21" - } - }, - "@luma.gl/engine": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-8.5.21.tgz", - "integrity": "sha512-IG3WQSKXFNUEs8QG7ZjHtGiOtsakUu+BAxtJ6997A6/F06yynZ44tPe5NU70jG9Yfu3kV0LykPZg7hO3vXZDiA==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.21", - "@luma.gl/gltools": "8.5.21", - "@luma.gl/shadertools": "8.5.21", - "@luma.gl/webgl": "8.5.21", - "@math.gl/core": "^3.5.0", - "@probe.gl/env": "^3.5.0", - "@probe.gl/stats": "^3.5.0", - "@types/offscreencanvas": "^2019.7.0" - } - }, - "@luma.gl/experimental": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/experimental/-/experimental-8.5.21.tgz", - "integrity": "sha512-uFKPChGofyihOKxtqJy78QCQCDFnuMTK4QHrUX/qiTnvFSO8BgtTUevKvWGN9lBvq+uDD0lSieeF9yBzhQfAzw==", - "requires": { - "@luma.gl/constants": "8.5.21", - "@math.gl/core": "^3.5.0", - "earcut": "^2.0.6" - } - }, - "@luma.gl/gltools": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/gltools/-/gltools-8.5.21.tgz", - "integrity": "sha512-6qZ0LaT2Mxa4AJT5F44TFoaziokYiHUwO45vnM/NYUOIu9xevcmS6VtToawytMEACGL6PDeDyVqP3Y80SDzq5g==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.21", - "@probe.gl/env": "^3.5.0", - "@probe.gl/log": "^3.5.0", - "@types/offscreencanvas": "^2019.7.0" - } - }, - "@luma.gl/shadertools": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-8.5.21.tgz", - "integrity": "sha512-WQah7yFDJ8cNCLPYpIm3r0wSlXLvjoA279fcknmATvvkW3/i8PcCJ/nYEBJO3hHEwwMQxD16+YZu/uwGiifLMg==", - "requires": { - "@babel/runtime": "^7.0.0", - "@math.gl/core": "^3.5.0" - } - }, - "@luma.gl/webgl": { - "version": "8.5.21", - "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-8.5.21.tgz", - "integrity": "sha512-ZVLO4W5UuaOlzZIwmFWhnmZ1gYoU97a+heMqxLrSSmCUAsSu3ZETUex9gOmzdM1WWxcdWaa3M68rvKCNEgwz0Q==", - "requires": { - "@babel/runtime": "^7.0.0", - "@luma.gl/constants": "8.5.21", - "@luma.gl/gltools": "8.5.21", - "@probe.gl/env": "^3.5.0", - "@probe.gl/stats": "^3.5.0" - } - }, - "@mapbox/geojson-rewind": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", - "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", - "requires": { - "get-stream": "^6.0.1", - "minimist": "^1.2.6" - } - }, - "@mapbox/geojson-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz", - "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==", - "optional": true, - "peer": true - }, - "@mapbox/jsonlint-lines-primitives": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", - "integrity": "sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=" - }, - "@mapbox/mapbox-gl-supported": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.5.0.tgz", - "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", - "optional": true, - "peer": true, - "requires": {} - }, - "@mapbox/martini": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", - "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==" - }, - "@mapbox/point-geometry": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", - "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=" - }, - "@mapbox/tile-cover": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/tile-cover/-/tile-cover-3.0.1.tgz", - "integrity": "sha512-R8aoFY/87HWBOL9E2eBqzOY2lpfWYXCcTNgBpIxAv67rqQeD4IfnHD0iPXg/Z1cqXrklegEYZCp/7ZR/RsWqBQ==", - "requires": { - "tilebelt": "^1.0.1" - } - }, - "@mapbox/tiny-sdf": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-1.2.5.tgz", - "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==", - "optional": true, - "peer": true - }, - "@mapbox/unitbezier": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz", - "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=", - "optional": true, - "peer": true - }, - "@mapbox/vector-tile": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", - "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", - "requires": { - "@mapbox/point-geometry": "~0.1.0" - } - }, - "@mapbox/whoots-js": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", - "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==" - }, - "@maplibre/maplibre-gl-style-spec": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.1.tgz", - "integrity": "sha512-ss5+b3/a8I1wD5PYmAYPYxg0Nag0cxvw4GGOnQroTP59sobTPI3KeHP9OjUr/es7uNtYEodr54fgoEnCBF6gaQ==", - "requires": { - "@mapbox/jsonlint-lines-primitives": "~2.0.2", - "@mapbox/unitbezier": "^0.0.1", - "json-stringify-pretty-compact": "^3.0.0", - "minimist": "^1.2.8", - "rw": "^1.3.3", - "sort-object": "^3.0.3" - }, - "dependencies": { - "@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - } - } - }, - "@math.gl/core": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", - "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", - "requires": { - "@babel/runtime": "^7.12.0", - "@math.gl/types": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "@math.gl/culling": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-3.6.3.tgz", - "integrity": "sha512-3UERXHbaPlM6pnTk2MI7LeQ5CoelDZzDzghTTcv+HdQCZsT/EOEuEdYimETHtSxiyiOmsX2Un65UBLYT/rbKZg==", - "requires": { - "@babel/runtime": "^7.12.0", - "@math.gl/core": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "@math.gl/geospatial": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-3.6.3.tgz", - "integrity": "sha512-6xf657lJnaecSarSzn02t0cnsCSkWb+39m4+im96v20dZTrLCWZ2glDQVzfuL91meDnDXjH4oyvynp12Mj5MFg==", - "requires": { - "@babel/runtime": "^7.12.0", - "@math.gl/core": "3.6.3", - "gl-matrix": "^3.4.0" - } - }, - "@math.gl/polygon": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-3.6.3.tgz", - "integrity": "sha512-FivQ1ZnYcAss1wVifOkHP/ZnlfQy1IL/769uzNtiHxwUbW0kZG3yyOZ9I7fwyzR5Hvqt3ErJKHjSYZr0uVlz5g==", - "requires": { - "@math.gl/core": "3.6.3" - } - }, - "@math.gl/sun": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-3.6.3.tgz", - "integrity": "sha512-mrx6CGYYeTNSQttvcw0KVUy+35YDmnjMqpO/o0t06Vcghrt0HNruB/ScRgUSbJrgkbOg1Vcqm23HBd++clzQzw==", - "requires": { - "@babel/runtime": "^7.12.0" - } - }, - "@math.gl/types": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", - "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==" - }, - "@math.gl/web-mercator": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-3.6.3.tgz", - "integrity": "sha512-UVrkSOs02YLehKaehrxhAejYMurehIHPfFQvPFZmdJHglHOU4V2cCUApTVEwOksvCp161ypEqVp+9H6mGhTTcw==", - "requires": { - "@babel/runtime": "^7.12.0", - "gl-matrix": "^3.4.0" - } - }, - "@mdx-js/mdx": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz", - "integrity": "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/mdx": "^2.0.0", - "estree-util-build-jsx": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-util-to-js": "^1.1.0", - "estree-walker": "^3.0.0", - "hast-util-to-estree": "^2.0.0", - "markdown-extensions": "^1.0.0", - "periscopic": "^3.0.0", - "remark-mdx": "^2.0.0", - "remark-parse": "^10.0.0", - "remark-rehype": "^10.0.0", - "unified": "^10.0.0", - "unist-util-position-from-estree": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - }, - "unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - } - }, - "unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - } - } - } - }, - "@mdx-js/react": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz", - "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==", - "dev": true, - "requires": { - "@types/mdx": "^2.0.0", - "@types/react": ">=16" - } - }, - "@mdx-js/rollup": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@mdx-js/rollup/-/rollup-2.3.0.tgz", - "integrity": "sha512-wLvRfJS/M4UmdqTd+WoaySEE7q4BIejYf1xAHXYvtT1du/1Tl/z2450Gg2+Hu7fh05KwRRiehiTP9Yc/Dtn0fA==", - "dev": true, - "requires": { - "@mdx-js/mdx": "^2.0.0", - "@rollup/pluginutils": "^5.0.0", - "source-map": "^0.7.0", - "vfile": "^5.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - } - } - }, - "@mui/base": { - "version": "5.0.0-alpha.121", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.121.tgz", - "integrity": "sha512-8nJRY76UqlJV+q/Yzo0tgGfPWEOa+4N9rjO81fMmcJqP0I6m54hLDXsjvMg4tvelY5eKHXUK6Tb7en+GHfTqZA==", - "requires": { - "@babel/runtime": "^7.21.0", - "@emotion/is-prop-valid": "^1.2.0", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.13", - "@popperjs/core": "^2.11.6", - "clsx": "^1.2.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "dependencies": { - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - } - }, - "@mui/core-downloads-tracker": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.20.tgz", - "integrity": "sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==" - }, - "@mui/icons-material": { - "version": "5.11.11", - "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.11.tgz", - "integrity": "sha512-Eell3ADmQVE8HOpt/LZ3zIma8JSvPh3XgnhwZLT0k5HRqZcd6F/QDHc7xsWtgz09t+UEFvOYJXjtrwKmLdwwpw==", - "requires": { - "@babel/runtime": "^7.21.0" - } - }, - "@mui/lab": { - "version": "5.0.0-alpha.123", - "resolved": "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.123.tgz", - "integrity": "sha512-E6PyNETF/FcGyGSMql25cQCZqbo+07EAEjHXM15V0R6rwQ/ZA/Dst41iQvyHk6t1QLI3vRw6YOR43OGKM3jURA==", - "requires": { - "@babel/runtime": "^7.21.0", - "@mui/base": "5.0.0-alpha.121", - "@mui/system": "^5.11.13", - "@mui/types": "^7.2.3", - "@mui/utils": "^5.11.13", - "clsx": "^1.2.1", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "dependencies": { - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - } - }, - "@mui/material": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.15.20.tgz", - "integrity": "sha512-tVq3l4qoXx/NxUgIx/x3lZiPn/5xDbdTE8VrLczNpfblLYZzlrbxA7kb9mI8NoBF6+w9WE9IrxWnKK5KlPI2bg==", - "requires": { - "@babel/runtime": "^7.23.9", - "@mui/base": "5.0.0-beta.40", - "@mui/core-downloads-tracker": "^5.15.20", - "@mui/system": "^5.15.20", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.20", - "@types/react-transition-group": "^4.4.10", - "clsx": "^2.1.0", - "csstype": "^3.1.3", - "prop-types": "^15.8.1", - "react-is": "^18.2.0", - "react-transition-group": "^4.4.5" - }, - "dependencies": { - "@mui/base": { - "version": "5.0.0-beta.40", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.40.tgz", - "integrity": "sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==", - "requires": { - "@babel/runtime": "^7.23.9", - "@floating-ui/react-dom": "^2.0.8", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.14", - "@popperjs/core": "^2.11.8", - "clsx": "^2.1.0", - "prop-types": "^15.8.1" - } - }, - "clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" - }, - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - } - }, - "@mui/private-theming": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.15.20.tgz", - "integrity": "sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==", - "requires": { - "@babel/runtime": "^7.23.9", - "@mui/utils": "^5.15.20", - "prop-types": "^15.8.1" - } - }, - "@mui/styled-engine": { - "version": "5.15.14", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.15.14.tgz", - "integrity": "sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==", - "requires": { - "@babel/runtime": "^7.23.9", - "@emotion/cache": "^11.11.0", - "csstype": "^3.1.3", - "prop-types": "^15.8.1" - } - }, - "@mui/system": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.15.20.tgz", - "integrity": "sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==", - "requires": { - "@babel/runtime": "^7.23.9", - "@mui/private-theming": "^5.15.20", - "@mui/styled-engine": "^5.15.14", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.20", - "clsx": "^2.1.0", - "csstype": "^3.1.3", - "prop-types": "^15.8.1" - }, - "dependencies": { - "clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" - } - } - }, - "@mui/types": { - "version": "7.2.14", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.14.tgz", - "integrity": "sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==", - "requires": {} - }, - "@mui/utils": { - "version": "5.15.20", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.15.20.tgz", - "integrity": "sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==", - "requires": { - "@babel/runtime": "^7.23.9", - "@types/prop-types": "^15.7.11", - "prop-types": "^15.8.1", - "react-is": "^18.2.0" - }, - "dependencies": { - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - } - }, - "@mui/x-tree-view": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/@mui/x-tree-view/-/x-tree-view-7.7.0.tgz", - "integrity": "sha512-kUTMS77EcNjp1iXZlm4GGFzZHnQdZJfn2L9gvxAaHtNTDSRMS61jpsCcXknIyC797dmRPdALPewNzSOfkThF+Q==", - "requires": { - "@babel/runtime": "^7.24.7", - "@mui/base": "^5.0.0-beta.40", - "@mui/system": "^5.15.15", - "@mui/utils": "^5.15.14", - "@types/react-transition-group": "^4.4.10", - "clsx": "^2.1.1", - "prop-types": "^15.8.1", - "react-transition-group": "^4.4.5" - }, - "dependencies": { - "@mui/base": { - "version": "5.0.0-beta.40", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.40.tgz", - "integrity": "sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==", - "requires": { - "@babel/runtime": "^7.23.9", - "@floating-ui/react-dom": "^2.0.8", - "@mui/types": "^7.2.14", - "@mui/utils": "^5.15.14", - "@popperjs/core": "^2.11.8", - "clsx": "^2.1.0", - "prop-types": "^15.8.1" - } - }, - "clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" - } - } - }, - "@ndelangen/get-tarball": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz", - "integrity": "sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==", - "dev": true, - "requires": { - "gunzip-maybe": "^1.4.2", - "pump": "^3.0.0", - "tar-fs": "^2.1.1" - } - }, - "@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", - "dev": true, - "requires": { - "eslint-scope": "5.1.1" - } - }, - "@nismod/irv-api-client": { - "version": "0.8.0", - "resolved": "https://npm.pkg.github.com/download/@nismod/irv-api-client/0.8.0/95c79a3115bd2117393c1c7f3841965d485481af", - "integrity": "sha512-L+FgndiFmRpBLJ6xwe/ktqKbJ4LCPo55VlfwnjbpGsN9joKWjrKUjgUlVXANWmwEaWNreAVRmvPmlqatpzF1pw==" - }, - "@nismod/irv-autopkg-client": { - "version": "0.2.7-dev", - "resolved": "https://npm.pkg.github.com/download/@nismod/irv-autopkg-client/0.2.7-dev/e43c61e1acebe08026bd4e8c221c1ae7b62b1868", - "integrity": "sha512-xo2zP5Woc2Nn27tbtYuXl2r5zLuUEhqoUhoX1sEQz2aOUcDeLBaoXOSUwjPioSoi8v1Xfg54wQoWGSF4fkxcJw==" - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", - "dev": true, - "requires": { - "semver": "^7.3.5" - } - }, - "@npmcli/git": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.0.3.tgz", - "integrity": "sha512-8cXNkDIbnXPVbhXMmQ7/bklCAjtmPaXfI9aEM4iH+xSuEHINLMHhlfESvVwdqmHJRJkR48vNJTSUvoF6GRPSFA==", - "dev": true, - "requires": { - "@npmcli/promise-spawn": "^6.0.0", - "lru-cache": "^7.4.4", - "mkdirp": "^1.0.4", - "npm-pick-manifest": "^8.0.0", - "proc-log": "^3.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^3.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "which": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.0.tgz", - "integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", - "dev": true, - "requires": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - } - }, - "@npmcli/move-file": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", - "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - } - } - }, - "@npmcli/node-gyp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", - "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", - "dev": true - }, - "@npmcli/promise-spawn": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", - "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", - "dev": true, - "requires": { - "which": "^3.0.0" - }, - "dependencies": { - "which": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.0.tgz", - "integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@npmcli/run-script": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.0.tgz", - "integrity": "sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==", - "dev": true, - "requires": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^6.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^3.0.0" - }, - "dependencies": { - "which": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.0.tgz", - "integrity": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true - }, - "@pnpm/config.env-replace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.0.0.tgz", - "integrity": "sha512-ZVPVDi1E8oeXlYqkGRtX0CkzLTwE2zt62bjWaWKaAvI8NZqHzlMvGeSNDpW+JB3+aKanYb4UETJOF1/CxGPemA==", - "dev": true - }, - "@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", - "dev": true, - "requires": { - "graceful-fs": "4.2.10" - } - }, - "@pnpm/npm-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.1.0.tgz", - "integrity": "sha512-Oe6ntvgsMTE3hDIqy6sajqHF+MnzJrOF06qC2QSiUEybLL7cp6tjoKUa32gpd9+KPVl4QyMs3E3nsXrx/Vdnlw==", - "dev": true, - "requires": { - "@pnpm/config.env-replace": "^1.0.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - } - }, - "@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" - }, - "@probe.gl/env": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-3.5.0.tgz", - "integrity": "sha512-YdlpZZshhyYxvWDBmZ5RIW2pTR14Pw4p9czMlt/v7F6HbFzWfAdmH7q6xVwFRYxUpQLwhWensWyv4aFysiWl4g==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@probe.gl/log": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-3.5.0.tgz", - "integrity": "sha512-nW/qz2X1xY08WU/TsmJP6/6IPNcaY5fS/vLjpC4ahJuE2Mezga4hGM/R2X5JWE/nkPc+BsC5GnAnD13rwAxS7g==", - "requires": { - "@babel/runtime": "^7.0.0", - "@probe.gl/env": "3.5.0" - } - }, - "@probe.gl/stats": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-3.6.0.tgz", - "integrity": "sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==", - "requires": { - "@babel/runtime": "^7.0.0" - } - }, - "@radix-ui/number": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz", - "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", - "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-arrow": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz", - "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-primitive": "1.0.3" - } - }, - "@radix-ui/react-collection": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz", - "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-slot": "1.0.2" - } - }, - "@radix-ui/react-compose-refs": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", - "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-context": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", - "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-direction": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz", - "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-dismissable-layer": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.4.tgz", - "integrity": "sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@radix-ui/react-use-escape-keydown": "1.0.3" - } - }, - "@radix-ui/react-focus-guards": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz", - "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-focus-scope": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.3.tgz", - "integrity": "sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-callback-ref": "1.0.1" - } - }, - "@radix-ui/react-id": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", - "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-layout-effect": "1.0.1" - } - }, - "@radix-ui/react-popper": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.2.tgz", - "integrity": "sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@floating-ui/react-dom": "^2.0.0", - "@radix-ui/react-arrow": "1.0.3", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@radix-ui/react-use-layout-effect": "1.0.1", - "@radix-ui/react-use-rect": "1.0.1", - "@radix-ui/react-use-size": "1.0.1", - "@radix-ui/rect": "1.0.1" - } - }, - "@radix-ui/react-portal": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.3.tgz", - "integrity": "sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-primitive": "1.0.3" - } - }, - "@radix-ui/react-primitive": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", - "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-slot": "1.0.2" - } - }, - "@radix-ui/react-roving-focus": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz", - "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-collection": "1.0.3", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-id": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@radix-ui/react-use-controllable-state": "1.0.1" - } - }, - "@radix-ui/react-select": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-1.2.2.tgz", - "integrity": "sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/number": "1.0.1", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-collection": "1.0.3", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-dismissable-layer": "1.0.4", - "@radix-ui/react-focus-guards": "1.0.1", - "@radix-ui/react-focus-scope": "1.0.3", - "@radix-ui/react-id": "1.0.1", - "@radix-ui/react-popper": "1.1.2", - "@radix-ui/react-portal": "1.0.3", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-slot": "1.0.2", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@radix-ui/react-use-controllable-state": "1.0.1", - "@radix-ui/react-use-layout-effect": "1.0.1", - "@radix-ui/react-use-previous": "1.0.1", - "@radix-ui/react-visually-hidden": "1.0.3", - "aria-hidden": "^1.1.1", - "react-remove-scroll": "2.5.5" - } - }, - "@radix-ui/react-separator": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz", - "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-primitive": "1.0.3" - } - }, - "@radix-ui/react-slot": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", - "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.1" - } - }, - "@radix-ui/react-toggle": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.0.3.tgz", - "integrity": "sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-use-controllable-state": "1.0.1" - } - }, - "@radix-ui/react-toggle-group": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.0.4.tgz", - "integrity": "sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-roving-focus": "1.0.4", - "@radix-ui/react-toggle": "1.0.3", - "@radix-ui/react-use-controllable-state": "1.0.1" - } - }, - "@radix-ui/react-toolbar": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.0.4.tgz", - "integrity": "sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-roving-focus": "1.0.4", - "@radix-ui/react-separator": "1.0.3", - "@radix-ui/react-toggle-group": "1.0.4" - } - }, - "@radix-ui/react-use-callback-ref": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", - "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-use-controllable-state": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", - "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-callback-ref": "1.0.1" - } - }, - "@radix-ui/react-use-escape-keydown": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", - "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-callback-ref": "1.0.1" - } - }, - "@radix-ui/react-use-layout-effect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", - "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-use-previous": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz", - "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-use-rect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", - "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/rect": "1.0.1" - } - }, - "@radix-ui/react-use-size": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", - "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-use-layout-effect": "1.0.1" - } - }, - "@radix-ui/react-visually-hidden": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", - "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-primitive": "1.0.3" - } - }, - "@radix-ui/rect": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", - "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@reach/portal": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@reach/portal/-/portal-0.13.2.tgz", - "integrity": "sha512-g74BnCdtuTGthzzHn2cWW+bcyIYb0iIE/yRsm89i8oNzNgpopbkh9UY8TPbhNlys52h7U60s4kpRTmcq+JqsTA==", - "requires": { - "@reach/utils": "0.13.2", - "tslib": "^2.1.0" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@reach/utils": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@reach/utils/-/utils-0.13.2.tgz", - "integrity": "sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==", - "requires": { - "@types/warning": "^3.0.0", - "tslib": "^2.1.0", - "warning": "^4.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@react-hook/debounce": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@react-hook/debounce/-/debounce-4.0.0.tgz", - "integrity": "sha512-706Xcg+KKWHk9BuZQUQ0ZQKp9zhv3/MbqFenWVfHcynYpSGRVwQTzJRGvPxvsdtXxJv+HfgKTY/O/hEejakwmA==", - "requires": { - "@react-hook/latest": "^1.0.2" - } - }, - "@react-hook/latest": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@react-hook/latest/-/latest-1.0.3.tgz", - "integrity": "sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==", - "requires": {} - }, - "@recoiljs/refine": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@recoiljs/refine/-/refine-0.1.1.tgz", - "integrity": "sha512-ry02rHswJePYkH1o8K99qL4O6TBntF9/g7W5wXVwaOUrIJEZUGfl/I3+btPXbUgyyEZvNs5xcwvOw13AufmFQw==" - }, - "@remix-run/router": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.4.0.tgz", - "integrity": "sha512-BJ9SxXux8zAg991UmT8slpwpsd31K1dHHbD3Ba4VzD+liLQ4WAMSxQp2d2ZPRPfN0jN2NPRowcSSoM7lCaF08Q==" - }, - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", - "dev": true - }, - "@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", - "dev": true - }, - "@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true - }, - "@sindresorhus/is": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", - "integrity": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==", - "dev": true - }, - "@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", - "dev": true - }, - "@storybook/addon-actions": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.6.19.tgz", - "integrity": "sha512-ATLrA5QKFJt7tIAScRHz5T3eBQ+RG3jaZk08L7gChvyQZhei8knWwePElZ7GaWbCr9BgznQp1lQUUXq/UUblAQ==", - "dev": true, - "requires": { - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "@types/uuid": "^9.0.1", - "dequal": "^2.0.2", - "polished": "^4.2.2", - "uuid": "^9.0.0" - }, - "dependencies": { - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - } - } - }, - "@storybook/addon-backgrounds": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.6.19.tgz", - "integrity": "sha512-Nu3LAZODRSV2e5bOroKm/Jp6BIFzwu/nJxD5OvLWkkwNCh+vDXUFbbaVrZf5xRL+fHd9iLFPtWbJQpF/w7UsCw==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/addon-controls": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.6.19.tgz", - "integrity": "sha512-cl6PCNEwihDjuWIUsKTyDNKk+/IE4J3oMbSY5AZV/9Z0jJbpMV2shVm5DMZm5LhCCVcu5obWcxCIa4FMIMJAMQ==", - "dev": true, - "requires": { - "@storybook/blocks": "7.6.19", - "lodash": "^4.17.21", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/addon-docs": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.6.19.tgz", - "integrity": "sha512-nv+9SR/NOtM8Od2esOXHcg0NQT8Pk8BMUyGwZu5Q3MLI4JxNVEG65dY0IP2j6Knc4UtlvQTpM0f7m5xp4seHjQ==", - "dev": true, - "requires": { - "@jest/transform": "^29.3.1", - "@mdx-js/react": "^2.1.5", - "@storybook/blocks": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/components": "7.6.19", - "@storybook/csf-plugin": "7.6.19", - "@storybook/csf-tools": "7.6.19", - "@storybook/global": "^5.0.0", - "@storybook/mdx2-csf": "^1.0.0", - "@storybook/node-logger": "7.6.19", - "@storybook/postinstall": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/react-dom-shim": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "fs-extra": "^11.1.0", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.19.tgz", - "integrity": "sha512-8Zw/RQ4crzKkUR7ojxvRIj8vktKiBBO8Nq93qv4JfDqDWrcR7cro0hOlZgmZmrzbFunBBt6WlsNNO6nVP7R4Xw==", - "dev": true, - "requires": { - "@radix-ui/react-select": "^1.2.2", - "@radix-ui/react-toolbar": "^1.0.4", - "@storybook/client-logger": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", - "dev": true - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/theming": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.19.tgz", - "integrity": "sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.6.19", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - } - } - }, - "@storybook/addon-essentials": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.6.19.tgz", - "integrity": "sha512-SC33ZEQ5YaOt9wDkrdZmwQgqPWo9om/gqnyif06eug3SwrTe9JjO5iq1PIBfQodLD9MAxr9cwBvO0NG505oszQ==", - "dev": true, - "requires": { - "@storybook/addon-actions": "7.6.19", - "@storybook/addon-backgrounds": "7.6.19", - "@storybook/addon-controls": "7.6.19", - "@storybook/addon-docs": "7.6.19", - "@storybook/addon-highlight": "7.6.19", - "@storybook/addon-measure": "7.6.19", - "@storybook/addon-outline": "7.6.19", - "@storybook/addon-toolbars": "7.6.19", - "@storybook/addon-viewport": "7.6.19", - "@storybook/core-common": "7.6.19", - "@storybook/manager-api": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/preview-api": "7.6.19", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.19.tgz", - "integrity": "sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==", - "dev": true, - "requires": { - "@storybook/core-events": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.18.0", - "esbuild-register": "^3.5.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/manager-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.19.tgz", - "integrity": "sha512-dVCx1Q+HZEA4U08XqYljiG88BeS3I3ahnPAQLZAeWQXQRkoc9G2jMgLNPKYPIqEtq7Xrn6SRlFMIofhwWrwZpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "store2": "^2.14.2", - "telejson": "^7.2.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", - "dev": true - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/router": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.19.tgz", - "integrity": "sha512-q2/AvY8rG0znFEfbg50OIhkS5yQ6OmyzdCdztoEsDDdsbq87YPmsDj7k8Op1EkTa2T5CB8XhBOCQDtcj7gUUtg==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - } - }, - "@storybook/theming": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.19.tgz", - "integrity": "sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.6.19", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/addon-highlight": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.6.19.tgz", - "integrity": "sha512-/pApl0oiVU1CQ8xETRNDLDthMBjeTmvFnTRq8RJ9m0JYTrSsoyHDmj9zS4K1k9gReqijE7brslhP8d2tblBpNw==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/addon-interactions": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.6.19.tgz", - "integrity": "sha512-lMQDu6JT2LXDWcRnIGvrKRk/W+67zOtUNpDKwoVuvM5eHVJcza5SPV6v8yXDLCHLOt7RZ15h6LT2uXabfKpcww==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "jest-mock": "^27.0.6", - "polished": "^4.2.2", - "ts-dedent": "^2.2.0" - }, - "dependencies": { - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - } - } - }, - "@storybook/addon-links": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.6.19.tgz", - "integrity": "sha512-qMIFfcsMf4olxhYUHUV2ZJhxphh6Xpf1DMd0lxKqAibfxl/sX1m0rJkyiqWSBxbCmAy/pwdgqEOJ1lpDUsJ33w==", - "dev": true, - "requires": { - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/addon-measure": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.6.19.tgz", - "integrity": "sha512-n+cfhVXXouBv9oQr3a77vvip5dTznaNoBDWMafP2ohauc8jBlAxeBwCjk5r3pyThMRIFCTG/ypZrhiJcSJT3bw==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/addon-outline": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.6.19.tgz", - "integrity": "sha512-Tt4MrfjK5j/Mdh8nJ8ccVyh78Dy7aiEPxO31YVvr5XUkge0pDi1PX328mHRDPur0i56NM8ssVbekWBZr+9MxlA==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/addon-toolbars": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.6.19.tgz", - "integrity": "sha512-+qGbPP2Vo/HoPiS4EJopZ127HGculCV74Hkz6ot7ob6AkYdA1yLMPzWns/ZXNIWm6ab3jV+iq+mQCM/i1qJzvA==", - "dev": true - }, - "@storybook/addon-viewport": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.6.19.tgz", - "integrity": "sha512-OQQtJ2kYwImbvE9QiC3I3yR0O0EBgNjq+XSaSS4ixJrvUyesfuB7Lm7RkubhEEiP4yANi9OlbzsqZelmPOnk6w==", - "dev": true, - "requires": { - "memoizerific": "^1.11.3" - } - }, - "@storybook/blocks": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.19.tgz", - "integrity": "sha512-/c/bVQRmyRPoviJhPrFdLfubRcrnZWTwkjxsCvrOTJ/UDOyEl0t/H8yY1mGq7KWWTdbIznnZWhAIofHnH4/Esw==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/components": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/docs-tools": "7.6.19", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "@types/lodash": "^4.14.167", - "color-convert": "^2.0.1", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "markdown-to-jsx": "^7.1.8", - "memoizerific": "^1.11.3", - "polished": "^4.2.2", - "react-colorful": "^5.1.2", - "telejson": "^7.2.0", - "tocbot": "^4.20.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "dependencies": { - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.19.tgz", - "integrity": "sha512-8Zw/RQ4crzKkUR7ojxvRIj8vktKiBBO8Nq93qv4JfDqDWrcR7cro0hOlZgmZmrzbFunBBt6WlsNNO6nVP7R4Xw==", - "dev": true, - "requires": { - "@radix-ui/react-select": "^1.2.2", - "@radix-ui/react-toolbar": "^1.0.4", - "@storybook/client-logger": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/manager-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.19.tgz", - "integrity": "sha512-dVCx1Q+HZEA4U08XqYljiG88BeS3I3ahnPAQLZAeWQXQRkoc9G2jMgLNPKYPIqEtq7Xrn6SRlFMIofhwWrwZpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.6.19", - "@storybook/theming": "7.6.19", - "@storybook/types": "7.6.19", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "store2": "^2.14.2", - "telejson": "^7.2.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/router": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.19.tgz", - "integrity": "sha512-q2/AvY8rG0znFEfbg50OIhkS5yQ6OmyzdCdztoEsDDdsbq87YPmsDj7k8Op1EkTa2T5CB8XhBOCQDtcj7gUUtg==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - } - }, - "@storybook/theming": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.19.tgz", - "integrity": "sha512-sAho13MmtA80ctOaLn8lpkQBsPyiqSdLcOPH5BWFhatQzzBQCpTAKQk+q/xGju8bNiPZ+yQBaBzbN8SfX8ceCg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.6.19", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } - } - }, - "@storybook/builder-manager": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.1.8.tgz", - "integrity": "sha512-M4qpETmQNUTg6KEt4nVONjF2dXlVV1V+Mxf9saiinoj+PCyHdz+BmYYmiGtopUPxJ2YGvTL1nGykkyH57HutrQ==", - "dev": true, - "requires": { - "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "8.1.8", - "@storybook/manager": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@types/ejs": "^3.1.1", - "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", - "browser-assert": "^1.2.1", - "ejs": "^3.1.10", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-plugin-alias": "^0.2.1", - "express": "^4.17.3", - "fs-extra": "^11.1.0", - "process": "^0.11.10", - "util": "^0.12.4" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", - "dev": true, - "requires": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - } - }, - "@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", - "dev": true, - "requires": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", - "dev": true, - "requires": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", - "dev": true - }, - "@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "dev": true, - "requires": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/builder-vite": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-7.6.19.tgz", - "integrity": "sha512-llYpfYCHQCD0nPy+5J+H67iKcOpBrexIFO13wXxHQyl27Z+1T2JJj4cHqZs5S3a2XLiwf4df44NBvvwV5cmJmQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-common": "7.6.19", - "@storybook/csf-plugin": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/preview": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "browser-assert": "^1.2.1", - "es-module-lexer": "^0.9.3", - "express": "^4.17.3", - "find-cache-dir": "^3.0.0", - "fs-extra": "^11.1.0", - "magic-string": "^0.30.0", - "rollup": "^2.25.0 || ^3.3.0" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.19.tgz", - "integrity": "sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==", - "dev": true, - "requires": { - "@storybook/core-events": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.18.0", - "esbuild-register": "^3.5.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", - "dev": true - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/channel-postmessage": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.0-beta.64.tgz", - "integrity": "sha512-F2tP1bM82JCs/OtZM2UYZwyb4fCHwYDVHWeZ/95EKshPCAcjbJvlPBWQPhlsMjisVXJguw8ZubcFUgBjGVhcNA==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.64", - "@storybook/client-logger": "7.0.0-beta.64", - "@storybook/core-events": "7.0.0-beta.64", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - } - }, - "@storybook/channels": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.0-beta.64.tgz", - "integrity": "sha512-5X84I0hS8Huvp8MN7x99Bmhf4aYvZZrx/FtfwifkqOw57NjVJsPLINJccjh05qiXtUiVhzNbUy4Hjw/UjUXCNQ==", - "dev": true - }, - "@storybook/cli": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.1.8.tgz", - "integrity": "sha512-GrU8zcLK0l/Jo9xQ42iEBqF0YL83gZF/GDTV+9MVMU1JtBtFldomvyGzT9J3TwvPgzC+rCmlk16rY1M2vc5klg==", - "dev": true, - "requires": { - "@babel/core": "^7.24.4", - "@babel/types": "^7.24.0", - "@ndelangen/get-tarball": "^3.0.7", - "@storybook/codemod": "8.1.8", - "@storybook/core-common": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/core-server": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/telemetry": "8.1.8", - "@storybook/types": "8.1.8", - "@types/semver": "^7.3.4", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "commander": "^6.2.1", - "cross-spawn": "^7.0.3", - "detect-indent": "^6.1.0", - "envinfo": "^7.7.3", - "execa": "^5.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "get-npm-tarball-url": "^2.0.3", - "giget": "^1.0.0", - "globby": "^14.0.1", - "jscodeshift": "^0.15.1", - "leven": "^3.1.0", - "ora": "^5.4.1", - "prettier": "^3.1.1", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "strip-json-comments": "^3.0.1", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", - "dev": true, - "requires": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - } - }, - "@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", - "dev": true, - "requires": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", - "dev": true, - "requires": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", - "dev": true - }, - "@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "dev": true, - "requires": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", - "dev": true, - "requires": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/client-logger": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.64.tgz", - "integrity": "sha512-0Un0NIT3R9mspm9G55XlVqmz/XvBfcACzD0ScgjWTvxfZqYwqsbUXExwokzzsgOcOKSjOHOWrh0H8GXqPN9FhQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/codemod": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.1.8.tgz", - "integrity": "sha512-hW9kQTgYN7GjLzjG624Bym1SfWfxQrHE2snIgbwRD9mO+jc/J6qjrR7Z42hV60LypqZ/FcZvBRq/1F247tNq9g==", - "dev": true, - "requires": { - "@babel/core": "^7.24.4", - "@babel/preset-env": "^7.24.4", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@types/cross-spawn": "^6.0.2", - "cross-spawn": "^7.0.3", - "globby": "^14.0.1", - "jscodeshift": "^0.15.1", - "lodash": "^4.17.21", - "prettier": "^3.1.1", - "recast": "^0.23.5", - "tiny-invariant": "^1.3.1" - }, - "dependencies": { - "@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", - "dev": true, - "requires": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", - "dev": true, - "requires": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", - "dev": true - }, - "@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", - "dev": true, - "requires": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - } - }, - "path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true - }, - "slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true - } - } - }, - "@storybook/core-client": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.6.19.tgz", - "integrity": "sha512-F0V9nzcEnj6DIpnw2ilrxsV4d9ibyyQS+Wi2uQtXy+wCQQm9PeBVqrOywjXAY2F9pcoftXOaepfhp8jrxX4MXw==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/preview-api": "7.6.19" - }, - "dependencies": { - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - } - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.64.tgz", - "integrity": "sha512-0Oge2XkDJLvczxE80tIhJVY9dbaQUWdSp1mdzPSrO2k/IOly6v8Kfjp3AhRFBylDgOF3jvSS4kikT8PhAsZvlQ==", - "dev": true - }, - "@storybook/core-server": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.1.8.tgz", - "integrity": "sha512-v2V7FC/y/lrKPxcseIwPavjdCCDHphpj+A23Jmp822tqYn+I4nYRvE74QKyn5dfLrdn52nz8KrUFwjhuacj10Q==", - "dev": true, - "requires": { - "@aw-web-design/x-default-browser": "1.4.126", - "@babel/core": "^7.24.4", - "@babel/parser": "^7.24.4", - "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "8.1.8", - "@storybook/channels": "8.1.8", - "@storybook/core-common": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/csf": "^0.1.7", - "@storybook/csf-tools": "8.1.8", - "@storybook/docs-mdx": "3.1.0-next.0", - "@storybook/global": "^5.0.0", - "@storybook/manager": "8.1.8", - "@storybook/manager-api": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/preview-api": "8.1.8", - "@storybook/telemetry": "8.1.8", - "@storybook/types": "8.1.8", - "@types/detect-port": "^1.3.0", - "@types/diff": "^5.0.9", - "@types/node": "^18.0.0", - "@types/pretty-hrtime": "^1.0.0", - "@types/semver": "^7.3.4", - "better-opn": "^3.0.2", - "chalk": "^4.1.0", - "cli-table3": "^0.6.1", - "compression": "^1.7.4", - "detect-port": "^1.3.0", - "diff": "^5.2.0", - "express": "^4.17.3", - "fs-extra": "^11.1.0", - "globby": "^14.0.1", - "lodash": "^4.17.21", - "open": "^8.4.0", - "pretty-hrtime": "^1.0.3", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4", - "util-deprecate": "^1.0.2", - "watchpack": "^2.2.0", - "ws": "^8.2.3" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", - "dev": true, - "requires": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - } - }, - "@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", - "dev": true, - "requires": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", - "dev": true, - "requires": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/manager-api": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.1.8.tgz", - "integrity": "sha512-mVUGMp2Z0lnuIZL8wgb++Id1tGTBtaFtB89w89U/Y5Ii8UMv2tukNiDY37HTkkVIvRz0sm9bJa94GNDrUubnTw==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/csf": "^0.1.7", - "@storybook/global": "^5.0.0", - "@storybook/icons": "^1.2.5", - "@storybook/router": "8.1.8", - "@storybook/theming": "8.1.8", - "@storybook/types": "8.1.8", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "store2": "^2.14.2", - "telejson": "^7.2.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", - "dev": true - }, - "@storybook/preview-api": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.1.8.tgz", - "integrity": "sha512-O+QnMYA5WbNvWVYcnXtzKorSbM/68QHz3Jlcjr8pRw78G478XKUACTUob/XIfZ64HGLhs7MyCjC6clHptx5kpw==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/csf": "^0.1.7", - "@storybook/global": "^5.0.0", - "@storybook/types": "8.1.8", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/router": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.1.8.tgz", - "integrity": "sha512-7OzLdeCE+a8Ypk4Ne/2DU3s81GDNISnKIaFJ2DAuLSJbmF/LzvL39H/gyHXqmFqXWeSuCdBS0V37OEgejlZIAQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - } - }, - "@storybook/theming": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.1.8.tgz", - "integrity": "sha512-QhRMSRpnWVD1IB5sTZXVI35ETSQdwGh4/g8gKlGol8MN2Behd7CFgFAj2UL4jpPgjhnioH0U4rwwLkRfDlkR6Q==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@storybook/client-logger": "8.1.8", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - }, - "@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "dev": true, - "requires": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", - "dev": true, - "requires": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/csf": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.8.tgz", - "integrity": "sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==", - "dev": true, - "requires": { - "type-fest": "^2.19.0" - }, - "dependencies": { - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true - } - } - }, - "@storybook/csf-plugin": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.6.19.tgz", - "integrity": "sha512-yUP0xfJyR8e6fmCgKoEt4c1EvslF8dZ8wtwVLE5hnC3kfs7xt8RVDiKLB/9NhYjY3mD/oOesX60HqRXDgJQHwA==", - "dev": true, - "requires": { - "@storybook/csf-tools": "7.6.19", - "unplugin": "^1.3.1" - } - }, - "@storybook/csf-tools": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.19.tgz", - "integrity": "sha512-8Vzia3cHhDdGHuS3XKXJReCRxmfRq3vmTm/Te9yKZnPSAsC58CCKcMh8FNEFJ44vxYF9itKTkRutjGs+DprKLQ==", - "dev": true, - "requires": { - "@babel/generator": "^7.23.0", - "@babel/parser": "^7.23.0", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "@storybook/csf": "^0.1.2", - "@storybook/types": "7.6.19", - "fs-extra": "^11.1.0", - "recast": "^0.23.1", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - } - } - }, - "@storybook/docs-mdx": { - "version": "3.1.0-next.0", - "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-3.1.0-next.0.tgz", - "integrity": "sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==", - "dev": true - }, - "@storybook/docs-tools": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.6.19.tgz", - "integrity": "sha512-JuwV6wtm7Hb7Kb5ValChfxy4J7XngfrSQNpvwsDCSBNVcQUv2y843hvclpa26Ptfr/c7zpUX8r9FGSaMDy+2aQ==", - "dev": true, - "requires": { - "@storybook/core-common": "7.6.19", - "@storybook/preview-api": "7.6.19", - "@storybook/types": "7.6.19", - "@types/doctrine": "^0.0.3", - "assert": "^2.1.0", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.19.tgz", - "integrity": "sha512-njwpGzFJrfbJr/AFxGP8KMrfPfxN85KOfSlxYnQwRm5Z0H1D/lT33LhEBf5m37gaGawHeG7KryxO6RvaioMt2Q==", - "dev": true, - "requires": { - "@storybook/core-events": "7.6.19", - "@storybook/node-logger": "7.6.19", - "@storybook/types": "7.6.19", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.18.0", - "esbuild-register": "^3.5.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.19.tgz", - "integrity": "sha512-2g29QC44Zl1jKY37DmQ0/dO7+VSKnGgPI/x0mwVwQffypSapxH3rwLLT5Q5XLHeFyD+fhRu5w9Cj4vTGynJgpA==", - "dev": true - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/global": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", - "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", - "dev": true - }, - "@storybook/icons": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-1.2.9.tgz", - "integrity": "sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==", - "dev": true, - "requires": {} - }, - "@storybook/instrumenter": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.0-beta.64.tgz", - "integrity": "sha512-LzgWfWfPMs/Vqpzg+P60UTpU52LkMhj2FORqAkqHlrh+H4vejXYHHA9dUgRTO6uHFLKWNGy6oHz9xhpiSefZBw==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.64", - "@storybook/client-logger": "7.0.0-beta.64", - "@storybook/core-events": "7.0.0-beta.64", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.64" - } - }, - "@storybook/manager": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.1.8.tgz", - "integrity": "sha512-3d1qAIzx9TQslolwZSRvlgZ78bxL3RtesUq1NYtC/nDQ7M8Yb+X3taIk8iE/AXa2wlJ8dQ4vU5grLl/oWQeTJg==", - "dev": true - }, - "@storybook/mdx2-csf": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", - "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", - "dev": true - }, - "@storybook/postinstall": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.6.19.tgz", - "integrity": "sha512-s6p1vpgMfn+QGDfCK2YNdyyWKidUgb3nGicB81FANRyzYqGB//QlJlghEc2LKCIQbGIZQiwP3l8PdZQmczEJRw==", - "dev": true - }, - "@storybook/preview": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.6.19.tgz", - "integrity": "sha512-VqRPua2koOQTOteB+VvuKNXFYQ7IDEopaPpj9Nx+3kom+bqp0hWdAysWcm6CtKN2GGzBQm+5PvGibMNdawsaVg==", - "dev": true - }, - "@storybook/preview-api": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.0-beta.64.tgz", - "integrity": "sha512-yT30gbaojm5YalpqwuvP1w0DuRKu7ys0Vb9GqVYMtvOboZE1lENoHoF+5H/aB81O50uCsXlvy/lcTttfWFdMVA==", - "dev": true, - "requires": { - "@storybook/channel-postmessage": "7.0.0-beta.64", - "@storybook/channels": "7.0.0-beta.64", - "@storybook/client-logger": "7.0.0-beta.64", - "@storybook/core-events": "7.0.0-beta.64", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.0-beta.64", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "slash": "^3.0.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/react": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.6.19.tgz", - "integrity": "sha512-uKShAAp1/pRki1YnRjBveH/jAD3f8V0W2WP1LxTQqnKVFkl01mTbDZ/9ZIK6rVTSILUlmsk3fwsNyRbOKVgBGQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-client": "7.6.19", - "@storybook/docs-tools": "7.6.19", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.6.19", - "@storybook/react-dom-shim": "7.6.19", - "@storybook/types": "7.6.19", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^18.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.1.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "~2.19", - "util-deprecate": "^1.0.2" - }, - "dependencies": { - "@storybook/channels": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.19.tgz", - "integrity": "sha512-2JGh+i95GwjtjqWqhtEh15jM5ifwbRGmXeFqkY7dpdHH50EEWafYHr2mg3opK3heVDwg0rJ/VBptkmshloXuvA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.19.tgz", - "integrity": "sha512-oGzOxbmLmciSIfd5gsxDzPmX8DttWhoYdPKxjMuCuWLTO2TWpkCWp1FTUMWO72mm/6V/FswT/aqpJJBBvdZ3RQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.19.tgz", - "integrity": "sha512-K/W6Uvum0ocZSgjbi8hiotpe+wDEHDZlvN+KlPqdh9ae9xDK8aBNBq9IelCoqM+uKO1Zj+dDfSQds7CD781DJg==", - "dev": true, - "requires": { - "ts-dedent": "^2.0.0" - } - }, - "@storybook/preview-api": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.19.tgz", - "integrity": "sha512-04hdMSQucroJT4dBjQzRd7ZwH2hij8yx2nm5qd4HYGkd1ORkvlH6GOLph4XewNJl5Um3xfzFQzBhvkqvG0WaCQ==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@storybook/client-logger": "7.6.19", - "@storybook/core-events": "7.6.19", - "@storybook/csf": "^0.1.2", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.6.19", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/types": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.19.tgz", - "integrity": "sha512-DeGYrRPRMGTVfT7o2rEZtRzyLT2yKTI2exgpnxbwPWEFAduZCSfzBrcBXZ/nb5B0pjA9tUNWls1YzGkJGlkhpg==", - "dev": true, - "requires": { - "@storybook/channels": "7.6.19", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", - "dev": true - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true - } - } - }, - "@storybook/react-dom-shim": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.6.19.tgz", - "integrity": "sha512-tpt2AC1428d1gF4fetMkpkeFZ1WdDr1CLKoLbSInWQZ7i96nbnIMIA9raR/W8ai1bo55KSz9Bq5ytC/1Pac2qQ==", - "dev": true, - "requires": {} - }, - "@storybook/react-vite": { - "version": "7.6.19", - "resolved": "https://registry.npmjs.org/@storybook/react-vite/-/react-vite-7.6.19.tgz", - "integrity": "sha512-TqKQvWi53vE0KbWrlNq61cTLpzfQ5QMZv42YiwEUhM7ysSmrrg6WjgfEnvEyiAuY8yyaRspPF6Y8pYTKGHM8Nw==", - "dev": true, - "requires": { - "@joshwooding/vite-plugin-react-docgen-typescript": "0.3.0", - "@rollup/pluginutils": "^5.0.2", - "@storybook/builder-vite": "7.6.19", - "@storybook/react": "7.6.19", - "@vitejs/plugin-react": "^3.0.1", - "magic-string": "^0.30.0", - "react-docgen": "^7.0.0" - }, - "dependencies": { - "magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - } - } - }, - "@storybook/telemetry": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.1.8.tgz", - "integrity": "sha512-Hr5QUVtn4BzQrqsv1dwlfKRj2yU8XRXmhwCbo0DFULpJasVsJB3VJXeuUOijwteWsGo2avKMZErwNZElJy2yXA==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-common": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "chalk": "^4.1.0", - "detect-package-manager": "^2.0.1", - "fetch-retry": "^5.0.2", - "fs-extra": "^11.1.0", - "read-pkg-up": "^7.0.1" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "dev": true, - "optional": true - }, - "@storybook/channels": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", - "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", - "dev": true, - "requires": { - "@storybook/client-logger": "8.1.8", - "@storybook/core-events": "8.1.8", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - } - }, - "@storybook/client-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", - "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-common": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", - "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", - "dev": true, - "requires": { - "@storybook/core-events": "8.1.8", - "@storybook/csf-tools": "8.1.8", - "@storybook/node-logger": "8.1.8", - "@storybook/types": "8.1.8", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - } - }, - "@storybook/core-events": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", - "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", - "dev": true, - "requires": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/csf-tools": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", - "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", - "dev": true, - "requires": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.8", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/node-logger": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", - "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", - "dev": true - }, - "@storybook/types": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", - "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", - "dev": true, - "requires": { - "@storybook/channels": "8.1.8", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "dev": true, - "requires": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "path-scurry": "^1.11.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@storybook/testing-library": { - "version": "0.0.14-next.2", - "resolved": "https://registry.npmjs.org/@storybook/testing-library/-/testing-library-0.0.14-next.2.tgz", - "integrity": "sha512-i/SLSGm0o978ELok/SB4Qg1sZ3zr+KuuCkzyFqcCD0r/yf+bG35aQGkFqqxfSAdDxuQom0NO02FE+qys5Eapdg==", - "dev": true, - "requires": { - "@storybook/client-logger": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@storybook/instrumenter": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0", - "@testing-library/dom": "^8.3.0", - "@testing-library/user-event": "^13.2.1", - "ts-dedent": "^2.2.0" - } - }, - "@storybook/types": { - "version": "7.0.0-beta.64", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.0-beta.64.tgz", - "integrity": "sha512-vSHG+9Fd8ibU39FU7n/307e2vj7WoEtWZTL759ND3nO9SvLxL1r+bfG7s+b7ju8nmySCu4f4HwtZDT766UFo/g==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.64", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - } - }, - "@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", - "dev": true - }, - "@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", - "dev": true - }, - "@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", - "dev": true, - "requires": { - "defer-to-connect": "^2.0.1" - } - }, - "@testing-library/dom": { - "version": "8.20.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", - "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "^5.0.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", - "pretty-format": "^27.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/user-event": { - "version": "13.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", - "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5" - } - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true - }, - "@tufjs/models": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.0.tgz", - "integrity": "sha512-RRMu4uMxWnZlxaIBxahSb2IssFZiu188sndesZflWOe1cA/qUqtemSIoBWbuVKPvvdktapImWNnKpBcc+VrCQw==", - "dev": true, - "requires": { - "minimatch": "^6.1.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-6.2.0.tgz", - "integrity": "sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "@turf/bbox": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz", - "integrity": "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==", - "requires": { - "@turf/helpers": "^6.5.0", - "@turf/meta": "^6.5.0" - } - }, - "@turf/bbox-polygon": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz", - "integrity": "sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==", - "requires": { - "@turf/helpers": "^6.5.0" - } - }, - "@turf/boolean-clockwise": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", - "integrity": "sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA==", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - }, - "dependencies": { - "@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==" - } - } - }, - "@turf/buffer": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.5.0.tgz", - "integrity": "sha512-qeX4N6+PPWbKqp1AVkBVWFerGjMYMUyencwfnkCesoznU6qvfugFHNAngNqIBVnJjZ5n8IFyOf+akcxnrt9sNg==", - "requires": { - "@turf/bbox": "^6.5.0", - "@turf/center": "^6.5.0", - "@turf/helpers": "^6.5.0", - "@turf/meta": "^6.5.0", - "@turf/projection": "^6.5.0", - "d3-geo": "1.7.1", - "turf-jsts": "*" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - }, - "d3-geo": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.7.1.tgz", - "integrity": "sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==", - "requires": { - "d3-array": "1" - } - } - } - }, - "@turf/center": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.5.0.tgz", - "integrity": "sha512-T8KtMTfSATWcAX088rEDKjyvQCBkUsLnK/Txb6/8WUXIeOZyHu42G7MkdkHRoHtwieLdduDdmPLFyTdG5/e7ZQ==", - "requires": { - "@turf/bbox": "^6.5.0", - "@turf/helpers": "^6.5.0" - } - }, - "@turf/clone": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", - "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", - "requires": { - "@turf/helpers": "^6.5.0" - } - }, - "@turf/helpers": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", - "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==" - }, - "@turf/invariant": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.2.0.tgz", - "integrity": "sha512-28RCBGvCYsajVkw2EydpzLdcYyhSA77LovuOvgCJplJWaNVyJYH6BOR3HR9w50MEkPqb/Vc/jdo6I6ermlRtQA==", - "requires": { - "@turf/helpers": "^5.1.5" - }, - "dependencies": { - "@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==" - } - } - }, - "@turf/meta": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", - "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", - "requires": { - "@turf/helpers": "^6.5.0" - } - }, - "@turf/projection": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.5.0.tgz", - "integrity": "sha512-/Pgh9mDvQWWu8HRxqpM+tKz8OzgauV+DiOcr3FCjD6ubDnrrmMJlsf6fFJmggw93mtVPrZRL6yyi9aYCQBOIvg==", - "requires": { - "@turf/clone": "^6.5.0", - "@turf/helpers": "^6.5.0", - "@turf/meta": "^6.5.0" - } - }, - "@turf/rewind": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", - "integrity": "sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw==", - "requires": { - "@turf/boolean-clockwise": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - }, - "dependencies": { - "@turf/clone": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", - "integrity": "sha512-//pITsQ8xUdcQ9pVb4JqXiSqG4dos5Q9N4sYFoWghX21tfOV2dhc5TGqYOhnHrQS7RiKQL1vQ48kIK34gQ5oRg==", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==" - }, - "@turf/meta": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.2.0.tgz", - "integrity": "sha512-ZjQ3Ii62X9FjnK4hhdsbT+64AYRpaI8XMBMcyftEOGSmPMUVnkbvuv3C9geuElAXfQU7Zk1oWGOcrGOD9zr78Q==", - "requires": { - "@turf/helpers": "^5.1.5" - } - } - } - }, - "@types/acorn": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } - }, - "@types/aria-query": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", - "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", - "dev": true - }, - "@types/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", - "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", - "dev": true, - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/chai": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.4.tgz", - "integrity": "sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==" - }, - "@types/chai-subset": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.3.tgz", - "integrity": "sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==", - "requires": { - "@types/chai": "*" - } - }, - "@types/clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/clone/-/clone-2.1.1.tgz", - "integrity": "sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg==" - }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/d3-array": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.0.4.tgz", - "integrity": "sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==", - "dev": true - }, - "@types/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==", - "dev": true - }, - "@types/d3-ease": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.0.tgz", - "integrity": "sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==", - "dev": true - }, - "@types/d3-scale": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.3.tgz", - "integrity": "sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==", - "dev": true, - "requires": { - "@types/d3-time": "*" - } - }, - "@types/d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==", - "dev": true - }, - "@types/d3-time": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.0.tgz", - "integrity": "sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==", - "dev": true - }, - "@types/debug": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", - "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", - "dev": true, - "requires": { - "@types/ms": "*" - } - }, - "@types/detect-port": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", - "integrity": "sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==", - "dev": true - }, - "@types/diff": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/@types/diff/-/diff-5.2.1.tgz", - "integrity": "sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==", - "dev": true - }, - "@types/doctrine": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", - "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", - "dev": true - }, - "@types/ejs": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", - "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", - "dev": true - }, - "@types/emscripten": { - "version": "1.39.13", - "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.13.tgz", - "integrity": "sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==", - "dev": true - }, - "@types/escodegen": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", - "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", - "dev": true - }, - "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } - }, - "@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.33", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", - "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "@types/find-cache-dir": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", - "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", - "dev": true - }, - "@types/geojson": { - "version": "7946.0.10", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", - "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/hammerjs": { - "version": "2.0.41", - "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.41.tgz", - "integrity": "sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==" - }, - "@types/hast": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", - "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", - "dev": true, - "requires": { - "@types/unist": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/json-schema": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", - "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", - "dev": true - }, - "@types/json-stable-stringify": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz", - "integrity": "sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==", - "dev": true - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "@types/lodash": { - "version": "4.14.191", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz", - "integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==", - "dev": true - }, - "@types/mapbox__point-geometry": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz", - "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==" - }, - "@types/mapbox__vector-tile": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz", - "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==", - "requires": { - "@types/geojson": "*", - "@types/mapbox__point-geometry": "*", - "@types/pbf": "*" - } - }, - "@types/mdast": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", - "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", - "dev": true, - "requires": { - "@types/unist": "*" - } - }, - "@types/mdx": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.3.tgz", - "integrity": "sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==", - "dev": true - }, - "@types/mime": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", - "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", - "dev": true - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true - }, - "@types/node": { - "version": "18.14.6", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.6.tgz", - "integrity": "sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==" - }, - "@types/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", - "dev": true, - "requires": { - "@types/node": "*", - "form-data": "^4.0.0" - } - }, - "@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true - }, - "@types/offscreencanvas": { - "version": "2019.7.1", - "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.1.tgz", - "integrity": "sha512-+HSrJgjBW77ALieQdMJvXhRZUIRN1597L+BKvsyeiIlHHERnqjcuOLyodK3auJ3Y3zRezNKtKAhuQWYJfEgFHQ==" - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "@types/pbf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz", - "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==" - }, - "@types/pretty-hrtime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", - "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==", - "dev": true - }, - "@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" - }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "@types/react": { - "version": "17.0.53", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.53.tgz", - "integrity": "sha512-1yIpQR2zdYu1Z/dc1OxC+MA6GR240u3gcnP4l6mvj/PJiVaqHsQPmWttsvHsfnhfPbU2FuGmo0wSITPygjBmsw==", - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-dom": { - "version": "17.0.19", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.19.tgz", - "integrity": "sha512-PiYG40pnQRdPHnlf7tZnp0aQ6q9tspYr72vD61saO6zFCybLfMqwUCN0va1/P+86DXn18ZWeW30Bk7xlC5eEAQ==", - "dev": true, - "requires": { - "@types/react": "^17" - } - }, - "@types/react-transition-group": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", - "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", - "requires": { - "@types/react": "*" - } - }, - "@types/resolve": { - "version": "1.20.6", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", - "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", - "dev": true - }, - "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - }, - "@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true - }, - "@types/serve-static": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", - "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", - "dev": true, - "requires": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/supercluster": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.0.tgz", - "integrity": "sha512-6JapQ2GmEkH66r23BK49I+u6zczVDGTtiJEVvKDYZVSm/vepWaJuTq6BXzJ6I4agG5s8vA1KM7m/gXWDg03O4Q==", - "requires": { - "@types/geojson": "*" - } - }, - "@types/unist": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", - "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", - "dev": true - }, - "@types/uuid": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", - "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", - "dev": true - }, - "@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" - }, - "@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "@typescript-eslint/eslint-plugin": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.55.0.tgz", - "integrity": "sha512-IZGc50rtbjk+xp5YQoJvmMPmJEYoC53SiKPXyqWfv15XoD2Y5Kju6zN0DwlmaGJp1Iw33JsWJcQ7nw0lGCGjVg==", - "dev": true, - "requires": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.55.0", - "@typescript-eslint/type-utils": "5.55.0", - "@typescript-eslint/utils": "5.55.0", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.55.0.tgz", - "integrity": "sha512-3ZqXIZhdGyGQAIIGATeMtg7prA6VlyxGtcy5hYIR/3qUqp3t18pWWUYhL9mpsDm7y8F9mr3ISMt83TiqCt7OPQ==", - "dev": true, - "requires": { - "@typescript-eslint/utils": "5.55.0" - } - }, - "@typescript-eslint/parser": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.55.0.tgz", - "integrity": "sha512-ppvmeF7hvdhUUZWSd2EEWfzcFkjJzgNQzVST22nzg958CR+sphy8A6K7LXQZd6V75m1VKjp+J4g/PCEfSCmzhw==", - "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "5.55.0", - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/typescript-estree": "5.55.0", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.55.0.tgz", - "integrity": "sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/visitor-keys": "5.55.0" - } - }, - "@typescript-eslint/type-utils": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.55.0.tgz", - "integrity": "sha512-ObqxBgHIXj8rBNm0yh8oORFrICcJuZPZTqtAFh0oZQyr5DnAHZWfyw54RwpEEH+fD8suZaI0YxvWu5tYE/WswA==", - "dev": true, - "requires": { - "@typescript-eslint/typescript-estree": "5.55.0", - "@typescript-eslint/utils": "5.55.0", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/types": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.55.0.tgz", - "integrity": "sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.55.0.tgz", - "integrity": "sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/visitor-keys": "5.55.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/utils": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.55.0.tgz", - "integrity": "sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.55.0", - "@typescript-eslint/types": "5.55.0", - "@typescript-eslint/typescript-estree": "5.55.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.55.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.55.0.tgz", - "integrity": "sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.55.0", - "eslint-visitor-keys": "^3.3.0" - } - }, - "@vitejs/plugin-react": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz", - "integrity": "sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==", - "dev": true, - "requires": { - "@babel/core": "^7.20.12", - "@babel/plugin-transform-react-jsx-self": "^7.18.6", - "@babel/plugin-transform-react-jsx-source": "^7.19.6", - "magic-string": "^0.27.0", - "react-refresh": "^0.14.0" - }, - "dependencies": { - "react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true - } - } - }, - "@vitest/expect": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.29.3.tgz", - "integrity": "sha512-z/0JqBqqrdtrT/wzxNrWC76EpkOHdl+SvuNGxWulLaoluygntYyG5wJul5u/rQs5875zfFz/F+JaDf90SkLUIg==", - "requires": { - "@vitest/spy": "0.29.3", - "@vitest/utils": "0.29.3", - "chai": "^4.3.7" - } - }, - "@vitest/runner": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.29.3.tgz", - "integrity": "sha512-XLi8ctbvOWhUWmuvBUSIBf8POEDH4zCh6bOuVxm/KGfARpgmVF1ku+vVNvyq85va+7qXxtl+MFmzyXQ2xzhAvw==", - "requires": { - "@vitest/utils": "0.29.3", - "p-limit": "^4.0.0", - "pathe": "^1.1.0" - }, - "dependencies": { - "p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", - "requires": { - "yocto-queue": "^1.0.0" - } - }, - "yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - } - }, - "@vitest/spy": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.29.3.tgz", - "integrity": "sha512-LLpCb1oOCOZcBm0/Oxbr1DQTuKLRBsSIHyLYof7z4QVE8/v8NcZKdORjMUq645fcfX55+nLXwU/1AQ+c2rND+w==", - "requires": { - "tinyspy": "^1.0.2" - } - }, - "@vitest/utils": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.3.tgz", - "integrity": "sha512-hg4Ff8AM1GtUnLpUJlNMxrf9f4lZr/xRJjh3uJ0QFP+vjaW82HAxKrmeBmLnhc8Os2eRf+f+VBu4ts7TafPPkA==", - "requires": { - "cli-truncate": "^3.1.0", - "diff": "^5.1.0", - "loupe": "^2.3.6", - "pretty-format": "^27.5.1" - } - }, - "@xstate/react": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@xstate/react/-/react-1.6.3.tgz", - "integrity": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==", - "requires": { - "use-isomorphic-layout-effect": "^1.0.0", - "use-subscription": "^1.3.0" - } - }, - "@yarnpkg/esbuild-plugin-pnp": { - "version": "3.0.0-rc.15", - "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", - "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", - "dev": true, - "requires": { - "tslib": "^2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "@yarnpkg/fslib": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz", - "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==", - "dev": true, - "requires": { - "@yarnpkg/libzip": "^2.3.0", - "tslib": "^1.13.0" - } - }, - "@yarnpkg/libzip": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz", - "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==", - "dev": true, - "requires": { - "@types/emscripten": "^1.39.6", - "tslib": "^1.13.0" - } - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true - }, - "address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "dev": true, - "requires": { - "string-width": "^4.1.0" - } - }, - "ansi-escapes": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", - "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", - "dev": true, - "requires": { - "type-fest": "^1.0.2" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true - } - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "app-root-dir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", - "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", - "dev": true - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-hidden": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", - "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", - "dev": true, - "requires": { - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==" - }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - } - }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - } - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - }, - "assert": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", - "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "is-nan": "^1.3.2", - "object-is": "^1.1.5", - "object.assign": "^4.1.4", - "util": "^0.12.5" - } - }, - "assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==" - }, - "ast-types": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", - "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", - "dev": true, - "requires": { - "tslib": "^2.0.1" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true - }, - "astring": { - "version": "1.8.4", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.4.tgz", - "integrity": "sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==", - "dev": true - }, - "async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true - }, - "axe-core": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", - "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", - "dev": true - }, - "axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", - "dev": true, - "requires": {} - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - } - }, - "babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", - "dev": true - }, - "babel-preset-react-app": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", - "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", - "dev": true, - "requires": { - "@babel/core": "^7.16.0", - "@babel/plugin-proposal-class-properties": "^7.16.0", - "@babel/plugin-proposal-decorators": "^7.16.4", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", - "@babel/plugin-proposal-numeric-separator": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.0", - "@babel/plugin-proposal-private-methods": "^7.16.0", - "@babel/plugin-transform-flow-strip-types": "^7.16.0", - "@babel/plugin-transform-react-display-name": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.4", - "@babel/preset-env": "^7.16.4", - "@babel/preset-react": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.3", - "babel-plugin-macros": "^3.1.0", - "babel-plugin-transform-react-remove-prop-types": "^0.4.24" - } - }, - "bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base16": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", - "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "better-opn": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", - "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", - "dev": true, - "requires": { - "open": "^8.0.4" - } - }, - "big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } - } - }, - "body-scroll-lock": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz", - "integrity": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" - }, - "bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "requires": { - "big-integer": "^1.6.44" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "requires": { - "fill-range": "^7.1.1" - } - }, - "broadcast-channel": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz", - "integrity": "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==", - "requires": { - "@babel/runtime": "^7.7.2", - "detect-node": "^2.1.0", - "js-sha3": "0.8.0", - "microseconds": "0.2.0", - "nano-time": "1.0.0", - "oblivious-set": "1.0.0", - "rimraf": "3.0.2", - "unload": "2.2.0" - } - }, - "browser-assert": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", - "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", - "dev": true - }, - "browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", - "dev": true, - "requires": { - "pako": "~0.2.0" - } - }, - "browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "buf-compare": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz", - "integrity": "sha512-Bvx4xH00qweepGc43xFvMs5BKASXTbHaHm6+kDYIK9p/4iFwjATQkmPKHQSgJZzKbAymhztRbXUf1Nqhzl73/Q==" - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "devOptional": true - }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "requires": { - "semver": "^7.0.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "bytewise": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz", - "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==", - "requires": { - "bytewise-core": "^1.2.2", - "typewise": "^1.0.3" - } - }, - "bytewise-core": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz", - "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==", - "requires": { - "typewise-core": "^1.2" - } - }, - "cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==" - }, - "cacache": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.4.tgz", - "integrity": "sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==", - "dev": true, - "requires": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^8.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "fs-minipass": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.1.tgz", - "integrity": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==", - "dev": true, - "requires": { - "minipass": "^4.0.0" - } - }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", - "dev": true - }, - "cacheable-request": { - "version": "10.2.8", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.8.tgz", - "integrity": "sha512-IDVO5MJ4LItE6HKFQTqT2ocAQsisOoCTUDu1ddCmnhyiwFQjXNPp4081Xj23N4tO+AFEFNzGuNEf/c8Gwwt15A==", - "dev": true, - "requires": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001633", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001633.tgz", - "integrity": "sha512-6sT0yf/z5jqf8tISAgpJDrmwOpLsrpnyCdD/lOZKvKkkJK4Dn0X5i7KF7THEZhOq+30bmhwBlNEaqPUiHiKtZg==", - "dev": true - }, - "cartocolor": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cartocolor/-/cartocolor-4.0.2.tgz", - "integrity": "sha512-+Gh9mb6lFxsDOLQlBLPxAHCnWXlg2W8q3AcVwqRcy95TdBbcOU89Wrb6h2Hd/6Ww1Kc1pzXmUdpnWD+xeCG0dg==", - "requires": { - "colorbrewer": "1.0.0" - } - }, - "ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "dev": true - }, - "chai": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", - "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", - "requires": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.2", - "deep-eql": "^4.1.2", - "get-func-name": "^2.0.0", - "loupe": "^2.3.1", - "pathval": "^1.1.1", - "type-detect": "^4.0.5" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", - "dev": true - }, - "character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "dev": true - }, - "character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "dev": true - }, - "character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", - "dev": true - }, - "check-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", - "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==" - }, - "chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true - }, - "citty": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", - "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", - "dev": true, - "requires": { - "consola": "^3.2.3" - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "dev": true, - "requires": { - "restore-cursor": "^4.0.0" - } - }, - "cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "dev": true - }, - "cli-table": { - "version": "0.3.11", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", - "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", - "dev": true, - "requires": { - "colors": "1.0.3" - } - }, - "cli-table3": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", - "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", - "requires": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" - }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } - } - }, - "clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "colorbrewer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/colorbrewer/-/colorbrewer-1.0.0.tgz", - "integrity": "sha512-NZuIOVdErK/C6jDH3jWT/roxWJbJAinMiqEpbuWniKvQAoWdg6lGra3pPrSHvaIf8PlX8wLs/RAC6nULFJbgmg==" - }, - "colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "dev": true - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "requires": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - } - } - }, - "configstore": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", - "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", - "dev": true, - "requires": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" - }, - "dependencies": { - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - } - } - }, - "confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "requires": { - "safe-buffer": "~5.1.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "core-assert": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz", - "integrity": "sha512-IG97qShIP+nrJCXMCgkNZgH7jZQ4n8RpPyPeXX++T6avR/KhLhgLiHKoEn5Rc1KjfycSfA9DMa6m+4C4eguHhw==", - "requires": { - "buf-compare": "^1.0.0", - "is-error": "^2.2.0" - } - }, - "core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", - "dev": true, - "requires": { - "browserslist": "^4.23.0" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", - "requires": { - "node-fetch": "2.6.7" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "requires": { - "whatwg-url": "^5.0.0" - } - } - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dev": true, - "requires": { - "type-fest": "^1.0.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true - } - } - }, - "csscolorparser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", - "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs=", - "optional": true, - "peer": true - }, - "csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "d3": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", - "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", - "requires": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - }, - "d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", - "requires": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "d3-array": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", - "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", - "requires": { - "internmap": "1 - 2" - } - }, - "d3-axis": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==" - }, - "d3-brush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", - "requires": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" - } - }, - "d3-chord": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", - "requires": { - "d3-path": "1 - 3" - } - }, - "d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==" - }, - "d3-contour": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", - "requires": { - "d3-array": "^3.2.0" - } - }, - "d3-delaunay": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz", - "integrity": "sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==", - "requires": { - "delaunator": "5" - } - }, - "d3-dispatch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", - "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==" - }, - "d3-drag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", - "requires": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - } - }, - "d3-dsv": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", - "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", - "requires": { - "commander": "2", - "iconv-lite": "0.4", - "rw": "1" - } - }, - "d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==" - }, - "d3-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", - "requires": { - "d3-dsv": "1 - 3" - } - }, - "d3-force": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", - "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", - "requires": { - "d3-dispatch": "1 - 3", - "d3-quadtree": "1 - 3", - "d3-timer": "1 - 3" - } - }, - "d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==" - }, - "d3-geo": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz", - "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==", - "requires": { - "d3-array": "2.5.0 - 3" - } - }, - "d3-geo-projection": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz", - "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==", - "requires": { - "commander": "7", - "d3-array": "1 - 3", - "d3-geo": "1.12.0 - 3" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - } - }, - "d3-hexbin": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/d3-hexbin/-/d3-hexbin-0.2.2.tgz", - "integrity": "sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==" - }, - "d3-hierarchy": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==" - }, - "d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", - "requires": { - "d3-color": "1 - 3" - } - }, - "d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==" - }, - "d3-polygon": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==" - }, - "d3-quadtree": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", - "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==" - }, - "d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==" - }, - "d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "requires": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - } - }, - "d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", - "requires": { - "d3-color": "1 - 3", - "d3-interpolate": "1 - 3" - } - }, - "d3-selection": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", - "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==" - }, - "d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", - "requires": { - "d3-path": "^3.1.0" - } - }, - "d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "requires": { - "d3-array": "2 - 3" - } - }, - "d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", - "requires": { - "d3-time": "1 - 3" - } - }, - "d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==" - }, - "d3-transition": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", - "requires": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" - } - }, - "d3-zoom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", - "requires": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" - } - }, - "damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "deck.gl": { - "version": "8.9.28", - "resolved": "https://registry.npmjs.org/deck.gl/-/deck.gl-8.9.28.tgz", - "integrity": "sha512-IZrc/qkIuBC5G2F+tQ3i/n3C5eMSsThTgAtn8/pIY3i1Zqzr+KVXrcbdTCqeuk82ELFhbVrN69T27GJFPL/Ckw==", - "requires": { - "@babel/runtime": "^7.0.0", - "@deck.gl/aggregation-layers": "8.9.28", - "@deck.gl/carto": "8.9.28", - "@deck.gl/core": "8.9.28", - "@deck.gl/extensions": "8.9.28", - "@deck.gl/geo-layers": "8.9.28", - "@deck.gl/google-maps": "8.9.28", - "@deck.gl/json": "8.9.28", - "@deck.gl/layers": "8.9.28", - "@deck.gl/mapbox": "8.9.28", - "@deck.gl/mesh-layers": "8.9.28", - "@deck.gl/react": "8.9.28" - } - }, - "decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dev": true, - "requires": { - "character-entities": "^2.0.0" - } - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true - } - } - }, - "deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", - "requires": { - "type-detect": "^4.0.0" - } - }, - "deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "deep-strict-equal": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz", - "integrity": "sha512-3daSWyvZ/zwJvuMGlzG1O+Ow0YSadGfb3jsh9xoCutv2tWyB9dA4YvR9L9/fSdDZa2dByYQe+TqapSGUrjnkoA==", - "requires": { - "core-assert": "^0.2.0" - } - }, - "default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "requires": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - } - }, - "defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "requires": { - "clone": "^1.0.2" - }, - "dependencies": { - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - } - } - }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true - }, - "define-data-property": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz", - "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", - "dev": true, - "requires": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - } - }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true - }, - "define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "requires": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "defu": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", - "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", - "dev": true - }, - "delaunator": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz", - "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==", - "requires": { - "robust-predicates": "^3.0.0" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true - }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - }, - "detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", - "dev": true - }, - "detect-package-manager": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", - "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", - "dev": true, - "requires": { - "execa": "^5.1.1" - } - }, - "detect-port": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", - "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", - "dev": true, - "requires": { - "address": "^1.0.1", - "debug": "4" - } - }, - "diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==" - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true - }, - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "dot-prop": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", - "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", - "dev": true, - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", - "dev": true - }, - "dotenv-expand": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", - "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", - "dev": true - }, - "draco3d": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.5.tgz", - "integrity": "sha512-JVuNV0EJzD3LBYhGyIXJLeBID/EVtmFO1ZNhAYflTgiMiAJlbhXQmRRda/azjc8MRVMHh0gqGhiqHUo5dIXM8Q==" - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "earcut": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", - "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" - }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "ejs": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", - "dev": true, - "requires": { - "jake": "^10.8.5" - } - }, - "electron-to-chromium": { - "version": "1.4.802", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.802.tgz", - "integrity": "sha512-TnTMUATbgNdPXVSHsxvNVSG0uEd6cSZsANjm8c9HbvflZVVn1yTRcmVXYT1Ma95/ssB/Dcd30AHweH2TE+dNpA==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz", - "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", - "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.1", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.11" - } - }, - "es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - } - }, - "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", - "dev": true - }, - "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "esbuild": { - "version": "0.16.14", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.14.tgz", - "integrity": "sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==", - "dev": true, - "peer": true, - "requires": { - "@esbuild/android-arm": "0.16.14", - "@esbuild/android-arm64": "0.16.14", - "@esbuild/android-x64": "0.16.14", - "@esbuild/darwin-arm64": "0.16.14", - "@esbuild/darwin-x64": "0.16.14", - "@esbuild/freebsd-arm64": "0.16.14", - "@esbuild/freebsd-x64": "0.16.14", - "@esbuild/linux-arm": "0.16.14", - "@esbuild/linux-arm64": "0.16.14", - "@esbuild/linux-ia32": "0.16.14", - "@esbuild/linux-loong64": "0.16.14", - "@esbuild/linux-mips64el": "0.16.14", - "@esbuild/linux-ppc64": "0.16.14", - "@esbuild/linux-riscv64": "0.16.14", - "@esbuild/linux-s390x": "0.16.14", - "@esbuild/linux-x64": "0.16.14", - "@esbuild/netbsd-x64": "0.16.14", - "@esbuild/openbsd-x64": "0.16.14", - "@esbuild/sunos-x64": "0.16.14", - "@esbuild/win32-arm64": "0.16.14", - "@esbuild/win32-ia32": "0.16.14", - "@esbuild/win32-x64": "0.16.14" - } - }, - "esbuild-plugin-alias": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", - "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==", - "dev": true - }, - "esbuild-register": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.5.0.tgz", - "integrity": "sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==" - }, - "escape-goat": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", - "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", - "dev": true - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - }, - "escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, - "eslint": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", - "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.49.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globals": { - "version": "13.19.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "eslint-config-prettier": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", - "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", - "dev": true, - "requires": {} - }, - "eslint-config-react-app": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", - "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", - "dev": true, - "requires": { - "@babel/core": "^7.16.0", - "@babel/eslint-parser": "^7.16.3", - "@rushstack/eslint-patch": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.5.0", - "@typescript-eslint/parser": "^5.5.0", - "babel-preset-react-app": "^10.0.1", - "confusing-browser-globals": "^1.0.11", - "eslint-plugin-flowtype": "^8.0.3", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jest": "^25.3.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.27.1", - "eslint-plugin-react-hooks": "^4.3.0", - "eslint-plugin-testing-library": "^5.0.1" - } - }, - "eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-import-resolver-typescript": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", - "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", - "dev": true, - "requires": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - } - }, - "eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-plugin-flowtype": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", - "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", - "dev": true, - "requires": { - "lodash": "^4.17.21", - "string-natural-compare": "^3.0.1" - } - }, - "eslint-plugin-import": { - "version": "2.28.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", - "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.findlastindex": "^1.2.2", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.8.0", - "has": "^1.0.3", - "is-core-module": "^2.13.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.6", - "object.groupby": "^1.0.0", - "object.values": "^1.1.6", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "eslint-plugin-jest": { - "version": "25.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", - "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", - "dev": true, - "requires": { - "@typescript-eslint/experimental-utils": "^5.0.0" - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, - "dependencies": { - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "requires": {} - }, - "eslint-plugin-storybook": { - "version": "0.6.14", - "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.14.tgz", - "integrity": "sha512-IeYigPur/MvESNDo43Z+Z5UvlcEVnt0dDZmnw1odi9X2Th1R3bpGyOZsHXb9bp1pFecOpRUuoMG5xdID2TwwOg==", - "dev": true, - "requires": { - "@storybook/csf": "^0.0.1", - "@typescript-eslint/utils": "^5.45.0", - "requireindex": "^1.1.0", - "ts-dedent": "^2.2.0" - }, - "dependencies": { - "@storybook/csf": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", - "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", - "dev": true, - "requires": { - "lodash": "^4.17.15" - } - } - } - }, - "eslint-plugin-testing-library": { - "version": "5.10.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz", - "integrity": "sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==", - "dev": true, - "requires": { - "@typescript-eslint/utils": "^5.43.0" - } - }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "dependencies": { - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - } - } - }, - "eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true - }, - "eslint-watch": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/eslint-watch/-/eslint-watch-8.0.0.tgz", - "integrity": "sha512-piws/uE4gkZdz1pwkaEFx+kSWvoGnVX8IegFRrE1NUvlXjtU0rg7KhT1QDj/NzhAwbiLEfdRHWz5q738R4zDKA==", - "dev": true, - "requires": { - "chokidar": "^3.5.2", - "debug": "^4.3.2", - "execa": "^5.1.1", - "keypress": "^0.2.1", - "lodash.debounce": "^4.0.8", - "lodash.isempty": "^4.4.0", - "lodash.isequal": "^4.5.0", - "lodash.kebabcase": "^4.1.1", - "lodash.unionwith": "^4.6.0", - "optionator": "^0.9.1" - } - }, - "espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "requires": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "estree-util-attach-comments": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", - "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - }, - "estree-util-build-jsx": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", - "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-walker": "^3.0.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - } - } - }, - "estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true - }, - "estree-util-to-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", - "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "astring": "^1.8.0", - "source-map": "^0.7.0" - }, - "dependencies": { - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - } - } - }, - "estree-util-visit": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", - "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^2.0.0" - } - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true - }, - "eventemitter3": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", - "dev": true - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.2", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } - } - }, - "expression-eval": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/expression-eval/-/expression-eval-2.1.0.tgz", - "integrity": "sha512-FUJO/Akvl/JOWkvlqZaqbkhsEWlCJWDeZG4tzX96UH68D9FeRgYgtb55C2qtqbORC0Q6x5419EDjWu4IT9kQfg==", - "requires": { - "jsep": "^0.3.0" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-patch": { - "version": "3.0.0-1", - "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.0.0-1.tgz", - "integrity": "sha512-6pdFb07cknxvPzCeLsFHStEy+MysPJPgZQ9LbQ/2O67unQF93SNqfdSqnPPl71YMHX+AD8gbl7iuoGFzHEdDuw==" - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fast-memoize": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz", - "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==", - "dev": true - }, - "fast-xml-parser": { - "version": "4.2.7", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz", - "integrity": "sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==", - "requires": { - "strnum": "^1.0.5" - } - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", - "requires": { - "fbjs": "^3.0.0" - } - }, - "fbjs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", - "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", - "requires": { - "cross-fetch": "^3.1.5", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.30" - } - }, - "fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - }, - "fetch-retry": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", - "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", - "dev": true - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "file-system-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", - "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", - "dev": true, - "requires": { - "fs-extra": "11.1.1", - "ramda": "0.29.0" - }, - "dependencies": { - "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - } - } - }, - "filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "requires": { - "minimatch": "^5.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - } - } - }, - "find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "flow-parser": { - "version": "0.237.2", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.237.2.tgz", - "integrity": "sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==", - "dev": true - }, - "flux": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.3.tgz", - "integrity": "sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==", - "requires": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.1" - } - }, - "focus-trap": { - "version": "6.9.4", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-6.9.4.tgz", - "integrity": "sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==", - "requires": { - "tabbable": "^5.3.3" - } - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "requires": { - "is-callable": "^1.1.3" - } - }, - "foreground-child": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.0.tgz", - "integrity": "sha512-CrWQNaEl1/6WeZoarcM9LHupTo3RpZO2Pdk1vktwzPiQTsJnAKJmm3TACKeG5UZbWDfaH2AbvYxzP96y0MT7fA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "dependencies": { - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true - } - } - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", - "dev": true - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fp-and-or": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/fp-and-or/-/fp-and-or-0.1.3.tgz", - "integrity": "sha512-wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g==", - "dev": true - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - } - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true - }, - "geojson-vt": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", - "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - }, - "get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" - }, - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "dev": true - }, - "get-npm-tarball-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.1.0.tgz", - "integrity": "sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==", - "dev": true - }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true - }, - "get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "get-tsconfig": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.1.tgz", - "integrity": "sha512-sLtd6Bcwbi9IrAow/raCOTE9pmhvo5ksQo5v2lApUGJMzja64MUYhBp0G6X1S+f7IrBPn1HP+XkS2w2meoGcjg==", - "dev": true, - "requires": { - "resolve-pkg-maps": "^1.0.0" - } - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==" - }, - "giget": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", - "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", - "dev": true, - "requires": { - "citty": "^0.1.6", - "consola": "^3.2.3", - "defu": "^6.1.4", - "node-fetch-native": "^1.6.3", - "nypm": "^0.3.8", - "ohash": "^1.1.3", - "pathe": "^1.1.2", - "tar": "^6.2.0" - } - }, - "github-slugger": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", - "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", - "dev": true - }, - "gl-matrix": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", - "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" - }, - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-promise": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz", - "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==", - "dev": true, - "requires": { - "@types/glob": "^7.1.3" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "requires": { - "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true - } - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "got": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.6.0.tgz", - "integrity": "sha512-WTcaQ963xV97MN3x0/CbAriXFZcXCfgxVp91I+Ze6pawQOa7SgzwSx2zIJJsX+kTajMnVs0xcFD1TxZKFqhdnQ==", - "dev": true, - "requires": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "grid-index": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", - "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", - "optional": true, - "peer": true - }, - "gunzip-maybe": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", - "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", - "dev": true, - "requires": { - "browserify-zlib": "^0.1.4", - "is-deflate": "^1.0.0", - "is-gzip": "^1.0.0", - "peek-stream": "^1.1.0", - "pumpify": "^1.3.3", - "through2": "^2.0.3" - } - }, - "h3-js": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-3.7.2.tgz", - "integrity": "sha512-LPjlHSwB9zQZrMqKloCZmmmt3yZzIK7nqPcXqwU93zT3TtYG6jP4tZBzAPouxut7lLjdFbMQ75wRBiKfpsnY7w==" - }, - "hammerjs": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", - "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=" - }, - "hamt_plus": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", - "integrity": "sha1-4hwlKWjH4zsg9qGwlM2FeHomVgE=" - }, - "handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, - "requires": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4", - "wordwrap": "^1.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "has-yarn": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", - "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==", - "dev": true - }, - "hast-util-to-estree": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.2.tgz", - "integrity": "sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "estree-util-attach-comments": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "hast-util-whitespace": "^2.0.0", - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdxjs-esm": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.1", - "unist-util-position": "^4.0.0", - "zwitch": "^2.0.0" - }, - "dependencies": { - "space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "dev": true - } - } - }, - "hast-util-whitespace": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", - "dev": true - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - } - }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "html-tags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "http2-wrapper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", - "dev": true, - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "ignore-walk": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.1.tgz", - "integrity": "sha512-/c8MxUAqpRccq+LyDOecwF+9KqajueJHh8fz7g3YqjMZt+NSfJzx05zrKiXwa2sKwFCzaiZ5qUVfRj0pmxixEA==", - "dev": true, - "requires": { - "minimatch": "^6.1.6" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-6.2.0.tgz", - "integrity": "sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "image-size": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", - "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==" - }, - "immer": { - "version": "9.0.19", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz", - "integrity": "sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", - "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", - "dev": true - }, - "inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "dev": true - }, - "internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==" - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, - "requires": { - "loose-envify": "^1.0.0" - } - }, - "ip-address": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "dev": true, - "requires": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" - }, - "dependencies": { - "sprintf-js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "dev": true - } - } - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true - }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", - "dev": true - }, - "is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", - "dev": true - }, - "is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", - "dev": true, - "requires": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" - } - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true - }, - "is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "requires": { - "ci-info": "^3.2.0" - } - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", - "dev": true - }, - "is-deflate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", - "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", - "dev": true - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true - }, - "is-error": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", - "integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==" - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - }, - "is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-gzip": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", - "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", - "dev": true - }, - "is-hexadecimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", - "dev": true - }, - "is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - } - }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, - "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true - }, - "is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-npm": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", - "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true - }, - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - }, - "is-reference": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", - "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", - "dev": true, - "requires": { - "@types/estree": "*" - } - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", - "dev": true, - "requires": { - "which-typed-array": "^1.1.11" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true - }, - "is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - }, - "is-yarn-global": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz", - "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==", - "dev": true - }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - }, - "istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "jackspeak": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", - "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", - "dev": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, - "jake": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", - "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", - "dev": true, - "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-haste-map": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*" - }, - "dependencies": { - "@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.5", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", - "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true - }, - "jest-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", - "dev": true, - "requires": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - } - } - }, - "jsbn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "dev": true - }, - "jscodeshift": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", - "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", - "dev": true, - "requires": { - "@babel/core": "^7.23.0", - "@babel/parser": "^7.23.0", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.23.0", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", - "@babel/plugin-transform-optional-chaining": "^7.23.0", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/preset-flow": "^7.22.15", - "@babel/preset-typescript": "^7.23.0", - "@babel/register": "^7.22.15", - "babel-core": "^7.0.0-bridge.0", - "chalk": "^4.1.2", - "flow-parser": "0.*", - "graceful-fs": "^4.2.4", - "micromatch": "^4.0.4", - "neo-async": "^2.5.0", - "node-dir": "^0.1.17", - "recast": "^0.23.3", - "temp": "^0.8.4", - "write-file-atomic": "^2.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - } - } - }, - "jsep": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/jsep/-/jsep-0.3.5.tgz", - "integrity": "sha512-AoRLBDc6JNnKjNcmonituEABS5bcfqDhQAWWXNTFrqu6nVXBpBAGfcoTGZMFlIrh9FjmE1CQyX9CTNwZrXMMDA==" - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "json-parse-helpfulerror": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", - "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", - "dev": true, - "requires": { - "jju": "^1.1.0" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz", - "integrity": "sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==", - "requires": { - "jsonify": "^0.0.1" - } - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "json-stringify-pretty-compact": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz", - "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==" - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" - }, - "jsonlines": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz", - "integrity": "sha512-ekDrAGso79Cvf+dtm+mL8OBI2bmAOt3gssYs833De/C9NmIpWDWyUO4zPgB5x2/OhY366dkhgfPMYfwZF7yOZA==", - "dev": true - }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true - }, - "jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", - "dev": true, - "requires": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - } - }, - "kdbush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", - "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==", - "optional": true, - "peer": true - }, - "keypress": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz", - "integrity": "sha512-HjorDJFNhnM4SicvaUXac0X77NiskggxJdesG72+O5zBKpSqKFCrqmndKVqpu3pFqkla0St6uGk8Ju0sCurrmg==", - "dev": true - }, - "keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "ktx-parse": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.0.4.tgz", - "integrity": "sha512-LY3nrmfXl+wZZdPxgJ3ZmLvG+wkOZZP3/dr4RbQj1Pk3Qwz44esOOSFFVQJcNWpXAtiNIC66WgXufX/SYgYz6A==" - }, - "language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dev": true, - "requires": { - "language-subtag-registry": "~0.3.2" - } - }, - "latest-version": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", - "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", - "dev": true, - "requires": { - "package-json": "^8.1.0" - } - }, - "lazy-universal-dotenv": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", - "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", - "dev": true, - "requires": { - "app-root-dir": "^1.0.2", - "dotenv": "^16.0.0", - "dotenv-expand": "^10.0.0" - } - }, - "lerc": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lerc/-/lerc-4.0.1.tgz", - "integrity": "sha512-b351eOjY3DKm1H2hDVhXswsd2RCK6bgREBK6Z639ctClOuYXTi9a44l8yO3zm1pYM2o4WrriloTAKgyrb/0EyA==" - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "lint-staged": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-14.0.1.tgz", - "integrity": "sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==", - "dev": true, - "requires": { - "chalk": "5.3.0", - "commander": "11.0.0", - "debug": "4.3.4", - "execa": "7.2.0", - "lilconfig": "2.1.0", - "listr2": "6.6.1", - "micromatch": "4.0.5", - "pidtree": "0.6.0", - "string-argv": "0.3.2", - "yaml": "2.3.1" - }, - "dependencies": { - "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true - }, - "commander": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", - "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", - "dev": true - }, - "execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - } - }, - "human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true - }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true - }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true - }, - "npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true - }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true - }, - "yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true - } - } - }, - "listr2": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", - "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", - "dev": true, - "requires": { - "cli-truncate": "^3.1.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^5.0.1", - "rfdc": "^1.3.0", - "wrap-ansi": "^8.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==" - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash.curry": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", - "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "lodash.flow": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", - "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" - }, - "lodash.isempty": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz", - "integrity": "sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==", - "dev": true - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "dev": true - }, - "lodash.kebabcase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", - "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.unionwith": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.unionwith/-/lodash.unionwith-4.6.0.tgz", - "integrity": "sha512-Hk8otPCkVM4UxRoft3E5dAREwExyXci6iVPCibHIEiG7neb9KAdWHYS75MYpVTvxDrnpp7WCJNZ84vAk7j7tVA==", - "dev": true - }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "log-update": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", - "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", - "dev": true, - "requires": { - "ansi-escapes": "^5.0.0", - "cli-cursor": "^4.0.0", - "slice-ansi": "^5.0.0", - "strip-ansi": "^7.0.1", - "wrap-ansi": "^8.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==" - }, - "longest-streak": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", - "dev": true - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "loupe": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", - "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", - "requires": { - "get-func-name": "^2.0.0" - } - }, - "lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", - "dev": true - }, - "lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true - }, - "lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "dev": true - }, - "magic-string": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", - "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } - } - }, - "make-fetch-happen": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", - "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^9.0.0" - }, - "dependencies": { - "@npmcli/fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", - "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", - "dev": true, - "requires": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "cacache": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", - "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^2.0.0" - } - }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "ssri": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", - "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "unique-filename": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", - "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", - "dev": true, - "requires": { - "unique-slug": "^3.0.0" - } - }, - "unique-slug": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", - "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - } - } - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "requires": { - "tmpl": "1.0.5" - } - }, - "map-or-similar": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", - "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", - "dev": true - }, - "mapbox-gl": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-1.13.3.tgz", - "integrity": "sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==", - "optional": true, - "peer": true, - "requires": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/geojson-types": "^1.0.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/mapbox-gl-supported": "^1.5.0", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^1.1.1", - "@mapbox/unitbezier": "^0.0.0", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "csscolorparser": "~1.0.3", - "earcut": "^2.2.2", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.2.1", - "grid-index": "^1.1.0", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^1.0.1", - "quickselect": "^2.0.0", - "rw": "^1.3.3", - "supercluster": "^7.1.0", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.1" - } - }, - "maplibre-gl": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-3.3.1.tgz", - "integrity": "sha512-SfRq9bT68GytDzCOG0IoTGg2rASbgdYunW/6xhnp55QuLmwG1M/YOlXxqHaphwia7kZbMvBOocvY0fp5yfTjZA==", - "requires": { - "@mapbox/geojson-rewind": "^0.5.2", - "@mapbox/jsonlint-lines-primitives": "^2.0.2", - "@mapbox/point-geometry": "^0.1.0", - "@mapbox/tiny-sdf": "^2.0.6", - "@mapbox/unitbezier": "^0.0.1", - "@mapbox/vector-tile": "^1.3.1", - "@mapbox/whoots-js": "^3.1.0", - "@maplibre/maplibre-gl-style-spec": "^19.3.0", - "@types/geojson": "^7946.0.10", - "@types/mapbox__point-geometry": "^0.1.2", - "@types/mapbox__vector-tile": "^1.3.0", - "@types/pbf": "^3.0.2", - "@types/supercluster": "^7.1.0", - "earcut": "^2.2.4", - "geojson-vt": "^3.2.1", - "gl-matrix": "^3.4.3", - "global-prefix": "^3.0.0", - "kdbush": "^4.0.2", - "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", - "potpack": "^2.0.0", - "quickselect": "^2.0.0", - "supercluster": "^8.0.1", - "tinyqueue": "^2.0.3", - "vt-pbf": "^3.1.3" - }, - "dependencies": { - "@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - }, - "@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - }, - "kdbush": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", - "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==" - }, - "potpack": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.0.0.tgz", - "integrity": "sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==" - }, - "supercluster": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", - "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", - "requires": { - "kdbush": "^4.0.2" - } - } - } - }, - "markdown-extensions": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", - "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", - "dev": true - }, - "markdown-to-jsx": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", - "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==", - "requires": {} - }, - "match-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz", - "integrity": "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==", - "requires": { - "@babel/runtime": "^7.12.5", - "remove-accents": "0.4.2" - } - }, - "math.gl": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/math.gl/-/math.gl-3.6.3.tgz", - "integrity": "sha512-Yq9CyECvSDox9+5ETi2+x1bGTY5WvGUGL3rJfC4KPoCZAM51MGfrCm6rIn4yOJUVfMPs2a5RwMD+yGS/n1g3gg==", - "requires": { - "@math.gl/core": "3.6.3" - } - }, - "mdast-util-definitions": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", - "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", - "dev": true, - "requires": { - "unist-util-visit": "^2.0.0" - } - }, - "mdast-util-from-markdown": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", - "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" - }, - "dependencies": { - "mdast-util-to-string": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", - "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0" - } - } - } - }, - "mdast-util-mdx": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", - "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", - "dev": true, - "requires": { - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdx-jsx": "^2.0.0", - "mdast-util-mdxjs-esm": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - } - }, - "mdast-util-mdx-expression": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", - "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - } - }, - "mdast-util-mdx-jsx": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz", - "integrity": "sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "ccount": "^2.0.0", - "mdast-util-from-markdown": "^1.1.0", - "mdast-util-to-markdown": "^1.3.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-remove-position": "^4.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - } - }, - "mdast-util-mdxjs-esm": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", - "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - } - }, - "mdast-util-phrasing": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "unist-util-is": "^5.0.0" - }, - "dependencies": { - "unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - } - } - }, - "mdast-util-to-hast": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", - "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", - "dev": true, - "requires": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-definitions": "^5.0.0", - "micromark-util-sanitize-uri": "^1.1.0", - "trim-lines": "^3.0.0", - "unist-util-generated": "^2.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0" - }, - "dependencies": { - "mdast-util-definitions": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" - } - }, - "unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - } - }, - "unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - } - } - } - }, - "mdast-util-to-markdown": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", - "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^3.0.0", - "mdast-util-to-string": "^3.0.0", - "micromark-util-decode-string": "^1.0.0", - "unist-util-visit": "^4.0.0", - "zwitch": "^2.0.0" - }, - "dependencies": { - "mdast-util-to-string": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", - "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0" - } - }, - "unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - } - }, - "unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - } - } - } - }, - "mdast-util-to-string": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", - "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true - }, - "memoizerific": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", - "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", - "dev": true, - "requires": { - "map-or-similar": "^1.5.0" - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true - }, - "micromark": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", - "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", - "dev": true, - "requires": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "micromark-core-commonmark": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", - "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", - "dev": true, - "requires": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "micromark-extension-mdx-expression": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz", - "integrity": "sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==", - "dev": true, - "requires": { - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "micromark-extension-mdx-jsx": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz", - "integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==", - "dev": true, - "requires": { - "@types/acorn": "^4.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - } - }, - "micromark-extension-mdx-md": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", - "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", - "dev": true, - "requires": { - "micromark-util-types": "^1.0.0" - } - }, - "micromark-extension-mdxjs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", - "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", - "dev": true, - "requires": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^1.0.0", - "micromark-extension-mdx-jsx": "^1.0.0", - "micromark-extension-mdx-md": "^1.0.0", - "micromark-extension-mdxjs-esm": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-extension-mdxjs-esm": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz", - "integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==", - "dev": true, - "requires": { - "micromark-core-commonmark": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.1.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - } - }, - "micromark-factory-destination": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", - "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-factory-label": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", - "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "micromark-factory-mdx-expression": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz", - "integrity": "sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==", - "dev": true, - "requires": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - } - }, - "micromark-factory-space": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", - "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-factory-title": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", - "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", - "dev": true, - "requires": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "micromark-factory-whitespace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", - "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", - "dev": true, - "requires": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-util-character": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", - "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", - "dev": true, - "requires": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-util-chunked": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", - "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", - "dev": true, - "requires": { - "micromark-util-symbol": "^1.0.0" - } - }, - "micromark-util-classify-character": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", - "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-util-combine-extensions": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", - "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", - "dev": true, - "requires": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "micromark-util-decode-numeric-character-reference": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", - "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", - "dev": true, - "requires": { - "micromark-util-symbol": "^1.0.0" - } - }, - "micromark-util-decode-string": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", - "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", - "dev": true, - "requires": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "micromark-util-encode": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", - "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", - "dev": true - }, - "micromark-util-events-to-acorn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz", - "integrity": "sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==", - "dev": true, - "requires": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "estree-util-visit": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-location": "^4.0.0", - "vfile-message": "^3.0.0" - } - }, - "micromark-util-html-tag-name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", - "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", - "dev": true - }, - "micromark-util-normalize-identifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", - "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", - "dev": true, - "requires": { - "micromark-util-symbol": "^1.0.0" - } - }, - "micromark-util-resolve-all": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", - "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", - "dev": true, - "requires": { - "micromark-util-types": "^1.0.0" - } - }, - "micromark-util-sanitize-uri": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", - "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "micromark-util-subtokenize": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", - "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", - "dev": true, - "requires": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "micromark-util-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", - "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", - "dev": true - }, - "micromark-util-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", - "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "microseconds": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz", - "integrity": "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==" - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", - "dev": true - }, - "min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - }, - "minipass": { - "version": "4.2.5", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.5.tgz", - "integrity": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==", - "dev": true - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", - "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^3.1.6", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", - "dev": true, - "requires": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mjolnir.js": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-2.7.1.tgz", - "integrity": "sha512-72BeUWgTv2cj5aZQKpwL8caNUFhXZ9bDm1hxpNj70XJQ62IBnTZmtv/WPxJvtaVNhzNo+D2U8O6ryNI0zImYcw==", - "requires": { - "@types/hammerjs": "^2.0.41", - "hammerjs": "^2.0.8" - } - }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "mlly": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", - "integrity": "sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==", - "requires": { - "acorn": "^8.8.2", - "pathe": "^1.1.0", - "pkg-types": "^1.0.2", - "ufo": "^1.1.1" - } - }, - "moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" - }, - "moment-timezone": { - "version": "0.5.43", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.43.tgz", - "integrity": "sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==", - "requires": { - "moment": "^2.29.4" - } - }, - "mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "murmurhash-js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", - "integrity": "sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=" - }, - "nano-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", - "integrity": "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==", - "requires": { - "big-integer": "^1.6.16" - } - }, - "nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node-dir": { - "version": "0.1.17", - "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", - "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", - "dev": true, - "requires": { - "minimatch": "^3.0.2" - } - }, - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-fetch-native": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", - "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", - "dev": true - }, - "node-gyp": { - "version": "9.3.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.3.1.tgz", - "integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "dependencies": { - "are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - } - }, - "npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", - "dev": true, - "requires": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - } - } - } - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true - }, - "nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", - "dev": true, - "requires": { - "abbrev": "^1.0.0" - } - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", - "dev": true - }, - "npm-bundled": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", - "dev": true, - "requires": { - "npm-normalize-package-bin": "^3.0.0" - } - }, - "npm-check-updates": { - "version": "16.7.12", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.7.12.tgz", - "integrity": "sha512-ejYl/BiWhkUxDs1ISQd/6blgTIfHabSdsfR5JWoA7PK+cGn8hCqVKO5p+nNI2PqX+0F21ExGqkt8b7cg2yxuYg==", - "dev": true, - "requires": { - "chalk": "^5.2.0", - "cli-table": "^0.3.11", - "commander": "^10.0.0", - "fast-memoize": "^2.5.2", - "find-up": "5.0.0", - "fp-and-or": "^0.1.3", - "get-stdin": "^8.0.0", - "globby": "^11.0.4", - "hosted-git-info": "^5.1.0", - "ini": "^3.0.1", - "json-parse-helpfulerror": "^1.0.3", - "jsonlines": "^0.1.1", - "lodash": "^4.17.21", - "minimatch": "^7.0.1", - "p-map": "^4.0.0", - "pacote": "15.1.1", - "parse-github-url": "^1.0.2", - "progress": "^2.0.3", - "prompts-ncu": "^2.5.1", - "rc-config-loader": "^4.1.2", - "remote-git-tags": "^3.0.0", - "rimraf": "^4.1.2", - "semver": "^7.3.8", - "semver-utils": "^1.1.4", - "source-map-support": "^0.5.21", - "spawn-please": "^2.0.1", - "strip-json-comments": "^5.0.0", - "untildify": "^4.0.0", - "update-notifier": "^6.0.2", - "yaml": "^2.2.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true - }, - "commander": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.0.tgz", - "integrity": "sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==", - "dev": true - }, - "glob": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.0.tgz", - "integrity": "sha512-EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "minimatch": "^7.4.1", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - } - }, - "hosted-git-info": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz", - "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==", - "dev": true, - "requires": { - "lru-cache": "^7.5.1" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "minimatch": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.2.tgz", - "integrity": "sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "rimraf": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-4.4.0.tgz", - "integrity": "sha512-X36S+qpCUR0HjXlkDe4NAOhS//aHH0Z+h8Ckf2auGJk3PTnx5rLmrHkwNdbVQuCSUhOyFrlRvFEllZOYE+yZGQ==", - "dev": true, - "requires": { - "glob": "^9.2.0" - } - }, - "strip-json-comments": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.0.tgz", - "integrity": "sha512-V1LGY4UUo0jgwC+ELQ2BNWfPa17TIuwBLg+j1AA/9RPzKINl1lhxVEu2r+ZTTO8aetIsUzE5Qj6LMSBkoGYKKw==", - "dev": true - }, - "yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true - } - } - }, - "npm-install-checks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.0.0.tgz", - "integrity": "sha512-SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q==", - "dev": true, - "requires": { - "semver": "^7.1.1" - } - }, - "npm-normalize-package-bin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz", - "integrity": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==", - "dev": true - }, - "npm-package-arg": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", - "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", - "dev": true, - "requires": { - "hosted-git-info": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" - }, - "dependencies": { - "hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", - "dev": true, - "requires": { - "lru-cache": "^7.5.1" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - } - } - }, - "npm-packlist": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", - "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", - "dev": true, - "requires": { - "ignore-walk": "^6.0.0" - } - }, - "npm-pick-manifest": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", - "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", - "dev": true, - "requires": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", - "semver": "^7.3.5" - } - }, - "npm-registry-fetch": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.3.tgz", - "integrity": "sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==", - "dev": true, - "requires": { - "make-fetch-happen": "^11.0.0", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", - "proc-log": "^3.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "make-fetch-happen": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz", - "integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==", - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - } - }, - "minipass-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.1.tgz", - "integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^4.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - } - } - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "nypm": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.8.tgz", - "integrity": "sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==", - "dev": true, - "requires": { - "citty": "^0.1.6", - "consola": "^3.2.3", - "execa": "^8.0.1", - "pathe": "^1.1.2", - "ufo": "^1.4.0" - }, - "dependencies": { - "execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - } - }, - "get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true - }, - "human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true - }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true - }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true - }, - "npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true - }, - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true - }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true - } - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true - }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" - } - }, - "object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "requires": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "oblivious-set": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz", - "integrity": "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==" - }, - "ohash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", - "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - } - }, - "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - } - }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "package-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.0.tgz", - "integrity": "sha512-hySwcV8RAWeAfPsXb9/HGSPn8lwDnv6fabH+obUZKX169QknRkRhPxd1yMubpKDskLFATkl3jHpNtVtDPFA0Wg==", - "dev": true, - "requires": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - } - }, - "pacote": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.1.tgz", - "integrity": "sha512-eeqEe77QrA6auZxNHIp+1TzHQ0HBKf5V6c8zcaYZ134EJe1lCi+fjXATkNiEEfbG+e50nu02GLvUtmZcGOYabQ==", - "dev": true, - "requires": { - "@npmcli/git": "^4.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^4.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^1.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - }, - "dependencies": { - "fs-minipass": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.1.tgz", - "integrity": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==", - "dev": true, - "requires": { - "minipass": "^4.0.0" - } - } - } - }, - "pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", - "dev": true - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-entities": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", - "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", - "character-entities-legacy": "^3.0.0", - "character-reference-invalid": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0", - "is-hexadecimal": "^2.0.0" - } - }, - "parse-github-url": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", - "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", - "dev": true - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "dev": true, - "requires": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "dependencies": { - "minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true - } - } - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "pathe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", - "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" - }, - "pathval": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", - "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" - }, - "pbf": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", - "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", - "requires": { - "ieee754": "^1.1.12", - "resolve-protobuf-schema": "^2.1.0" - } - }, - "peek-stream": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", - "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "duplexify": "^3.5.0", - "through2": "^2.0.3" - } - }, - "periscopic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - } - } - }, - "picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true - }, - "pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "requires": { - "find-up": "^5.0.0" - } - }, - "pkg-types": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.2.tgz", - "integrity": "sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==", - "requires": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.1.1", - "pathe": "^1.1.0" - } - }, - "polished": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", - "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.17.8" - } - }, - "postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", - "requires": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" - } - }, - "potpack": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.1.tgz", - "integrity": "sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw==", - "optional": true, - "peer": true - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "prettier": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", - "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", - "dev": true - }, - "prettier-fallback": { - "version": "npm:prettier@3.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", - "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", - "dev": true - }, - "pretty-bytes": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.0.tgz", - "integrity": "sha512-Rk753HI8f4uivXi4ZCIYdhmG1V+WKzvRMg/X+M42a6t7D07RcmopXJMDNk6N++7Bl75URRGsb40ruvg7Hcp2wQ==" - }, - "pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "requires": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - }, - "react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - } - } - }, - "pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", - "dev": true - }, - "proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", - "dev": true - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" - } - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "prompts-ncu": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prompts-ncu/-/prompts-ncu-2.5.1.tgz", - "integrity": "sha512-Hdd7GgV7b76Yh9FP9HL1D9xqtJCJdVPpiM2vDtuoc8W1KfweJe15gutFYmxkq83ViFaagFM8K0UcPCQ/tZq8bA==", - "dev": true, - "requires": { - "kleur": "^4.0.1", - "sisteransi": "^1.0.5" - }, - "dependencies": { - "kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true - } - } - }, - "prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "property-information": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", - "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", - "dev": true - }, - "proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "protocol-buffers-schema": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.5.1.tgz", - "integrity": "sha512-YVCvdhxWNDP8/nJDyXLuM+UFsuPk4+1PB7WGPVDzm3HTHbzFLxQYeW2iZpS4mmnXrQJGBzt230t/BbEb7PrQaw==" - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "pupa": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", - "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", - "dev": true, - "requires": { - "escape-goat": "^4.0.0" - } - }, - "pure-color": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", - "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" - }, - "qrcode-terminal": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", - "integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==", - "dev": true - }, - "qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "quadbin": { - "version": "0.1.9", - "resolved": "https://registry.npmjs.org/quadbin/-/quadbin-0.1.9.tgz", - "integrity": "sha512-5V6m6+cL/6+uBl3hYL+CWF06rRvlHkIepYKGQjTLYaHhu9InPppql0+0ROiCaOQdz8gPNlgge3glk5Qg1mWOYw==", - "requires": { - "@mapbox/tile-cover": "3.0.1" - } - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true - }, - "quickselect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", - "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" - }, - "ramda": { - "version": "0.29.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", - "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", - "dev": true - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true - } - } - }, - "rc-config-loader": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.2.tgz", - "integrity": "sha512-qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg==", - "dev": true, - "requires": { - "debug": "^4.3.4", - "js-yaml": "^4.1.0", - "json5": "^2.2.2", - "require-from-string": "^2.0.2" - } - }, - "react": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", - "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "react-base16-styling": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", - "integrity": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", - "requires": { - "base16": "^1.0.0", - "lodash.curry": "^4.0.1", - "lodash.flow": "^3.3.0", - "pure-color": "^1.2.0" - } - }, - "react-colorful": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", - "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", - "dev": true, - "requires": {} - }, - "react-docgen": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", - "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", - "dev": true, - "requires": { - "@babel/core": "^7.18.9", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", - "@types/babel__core": "^7.18.0", - "@types/babel__traverse": "^7.18.0", - "@types/doctrine": "^0.0.9", - "@types/resolve": "^1.20.2", - "doctrine": "^3.0.0", - "resolve": "^1.22.1", - "strip-indent": "^4.0.0" - }, - "dependencies": { - "@types/doctrine": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", - "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", - "dev": true - } - } - }, - "react-docgen-typescript": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", - "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", - "dev": true, - "requires": {} - }, - "react-dom": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", - "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" - } - }, - "react-element-to-jsx-string": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", - "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", - "dev": true, - "requires": { - "@base2/pretty-print-object": "1.0.1", - "is-plain-object": "5.0.0", - "react-is": "18.1.0" - }, - "dependencies": { - "react-is": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", - "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", - "dev": true - } - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "react-json-view": { - "version": "1.21.3", - "resolved": "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz", - "integrity": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==", - "requires": { - "flux": "^4.0.1", - "react-base16-styling": "^0.6.0", - "react-lifecycles-compat": "^3.0.4", - "react-textarea-autosize": "^8.3.2" - } - }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "react-map-gl": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.1.6.tgz", - "integrity": "sha512-9XbrvpFF67Fyi+e6vRLJFnGpo3UF6ZHifIa8cS/wUYSsnv9sVyzGsN++FJy57zkz3Jh3kmf0xKZemR8K0FZLVw==", - "requires": { - "@maplibre/maplibre-gl-style-spec": "^19.2.1", - "@types/mapbox-gl": ">=1.0.0" - }, - "dependencies": { - "@types/mapbox-gl": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-2.4.0.tgz", - "integrity": "sha512-Na5vXw6Ez0L5To/+pL78dWPNoG6QlPdEDdnkSmIL5HWxemD+s0pTmTWDbMj7tcqJ2hnVyOyukVIveR9HPi7eeA==", - "requires": { - "@types/geojson": "*" - } - } - } - }, - "react-query": { - "version": "3.39.3", - "resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.3.tgz", - "integrity": "sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==", - "requires": { - "@babel/runtime": "^7.5.5", - "broadcast-channel": "^3.4.1", - "match-sorter": "^6.0.2" - } - }, - "react-remove-scroll": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", - "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", - "dev": true, - "requires": { - "react-remove-scroll-bar": "^2.3.3", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "react-remove-scroll-bar": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", - "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", - "dev": true, - "requires": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "react-resize-detector": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-8.0.4.tgz", - "integrity": "sha512-ln9pMAob8y8mc9UI4aZuuWFiyMqBjnTs/sxe9Vs9dPXUjwCTeKK1FP8I75ufnb/2mEEZXG6wOo/fjMcBRRuAXw==", - "requires": { - "lodash": "^4.17.21" - } - }, - "react-router": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.9.0.tgz", - "integrity": "sha512-51lKevGNUHrt6kLuX3e/ihrXoXCa9ixY/nVWRLlob4r/l0f45x3SzBvYJe3ctleLUQQ5fVa4RGgJOTH7D9Umhw==", - "requires": { - "@remix-run/router": "1.4.0" - } - }, - "react-router-dom": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.9.0.tgz", - "integrity": "sha512-/seUAPY01VAuwkGyVBPCn1OXfVbaWGGu4QN9uj0kCPcTyNYgL1ldZpxZUpRU7BLheKQI4Twtl/OW2nHRF1u26Q==", - "requires": { - "@remix-run/router": "1.4.0", - "react-router": "6.9.0" - } - }, - "react-spring-bottom-sheet": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/react-spring-bottom-sheet/-/react-spring-bottom-sheet-3.4.1.tgz", - "integrity": "sha512-yDFqiPMm/fjefjnOe6Q9zxccbCl6HMUKsK5bWgfGHJIj4zmXVKio5d4icQvmOLuwpuCA2pwv4J6nGWS6fUZidQ==", - "requires": { - "@juggle/resize-observer": "^3.2.0", - "@reach/portal": "^0.13.0", - "@xstate/react": "^1.2.0", - "body-scroll-lock": "^3.1.5", - "focus-trap": "^6.2.2", - "react-spring": "^8.0.27", - "react-use-gesture": "^8.0.1", - "xstate": "^4.15.1" - }, - "dependencies": { - "react-spring": { - "version": "8.0.27", - "resolved": "https://registry.npmjs.org/react-spring/-/react-spring-8.0.27.tgz", - "integrity": "sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==", - "requires": { - "@babel/runtime": "^7.3.1", - "prop-types": "^15.5.8" - } - } - } - }, - "react-string-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/react-string-replace/-/react-string-replace-1.1.0.tgz", - "integrity": "sha512-N6RalSDFGbOHs0IJi1H611WbZsvk3ZT47Jl2JEXFbiS3kTwsdCYij70Keo/tWtLy7sfhDsYm7CwNM/WmjXIaMw==" - }, - "react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "dev": true, - "requires": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "react-textarea-autosize": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.4.0.tgz", - "integrity": "sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==", - "requires": { - "@babel/runtime": "^7.10.2", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - } - }, - "react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } - }, - "react-use-gesture": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/react-use-gesture/-/react-use-gesture-8.0.1.tgz", - "integrity": "sha512-CXzUNkulUdgouaAlvAsC5ZVo0fi9KGSBSk81WrE4kOIcJccpANe9zZkAYr5YZZhqpicIFxitsrGVS4wmoMun9A==", - "requires": {} - }, - "react-vega": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/react-vega/-/react-vega-7.6.0.tgz", - "integrity": "sha512-2oMML4wH9qWLnZPRxJm06ozwrVN/K+nkjqdI5/ofWWsrBnnH4iB9rRKrsV8px0nlWgZrwfdCH4g5RUiyyJHWSA==", - "requires": { - "@types/react": "*", - "fast-deep-equal": "^3.1.1", - "prop-types": "^15.8.1", - "vega-embed": "^6.5.1" - } - }, - "read-package-json": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.0.tgz", - "integrity": "sha512-b/9jxWJ8EwogJPpv99ma+QwtqB7FSl3+V6UXS7Aaay8/5VwMY50oIFooY1UKXMWpfNCM6T/PoGqa5GD1g9xf9w==", - "dev": true, - "requires": { - "glob": "^8.0.1", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", - "dev": true, - "requires": { - "lru-cache": "^7.5.1" - } - }, - "json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", - "dev": true, - "requires": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - } - } - }, - "read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", - "dev": true, - "requires": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "dependencies": { - "json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true - } - } - }, - "read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "requires": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "dependencies": { - "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true - } - } - }, - "read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "requires": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true - } - } - }, - "readable-stream": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.1.tgz", - "integrity": "sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "recast": { - "version": "0.23.9", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.9.tgz", - "integrity": "sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==", - "dev": true, - "requires": { - "ast-types": "^0.16.1", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tiny-invariant": "^1.3.3", - "tslib": "^2.0.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "recoil": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.7.tgz", - "integrity": "sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==", - "requires": { - "hamt_plus": "1.0.2" - } - }, - "recoil-sync": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/recoil-sync/-/recoil-sync-0.2.0.tgz", - "integrity": "sha512-ZYZM1C4LAhGr3EeMMI5MwT4eaEqsr+ddjB4EwdgN8HXXLmE7P5FVCdFHV3HJtMzxR3Y8sOmJDfN1IPrezwKoRg==", - "requires": { - "@recoiljs/refine": "^0.1.1", - "transit-js": "^0.8.874" - } - }, - "regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", - "dev": true, - "requires": { - "regenerate": "^1.4.2" - } - }, - "regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.8.4" - } - }, - "regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" - } - }, - "regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, - "requires": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - } - }, - "registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", - "dev": true, - "requires": { - "@pnpm/npm-conf": "^2.1.0" - } - }, - "registry-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", - "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", - "dev": true, - "requires": { - "rc": "1.2.8" - } - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true - } - } - }, - "remark-external-links": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", - "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", - "dev": true, - "requires": { - "extend": "^3.0.0", - "is-absolute-url": "^3.0.0", - "mdast-util-definitions": "^4.0.0", - "space-separated-tokens": "^1.0.0", - "unist-util-visit": "^2.0.0" - } - }, - "remark-mdx": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz", - "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", - "dev": true, - "requires": { - "mdast-util-mdx": "^2.0.0", - "micromark-extension-mdxjs": "^1.0.0" - } - }, - "remark-parse": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", - "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "unified": "^10.0.0" - } - }, - "remark-rehype": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", - "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", - "dev": true, - "requires": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-to-hast": "^12.1.0", - "unified": "^10.0.0" - } - }, - "remark-slug": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", - "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", - "dev": true, - "requires": { - "github-slugger": "^1.0.0", - "mdast-util-to-string": "^1.0.0", - "unist-util-visit": "^2.0.0" - } - }, - "remote-git-tags": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remote-git-tags/-/remote-git-tags-3.0.0.tgz", - "integrity": "sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==", - "dev": true - }, - "remove-accents": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", - "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "requireindex": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", - "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", - "dev": true - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true - }, - "resolve-protobuf-schema": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", - "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", - "requires": { - "protocol-buffers-schema": "^3.3.1" - } - }, - "responselike": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", - "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", - "dev": true, - "requires": { - "lowercase-keys": "^3.0.0" - } - }, - "restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - }, - "robust-predicates": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz", - "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==" - }, - "rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "requires": { - "fsevents": "~2.3.2" - } - }, - "rollup-plugin-visualizer": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.0.tgz", - "integrity": "sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==", - "dev": true, - "requires": { - "open": "^8.4.0", - "picomatch": "^2.3.1", - "source-map": "^0.7.4", - "yargs": "^17.5.1" - }, - "dependencies": { - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - } - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" - }, - "sade": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dev": true, - "requires": { - "mri": "^1.1.0" - } - }, - "safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "scheduler": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", - "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==" - }, - "semver-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", - "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", - "dev": true, - "requires": { - "semver": "^7.3.5" - } - }, - "semver-utils": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.4.tgz", - "integrity": "sha512-EjnoLE5OGmDAVV/8YDoN5KiajNadjzIp9BAHOhYeQHt7j0UWxjmgsx4YD48wp4Ue1Qogq38F1GNUJNqF1kKKxA==", - "dev": true - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", - "dev": true, - "requires": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" - } - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "siginfo": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", - "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "sigstore": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.1.1.tgz", - "integrity": "sha512-4hR3tPP1y59YWlaoAgAWFVZ7srTjNWOrrpkQXWu05qP0BvwFYyt3K3l848+IHo+mKhkOzGcNDf7ktASXLEPC+A==", - "dev": true, - "requires": { - "@sigstore/protobuf-specs": "^0.1.0", - "make-fetch-happen": "^11.0.1", - "tuf-js": "^1.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "make-fetch-happen": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz", - "integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==", - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - } - }, - "minipass-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.1.tgz", - "integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^4.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - } - } - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "requires": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - }, - "is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - } - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "socks": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", - "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", - "dev": true, - "requires": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", - "dev": true, - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - } - }, - "sort-asc": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz", - "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==" - }, - "sort-desc": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.2.0.tgz", - "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==" - }, - "sort-object": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-3.0.3.tgz", - "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==", - "requires": { - "bytewise": "^1.1.0", - "get-value": "^2.0.2", - "is-extendable": "^0.1.1", - "sort-asc": "^0.2.0", - "sort-desc": "^0.2.0", - "union-value": "^1.0.1" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - }, - "source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==" - }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "devOptional": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "devOptional": true - } - } - }, - "space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", - "dev": true - }, - "spawn-please": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/spawn-please/-/spawn-please-2.0.1.tgz", - "integrity": "sha512-W+cFbZR2q2mMTfjz5ZGvhBAiX+e/zczFCNlbS9mxiSdYswBXwUuBUT+a0urH+xZZa8f/bs0mXHyZsZHR9hKogA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3" - } - }, - "spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "requires": { - "extend-shallow": "^3.0.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" - } - } - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "ssri": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.1.tgz", - "integrity": "sha512-WVy6di9DlPOeBWEjMScpNipeSX2jIZBGEn5Uuo8Q7aIuFEuDX0pw8RxcOjlD1TWP4obi24ki7m/13+nFpcbXrw==", - "dev": true, - "requires": { - "minipass": "^4.0.0" - } - }, - "stackback": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", - "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "std-env": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.3.2.tgz", - "integrity": "sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==" - }, - "stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "requires": { - "internal-slot": "^1.0.4" - } - }, - "store2": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", - "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", - "dev": true - }, - "storybook": { - "version": "8.1.8", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.1.8.tgz", - "integrity": "sha512-2ld3JEmPWy3KOksfF0Reyiq5SC+dYBzV2XW2/YTkNkLTkyNofhdPeq71COGcB0Lq2PHZkZyNin8htQWbh0LLNg==", - "dev": true, - "requires": { - "@storybook/cli": "8.1.8" - } - }, - "stream-shift": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", - "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", - "dev": true - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true - }, - "string-natural-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string-width-cjs": { - "version": "npm:string-width@4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - } - }, - "string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dev": true, - "requires": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", - "dev": true, - "requires": { - "min-indent": "^1.0.1" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "strip-literal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.0.1.tgz", - "integrity": "sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==", - "requires": { - "acorn": "^8.8.2" - } - }, - "strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - }, - "style-to-object": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", - "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", - "dev": true, - "requires": { - "inline-style-parser": "0.1.1" - } - }, - "stylis": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", - "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" - }, - "supercluster": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.3.tgz", - "integrity": "sha512-7+bR4FbF5SYsmkHfDp61QiwCKtwNDyPsddk9TzfsDA5DQr5Goii5CVD2SXjglweFCxjrzVZf945ahqYfUIk8UA==", - "optional": true, - "peer": true, - "requires": { - "kdbush": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", - "dev": true - }, - "synchronous-promise": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", - "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==", - "dev": true - }, - "tabbable": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", - "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - }, - "tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - } - } - }, - "tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - }, - "dependencies": { - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - } - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - } - }, - "telejson": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", - "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", - "dev": true, - "requires": { - "memoizerific": "^1.11.3" - } - }, - "temp": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", - "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", - "dev": true, - "requires": { - "rimraf": "~2.6.2" - }, - "dependencies": { - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "dev": true - }, - "tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dev": true, - "requires": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "dependencies": { - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true - }, - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true - } - } - }, - "terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", - "optional": true, - "peer": true, - "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - } - }, - "test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "texture-compressor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", - "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", - "requires": { - "argparse": "^1.0.10", - "image-size": "^0.7.4" - } - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "tilebelt": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tilebelt/-/tilebelt-1.0.1.tgz", - "integrity": "sha512-cxHzpa5JgsugY9NUVRH43gPaGJw/29LecAn4X7UGOP64+kB8pU4VQ3bIhSyfb5Mk4jDxwl3yk330L/EIhbJ5aw==" - }, - "tiny-invariant": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", - "dev": true - }, - "tinybench": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.4.0.tgz", - "integrity": "sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==" - }, - "tinypool": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.3.1.tgz", - "integrity": "sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==" - }, - "tinyqueue": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", - "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" - }, - "tinyspy": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-1.1.1.tgz", - "integrity": "sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==" - }, - "tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "tocbot": { - "version": "4.28.2", - "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.28.2.tgz", - "integrity": "sha512-/MaSa9xI6mIo84IxqqliSCtPlH0oy7sLcY9s26qPMyH/2CxtZ2vNAXYlIdEQ7kjAkCQnc0rbLygf//F5c663oQ==", - "dev": true - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true - }, - "topojson-client": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", - "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", - "requires": { - "commander": "2" - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "transit-js": { - "version": "0.8.874", - "resolved": "https://registry.npmjs.org/transit-js/-/transit-js-0.8.874.tgz", - "integrity": "sha512-IDJJGKRzUbJHmN0P15HBBa05nbKor3r2MmG6aSt0UxXIlJZZKcddTk67/U7WyAeW9Hv/VYI02IqLzolsC4sbPA==" - }, - "trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", - "dev": true - }, - "trough": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", - "dev": true - }, - "ts-dedent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", - "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", - "dev": true - }, - "tsconfck": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-2.1.0.tgz", - "integrity": "sha512-lztI9ohwclQHISVWrM/hlcgsRpphsii94DV9AQtAw2XJSVNiv+3ppdEsrL5J+xc5oTeHXe1qDqlOAGw8VSa9+Q==", - "dev": true, - "requires": {} - }, - "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - } - }, - "tuf-js": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.1.tgz", - "integrity": "sha512-WTp382/PR96k0dI4GD5RdiRhgOU0rAC7+lnoih/5pZg3cyb3aNMqDozleEEWwyfT3+FOg7Qz9JU3n6A44tLSHw==", - "dev": true, - "requires": { - "@tufjs/models": "1.0.0", - "make-fetch-happen": "^11.0.1" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "make-fetch-happen": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.0.3.tgz", - "integrity": "sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==", - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^4.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - } - }, - "minipass-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.1.tgz", - "integrity": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^4.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - } - } - }, - "turf-jsts": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/turf-jsts/-/turf-jsts-1.2.3.tgz", - "integrity": "sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA==" - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - }, - "type-fest": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.6.1.tgz", - "integrity": "sha512-htXWckxlT6U4+ilVgweNliPqlsVSSucbxVexRYllyMVJDtf5rTjv6kF/s+qAd4QSL1BZcnJPEJavYBPQiWuZDA==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - } - }, - "typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - } - }, - "typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - } - }, - "typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - } - }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "typescript": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.2.tgz", - "integrity": "sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==", - "dev": true - }, - "typewise": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz", - "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==", - "requires": { - "typewise-core": "^1.2.0" - } - }, - "typewise-core": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz", - "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==" - }, - "ua-parser-js": { - "version": "0.7.34", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.34.tgz", - "integrity": "sha512-cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ==" - }, - "ufo": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", - "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==" - }, - "uglify-js": { - "version": "3.13.6", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.6.tgz", - "integrity": "sha512-rRprLwl8RVaS+Qvx3Wh5hPfPBn9++G6xkGlUupya0s5aDmNjI7z3lnRLB3u7sN4OmbB0pWgzhM9BEJyiWAwtAA==", - "dev": true, - "optional": true - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - } - }, - "unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true - }, - "unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "requires": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true - }, - "unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true - }, - "unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "dev": true - }, - "unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - } - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", - "dev": true, - "requires": { - "unique-slug": "^4.0.0" - } - }, - "unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dev": true, - "requires": { - "crypto-random-string": "^4.0.0" - } - }, - "unist-util-generated": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", - "dev": true - }, - "unist-util-is": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", - "dev": true - }, - "unist-util-position": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-position-from-estree": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", - "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-remove-position": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", - "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" - }, - "dependencies": { - "unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - } - }, - "unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - } - } - } - }, - "unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-visit": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" - } - }, - "unist-util-visit-parents": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "unload": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz", - "integrity": "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==", - "requires": { - "@babel/runtime": "^7.6.2", - "detect-node": "^2.0.4" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true - }, - "unplugin": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.10.1.tgz", - "integrity": "sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==", - "dev": true, - "requires": { - "acorn": "^8.11.3", - "chokidar": "^3.6.0", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.6.1" - } - }, - "untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "dev": true, - "requires": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - } - }, - "update-notifier": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz", - "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==", - "dev": true, - "requires": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "boxen": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.2.tgz", - "integrity": "sha512-1Z4UJabXUP1/R9rLpoU3O2lEMnG3pPLAs/ZD2lF3t2q7qD5lM8rqbtnvtvm4N0wEyNlE+9yZVTVAGmd1V5jabg==", - "dev": true, - "requires": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - } - }, - "camelcase": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", - "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", - "dev": true - }, - "chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true - }, - "cli-boxes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true - }, - "widest-line": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", - "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", - "dev": true, - "requires": { - "string-width": "^5.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "urs": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/urs/-/urs-0.0.8.tgz", - "integrity": "sha512-LaSSPpr91XrVA3vW2zPupw4K6DSQEDKdL4yQZX1mO2fpljIMpB5zctrjRvxLurelWSgKsHsCmfHNCImscryirQ==", - "requires": {} - }, - "use-callback-ref": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", - "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", - "dev": true, - "requires": { - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", - "requires": {} - }, - "use-http": { - "version": "1.0.27", - "resolved": "https://registry.npmjs.org/use-http/-/use-http-1.0.27.tgz", - "integrity": "sha512-R2V3dzkx+YfIi3Sm35njGFRBzPEyM1AODMx6VSyHiyYzVVq2iYbA3HEjGK5fyw66D8stK5iaP4zU3X7LDmuiyg==", - "requires": { - "urs": "^0.0.8", - "use-ssr": "^1.0.24", - "utility-types": "^3.10.0" - } - }, - "use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "requires": {} - }, - "use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "requires": { - "use-isomorphic-layout-effect": "^1.1.1" - } - }, - "use-resize-observer": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", - "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==", - "dev": true, - "requires": { - "@juggle/resize-observer": "^3.3.1" - } - }, - "use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "dev": true, - "requires": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true - } - } - }, - "use-ssr": { - "version": "1.0.24", - "resolved": "https://registry.npmjs.org/use-ssr/-/use-ssr-1.0.24.tgz", - "integrity": "sha512-0MFps7ezL57/3o0yl4CvrHLlp9z20n1rQZV/lSRz7if+TUoM6POU1XdOvEjIgjgKeIhTEye1U0khrIYWCTWw4g==", - "requires": {} - }, - "use-subscription": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.8.0.tgz", - "integrity": "sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==", - "requires": { - "use-sync-external-store": "^1.2.0" - } - }, - "use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "requires": {} - }, - "util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "utility-types": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz", - "integrity": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true - }, - "uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "dev": true - }, - "uvu": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", - "dev": true, - "requires": { - "dequal": "^2.0.0", - "diff": "^5.0.0", - "kleur": "^4.0.3", - "sade": "^1.7.3" - }, - "dependencies": { - "kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true - } - } - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", - "dev": true, - "requires": { - "builtins": "^5.0.0" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true - }, - "vega": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/vega/-/vega-5.24.0.tgz", - "integrity": "sha512-eahZ+4eryPywLuq9BpgcwWMyqiuVD3FAh7eMB3koOp7peQ4scPxAZxWdLwnh0t0kah+oE2QcXi2EHS4BabsMPg==", - "requires": { - "vega-crossfilter": "~4.1.1", - "vega-dataflow": "~5.7.5", - "vega-encode": "~4.9.1", - "vega-event-selector": "~3.0.1", - "vega-expression": "~5.0.1", - "vega-force": "~4.2.0", - "vega-format": "~1.1.1", - "vega-functions": "~5.13.1", - "vega-geo": "~4.4.1", - "vega-hierarchy": "~4.1.1", - "vega-label": "~1.2.1", - "vega-loader": "~4.5.1", - "vega-parser": "~6.2.0", - "vega-projection": "~1.6.0", - "vega-regression": "~1.1.1", - "vega-runtime": "~6.1.4", - "vega-scale": "~7.3.0", - "vega-scenegraph": "~4.10.2", - "vega-statistics": "~1.8.1", - "vega-time": "~2.1.1", - "vega-transforms": "~4.10.1", - "vega-typings": "~0.24.0", - "vega-util": "~1.17.1", - "vega-view": "~5.11.1", - "vega-view-transforms": "~4.5.9", - "vega-voronoi": "~4.2.1", - "vega-wordcloud": "~4.1.4" - } - }, - "vega-canvas": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz", - "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q==" - }, - "vega-crossfilter": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz", - "integrity": "sha512-yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q==", - "requires": { - "d3-array": "^3.2.2", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "vega-dataflow": { - "version": "5.7.5", - "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz", - "integrity": "sha512-EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA==", - "requires": { - "vega-format": "^1.1.1", - "vega-loader": "^4.5.1", - "vega-util": "^1.17.1" - } - }, - "vega-embed": { - "version": "6.18.2", - "resolved": "https://registry.npmjs.org/vega-embed/-/vega-embed-6.18.2.tgz", - "integrity": "sha512-wcDyQPE4J5aiCDc3/suH5RQDvrKkjuLkhzUcbOLwEkNF8/+pp17tS0JghzEvAPNRg+5aG1/N2ydixq8Lk3dOlg==", - "requires": { - "fast-json-patch": "^3.0.0-1", - "json-stringify-pretty-compact": "^3.0.0", - "semver": "^7.3.5", - "tslib": "^2.2.0", - "vega-schema-url-parser": "^2.2.0", - "vega-themes": "^2.10.0", - "vega-tooltip": "^0.25.1" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } - } - }, - "vega-encode": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.1.tgz", - "integrity": "sha512-05JB47UZaqIBS9t6rtHI/aKjEuH4EsSIH+wJWItht4BFj33eIl4XRNtlXdE31uuQT2pXWz5ZWW3KboMuaFzKLw==", - "requires": { - "d3-array": "^3.2.2", - "d3-interpolate": "^3.0.1", - "vega-dataflow": "^5.7.5", - "vega-scale": "^7.3.0", - "vega-util": "^1.17.1" - } - }, - "vega-event-selector": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz", - "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A==" - }, - "vega-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.1.tgz", - "integrity": "sha512-atfzrMekrcsuyUgZCMklI5ki8cV763aeo1Y6YrfYU7FBwcQEoFhIV/KAJ1vae51aPDGtfzvwbtVIo3WShFCP2Q==", - "requires": { - "@types/estree": "^1.0.0", - "vega-util": "^1.17.1" - } - }, - "vega-force": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz", - "integrity": "sha512-aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A==", - "requires": { - "d3-force": "^3.0.0", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "vega-format": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz", - "integrity": "sha512-Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ==", - "requires": { - "d3-array": "^3.2.2", - "d3-format": "^3.1.0", - "d3-time-format": "^4.1.0", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "vega-functions": { - "version": "5.13.1", - "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.1.tgz", - "integrity": "sha512-0LhntimnvBl4VzRO/nkCwCTbtaP8bE552galKQbCg88GDxdmcmlsoTCwUzG0vZ/qmNM3IbqnP5k5/um3zwFqLw==", - "requires": { - "d3-array": "^3.2.2", - "d3-color": "^3.1.0", - "d3-geo": "^3.1.0", - "vega-dataflow": "^5.7.5", - "vega-expression": "^5.0.1", - "vega-scale": "^7.3.0", - "vega-scenegraph": "^4.10.2", - "vega-selections": "^5.4.1", - "vega-statistics": "^1.8.1", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "vega-geo": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz", - "integrity": "sha512-s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA==", - "requires": { - "d3-array": "^3.2.2", - "d3-color": "^3.1.0", - "d3-geo": "^3.1.0", - "vega-canvas": "^1.2.7", - "vega-dataflow": "^5.7.5", - "vega-projection": "^1.6.0", - "vega-statistics": "^1.8.1", - "vega-util": "^1.17.1" - } - }, - "vega-hierarchy": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz", - "integrity": "sha512-h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ==", - "requires": { - "d3-hierarchy": "^3.1.2", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "vega-label": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz", - "integrity": "sha512-n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==", - "requires": { - "vega-canvas": "^1.2.6", - "vega-dataflow": "^5.7.3", - "vega-scenegraph": "^4.9.2", - "vega-util": "^1.15.2" - } - }, - "vega-lite": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-5.6.1.tgz", - "integrity": "sha512-Dij2OkJcmK+/2pIcLambjV/vWmhP11ypL3YqDVryBfJxP1m+ZgZU+8/SOEP3B2R1MhmmT7JDYQUtiNcGi1/2ig==", - "requires": { - "@types/clone": "~2.1.1", - "clone": "~2.1.2", - "fast-deep-equal": "~3.1.3", - "fast-json-stable-stringify": "~2.1.0", - "json-stringify-pretty-compact": "~3.0.0", - "tslib": "~2.5.0", - "vega-event-selector": "~3.0.0", - "vega-expression": "~5.0.0", - "vega-util": "~1.17.0", - "yargs": "~17.6.2" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "vega-loader": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz", - "integrity": "sha512-qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA==", - "requires": { - "d3-dsv": "^3.0.1", - "node-fetch": "^2.6.7", - "topojson-client": "^3.1.0", - "vega-format": "^1.1.1", - "vega-util": "^1.17.1" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - }, - "d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", - "requires": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "vega-parser": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz", - "integrity": "sha512-as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ==", - "requires": { - "vega-dataflow": "^5.7.5", - "vega-event-selector": "^3.0.1", - "vega-functions": "^5.13.1", - "vega-scale": "^7.3.0", - "vega-util": "^1.17.1" - } - }, - "vega-projection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz", - "integrity": "sha512-LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ==", - "requires": { - "d3-geo": "^3.1.0", - "d3-geo-projection": "^4.0.0", - "vega-scale": "^7.3.0" - } - }, - "vega-regression": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.1.1.tgz", - "integrity": "sha512-98i/z0vdDhOIEhJUdYoJ2nlfVdaHVp2CKB39Qa7G/XyRw0+QwDFFrp8ZRec2xHjHfb6bYLGNeh1pOsC13FelJg==", - "requires": { - "d3-array": "^3.2.2", - "vega-dataflow": "^5.7.3", - "vega-statistics": "^1.7.9", - "vega-util": "^1.15.2" - } - }, - "vega-runtime": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz", - "integrity": "sha512-0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==", - "requires": { - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" - } - }, - "vega-scale": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz", - "integrity": "sha512-pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw==", - "requires": { - "d3-array": "^3.2.2", - "d3-interpolate": "^3.0.1", - "d3-scale": "^4.0.2", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "vega-scenegraph": { - "version": "4.10.2", - "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz", - "integrity": "sha512-R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA==", - "requires": { - "d3-path": "^3.1.0", - "d3-shape": "^3.2.0", - "vega-canvas": "^1.2.7", - "vega-loader": "^4.5.1", - "vega-scale": "^7.3.0", - "vega-util": "^1.17.1" - } - }, - "vega-schema-url-parser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/vega-schema-url-parser/-/vega-schema-url-parser-2.2.0.tgz", - "integrity": "sha512-yAtdBnfYOhECv9YC70H2gEiqfIbVkq09aaE4y/9V/ovEFmH9gPKaEgzIZqgT7PSPQjKhsNkb6jk6XvSoboxOBw==" - }, - "vega-selections": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz", - "integrity": "sha512-EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA==", - "requires": { - "d3-array": "3.2.2", - "vega-expression": "^5.0.1", - "vega-util": "^1.17.1" - } - }, - "vega-statistics": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.8.1.tgz", - "integrity": "sha512-eRR3LZBusnTXUkc/uunAvWi1PjCJK+Ba4vFvEISc5Iv5xF4Aw2cBhEz1obEt6ID5fGVCTAl0E1LOSFxubS89hQ==", - "requires": { - "d3-array": "^3.2.2" - } - }, - "vega-themes": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-2.10.0.tgz", - "integrity": "sha512-prePRUKFUFGWniuZsJOfkdb+27Gwrrm82yAlVuU+912kcknsx1DVmMSg2yF79f4jdtqnAFIGycZgxoj13SEIuQ==", - "requires": {} - }, - "vega-time": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz", - "integrity": "sha512-z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA==", - "requires": { - "d3-array": "^3.2.2", - "d3-time": "^3.1.0", - "vega-util": "^1.17.1" - } - }, - "vega-tooltip": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/vega-tooltip/-/vega-tooltip-0.25.1.tgz", - "integrity": "sha512-ugGwGi2/p3OpB8N15xieuzP8DyV5DreqMWcmJ9zpWT8GlkyKtef4dGRXnvHeHQ+iJFmWrq4oZJ+kLTrdiECjAg==", - "requires": { - "vega-util": "^1.16.0" - } - }, - "vega-transforms": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.1.tgz", - "integrity": "sha512-0uWrUZaYl8kjWrGbvPOQSKk6kcNXQFY9moME+bUmkADAvFptphCGbaEIn/nSsG6uCxj8E3rqKmKfjSWdU5yOqA==", - "requires": { - "d3-array": "^3.2.2", - "vega-dataflow": "^5.7.5", - "vega-statistics": "^1.8.1", - "vega-time": "^2.1.1", - "vega-util": "^1.17.1" - } - }, - "vega-typings": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz", - "integrity": "sha512-FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A==", - "requires": { - "@types/geojson": "^7946.0.10", - "vega-event-selector": "^3.0.1", - "vega-expression": "^5.0.1", - "vega-util": "^1.17.1" - } - }, - "vega-util": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.1.tgz", - "integrity": "sha512-ToPkWoBdP6awoK+bnYaFhgdqZhsNwKxWbuMnFell+4K/Cb6Q1st5Pi9I7iI5Y6n5ZICDDsd6eL7/IhBjEg1NUQ==" - }, - "vega-view": { - "version": "5.11.1", - "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz", - "integrity": "sha512-RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA==", - "requires": { - "d3-array": "^3.2.2", - "d3-timer": "^3.0.1", - "vega-dataflow": "^5.7.5", - "vega-format": "^1.1.1", - "vega-functions": "^5.13.1", - "vega-runtime": "^6.1.4", - "vega-scenegraph": "^4.10.2", - "vega-util": "^1.17.1" + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "vega-view-transforms": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz", - "integrity": "sha512-NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==", - "requires": { - "vega-dataflow": "^5.7.5", - "vega-scenegraph": "^4.10.2", - "vega-util": "^1.17.1" + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "vega-voronoi": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz", - "integrity": "sha512-zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q==", - "requires": { - "d3-delaunay": "^6.0.2", - "vega-dataflow": "^5.7.5", - "vega-util": "^1.17.1" + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" } }, - "vega-wordcloud": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz", - "integrity": "sha512-oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw==", - "requires": { - "vega-canvas": "^1.2.7", - "vega-dataflow": "^5.7.5", - "vega-scale": "^7.3.0", - "vega-statistics": "^1.8.1", - "vega-util": "^1.17.1" + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "vfile-location": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", - "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "vfile": "^5.0.0" + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "vfile-message": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "node_modules/vite/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, - "vite": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz", - "integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==", - "requires": { - "esbuild": "^0.18.10", - "fsevents": "~2.3.2", - "postcss": "^8.4.27", - "rollup": "^3.27.1" + "node_modules/vite/node_modules/rollup": { + "version": "3.29.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", + "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/vitest": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.29.8.tgz", + "integrity": "sha512-JIAVi2GK5cvA6awGpH0HvH/gEG9PZ0a/WoxdiV3PmqK+3CjQMf8c+J/Vhv4mdZ2nRyXFw66sAg6qz7VNkaHfDQ==", + "license": "MIT", "dependencies": { - "@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "@types/chai": "^4.3.4", + "@types/chai-subset": "^1.3.3", + "@types/node": "*", + "@vitest/expect": "0.29.8", + "@vitest/runner": "0.29.8", + "@vitest/spy": "0.29.8", + "@vitest/utils": "0.29.8", + "acorn": "^8.8.1", + "acorn-walk": "^8.2.0", + "cac": "^6.7.14", + "chai": "^4.3.7", + "debug": "^4.3.4", + "local-pkg": "^0.4.2", + "pathe": "^1.1.0", + "picocolors": "^1.0.0", + "source-map": "^0.6.1", + "std-env": "^3.3.1", + "strip-literal": "^1.0.0", + "tinybench": "^2.3.1", + "tinypool": "^0.4.0", + "tinyspy": "^1.0.2", + "vite": "^3.0.0 || ^4.0.0", + "vite-node": "0.29.8", + "why-is-node-running": "^2.2.2" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": ">=v14.16.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@vitest/browser": "*", + "@vitest/ui": "*", + "happy-dom": "*", + "jsdom": "*", + "playwright": "*", + "safaridriver": "*", + "webdriverio": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { "optional": true }, - "@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "@vitest/browser": { "optional": true }, - "@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "@vitest/ui": { "optional": true }, - "@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "happy-dom": { "optional": true }, - "@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "jsdom": { "optional": true }, - "@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "playwright": { "optional": true }, - "@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "safaridriver": { "optional": true }, - "@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "webdriverio": { "optional": true - }, - "esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "requires": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } } } }, - "vite-node": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.29.3.tgz", - "integrity": "sha512-QYzYSA4Yt2IiduEjYbccfZQfxKp+T1Do8/HEpSX/G5WIECTFKJADwLs9c94aQH4o0A+UtCKU61lj1m5KvbxxQA==", - "requires": { - "cac": "^6.7.14", - "debug": "^4.3.4", - "mlly": "^1.1.0", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "vite": "^3.0.0 || ^4.0.0" - } - }, - "vite-plugin-qrcode": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vite-plugin-qrcode/-/vite-plugin-qrcode-0.2.1.tgz", - "integrity": "sha512-REEIXb0cs4N7GdZoDS56RqwUOxZwXaA2KqwODtr4mScfEVLk5BuqBxWy849yo3LoGP9dH7AdAauAlgU2eqsgdw==", - "dev": true, - "requires": { - "qrcode-terminal": "^0.12.0" - } - }, - "vite-plugin-rewrite-all": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/vite-plugin-rewrite-all/-/vite-plugin-rewrite-all-1.0.1.tgz", - "integrity": "sha512-W0DAchC8ynuQH0lYLIu5/5+JGfYlUTRD8GGNtHFXRJX4FzzB9MajtqHBp26zq/ly9sDt5BqrfdT08rv3RbB0LQ==", - "dev": true, - "requires": { - "connect-history-api-fallback": "^1.6.0" - } - }, - "vite-plugin-svgr": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/vite-plugin-svgr/-/vite-plugin-svgr-2.4.0.tgz", - "integrity": "sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==", - "dev": true, - "requires": { - "@rollup/pluginutils": "^5.0.2", - "@svgr/core": "^6.5.1" - }, - "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", - "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", - "dev": true, - "requires": {} - }, - "@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", - "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", - "dev": true, - "requires": {} - }, - "@svgr/babel-plugin-svg-dynamic-title": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", - "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", - "dev": true, - "requires": {} - }, - "@svgr/babel-plugin-svg-em-dimensions": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", - "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", - "dev": true, - "requires": {} - }, - "@svgr/babel-plugin-transform-react-native-svg": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", - "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", - "dev": true, - "requires": {} - }, - "@svgr/babel-plugin-transform-svg-component": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", - "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", - "dev": true, - "requires": {} - }, - "@svgr/babel-preset": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", - "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", - "dev": true, - "requires": { - "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", - "@svgr/babel-plugin-remove-jsx-attribute": "*", - "@svgr/babel-plugin-remove-jsx-empty-expression": "*", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", - "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", - "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", - "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", - "@svgr/babel-plugin-transform-svg-component": "^6.5.1" - } - }, - "@svgr/core": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", - "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", - "dev": true, - "requires": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/plugin-jsx": "^6.5.1", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.1" - } - }, - "@svgr/hast-util-to-babel-ast": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", - "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", - "dev": true, - "requires": { - "@babel/types": "^7.20.0", - "entities": "^4.4.0" - } - }, - "@svgr/plugin-jsx": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", - "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", - "dev": true, - "requires": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/hast-util-to-babel-ast": "^6.5.1", - "svg-parser": "^2.0.4" - } - }, - "entities": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", - "dev": true - } + "node_modules/vitest/node_modules/@vitest/utils": { + "version": "0.29.8", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.8.tgz", + "integrity": "sha512-qGzuf3vrTbnoY+RjjVVIBYfuWMjn3UMUqyQtdGNZ6ZIIyte7B37exj6LaVkrZiUTvzSadVvO/tJm8AEgbGCBPg==", + "license": "MIT", + "dependencies": { + "cli-truncate": "^3.1.0", + "diff": "^5.1.0", + "loupe": "^2.3.6", + "pretty-format": "^27.5.1" } }, - "vite-tsconfig-paths": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-4.0.7.tgz", - "integrity": "sha512-MwIYaby6kcbQGZqMH+gAK6h0UYQGOkjsuAgw4q6bP/5vWkn8VKvnmLuCQHA2+IzHAJHnE8OFTO4lnJLFMf9+7Q==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "globrex": "^0.1.2", - "tsconfck": "^2.0.1" + "node_modules/vitest/node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "vitest": { - "version": "0.29.3", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.29.3.tgz", - "integrity": "sha512-muMsbXnZsrzDGiyqf/09BKQsGeUxxlyLeLK/sFFM4EXdURPQRv8y7dco32DXaRORYP0bvyN19C835dT23mL0ow==", - "requires": { - "@types/chai": "^4.3.4", - "@types/chai-subset": "^1.3.3", - "@types/node": "*", - "@vitest/expect": "0.29.3", - "@vitest/runner": "0.29.3", - "@vitest/spy": "0.29.3", - "@vitest/utils": "0.29.3", - "acorn": "^8.8.1", - "acorn-walk": "^8.2.0", - "cac": "^6.7.14", - "chai": "^4.3.7", - "debug": "^4.3.4", - "local-pkg": "^0.4.2", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "source-map": "^0.6.1", - "std-env": "^3.3.1", - "strip-literal": "^1.0.0", - "tinybench": "^2.3.1", - "tinypool": "^0.3.1", - "tinyspy": "^1.0.2", - "vite": "^3.0.0 || ^4.0.0", - "vite-node": "0.29.3", - "why-is-node-running": "^2.2.2" + "node_modules/vitest/node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/vitest/node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "license": "MIT", "dependencies": { - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/vitest/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" } }, - "vt-pbf": { + "node_modules/vt-pbf": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", - "requires": { + "license": "MIT", + "dependencies": { "@mapbox/point-geometry": "0.1.0", "@mapbox/vector-tile": "^1.3.1", "pbf": "^3.2.1" } }, - "walker": { + "node_modules/walk-up-path": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-3.0.1.tgz", + "integrity": "sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==", + "dev": true, + "license": "ISC" + }, + "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "requires": { + "license": "Apache-2.0", + "dependencies": { "makeerror": "1.0.12" } }, - "warning": { + "node_modules/warning": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { + "license": "MIT", + "dependencies": { "loose-envify": "^1.0.0" } }, - "watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", - "dev": true, - "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - } - }, - "wcwidth": { + "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "defaults": "^1.0.3" } }, - "webidl-conversions": { + "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" }, - "webpack-virtual-modules": { + "node_modules/webpack-virtual-modules": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", - "dev": true + "dev": true, + "license": "MIT" }, - "whatwg-url": { + "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { + "license": "MIT", + "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", + "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", + "dev": true, + "license": "MIT", + "dependencies": { + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wide-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wide-align/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wide-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/widest-line": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", + "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "requires": { - "isexe": "^2.0.0" + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, - "requires": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - } + "license": "MIT" }, - "which-typed-array": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", - "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "license": "MIT", + "engines": { + "node": ">=8" } }, - "why-is-node-running": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.2.2.tgz", - "integrity": "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==", - "requires": { - "siginfo": "^2.0.0", - "stackback": "0.0.2" + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, + "license": "MIT", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" }, - "write-file-atomic": { + "node_modules/write-file-atomic": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "ws": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", - "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, - "requires": {} + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } }, - "xdg-basedir": { + "node_modules/xdg-basedir": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", - "dev": true - }, - "xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==" + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true + "node_modules/xstate": { + "version": "4.38.3", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.38.3.tgz", + "integrity": "sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/xstate" + } }, - "y18n": { + "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" }, - "yaml": { + "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } }, - "yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", - "requires": { + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", @@ -51762,24 +27786,72 @@ "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" } }, - "yargs-parser": { + "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } }, - "yocto-queue": { + "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "zwitch": { + "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } } } } diff --git a/package.json b/package.json index 2d4f2e5..81f2992 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "engines": { - "node": ">=18.0.0 <21.7.2" + "node": ">=20.0.0 <23" }, "dependencies": { "@emotion/react": "^11.10.6", @@ -20,9 +20,9 @@ "@nismod/irv-autopkg-client": "^0.2.7-dev", "@react-hook/debounce": "^4.0.0", "@recoiljs/refine": "^0.1.1", - "@turf/bbox": "^6.5.0", - "@turf/bbox-polygon": "^6.5.0", - "@turf/buffer": "^6.5.0", + "@turf/bbox": "^7.1.0", + "@turf/bbox-polygon": "^7.1.0", + "@turf/buffer": "^7.1.0", "d3": "^7.9.0", "d3-array": "^3.2.2", "d3-color": "^3.1.0", @@ -86,7 +86,7 @@ "eslint-plugin-storybook": "^0.6.14", "eslint-watch": "^8.0.0", "husky": "^8.0.3", - "lint-staged": "^14.0.1", + "lint-staged": "^15.2.0", "npm-check-updates": "^16.7.12", "prettier": "^3.0.3", "prop-types": "^15.8.1", From 3bc0da730f6d0bfa351934300e1eff85798c1c22 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 15:05:56 +0100 Subject: [PATCH 10/12] Import from d3 submodules and fix typing --- package-lock.json | 217 +++--------------- package.json | 6 +- .../components/dashboard/Dashboard.tsx | 4 +- .../components/dashboard/DashboardCharts.tsx | 49 ++-- .../dashboard/chart/CountriesBarChart.tsx | 5 +- .../dashboard/chart/RegionsLineChart.tsx | 29 +-- .../components/dashboard/map/MapLegend.tsx | 8 +- .../components/dashboard/map/RegionMap.tsx | 8 +- .../metrics/components/lib/chart/Line.tsx | 9 +- .../components/lib/chart/axis/Axis.tsx | 10 +- .../metrics/components/lib/chart/types/d3.ts | 7 + .../metrics/components/lib/chart/utils.ts | 4 + 12 files changed, 120 insertions(+), 236 deletions(-) create mode 100644 src/modules/metrics/components/lib/chart/types/d3.ts diff --git a/package-lock.json b/package-lock.json index f7be7f4..c4075bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,12 +24,13 @@ "@turf/bbox": "^7.1.0", "@turf/bbox-polygon": "^7.1.0", "@turf/buffer": "^7.1.0", - "d3": "^7.9.0", "d3-array": "^3.2.2", "d3-color": "^3.1.0", "d3-ease": "^3.0.1", "d3-scale": "^4.0.2", "d3-scale-chromatic": "^3.0.0", + "d3-selection": "^3.0.0", + "d3-shape": "^3.2.0", "deck.gl": "^8.9.28", "immer": "^9.0.19", "json-stable-stringify": "^1.0.2", @@ -69,8 +70,11 @@ "@types/d3-array": "^3.0.4", "@types/d3-color": "^3.1.0", "@types/d3-ease": "^3.0.0", + "@types/d3-format": "^3.0.4", "@types/d3-scale": "^4.0.3", "@types/d3-scale-chromatic": "^3.0.0", + "@types/d3-selection": "^3.0.0", + "@types/d3-shape": "^3.1.6", "@types/geojson": "^7946.0.10", "@types/json-stable-stringify": "^1.0.34", "@types/lodash": "^4.14.191", @@ -9397,6 +9401,20 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/d3-scale": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", @@ -9414,6 +9432,23 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/d3-selection": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.10.tgz", + "integrity": "sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, "node_modules/@types/d3-time": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", @@ -12427,47 +12462,6 @@ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "license": "MIT" }, - "node_modules/d3": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", - "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", - "license": "ISC", - "dependencies": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/d3-array": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", @@ -12480,43 +12474,6 @@ "node": ">=12" } }, - "node_modules/d3-axis": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-brush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-chord": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", - "license": "ISC", - "dependencies": { - "d3-path": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/d3-color": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", @@ -12526,18 +12483,6 @@ "node": ">=12" } }, - "node_modules/d3-contour": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", - "license": "ISC", - "dependencies": { - "d3-array": "^3.2.0" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/d3-delaunay": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", @@ -12559,19 +12504,6 @@ "node": ">=12" } }, - "node_modules/d3-drag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/d3-dsv": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", @@ -12615,18 +12547,6 @@ "node": ">=12" } }, - "node_modules/d3-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", - "license": "ISC", - "dependencies": { - "d3-dsv": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/d3-force": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", @@ -12743,15 +12663,6 @@ "node": ">=12" } }, - "node_modules/d3-polygon": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, "node_modules/d3-quadtree": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", @@ -12761,15 +12672,6 @@ "node": ">=12" } }, - "node_modules/d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, "node_modules/d3-scale": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", @@ -12853,53 +12755,6 @@ "node": ">=12" } }, - "node_modules/d3-transition": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", - "license": "ISC", - "dependencies": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "d3-selection": "2 - 3" - } - }, - "node_modules/d3-zoom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3/node_modules/d3-geo": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", - "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", - "license": "ISC", - "dependencies": { - "d3-array": "2.5.0 - 3" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", diff --git a/package.json b/package.json index 81f2992..b56f937 100644 --- a/package.json +++ b/package.json @@ -23,12 +23,13 @@ "@turf/bbox": "^7.1.0", "@turf/bbox-polygon": "^7.1.0", "@turf/buffer": "^7.1.0", - "d3": "^7.9.0", "d3-array": "^3.2.2", "d3-color": "^3.1.0", "d3-ease": "^3.0.1", "d3-scale": "^4.0.2", "d3-scale-chromatic": "^3.0.0", + "d3-selection": "^3.0.0", + "d3-shape": "^3.2.0", "deck.gl": "^8.9.28", "immer": "^9.0.19", "json-stable-stringify": "^1.0.2", @@ -68,8 +69,11 @@ "@types/d3-array": "^3.0.4", "@types/d3-color": "^3.1.0", "@types/d3-ease": "^3.0.0", + "@types/d3-format": "^3.0.4", "@types/d3-scale": "^4.0.3", "@types/d3-scale-chromatic": "^3.0.0", + "@types/d3-selection": "^3.0.0", + "@types/d3-shape": "^3.1.6", "@types/geojson": "^7946.0.10", "@types/json-stable-stringify": "^1.0.34", "@types/lodash": "^4.14.191", diff --git a/src/modules/metrics/components/dashboard/Dashboard.tsx b/src/modules/metrics/components/dashboard/Dashboard.tsx index 4a2917d..07f200c 100644 --- a/src/modules/metrics/components/dashboard/Dashboard.tsx +++ b/src/modules/metrics/components/dashboard/Dashboard.tsx @@ -1,5 +1,5 @@ import { Boundary } from '@nismod/irv-autopkg-client'; -import * as d3 from 'd3'; +import { group as d3group } from 'd3-array'; import { FC } from 'react'; import { GDL_YEAR_RANGE } from '../../data/gdl-datasets'; @@ -71,7 +71,7 @@ const Dashboard: FC = ({ const dataFiltered = countryDataPerYear.filter((d) => d.value !== null); // group the data - one line per group - const dataByYearGrouped = d3.group(dataFiltered, (d) => d.gdlCode); + const dataByYearGrouped = d3group(dataFiltered, (d) => d.gdlCode); const dataByYearGroupedList = []; dataByYearGrouped.forEach((value, key) => { diff --git a/src/modules/metrics/components/dashboard/DashboardCharts.tsx b/src/modules/metrics/components/dashboard/DashboardCharts.tsx index b711a8f..1d313e4 100644 --- a/src/modules/metrics/components/dashboard/DashboardCharts.tsx +++ b/src/modules/metrics/components/dashboard/DashboardCharts.tsx @@ -1,15 +1,17 @@ import MapIcon from '@mui/icons-material/Map'; import { Box, IconButton, Stack, Typography } from '@mui/material'; import { Boundary } from '@nismod/irv-autopkg-client'; -import * as d3 from 'd3'; +import { extent as d3extent } from 'd3-array'; +import { scaleSequential as d3scaleSequential } from 'd3-scale'; +import { interpolateRdYlGn as d3interpolateRdYlGn } from 'd3-scale-chromatic'; import { FC, useEffect, useState } from 'react'; +import CountriesBarChart from '@/modules/metrics/components/dashboard/chart/CountriesBarChart'; +import RegionsLineChart from '@/modules/metrics/components/dashboard/chart/RegionsLineChart'; +import RegionMap from '@/modules/metrics/components/dashboard/map/RegionMap'; +import { numericDomain } from '@/modules/metrics/components/lib/chart/utils'; import { useIsMobile } from '@/use-is-mobile'; -import CountriesBarChart from './chart/CountriesBarChart'; -import RegionsLineChart from './chart/RegionsLineChart'; -import RegionMap from './map/RegionMap'; - const getDefaultRegionKey = (dataByYearGroupedList) => { const dataLength = dataByYearGroupedList.length; if (dataLength < 1) { @@ -29,11 +31,16 @@ const getDefaultRegionKey = (dataByYearGroupedList) => { return null; }; -const compileTimelineDomainY = (scaleAcrossCountries, allDataPerYear, dataFiltered, yAccessor) => { - if (scaleAcrossCountries) { - return d3.extent(allDataPerYear, yAccessor); - } - return d3.extent(dataFiltered, yAccessor); +const compileTimelineDomainY = ( + scaleAcrossCountries, + allDataPerYear, + dataFiltered, + yAccessor, +): [number, number] => { + const domain = scaleAcrossCountries + ? d3extent(allDataPerYear, yAccessor) + : d3extent(dataFiltered, yAccessor); + return numericDomain(domain); }; const compileDomainY = ( @@ -43,21 +50,25 @@ const compileDomainY = ( dataFiltered, yAccessor, selectedYear, -) => { +): [number, number] => { if (scaleAcrossYears) { return compileTimelineDomainY(scaleAcrossCountries, allDataPerYear, dataFiltered, yAccessor); } if (scaleAcrossCountries) { - return d3.extent( - allDataPerYear.filter((d) => d.year === selectedYear && d.value !== null), - yAccessor, + return numericDomain( + d3extent( + allDataPerYear.filter((d) => d.year === selectedYear && d.value !== null), + yAccessor, + ), ); } - return d3.extent( - dataFiltered.filter((d) => d.year === selectedYear), - yAccessor, + return numericDomain( + d3extent( + dataFiltered.filter((d) => d.year === selectedYear), + yAccessor, + ), ); }; @@ -128,8 +139,8 @@ const DashboardCharts: FC = ({ } }; - const colorInterpolator = d3.interpolateRdYlGn; - const colorScale = d3.scaleSequential().domain(domainY).interpolator(colorInterpolator); + const colorInterpolator = d3interpolateRdYlGn; + const colorScale = d3scaleSequential().domain(domainY).interpolator(colorInterpolator); const xBoundsOnly = country.envelope.coordinates[0].map((d) => d[0]); const averageXBounds = xBoundsOnly.reduce((a, b) => a + b) / xBoundsOnly.length; diff --git a/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx b/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx index 6027e3a..4a9321a 100644 --- a/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx +++ b/src/modules/metrics/components/dashboard/chart/CountriesBarChart.tsx @@ -1,13 +1,12 @@ import { Box } from '@mui/material'; -import * as d3 from 'd3'; +import * as d3 from 'd3-scale'; import { FC } from 'react'; import Axis from '@/modules/metrics/components/lib/chart/axis/Axis'; import Chart from '@/modules/metrics/components/lib/chart/Chart'; +import Dimension from '@/modules/metrics/components/lib/chart/types/Dimension'; import { useChartDimensions } from '@/modules/metrics/components/lib/chart/utils'; -import Dimension from '../../lib/chart/types/Dimension'; - type CountriesBarChartProps = { label: string; highlightRegion: any; diff --git a/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx b/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx index 6f54cec..606b539 100644 --- a/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx +++ b/src/modules/metrics/components/dashboard/chart/RegionsLineChart.tsx @@ -1,14 +1,16 @@ import { Box } from '@mui/material'; -import * as d3 from 'd3'; +import { extent as d3extent, leastIndex as d3leastIndex } from 'd3-array'; +import { format as d3format } from 'd3-format'; +import { scaleLinear as d3scaleLinear } from 'd3-scale'; +import { pointer as d3pointer } from 'd3-selection'; import Axis from '@/modules/metrics/components/lib/chart/axis/Axis'; import Chart from '@/modules/metrics/components/lib/chart/Chart'; import Line from '@/modules/metrics/components/lib/chart/Line'; -import { useChartDimensions } from '@/modules/metrics/components/lib/chart/utils'; +import Dimension from '@/modules/metrics/components/lib/chart/types/Dimension'; +import { numericDomain, useChartDimensions } from '@/modules/metrics/components/lib/chart/utils'; -import Dimension from '../../lib/chart/types/Dimension'; - -const formatYear = d3.format('.0f'); +const formatYear = d3format('.0f'); const findHighlightPoint = (dataByYearGroupedList, regionKey, selectedYear, xScale, yScale) => { const dataRecord = dataByYearGroupedList.find((d) => d.regionKey === regionKey); @@ -37,12 +39,11 @@ const RegionsLineChart = ({ }) => { const [ref, dimensions] = useChartDimensions(null); - const xScale = d3 - .scaleLinear() - .domain(d3.extent(dataFiltered, xAccessor)) + const xScale = d3scaleLinear() + .domain(numericDomain(d3extent(dataFiltered, xAccessor))) .range([0, dimensions.boundedWidth]); - const yScale = d3.scaleLinear().domain(domainY).range([dimensions.boundedHeight, 0]).nice(); + const yScale = d3scaleLinear().domain(domainY).range([dimensions.boundedHeight, 0]).nice(); const xAccessorScaled = (d) => xScale(xAccessor(d)); const yAccessorScaled = (d) => yScale(yAccessor(d)); @@ -59,7 +60,7 @@ const RegionsLineChart = ({ setHighlightRegion(null); }; - const xExtent = d3.extent(dataFiltered, xAccessor); + const xExtent = numericDomain(d3extent(dataFiltered, xAccessor)); const yearList = []; for (var i = xExtent[0]; i <= xExtent[1]; i++) { @@ -71,8 +72,8 @@ const RegionsLineChart = ({ const onPointerMove = (event) => { // Find nearest data point based on coordinates of click event - const [pointerX, pointerY] = d3.pointer(event); - const nearestIndex = d3.leastIndex(points, ([x, y]) => Math.hypot(x - pointerX, y - pointerY)); + const [pointerX, pointerY] = d3pointer(event); + const nearestIndex = d3leastIndex(points, ([x, y]) => Math.hypot(x - pointerX, y - pointerY)); const regionKey = points[nearestIndex][2]; setHighlightRegion(regionKey); @@ -84,8 +85,8 @@ const RegionsLineChart = ({ const onPointerClick = (event) => { // Find nearest year based on x value of click event - const [pointerX] = d3.pointer(event); - const nearestIndex = d3.leastIndex(yearPoints, ([x, year]) => Math.abs(pointerX - x)); + const [pointerX] = d3pointer(event); + const nearestIndex = d3leastIndex(yearPoints, ([x, year]) => Math.abs(pointerX - x)); const year = yearPoints[nearestIndex][1]; updateSelectedYear(year); diff --git a/src/modules/metrics/components/dashboard/map/MapLegend.tsx b/src/modules/metrics/components/dashboard/map/MapLegend.tsx index be40e42..0b334a4 100644 --- a/src/modules/metrics/components/dashboard/map/MapLegend.tsx +++ b/src/modules/metrics/components/dashboard/map/MapLegend.tsx @@ -1,5 +1,5 @@ import { Box, Stack } from '@mui/system'; -import * as d3 from 'd3'; +import * as d3 from 'd3-color'; import { FC } from 'react'; export const MapLegend: FC<{ @@ -17,9 +17,9 @@ export const MapLegend: FC<{ const colorString1 = colorScale(domainY[0]); const colorString2 = colorScale((domainY[0] + domainY[1]) / 2); const colorString3 = colorScale(domainY[1]); - const colorObject = d3.color(colorString1); - const colorObject2 = d3.color(colorString2); - const colorObject3 = d3.color(colorString3); + const colorObject = d3.color(colorString1).rgb(); + const colorObject2 = d3.color(colorString2).rgb(); + const colorObject3 = d3.color(colorString3).rgb(); if (!colorObject) { return <>; diff --git a/src/modules/metrics/components/dashboard/map/RegionMap.tsx b/src/modules/metrics/components/dashboard/map/RegionMap.tsx index 0827e2d..a2a7bbf 100644 --- a/src/modules/metrics/components/dashboard/map/RegionMap.tsx +++ b/src/modules/metrics/components/dashboard/map/RegionMap.tsx @@ -2,7 +2,9 @@ import type { Color } from '@deck.gl/core'; import { ZoomOutMap } from '@mui/icons-material'; import { Box, BoxProps } from '@mui/material'; import { Polygon } from '@nismod/irv-autopkg-client'; -import * as d3 from 'd3'; +import { color as d3color } from 'd3-color'; +import { scaleSequential as d3scaleSequential } from 'd3-scale'; +import { interpolateRdYlGn as d3interpolateRdYlGn } from 'd3-scale-chromatic'; import { GeoJsonLayer, MapViewState } from 'deck.gl/typed'; import type { Feature } from 'geojson'; import { Suspense, useCallback, useEffect, useMemo, useState } from 'react'; @@ -155,7 +157,7 @@ function RegionMapViewer({ const { mapStyle } = useBasemapStyle(backgroundKey, true); const colorScale = useMemo( - () => d3.scaleSequential().domain(domainY).interpolator(d3.interpolateRdYlGn), + () => d3scaleSequential().domain(domainY).interpolator(d3interpolateRdYlGn), [domainY], ); @@ -179,7 +181,7 @@ function RegionMapViewer({ if (!maybeRegionValue) return NOT_FOUND_COLOR; const colorString = colorScale(maybeRegionValue); - const colorObject = d3.color(colorString); + const colorObject = d3color(colorString).rgb(); return [colorObject.r, colorObject.g, colorObject.b, 200]; }, diff --git a/src/modules/metrics/components/lib/chart/Line.tsx b/src/modules/metrics/components/lib/chart/Line.tsx index ab88780..9912474 100644 --- a/src/modules/metrics/components/lib/chart/Line.tsx +++ b/src/modules/metrics/components/lib/chart/Line.tsx @@ -1,4 +1,4 @@ -import * as d3 from 'd3'; +import * as d3 from 'd3-shape'; import { FC } from 'react'; type LineProps = { @@ -6,7 +6,7 @@ type LineProps = { xAccessor: any; yAccessor: any; isHighlighted: boolean; - interpolation?: (value: number) => number; // D3 function + interpolation?: d3.CurveFactory; }; const Line: FC = ({ @@ -17,10 +17,9 @@ const Line: FC = ({ interpolation = d3.curveMonotoneX, ...props }) => { - const type = 'line'; - const lineGenerator = d3[type]().x(xAccessor).y(yAccessor).curve(interpolation); + const lineGenerator = d3.line().x(xAccessor).y(yAccessor).curve(interpolation); - const className = isHighlighted ? `Line Line--type-${type} highlight` : `Line Line--type-${type}`; + const className = isHighlighted ? `Line Line--type-line highlight` : `Line Line--type-line`; return ; }; diff --git a/src/modules/metrics/components/lib/chart/axis/Axis.tsx b/src/modules/metrics/components/lib/chart/axis/Axis.tsx index ffcc23c..327646e 100644 --- a/src/modules/metrics/components/lib/chart/axis/Axis.tsx +++ b/src/modules/metrics/components/lib/chart/axis/Axis.tsx @@ -1,12 +1,14 @@ -import * as d3 from 'd3'; +import * as d3 from 'd3-format'; +import * as d3Scale from 'd3-scale'; import { FC } from 'react'; import { useDimensionsContext } from '../Chart'; +import { formatter } from '../types/d3'; import Dimension from '../types/Dimension'; import AxisHorizontal from './AxisHorizontal'; import AxisVertical from './AxisVertical'; -const defaultTickFormatter = d3.format(','); +const defaultTickFormatter: formatter = d3.format(','); const axisByDimension = (dimension: Dimension) => { if (dimension === Dimension.X) { @@ -17,9 +19,9 @@ const axisByDimension = (dimension: Dimension) => { }; type AxisProps = { - scale: any; // D3 function + scale: d3Scale.ScaleContinuousNumeric; label?: string; - formatTick?: any; // D3 function + formatTick?: formatter; dimension: Dimension; }; diff --git a/src/modules/metrics/components/lib/chart/types/d3.ts b/src/modules/metrics/components/lib/chart/types/d3.ts new file mode 100644 index 0000000..1f41b4d --- /dev/null +++ b/src/modules/metrics/components/lib/chart/types/d3.ts @@ -0,0 +1,7 @@ +export type formatter = ( + n: + | number + | { + valueOf(): number; + }, +) => string; diff --git a/src/modules/metrics/components/lib/chart/utils.ts b/src/modules/metrics/components/lib/chart/utils.ts index df721a2..f36e8f9 100644 --- a/src/modules/metrics/components/lib/chart/utils.ts +++ b/src/modules/metrics/components/lib/chart/utils.ts @@ -56,3 +56,7 @@ export const useChartDimensions = (passedSettings) => { return [ref, newSettings]; }; + +export const numericDomain = (domain): [number, number] => { + return [+domain[0], +domain[1]]; +}; From 56040570097453e9e277d981ab56890cfd35439f Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 15:07:48 +0100 Subject: [PATCH 11/12] Bump node for testing --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1608fa9..7ac055b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: '18.x' + node-version: '22.x' registry-url: 'https://npm.pkg.github.com' cache: 'npm' - run: npm ci --ignore-scripts From 806ceeb47e72de77c482d18cfb2e52eecf952bfa Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Tue, 1 Oct 2024 15:18:51 +0100 Subject: [PATCH 12/12] Bump node for containers --- containers/Dockerfile-dev | 2 +- containers/Dockerfile-prod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/Dockerfile-dev b/containers/Dockerfile-dev index cd677b2..f177945 100644 --- a/containers/Dockerfile-dev +++ b/containers/Dockerfile-dev @@ -1,5 +1,5 @@ # Single-stage dev setup -FROM node:18 +FROM node:22 WORKDIR /app # install npm packages diff --git a/containers/Dockerfile-prod b/containers/Dockerfile-prod index 6d71ca9..2db8246 100644 --- a/containers/Dockerfile-prod +++ b/containers/Dockerfile-prod @@ -1,7 +1,7 @@ # multistage build of nginx image # stage 1 of 2 -FROM node:18 AS builder +FROM node:22 AS builder WORKDIR /app # install npm packages -- do this before copying everything else